/* ==========================================================================
	Base
/* ========================================================================== */
html {
  height: auto;
  padding: 0;
  margin: 0;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html,
button,
input,
select,
textarea {
  font-family: "Source Sans Pro", sans-serif;
  color: #444c5c;
}

body {
  min-width: 320px;
  padding: 0;
  margin: 0;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1em;
  line-height: 1.4;
  color: #444c5c;
  background: #f7f9fa;
  -webkit-font-smoothing: antialiased;
}

*, *:before, *:after {
  box-sizing: border-box;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

.gm-style img {
  max-width: none;
}

/* ==========================================================================
	Links
/* ========================================================================== */
a {
  color: #c12b2c;
  text-decoration: underline;
}

a img {
  border: 0;
}

a:focus,
a:hover {
  color: #444c5c;
}

a:focus {
  outline: 0;
}

a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
	Typography
/* ========================================================================== */
/* Content Block Elements */
dl,
menu,
ol,
ul,
p,
pre {
  margin: 0 0 1em;
}

/* Lists */
menu,
ol,
ul {
  padding: 0 0 0 2em;
}

/* Selection Colors */
::-moz-selection {
  color: #fff;
  text-shadow: none;
  background: #444;
}

::selection {
  color: #fff;
  text-shadow: none;
  background: #444;
}

/* =============================================================================
	Helper Classes
/* ========================================================================== */
/* Prefixed with tags to override default tag styling for these elemets if .button is added */
button,
.button,
a.button,
input.button {
  display: inline-block;
}

/* Responsive Media Styles */
.media img,
.media video,
.media object,
.media iframe {
  width: 100%;
  height: auto;
}

/* Clear Fix */
.clearfix:after,
.cf:after {
  content: '';
  clear: both;
  display: table;
}

/* Floats */
.floatleft {
  float: left;
}

.floatright {
  float: right;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.alignnone {
  display: inline-block;
}

.aligncenter {
  clear: both;
  display: block;
  float: none;
  margin: 20px auto;
  text-align: center;
}

/* =============================================================================
	Structural Styles, Media Queries & Page Styling
/* ========================================================================== */
.container {
  width: 100%;
  max-width: 100%;
  padding: 0 50px;
  margin: 0 auto;
}

.container:after {
  content: '';
  clear: both;
  display: table;
}

@media (max-width: 1440px) {
  .container {
    padding: 0 30px;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}

.error404 {
  text-align: center;
}

.error404 ul {
  text-align: left;
}

.content.full-width,
.full-width {
  width: 100%;
  float: none;
}

.article {
  margin-bottom: 1em;
}

/* Navigation */
nav > ul {
  padding: 0;
  margin: 0;
}

nav ul:after {
  content: '';
  clear: both;
  display: table;
}

/* Paginations */
.navigation.pagination {
  clear: both;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

hr {
  margin-bottom: 22px;
  border: 0;
  border-bottom: 1px solid #f4f4f4;
}

.disable-scroll {
  overflow: hidden;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
}

.row:after {
  content: '';
  clear: both;
  display: table;
}

.two-cols-section > .container > .row {
  position: relative;
  display: flex;
}

@media (max-width: 991px) {
  .two-cols-section > .container > .row {
    display: block;
  }
}

.two-cols-section > .container > .row.message-field {
  padding-left: 0;
}

.two-cols-section > .container > .row.schedule-wrapper {
  padding-left: 0;
}

.two-cols-section .column-flowing {
  flex: 1 1 auto;
}

input, textarea {
  -webkit-appearance: none;
  padding: 10px;
  border: none;
  background-color: white;
  font-size: 15px;
  line-height: 20px;
}

input {
  height: 40px;
}

textarea {
  resize: none;
}

::-webkit-input-placeholder {
  color: #b7b7b7;
}

:-moz-placeholder {
  color: #b7b7b7;
}

::-moz-placeholder {
  color: #b7b7b7;
}

:-ms-input-placeholder {
  color: #b7b7b7;
}

.input-wrapper {
  padding: 0 18px;
  background-color: white;
  color: #5a5a5a;
}

.input-wrapper.round {
  border-radius: 40px;
}

.input-wrapper.border {
  border: 1px solid #d8dfe6;
}

.input-wrapper.with-icon {
  position: relative;
  padding-left: 40px;
}

.input-wrapper.with-icon .label {
  position: absolute;
}

.input-wrapper > input {
  width: 100%;
}

.label-left {
  float: left;
}

.label-right {
  float: right;
}

.input-hidden {
  position: absolute;
  line-height: 0;
  padding: 0;
  width: 0;
  height: 0;
}

.bg-dark {
  background-color: #153a57;
}

.bg-black {
  background-color: #302e32;
}

.bg-white {
  background-color: white;
}

.bg-lightest {
  background-color: #f7f9fa;
}

.bg-primary {
  color: white;
  background-color: #c12b2c;
}

.bg-gradient {
  background: linear-gradient(to top, #fbfbfb, white);
}

.border-bottom {
  border-bottom: 1px solid #d8dfe6;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

.link {
  cursor: pointer;
}

.error-message {
  font-size: 14px;
  font-weight: 600;
  color: #e64545;
}

.btn-blue {
  color: white;
  border-color: #00a4ca;
  background-color: #15bfe7;
}

.btn-blue:hover {
  background-color: #11b7de;
}

.btn-green {
  color: white;
  border-color: #81c835;
  background-color: #81c835;
}

.btn-round {
  width: 40px;
  height: 40px;
  padding: 0;
  font-size: 24px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #f4b83d;
  border-radius: 50%;
  background-color: #24b8ba;
  cursor: pointer;
}

.btn-round:hover {
  border-color: #24b8ba;
  background-color: #f4b83d;
}

.button-spinner {
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -.6em 0 0 -.6em;
  border: .2em solid white;
  border-left-color: transparent;
  border-radius: 50%;
  opacity: 0;
  animation: load8 .8s infinite linear;
}

.btn.left {
  margin-right: 20px;
}

.button-tooltip {
  width: 200px;
  padding: 5px 10px;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate3d(0, 10px, 0);
  margin-bottom: 10px;
  margin-left: -100px;
  color: white;
  border-radius: 5px;
  background-color: #302e32;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease-in-out, visibility 200ms ease-in-out, transform 200ms ease-in-out;
}

.button-tooltip:after {
  content: ' ';
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-top: 5px solid #302e32;
  border-right: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid transparent;
}

.button-tooltip.invalid {
  background-color: #e64545;
}

.button-tooltip.invalid:after {
  border-top-color: #e64545;
}

.btn-bellring {
  font-size: 15px;
  font-weight: 600;
  color: #c12b2c;
  text-transform: none;
  border-color: #c12b2c;
  background-color: transparent;
  transition: all 300ms ease;
}

@media (max-width: 767px) {
  .btn-bellring {
    font-size: 13px;
  }
}

.btn-bellring:before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 18px;
  transform: rotate(14.45deg);
  margin-right: .5em;
  vertical-align: -.2em;
  background-image: url(images/icon-bell-ring.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% auto;
  transition: all 300ms ease;
}

.btn-bellring:hover {
  color: #fff;
  background-color: #c12b2c;
}

.btn-bellring:hover:before {
  background-position: 0 -18px;
}

.content-box-header {
  padding: 30px 0;
  background: linear-gradient(to bottom, white, #ebebeb);
}

.content-box-container {
  padding: 0 28px;
}

.content-box-container:after {
  content: '';
  clear: both;
  display: table;
}

i.fa.primary {
  color: #c12b2c;
}

i.fa.secondary {
  color: #24b8ba;
}

i.fa i {
  font-style: normal;
}

.icon-success {
  display: inline-block;
  margin-right: 20px;
  width: 60px;
  height: 60px;
  vertical-align: top;
  background: url("../images/icon-success.png") top left no-repeat;
  background-size: 60px 60px;
}

@media (max-width: 480px) {
  .icon-success {
    display: block;
    margin: 0 auto 20px;
  }
}

.icon-message-pencil {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../images/message-pencil.png") center center no-repeat;
  background-size: 24px 24px;
}

.white-icon i {
  color: white;
}

.custom-icon {
  display: inline-block;
  vertical-align: top;
  width: 1em;
  height: 1em;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
}

.custom-icon.plus {
  background-image: url("../images/icon-plus.svg");
}

.custom-icon.clock {
  background-image: url("../images/icon-clock.svg");
}

.custom-icon.check {
  background-image: url("../images/icon-check.svg");
}

.custom-icon.check-green {
  background-image: url("../images/icon-check-green.svg");
}

.custom-icon.check-green-small {
  background-image: url("../images/icon-check-green-small.svg");
}

.custom-icon.check-large {
  background-image: url("../images/icon-check-white.svg");
  width: 1.6em;
}

.custom-icon.cancel {
  background-image: url("../images/icon-cancel.svg");
}

.custom-icon.chevron-left {
  background-image: url("../images/icon-chevron-left.svg");
}

.custom-icon.chevron-right {
  background-image: url("../images/icon-chevron-right.svg");
}

.custom-icon.chevron-right-white {
  background-image: url("../images/icon-chevron-right-white.svg");
}

.custom-icon.circle-chevron {
  background-image: url("../images/icon-circle-chevron.svg");
}

.custom-icon.circle-chevron-right-white {
  background-image: url("../images/icon-circle-chevron-right-white.svg");
}

.custom-icon.edit {
  background-image: url("../images/icon-edit.svg");
}

.custom-icon.edit-white {
  background-image: url("../images/icon-edit-white.svg");
}

.custom-icon.save {
  background-image: url("../images/icon-save.svg");
}

.custom-icon.mail {
  background-image: url("../images/icon-mail-white.svg");
}

.custom-icon.resend-mail {
  background-image: url("../images/icon-mail-2-white.svg");
}

.custom-icon.trash {
  background-image: url("../images/icon-trash.svg");
}

.custom-icon.trash-white {
  background-image: url("../images/icon-trash-white.svg");
}

.custom-icon.plane-white {
  background-image: url("../images/icon-plane-white.svg");
}

.custom-icon.clock-white {
  background-image: url("../images/icon-clock-white.svg");
}

.custom-icon.preview {
  width: 17px;
  background-image: url("../images/icon-preview.svg");
}

.custom-icon.close-preview {
  width: 17px;
  background-image: url("../images/icon-close-preview.svg");
}

.custom-icon.publish {
  background-image: url("../images/icon-publish.svg");
}

.custom-icon.cog {
  background-image: url("../images/icon-cog.svg");
}

.custom-icon.duplicate {
  background-image: url("../images/icon-duplicate.svg");
}

.custom-icon.move {
  background-image: url("../images/icon-move.png");
}

.custom-icon.undo {
  background-image: url("../images/icon-undo.svg");
  background-size: 100% auto;
  background-position: top left;
}

.custom-icon.redo {
  background-image: url("../images/icon-redo.svg");
  background-size: 100% auto;
  background-position: top left;
}

.custom-icon.trending {
  width: 14px;
  height: 21px;
  background-image: url("../images/icon-trending.png");
  background-size: 14px 21px;
}

.custom-icon.close {
  position: relative;
}

.custom-icon.close:after, .custom-icon.close:before {
  content: " ";
  display: block;
  width: 1em;
  height: 1px;
  background-color: #444c5c;
  transform-origin: center center;
  position: absolute;
  right: 0;
  top: 0.85em;
}

@media (max-width: 767px) {
  .custom-icon.close:after, .custom-icon.close:before {
    top: 0.75em;
  }
}

.custom-icon.close:before {
  transform: rotate(45deg);
}

.custom-icon.close:after {
  transform: rotate(-45deg);
}

.custom-icon.arrow-up, .custom-icon.arrow-down {
  position: relative;
}

.custom-icon.arrow-up:after, .custom-icon.arrow-up:before, .custom-icon.arrow-down:after, .custom-icon.arrow-down:before {
  content: " ";
  display: block;
  width: 0.8em;
  height: 1px;
  background-color: #767676;
  position: absolute;
  top: 0.8em;
}

.custom-icon.arrow-up:before, .custom-icon.arrow-down:before {
  transform-origin: right center;
  right: 50%;
  transform: rotate(50deg);
}

.custom-icon.arrow-up:after, .custom-icon.arrow-down:after {
  transform-origin: left center;
  left: 50%;
  transform: rotate(-50deg);
}

.custom-icon.arrow-up:before, .custom-icon.arrow-up:after {
  top: auto;
  bottom: 0.75em;
}

.custom-icon.arrow-up:before {
  transform: rotate(-50deg);
}

.custom-icon.arrow-up:after {
  transform: rotate(50deg);
}

.custom-icon.actions {
  height: 1.6em;
  background-image: url("../images/icon-actions.svg");
}

.svg-icon, .svg-icon svg {
  display: inline-block;
  vertical-align: top;
}

.main-navigation {
  float: left;
  font-size: 15px;
  line-height: 30px;
  letter-spacing: 0.01em;
  font-weight: 300;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .main-navigation {
    float: none;
    position: fixed;
    top: 0;
    left: 100%;
    width: 260px;
    height: 100vh;
    background-color: #153a57;
    font-size: 16px;
    text-align: center;
    transition: transform 250ms ease-in-out;
    z-index: 999;
  }
}

@media (max-width: 767px) {
  .main-navigation ul {
    padding: 70px 0 30px;
  }
}

.main-navigation li {
  margin-right: 21px;
}

@media (max-width: 767px) {
  .main-navigation li {
    display: block;
    margin-right: 0;
  }
}

.main-navigation li.current {
  font-weight: 500;
}

.main-navigation li.current a {
  color: white;
}

.main-navigation a {
  display: block;
  padding: 32px 15px 28px;
}

@media (max-width: 767px) {
  .main-navigation a {
    padding: 20px 15px 18px;
  }
}

.main-navigation a:hover {
  color: white;
}

@media (max-width: 767px) {
  .mobile-menu-opened .main-navigation {
    transform: translate3d(-260px, 0, 0);
  }
}

.menu-overlay {
  visibility: hidden;
  opacity: 0;
}

@media (max-width: 767px) {
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 250ms ease-in-out;
    z-index: 998;
  }
}

@media (max-width: 767px) {
  .mobile-menu-opened .menu-overlay {
    visibility: visible;
    opacity: 1;
  }
}

.icon-search, .icon-search-grey, .icon-search-dark {
  display: block;
  width: 24px;
  height: 24px;
  margin-top: 6px;
  margin-left: -4px;
  margin-right: 5px;
  background: url("../images/icon-search.svg") top left no-repeat;
  background-size: 20px 20px;
}

.icon-search-grey {
  background: url("../images/icon-search-grey.svg") top left no-repeat;
}

.icon-search-dark {
  background: url("../images/icon-search-dark.svg") top left no-repeat;
  background-size: 17px 17px;
}

.create-campaign-page .icon-search {
  margin-top: 8px;
  background: url("../images/icon-search-grey.svg") top left no-repeat;
}

input[type="search"] {
  width: 330px;
}

.search-form .input-wrapper {
  position: relative;
  padding-left: 40px;
}

.search-form .input-wrapper label {
  position: absolute;
  top: 0;
  left: 18px;
}

.sidebar {
  width: 310px;
  flex: 0 0 310px;
}

@media (max-width: 1440px) {
  .sidebar {
    width: 280px;
    flex: 0 0 280px;
  }
}

@media (max-width: 991px) {
  .sidebar {
    position: static;
    width: 100%;
  }
}

.subheader-text {
  display: inline-block;
  vertical-align: top;
  line-height: 40px;
}

.subheader-text strong {
  margin-right: 10px;
}

@media (max-width: 480px) {
  .subheader-text strong {
    clear: left;
  }
}

.content-body {
  padding: 50px;
}

.content-body:after {
  content: '';
  clear: both;
  display: table;
}

@media (max-width: 1440px) {
  .content-body {
    padding: 40px 30px;
  }
}

@media (max-width: 767px) {
  .content-body {
    padding: 25px 15px;
  }
}

.content-body.no-padding {
  padding: 0;
}

.content-body.scroll .inner {
  height: 360px;
  padding-right: 0;
  overflow-y: auto;
}

@media (max-width: 767px) {
  .content-body.scroll .inner {
    max-height: none;
    padding-right: 0;
    overflow-y: auto;
  }
}

.spinner,
.spinner:after {
  border-radius: 50%;
  width: 3em;
  height: 3em;
}

.spinner {
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 0.5em solid rgba(193, 43, 44, 0.2);
  border-right: 0.5em solid rgba(193, 43, 44, 0.2);
  border-bottom: 0.5em solid rgba(193, 43, 44, 0.2);
  border-left: 0.5em solid #c12b2c;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 0.8s infinite linear;
  animation: load8 0.8s infinite linear;
  display: none;
}

.spinner:only-child {
  display: block;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.lists-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.lists-list .btn.edit-list {
  padding-left: 14px;
  padding-right: 18px;
  letter-spacing: 0.03em;
}

.lists-list .btn.edit-list .custom-icon {
  width: 16px;
  margin-right: 12px;
}

.content-body.lists-content-body {
  padding: 0;
}

.content-body.lists-content-body .total-people {
  display: block;
  min-height: 20px;
  font-weight: 300;
  color: #9d9d9d;
}

.select-list {
  margin-left: 15px;
  min-width: 168px;
}

.audience-item-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 23px 28px;
  border-bottom: 1px dotted #d8dfe6;
}

.audience-item-wrapper:last-child {
  border: none;
}

@media (max-width: 1199px) {
  .audience-item-wrapper {
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .audience-item-wrapper {
    padding: 23px 15px 13px;
    text-align: center;
  }
}

.audience-item-buttons {
  width: 280px;
  flex: 0 0 280px;
  text-align: right;
}

@media (max-width: 1199px) {
  .audience-item-buttons {
    padding-top: 20px;
    width: 100%;
    flex: 0 0 100%;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .audience-item-buttons {
    width: 100%;
    flex: 0 0 100%;
    text-align: center;
  }
  .audience-item-buttons .btn {
    margin: 0 10px 10px;
  }
}

.audience-item-gravatars {
  width: 410px;
  padding: 0 20px;
  flex: 1 0 410px;
}

@media (max-width: 1199px) {
  .audience-item-gravatars .gravatar-list {
    display: inline-block;
    float: none;
    margin: 0;
  }
}

@media (max-width: 1440px) {
  .audience-item-gravatars .gravatar:not(:first-child) {
    margin-left: -15px;
  }
}

@media (max-width: 1199px) {
  .audience-item-gravatars .gravatar:not(:first-child) {
    margin-left: -7px;
  }
}

@media (max-width: 1199px) {
  .audience-item-gravatars .audience-name {
    text-align: right;
  }
  .audience-item-gravatars .audience-name .inner {
    display: block;
  }
  .audience-item-gravatars .audience-name .inner span {
    display: inline-block;
    height: auto;
  }
}

@media (max-width: 767px) {
  .audience-item-gravatars .audience-name {
    text-align: center;
  }
}

@media (max-width: 1440px) {
  .audience-item-gravatars {
    width: 350px;
    padding: 0 15px;
    flex: 1 0 350px;
  }
}

@media (max-width: 1199px) {
  .audience-item-gravatars {
    width: 60%;
    flex: 0 0 60%;
    padding-right: 0;
    text-align: right;
  }
}

@media (max-width: 767px) {
  .audience-item-gravatars {
    width: 100%;
    flex: 0 0 100%;
    padding-left: 0;
    text-align: center;
  }
}

.audience-item-name {
  flex: 1 1 320px;
}

@media (max-width: 1199px) {
  .audience-item-name {
    width: 40%;
    flex: 0 0 40%;
  }
}

@media (max-width: 767px) {
  .audience-item-name {
    width: 100%;
    flex: 0 0 100%;
    padding-bottom: 10px;
    text-align: center;
  }
}

.message-body {
  padding-top: 30px;
  padding-right: 28px;
  padding-bottom: 30px;
  padding-left: 84px;
}

@media (max-width: 1440px) {
  .message-body {
    padding-left: 74px;
  }
}

@media (max-width: 767px) {
  .message-body {
    padding-top: 30px;
  }
}

@media (max-width: 767px) {
  .message-body {
    padding-top: 20px;
    padding-left: 26px;
  }
}

.message-body ::placeholder {
  color: #b3b3b3;
}

.message-body .invalid ::placeholder {
  color: #e64545;
}

.message-body textarea {
  display: block;
  resize: none;
  width: 100%;
  font-size: 17px;
  line-height: 32px;
  color: #8c8c8c;
  border: none;
  outline: none !important;
  overflow: hidden;
}

.message-body a {
  color: #24b8ba;
}

@media (max-width: 767px) {
  .schedule-wrapper {
    text-align: center;
  }
}

.schedule-row-item {
  height: 64px;
  line-height: 64px;
}

@media (max-width: 767px) {
  .schedule-row-item {
    height: auto;
    padding: 10px 0;
    line-height: 40px;
  }
}

.schedule-row-item.invalid .input-with-icon input {
  color: red;
}

.schedule-row-item.invalid .input-with-icon ::placeholder {
  color: red;
}

.schedule-input-row {
  position: relative;
  margin-right: 58px;
}

@media (max-width: 1700px) {
  .schedule-input-row {
    margin-right: 30px;
  }
}

@media (max-width: 1440px) {
  .schedule-input-row {
    display: inline-block;
    padding-left: 0;
    float: none;
    margin-right: 30px;
    vertical-align: top;
  }
  .schedule-input-row:last-child {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .schedule-input-row {
    display: block;
    margin: 0;
  }
}

.schedule-input-row .label {
  vertical-align: middle;
  font-size: 18px;
  line-height: 24px;
}

@media (max-width: 480px) {
  .schedule-input-row .label {
    display: block;
    margin-bottom: 10px;
  }
}

.schedule-input-row .input-with-icon {
  margin-left: 22px;
  vertical-align: middle;
}

@media (max-width: 1700px) {
  .schedule-input-row .input-with-icon {
    width: 280px;
  }
}

@media (max-width: 1440px) {
  .schedule-input-row .input-with-icon {
    width: 210px;
  }
}

@media (max-width: 480px) {
  .schedule-input-row .input-with-icon {
    width: 100%;
    margin: 0;
  }
}

.schedule-picker {
  width: 340px;
  padding: 10px;
  position: absolute;
  z-index: 2;
  top: 100%;
  right: 0;
  margin-bottom: 20px;
  border: 1px solid #dfdfdf;
  border-radius: 5px;
  background-color: white;
}

@media (max-width: 767px) {
  .schedule-picker {
    width: 280px;
    right: auto;
    left: 50%;
    transform: translate(-50%);
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .schedule-picker {
    right: 15px !important;
  }
}

.schedule-time-picker {
  width: 150px;
}

.schedule-button {
  padding: 11px 23px 11px 17px;
  font-size: 16px;
}

.schedule-button .custom-icon {
  width: 22px;
  height: 22px;
}

.send-now-button {
  padding: 12px 22px 12px 16px;
  margin-top: 7px;
  font-size: 16px;
}

.send-now-button .custom-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.schedule-row {
  padding: 0 28px;
}

@media (max-width: 767px) {
  .schedule-row {
    padding: 0 15px;
  }
}

.schedule-send-wrapper {
  padding-top: 34px;
  padding-bottom: 40px;
  margin-bottom: 36px;
  border-bottom: 1px solid #f4f4f4;
}

@media (max-width: 1440px) {
  .schedule-send-wrapper {
    height: auto;
    float: none;
    line-height: normal;
  }
}

@media (max-width: 767px) {
  .schedule-send-wrapper {
    padding: 20px 15px 30px;
    margin-bottom: 25px;
  }
}

.schedule-input.wrapper {
  padding-bottom: 40px;
}

.schedule-input.wrapper:after {
  content: '';
  clear: both;
  display: table;
}

@media (max-width: 767px) {
  .schedule-input.wrapper {
    padding-bottom: 20px;
  }
}

.time-picker {
  text-align: center;
}

.time-picker:after {
  content: '';
  clear: both;
  display: table;
}

.time-picker button {
  outline: none !important;
  border: none;
  background-color: transparent;
  padding: 0;
  position: absolute;
  z-index: 1;
  left: 0;
  width: 100%;
  height: 22px;
  font-size: 18px;
  cursor: pointer;
}

.time-picker .ampm {
  position: static;
  font-size: 16px;
  color: #d8dfe6;
}

.time-picker .ampm.active {
  color: #c12b2c;
}

.time-picker .prev {
  top: 0;
}

.time-picker .next {
  bottom: 0;
}

.time-picker .switcher {
  position: relative;
  float: left;
  width: 33.33333%;
  padding: 22px 0;
  line-height: 24px;
}

.time-picker .ampm-switcher {
  padding: 10px 0;
}

.content-body-people-list {
  padding: 35px;
}

@media (max-width: 767px) {
  .content-body-people-list {
    padding: 20px 8px 20px 15px;
  }
}

.people-list {
  padding: 0;
}

@media (max-width: 767px) {
  .people-list {
    padding-left: 20px;
  }
}

@media (max-width: 480px) {
  .people-list {
    padding-left: 0;
  }
}

.person-item {
  position: relative;
  margin: 0 0 20px;
  padding-left: 44px;
  padding-right: 15px;
  display: inline-block;
  vertical-align: top;
  min-height: 50px;
  width: 33.33%;
  font-size: 21px;
  line-height: 25px;
  font-weight: 300;
  color: #010101;
}

.person-item:not(.uncheckable) {
  cursor: pointer;
}

.person-item:not(.uncheckable):before {
  content: '';
  left: 0;
  top: 16px;
  width: 24px;
  height: 24px;
  background: #f1f1f1;
  border: 1px solid #c7c7c7;
  border-radius: 2px;
  position: absolute;
}

.person-item:not(.uncheckable):after {
  top: 24px;
  left: 6px;
  width: 12px;
  height: 9px;
  background: url(../images/icon-check-red.svg) no-repeat;
  position: absolute;
}

.person-item:not(.uncheckable).checked .person-wrapper {
  opacity: 1;
}

.person-item:not(.uncheckable).checked:before {
  background-color: white;
}

.person-item:not(.uncheckable).checked:after {
  content: '';
}

@media (max-width: 1440px) {
  .person-item {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .person-item {
    display: block;
    width: 100%;
    max-width: 350px;
    margin: 7px auto 28px;
  }
}

@media (max-width: 480px) {
  .person-item {
    padding-left: 40px;
  }
}

.person-item .email {
  display: block;
  font-size: 16px;
  line-height: 18px;
  color: #767676;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.person-item .email:only-child {
  padding-top: 5px;
}

.person-info {
  padding-top: 5px;
}

.person-wrapper {
  position: relative;
  padding-left: 56px;
  height: 56px;
  opacity: 0.5;
}

.person-item.uncheckable {
  padding-left: 0;
}

.person-item.uncheckable .person-wrapper {
  opacity: 1;
}

@media (max-width: 1440px) {
  .person-item.uncheckable {
    width: 33.3333%;
  }
}

@media (max-width: 1199px) {
  .person-item.uncheckable {
    width: 50%;
  }
}

.person-item-gravatar {
  position: absolute;
  top: 7px;
  left: 0;
}

/* GRAVATAR COLORS */
.person-item:nth-child(17n + 1) .gravatar {
  background-color: #bc0406;
}

.person-item:nth-child(17n + 2) .gravatar {
  background-color: #e9cb00;
}

.person-item:nth-child(17n + 3) .gravatar {
  background-color: #76a741;
}

.person-item:nth-child(17n + 4) .gravatar {
  background-color: #f68d11;
}

.person-item:nth-child(17n + 5) .gravatar {
  background-color: #ea3d97;
}

.person-item:nth-child(17n + 6) .gravatar {
  background-color: #bd68e4;
}

.person-item:nth-child(17n + 7) .gravatar {
  background-color: #11bef6;
}

.person-item:nth-child(17n + 8) .gravatar {
  background-color: #9bcb08;
}

.person-item:nth-child(17n + 9) .gravatar {
  background-color: #4472f5;
}

.person-item:nth-child(17n + 10) .gravatar {
  background-color: #b19056;
}

.person-item:nth-child(17n + 11) .gravatar {
  background-color: #66347b;
}

.person-item:nth-child(17n + 12) .gravatar {
  background-color: #6091a7;
}

.person-item:nth-child(17n + 13) .gravatar {
  background-color: #21b26c;
}

.person-item:nth-child(17n + 14) .gravatar {
  background-color: #f25a5a;
}

.person-item:nth-child(17n + 15) .gravatar {
  background-color: #1fc9cf;
}

.person-item:nth-child(17n + 16) .gravatar {
  background-color: #a35424;
}

.person-item:nth-child(17n + 17) .gravatar {
  background-color: #6e8471;
}

.test-email-wrapper {
  padding: 5px 0;
}

.test-email-wrapper:after {
  content: '';
  clear: both;
  display: table;
}

@media (max-width: 1199px) {
  .test-email-wrapper {
    padding-top: 15px;
    float: none;
  }
}

.test-email-wrapper .label,
.test-email-wrapper .input-wrapper {
  display: inline-block;
  margin-left: 15px;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .test-email-wrapper .label,
  .test-email-wrapper .input-wrapper {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .test-email-wrapper .label {
    display: block;
    margin-bottom: 15px;
  }
}

.test-email-wrapper .input-wrapper {
  width: 330px;
  padding: 0;
  position: relative;
  background-color: transparent;
}

@media (max-width: 767px) {
  .test-email-wrapper .input-wrapper {
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .test-email-wrapper .input-wrapper {
    width: 200px;
  }
}

.test-email-wrapper .input-wrapper.invalid ::placeholder {
  color: #e64545;
}

.test-email-wrapper .input-wrapper:before {
  content: '';
  width: 22px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 20px;
  margin-top: -7px;
  background: url(../images/icon-mail.svg) left top/100% 100% no-repeat;
}

@media (max-width: 480px) {
  .test-email-wrapper .input-wrapper:before {
    left: 13px;
  }
}

.test-email-wrapper input {
  display: block;
  width: 100%;
  padding-left: 58px;
  border-radius: 40px;
}

@media (max-width: 480px) {
  .test-email-wrapper input {
    padding-left: 40px;
  }
}

.test-email-button {
  width: 40px;
  height: 40px;
  padding: 0;
  margin-right: -8px;
  margin-left: 10px;
  vertical-align: top;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.test-email-button .custom-icon {
  width: 24px;
  height: 24px;
}

.write-user-wrapper h5 {
  margin-bottom: 1px;
  font-size: 19px;
}

.write-user-wrapper strong {
  font-weight: 400;
  color: #f54849;
}

.write-user-avatar,
.write-user-info {
  display: inline-block;
  vertical-align: top;
}

.write-user-info {
  padding: 3px 0 0 15px;
}

.user-blasts {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #c8c8c8;
}

.write-user-avatar .AuthorAvatar {
  width: 50px;
  height: 50px;
  line-height: 49px;
}

@media (max-width: 1199px) {
  .write-user-avatar .AuthorAvatar {
    margin-top: 0;
  }
}

.write-user-avatar .AuthorAvatar .initials {
  font-size: 24px;
}

.fr-toolbar,
.fr-popup {
  padding: 5px 10px;
  border: 1px solid #d8dfe6;
  border-radius: 8px;
  background-color: #f7f9fa;
  box-shadow: none;
}

.fr-toolbar .fr-command.fr-btn,
.fr-popup .fr-command.fr-btn {
  width: 28px;
  text-align: center;
}

.fr-toolbar .fr-command.fr-btn i,
.fr-popup .fr-command.fr-btn i {
  display: inline-block;
  margin: 12px 7px;
  font-size: 16px;
}

.fr-toolbar .fr-command.fr-btn:hover, .fr-toolbar .fr-command.fr-btn.fr-active,
.fr-popup .fr-command.fr-btn:hover,
.fr-popup .fr-command.fr-btn.fr-active {
  color: #24b8ba;
  background-color: transparent;
}

.fr-toolbar.fr-inline .fr-arrow,
.fr-popup.fr-inline .fr-arrow {
  top: auto;
  bottom: 100%;
  transform: none;
  border-top: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #d8dfe6;
  border-left: 7px solid transparent;
  background-color: transparent;
}

.fr-toolbar.fr-top.fr-sticky-on,
.fr-popup.fr-top.fr-sticky-on {
  border-bottom: 1px solid #d8dfe6;
  background-color: white;
  box-shadow: 0 8px 8px -8px #d8dfe6;
}

.fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-selection,
.fr-popup .fr-command.fr-btn.fr-dropdown.fr-selection {
  width: 28px;
}

.fr-popup .fr-buttons {
  box-shadow: none;
}

.fr-popup .fr-command.fr-btn {
  width: 38px;
}

.fr-popup .fr-command.fr-btn i {
  margin: 12px;
  font-size: 14px;
}

.fr-command.fr-btn + .fr-dropdown-menu {
  margin-left: 5px;
}

.fr-popup .fr-checkbox input:checked + span {
  border-color: #24b8ba;
  background-color: #24b8ba;
}

.fr-popup .fr-action-buttons button.fr-command {
  color: #24b8ba;
}

.fr-popup .fr-action-buttons button.fr-command:hover {
  color: #24b8ba;
}

.fr-popup .fr-input-line input[type=text],
.fr-popup .fr-input-line textarea {
  border-bottom: 1px solid #d8dfe6;
}

.fr-popup .fr-input-line input[type=text]:focus,
.fr-popup .fr-input-line textarea:focus {
  border-bottom: 2px solid #24b8ba;
}

.fr-popup .fr-input-line input[type=text]:focus + label,
.fr-popup .fr-input-line textarea:focus + label {
  color: #24b8ba;
}

.message-body {
  min-height: 250px;
  font-size: 17px;
  font-weight: 300;
  line-height: 20px;
  color: #b7b7b7;
}

.message-body p {
  margin: 0 0 18px;
}

.shortcode-replacement {
  display: inline-block;
  padding: 1px 10px;
  font-weight: 400;
  color: #c12b2c;
  border: 1px solid #d8dfe6;
  border-radius: 20px;
  background-color: #f7f9fa;
}

.fr-view .pretty-link img.fr-dii {
  margin: 0;
}

.pretty-link-wrapper {
  user-select: none;
  position: relative;
}

.pretty-link-wrapper:hover:after, .pretty-link-wrapper:hover:before {
  opacity: 1;
}

.pretty-link-wrapper:after, .pretty-link-wrapper:before {
  cursor: pointer;
  opacity: 0;
  transition: opacity 300ms ease;
}

.pretty-link-wrapper:after {
  content: 'Edit Pretty Link';
  display: block;
  width: 170px;
  height: 58px;
  padding: 21px 20px;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  margin-top: -29px;
  margin-left: -85px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 1em;
  text-align: center;
  color: white;
  text-transform: uppercase;
  border-radius: 5px;
  background-color: #81c835;
}

.pretty-link-wrapper:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgba(129, 200, 53, 0.5);
}

.content__pretty-link {
  display: flex;
  padding: 30px;
  border: 1px solid #d8dfe6;
}

@media (max-width: 767px) {
  .content__pretty-link {
    display: block;
  }
}

.content__pretty-link .content__pretty-link-content h3 {
  margin-bottom: 8px;
}

.content__pretty-link-img {
  flex: 0 0 260px;
  margin-right: 30px;
}

@media (max-width: 767px) {
  .content__pretty-link-img {
    margin-right: 0;
    margin-bottom: 20px;
    text-align: center;
  }
}

.content__pretty-link-img img {
  display: inline-block;
  max-width: 100%;
  vertical-align: top;
}

.content__pretty-link-content h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

.content__pretty-link-content h3 a {
  color: #444c5c;
  text-decoration: none;
}

.content__pretty-link-content p {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 26px;
}

.content__pretty-link-content p:last-child {
  margin-bottom: 0;
}

.content__pretty-link-content p a {
  display: inline-block;
  padding: 2px 10px 2px 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.blast-report-header {
  margin-bottom: 10px;
}

.popup-box .blast-report-body ul,
.blast-report-body ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.popup-box .blast-report-body strong,
.blast-report-body strong {
  display: block;
  margin-bottom: 2px;
  font-size: 23px;
  line-height: 25px;
  color: #444c5c;
}

.popup-box .blast-report-body var,
.blast-report-body var {
  font-size: 23px;
  font-style: normal;
  line-height: 25px;
  color: #444c5c;
}

.popup-box .blast-report-body em,
.blast-report-body em {
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  font-style: normal;
  line-height: 25px;
  color: #9d9d9d;
}

.blast-report-left-col {
  width: 40%;
  padding-top: 5px;
  padding-right: 32px;
  float: left;
  border-right: 1px solid #c8c8c8;
}

.blast-report-right-col {
  width: 60%;
  padding-top: 12px;
  padding-left: 32px;
  float: left;
}

.blast-report-meta li {
  margin-bottom: 15px;
}

.blast-report-meta li:last-child {
  margin-bottom: 0;
}

.blast-report-line {
  height: 9px;
  position: relative;
  z-index: 1;
  margin-bottom: 5px;
  border-radius: 20px;
  background-color: #dadada;
}

.blast-report-line-inner {
  height: 9px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20px;
  background-color: #c12b2c;
}

.blast-report-line-inner:not(.active) {
  width: 0 !important;
}

.blast-report-line-inner.active {
  transition: width 700ms cubic-bezier(0.42, 0, 0.275, 1.525);
}

.blast-report-chart {
  margin-bottom: 10px;
}

.blast-report-chart:after {
  content: '';
  clear: both;
  display: table;
}

.blast-report-chart .left,
.blast-report-chart .right {
  width: 50%;
  float: left;
}

.blast-report-chart .right {
  text-align: right;
}

.blast-report-click-rate {
  margin-bottom: 30px;
}

.blast-report-click-rate .blast-report-line-inner.active {
  transition-delay: 200ms;
}

.blast-report-stats {
  display: flex;
  justify-content: space-between;
}

.blast-report-stats li {
  text-align: center;
}

.blast-report-message-wrapper {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.2em;
  text-align: left;
}

.blast-report-message-wrapper p {
  margin-bottom: 1.2em;
}

.blast-report-message-wrapper p:last-child {
  margin-bottom: 0;
}

.blast-report-message {
  margin-bottom: 20px;
}

.blast-report-message strong {
  font-weight: 700;
  color: #444c5c;
}

.blast-report-useopen {
  padding-bottom: 20px;
  position: relative;
}

.blast-report-useopen .blast-report-message-inner {
  position: relative;
}

.blast-report-useopen .blast-report-message-inner:after {
  content: " ";
  display: block;
  position: absolute;
  top: 40px;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.75) 65%, white 95%);
}

.blast-report-useopen .blast-report-message-inner.opened:after {
  display: none;
}

.blast-report-message-inner {
  overflow: hidden;
}

.blast-report-message-trigger {
  padding: 1px 10px 0;
  position: absolute;
  bottom: 0;
  left: 0;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  text-transform: uppercase;
  border: 0;
  border-radius: 20px;
  background-color: #dfe7eb;
  cursor: pointer;
}

.blast-report-message-trigger:focus, .blast-report-message-trigger:active {
  outline: none;
}

.blast-report-body {
  overflow: hidden;
}

.campaigns-list-filters {
  padding: 8px 0 0;
  font-size: 17px;
  line-height: 24px;
}

@media (max-width: 991px) {
  .campaigns-list-filters {
    padding: 22px 0 0;
  }
}

@media (max-width: 767px) {
  .campaigns-list-filters {
    float: none;
    text-align: center;
  }
}

.campaigns-list-filters > *:not(:last-child) {
  margin-right: 10px;
}

.campaigns-list-filter-heading {
  display: inline-block;
  vertical-align: top;
  font-family: "Roboto", sans-serif;
  line-height: 40px;
}

.campaigns-list-filter {
  display: inline-block;
  max-width: 250px;
  padding: 5px 35px 5px 17px;
  position: relative;
  margin-top: 3px;
  margin-left: 10px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #3f4f5f;
  text-overflow: ellipsis;
  border-radius: 20px;
  background-color: #dfe7eb;
  cursor: pointer;
  overflow: hidden;
}

.campaigns-list-filter:first-of-type {
  margin-left: 17px;
}

.campaigns-list-filter:after, .campaigns-list-filter:before {
  content: " ";
  display: block;
  width: 14px;
  height: 2px;
  position: absolute;
  top: 15px;
  right: 13px;
  transform-origin: center center;
  background-color: #3f4f5f;
}

.campaigns-list-filter:after {
  transform: rotate(45deg);
}

.campaigns-list-filter:before {
  transform: rotate(-45deg);
}

.avatar-wrapper.theme-0 .AuthorAvatar {
  background-color: #38bd92;
}

.avatar-wrapper.theme-1 .AuthorAvatar {
  background-color: #1b92ce;
}

.avatar-wrapper.theme-2 .AuthorAvatar {
  background-color: #f68d11;
}

.avatar-wrapper.theme-3 .AuthorAvatar {
  background-color: #df307a;
}

.avatar-wrapper.theme-4 .AuthorAvatar {
  background-color: #3f20af;
}

.avatar-progress-wrapper {
  padding-top: 25px;
}

.avatar-progress-bar {
  height: 5px;
  margin-bottom: 3px;
  border-radius: 10px;
  background-color: #dadada;
}

.avatar-progress-bar .bar {
  height: 5px;
  width: 0;
  border-radius: 10px;
  background-color: #c12b2c;
  transition: all 300ms ease-in-out;
}

.avatar-progress-number {
  font-size: 12px;
  line-height: 20px;
  color: #9d9d9d;
}

.fr-box a.fr-floating-btn i {
  font-size: 17px;
}

.fr-qi-helper a.fr-btn.fr-floating-btn {
  backface-visibility: hidden;
}

.app-wrapper .app-inner .fr-qi-helper {
  background-color: white;
}

.app-wrapper .app-inner .fr-qi-helper .fr-floating-btn {
  padding: 4px;
  vertical-align: top;
  border-radius: 0;
  background: white;
  box-shadow: none;
}

.app-wrapper .app-inner .fr-qi-helper .fr-floating-btn:after {
  content: " ";
  display: block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: 0 0;
}

.app-wrapper .app-inner .fr-qi-helper .fr-floating-btn:hover:after {
  background-position: 0 -24px;
}

.app-wrapper .app-inner .fr-quick-insert.fr-visible a.fr-floating-btn {
  box-shadow: none;
  transition: transform .2s ease 0s;
}

.app-wrapper .app-inner .fr-quick-insert.fr-visible a.fr-floating-btn:before {
  content: " ";
  display: block;
  width: 23px;
  height: 23px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -12px;
  margin-left: -12px;
  background-image: url("/images/quick-insert-trigger.svg");
  background-repeat: no-repeat;
  background-position: top left;
  transition: transform .2s ease-in-out;
}

.app-wrapper .app-inner .fr-quick-insert.fr-visible a.fr-floating-btn:hover {
  background-color: white;
}

.app-wrapper .app-inner .fr-quick-insert.fr-visible a.fr-floating-btn:hover:before {
  background-position: 0 -23px;
}

.app-wrapper .app-inner .fr-quick-insert.fr-visible a.fr-floating-btn svg {
  display: none;
}

.app-wrapper .app-inner .fr-quick-insert.fr-visible.fr-on a.fr-floating-btn:before {
  transform: rotate(225deg);
  background-position: 0 -23px;
}

body .fr-toolbar.fr-inline .fr-command.fr-btn {
  margin: 0 7px;
}

body .fr-toolbar .fr-command.fr-btn {
  height: 35px;
  margin: 0 10px;
  vertical-align: top;
}

body .fr-toolbar .fr-command.fr-btn:first-child {
  margin-left: 0;
}

body .fr-toolbar .fr-command.fr-btn:before {
  content: " ";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -12px;
  margin-left: -12px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 24px 48px;
}

body .fr-toolbar .fr-command.fr-btn:hover:not(.fr-disabled):before, body .fr-toolbar .fr-command.fr-btn.fr-active:not(.fr-disabled):before {
  background-position: 0 -24px;
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='italic'] i.fa {
  display: none;
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='italic']:before {
  background-image: url("/images/icon-italic.svg");
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='bold'] i.fa {
  display: none;
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='bold']:before {
  background-image: url("/images/icon-bold.svg");
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='underline'] i.fa {
  display: none;
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='underline']:before {
  background-image: url("/images/icon-underline.svg");
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='paragraphFormat'] i.fa {
  display: none;
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='paragraphFormat']:before {
  background-image: url("/images/icon-paragraph.png");
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='fontSize'] i.fa {
  display: none;
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='fontSize']:before {
  background-image: url("/images/icon-fontsize.svg");
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='curaytorBombBomb'] i.fa {
  display: none;
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='curaytorBombBomb']:before {
  background-image: url("/images/icon-bombbomb.svg");
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='curaytorBgColor'] i.fa {
  display: none;
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='curaytorBgColor']:before {
  background-image: url("/images/icon-bg-color.svg");
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='insertLink'] i.fa {
  display: none;
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='insertLink']:before {
  background-image: url("/images/icon-link.svg");
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='emoticons'] i.fa {
  display: none;
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='emoticons']:before {
  background-image: url("/images/icon-emoji.svg");
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='insertImage'] i {
  display: none;
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='insertImage']:before {
  background-image: url("/images/quick-insert-image.svg");
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='formatUL'] i {
  display: none;
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='formatUL']:before {
  background-image: url("/images/quick-insert-ul.svg");
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='formatOL'] i {
  display: none;
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='formatOL']:before {
  background-image: url("/images/quick-insert-ol.svg");
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='insertTable'] i {
  display: none;
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='insertTable']:before {
  background-image: url("/images/quick-insert-table.svg");
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='insertHR'] i {
  display: none;
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='insertHR']:before {
  background-image: url("/images/quick-insert-hr.svg");
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='curaytor_personalization'] i {
  display: none;
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='curaytor_personalization']:before {
  background-image: url("/images/icon-personalization.svg");
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='curaytorBlur'] i {
  display: none;
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='curaytorBlur']:before {
  background-image: url("/images/icon-blur.png");
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='curaytorColor'] i {
  display: none;
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='curaytorColor']:before {
  background-image: url("/images/icon-color.png");
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='clearFormatting'] i, body .fr-toolbar .fr-command.fr-btn[data-cmd='curaytorClearFormatting'] i {
  display: none;
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='clearFormatting']:before, body .fr-toolbar .fr-command.fr-btn[data-cmd='curaytorClearFormatting']:before {
  background-image: url("/images/icon-clear.svg");
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='undo'].fr-disabled {
  cursor: default;
  opacity: .5;
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='undo'] i {
  display: none;
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='undo']:before {
  background-image: url("/images/icon-undo.svg");
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='redo'].fr-disabled {
  cursor: default;
  opacity: .5;
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='redo'] i {
  display: none;
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='redo']:before {
  background-image: url("/images/icon-redo.svg");
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='curaytorLineHeight']:hover:before {
  background-position: 0 -25px;
}

body .fr-toolbar .fr-command.fr-btn[data-cmd='curaytorLineHeight']:before {
  background-image: url("/images/line-height-icon.svg");
  background-size: 24px 49px;
}

.fr-dropdown:after {
  display: none;
}

.fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-active,
.fr-popup .fr-command.fr-btn.fr-dropdown.fr-active {
  background: transparent;
}

.fr-command.fr-btn.fr-active + .fr-dropdown-menu {
  margin-top: 4px;
  margin-left: -4px;
  border: 1px solid #d8dfe6;
  border-radius: 5px;
  box-shadow: none;
  overflow: visible;
}

.fr-command.fr-btn.fr-active + .fr-dropdown-menu:before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 10px;
  transform: rotate(-45deg);
  transform-origin: top left;
  border-top: 1px solid #d8dfe6;
  border-right: 1px solid #d8dfe6;
  background-color: white;
}

.fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list {
  padding: 3px 0;
}

.fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li {
  border-bottom: 1px solid #d8dfe6;
}

.fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li:last-child {
  border: none;
}

.fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li .fr-command {
  min-width: 120px;
  padding: 0 12px;
}

.fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li .fr-command:hover {
  background-color: white;
}

.fr-toolbar.fr-top {
  padding-left: 0;
  margin-bottom: 15px;
  border: none;
  background-color: transparent;
  box-shadow: none;
}

.fr-box.fr-basic.fr-top .fr-wrapper {
  border: none;
  background-color: transparent;
  box-shadow: none;
}

.fr-box.fr-basic.fr-top .fr-wrapper .fr-element {
  padding-left: 3px;
}

.fr-popup .fr-arrow {
  width: 9px;
  height: 9px;
  z-index: 1;
  top: 0;
  left: 50%;
  transform: rotate(-45deg);
  transform-origin: top left;
  margin-left: -5px;
  border: none;
  border-top: 1px solid #d8dfe6;
  border-right: 1px solid #d8dfe6;
  background-color: white;
}

.fr-toolbar,
.fr-popup {
  background-color: white;
}

.fr-toolbar.fr-active,
.fr-popup.fr-active {
  margin-top: 16px;
}

.options-form-row {
  padding-bottom: 15px;
  display: flex;
  align-items: flex-start;
  max-width: 640px;
}

@media (max-width: 991px) {
  .options-form-row {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .options-form-row {
    padding-bottom: 25px;
  }
}

.options-form-row:last-child {
  padding-bottom: 0;
}

.options-form-row.border-top {
  padding-top: 15px;
  border-top: 1px solid #f4f4f4;
}

.options-form-row.text-right {
  justify-content: flex-end;
}

.options-form-row .invalid-message {
  padding: 12px 0 10px;
  color: #e64545;
}

.label-row:after {
  content: '';
  clear: both;
  display: table;
}

.options-label {
  width: 150px;
  flex-shrink: 0;
  margin-right: 15px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 50px;
  color: #444c5c;
}

@media (max-width: 767px) {
  .options-label {
    display: block;
    float: none;
    padding: 0 0 8px;
    line-height: 20px;
  }
}

.options-label i {
  margin-right: 15px;
}

.options-label i svg {
  vertical-align: middle;
}

.site-settings-label {
  width: 205px;
}

@media (max-width: 767px) {
  .site-settings-label {
    width: 100px;
  }
}

.site-settings-label strong {
  margin-left: 5px;
}

.options-input-and-error-wrapper {
  flex-grow: 1;
}

.options-input-wrapper {
  position: relative;
  padding: 0;
  flex-grow: 1;
  border-radius: 5px;
}

.options-input-wrapper:not(.no-icon) {
  padding: 0 40px 0 0;
}

.options-input-wrapper:not(.no-icon):after {
  content: ' ';
  display: block;
  width: 22px;
  height: 15px;
  position: absolute;
  top: 50%;
  margin-top: -8px;
  right: 10px;
  background-position: 0 0;
  background-repeat: no-repeat;
}

.options-input-wrapper.nopadding {
  padding: 0;
}

.options-input-wrapper.invalid {
  border-color: #e64545;
}

.options-input-wrapper.valid:after {
  background-image: url("/images/icon-check-green.svg");
}

.pixels-input-wrapper {
  width: 100px;
  padding-right: 40px;
  position: relative;
}

.pixels-input-wrapper:after {
  content: 'px';
  padding-top: 2px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  line-height: 42px;
}

.options-input,
.options-textarea {
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 20px;
}

.options-textarea {
  display: block;
}

.options-input {
  height: 48px;
}

.options-input.border {
  border-radius: 5px;
}

.options-label-icon {
  display: inline-block;
  vertical-align: top;
  margin: 13px 16px 0 0;
}

@media (max-width: 767px) {
  .options-label-icon {
    margin-top: 0;
  }
}

.options-label-icon svg {
  display: block;
}

.signature-wrapper {
  padding: 20px 22px;
  border: 1px solid #d8dfe6;
}

.signature-wrapper .AuthorAvatar {
  width: 72px;
  height: 72px;
  font-size: 36px;
  line-height: 72px;
  border-radius: 0;
}

.signature-avatar-wrapper {
  float: left;
  margin-right: 20px;
}

.signature-info-wrapper {
  padding-top: 8px;
  overflow: hidden;
}

.signature-info-wrapper h5 {
  display: block;
  font-size: 15px;
  line-height: 18px;
}

.signature-info-wrapper span {
  display: inline-block;
  vertical-align: top;
}

.signature-info-wrapper .account-title {
  margin-bottom: 5px;
}

.signature-info-wrapper .account-title,
.signature-info-wrapper .account-info {
  font-size: 13px;
  color: #9d9d9d;
}

.signature-info-wrapper .account-info span {
  margin-right: 7px;
  line-height: 13px;
}

.signature-info-wrapper .account-info span:after {
  content: " ";
  display: inline-block;
  width: 1px;
  height: 11px;
  vertical-align: top;
  margin-top: 2px;
  margin-left: 7px;
  background-color: #9d9d9d;
}

.signature-info-wrapper .account-info span a {
  text-decoration: none;
  color: #9d9d9d;
}

.signature-info-wrapper .account-info span a:hover {
  color: #767676;
}

.signature-info-wrapper .account-info span:last-child {
  border: none;
}

.signature-info-wrapper .account-info span:last-child:after {
  display: none;
}

.signature-top-content:after {
  content: '';
  clear: both;
  display: table;
}

.signature-top-content:before {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin-bottom: 20px;
  background-color: #444c5c;
}

.signature-bottom-content {
  position: relative;
  margin-top: 18px;
  padding: 15px 0 10px;
  border: 1px solid #d8dfe6;
  border-left: 0;
  border-right: 0;
}

.signature-bottom-content:after {
  content: '';
  clear: both;
  display: table;
}

/**
 * This is the part with logo and address.
 * Goes to the right of the signature footer.
 */
.signature-bottom-info {
  float: left;
}

@media (max-width: 767px) {
  .signature-bottom-info {
    float: none;
  }
}

.signature-bottom-info .company-logo img {
  display: block;
}

.signature-bottom-info,
.signature-bottom-info a {
  font-size: 13px;
  color: #9d9d9d;
}

.signature-bottom-info span,
.signature-bottom-info a {
  display: inline-block;
  margin-right: 7px;
  vertical-align: top;
}

.signature-bottom-info span:after,
.signature-bottom-info a:after {
  content: " ";
  display: inline-block;
  width: 1px;
  height: 11px;
  vertical-align: top;
  margin-top: 2px;
  margin-left: 7px;
  background-color: #9d9d9d;
}

.signature-bottom-info span:last-child:after,
.signature-bottom-info a:last-child:after {
  content: none;
}

.signature-bottom-info a:hover {
  color: #767676;
}

.company-footer-information {
  margin-top: 10px;
  line-height: 13px;
}

.dropdown-button {
  display: block;
  width: 100%;
  padding: 13px 10px;
  cursor: pointer;
  text-align: left;
  color: #838384;
  border: 1px solid #dfe7eb;
  border-bottom: none;
  background: transparent;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}

.dropdown-trigger-button {
  position: relative;
  padding: 13px 30px 12px 10px;
  border-bottom: 1px solid #dfe7eb;
  border-radius: 5px;
  line-height: 22px;
}

.dropdown-trigger-button .custom-icon {
  width: 16px;
  height: 21px;
  margin-top: -1px;
  margin-right: 8px;
}

.dropdown-trigger-button:after {
  position: absolute;
  top: 15px;
  right: 13px;
  display: block;
  width: 10px;
  height: 10px;
  content: " ";
  transform: rotate(45deg);
  transform-origin: center center;
  border: 1px solid #838384;
  border-top: none;
  border-left: none;
}

.dropdown-trigger.opened .dropdown-trigger-button {
  border-radius: 5px 5px 0 0;
}

.dropdown-trigger.opened .dropdown-trigger-button:after {
  top: 21px;
  transform: rotate(-135deg);
}

.dropdown-list {
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  width: 100%;
  min-height: 5px;
  margin: 0 0 50px;
  padding: 0;
  list-style-type: none;
  background-color: white;
}

.dropdown-list li:first-child .dropdown-button {
  border-top: none;
}

.dropdown-list li:last-child .dropdown-button {
  border-bottom: 1px solid #dfe7eb;
  border-radius: 0 0 5px 5px;
}

.fake-browser-wrapper .custom-scrollbar-wrapper {
  top: 15px;
  right: 10px;
}

.fake-browser-body {
  font-family: "Source Sans Pro", sans-serif;
}

.fake-browser-header {
  padding: 12px 0 8px;
  background: linear-gradient(white, #f3f4f6);
}

.fake-browser-dots {
  padding-left: 10px;
}

.fake-browser-dots:after {
  content: '';
  clear: both;
  display: table;
}

.fake-browser-dots span {
  display: block;
  float: left;
  vertical-align: top;
  margin-right: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  line-height: 0;
}

.fake-browser-dots span:first-child {
  background-color: #ff5335;
}

.fake-browser-dots span:nth-child(2) {
  background-color: #ffba35;
}

.fake-browser-dots span:nth-child(3) {
  background-color: #71b63c;
}

.fake-browser-body {
  padding: 25px 30px 25px 22px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 300;
  color: black;
}

.fake-browser-body a {
  color: #1c9ec9;
  text-decoration: none;
}

.fake-browser-body a:hover {
  color: #444c5c;
}

.fake-browser-body strong {
  font-weight: 700;
  color: black;
}

.fake-browser-body em {
  font-weight: 300;
  font-style: italic;
}

.fake-browser-body-wrapper {
  height: 450px;
}

.fake-browser-subheader {
  padding: 12px 22px;
  border-bottom: 1px solid #d8dfe6;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Roboto", sans-serif;
}

.fake-browser-subheader h3 {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: #444c5c;
  font-weight: 400;
}

.fake-browser-subheader small {
  font-size: 13px;
}

.fake-browser-subheader .date-wrapper {
  color: #9d9d9d;
}

.fake-browser-subheader .date-wrapper em {
  font-weight: 400;
  color: #c12b2c;
}

.shadow-box {
  margin: 10px;
  box-shadow: 0 0 10px #cacacc;
  border-radius: 8px;
  background-color: white;
  overflow: hidden;
}

.header-nav-dropdown {
  float: left;
  margin-left: -50px;
  margin-right: 30px;
}

@media (max-width: 1440px) {
  .header-nav-dropdown {
    margin-left: -30px;
  }
}

.header-nav-dropdown .envelope {
  line-height: 15px;
  padding-top: 5px;
}

.header-nav-dropdown li {
  border-right: 1px solid #d8dfe6;
  border-bottom: 1px solid #d8dfe6;
}

@media (max-width: 767px) {
  .header-nav-dropdown {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .header-nav-dropdown li {
    border-right: none;
  }
}

.smooth-scroll-button {
  display: inline-block;
  vertical-align: top;
  margin-top: 6px;
  padding-left: 5px;
  margin-left: 12px;
  border-left: 1px solid #d8dfe6;
  line-height: 16px;
}

.smooth-scroll-button .text {
  display: inline-block;
  vertical-align: top;
  margin-top: -2px;
  margin-left: 6px;
  text-decoration: underline;
}

.smooth-scroll-button i {
  margin-top: -2px;
}

.smooth-scroll-button:first-of-type {
  border: none;
  margin-left: 0;
}

input[type='radio'] {
  display: none;
}

input[type='radio'] + label {
  cursor: pointer;
}

@media (max-width: 767px) {
  input[type='radio'] + label {
    margin-left: 0;
  }
}

input[type='radio']:checked + label .radio-bullet-inner:after {
  transform: scale(1);
  transition: all 0.25s cubic-bezier(0.405, 0.565, 0.19, 1.6);
}

.radio-with-thumb input[type='radio'] + label {
  margin-left: 0;
}

.radio-flex-wrapper {
  display: flex;
  align-items: center;
}

.radio-thumb-wrapper {
  margin-bottom: 10px;
  border: 1px solid #d8dfe6;
}

.radio-wrapper {
  padding: 10px 15px 10px 0;
}

.radio-group-inline .radio-wrapper {
  display: inline-block;
  vertical-align: top;
  margin-right: 20px;
}

.radio-bullet {
  height: 25px;
  width: 25px;
  flex: 0 0 25px;
}

.radio-content-wrapper {
  width: 100%;
  flex: 1 1 100%;
  padding-left: 0.8em;
}

.radio-bullet-inner {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 25px;
  height: 25px;
  background-color: #eeeef4;
  border: 1px solid #d8dfe6;
  border-radius: 50%;
}

.radio-bullet-inner:after {
  content: ' ';
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  top: 4px;
  left: 4px;
  background-color: #c12b2c;
  border-radius: 50%;
  transition: none;
  transform: scale(0);
}

.settings-section:not(:first-child) .content-header {
  border-top: 1px solid #f4f4f4;
}

.settings-section .content-header + .content-header {
  border-top: none;
}

.settings-section.two-cols {
  display: flex;
}

@media (max-width: 1199px) {
  .settings-section.two-cols {
    display: block;
  }
}

.settings-section.two-cols .col {
  flex: 0 0 50%;
}

.settings-section.two-cols .col:nth-child(odd) .option-page-container {
  padding-right: 9px;
}

@media (max-width: 1199px) {
  .settings-section.two-cols .col:nth-child(odd) .option-page-container {
    padding-right: 28px;
  }
}

@media (max-width: 767px) {
  .settings-section.two-cols .col:nth-child(odd) .option-page-container {
    padding-right: 20px;
  }
}

.settings-section.two-cols .col:nth-child(even) .option-page-container {
  padding-left: 9px;
}

@media (max-width: 1199px) {
  .settings-section.two-cols .col:nth-child(even) .option-page-container {
    padding-left: 28px;
  }
}

@media (max-width: 767px) {
  .settings-section.two-cols .col:nth-child(even) .option-page-container {
    padding-left: 20px;
  }
}

.settings-page-entry-two-cols {
  margin: 0 -9px;
  display: flex;
}

.settings-page-entry-two-cols .col {
  flex: 0 0 50%;
  padding: 0 9px;
}

.color-picker {
  position: relative;
}

.color-picker .current-color {
  cursor: pointer;
}

.color-picker-modal {
  position: absolute;
  left: 20px;
  top: 40%;
  z-index: 1;
}

.color-picker-modal .colorpicker-simple-color {
  margin: 0 6px 6px 0;
}

.color-picker-modal .colorpicker-simple-button {
  display: block;
  width: 30px;
  height: 30px;
}

.color-picker-modal .colorpicker-simple-colors,
.color-picker-modal .colorpicker-simple-input-outer {
  display: inline-block;
}

.color-picker-modal .colorpicker-simple-input {
  width: 100%;
  flex: 0 1 100%;
  height: 28px;
  padding: 4px 10px;
}

.color-picker-modal .colorpicker-simple-label {
  line-height: 28px;
}

.color-picker-modal .color-picker-simple {
  width: 276px;
  padding: 5px 9px 9px 15px;
  background-color: white;
}

.add-to-fav {
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -12px;
  cursor: pointer;
  z-index: 1;
}

.add-to-fav svg {
  width: 24px;
  height: auto;
}

.add-to-fav path {
  fill: #9d9d9d;
}

.add-to-fav:hover path {
  fill: #444c5c;
}

.add-to-fav .fav_filled path {
  fill: #c12b2c;
}

.add-to-fav .fav_filled:hover path {
  fill: #444c5c;
}

.rangeslider {
  margin: 15px 0;
  position: relative;
  -ms-touch-action: none;
  touch-action: none;
}

.range-slider {
  position: relative;
}

.range-slider .value {
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: 16px;
  font-size: 13px;
  line-height: 20px;
  border-bottom: 1px solid #d8dfe6;
}

.rangeslider__handle {
  display: inline-block;
  position: absolute;
  background: white;
  border: 1px solid #d8dfe6;
  cursor: pointer;
}

.rangeslider-horizontal {
  height: 6px;
  border-radius: 10px;
}

.rangeslider-horizontal .rangeslider__fill {
  width: 100% !important;
  height: 100%;
  background-color: #f7f9fa;
  border: 1px solid #d8dfe6;
  border-radius: 10px;
  top: 0;
}

.rangeslider-horizontal .rangeslider__handle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  top: -9px;
}

.tags-input-list-wrapper:after {
  content: '';
  clear: both;
  display: table;
}

.tags-input-list {
  list-style-type: none;
  padding: 15px 0 0;
  width: 330px;
  float: right;
  margin: 0;
}

.tags-input-list li {
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
  margin-bottom: 7px;
}

.drawer-section .tags-input-list {
  float: none;
  width: 100%;
}

.tags-input-item {
  padding: 0 10px;
  position: relative;
  border: 0;
  border-radius: 20px;
  background-color: #f7f9fa;
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  color: #9d9d9d;
}

.tags-input-item:not(:disabled) {
  padding-right: 20px;
  cursor: pointer;
}

.tags-input-item:not(:disabled):before, .tags-input-item:not(:disabled):after {
  content: " ";
  width: 11px;
  height: 2px;
  position: absolute;
  right: 5px;
  top: 9px;
  background-color: rgba(68, 76, 92, 0.7);
  transform-origin: center center;
}

.tags-input-item:not(:disabled):before {
  transform: rotate(-45deg);
}

.tags-input-item:not(:disabled):after {
  transform: rotate(45deg);
}

.bombbomb-popup {
  max-width: 700px;
}

.bombbomb-popup .bombbomb-title {
  margin-bottom: 0;
}

.bombbomb-header {
  padding: 10px 28px;
  border-bottom: 1px solid #d8dfe6;
  text-align: left;
}

.bombbomb-title {
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  line-height: 35px;
  color: #444c5c;
  text-transform: uppercase;
}

.bombbomb-menu {
  display: inline-block;
  vertical-align: top;
}

.bombbomb-menu li {
  display: inline-block;
  vertical-align: top;
}

.bombbomb-content {
  min-height: 320px;
}

.bombbomb-content .spinner-wrapper {
  padding: 60px 0;
  overflow: hidden;
}

.bombbomb-content .spinner-wrapper .spinner {
  margin: 0 auto;
}

.bombbomb-menu-item {
  padding: 0 5px;
  margin-right: 25px;
  border: 0;
  background-color: transparent;
  font-size: 14px;
  line-height: 35px;
  color: #9d9d9d;
  cursor: pointer;
}

.bombbomb-menu-item:hover, .bombbomb-menu-item.active {
  color: #c12b2c;
}

.bombbomb-menu-item.active {
  text-decoration: underline;
}

.bombbomb-list {
  padding: 20px 5px 20px 20px;
}

.bombbomb-list ul {
  display: flex;
  list-style-type: none;
  padding: 0 15px 0 0;
  margin: 0;
  justify-content: space-between;
  flex-wrap: wrap;
}

.bombbomb-list ul:after {
  content: "";
  flex: 0 0 32%;
}

.bombbomb-list-item {
  position: relative;
  margin-bottom: 1.5%;
  flex: 0 0 32%;
  overflow: hidden;
}

.bombbomb-list-item .image-wrapper {
  width: 100%;
  padding-bottom: 72%;
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.bombbomb-list-item .title-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
}

.bombbomb-list-item h5 {
  padding: 2px 5px;
  margin-bottom: 5px;
  vertical-align: bottom;
  background-color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  line-height: 20px;
  color: white;
}

.bombbomb-button {
  display: block;
  width: 100%;
  padding: 0;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}

.bombbomb-recorder {
  padding: 20px;
  min-height: 330px;
}

.bombbomb-recorder iframe {
  display: inline-block;
  vertical-align: top;
}

.bombbomb-confirmation {
  padding-top: 20px;
}

.steps {
  display: flex;
  padding: 5px 0 10px 0;
  list-style-type: none;
  margin: 0;
  justify-content: center;
}

.steps-item {
  display: block;
  padding: 10px 8px;
  position: relative;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.steps-item.active span {
  background-color: var(--primaryColor);
  color: white;
}

.steps-item span {
  display: block;
  padding: 4px 15px;
  position: relative;
  border-radius: 50px;
  background-color: #f7f9fa;
  text-transform: uppercase;
}

.google-places-input {
  position: relative;
}

.google-places-input input {
  width: 100%;
  border-radius: 5px;
}

.input-wrapper.google-places {
  overflow: visible;
}

.geosuggest__suggests-wrapper {
  position: absolute;
  top: 100%;
  margin-top: -5px;
  left: -1px;
  right: -1px;
}

.geosuggest__suggests {
  list-style-type: none;
  padding: 5px 0;
  margin: 0;
  background-color: white;
  border: 1px solid #d8dfe6;
  border-top: 0;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.1);
}

.geosuggest__suggests--hidden {
  display: none;
}

.geosuggest__item {
  padding: 3px 15px 3px 30px;
  position: relative;
  cursor: pointer;
}

.geosuggest__item:before {
  content: "\f041";
  display: block;
  position: absolute;
  left: 13px;
  top: 2px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #9d9d9d;
}

.geosuggest__item:hover {
  background-color: #f7f9fa;
}

.curaytor-blur-row {
  padding: 10px 0 12px;
  border-bottom: 1px solid #d8dfe6;
  /* All the same stuff for Firefox */
  /* All the same stuff for IE */
}

.curaytor-blur-row:last-child {
  padding-bottom: 5px;
  border: 0;
}

.curaytor-blur-row input[type=range] {
  display: block;
  -webkit-appearance: none;
  /* Hides the slider so that custom slider can be made */
  width: 130px;
  /* Specific width is required for Firefox. */
  padding: 0;
  margin: 0;
  height: 12px;
  background: transparent;
  /* Otherwise white in Chrome */
}

.curaytor-blur-row input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}

.curaytor-blur-row input[type=range]:focus {
  outline: none;
  /* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */
}

.curaytor-blur-row input[type=range]::-ms-track {
  width: 100%;
  cursor: pointer;
  /* Hides the slider so custom styles can be added */
  background: transparent;
  border-color: transparent;
  color: transparent;
}

.curaytor-blur-row input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: 1px solid #9d9d9d;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
  margin-top: -4px;
  /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */
}

.curaytor-blur-row input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  border: 1px solid #9d9d9d;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}

.curaytor-blur-row input[type=range]::-ms-thumb {
  -webkit-appearance: none;
  border: 1px solid #9d9d9d;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}

.curaytor-blur-row input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background-color: #d8dfe6;
  border-radius: 4px;
}

.curaytor-blur-row input[type=range]::-moz-range-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background-color: #d8dfe6;
  border-radius: 4px;
}

.curaytor-blur-row input[type=range]::-ms-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  border-width: 0;
  color: transparent;
}

.curaytor-blur-row input[type=range]::-ms-fill-lower {
  background-color: #d8dfe6;
  border-radius: 4px;
}

.curaytor-blur-row input[type=range]:focus::-ms-fill-lower {
  background-color: #d8dfe6;
}

.curaytor-blur-row input[type=range]::-ms-fill-upper {
  background-color: #d8dfe6;
  border-radius: 4px;
}

.curaytor-blur-row input[type=range]:focus::-ms-fill-upper {
  background-color: #d8dfe6;
}

.curaytor-blur-header {
  display: flex;
  margin-bottom: 6px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #9d9d9d;
}

.curaytor-blur-header .title {
  flex-grow: 1;
}

.curaytor-blur-header .val {
  flex: 0 0 30px;
  border-bottom: 1px solid #d8dfe6;
  font-size: 10px;
  text-align: right;
}

.curaytor-color-row {
  padding: 5px 0;
  width: 180px;
}

.curaytor-color-row.input {
  padding-top: 0;
}

.curaytor-color-list {
  display: flex;
  list-style-type: none;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 -3px;
}

.curaytor-color-item {
  flex: 0 0 31px;
  padding: 0 3px;
}

.curaytor-color-item.large {
  flex: 0 0 50%;
}

.curaytor-color-button,
.curaytor-bg-color-button {
  width: 25px;
  height: 25px;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
}

.large .curaytor-color-button, .large
.curaytor-bg-color-button {
  width: 100%;
}

.curaytor-color-button[data-color="#FFFFFF"], .curaytor-color-button[data-color="#ffffff"], .curaytor-color-button[data-background-color="#FFFFFF"], .curaytor-color-button[data-background-color="#ffffff"],
.curaytor-bg-color-button[data-color="#FFFFFF"],
.curaytor-bg-color-button[data-color="#ffffff"],
.curaytor-bg-color-button[data-background-color="#FFFFFF"],
.curaytor-bg-color-button[data-background-color="#ffffff"] {
  border: 1px solid #d8dfe6;
}

.curaytor-color-button[data-background-color="clear"],
.curaytor-bg-color-button[data-background-color="clear"] {
  position: relative;
}

.curaytor-color-button[data-background-color="clear"]:before,
.curaytor-bg-color-button[data-background-color="clear"]:before {
  content: "\f05e";
  display: block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: red;
}

.curaytor-color-input-wrapper {
  display: flex;
  width: 140px;
  border: 1px solid #d8dfe6;
  border-radius: 5px;
}

.curaytor-color-input-label {
  flex: 0 0 36px;
  background-color: #f7f9fa;
  text-align: center;
  font-size: 14px;
  line-height: 30px;
}

.curaytor-color-input,
.curaytor-bg-color-input {
  flex: 1 1 100%;
  padding: 5px 10px;
  height: 30px;
  min-width: 0;
  line-height: 20px;
}

.pws-box {
  padding: 100px 80px;
  background-color: white;
}

.block-text-with-image.sideBySide .block-froala h1 {
  font-size: 52px;
  line-height: 58px;
  font-weight: 300;
}

.block-related-content-grid .item-title {
  font-size: 32px;
  line-height: 38px;
  font-weight: 300;
}

.people-content-slider .item-name {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}

.block-cta .content-block-inner p,
.block-cta .content-block-inner ul,
.block-cta .content-block-inner ol, .text-with-image-tabs .editor p, .reviews-content-slider .reviews-slider__bottom-slide p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}

.text-with-image-tabs .tab h3, .reviews-content-slider .reviews-slider__slider__top h5 {
  font-size: 16px;
  line-height: 19px;
  font-weight: 500;
}

.block-related-content-grid .item-content p, .people-content-slider .item-position, .text-with-image-tabs .tab p, .block-text-with-image.sideBySide .block-froala p, .double-cta-item .block-froala p {
  font-size: 16px;
  line-height: 25px;
}

.campaigns-list,
.content-list {
  width: 100%;
  border-spacing: 0;
}

.campaign-row,
.content-row {
  padding: 28px;
  border-bottom: 1px solid #f4f4f4;
}

.campaign-row:after,
.content-row:after {
  content: '';
  clear: both;
  display: table;
}

.campaign-row-inner,
.content-row-inner {
  display: table;
  width: 100%;
  table-layout: fixed;
}

@media (max-width: 991px) {
  .campaign-row-inner,
  .content-row-inner {
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .campaign-row-inner,
  .content-row-inner {
    text-align: center;
  }
}

.campaign-cell,
.content-cell {
  display: table-cell;
  vertical-align: middle;
  padding: 0 5px;
}

.campaign-cell:first-child,
.content-cell:first-child {
  padding-left: 0;
}

.campaign-cell:last-child,
.content-cell:last-child {
  padding-right: 0;
}

@media (max-width: 991px) {
  .campaign-cell,
  .content-cell {
    display: block;
  }
}

.campaign-cell-inner:after,
.content-cell-inner:after {
  content: '';
  clear: both;
  display: table;
}

.campaign-author,
.content-author {
  width: 19%;
}

.campaign-author .author-avatar-wrapper,
.content-author .author-avatar-wrapper {
  float: left;
  margin-right: 22px;
}

@media (max-width: 1199px) {
  .campaign-author .author-avatar-wrapper,
  .content-author .author-avatar-wrapper {
    margin-right: 15px;
  }
}

@media (max-width: 767px) {
  .campaign-author .author-avatar-wrapper,
  .content-author .author-avatar-wrapper {
    display: block;
    float: none;
    margin: 0;
  }
}

@media (max-width: 1199px) {
  .campaign-author .AuthorAvatar,
  .content-author .AuthorAvatar {
    margin-top: 8px;
  }
}

.campaign-author .sent-by,
.content-author .sent-by {
  display: table;
}

.campaign-author .sent-by .inner,
.content-author .sent-by .inner {
  display: table-cell;
  height: 57px;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .campaign-author .sent-by .inner,
  .content-author .sent-by .inner {
    display: block;
    height: auto;
  }
}

@media (max-width: 767px) {
  .campaign-author .sent-by,
  .content-author .sent-by {
    display: inline-block;
  }
}

@media (max-width: 1199px) {
  .campaign-author,
  .content-author {
    width: 18%;
  }
}

@media (max-width: 991px) {
  .campaign-author,
  .content-author {
    flex: 0 180px;
  }
}

@media (max-width: 767px) {
  .campaign-author,
  .content-author {
    flex: 1 100%;
    margin-bottom: 15px;
  }
}

.content-author {
  width: 25%;
}

@media (max-width: 1199px) {
  .content-author {
    width: 30%;
  }
}

.campaign-title,
.content-title {
  width: 35%;
  line-height: 20px;
}

.campaign-title span,
.content-title span {
  display: inline-block;
  vertical-align: top;
}

.campaign-title h4,
.content-title h4 {
  display: block;
  padding-top: 2px;
  font-size: 21px;
}

.campaign-title h4 a,
.content-title h4 a {
  color: #444c5c;
  text-decoration: none;
}

@media (max-width: 1199px) {
  .campaign-title,
  .content-title {
    width: 32%;
  }
}

@media (max-width: 991px) {
  .campaign-title,
  .content-title {
    flex: 1 auto;
  }
}

@media (max-width: 767px) {
  .campaign-title,
  .content-title {
    flex: 1 100%;
    margin-bottom: 15px;
  }
}

.content-title {
  width: 65%;
}

@media (max-width: 1199px) {
  .content-title {
    width: 60%;
  }
}

.content-title .tag-text {
  color: #9ba6af;
  background-color: #f7f9fa;
}

.content-title .the-title {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .content-title .the-title {
    flex-wrap: wrap;
  }
}

.content-title .the-title h4 {
  margin-right: 15px;
}

@media (max-width: 767px) {
  .content-title .the-title h4 {
    width: 100%;
    flex-shrink: 0;
    order: 3;
    margin: 0;
  }
}

.content-cell-tags {
  margin-top: 5px;
}

.campaign-actions,
.content-actions {
  width: 11%;
}

@media (max-width: 1199px) {
  .campaign-actions,
  .content-actions {
    width: 15%;
  }
}

@media (max-width: 991px) {
  .campaign-actions,
  .content-actions {
    flex: 0 100%;
    padding: 20px 0 0;
    text-align: center;
  }
}

.campaign-date-wrapper,
.content-date-wrapper {
  display: inline-block;
  vertical-align: top;
  padding-left: 10px;
}

.campaign-date-wrapper span,
.content-date-wrapper span {
  display: inline-block;
  vertical-align: top;
}

.campaign-date-wrapper .custom-icon,
.content-date-wrapper .custom-icon {
  margin-top: 2px;
  margin-right: 6px;
}

.campaign-date {
  color: #9d9d9d;
  line-height: 19px;
}

.updated_at {
  color: #9d9d9d;
  font-size: 14px;
}

.campaign-audience {
  width: 35%;
}

@media (max-width: 991px) {
  .campaign-audience {
    flex: 0 220px;
    text-align: right;
  }
}

@media (max-width: 767px) {
  .campaign-audience {
    flex: 1 100%;
    text-align: center;
  }
}

.author-name {
  display: block;
  font-size: 21px;
  line-height: 25px;
}

.author-name button {
  padding: 0;
  background-color: transparent;
  border: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.audience-name {
  display: block;
  overflow: hidden;
  font-family: "Roboto", sans-serif;
  color: #9d9d9d;
}

.audience-name .inner {
  display: table;
}

.audience-name .inner > span {
  display: table-cell;
  vertical-align: middle;
  height: 40px;
}

@media (max-width: 991px) {
  .audience-name .inner > span {
    display: block;
    height: auto;
  }
}

.audience-name .inner .link {
  color: #c12b2c;
  text-decoration: underline;
}

@media (max-width: 991px) {
  .audience-name .inner {
    display: block;
  }
}

.empty-message {
  padding: 50px 0;
  text-align: center;
}

.success-message {
  padding: 42px 32px;
  font-size: 19px;
  line-height: 42px;
  font-weight: 300;
  color: #767676;
}

@media (max-width: 1440px) {
  .success-message {
    padding: 60px 30px;
  }
}

@media (max-width: 991px) {
  .success-message {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .success-message {
    padding: 45px 15px 35px;
  }
  .success-message br {
    display: none;
  }
}

.success-message h2 {
  margin-bottom: 55px;
  color: black;
}

@media (max-width: 991px) {
  .success-message h2 {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .success-message h2 {
    margin-bottom: 25px;
  }
}

@media (max-width: 767px) {
  .success-message .h1 {
    display: block;
    text-align: center;
  }
}

.success-message strong {
  font-weight: 600;
  color: #c12b2c;
}

.success-message em {
  font-style: normal;
  font-weight: 600;
}

.success-message p, .success-message .success-row {
  margin-bottom: 18px;
}

.success-message .btn {
  margin-bottom: 10px;
}

.success-message .gravatar-list {
  display: inline-block;
  vertical-align: top;
  margin: 0 5px;
  float: none;
}

.success-message .gravatar:first-child {
  background-color: #1b92ce;
}

.success-message .gravatar:nth-child(2) {
  background-color: #f68d11;
}

.success-message .gravatar:nth-child(3) {
  background-color: #38bd92;
}

.success-message .gravatar:nth-child(4) {
  background-color: #3f20af;
}

.success-message .gravatar:nth-child(5) {
  background-color: #df307a;
}

.content-body-write {
  padding-top: 0;
  padding-bottom: 40px;
}

.write-page-signature {
  padding-left: 86px;
  padding-bottom: 40px;
}

@media (max-width: 1440px) {
  .write-page-signature {
    padding-left: 52px;
  }
}

@media (max-width: 767px) {
  .write-page-signature {
    padding-left: 0;
    padding-bottom: 20px;
  }
}

.write-page-signature .signature-wrapper {
  padding-top: 0;
  border: none;
}

.full-page {
  display: table;
  height: 100vh;
  width: 100%;
}

.full-page .inner {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
}

.login-page {
  display: flex;
  padding: 15px;
  width: 100%;
  background-color: #f7f9fa;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.login-page .inner {
  height: auto;
  padding: 35px 20px;
  flex: 0 1 400px;
  background-color: white;
  border-radius: 5px;
}

.login-page .error-wrapper {
  padding-bottom: 10px;
}

.login-page .error-message {
  min-height: 31px;
  line-height: 20px;
}

.login-page h3 {
  display: block;
  padding: 0 15px;
  margin-bottom: 15px;
  text-align: center;
  color: #767676;
}

.login-page hr {
  margin: 25px 0 20px;
}

.login-page p {
  margin-bottom: 0;
  font-size: 15px;
}

.login-page a {
  text-decoration: none;
}

.logo-login {
  display: inline-block;
  margin-bottom: 20px;
}

.login-form .form-row {
  display: flex;
  align-items: center;
  margin: 0 auto 10px;
  width: 100%;
  max-width: 365px;
  border: 1px solid #d8dfe6;
  border-radius: 50px;
  text-align: left;
  overflow: hidden;
}

.login-form .form-row:after {
  content: '';
  clear: both;
  display: table;
}

.login-form .form-row:last-of-type {
  margin-bottom: 25px;
}

.login-form label {
  display: block;
  float: left;
  padding: 6px 10px 4px 20px;
  flex: 0 1 115px;
  border-right: 1px solid #d8dfe6;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 13px;
  line-height: 23px;
  text-transform: uppercase;
  font-weight: 400;
}

.login-form input {
  display: block;
  flex: 1 1 240px;
  float: left;
  height: 43px;
  padding: 10px 15px;
}

.login-form .btn {
  padding: 9px 26px 7px;
}

.reset-password-confirmation {
  padding: 10px 0 0;
}

.os-mac .btn {
  padding-top: 5px;
  padding-bottom: 5px;
}

.os-mac .btn-round {
  line-height: 0;
}

.os-mac .content-header .btn .fa {
  margin-top: 1px;
}

.form-row-visible {
  display: flex;
  flex-flow: row nowrap;
}

.form-row-visible .input-wrapper {
  width: calc( 100% - 205px);
}

.option-page-container {
  padding: 0 50px;
}

.option-page-container:after {
  content: '';
  clear: both;
  display: table;
}

@media (max-width: 767px) {
  .option-page-container {
    padding: 0 20px;
  }
}

.site-settings-container {
  padding: 0 28px;
}

.site-settings-container:after {
  content: '';
  clear: both;
  display: table;
}

@media (max-width: 767px) {
  .site-settings-container {
    padding: 0 20px;
  }
}

.option-page-entry {
  padding: 45px 0;
}

.site-settings-entry {
  padding: 35px 0;
}

.option-page-entry + .content-header, .info-messages-wrapper + .content-header {
  border-top: 1px solid #f4f4f4;
}

.form-row-visible {
  overflow: visible;
}

.form-row-visible .input-wrapper {
  overflow: visible;
}

.wide-form {
  max-width: 960px;
}

.wide-form .form-row:not(.form-row-wide) {
  max-width: 640px;
}

@media (max-width: 991px) {
  .accounts-nav a > span {
    padding-left: 0;
  }
}

.accounts-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 767px) {
  .accounts-list {
    text-align: center;
  }
}

.accounts-list-item {
  padding: 20px 28px;
  border-bottom: 1px solid #f4f4f4;
}

.accounts-list-item:after {
  content: '';
  clear: both;
  display: table;
}

.accounts-list-item:nth-child(7n + 1) .AuthorAvatar {
  background-color: #17d29b;
}

.accounts-list-item:nth-child(7n + 2) .AuthorAvatar {
  background-color: #1b92ce;
}

.accounts-list-item:nth-child(7n + 3) .AuthorAvatar {
  background-color: #f68d11;
}

.accounts-list-item:nth-child(7n + 4) .AuthorAvatar {
  background-color: #df307a;
}

.accounts-list-item:nth-child(7n + 5) .AuthorAvatar {
  background-color: #646078;
}

.accounts-list-item:nth-child(7n + 6) .AuthorAvatar {
  background-color: #df4915;
}

.accounts-list-item:nth-child(7n + 7) .AuthorAvatar {
  background-color: #d8bf00;
}

.accounts-info {
  float: left;
  min-width: 350px;
}

@media (max-width: 767px) {
  .accounts-info {
    float: none;
    min-width: initial;
  }
}

.accounts-button-wrapper {
  padding-top: 4px;
  overflow: hidden;
  text-align: right;
}

@media (max-width: 767px) {
  .accounts-button-wrapper {
    padding-top: 12px;
    text-align: center;
  }
}

.accounts-button-wrapper .btn-resend {
  margin-right: 10px;
}

.accounts-button-wrapper .btn-resend .custom-icon {
  width: 20px;
  margin-top: 1px;
  margin-right: 10px;
}

.accounts-user-info {
  overflow: hidden;
}

@media (max-width: 767px) {
  .accounts-user-info {
    display: inline-block;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .accounts-user-info {
    display: inline-block;
    text-align: center;
  }
}

.accounts-user-info h5 {
  font-size: 21px;
  line-height: 25px;
}

.accounts-user-info .email {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #8996a2;
}

.accounts-user-info .label {
  display: inline-block;
  margin-left: 7px;
  padding: 0 8px;
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 19px;
  text-align: center;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 10px;
  background-color: #d8dfe6;
}

.accounts-user-info .label-active {
  background-color: #81c835;
}

.accounts-user-info .label-waiting {
  background-color: #d65d5e;
}

.accounts-user-avatar {
  float: left;
  margin-right: 12px;
}

@media (max-width: 767px) {
  .accounts-user-avatar {
    float: none;
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .accounts-user-avatar {
    width: 100%;
    margin: 0;
  }
}

.accounts-user-avatar .AuthorAvatar {
  width: 47px;
  height: 47px;
  line-height: 47px;
}

.accounts-user-avatar .AuthorAvatar .initials {
  vertical-align: top;
  font-size: 22px;
}

@media (max-width: 1199px) {
  .accounts-user-avatar .AuthorAvatar {
    margin-top: 0;
  }
}

.edit-user {
  padding: 8px 24px 7px 23px;
}

@media (max-width: 767px) {
  .edit-user {
    width: 100%;
    max-width: 150px;
  }
}

.new-account-button-wrapper {
  padding: 5px 0 8px;
}

.new-account-header .text-wrapper {
  padding-top: 10px;
}

.new-account-body {
  padding-top: 22px;
}

.account-meta-section {
  display: flex;
  width: 100%;
  padding: 12px 25px 12px 12px;
  margin-bottom: 45px;
  align-items: center;
  border: 1px solid #d8dfe6;
}

@media (max-width: 767px) {
  .account-meta-section {
    display: block;
    text-align: center;
  }
}

.account-meta-section .AuthorAvatar {
  width: 84px;
  height: 84px;
  line-height: 84px;
  font-size: 40px;
}

.account-meta-section .name-wrapper {
  width: 100%;
  flex: 0 1 100%;
  padding: 0 25px 3px;
}

@media (max-width: 767px) {
  .account-meta-section .name-wrapper {
    width: auto;
    display: inline-block;
    vertical-align: top;
    padding-top: 20px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .account-meta-section .name-wrapper {
    width: 100%;
    text-align: center;
  }
}

.account-meta-section .button-wrapper {
  flex: 0 0 200px;
  text-align: right;
}

@media (max-width: 767px) {
  .account-meta-section .button-wrapper {
    padding-top: 20px;
    padding-bottom: 10px;
    text-align: center;
  }
}

.account-meta-section h5 {
  font-size: 21px;
}

.account-meta-section .email {
  font-size: 14px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  color: #8996a2;
  text-decoration: none;
}

.account-meta-section .email:hover {
  color: #444c5c;
}

.account-meta-avatar-wrapper {
  position: relative;
  width: 84px;
}

@media (max-width: 1199px) {
  .account-meta-avatar-wrapper .AuthorAvatar {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .account-meta-avatar-wrapper {
    display: inline-block;
    vertical-align: top;
  }
}

.avatar-input-badge {
  display: block;
  position: absolute;
  padding: 6px 0 0 7px;
  bottom: -4px;
  right: -4px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background-color: #c12b2c;
  font-size: 11px;
}

@media (max-width: 767px) {
  .avatar-input-badge {
    text-align: left;
  }
}

.password-update-form .options-label {
  width: 200px;
}

.signature-edit-html textarea {
  resize: none;
  display: block;
  width: 100%;
  height: 420px;
  padding: 18px 20px;
  margin-top: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 17px;
  border: 1px solid #d8dfe7;
}

.signature-edit-html .button-wrapper {
  margin-top: 26px;
  text-align: right;
}

.signature-page .signature-wrapper {
  margin-bottom: 35px;
}

@media (max-width: 1199px) {
  .signature-avatar-wrapper .AuthorAvatar {
    margin-top: 0;
  }
}

/**
 * This wrapper is present only on edit page of the signature.
 * It handles displaying and hiding the 'Edit HTML' hover button.
 */
.signature-edit-preview-wrapper {
  position: relative;
}

.signature-edit-preview-wrapper .edit-html-trigger {
  padding: 0;
  border: none;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  position: absolute;
  top: 6px;
  left: 6px;
  font-family: inherit;
  text-align: center;
  background-color: rgba(248, 249, 251, 0.8);
  cursor: pointer;
  opacity: 0;
  transition: opacity .15s;
}

.signature-edit-preview-wrapper:hover .edit-html-trigger {
  opacity: 1;
}

.signature-edit-preview-wrapper .text {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}

.signature-edit-preview-wrapper .code {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: #c12b2d;
  font-size: 80px;
  line-height: 80px;
}

.signature-edit-preview-wrapper .label {
  margin-top: 10px;
  color: #9d9d9d;
}

.settings-logo-section {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.settings-logo-wrapper {
  border: 1px solid #d8dfe6;
}

.settings-logo-wrapper.type-logo_light_icon .settings-logo, .settings-logo-wrapper.type-logo_light .settings-logo {
  background-color: #d9dadc;
}

.settings-logo-box {
  flex: 0 0 25%;
  padding: 0 10px 20px;
}

@media (max-width: 1700px) {
  .settings-logo-box {
    flex: 0 0 33.3333%;
  }
}

@media (max-width: 1199px) {
  .settings-logo-box {
    flex: 0 0 50%;
  }
}

@media (max-width: 767px) {
  .settings-logo-box {
    flex: 0 0 100%;
  }
}

.settings-logo {
  display: flex;
  width: 100%;
  height: 250px;
  padding: 30px 20px 20px;
  align-items: center;
  justify-content: center;
}

.settings-logo img {
  width: auto;
  max-height: 80%;
}

.settings-logo-footer {
  position: relative;
  padding: 15px 60px 15px 20px;
  background-color: #302e32;
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  line-height: 27px;
}

.settings-logo-footer button {
  position: absolute;
  padding: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50px;
  background-color: transparent;
  background: url("../images/icon-trash-white.svg") center center no-repeat;
  background-size: 22px auto;
  border: none;
  cursor: pointer;
}

.avatar-form {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.avatar-input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  background-color: transparent;
  z-index: -1;
}

.avatar-input-label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  cursor: pointer;
  z-index: 5;
}

.timezones {
  display: inline-block;
  min-width: 280px;
}

@media (max-width: 767px) {
  .timezones {
    width: 100%;
    min-width: initial;
  }
}

.public-profile-form {
  max-width: 960px;
}

.checkbox-row {
  padding-top: 12px;
}

.public-profile-row {
  overflow: hidden;
}

.public-profile-row.border {
  border: 1px solid #d8dfe6;
  border-radius: 5px;
}

.bio-editor-wrapper {
  position: relative;
}

.bio-editor-wrapper .fr-toolbar {
  padding: 7px 50px 7px 12px;
  border-bottom: 1px solid #f4f4f4;
}

.bio-editor-wrapper .fr-wrapper {
  margin-left: 25px;
}

.bio-editor-check {
  position: absolute;
  width: 22px;
  height: 15px;
  top: 16px;
  right: 20px;
}

.bio-editor-check .custom-icon {
  width: 22px;
  height: 15px;
}

.header-preview {
  font-family: "Roboto", sans-serif;
  overflow-x: auto;
}

.header-preview.centered-logo .header-preview-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header-preview.centered-logo .header-preview-logo-wrapper {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
}

.header-preview.centered-logo .header-preview-ctas {
  padding: 11px 0 9px;
  float: right;
}

.header-preview.double-cta .header-preview-menu {
  flex: 1;
}

.header-preview.double-cta .header-preview-logo {
  transform-origin: left center;
}

.header-preview.double-cta .header-preview-logo-wrapper {
  padding-right: 0;
}

.header-preview.header-with-search .header-preview-logo-wrapper {
  display: flex;
  flex-grow: 1;
  align-items: center;
}

.header-preview.header-with-search .additional-logo-content {
  padding-left: 15px;
  position: relative;
  margin-left: 10px;
  font-size: 12px;
  line-height: 19px;
}

.header-preview.header-with-search .additional-logo-content:before {
  content: '';
  width: 1px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #efefef;
}

.header-preview.header-with-search .header-preview-ctas {
  line-height: 13px;
  border-left: 1px solid #f4f4f4;
}

.header-preview.header-with-search .header-preview-ctas .header-preview-cta.small {
  padding: 1px 18px;
  background: transparent;
}

.header-preview.header-with-search .header-preview-menu {
  margin-right: 9px;
}

.header-preview.header-with-search .header-preview-menu li {
  margin: 0 2px;
}

.header-preview.header-with-search .header-preview-menu li.active {
  border-color: transparent;
}

.header-preview.centered-with-full-menu .header-preview-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header-preview.centered-with-full-menu .header-preview-logo-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header-preview.centered-with-full-menu .more {
  padding: 0;
  border: none;
}

.header-preview.centered-with-full-menu .header-preview-ctas {
  display: flex;
  align-items: center;
}

.header-preview.centered-with-full-menu .additional-ctas-content {
  margin-right: 10px;
  font-size: 12px;
  line-height: 19px;
}

.header-preview.centered-with-cta .header-preview-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header-preview.centered-with-cta .header-preview-logo-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header-preview.centered-with-cta .more {
  padding: 4px 7px;
  margin-right: 11px;
  font-size: 12px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: .05em;
  border: 0;
}

.header-preview.centered-with-cta .more:before {
  content: '\f0c9';
  margin-right: 5px;
  font-family: FontAwesome;
  font-size: 13px;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
}

.header-preview.centered-with-cta .header-preview-ctas {
  display: flex;
  align-items: center;
}

.header-preview.centered-with-cta .additional-ctas-content {
  margin-right: 10px;
  font-size: 12px;
  line-height: 19px;
}

.header-preview.centered-menu .header-preview-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header-preview.centered-menu .header-preview-menu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header-preview.centered-menu .more {
  padding: 0;
  border: none;
}

.header-preview .signature-social-wrapper {
  position: static;
  transform: none;
  margin-right: 25px;
}

.header-preview .signature-social-wrapper a {
  color: #c12b2c;
}

.header-preview .signature-social-item {
  margin-left: 20px;
}

.header-preview .signature-social-item a {
  color: #c9d1db;
}

.header-preview.left-aligned .more {
  padding: 5px 10px;
  margin-right: 11px;
  font-size: 12px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: .05em;
}

.header-preview.left-aligned .more:before {
  content: '\f0c9';
  margin-right: 5px;
  font-family: FontAwesome;
  font-size: 13px;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
}

.header-preview.left-aligned .header-preview-menu {
  flex: 1 1 100%;
  text-align: left;
}

.header-preview.left-aligned .header-preview-menu li.active {
  text-decoration: underline;
}

.header-preview.left-aligned .header-preview-ctas {
  white-space: nowrap;
}

.header-preview.left-aligned .header-preview-logo-wrapper {
  flex-shrink: 0;
}

.header-preview.chime .header-preview-container-inside {
  background-color: var(--primaryColor);
}

.header-preview.chime .header-preview-menu {
  display: flex;
  flex-grow: 1;
  align-items: center;
  height: 100%;
  text-align: left;
}

.header-preview.chime .header-preview-menu li {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  color: white;
}

.header-preview.chime .header-preview-menu .active:after {
  content: '';
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: white;
}

.header-preview.chime .more {
  padding: 5px 10px;
  margin-right: 11px;
  font-size: 12px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: .05em;
}

.header-preview.chime .more:before {
  content: '\f0c9';
  margin-right: 5px;
  font-family: FontAwesome;
  font-size: 13px;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
}

.header-preview.chime .header-preview-cta {
  color: white;
}

.header-preview-container {
  display: flex;
  align-items: center;
  min-width: 750px;
  border: 1px solid #d8dfe6;
}

.header-preview-container-inside {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100px;
}

.header-preview-menu {
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 19px;
  text-align: right;
  color: #7b8087;
  letter-spacing: .05em;
  list-style-type: none;
}

.header-preview-menu li {
  display: inline-block;
  padding: 15px 7px 14px;
  margin: 0 11px;
  vertical-align: middle;
}

.header-preview-menu li.active {
  color: #434a54;
}

.header-preview-menu li.more:before {
  content: '\f0c9';
  margin-right: 5px;
  font-family: FontAwesome;
  font-size: 13px;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
}

.header-preview-menu .more {
  padding-top: 4px;
  padding-bottom: 4px;
  color: #434a54;
  border: 1px solid #e8edf4;
}

.header-preview-logo {
  max-height: 35px;
}

.header-preview-logo:not(.small) {
  transform: scale(0.8);
}

.header-preview-logo.small {
  width: auto;
}

.header-preview-logo-wrapper {
  padding: 0 22px;
}

.header-preview-cta {
  display: inline-block;
  padding: 5px 3px;
  margin-right: 22px;
  vertical-align: top;
  font-size: 11px;
  font-weight: 500;
  line-height: 18px;
  color: #434a54;
  border: 1px solid #e8edf4;
}

.header-preview-cta .fa {
  display: inline-block;
  margin-left: 8px;
  vertical-align: top;
  font-size: 13px;
  line-height: 18px;
}

.header-preview-cta.large {
  padding-right: 18px;
  padding-left: 18px;
  border: 1px solid #e8edf4;
  border-radius: 50px;
}

.header-preview-cta.small {
  padding-right: 18px;
  padding-left: 18px;
  border: 1px solid transparent;
  border-radius: 50px;
}

.header-preview-cta.square {
  border-radius: 3px;
}

.footer-preview {
  padding-top: 30px;
  overflow-x: auto;
  font-family: "Roboto", sans-serif;
  line-height: 17px;
}

.footer-preview a {
  text-decoration: none;
}

.footer-preview h5, .footer-preview h6, .footer-preview .description {
  display: block;
}

.footer-preview h5 {
  margin-bottom: 3px;
  font-size: 12px;
  line-height: 17px;
}

.footer-preview.black {
  background-color: #222328;
  color: #b9b9b9;
}

.footer-preview.black a {
  color: #b9b9b9;
}

.footer-preview.black h5, .footer-preview.black h6 {
  color: white;
}

.footer-preview.black .footer-preview-social-list {
  color: white;
}

.footer-preview.white {
  border: 1px solid #d8dfe6;
}

.footer-preview.white h5 {
  font-weight: 700;
}

.footer-preview.white a {
  color: #444c5c;
}

.footer-preview.white .footer-preview-bottom {
  border-color: #f4f4f4;
  color: #9d9d9d;
}

.footer-preview.white .footer-preview-bottom a {
  color: #9d9d9d;
}

.footer-preview.white .description {
  color: #9d9d9d;
}

.footer-preview.white .dummy-subscribe-form .btn-wrapper:before {
  background-color: #f4f4f4;
}

.footer-preview-container {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 30px;
  min-width: 750px;
}

.footer-preview-body {
  display: flex;
  justify-content: space-between;
}

.footer-preview-tagline-col {
  flex: 0 0 170px;
}

.footer-preview-tagline-col .tagline {
  display: block;
  margin-bottom: 13px;
  font-size: 19px;
  font-weight: 300;
}

.footer-preview-tagline-col .description {
  display: block;
  max-width: 115px;
  font-size: 9px;
  line-height: 16px;
  font-weight: 300;
}

.footer-preview-menu-col {
  flex: 0 1 250px;
}

.footer-preview-menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 250px;
  column-count: 2;
  font-size: 11px;
  line-height: 17px;
}

.footer-preview-menu-item {
  margin-bottom: 3px;
}

.footer-preview-top {
  padding-bottom: 25px;
}

.footer-preview-top img {
  transform: scale(0.8);
  transform-origin: bottom left;
}

.footer-preview-bottom {
  margin-top: 25px;
  padding: 10px 0 12px;
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 11px;
}

.footer-preview-bottom .copy, .footer-preview-bottom .privacy {
  flex: 0 0 35%;
}

.footer-preview-bottom .center {
  flex: 0 0 30%;
  text-align: center;
}

.footer-preview-bottom .center img {
  display: inline-block;
  vertical-align: top;
  margin: 2px 2px 0;
}

.footer-preview-bottom .privacy {
  text-align: right;
}

.footer-preview-subscribe-col {
  flex: 0 1 335px;
  padding-left: 30px;
}

.footer-preview-subscribe-col .subheadline {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  line-height: 17px;
}

.dummy-subscribe-form {
  display: flex;
  width: 100%;
  padding: 5px;
  border: 1px solid #c12b2c;
  border-radius: 5px;
}

.dummy-subscribe-form .dummy-input-wrapper {
  flex: 1;
  position: relative;
}

.dummy-subscribe-form .dummy-input-wrapper:before {
  content: " ";
  display: block;
  position: absolute;
  width: 11px;
  height: 11px;
  top: 9px;
  left: 9px;
  background: url("../images/helper-images/mail.png") top left no-repeat;
}

.dummy-subscribe-form .btn-wrapper {
  padding-left: 15px;
  flex: 0 0;
  position: relative;
}

.dummy-subscribe-form .btn-wrapper:before {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.15);
}

.dummy-subscribe-form input {
  height: 29px;
  padding: 6px 10px 6px 30px;
  background-color: transparent;
  font-size: 12px;
  line-height: 17px;
}

.dummy-subscribe-form .btn {
  padding: 5px 23px;
  font-size: 8px;
  line-height: 17px;
  letter-spacing: 0.15em;
}

.footer-preview-social-list {
  list-style-type: none;
  margin: 0;
  padding: 20px 0 0;
  font-size: 14px;
}

.footer-preview-social-item {
  display: inline-block;
  vertical-align: top;
  margin-right: 17px;
  margin-bottom: 15px;
}

.button-preview {
  display: inline-block;
  padding: 16px 60px;
  min-width: 234px;
  border: 1px solid #d8dfe6;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
}

@media (max-width: 480px) {
  .button-preview {
    padding: 15px 25px;
    min-width: 0;
  }
}

.button-preview.rounded {
  border-radius: 50px;
}

.button-preview.square {
  margin-left: 5px;
  border-radius: 5px;
}

.settings-picker-box {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  border: 1px solid #d8dfe6;
}

.settings-picker-meta {
  display: flex;
  padding: 10px 0;
  align-items: center;
  line-height: 18px;
}

@media (max-width: 480px) {
  .settings-picker-meta {
    display: block;
    text-align: center;
  }
}

.settings-picker-meta h5 {
  font-size: 15px;
  font-weight: 500;
}

.settings-picker-meta .btn {
  width: 77px;
}

.settings-picker-meta .text {
  display: block;
  font-size: 13px;
  color: #9d9d9d;
}

.settings-picker-meta .right {
  flex: 0 0 85px;
  text-align: right;
}

@media (max-width: 480px) {
  .settings-picker-meta .right {
    text-align: center;
    margin-top: 10px;
  }
}

.settings-picker-meta .left {
  flex: 1 1 100%;
}

.menu-sections,
.menu-sections-entry {
  position: relative;
}

.menu-sections.loading:before,
.menu-sections-entry.loading:before {
  content: " ";
  display: block;
  position: absolute;
  z-index: 15;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
}

.menu-sections.loading:after,
.menu-sections-entry.loading:after {
  content: " ";
  display: block;
  width: 3em;
  height: 3em;
  position: absolute;
  z-index: 16;
  top: 100px;
  left: 50%;
  transform: translateZ(0);
  margin: 0 0 0 -1.5em;
  font-size: 10px;
  text-indent: -9999em;
  border-top: 0.35em solid rgba(193, 43, 44, 0.2);
  border-right: 0.35em solid rgba(193, 43, 44, 0.2);
  border-bottom: 0.35em solid rgba(193, 43, 44, 0.2);
  border-left: 0.35em solid #c12b2c;
  border-radius: 50%;
  animation: load8 .8s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-animation: load8 .8s infinite linear;
}

.menu-sections-entry {
  padding-top: 15px;
}

.menu-sections-list {
  padding: 0;
  margin: 0 0 20px;
  list-style-type: none;
}

.menu-sections-list .menu-sections-item {
  box-shadow: none;
  animation: none;
}

@keyframes MenuSectionsItemDragAnimation {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  }
}

.menu-sections-item {
  display: flex;
  align-items: center;
  padding: 15px 15px;
  border-bottom: 1px solid #f4f4f4;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  animation: MenuSectionsItemDragAnimation 250ms linear;
}

.menu-sections-item .drag-handle {
  display: flex;
  flex: 1 1 100%;
  align-items: center;
  padding: 8px 0;
  cursor: move;
}

.menu-sections-item .icon-wrapper {
  flex: 0 0 35px;
  width: 35px;
  margin-right: 10px;
  font-size: 20px;
  line-height: 25px;
  text-align: center;
  color: #c12b2c;
}

.menu-sections-item .title-wrapper {
  flex: 1;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}

.menu-sections-item .btn-wrapper {
  white-space: nowrap;
}

.menu-sections-item .btn-wrapper .btn {
  margin-left: 8px;
}

.menu-form .checkbox-wrapper {
  padding-top: 10px;
}

.navigation-list-wrapper {
  position: relative;
}

.navigation-list-wrapper.loading:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
}

.navigation-list-wrapper.loading:after {
  content: " ";
  display: block;
  position: absolute;
  top: 40%;
  left: 50%;
  border-radius: 50%;
  width: 3em;
  height: 3em;
  z-index: 9;
  margin: -1.5em 0 0 -1.5em;
  font-size: 10px;
  text-indent: -9999em;
  border-top: 0.35em solid rgba(193, 43, 44, 0.2);
  border-right: 0.35em solid rgba(193, 43, 44, 0.2);
  border-bottom: 0.35em solid rgba(193, 43, 44, 0.2);
  border-left: 0.35em solid #c12b2c;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 0.8s infinite linear;
  animation: load8 0.8s infinite linear;
}

.site-settings-entry.navigation-links {
  padding-top: 10px;
}

.navigation-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.navigation-list-item {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid #f4f4f4;
}

.navigation-list-item .drag-handle {
  display: flex;
  flex: 1 1 100%;
  align-items: center;
  cursor: move;
}

.navigation-list-item h5 {
  display: block;
  font-size: 15px;
  line-height: 20px;
}

.navigation-list-item .url {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  line-height: 18px;
  font-style: italic;
  color: #9d9d9d;
}

.navigation-list-item .btn-wrapper {
  white-space: nowrap;
}

.navigation-list-item-inner {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .navigation-list-item-inner {
    display: block;
    text-align: center;
  }
}

.navigation-list-item-inner .title-wrapper {
  flex: 1;
}

@media (max-width: 767px) {
  .navigation-list-item-inner .title-wrapper {
    margin-bottom: 10px;
  }
}

.navigation-list-item-inner .btn {
  margin-left: 8px;
}

.edit-navigation-link-header h3 {
  padding: 10px 0;
}

.edit-navigation-link-body .site-settings-label {
  width: 150px;
}

.settings-subheader {
  padding: 0 28px;
  height: 74px;
  display: flex;
  align-items: center;
}

.settings-subheader h3 {
  flex: 1;
}

@media (max-width: 991px) {
  .settings-subheader {
    display: block;
    padding: 19px 28px 18px;
    height: auto;
  }
  .settings-subheader h3 {
    margin-bottom: 0;
  }
  .settings-subheader .btn {
    margin-top: 10px;
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .settings-subheader {
    padding: 19px 15px 18px;
  }
}

.footer-copy-form {
  padding-bottom: 50px;
}

.additional-header-settings {
  padding-top: 15px;
  padding-left: 10px;
  max-width: 640px;
}

.additional-header-settings .checkbox-wrapper {
  margin-top: 11px;
}

.reviews-upload .LogoDropzone__Inner {
  padding: 25px 40px;
}

.reviews-upload .LogoDropzone__Icon svg {
  width: 70px;
  height: auto;
}

.reviews-upload .LogoDropzone {
  height: 161px;
}

.reviews-upload .invalid .LogoDropzone {
  border-color: #e64545;
}

.reviews-list-wrapper ul {
  padding-right: 15px;
}

.forms-settings-preview {
  display: inline-block;
  margin-bottom: 25px;
  vertical-align: top;
  border: 1px solid #d8dfe6;
  box-shadow: 0 0 15px rgba(216, 223, 230, 0.3);
}

.forms-settings-page .options-input-wrapper {
  max-width: 420px;
}

.forms-settings-page .tags-input-list {
  width: 420px;
  float: none;
}

.forms-settings-page .page-settings-input-wrapper,
.forms-settings-page .page-settings-tags-wrapper {
  flex: 0 1 420px;
}

.forms-settings-page .froala-block-input {
  padding: 10px;
}

.script-item {
  display: flex;
  padding: 15px 0;
  border-bottom: 1px solid #f4f4f4;
}

.script-item .title-wrapper {
  flex: 1 1 100%;
}

.script-item .title-wrapper h5 {
  display: block;
  font-size: 15px;
  font-weight: 500;
}

.script-item .title-wrapper span {
  display: block;
  font-size: 13px;
  color: #9d9d9d;
}

.script-item .btn-wrapper {
  white-space: nowrap;
}

.script-item .btn-wrapper .btn {
  margin-left: 8px;
}

.scripts-icon-wrapper svg {
  display: block;
  width: 60px;
  height: auto;
  position: relative;
  margin-top: -5px;
}

.scripts-icon-wrapper svg path {
  fill: #81c835;
}

.inspiration-list {
  margin: 0 -22px;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 1440px) {
  .inspiration-list {
    margin: 0 -14px;
  }
}

.inspiration-item {
  width: 33.33333%;
  padding: 0 22px;
  margin-bottom: 40px;
}

@media (max-width: 1440px) {
  .inspiration-item {
    padding: 0 14px;
  }
}

@media (max-width: 1199px) {
  .inspiration-item {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .inspiration-item {
    width: 100%;
  }
}

.inspiration-item > .ContentBox {
  height: 100%;
}

.inspiration-item-meta__single {
  font-size: 12px;
  display: inline-block;
  text-transform: uppercase;
  padding: 1px 10px;
  line-height: 1.5em;
  font-family: "Roboto", sans-serif;
  border-radius: 20px;
  margin-bottom: 5px;
}

.inspiration-item-meta__single.red {
  color: #fff;
  background-color: #bd2226;
}

.inspiration-item-container {
  padding: 0 22px;
}

.inspiration-item-container:after {
  content: '';
  clear: both;
  display: table;
}

.inspiration-author {
  padding: 15px 0;
  border-bottom: 1px solid #d8dfe6;
}

.inspiration-author .author-avatar-wrapper {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
}

.inspiration-author .author-avatar-wrapper .AuthorAvatar {
  width: 57px;
  height: 57px;
  flex: 0 0 57px;
  margin-right: 20px;
}

@media (max-width: 1199px) {
  .inspiration-author .author-avatar-wrapper .AuthorAvatar {
    font-size: 28px;
    line-height: 57px;
  }
}

.inspiration-author .author-avatar-wrapper .author-info {
  position: relative;
  padding-right: 30px;
  width: 100%;
  flex: 1 1 100%;
}

.inspiration-author .inspiration-item-buttons {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}

.inspiration-author .inspiration-item-buttons .add-to-fav {
  padding: 0;
  position: static;
  margin-top: 0;
  border: 0;
  background-color: transparent;
}

.inspiration-author .inspiration-item-buttons .crafted-by-marketer {
  margin-right: 10px;
}

.inspiration-body-wrapper {
  flex-grow: 1;
  border-bottom: 1px solid #d8dfe6;
}

.inspiration-body {
  position: relative;
  padding: 18px 0;
  max-height: 275px;
  overflow: hidden;
}

.inspiration-body.expand:after {
  content: " ";
  display: block;
  position: absolute;
  height: 125px;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 65%);
}

.inspiration-body h4 {
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 15px;
  cursor: pointer;
}

.inspiration-body h4 button {
  padding: 0;
  background-color: transparent;
  border: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.inspiration-body .blast-report-message-trigger {
  left: 22px;
  bottom: 22px;
  z-index: 1;
}

.inspiration-entry {
  font-weight: 300;
  font-size: 15px;
  line-height: 26px;
}

.inspiration-footer {
  display: flex;
  align-items: center;
  padding: 0 12px;
  background-color: transparent;
  border: 0;
  text-align: center;
  cursor: pointer;
}

@media (max-width: 1440px) {
  .inspiration-footer {
    padding: 0;
  }
}

.inspiration-footer var, .inspiration-footer span {
  display: inline-block;
  vertical-align: top;
}

.inspiration-footer var {
  margin-right: 5px;
  font-size: 23px;
  line-height: 25px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
}

.inspiration-footer span {
  font-size: 16px;
  line-height: 25px;
  color: #9d9d9d;
}

.inspiration-footer-col {
  width: 100%;
  padding: 20px 10px;
}

.inspiration-footer-col:first-child {
  padding-right: 20px;
}

.inspiration-footer-col:last-child {
  padding-left: 20px;
}

.inspiration-footer-col.middle {
  border-right: 1px solid #d8dfe6;
  border-left: 1px solid #d8dfe6;
}

@media (max-width: 1440px) {
  .inspiration-footer-col:first-child {
    padding-right: 10px;
  }
  .inspiration-footer-col:last-child {
    padding-left: 10px;
  }
}

.inspiration-content-wrapper {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.inspiration-content-wrapper.fav .add-to-fav path {
  fill: #c12b2c;
}

.inspiration-content-wrapper.fav .add-to-fav:hover path {
  fill: #444c5c;
}

.inspiration-section .pagination {
  margin-top: 10px;
}

.crafted-by-marketer {
  width: 18px;
  height: 20px;
  display: block;
}

.crafted-by-marketer.clickable {
  cursor: pointer;
}

.crafted-by-marketer svg {
  width: 100%;
  height: auto;
}

.crafted-by-marketer:hover svg path {
  stroke: #444c5c;
}

.crafted-by-marketer.crafted svg path {
  stroke-width: 0;
  fill: #BE2026;
}

.crafted-by-marketer.crafted svg path:first-child {
  fill: #BCBEC0;
}

.inspiration-report-popup .popup-wrapper {
  max-width: 1175px;
}

.report-inspiration-container {
  display: flex;
  padding: 0 44px 0 30px;
}

@media (max-width: 991px) {
  .report-inspiration-container {
    display: block;
    padding: 0 30px;
  }
}

@media (max-width: 767px) {
  .report-inspiration-container {
    padding: 0 15px;
  }
}

@media (max-width: 767px) {
  .report-inspiration-container .fake-browser-wrapper {
    margin: 0 0 30px;
  }
}

.report-inspiration-stats-col {
  width: 310px;
  flex: 0 0 310px;
  padding-right: 44px;
}

@media (max-width: 991px) {
  .report-inspiration-stats-col {
    max-width: 310px;
    width: 100%;
    margin: 0 auto 40px;
    padding-right: 0;
  }
}

.report-inspiration-stats-col .label {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
  line-height: 20px;
  text-transform: uppercase;
  font-family: "Source Sans Pro", sans-serif;
}

.report-inspiration-stats-col strong {
  font-size: 24px;
  line-height: 24px;
  color: #444c5c;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.report-inspiration-stats-col .suffix {
  padding-left: 5px;
  font-size: 15px;
  font-weight: 400;
  color: #444c5c;
}

.report-inspiration-message-col {
  width: 100%;
  flex: 1 1 100%;
}

.report-inspiration-stats-row {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d8dfe6;
}

.report-inspiration-stats-row:last-child {
  border: none;
  padding-bottom: 0;
}

.report-inspiration-stats-wrapper .label {
  margin-bottom: 15px;
}

.report-inspiration-stats-wrapper em {
  font-size: 16px;
  font-weight: 400;
  font-family: "Source Sans Pro", sans-serif;
}

.report-inspiration-stats-wrapper var {
  font-size: 23px;
  line-height: 25px;
  font-weight: 400;
  font-style: normal;
  font-family: "Roboto", sans-serif;
  color: #444c5c;
}

.report-inspiration-stats-wrapper .blast-report-chart {
  margin-bottom: 13px;
}

.report-inspiration-stats-wrapper .blast-report-stats {
  list-style-type: none;
  padding: 20px 0 0;
  margin: 20px 0 0;
  border-top: 1px solid #d8dfe6;
}

.report-inspiration-stats-wrapper .blast-report-stats li {
  cursor: auto;
}

.report-inspiration-stats-wrapper .blast-report-stats li:hover em {
  color: #9d9d9d;
}

.report-inspiration-stats-wrapper .blast-report-stats var, .report-inspiration-stats-wrapper .blast-report-stats em {
  display: block;
}

.report-inspiration-stats-wrapper .blast-report-stats em {
  line-height: 20px;
}

.inspiration-report-subheader-container {
  display: flex;
}

.inspiration-report-subheader-container .left {
  flex-grow: 1;
  padding-right: 20px;
}

@media (max-width: 1199px) {
  .inspiration-report-subheader-container .left {
    padding: 0;
  }
}

.inspiration-report-subheader-container .right {
  flex-shrink: 0;
}

@media (max-width: 1199px) {
  .inspiration-report-subheader-container {
    display: block;
    text-align: center;
  }
}

.report-inspiration-header {
  line-height: 20px;
  text-align: left;
}

.report-inspiration-header .inner {
  padding: 14px 54px 14px 30px;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .report-inspiration-header .inner {
    display: block;
    text-align: center;
  }
}

.report-inspiration-header .subtitle {
  flex-grow: 1;
}

.report-inspiration-header h5 {
  margin: 0;
  color: #444c5c;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 20px;
}

.report-inspiration-links {
  padding: 4px 0 2px;
  font-size: 13px;
  line-height: 20px;
  flex-grow: 0;
}

@media (max-width: 767px) {
  .report-inspiration-links {
    margin-top: 15px;
  }
}

.report-inspiration-links a, .report-inspiration-links .link {
  display: inline-block;
  vertical-align: top;
  margin: 0 14px;
  color: #1c9ec9;
  text-decoration: none;
}

.report-inspiration-links a:hover, .report-inspiration-links .link:hover {
  color: #444c5c;
}

.report-inspiration-links a .svg-icon, .report-inspiration-links .link .svg-icon {
  margin-right: 7px;
}

.report-inspiration-links .link {
  padding: 0;
  border: 0;
  background-color: transparent;
}

.report-inspiration-links .copy-link .svg-icon {
  padding-top: 2px;
}

.report-inspiration-powered-by {
  text-align: right;
}

@media (max-width: 767px) {
  .report-inspiration-powered-by {
    padding-top: 15px;
    text-align: center;
  }
}

.report-inspiration-powered-by a {
  display: block;
  text-decoration: none;
}

.report-inspiration-powered-by span {
  display: block;
  margin-bottom: 2px;
  font-size: 11px;
  line-height: 12px;
  color: #9d9d9d;
  text-transform: uppercase;
}

.report-inspiration-powered-by img {
  display: block;
  height: 14px;
  width: auto;
}

@media (max-width: 767px) {
  .report-inspiration-powered-by img {
    display: inline-block;
  }
}

.public-blast-report .report-inspiration-container {
  margin: 0 auto;
  max-width: 1440px;
}

.public-blast-report .report-inspiration-header {
  border-bottom: 1px solid #d8dfe6;
  background-color: white;
}

.public-blast-report .report-inspiration-header .inner {
  margin: 0 auto;
  max-width: 1440px;
}

.public-blast-report .report-inspiration-body {
  padding-top: 33px;
  text-align: left;
  background-color: #f8f8f8;
}

.public-blast-report em, .public-blast-report .label {
  font-style: normal;
  color: #9d9d9d;
}

.public-blast-report .report-inspiration-stats-col {
  width: 465px;
  flex: 0 0 465px;
}

@media (max-width: 1199px) {
  .public-blast-report .report-inspiration-stats-col {
    width: 310px;
    flex: 0 0 310px;
  }
}

@media (max-width: 991px) {
  .public-blast-report .report-inspiration-stats-col {
    max-width: 310px;
    width: 100%;
  }
}

.public-blast-report .blast-report-stats {
  justify-content: flex-start;
}

.public-blast-report .blast-report-stats li {
  margin-right: 60px;
}

@media (max-width: 1199px) {
  .public-blast-report .blast-report-stats {
    justify-content: space-between;
  }
  .public-blast-report .blast-report-stats li {
    margin-right: 0;
  }
}

.public-blast-report .report-inspiration-links {
  display: none;
}

@media (max-width: 991px) {
  .blast-report-inspiration {
    padding: 0;
  }
}

@media (max-width: 991px) {
  .blast-report-inspiration .report-inspiration-container {
    padding-right: 30px;
  }
}

.tabs-toggle {
  padding: 1px 12px 0;
  background-color: #dfe7eb;
  border: none;
  border-radius: 20px;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 18px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  cursor: pointer;
}

.tabs-toggle.primary {
  background-color: #c12b2c;
  color: white;
}

.tabs-toggle-wrapper {
  padding-top: 8px;
  line-height: 19px;
}

.inspiration-filters-wrapper {
  display: flex;
  justify-content: flex-end;
  padding-top: 15px;
  font-family: "Roboto", sans-serif;
  font-size: 28px;
  line-height: 45px;
}

@media (max-width: 991px) {
  .inspiration-filters-wrapper {
    display: block;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .inspiration-filters-wrapper {
    font-size: 20px;
    line-height: 35px;
  }
}

.inspiration-filters {
  flex: 0 1 100%;
  width: 100%;
}

.inspiration-filter-trigger {
  display: inline-block;
  padding: 0 8px;
  vertical-align: top;
  color: #c12b2c;
  border-bottom: 1px solid #c12b2c;
  cursor: pointer;
}

.inspiration-filter {
  margin-right: 18px;
  margin-bottom: 20px;
}

.inspiration-filter.opened .inspiration-filter-trigger {
  border-bottom-color: transparent;
}

.inspiration-filter.lists {
  margin-right: 30px;
}

.inspiration-filter .checkbox-wrapper {
  padding-top: 10px;
}

.inspiration-filter,
.inspiration-filter-dropdown-wrapper {
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
}

.inspiration-filter-dropdown-wrapper {
  position: relative;
}

.inspiration-filter-label {
  display: inline-block;
  padding: 0 18px 0 0;
  vertical-align: top;
}

.inspiration-filter-label small {
  display: inline-block;
  padding-top: 2px;
  vertical-align: top;
  font-size: 14px;
  font-weight: 500;
  line-height: 43px;
  color: #9d9d9d;
}

.inspiration-filter-label.trending small {
  margin-right: 10px;
}

.inspiration-dropdown, .fonts-dropdown {
  padding: 0 12px;
  position: absolute;
  z-index: 15;
  top: 100%;
  left: -5px;
  margin-top: 5px;
  font-size: 15px;
  font-weight: 300;
  line-height: 22px;
  border: 1px solid #d8dfe6;
  border-radius: 5px;
  background-color: white;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.inspiration-dropdown.lists, .lists.fonts-dropdown {
  width: 140px;
  right: auto;
  left: 50%;
  margin-left: -70px;
}

.inspiration-dropdown-list, .fonts-dropdown-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.inspiration-dropdown-list li, .fonts-dropdown-list li {
  padding: 11px 6px;
  border-bottom: 1px solid #d8dfe6;
  cursor: pointer;
}

.inspiration-dropdown-list li:last-child, .fonts-dropdown-list li:last-child {
  border: none;
}

.inspiration-dropdown-list li:hover, .fonts-dropdown-list li:hover {
  color: #c12b2c;
}

.inspiration-author-filters {
  line-height: 34px;
  white-space: nowrap;
}

.inspiration-author-filters:only-child {
  align-self: flex-end;
}

.inspiration-author-filters .inspiration-filter-label {
  padding-right: 3px;
}

.inspiration-author-filters .campaigns-list-filter {
  line-height: 28px;
}

.inspiration-author-filters .campaigns-list-filter:before, .inspiration-author-filters .campaigns-list-filter:after {
  top: 18px;
}

.report-inspiration-breakdown-wrapper {
  padding: 20px 25px;
  min-height: 525px;
}

.report-inspiration-breakdown-wrapper h3 {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 38px;
}

.report-inspiration-breakdown-wrapper .label {
  color: #444c5c;
}

.report-inspiration-breakdown-wrapper .summary-entry {
  font-size: 14px;
  line-height: 22px;
  color: #444c5c;
}

.report-inspiration-breakdown-wrapper .svg-icon {
  max-width: 27px;
}

.report-inspiration-breakdown-wrapper .svg-icon svg {
  width: 100%;
  height: auto;
}

.report-breakdown-header {
  margin-bottom: 20px;
  border-bottom: 1px solid #d8dfe6;
}

.report-back-to-preview {
  padding: 0;
  margin-bottom: 10px;
  background: transparent;
  border: none;
  text-transform: uppercase;
  color: #9d9d9d;
  cursor: pointer;
}

.report-back-to-preview .chevron-left {
  margin-top: 3px;
  margin-right: 4px;
  height: 11px;
  width: 7px;
}

.fb-ads-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 1250px) {
  .fb-ads-list {
    display: block;
  }
}

.fb-ads-item {
  width: 50%;
  flex: 0 0 50%;
  margin-bottom: 32px;
}

@media (max-width: 1440px) {
  .fb-ads-item {
    margin-bottom: 16px;
  }
}

@media (max-width: 1250px) {
  .fb-ads-item {
    width: 100%;
    margin-bottom: 32px;
  }
}

.fb-ads-item:nth-child(even) {
  padding-left: 16px;
}

@media (max-width: 1440px) {
  .fb-ads-item:nth-child(even) {
    padding-left: 8px;
  }
}

@media (max-width: 1250px) {
  .fb-ads-item:nth-child(even) {
    padding: 0;
  }
}

.fb-ads-item:nth-child(odd) {
  padding-right: 16px;
}

@media (max-width: 1440px) {
  .fb-ads-item:nth-child(odd) {
    padding-right: 8px;
  }
}

@media (max-width: 1250px) {
  .fb-ads-item:nth-child(odd) {
    padding: 0;
  }
}

.fb-ads-item .ContentBox {
  height: 100%;
}

.fb-ad-content {
  display: flex;
  padding: 15px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .fb-ad-content {
    display: block;
  }
}

.fb-ad-content .add-to-fav {
  top: 20px;
  right: 25px;
  margin-top: 0;
}

.fb-ad-preview {
  position: relative;
  width: 350px;
  flex: 0 0 350px;
  text-align: center;
}

@media (max-width: 1440px) {
  .fb-ad-preview {
    width: 280px;
    flex: 0 0 280px;
  }
}

@media (max-width: 1199px) {
  .fb-ad-preview {
    width: 350px;
    flex: 0 0 350px;
  }
}

@media (max-width: 767px) {
  .fb-ad-preview {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
}

.fb-ad-preview .spinner-wrapper {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 1;
}

.fb-ad-entry {
  position: relative;
  width: 100%;
  flex: 1 1 100%;
  padding-left: 20px;
  padding-right: 10px;
  padding-top: 10px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 22px;
  max-height: 600px;
}

.fb-ad-entry:only-child {
  padding-right: 20px;
  padding-bottom: 20px;
}

@media (max-width: 767px) {
  .fb-ad-entry {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 20px;
    padding-top: 30px;
  }
}

.fb-ad-stats, .fb-ad-targeting {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.fb-ad-stats {
  margin-bottom: 20px;
  padding-bottom: 13px;
  border-bottom: 1px solid #d8dfe6;
}

.fb-ad-stats li {
  margin-bottom: 8px;
}

.fb-ad-stats var {
  float: right;
  font-style: normal;
  font-weight: 300;
}

.fb-ad-targeting {
  font-weight: 300;
}

.fb-ad-targeting li {
  margin-bottom: 22px;
}

.fb-ad-targeting strong {
  font-weight: 400;
}

.ads-report-trigger {
  position: static;
  display: inline-block;
}

.fb-ad-content.expand .fb-ad-entry {
  overflow: hidden;
}

.fb-ad-content.expand .fb-ad-entry:before {
  content: " ";
  display: block;
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 70%);
}

.fb-ad-content.expand .ads-report-message-buttons {
  position: absolute;
  z-index: 1;
  left: 20px;
  bottom: 0;
}

@media (max-width: 767px) {
  .fb-ad-content.expand .ads-report-message-buttons {
    left: 0;
  }
}

.fb-ad-content.expand .fb-ad-entry-inner {
  padding-bottom: 30px;
}

.fb-post:before {
  content: " ";
  display: block;
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 0.5em solid rgba(193, 43, 44, 0.2);
  border-right: 0.5em solid rgba(193, 43, 44, 0.2);
  border-bottom: 0.5em solid rgba(193, 43, 44, 0.2);
  border-left: 0.5em solid #c12b2c;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 0.8s infinite linear;
  animation: load8 0.8s infinite linear;
}

.fb-post:before, .fb-post:after {
  border-radius: 50%;
  width: 3em;
  height: 3em;
}

.fb-post[fb-xfbml-state="rendered"]:before, .fb-post[fb-xfbml-state="rendered"]:after {
  display: none;
}

.view-on-facebook {
  display: inline-block;
  position: static;
  margin-right: 10px;
  margin-bottom: 10px;
  background-color: #4267b2;
  color: white;
  text-decoration: none;
}

.view-on-facebook:hover {
  color: white;
}

.fb-ad-meta {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 20px;
}

.fb-ad-meta > * {
  display: block;
  margin-left: 10px;
}

.fb-ad-meta .add-to-fav {
  position: static;
}

.fb-ad-meta__wrapper {
  margin: 0;
  margin-right: auto;
}

.fb-ad-meta__single {
  font-size: 12px;
  display: inline-block;
  text-transform: uppercase;
  padding: 1px 10px;
  line-height: 1.5em;
  font-family: "Roboto", sans-serif;
  border-radius: 20px;
  margin: 0;
  margin-right: auto;
}

.fb-ad-meta__single.red {
  color: #fff;
  background-color: #bd2226;
}

.ads-report {
  text-align: left;
}

.ads-report-container {
  padding: 20px;
  display: flex;
}

.ads-report-header {
  border-bottom: 1px solid #d8dfe6;
}

.ads-report-preview {
  width: 350px;
  flex: 0 0 350px;
}

.ads-report-content {
  padding: 0 10px 0 25px;
  width: 100%;
  flex: 1 1 100%;
  color: #444c5c;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 22px;
}

.ads-report-content strong {
  color: #444c5c;
  font-weight: 400;
}

.ads-report-content .fb-ad-targeting {
  padding: 35px 0;
}

.ads-report-content .fb-ad-name {
  margin-bottom: 2px;
  font-size: 20px;
  line-height: 28px;
}

.fb-ad-header {
  padding-bottom: 15px;
  padding-top: 8px;
}

.ads-report-stats {
  padding: 20px 0 5px;
  display: flex;
  border-top: 1px solid #d8dfe6;
  border-bottom: 1px solid #d8dfe6;
}

.ads-report-stats .fb-ad-stats {
  width: 50%;
  flex: 0 0 50%;
  border: none;
  margin: 0;
}

.ads-report-stats .fb-ad-stats li {
  margin-bottom: 3px;
}

.ads-report-stats .fb-ad-stats:first-child {
  padding-right: 40px;
}

.ads-report-stats .fb-ad-stats:last-child {
  padding: 0 8%;
}

.fb-ad-meta, .fb-ad-header-label {
  font-size: 14px;
  color: #9d9d9d;
}

.fb-ad-header-label {
  text-transform: uppercase;
}

.public-ads-report {
  height: 100vh;
}

@media (max-width: 991px) {
  .public-ads-report {
    height: auto;
  }
}

.public-ads-report .ads-report {
  height: 100%;
  padding-top: 57px;
}

@media (max-width: 767px) {
  .public-ads-report .ads-report {
    padding-top: 0;
  }
}

.public-ads-report .ads-report-container {
  padding: 0;
  margin: 0 auto;
}

.public-ads-report .ads-report-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

@media (max-width: 767px) {
  .public-ads-report .ads-report-header {
    position: relative;
  }
}

.public-ads-report .ads-report-body, .public-ads-report .ads-report-container {
  height: 100%;
  padding-top: 0;
}

@media (max-width: 991px) {
  .public-ads-report .ads-report-body, .public-ads-report .ads-report-container {
    display: block;
  }
}

.public-ads-report .ads-report-content, .public-ads-report .ads-report-preview {
  padding-top: 33px;
}

.public-ads-report .report-inspiration-header .inner {
  max-width: none;
  padding: 14px 54px 14px 35px;
}

.public-ads-report .ads-report-content {
  padding-left: 35px;
  padding-right: 35px;
}

.public-ads-report .fb-ad-targeting {
  padding-top: 20px;
}

.public-ads-report-preview {
  width: 45%;
  flex: 0 0 45%;
  min-width: 400px;
  background-color: white;
}

@media (max-width: 1199px) {
  .public-ads-report-preview {
    width: 400px;
    flex: 0 0 400px;
  }
}

@media (max-width: 991px) {
  .public-ads-report-preview {
    width: 100%;
    padding-bottom: 50px;
  }
}

.public-ads-report-preview .fb-ad-preview {
  margin: 0 auto;
}

.public-ads-report-stats {
  padding: 25px 0;
  margin-bottom: 30px;
  border-top: 1px solid #d8dfe6;
  border-bottom: 1px solid #d8dfe6;
}

.public-fb-ad-stats {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  max-width: 650px;
  text-transform: uppercase;
  color: #9d9d9d;
}

@media (max-width: 767px) {
  .public-fb-ad-stats {
    display: block;
  }
}

@media (max-width: 767px) {
  .public-fb-ad-stats li {
    margin-bottom: 20px;
  }
  .public-fb-ad-stats li:last-child {
    margin-bottom: 0;
  }
}

.public-fb-ad-stats var {
  display: block;
  font-size: 50px;
  line-height: 50px;
  color: #c12b2c;
  font-family: "Roboto", sans-serif;
  font-style: normal;
}

@media (max-width: 767px) {
  .public-fb-ad-stats var {
    font-size: 38px;
    line-height: 38px;
  }
}

.public-ads-subtitle {
  text-transform: uppercase;
  font-size: 16px;
  line-height: 20px;
}

.bg-assigned_to {
  background-color: #2cc133;
  color: white;
}

.bg-stage {
  background-color: #2ccf8c;
  color: white;
}

.bg-visited_pages {
  background-color: #cf2cb6;
  color: white;
}

.bg-tags {
  background-color: #9142ff;
  color: white;
}

.bg-clicked_blasts {
  background-color: #f7aa0e;
  color: white;
}

.bg-opened_blasts {
  background-color: #41b6fc;
  color: white;
}

.bg-unopened_blasts {
  background-color: #e9651b;
  color: white;
}

.bg-excluded_tags {
  background-color: #b2aabc;
  color: white;
}

.bg-source {
  background-color: #1e95d9;
  color: white;
}

.bg-blast_activity {
  background-color: #4959d5;
  color: white;
}

.bg-site_activity {
  background-color: #c12b2c;
  color: white;
}

.bg-created {
  background-color: #ff7f00;
  color: white;
}

.bg-contacted {
  background-color: #51d3b1;
  color: white;
}

.fill-assigned_to path {
  fill: #2cc133;
}

.fill-stage path, .fill-stage rect {
  fill: #2ccf8c;
}

.fill-visited_pages path, .fill-visited_pages rect {
  fill: #cf2cb6;
}

.fill-tags path, .fill-tags rect {
  fill: #9142ff;
}

.fill-excluded_tags path, .fill-excluded_tags rect {
  fill: #b2aabc;
}

.fill-clicked_blasts path, .fill-clicked_blasts rect {
  fill: #f7aa0e;
}

.fill-opened_blasts path, .fill-opened_blasts rect {
  fill: #41b6fc;
}

.fill-unopened_blasts path, .fill-unopened_blasts rect {
  fill: #e9651b;
}

.fill-source path, .fill-source rect {
  fill: #1e95d9;
}

.fill-blast_activity path, .fill-blast_activity rect {
  fill: #4959d5;
}

.fill-site_activity path, .fill-site_activity rect {
  fill: #c12b2c;
}

.fill-created path, .fill-created rect {
  fill: #ff7f00;
}

.fill-contacted path, .fill-contacted rect {
  fill: #51d3b1;
}

.new-list-form {
  max-width: 355px;
  margin: 0 auto;
  padding: 20px 0 20px;
}

.create-list-footer {
  padding: 18px 0;
  border-top: 1px solid #d8dfe6;
}

.create-list-footer .btn:not(.float-left) {
  margin-left: 20px;
}

.content-header .button-save .fa {
  margin-left: 0;
  margin-right: 5px;
}

.selected-filters-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.selected-filter {
  display: inline-block;
  position: relative;
  vertical-align: top;
  margin-right: 8px;
  margin-bottom: 13px;
  padding: 8px 36px 6px 15px;
  border-radius: 50px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  cursor: pointer;
}

.selected-filter:after, .selected-filter:before {
  content: " ";
  display: block;
  width: 12px;
  height: 1px;
  background-color: white;
  transform-origin: center center;
  position: absolute;
  right: 14px;
  top: 16px;
}

@media (max-width: 767px) {
  .selected-filter:after, .selected-filter:before {
    right: 14px;
  }
}

.selected-filter:before {
  transform: rotate(45deg);
}

.selected-filter:after {
  transform: rotate(-45deg);
}

.selected-filter.excluded_tags:before, .selected-filter.excluded_tags:after {
  background-color: #444c5c;
}

.selected-filter.excluded_tags .helper {
  display: inline-block;
  vertical-align: top;
  width: 15px;
  height: 15px;
  margin-top: 1px;
  margin-right: 8px;
  background: url("/images/icon-excluded.svg") top left no-repeat;
}

.create-list-selected-filters {
  padding: 2px 0 22px;
  border-bottom: 1px solid #f4f4f4;
}

.create-list-preview {
  padding: 25px 0 30px;
}

.create-list-preview .content-body-people-list {
  padding: 0;
}

.create-list-preview .create-list-subheading {
  margin-bottom: 10px;
}

.create-list-content {
  padding-top: 30px;
}

.create-list-content h6 {
  line-height: 20px;
}

.create-list-input {
  padding-top: 20px;
}

.list-summary-heading {
  line-height: 42px;
  font-family: "Roboto", sans-serif;
  color: white;
}

@media (max-width: 991px) {
  .list-summary-heading {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .list-summary-heading {
    text-align: center;
  }
}

.list-summary-heading .name {
  display: inline-block;
  font-size: 18px;
}

.list-summary-heading .name .circle-chevron {
  margin-top: 9px;
}

@media (max-width: 767px) {
  .list-summary-heading .name {
    padding-top: 5px;
    margin-bottom: 5px;
  }
}

.list-summary-gravatars {
  float: right;
}

.list-summary-gravatars .gravatar {
  border-color: #302e32;
}

.list-summary-gravatars .gravatar:first-child {
  background-color: #1b92ce;
}

.list-summary-gravatars .gravatar:nth-child(2) {
  background-color: #f68d11;
}

.list-summary-gravatars .gravatar:nth-child(3) {
  background-color: #38bd92;
}

.list-summary-gravatars .gravatar:nth-child(4) {
  background-color: #3f20af;
}

.list-summary-gravatars .gravatar:nth-child(5) {
  background-color: #df307a;
}

.list-summary-gravatars span {
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .list-summary-gravatars {
    float: none;
  }
}

.summary-entry {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  column-count: 2;
}

.summary-entry:after {
  content: '';
  clear: both;
  display: table;
}

@media (max-width: 1199px) {
  .summary-entry {
    column-count: 1;
  }
}

@media (max-width: 767px) {
  .summary-entry {
    display: inline-block;
    width: 100%;
    padding-left: 20px;
    max-width: 350px;
    text-align: left;
  }
}

.summary-row {
  position: relative;
  padding: 13px 20px 13px 45px;
  width: 100%;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}

.summary-row i {
  position: absolute;
  top: 12px;
  left: 0;
  color: #c12b2c;
  font-size: 24px;
  line-height: 30px;
}

.summary-row i.fill-source, .summary-row i.fill-blast_activity {
  top: 15px;
}

.summary-row i.fill-site_activity {
  top: 17px;
}

.list-summary-body {
  padding-top: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid #d8dfe6;
}

@media (max-width: 767px) {
  .list-summary-body {
    text-align: center;
  }
}

.list-summary-body .h3 {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .list-summary-body .h3 {
    width: 100%;
  }
}

.list-summary-content .btn-wrapper {
  padding-top: 25px;
  padding-bottom: 25px;
}

@media (max-width: 767px) {
  .list-summary-content .btn-wrapper {
    text-align: center;
  }
}

.list-summary-content .btn-big {
  padding: 17px 25px 14px;
}

@media (max-width: 767px) {
  .list-summary-content .btn-big {
    padding: 14px 22px 11px;
  }
}

.list-summary-row {
  padding-left: 22px;
  padding-right: 22px;
}

.autocomplete-wrapper {
  padding: 20px 0;
}

.autocomplete-wrapper .inner {
  position: relative;
}

@media (max-width: 767px) {
  .autocomplete-wrapper {
    position: relative;
    padding-top: 10px;
    z-index: auto;
  }
}

.autocomplete-wrapper .input-wrapper {
  position: relative;
  z-index: 16;
}

@media (max-width: 767px) {
  .autocomplete-wrapper .input-wrapper {
    z-index: auto;
  }
}

.autocomplete-wrapper .input-wrapper input {
  width: 440px;
}

@media (max-width: 1440px) {
  .autocomplete-wrapper .input-wrapper input {
    width: 380px;
  }
}

@media (max-width: 1199px) {
  .autocomplete-wrapper .input-wrapper input {
    width: 250px;
  }
}

@media (max-width: 991px) {
  .autocomplete-wrapper .input-wrapper input {
    width: 320px;
  }
}

@media (max-width: 767px) {
  .autocomplete-wrapper .input-wrapper input {
    width: 100%;
    padding-left: 25px;
    z-index: auto;
  }
}

@media (max-width: 767px) {
  .autocomplete-wrapper .input-wrapper label {
    float: none;
    position: absolute;
    top: 0;
    left: 16px;
  }
}

.autocomplete-input-wrapper {
  display: flex;
  padding: 0 0 4px;
  border-bottom: 1px solid #f4f4f4;
  line-height: 38px;
  font-family: "Roboto", sans-serif;
}

.autocomplete-input-wrapper label {
  width: 105px;
  flex: 0 0 105px;
  font-weight: 500;
  color: #444c5c;
}

.autocomplete-input-wrapper .svg-icon {
  margin-top: 6px;
  margin-right: 16px;
  line-height: 24px;
}

.autocomplete-input-wrapper input {
  width: 100%;
  flex: 1 1 100%;
  padding: 9px 10px 11px;
  line-height: 20px;
  font-family: "Roboto", sans-serif;
}

.autocomplete-input-wrapper .suffix {
  white-space: nowrap;
  font-size: 15px;
  color: #9d9d9d;
}

.autocomplete-menu-wrapper {
  position: absolute;
  top: 100%;
  right: 0;
  left: 110px;
  margin-top: 5px;
  padding: 5px;
  border: 1px solid #d8dfe6;
  border-radius: 4px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  font-size: 15px;
  line-height: 20px;
  font-weight: 300;
  background-color: white;
  z-index: 125;
}

@media (max-width: 1199px) {
  .autocomplete-menu-wrapper {
    width: 250px;
  }
}

@media (max-width: 767px) {
  .autocomplete-menu-wrapper {
    width: 350px;
  }
}

@media (max-width: 480px) {
  .autocomplete-menu-wrapper {
    left: 10px;
    right: 10px;
    width: auto;
  }
}

.create-list-subheading {
  line-height: 45px;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  color: #9d9d9d;
}

.autocomplete-heading, .facet-heading {
  line-height: 22px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  color: #9d9d9d;
}

.autocomplete-heading .autocomplete-dot, .autocomplete-heading .facet-dot, .facet-heading .autocomplete-dot, .facet-heading .facet-dot {
  margin-top: 6px;
  margin-right: 10px;
  margin-left: 3px;
}

.autocomplete-dot, .facet-dot {
  display: inline-block;
  vertical-align: top;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.autocomplete-menu, .autocomplete-inner-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.autocomplete-menu {
  padding: 5px 18px 0 12px;
}

.autocomplete-menu-item {
  margin-bottom: 12px;
  border-bottom: 1px solid #d8dfe6;
}

.autocomplete-menu-item:last-child {
  margin-bottom: 5px;
  border: none;
}

.autocomplete-inner-list {
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  line-height: 21px;
  font-weight: 300;
}

.autocomplete-inner-list li {
  padding: 10px 6px;
  border-bottom: 1px solid #d8dfe6;
  cursor: pointer;
}

.autocomplete-inner-list li:last-child {
  border: none;
}

.autocomplete-inner-list li em {
  font-style: normal;
  font-weight: 700;
}

.autocomplete-no-results {
  display: block;
  padding: 20px 10px;
  font-size: 16px;
}

div.content-create-nav-dropdown {
  width: 250px;
}

div.content-create-nav-dropdown svg {
  display: block;
}

div.content-create-nav-dropdown .inner {
  display: flex;
  align-items: center;
}

.creator-base-button {
  display: inline-block;
  padding: 0 30px;
  min-height: 60px;
  font-family: var(--buttonsFont);
  font-size: var(--buttonsFontSize);
  font-weight: var(--buttonsFontWeight);
  line-height: 54px;
  color: #fff;
  text-align: center;
  background: var(--buttonsColor, var(--primaryColor));
  border: 2px solid var(--buttonsColor, var(--primaryColor));
  border-radius: 4px;
}

.creator-base-button br {
  display: none;
}

.creator-base-button.border {
  background-color: transparent;
  color: var(--buttonsColor, var(--primaryColor));
}

.creator-base-button.transparent {
  background-color: transparent;
  border-color: transparent;
}

.create-content-header-wrapper {
  height: 78px;
  position: relative;
}

.create-content-header-wrapper .create-content-header {
  height: 78px;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background-color: white;
}

.create-content-header-wrapper .create-content-header.fixed {
  padding: 0 51px;
  position: fixed;
  z-index: 96;
}

@media (max-width: 1440px) {
  .create-content-header-wrapper .create-content-header.fixed {
    padding: 0 31px;
  }
}

.create-content-title-col {
  flex-grow: 1;
  padding: 19px 28px 18px;
}

.content-title-input {
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  line-height: 36px;
}

.create-content-autosave-text {
  margin-right: 15px;
  vertical-align: middle;
  font-size: 13px;
  line-height: 17px;
  color: #838384;
  text-transform: uppercase;
}

.content-toolbar-button {
  padding: 10px;
  vertical-align: middle;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}

.content-toolbar-button.inactive {
  cursor: default;
  opacity: .5;
}

.content-toolbar-button .custom-icon {
  width: 24px;
  height: 24px;
}

.content-toolbar-button .announcements path {
  fill: #838384;
}

.create-content-objects-col {
  flex-grow: 0;
  padding-left: 20px;
}

.objects-drawer-trigger {
  padding: 25px;
  line-height: 27px;
  text-transform: uppercase;
  border: 0;
  border-left: 1px solid #f4f4f4;
  background: transparent;
  cursor: pointer;
}

.objects-drawer-trigger .svg-icon {
  height: 23px;
  margin-top: 2px;
  margin-right: 5px;
}

.create-content-blocks {
  color: #252525;
}

.create-content-blocks h1 {
  font-size: var(--h1FontSize, 44px);
  line-height: 1.31818182em;
}

.create-content-blocks h2 {
  margin-right: 0;
  font-size: var(--h2FontSize, 33px);
  line-height: 1.36363636em;
}

.create-content-blocks h3 {
  font-size: var(--h3FontSize, 25px);
  line-height: 1.5em;
}

.create-content-blocks h4 {
  font-size: var(--h4FontSize, 22px);
  line-height: 1.36363636em;
}

.create-content-blocks h5 {
  font-size: var(--h5FontSize, 19px);
  line-height: 1.36842105em;
}

.create-content-blocks h6 {
  font-size: var(--h6FontSize, 16px);
  line-height: 2.16666667em;
}

.create-content-blocks p {
  font-family: var(--paragraphFont, inherit);
  font-size: var(--paragraphFontSize, 16px);
  line-height: 1.85714286em;
  color: #6e7a87;
}

.content-block-inner ul,
.content-block-inner ol {
  font-size: 16px;
  line-height: 1.85714286em;
  color: #6e7a87;
}

.create-content-page {
  min-height: 100vh;
  padding: 10px 0 60px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.page-settings-drawer-overlay {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 998;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.75);
  opacity: 0;
  visibility: hidden;
  transition: visibility 350ms ease-in-out, opacity 350ms ease-in-out;
}

.page-settings-drawer-overlay.opened {
  opacity: 1;
  visibility: visible;
}

.page-settings-drawer {
  width: 600px;
  height: 100%;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  transform: translate3d(600px, 0, 0);
  border-left: 1px solid #d8dfe6;
  background-color: white;
  box-shadow: 0;
  transition: transform 350ms cubic-bezier(0.77, 0, 0.175, 1), box-shadow 350ms ease-in-out;
}

.page-settings-drawer.opened {
  transform: translate3d(0, 0, 0);
  box-shadow: -5px 0 20px rgba(9, 10, 10, 0.25);
}

.page-settings-drawer .custom-scrollbar-wrapper {
  right: 5px;
}

.page-settings-drawer .Upload {
  padding-top: 10px;
}

.page-settings-drawer .LogoDropzone.LogoDropzone--hasContent {
  height: auto;
}

.page-settings-drawer .LogoDropzone .LogoDropzone__ImagePreview {
  display: block;
  height: auto;
  max-width: 100%;
  max-height: none;
  position: static;
  transform: none;
}

.drawer-header {
  padding: 20px 0;
}

.drawer-header h4,
.content-block-inner .drawer-header h4 {
  display: inline-block;
  margin-bottom: 0;
  font-size: 19px;
  line-height: 41px;
}

.drawer-container {
  padding: 0 35px;
}

.drawer-subtitle,
.content-block-inner .drawer-subtitle {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  color: #9d9d9d;
  text-transform: uppercase;
}

.content-block-inner .page-settings-drawer {
  font-size: 16px;
}

.content-block-inner .page-settings-drawer p {
  font-size: 16px;
}

.drawer-section {
  padding: 10px 0 15px;
  margin-bottom: 10px;
}

.drawer-section.border-bottom {
  border-color: #f4f4f4;
}

.drawer-section.nopadding {
  padding: 0;
}

.drawer-section.nopadding-bottom {
  padding-bottom: 0;
}

.drawer-field-row {
  margin-bottom: 12px;
}

.field-group {
  padding: 12px 0 2px;
}

.dropdown-field-wrapper {
  flex: 0 0 330px;
}

.block-row:only-child .objects-drop-target {
  padding: 28px;
}

.block-row:only-child .objects-drop-target .inner {
  border: 1px dashed #d8dfe6;
}

.block-row:only-child .objects-drop-target.active .inner {
  border-color: #9d9d9d;
}

.block-row:only-child .objects-drop-target.over .inner {
  border-color: #24b8ba;
  color: #24b8ba;
}

.block-row:only-child .objects-drop-target .text {
  display: block;
  width: 100%;
  padding: 30px;
  margin: 0;
  background-color: transparent;
  border: 0;
  text-align: center;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  cursor: pointer;
}

.block-row:not(:only-child) .objects-drop-target {
  position: relative;
  height: 0;
  border: 0 solid white;
  border-radius: 3px;
  background-color: #d8dfe6;
  transition: background-color 200ms ease-in-out, height 200ms ease-in-out, border 200ms ease-in-out;
}

.block-row:not(:only-child) .objects-drop-target .inner {
  height: 30px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -15px;
  right: 0;
}

.block-row:not(:only-child) .objects-drop-target .text,
.block-row:not(:only-child) .objects-drop-target .btn {
  display: none;
}

.block-row:not(:only-child) .objects-drop-target.active {
  height: 14px;
  border: 5px solid white;
}

.block-row:not(:only-child) .objects-drop-target.over {
  height: 18px;
  border: 5px solid white;
  background-color: #24b8ba;
}

.objects-drop-target .inner {
  padding: 30px 0;
  text-align: center;
}

.block-row:nth-child(2) .temp-block {
  background-color: #f7f9fa;
}

.block-row:nth-child(3) .temp-block {
  background-color: #153a57;
  color: white;
}

.block-row:nth-child(4) .temp-block {
  background-color: #24b8ba;
  color: white;
}

.temp-block {
  padding: 200px 28px;
  text-align: center;
}

.block-row {
  position: relative;
  background-color: white;
}

.block-row-moving {
  z-index: 1;
}

.block-row-moving .block-menu {
  visibility: visible;
  opacity: 1;
}

.content-block {
  position: relative;
  background-color: white;
  font-family: var(--secondaryFont, "Roboto", sans-serif);
}

.content-block h1 {
  font-family: var(--h1Font, var(--primaryFont, "Source Sans Pro", sans-serif));
}

.content-block h2 {
  font-family: var(--h2Font, var(--primaryFont, "Source Sans Pro", sans-serif));
}

.content-block h3 {
  font-family: var(--h3Font, var(--primaryFont, "Source Sans Pro", sans-serif));
}

.content-block h4 {
  font-family: var(--h4Font, var(--primaryFont, "Source Sans Pro", sans-serif));
}

.content-block h5 {
  font-family: var(--h5Font, var(--primaryFont, "Source Sans Pro", sans-serif));
}

.content-block h6 {
  font-family: var(--h6Font, var(--primaryFont, "Source Sans Pro", sans-serif));
}

.content-block button,
.content-block .button,
.content-block .submit,
.content-block .editable-button,
.content-block .related-content-button {
  font-family: var(--buttonsFont, var(--primaryFont, "Source Sans Pro", sans-serif));
}

.content-block .title {
  font-family: var(--primaryFont, "Source Sans Pro", sans-serif);
}

.content-block:hover .block-menu {
  visibility: visible;
  opacity: 1;
}

.content-block:hover .content-block-inner {
  box-shadow: 0 0 0 2px #81c835 inset;
}

.content-block-inner {
  position: relative;
  padding: 2px;
  font-size: 22px;
  line-height: 32px;
  box-shadow: 0 0 0 2px transparent inset;
  transition: box-shadow 200ms ease-in-out;
}

.block-settings {
  font-size: 16px;
  line-height: 22.4px;
  font-family: "Roboto", sans-serif;
  text-align: left;
}

.block-settings h1, .block-settings h2, .block-settings h3, .block-settings h4, .block-settings h5, .block-settings h6 {
  margin-bottom: 0;
}

.block-settings h4 {
  display: inline-block;
  margin-bottom: 10px;
}

.block-container {
  margin: 0 auto;
}

.block-container:after {
  content: '';
  clear: both;
  display: table;
}

.block-menu {
  list-style-type: none;
  padding: 0;
  width: 48px;
  position: absolute;
  margin: 0;
  top: 12px;
  left: 15px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 200ms ease-in-out, opacity 200ms ease-in-out;
  background-color: white;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  font-size: 22px;
  line-height: 22px;
  z-index: 5;
}

.block-menu li {
  border-bottom: 1px solid #d8dfe6;
  text-align: center;
}

.block-menu li:last-child {
  border-bottom: 0;
}

.block-menu .drag-handle {
  padding: 12px;
  cursor: move;
}

.block-menu-button {
  display: block;
  padding: 12px;
  border: 0;
  background-color: transparent;
  font-size: 22px;
  cursor: pointer;
}

.block-menu-button i {
  display: block;
}

.block-menu-button svg {
  display: block;
  width: 1em;
  height: auto;
}

.block-container {
  max-width: 1170px;
  padding: 0 15px;
}

.block-basic-text {
  position: relative;
}

.block-basic-text .background-image-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.block-basic-text .content-block-inner {
  padding: 85px 0;
}

.block-basic-text .block-container,
.block-basic-text .block-container-full {
  padding: 0 30px;
  width: 100%;
}

.block-basic-text .block-container {
  max-width: 1170px;
  padding: 0 15px;
}

.basic-text-columns-wrapper {
  margin: 0 -15px;
  display: flex;
}

.basic-text-column {
  padding: 0 15px;
  width: 25%;
  flex: 0 0 25%;
}

.block-settings {
  width: 585px;
  color: #444c5c;
}

.block-settings .page-settings-save-wrapper {
  padding-top: 25px;
  margin-bottom: 25px;
  border-top: 1px solid #f4f4f4;
}

.block-settings .page-settings-save-wrapper .info {
  margin-left: 15px;
}

.block-settings .page-settings-input-wrapper:only-child {
  flex-grow: 1;
}

.drawer-radio-form-row {
  align-items: flex-start;
}

.drawer-radio-form-row .radio-content-wrapper {
  padding-left: 12px;
  padding-right: 10px;
}

.drawer-radio-form-row > div {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
}

.drawer-radio-form-row input[type=radio] + label {
  margin-left: 0;
}

.drawer-radio-form-row.cols-2 > div {
  justify-content: space-between;
}

.drawer-radio-form-row.cols-2 > div .radio-wrapper {
  flex: 0 0 242px;
}

.drawer-radio-form-row.cols-3 input[type=radio] + label {
  margin-left: 0;
}

.drawer-radio-form-row.cols-3 > div {
  justify-content: space-between;
}

.drawer-radio-form-row.cols-3 > div .radio-content-wrapper {
  flex: 0 1 auto;
  padding-right: 12px;
}

.drawer-radio-form-row.cols-3 > div .radio-wrapper {
  flex: 0 1 auto;
}

.drawer-subtitle + .tags-input-outer {
  padding-top: 10px;
}

.block-hero {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.block-hero .content-block-inner {
  padding: 250px 0;
  color: white;
}

.block-hero .content-block-inner .block-froala p {
  color: white;
}

.block-hero .block-container {
  width: 100%;
  max-width: 1170px;
  padding: 0 15px;
  margin: 0 auto;
}

.block-hero .background-image-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.block-hero.no-black-overlay .background-image-wrapper:after {
  content: none;
}

.block-hero-simple-cta.center {
  text-align: center;
}

.block-hero-simple-cta.right {
  text-align: right;
}

.block-hero-simple-cta .content-block-inner {
  padding: 150px 0;
}

.block-hero-simple-cta .editable-image-wrapper {
  margin-bottom: 50px;
}

.block-hero-simple-cta .editable-image-wrapper p {
  color: #6e7a87;
}

.block-hero-simple-cta .editable-image-inner.empty {
  height: auto;
  padding-top: 20px;
  transition: all 300ms ease;
  border: 1px solid green;
}

.block-hero-simple-cta .editable-image-inner.empty:hover {
  padding-top: 100px;
}

.block-hero-subscribe-form .microcopy {
  margin-top: 16px;
}

.block-hero-subscribe-form.center {
  text-align: center;
}

.block-hero-subscribe-form.center .input-with-button {
  justify-content: center;
}

.block-hero-subscribe-form.right {
  text-align: right;
}

.block-hero-subscribe-form.right .input-with-button {
  justify-content: flex-end;
}

.block-hero-facebook-subscribe.center {
  text-align: center;
}

.block-hero-facebook-subscribe.center .block-facebook-button {
  justify-content: center;
}

.block-hero-facebook-subscribe.right {
  text-align: right;
}

.block-hero-facebook-subscribe.right .block-facebook-button {
  justify-content: flex-end;
}

.block-hero-lead-gen.center .wrapper {
  justify-content: space-around;
}

.block-hero-lead-gen.center .editor-col {
  display: none;
}

.block-hero-lead-gen.right .editor-col {
  order: 2;
  padding-right: 0;
  padding-left: 90px;
}

.block-hero-lead-gen .content-block-inner {
  padding: 37px 0 74px;
}

.block-hero-lead-gen .wrapper {
  display: flex;
  align-items: center;
}

.block-hero-lead-gen .editor-col {
  flex-grow: 1;
  padding-right: 90px;
}

.block-hero-lead-gen .form-col .block-form {
  width: 540px;
}

.block-hero-features .content-block-inner {
  padding: 50px 0;
}

.block-hero-features .block-manage-button {
  display: block;
  margin: 0 auto;
  margin-top: 20px;
}

.features-hero__main-content {
  max-width: 570px;
  margin: 0 auto;
  padding-bottom: 30px;
  text-align: center;
}

.features-hero__list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding-top: 30px;
  border-top: 1px solid #f3f4f6;
}

.features-hero__single-elem {
  position: relative;
  width: 25%;
  margin-bottom: 30px;
  padding: 10px 15px;
  transition: all 300ms ease;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 5px;
}

.features-hero__single-elem:hover {
  border: 1px solid #e64545;
}

.features-hero__single-elem:hover .features-hero__single-elem__remove {
  opacity: 1;
}

.features-hero__single-elem .editable-image-wrapper {
  margin-bottom: 20px;
}

.features-hero__single-elem .editable-image-inner.empty {
  height: 120px;
}

.features-hero__single-elem .manage-gallery-button {
  padding: 18px 20px;
  width: 180px;
  margin-left: -90px;
}

.features-hero__single-elem h3 {
  margin-bottom: 10px;
}

.features-hero__single-elem__remove {
  position: absolute;
  right: 5px;
  bottom: 100%;
  width: 20px;
  height: 20px;
  cursor: pointer;
  transition: all 300ms ease;
  text-indent: -9999px;
  opacity: 0;
  border: 0;
  border-radius: 5px 5px 0 0;
  background-color: #e64545;
  appearance: none;
}

.features-hero__single-elem__remove:after, .features-hero__single-elem__remove:before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 1px;
  height: 10px;
  margin-top: -5px;
  content: '';
  background-color: #fff;
}

.features-hero__single-elem__remove:after {
  transform: rotate(-45deg);
}

.features-hero__single-elem__remove:before {
  transform: rotate(45deg);
}

.block-hero-with-image .block-container {
  display: flex;
  flex-flow: row wrap;
}

.block-hero-with-image.left .block-container {
  justify-content: flex-start;
}

.block-hero-with-image.right .block-container {
  justify-content: flex-end;
}

.block-hero-with-image.center .block-container {
  justify-content: center;
}

.block-hero-with-image .block-text__content {
  width: 50%;
  padding: 0 15px;
}

.block-hero-with-image .editable-button-wrapper {
  margin-top: 60px;
}

.block-hero-carousel .content-block-inner {
  padding: 50px 0;
  text-align: center;
}

.block-hero-carousel .content-block-inner .DeleteButton {
  width: 25px;
  height: 25px;
  padding: 5px;
}

.block-hero-carousel .content-block-inner .DeleteButton .custom-icon {
  width: 15px;
  height: 15px;
}

.block-hero-carousel .editable-button-wrapper {
  margin: 0;
}

.hero-carousel__content {
  margin-bottom: 50px;
}

.hero-carousel__slides {
  display: flex;
  flex-flow: row wrap;
  z-index: 10;
}

.hero-carousel__slide {
  width: 33.333%;
  padding: 0 15px;
  margin-bottom: 30px;
  text-align: center;
}

.hero-carousel__slide:hover .hero-carousel__slide__buttons-wrapper {
  opacity: 1;
}

.hero-carousel__slide.slide-block-moving {
  z-index: 10;
}

.hero-carousel__slide .editable-button-wrapper {
  padding: 0;
}

.hero-carousel__slide .input-wrapper {
  flex: 1 1 auto;
  background: transparent;
}

.hero-carousel__slide .input-upload-button .input-label {
  display: none;
}

.hero-carousel__slide h3 {
  display: block;
  margin-bottom: 0;
  font-size: 25px;
}

.hero-carousel__slide .editable-button-wrapper {
  margin-top: 15px;
  margin-bottom: 20px;
}

.hero-carousel__slide .editable-button-inner {
  padding: 8px 15px;
}

.hero-carousel__slide__wrapper {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  min-height: 391px;
  position: relative;
  border-radius: 5px;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.hero-carousel__slide__wrapper:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 5px;
  background-color: #000;
  opacity: .3;
  overflow: hidden;
}

.hero-carousel__slide__inner {
  width: 100%;
  padding: 0 15px;
  position: relative;
}

.hero-carousel__slide__buttons-wrapper {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 5px;
  opacity: 0;
  transition: all 300ms ease;
}

.hero-carousel__slide__buttons-wrapper > * {
  vertical-align: top;
}

.hero-carousel__slide__buttons-wrapper > *:not(:last-child) {
  margin-right: 5px;
}

.hero-carousel__slide__buttons-wrapper .drag-handle {
  display: inline-block;
  width: 30px;
  height: 30px;
  padding: 4px;
  position: relative;
  border-radius: 0 0 5px 5px;
  background-color: #fff;
}

.hero-carousel__slide__remove-slide {
  padding: 4px 7px;
  color: white;
  border: none;
  border-radius: 0 0 5px 5px;
  background-color: #e64545;
  cursor: pointer;
  opacity: 1;
  transition: all 300ms ease;
  appearance: none;
}

.hero-carousel__slide__remove-slide:hover {
  opacity: .9;
}

.hero-carousel__slide__move-btn {
  padding: 4px 7px;
  border: none;
  border-radius: 0 0 5px 5px;
  background-color: white;
  cursor: pointer;
  appearance: none;
}

.hero-carousel__slide__img-wrapper {
  min-height: 70px;
  margin-bottom: 30px;
  text-align: center;
}

.hero-carousel__slide__img-wrapper img {
  max-width: 70px;
}

.hero-carousel__slide__img-wrapper .manage-gallery-button {
  width: 180px;
  padding: 15px 20px;
  margin-top: -25px;
  margin-left: -90px;
}

.hero-carousel__slide__img-wrapper .editable-image-inner.empty {
  height: 120px;
  max-width: 250px;
  margin: 0 auto;
}

.hero-carousel__slide__slide-icon {
  max-width: 100%;
}

.block-hero-schedule-form.center .wrapper {
  justify-content: space-around;
}

.block-hero-schedule-form.center .content-col {
  display: none;
}

.block-hero-schedule-form.right .content-col {
  padding-right: 0;
  padding-left: 90px;
  order: 2;
}

.block-hero-schedule-form .content-block-inner {
  padding: 40px 0;
}

.block-hero-schedule-form .wrapper {
  display: flex;
  align-items: center;
}

.block-hero-schedule-form .content-col {
  flex-grow: 1;
  padding-right: 90px;
  text-align: center;
}

.block-hero-schedule-form .form-col .block-form {
  width: 540px;
}

.block-hero-schedule-form .schedule-form-logo {
  max-width: 316px;
}

.block-hero-schedule-form .schedule-form-heading {
  margin: 30px 0;
  font-size: 40px;
  font-weight: 600;
  color: #252525;
}

.block-hero-schedule-form .schedule-form-review {
  margin-bottom: 40px;
}

.block-hero-schedule-form .schedule-form-review p {
  color: #969fab;
}

.block-hero-schedule-form .schedule-form-footer {
  display: flex;
  justify-content: center;
}

.block-hero-schedule-form .schedule-form-footer h5 {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: #000;
}

.block-hero-schedule-form .schedule-form-footer span {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: #969fab;
}

.block-hero-schedule-form .schedule-form-col {
  margin: 0 15px;
}

.block-gallery-empty {
  background-color: #51c2b3;
}

.block-gallery-empty .content-block-inner {
  height: 300px;
}

.block-gallery-empty .manage-gallery-button {
  opacity: 1;
}

.block-gallery.normal .block-container {
  width: 100%;
  max-width: 1170px;
  padding: 0 15px;
  margin: 0 auto;
}

.block-gallery:hover .manage-gallery-button {
  opacity: 1;
}

.manage-gallery-button {
  width: 250px;
  padding: 21px 20px;
  position: absolute;
  top: 150px;
  left: 50%;
  margin-left: -125px;
  margin-top: -31px;
  border: 0;
  border-radius: 5px;
  background-color: #81c835;
  text-align: center;
  font-size: 17px;
  line-height: 20px;
  text-transform: uppercase;
  color: white;
  cursor: pointer;
  z-index: 1;
  transition: opacity 200ms ease-in-out;
  opacity: 0;
}

.images-gallery-inner:after {
  content: '';
  clear: both;
  display: table;
}

.images-popup-content {
  padding: 15px 22px 33px;
  font-size: 16px;
  line-height: 22px;
}

.images-popup-content .Upload {
  padding: 0 11px;
}

.images-popup-list-wrapper {
  padding-right: 11px;
  padding-bottom: 10px;
  position: relative;
  margin-bottom: 15px;
}

.images-popup-list-wrapper:after {
  content: ' ';
  position: absolute;
  right: 11px;
  bottom: 0;
  left: 11px;
  border-bottom: 1px solid #f4f4f4;
}

.images-popup-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.images-popup-list:after {
  content: '';
  clear: both;
  display: table;
}

.images-popup-item {
  display: block;
  width: 20%;
  padding: 11px;
  float: left;
  cursor: move;
}

.images-popup-item-inner {
  width: 100%;
  padding-bottom: 60%;
  position: relative;
  text-align: center;
  border: 1px solid #d8dfe6;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.images-popup-item-inner .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -47px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 200ms ease-in-out;
}

.images-popup-item-inner:hover .btn {
  opacity: 1;
}

.images-popup-item-helper {
  z-index: 1;
}

.images-gallery-item.stacked img {
  width: 100%;
}

.images-gallery-item.grid.hero img {
  width: 100%;
}

.images-gallery-item.grid.thumb {
  width: 33.3333%;
  float: left;
}

.images-gallery-item.grid.thumb .images-gallery-item-inner {
  width: 100%;
  padding-bottom: 70%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.fake-masonry-wrapper .images-gallery-list.masonry .images-gallery-inner {
  column-count: 3;
  column-gap: 0;
}

.fake-masonry-wrapper .images-gallery-item.masonry {
  display: inline-block;
  vertical-align: top;
  break-inside: avoid;
}

.fake-slider-wrapper {
  position: relative;
}

.slider-prev,
.slider-next {
  display: block;
  width: 52px;
  height: 52px;
  position: absolute;
  top: 50%;
  margin-top: -26px;
  background-color: white;
  border: 0;
  border-radius: 50%;
  z-index: 1;
}

.slider-prev:after,
.slider-next:after {
  content: " ";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  border-top: 3px solid #444c5c;
  border-right: 3px solid #444c5c;
  transform-origin: center center;
}

.slider-prev {
  left: 15px;
  opacity: 0.5;
}

.slider-prev:after {
  transform: rotate(-135deg);
  margin-left: -5px;
}

.slider-next {
  right: 15px;
}

.slider-next:after {
  transform: rotate(45deg);
  margin-left: -11px;
}

.block-related-content .related-content-title {
  margin-right: 0;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
}

.block-related-content .related-content-title.empty {
  margin-bottom: 18px;
  background-color: #f7f9fa;
}

.related-content-title-wrapper {
  margin-bottom: 60px;
}

.related-content-title-wrapper h1, .related-content-title-wrapper h2, .related-content-title-wrapper h3, .related-content-title-wrapper h4, .related-content-title-wrapper h5, .related-content-title-wrapper h6 {
  margin-bottom: 25px;
  font-weight: 300;
}

.related-content-entry-wrapper {
  font-size: 15px;
  line-height: 26px;
}

.related-content-entry-wrapper.empty p {
  background-color: #f7f9fa;
}

.related-content-entry-wrapper.empty p:last-child {
  margin-bottom: 0;
}

.related-content-subtitle {
  margin-bottom: 23px;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.7;
}

.related-content-subtitle.empty {
  background-color: #f7f9fa;
}

.related-content-image-wrapper {
  position: relative;
}

.related-content-image-wrapper.empty {
  background: #f7f9fa;
}

.related-content-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.related-content-empty-message {
  padding: 20px 0 40px;
  font-size: 22px;
  text-align: center;
  z-index: 1;
}

.side-by-side .related-content-all-wrapper {
  padding-top: 25px;
  padding-bottom: 25px;
}

.block-related-content-grid .block-container {
  width: 100%;
  max-width: 1170px;
  padding: 0 15px;
  margin: 0 auto;
}

.block-related-content-grid .block-container:after {
  content: '';
  clear: both;
  display: table;
}

.block-related-content-grid .content-block-inner {
  padding: 100px 0 70px;
}

.block-related-content-grid .title-wrapper {
  text-align: center;
}

.block-related-content-grid .items-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.block-related-content-grid .item {
  width: 33.333333%;
  padding: 0 15px;
  margin-bottom: 30px;
}

.block-related-content-grid .item-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 2px solid rgba(var(--primaryColorRGB), .1);
  border-radius: 4px;
  overflow: hidden;
}

.block-related-content-grid .item-thumbnail {
  flex-shrink: 0;
  padding-top: 75%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.block-related-content-grid .item-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 30px 30px 0;
  color: var(--primaryColor);
}

.block-related-content-grid .item-content p {
  color: var(--primaryColor);
}

.block-related-content-grid .item-date {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 25px;
  opacity: .9;
}

.block-related-content-grid .item-title {
  margin-bottom: 15px;
}

.block-related-content-grid .item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  margin-top: auto;
  font-size: 16px;
  line-height: 25px;
  border-top: 1px solid rgba(var(--primaryColorRGB), .1);
}

.block-related-content-grid .view-all-wrapper {
  text-align: center;
}

.related-content-list .people-title h2 {
  margin-bottom: 25px;
}

.related-content-list.grid .related-content-items {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 25px;
  margin: 0 -15px;
}

.related-content-list.grid .related-content-items.empty {
  padding-top: 0;
}

.related-content-item.grid {
  padding: 0 15px 50px;
  flex: 0 0 33.3333%;
}

.related-content-item.grid .inner {
  min-height: 0;
}

.related-content-item.grid .related-content-entry-wrapper.center {
  text-align: center;
}

.related-content-item.grid .related-content-entry-wrapper.right {
  text-align: right;
}

.block-related-content-list .content-block-inner {
  padding: 100px 0;
}

.block-related-content-list .block-container {
  width: 100%;
  max-width: 1170px;
  padding: 0 15px;
  margin: 0 auto;
}

.block-related-content-list .block-container:after {
  content: '';
  clear: both;
  display: table;
}

.block-related-content-list .related-content-all-wrapper {
  padding-top: 15px;
}

.related-content-list.list {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.related-content-item.list {
  padding-bottom: 30px;
}

.related-content-item.list .inner {
  display: flex;
}

.related-content-item.list .related-content-image-col {
  flex: 0 0 260px;
  padding-right: 15px;
}

.related-content-item.list .related-content-image-wrapper {
  width: 100%;
  height: 100%;
}

.related-content-item.list .related-content-entry-wrapper {
  flex: 1 1 100%;
  padding-left: 15px;
}

.related-content-item.list .related-content-entry-wrapper.center {
  text-align: center;
}

.related-content-item.list .related-content-entry-wrapper.right {
  text-align: right;
}

.related-content-list.large-grid {
  padding: 100px 0;
}

.large-grid .related-content-items {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.large-grid .related-content-all-wrapper {
  padding: 0;
}

.large-grid .related-content-all-wrapper .related-content-button {
  padding: 0;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0;
  font-weight: normal;
  text-transform: none;
  color: var(--primaryColor);
  background-color: transparent !important;
}

.related-content-item.large-grid {
  width: 50%;
  flex-shrink: 0;
  padding: 0 30px;
  margin-bottom: 30px;
}

.related-content-item.large-grid .inner {
  padding: 0;
  border-radius: 4px;
  overflow: hidden;
}

.related-content-item.large-grid .related-content-image-wrapper {
  padding-top: 100%;
}

.related-content-item.large-grid .related-content-entry-wrapper {
  padding: 30px;
  text-align: center;
}

.related-content-item.large-grid .related-content-entry-wrapper p {
  display: none;
}

.related-content-item.large-grid .related-content-title {
  margin-bottom: 10px;
  font-size: 32px;
  line-height: 38px;
  font-weight: 300;
}

.related-content-item.large-grid .related-content-button {
  font-size: 16px;
  line-height: 25px;
  font-weight: normal;
  letter-spacing: 0;
  text-transform: none;
}

.block-related-content-tabs .content-block-inner {
  padding: 100px 0;
}

.related-content-tabs-buttons {
  margin: 16px -7px 40px -7px;
  text-align: center;
}

.related-content-tabs-buttons .tab {
  display: inline-block;
  padding: 0 25px;
  margin: 0 7px;
  font-size: 16px;
  line-height: 38px;
  color: var(--primaryColor);
  border: 2px solid rgba(var(--primaryColorRGB), .1);
  border-radius: 32px;
  cursor: pointer;
}

.related-content-tabs-buttons .tab:hover {
  color: rgba(var(--primaryColorRGB), .9);
}

.related-content-tabs-buttons .tab:first-child {
  border-color: var(--primaryColor);
}

.related-content-tabs-items {
  display: flex;
  flex-wrap: wrap;
}

.related-content-tabs-items .item {
  width: 50%;
  padding: 0 15px;
  margin-bottom: 30px;
  text-align: center;
}

.related-content-tabs-items .item.large {
  width: 100%;
}

.related-content-tabs-items .item.large .inside {
  padding-top: 49%;
}

.related-content-tabs-items .item .inside {
  position: relative;
  padding-top: 68%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.related-content-tabs-items .item .inside:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  background-color: black;
  opacity: .25;
}

.related-content-tabs-items .item .texts {
  width: 100%;
  padding: 0 15px;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  color: white;
}

.related-content-tabs-items .item .title {
  margin-bottom: 20px;
  font-size: 32px;
  line-height: 38px;
  font-weight: 300;
}

.related-content-tabs-items .item .description {
  font-size: 16px;
  line-height: 25px;
}

.related-content-tabs-items .item .arrow {
  width: 36px;
  height: 36px;
  margin: 60px auto 0;
  line-height: 32px;
  text-align: center;
  border: 2px solid white;
  border-radius: 50%;
  cursor: pointer;
}

.related-content-tabs-items .item .arrow i {
  margin-left: 2px;
}

.related-content-tab-view-all {
  margin-top: 30px;
  text-align: center;
}

.people-content .content-block-inner {
  padding: 100px 0 80px;
}

.people-content .block-container {
  width: 100%;
  max-width: 1170px;
  padding: 0 15px;
  margin: 0 auto;
}

.people-content .person-name {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 300;
}

.people-content .person-name.empty {
  margin-bottom: 22px;
  background-color: #f7f9fa;
}

.people-title h2 {
  margin-bottom: 35px;
  font-weight: 300;
}

.person-title {
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  color: #c12b2c;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.person-avatar {
  width: 100%;
  padding-bottom: 123%;
  background-color: #f7f9fa;
  border-radius: 3px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.person-footer {
  display: flex;
  padding: 15px 0 5px;
  border-top: 1px solid #d8dfe6;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
}

.person-footer .col {
  margin-right: 40px;
}

.person-footer .col:last-child {
  margin-right: 0;
  flex-grow: 1;
}

.person-footer .col:not(.socials) i {
  margin-right: 5px;
}

.person-footer a {
  color: #444c5c;
  text-decoration: none;
}

.person-footer .signature-social-wrapper {
  font-size: 16px;
}

.people-empty-message {
  padding-top: 20px;
  margin-bottom: 20px;
  font-size: 22px;
  text-align: center;
}

.people-content-grid .people-title {
  margin-bottom: 60px;
}

.people-content-grid .people-items {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.person.grid {
  flex: 0 0 25%;
  padding: 0 15px;
  margin-bottom: 30px;
  text-align: center;
}

.person.grid .person-avatar-wrapper {
  margin-bottom: 10px;
}

.person.grid .person-title {
  margin-bottom: 0;
}

.people-content-list .people-title {
  margin-bottom: 60px;
}

.person.list {
  margin-bottom: 30px;
}

.person.list .person-title {
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 24px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--primaryColor);
}

.person.list .person-inner {
  display: flex;
}

.person.list .person-avatar-wrapper {
  flex: 0 0 260px;
}

.person.list .person-content-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 5px 0 5px 30px;
}

.person.list .person-content-wrapper.empty p {
  background-color: #f7f9fa;
}

.person.list .person-bio {
  flex-grow: 1;
}

.person-bio {
  font-size: 16px;
  line-height: 32px;
}

.person-bio p {
  margin-bottom: 0;
}

.people-content-slider .content-block-inner {
  padding: 100px 0;
}

.people-content-slider .block-container {
  padding: 0;
  width: auto;
  max-width: none;
}

.people-content-slider .title-wrapper {
  margin-bottom: 60px;
  text-align: center;
}

.people-content-slider .items-wrapper-wrapper {
  overflow: hidden;
}

.people-content-slider .items-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 125%;
  position: relative;
  left: 50%;
  transform: translate(-50%);
}

.people-content-slider .item {
  width: 20%;
  flex-shrink: 0;
  padding: 0 15px;
}

.people-content-slider .item:first-child, .people-content-slider .item:last-child {
  opacity: .3;
}

.people-content-slider .avatar {
  padding-top: 100%;
  margin-bottom: 20px;
  background-color: rgba(var(--primaryColorRGB), .9);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 4px;
}

.people-content-slider .item-content {
  text-align: center;
}

.people-content-slider .item-position {
  margin-bottom: 15px;
}

.block-cta {
  color: #444c5c;
}

.block-cta .block-container {
  width: 100%;
  max-width: 1170px;
  padding: 0 15px;
  margin: 0 auto;
}

.block-cta .content-block-inner {
  padding: 100px 0;
}

.block-cta h1,
.block-cta h2,
.block-cta h3,
.block-cta h4,
.block-cta h5,
.block-cta h6,
.block-cta p {
  color: inherit;
}

.block-cta .editable-button-wrapper {
  padding-top: 0;
}

.block-cta.center {
  text-align: center;
}

.block-cta.center .input-with-button,
.block-cta.center .block-facebook-button {
  justify-content: center;
}

.block-cta.right {
  text-align: right;
}

.block-cta.right .input-with-button,
.block-cta.right .block-facebook-button {
  justify-content: flex-end;
}

.block-cta .input-with-button {
  margin-bottom: 16px;
}

.block-cta .block-facebook-button .button {
  padding: 14px 30px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  letter-spacing: 0.15em;
}

.block-cta .block-facebook-button .button .fa {
  font-size: 22px;
}

.block-cta .block-facebook-button .button .input {
  padding-top: 1px;
}

.block-cta .background-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.box-cta-wrapper {
  display: flex;
}

.box-cta-wrapper.center {
  justify-content: center;
}

.box-cta-wrapper.right {
  justify-content: flex-end;
}

.box-cta-wrapper .pws-box {
  max-width: 50%;
  flex: 0 0 50%;
  text-align: center;
}

.box-cta-wrapper .pws-box h2 {
  margin-bottom: 20px;
}

.box-cta-wrapper .pws-box p {
  margin-bottom: 20px;
}

.box-cta-wrapper .pws-box p:last-child {
  margin-bottom: 60px;
}

.block-cta-simple-cta .microcopy {
  margin-top: 16px;
}

.text-with-image-col.image {
  flex: 0 0 45%;
}

.text-with-image-col.text {
  padding: 30px 60px;
  flex: 0 0 55%;
}

.text-with-image-empty {
  width: 100%;
  padding-bottom: 65%;
  background-color: #f7f9fa;
}

.text-with-image-full-width .block-container {
  max-width: none;
}

.block-text-with-image.basic .block-container {
  display: flex;
  align-items: center;
}

.block-text-with-image.basic .block-container.container-width {
  width: 100%;
  max-width: 1170px;
  padding: 0 15px;
}

.block-text-with-image.basic.container-width.left .text-with-image-col.text {
  padding-right: 0;
}

.block-text-with-image.basic.container-width.right .text-with-image-col.text {
  padding-left: 0;
}

.block-text-with-image.basic.right .text-with-image-col.text {
  order: -1;
}

.text-image-grid-wrapper {
  width: 100%;
  display: flex;
  padding: 50px 15px;
  align-items: flex-start;
}

.text-image-grid-wrapper.container-width {
  padding: 50px 0;
}

.text-image-grid-item {
  width: 33.3333%;
  padding: 0 15px;
  flex: 0 0 33.3333%;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
}

.text-image-grid-item .editable-image-wrapper {
  margin-bottom: 25px;
}

.content-block-inner .text-image-grid-item h5 {
  margin-bottom: 10px;
}

.content-block-inner .text-image-grid-item h6 {
  margin-bottom: 7px;
}

.block-text-with-image.tabs:hover .tab-settings {
  opacity: 1;
}

.block-text-with-image.tabs .content-block-inner {
  padding: 100px 0;
}

.text-with-image-tabs {
  width: 100%;
}

.text-with-image-tabs .selected-tab {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 90px;
}

.text-with-image-tabs .selected-tab .editable-image-inner.empty {
  width: 300px;
}

.text-with-image-tabs .tab-settings {
  padding: 8px;
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translate(-50%);
  font-size: 14px;
  line-height: 17px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity .2s;
}

.text-with-image-tabs .tab-settings .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.text-with-image-tabs .editor {
  flex-grow: 1;
  padding-right: 30px;
}

.right .text-with-image-tabs .editor {
  padding-right: 0;
  padding-left: 30px;
  order: 1;
}

.text-with-image-tabs .editor p {
  opacity: .9;
}

.text-with-image-tabs .editable-image-wrapper {
  max-width: 45%;
  flex-shrink: 0;
}

.text-with-image-tabs .editable-image-wrapper:nth-child(2) {
  max-width: 100%;
}

.text-with-image-tabs .tab-buttons {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.text-with-image-tabs .tab-buttons:before {
  content: '';
  height: 4px;
  position: absolute;
  left: 15px;
  right: 15px;
  top: 0;
  background-color: var(--primaryColor);
  opacity: .1;
}

.text-with-image-tabs .tab {
  position: relative;
  padding: 30px 15px 0 15px;
  width: 25%;
  flex-shrink: 0;
}

@keyframes blinking-indicator {
  0% {
    opacity: .05;
  }
  50% {
    opacity: .15;
  }
  100% {
    opacity: .05;
  }
}

.text-with-image-tabs .tab.active:before, .text-with-image-tabs .tab:not(.active):hover:before {
  content: '';
  height: 4px;
  position: absolute;
  top: 0;
  left: 15px;
  right: 15px;
  background-color: var(--primaryColor);
}

.text-with-image-tabs .tab.active {
  position: relative;
}

.text-with-image-tabs .tab:hover .remove-tab {
  display: block;
}

.text-with-image-tabs .tab:not(.active):hover:before {
  animation: blinking-indicator 2s infinite linear;
}

.text-with-image-tabs .tab h3 {
  margin-bottom: 10px;
}

.text-with-image-tabs .tab p {
  opacity: .9;
}

.text-with-image-tabs .tab .editable-image-wrapper {
  width: 100%;
  margin-bottom: 20px;
}

.text-with-image-tabs .tab .editable-image-wrapper img {
  display: block;
  margin: 0 auto;
}

.text-with-image-tabs .tab .empty {
  height: 25px;
  transition: height .2s;
}

.text-with-image-tabs .tab .empty:hover {
  height: 100px;
}

.text-with-image-tabs .tab .manage-gallery-button {
  margin: 0;
  padding: 10px;
  width: 170px;
  transform: translate(-50%, -50%);
}

.text-with-image-tabs .clicker {
  border: none;
  background-color: transparent;
  width: calc(100% - 30px);
  height: 30px;
  position: absolute;
  z-index: 1;
  top: -13px;
  left: 15px;
  cursor: pointer;
}

.text-with-image-tabs .remove-tab {
  border: none;
  display: none;
  width: 30px;
  height: 30px;
  position: absolute;
  z-index: 2;
  right: 20px;
  top: 15px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.text-with-image-tabs .remove-tab:after {
  content: '';
  width: 12px;
  height: 3px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-6px, -1.5px);
  background-color: var(--primaryColor);
}

.text-with-image-tabs .tabs-plus {
  position: relative;
  border: none;
  background-color: transparent;
  width: 70px;
  height: 70px;
  align-self: center;
  cursor: pointer;
}

.text-with-image-tabs .tabs-plus:hover {
  opacity: .9;
}

.text-with-image-tabs .tabs-plus:before, .text-with-image-tabs .tabs-plus:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: var(--primaryColor);
}

.text-with-image-tabs .tabs-plus:before {
  width: 8px;
  height: 40px;
  transform: translate(-4px, -20px);
}

.text-with-image-tabs .tabs-plus:after {
  width: 40px;
  height: 8px;
  transform: translate(-20px, -4px);
}

.block-text-with-image.sideBySide .content-block-inner {
  padding: 100px 0;
}

.block-text-with-image.sideBySide .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.block-text-with-image.sideBySide .block-froala {
  flex-grow: 1;
  padding-right: 30px;
}

.block-text-with-image.sideBySide .block-froala h1 {
  margin-bottom: 20px;
}

.block-text-with-image.sideBySide .editable-image-wrapper {
  flex-shrink: 0;
  max-width: 45%;
}

.block-text-with-image.sideBySide .editable-image-inner.empty {
  width: 300px;
}

.block-text-with-image.sideBySide.right .block-froala {
  padding-right: 0;
  padding-left: 30px;
  order: 1;
}

.reviews-content .block-container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.reviews-content-carousel .content-block-inner {
  padding: 100px 0;
}

.reviews-content-slider .content-block-inner {
  padding: 100px 0;
}

.reviews-list {
  padding: 50px 0;
}

.reviews-list.grid .reviews-items {
  display: flex;
  margin: 0 -15px;
}

.reviews-list.grid .review-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px;
  border: 1px solid #d8dfe6;
  border-radius: 3px;
  box-shadow: 0 0 15px rgba(216, 223, 230, 0.25);
}

.reviews-list.grid .review-text {
  flex-grow: 1;
}

.reviews-list.list {
  max-width: 100%;
  margin: 0 auto;
}

.review.grid {
  flex: 0 0 33.333%;
  padding: 15px;
}

.review.grid .review-footer {
  padding-top: 25px;
}

.review.empty .review-inner {
  height: 400px;
  border: 0;
  background-color: #f7f9fa;
  box-shadow: none;
}

.review.list {
  margin-bottom: 80px;
}

.review.list:last-child {
  margin-bottom: 0;
}

.review.list .review-headline {
  margin-bottom: 15px;
}

.review.list .review-footer {
  padding-top: 20px;
  border-top: 1px solid #f4f4f4;
}

.review.list.empty {
  margin-top: 30px;
}

.review.list.empty .review-inner {
  height: 200px;
}

.review-headline {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
}

.review-text {
  font-size: 18px;
  line-height: 30px;
}

.reviews-empty-message {
  text-align: center;
}

.reviews-carousel__title {
  margin-bottom: 60px;
  text-align: center;
}

.reviews-carousel__wrapper {
  overflow: hidden;
}

.reviews-carousel__reviews {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0 -1000px;
}

.reviews-carousel__single-review {
  width: 554px;
  margin: 0 15px;
  padding: 50px 50px 30px;
  transition: all 500ms ease;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.reviews-carousel__single-review h5 {
  display: inline-block;
}

.reviews-carousel__single-review p {
  display: inline;
}

.reviews-carousel__single-review h5, .reviews-carousel__single-review p, .reviews-carousel__single-review img, .reviews-carousel__single-review a {
  transition: all 500ms ease;
}

.reviews-carousel__single-review img {
  max-width: 250px;
}

.reviews-carousel__single-review.hidden:not(:hover) {
  opacity: 0.5;
}

.reviews-carousel__single-review.hidden:not(:hover) p, .reviews-carousel__single-review.hidden:not(:hover) h5, .reviews-carousel__single-review.hidden:not(:hover) a {
  opacity: 0.5;
  color: transparent;
  background-color: var(--primaryColor);
}

.reviews-carousel__single-review.hidden:not(:hover) img {
  opacity: 0;
}

.reviews-carousel__single-review__content {
  font-size: 16px;
  line-height: 1.6em;
}

.reviews-carousel__single-review__img {
  margin-top: 15px;
}

.reviews-content-slider .reviews-slider__slider__top {
  display: flex;
  align-items: flex-start;
  flex-flow: row wrap;
  justify-content: center;
  margin-bottom: 30px;
}

.reviews-content-slider .reviews-slider__slider__top h5 {
  margin: 0;
}

.reviews-content-slider .reviews-slider__slider__bottom {
  text-align: center;
}

.reviews-content-slider .reviews-slider__top-slide {
  width: 200px;
  padding: 10px;
  margin-bottom: 30px;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  text-align: center;
}

.reviews-content-slider .reviews-slider__top-slide:not(.active) {
  opacity: 0.5;
}

.reviews-content-slider .reviews-slider__bottom-slide {
  width: 66.6666%;
  margin: 0 auto;
}

.block-embed .content-block-inner {
  padding: 50px 0;
}

.block-embed .block-container,
.block-embed .block-container-full {
  width: 100%;
}

.block-embed .block-container {
  max-width: 1170px;
  padding: 0 15px;
}

.block-embed .embed-code {
  display: flex;
  justify-content: center;
}

.block-embed .embed-code iframe {
  display: block;
}

.block-embed .embed-code.empty {
  height: 300px;
  position: relative;
  background-color: #f7f9fa;
}

.block-embed .embed-code.empty:after {
  content: "</>";
  width: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -40px;
  margin-top: -40px;
  text-align: center;
  font-size: 80px;
  line-height: 80px;
  opacity: 0.1;
}

.block-embed .embed-code.video .inner {
  width: 100%;
}

.block-embed .embed-code.video .video-responsive-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}

.block-embed .embed-code.video .video-responsive-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.block-embed .embed-code.map .inner {
  width: 100%;
}

.block-embed-facebook .fb-post:before {
  display: none;
}

.block-embed-map iframe {
  width: 100%;
}

.content-block-inner h1, .content-block-inner h2, .content-block-inner h3, .content-block-inner h4, .content-block-inner h5, .content-block-inner h6 {
  display: block;
  margin-bottom: 20px;
}

.content-block-inner h1,
.content-block-inner h2 {
  line-height: 1.12;
}

@media (max-width: 991px) {
  .content-block-inner h1,
  .content-block-inner h2 {
    font-size: 36px;
    line-height: 42px;
  }
}

.content-block-inner h1 {
  font-size: var(--h1FontSize, 52px);
  font-weight: var(--h1FontWeight, 300);
}

.content-block-inner h2 {
  font-size: var(--h2FontSize, 52px);
  font-weight: var(--h2FontWeight, 300);
}

.content-block-inner h3 {
  font-size: var(--h3FontSize, 36px);
  font-weight: var(--h3FontWeight, 300);
  line-height: 1.17;
}

.content-block-inner h4 {
  font-size: var(--h4FontSize, 32px);
  font-weight: var(--h4FontWeight, 300);
  line-height: 1.19;
}

.content-block-inner h5 {
  font-size: var(--h5FontSize, 24px);
  font-weight: var(--h5FontWeight, 300);
  line-height: 1.5;
}

.content-block-inner h6 {
  font-size: var(--h6FontSize, 20px);
  font-weight: var(--h6FontWeight, 300);
  line-height: 1.5;
}

.editable-link-inner {
  display: inline-block;
  padding: 8px 15px;
  position: relative;
  vertical-align: top;
}

.editable-link {
  position: relative;
  z-index: 1;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.block-facebook-button {
  display: flex;
  justify-content: flex-start;
}

.block-facebook-button .wrapper {
  padding: 15px 28px;
  border-radius: 9px;
  background-color: rgba(255, 255, 255, 0.5);
}

.block-facebook-button .button {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 12px 18px;
  font-family: var(--fontSecondary);
  font-size: 16px;
  font-weight: bold;
  line-height: 20px;
  color: white;
  text-transform: uppercase;
  border-radius: 3px;
  background: #39579b;
}

.block-facebook-button .fa {
  padding-right: 10px;
  font-size: 18px;
}

.block-facebook-button .input {
  flex-grow: 1;
}

.video-button {
  display: inline-block;
  padding: 13px 20px;
  position: relative;
  vertical-align: top;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  white-space: nowrap;
}

.video-button-wrapper,
.video-button-text {
  display: inline-block;
  vertical-align: top;
}

.video-button-wrapper {
  padding-top: 10px;
  margin-right: 10px;
}

.video-button-text {
  position: relative;
  z-index: 1;
}

.video-icon {
  display: inline-block;
  margin-right: 10px;
  vertical-align: top;
}

.video-icon svg {
  display: block;
}

.bg-video-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.bg-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.block-froala .big-button,
.block-froala .small-button {
  display: inline-block;
  font-size: 16px;
  line-height: 20px;
  color: white;
  text-decoration: none;
  border-radius: var(--buttonBorderRadius);
  background-color: var(--primaryColor);
  transition: opacity 300ms ease-in-out;
}

.block-froala .big-button:hover,
.block-froala .small-button:hover {
  opacity: .8;
}

.block-froala .small-button {
  padding: 10px 20px;
}

.block-froala .big-button {
  padding: 16px 32px;
}

.block-froala .ghost-button {
  display: inline-block;
  padding: 10px 20px;
  margin: 0 3px;
  font-size: 16px;
  line-height: 24px;
  color: var(--buttonsColor);
  text-decoration: none;
  border-radius: 6px;
  background-color: transparent;
  cursor: pointer;
  transition: all .2s;
}

.block-froala .ghost-button:hover {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15), inset 0 1px 1px 0 rgba(0, 0, 0, 0.05);
}

.block-froala .ghost-button:focus {
  background-color: rgba(var(--buttonsColorRgb, var(--primaryColorRgb)), 0.05);
  box-shadow: none;
}

.block-manage-button {
  display: inline-block;
  min-width: 250px;
  padding: 20px;
  vertical-align: top;
  font-size: 17px;
  line-height: 20px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  border: 0;
  border-radius: 5px;
  background-color: #81c835;
  cursor: pointer;
}

.page-preview-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
}

.page-preview-outer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
}

.page-preview-inner {
  display: flex;
  padding-top: 80px;
  height: 100%;
  position: relative;
  justify-content: center;
  z-index: 1;
}

.page-preview {
  height: 100%;
  background-color: white;
}

.page-preview-iframe {
  height: 100%;
}

/* HEADER */
.preview-header {
  display: flex;
  padding: 0 30px;
  width: 100%;
  height: 80px;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  background-color: white;
  border-bottom: 1px solid #d8dfe6;
  z-index: 2;
}

.preview-header h3 {
  flex-grow: 1;
}

.preview-menu {
  flex-grow: 0;
}

.preview-menu .btn {
  margin-left: 15px;
}

.preview-device-button {
  padding: 8px 9px;
  margin-left: 10px;
  vertical-align: top;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}

.preview-device-button:hover path,
.preview-device-button:hover rect,
.preview-device-button:hover circle {
  fill: #444c5c;
}

.preview-device-button.active path,
.preview-device-button.active rect,
.preview-device-button.active circle {
  fill: #c12b2c;
}

.preview-error {
  padding: 30px 0;
  width: 100vw;
  font-size: 18px;
  text-align: center;
}

.create-content-already-editing img {
  width: 40px;
  height: auto;
  margin: -4px 4px 0;
  border-radius: 2px;
}

.input-form-row {
  display: flex;
  align-items: center;
}

.input-form-row .input-label {
  flex-grow: 1;
  width: 100%;
  max-width: 184px;
  font-family: Roboto,sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2em;
}

.input-error-message {
  display: block;
  padding-top: 3px;
  font-size: 14px;
  line-height: 20px;
  color: #e64545;
}

.textarea-form-row {
  align-items: flex-start;
}

.textarea-form-row .textarea-label-description {
  margin-top: 2px;
  font-size: 12px;
  line-height: 17px;
  color: #9d9d9d;
}

.textarea-form-row .textarea-label-description a {
  text-decoration: none;
}

.control-upload-button {
  display: inline-block;
  padding: 10px 18px;
  font-size: 14px;
  line-height: 18px;
  color: white;
  background-color: #c12b2c;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color .2s;
}

.control-upload-button.dragging {
  background-color: #00a4ca;
}

.control-upload-button i {
  margin-right: 10px;
  font-size: 16px;
  line-height: 16px;
}

.control-upload-button-error {
  margin-bottom: 5px;
  color: #e64545;
}

.control-upload-button-remove-item {
  padding: 0;
  width: 24px;
  height: 24px;
  margin-left: 10px;
  vertical-align: middle;
  box-shadow: none;
}

.actions {
  position: relative;
}

.actions .spinner-wrapper {
  padding: 9px 10px 0 0;
  position: absolute;
  right: 100%;
  top: 0;
}

.actions .spinner {
  margin: 0;
  font-size: 6px;
}

.actions-wrapper {
  min-width: 140px;
  position: relative;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .actions-wrapper {
    display: inline-block;
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 767px) {
  .actions-wrapper {
    max-width: none;
  }
}

.action-button {
  display: block;
  width: 100%;
  padding: 7px 10px;
  border: 1px solid #dfe7eb;
  border-bottom: none;
  background: transparent;
  color: #838384;
  font-size: 13px;
  line-height: 20px;
  font-family: "Roboto", sans-serif;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.action-button:hover {
  color: #444c5c;
}

.action-trigger-button {
  position: relative;
  padding: 7px 10px 5px;
  border-bottom: 1px solid #dfe7eb;
  border-radius: 5px;
  text-transform: uppercase;
  line-height: 22px;
}

.action-trigger-button .custom-icon {
  width: 16px;
  height: 21px;
  margin-top: -1px;
  margin-right: 8px;
}

.action-trigger-button:after {
  content: " ";
  display: block;
  position: absolute;
  top: 10px;
  right: 13px;
  width: 10px;
  height: 10px;
  border: 1px solid #838384;
  border-top: none;
  border-left: none;
  transform-origin: center center;
  transform: rotate(45deg);
}

.actions-trigger.opened .action-trigger-button {
  border-radius: 5px 5px 0 0;
}

.actions-trigger.opened .action-trigger-button:after {
  top: 15px;
  transform: rotate(-135deg);
}

.actions-list {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: white;
  z-index: 1;
}

.actions-list li:first-child .action-button {
  border-top: none;
}

.actions-list li:last-child .action-button {
  border-bottom: 1px solid #dfe7eb;
  border-radius: 0 0 5px 5px;
}

.AuthorAvatar {
  position: relative;
  width: 57px;
  height: 57px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 28px;
  line-height: 57px;
  text-align: center;
  color: white;
  border-radius: 7px;
  background-color: rgba(216, 223, 230, 0.8);
  z-index: 1;
  overflow: hidden;
}

.AuthorAvatar.empty {
  color: rgba(255, 255, 255, 0.75);
}

.AuthorAvatar.loading {
  padding: 9px;
  border: 1px solid #d8dfe6;
  background-color: #fafafa;
}

.AuthorAvatar img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
}

@media (max-width: 1199px) {
  .AuthorAvatar {
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 40px;
  }
}

@media (max-width: 767px) {
  .AuthorAvatar {
    display: inline-block;
  }
}

.author-avatar-colors-row:first-child .AuthorAvatar:not(.empty) {
  background-color: #ff5535;
}

.author-avatar-colors-row:nth-child(2) .AuthorAvatar:not(.empty) {
  background-color: #1b92ce;
}

.author-avatar-colors-row:nth-child(3) .AuthorAvatar:not(.empty) {
  background-color: #46af3d;
}

.author-avatar-colors-row:nth-child(4) .AuthorAvatar:not(.empty) {
  background-color: #d80000;
}

.author-avatar-colors-row:nth-child(5) .AuthorAvatar:not(.empty) {
  background-color: #f4c111;
}

.author-avatar-colors-row:nth-child(6) .AuthorAvatar:not(.empty) {
  background-color: #646078;
}

.author-avatar-colors-row:nth-child(7) .AuthorAvatar:not(.empty) {
  background-color: #3f20af;
}

.author-avatar-colors-row:nth-child(8) .AuthorAvatar:not(.empty) {
  background-color: #df307a;
}

.author-avatar-colors-row:nth-child(9) .AuthorAvatar:not(.empty) {
  background-color: #38bd92;
}

.author-avatar-colors-row:nth-child(10) .AuthorAvatar:not(.empty) {
  background-color: #f68d11;
}

.global-autocomplete {
  position: relative;
}

.ResultsItem {
  border-bottom: 1px solid #f4f4f4;
  cursor: pointer;
}

.ResultsItem:hover {
  background-color: #f7f9fa;
}

.ResultsItem.loading {
  opacity: .5;
}

.ResultsItem button.ResultsItem__Button {
  width: 100%;
  height: 100%;
  padding: 0 20px;
  text-align: left;
}

.global-autocomplete-dropdown {
  width: calc(100% - 105px);
  max-width: 400px;
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 105px;
  border-color: #d8dfe6;
  background-color: #fff;
  box-shadow: 1px 4px 10px rgba(0, 0, 0, 0.15);
}

.global-autocomplete-dropdown ul {
  padding: 0 14px 0 0;
  margin: 0;
  list-style-type: none;
}

.global-autocomplete-dropdown div.custom-scrollbar-wrapper {
  right: 2px;
}

.Badge {
  display: inline-block;
  padding: 0 10px;
  vertical-align: top;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 40px;
  background-color: #8996a2;
}

.Badge:not(:last-of-type) {
  margin-right: 10px;
}

.Badge:hover {
  color: white;
  text-decoration: none;
}

.Badge.badge-drafts, .Badge.badge-draft {
  color: #8996a2;
  background-color: #f3f4f6;
}

.Badge.badge-sent, .Badge.badge-published, .Badge.badge-live {
  background-color: #81c835;
}

.Badge.badge-scheduled, .Badge.badge-sending {
  color: #ff9c00;
  background-color: #fff5e5;
}

.Badge.badge-processing, .Badge.badge-paused {
  color: #186ca0;
  background-color: #e5f5ff;
}

.Badge.badge-completed {
  color: white;
  background-color: #444c5c;
}

.Badge.badge-hidden {
  background-color: #c12b2c;
}

.two-cols-section .box-with-nav-content {
  padding-left: 37px;
}

@media (max-width: 1440px) {
  .two-cols-section .box-with-nav-content {
    padding-left: 20px;
  }
}

@media (max-width: 991px) {
  .two-cols-section .box-with-nav-content {
    padding: 50px 0 100px;
  }
}

@media (max-width: 767px) {
  .two-cols-section .box-with-nav-content {
    padding: 40px 0 80px;
  }
}

@media (max-width: 480px) {
  .two-cols-section .box-with-nav-content {
    padding: 30px 0 80px;
  }
}

.btn {
  display: inline-block;
  padding: 8px 14px 7px 13px;
  position: relative;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  line-height: 24px;
  color: #444c5c;
  text-decoration: none;
  letter-spacing: .01em;
  text-transform: uppercase;
  border: 1px solid #c8c8c8;
  border-radius: 4px;
  cursor: pointer;
}

@media (max-width: 767px) {
  .btn {
    padding: 9px 15px 6px;
    font-size: 15px;
  }
}

.btn i:not(.fa):not(.fas):not(.fal):not(.fab):not(.custom-icon) {
  display: inline-block;
  margin-top: -1px;
  margin-right: 3px;
  vertical-align: top;
  font-size: 24px;
  font-style: normal;
  line-height: 24px;
}

.btn .custom-icon {
  height: 23px;
  margin-right: 5px;
}

.btn .custom-icon.chevron-left, .btn .custom-icon.chevron-right, .btn .custom-icon.chevron-right-white {
  width: 8px;
}

.btn .custom-icon.right {
  margin-right: 0;
  margin-left: 5px;
}

.btn span {
  display: inline-block;
  vertical-align: top;
  line-height: inherit;
}

.btn:focus, .btn:active {
  outline: none;
}

.btn.loading {
  color: transparent;
}

.btn.loading i {
  opacity: 0;
}

.btn.loading:hover {
  color: transparent;
}

.btn.loading .button-spinner {
  opacity: .3;
}

.btn:disabled {
  color: rgba(68, 76, 92, 0.5);
  border-color: rgba(200, 200, 200, 0.5);
  cursor: not-allowed;
}

.btn:hover .button-tooltip {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
}

.btn-big {
  padding: 12px 25px 9px;
  font-size: 18px;
  font-weight: 400;
}

@media (max-width: 767px) {
  .btn-big {
    padding: 10px 15px 7px;
    font-size: 16px;
  }
}

.btn-filled {
  color: white;
  border-color: transparent;
  background-color: #c12b2c;
}

.btn-filled:focus, .btn-filled:hover {
  color: white;
}

.btn-filled.grey {
  border-color: #b5b5b5;
  background-color: #b5b5b5;
}

.btn-filled.loading {
  color: transparent;
}

.btn-filled:disabled {
  color: rgba(255, 255, 255, 0.5);
  border-color: transparent;
  background-color: rgba(193, 43, 44, 0.5);
  cursor: not-allowed;
}

.btn-outline {
  color: #838384;
  border-color: #c8c8c8;
  background-color: white;
}

.btn-outline .button-spinner {
  border: 0.2em solid #c8c8c8;
  border-left-color: #838384;
}

.btn-close {
  padding: 7px 10px 6px 8px;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  color: #838384;
  text-transform: none;
  border-color: #c8c8c8;
  background-color: white;
}

.btn-close-icon {
  width: 24px;
  height: 24px;
  position: relative;
  top: -1px;
  margin-right: 8px;
  vertical-align: middle;
}

.btn-close-icon:after, .btn-close-icon:before {
  content: '';
  display: block;
  width: 10px;
  height: 1px;
  position: absolute;
  top: 12px;
  right: 7px;
  transform: rotate(45deg);
  transform-origin: center center;
  background-color: #9d9d9d;
}

.btn-close-icon:after {
  transform: rotate(-45deg);
}

.btn-close .button-spinner {
  border: 0.2em solid #c8c8c8;
  border-left-color: #838384;
}

.button-link {
  padding: 0;
  background-color: transparent;
  border: 0;
  text-decoration: underline;
  color: #c12b2c;
  font-size: inherit;
  font-weight: inherit;
  cursor: pointer;
}

.checkbox-wrapper .checkbox,
.checkbox-wrapper .simple-checkbox {
  display: none;
}

.checkbox-wrapper .checkbox + label {
  display: inline-block;
  position: relative;
  width: 55px;
  height: 25px;
  background-color: #dfe7eb;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color .2s ease-in-out;
}

.checkbox-wrapper .checkbox + label .icon {
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  top: 4px;
  left: 6px;
  background-color: white;
  border-radius: 50%;
  transition: all .2s ease-in-out;
}

.checkbox-wrapper .checkbox.checked + label {
  background-color: #c12b2c;
}

.checkbox-wrapper .checkbox.checked + label .icon {
  left: 34px;
}

.checkbox-wrapper .simple-checkbox {
  font-size: 18px;
}

.checkbox-wrapper .simple-checkbox + label {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
}

.checkbox-wrapper .simple-checkbox + label .icon {
  display: inline-block;
  width: 27px;
  height: 27px;
  vertical-align: top;
  position: relative;
  margin-right: 10px;
  border: 2px solid #d8dfe6;
  border-radius: 3px;
  background-color: white;
  text-align: center;
  transition: background-color .2s ease-in-out;
}

.checkbox-wrapper .simple-checkbox + label .icon i {
  display: inline-block;
  vertical-align: top;
  line-height: 23px;
  height: 23px;
}

.checkbox-wrapper .simple-checkbox + label .icon svg {
  display: inline-block;
  vertical-align: top;
  margin-top: 6px;
}

.checkbox-wrapper .simple-checkbox + label .checkbox-label {
  display: inline-block;
  vertical-align: top;
  font-size: 1em;
  line-height: 27px;
}

.clickable-label {
  display: inline-block;
  padding: 0 39px 0 14px;
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 32px;
  color: #fff;
  border-radius: 22.5px;
  background-color: #c12b2c;
  cursor: pointer;
}

.clickable-label:before, .clickable-label:after {
  content: " ";
  display: block;
  width: 14px;
  height: 2px;
  position: absolute;
  top: 15px;
  right: 14px;
  transform-origin: center center;
  background-color: #fff;
}

.clickable-label:before {
  transform: rotate(45deg);
}

.clickable-label:after {
  transform: rotate(-45deg);
}

.clickable-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s;
}

.clickable-overlay.active {
  opacity: .7;
  visibility: visible;
}

.colorpicker-simple-colors {
  padding: 10px 0 0;
  margin: 0;
  list-style-type: none;
}

.colorpicker-simple-color {
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 11px;
  vertical-align: top;
}

.colorpicker-simple-button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
}

.colorpicker-simple-input-wrapper {
  display: flex;
  width: 235px;
  position: relative;
  z-index: 1;
  border: 1px solid #d8dfe6;
  border-radius: 5px;
  overflow: hidden;
}

.colorpicker-simple-label {
  display: block;
  width: 35px;
  line-height: 40px;
  text-align: center;
  background-color: #f7f9fa;
}

.colorpicker-simple-input {
  flex: 0 0 200px;
  width: 200px;
}

.badges-field-wrapper .no-results {
  margin-bottom: 20px;
}

.badges-field-header {
  position: relative;
}

.badges-field-header .spinner-wrapper {
  position: absolute;
  top: 12px;
  left: -30px;
}

.badges-field-header .spinner {
  margin: 0;
  font-size: 6px;
}

.badges-field.openable:not(.opened) {
  overflow: hidden;
  height: 80px;
}

.badges-field-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #d8dfe6;
}

.badges-field-search {
  flex: 1 1 100%;
  padding-left: 30px;
  position: relative;
}

.badges-field-search input {
  width: 100%;
}

.badges-field-search .svg-icon {
  position: absolute;
  top: 12px;
  left: 3px;
}

.badges-field-search .svg-icon svg {
  width: 18px;
  height: 18px;
}

.badges-field-select-all {
  white-space: nowrap;
}

.badges-field-select-all .checkbox-wrapper {
  font-size: 14px;
  line-height: 22px;
}

.badges-field-select-all .checkbox-wrapper .icon {
  width: 22px;
  height: 22px;
}

.badges-field-select-all .checkbox-wrapper .icon svg {
  width: 14px;
  height: auto;
  margin-top: 5px;
}

.badges-field-select-all .checkbox-wrapper .checkbox-label {
  line-height: 22px;
}

.checkbox-field .description {
  font-weight: normal;
  line-height: normal;
}

.page-settings-checkbox-wrapper {
  flex-grow: 0;
  padding-right: 0;
}

.colorpicker-dropdown-color {
  flex: 0 0 32px;
  margin: 3px;
}

.colorpicker-dropdown-button {
  display: block;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
}

.colorpicker-dropdown-input-outer {
  padding-bottom: 5px;
  position: relative;
}

.colorpicker-dropdown-input-outer .input-wrapper {
  position: relative;
}

.colorpicker-dropdown-dropdown {
  padding: 10px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: white;
  border: 1px solid #d8dfe6;
  border-radius: 4px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.colorpicker-dropdown-input-wrapper {
  display: flex;
  padding-left: 45px;
}

.colorpicker-dropdown-prefix {
  line-height: 46px;
}

.colorpicker-dropdown-colors {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.colorpicker-dropdown-preview {
  width: 19px;
  height: 19px;
  position: absolute;
  left: 13px;
  top: 15px;
  border-radius: 3px;
  background-color: #d8dfe6;
}

.colorpicker-dropdown-input {
  padding-left: 2px;
}

.datepicker-control-trigger {
  padding: 10px;
  border: 1px solid #d8dfe6;
  border-radius: 5px;
  line-height: 26px;
  cursor: pointer;
}

.invalid .datepicker-control-trigger {
  border-color: #e64545;
}

.datepicker-control-trigger span {
  display: inline-block;
  vertical-align: top;
}

.datepicker-control-trigger .date {
  margin-right: 20px;
}

.datepicker-control-trigger .fa {
  margin-right: 10px;
  font-size: 20px;
  color: #9d9d9d;
}

.datepicker-control-wrapper {
  position: relative;
}

.datepicker-control-wrapper:focus, .datepicker-control-wrapper:active {
  outline: 0;
}

.datepicker-control-popup {
  display: flex;
  width: 450px;
  padding: 10px;
  position: absolute;
  top: 100%;
  margin-top: 3px;
  background-color: white;
  border: 1px solid #d8dfe6;
  border-radius: 5px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.datepicker-control-popup .date-picker {
  max-width: 260px;
  flex: 0 0 260px;
  margin-right: 40px;
}

.datepicker-control-popup .time-picker {
  flex: 1 1 auto;
}

.multiple-choices-item {
  padding: 4px 20px;
  font-size: 14px;
  line-height: 24px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.multiple-choices-item.active {
  color: white;
  background-color: #c12b2c;
}

.multiple-choices-item.active svg path {
  fill: white;
}

.multiple-choices-item svg {
  margin-right: 5px;
}

.multiple-choices-item svg path {
  fill: #9d9d9d;
}

.control-multiple-choice {
  display: inline-flex;
  align-items: center;
  background-color: #f9f9f9;
  border-radius: 4px;
  overflow: hidden;
}

.radio-button {
  display: block;
  width: 100%;
  padding: 15px 20px;
  position: relative;
  background-color: transparent;
  border: 1px solid #d8dfe6;
  line-height: 25px;
  font-size: inherit;
  white-space: nowrap;
  color: #9d9d9d;
  font-weight: 600;
  transition: border 200ms ease-in-out, color 200ms ease-in-out;
  cursor: pointer;
}

.horizontal .radio-button {
  min-width: 170px;
  text-align: center;
}

.vertical .radio-button {
  text-align: left;
}

.simple .radio-button {
  padding: 5px 20px;
  min-width: 0;
  border: 0;
  border-right: 1px solid #c8c8c8;
  background-color: white;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}

.simple .radio-button:hover {
  z-index: auto;
  border-color: #bdbdbd;
}

.radio-button span {
  display: flex;
  align-items: center;
}

.radio-button:hover {
  border-color: #9d9d9d;
  color: #444c5c;
}

.active .radio-button {
  position: relative;
  z-index: 1;
  border-color: #c12b2c;
  color: #c12b2c;
}

.simple .active .radio-button {
  border-color: #c8c8c8;
  z-index: auto;
}

.active .radio-button svg path {
  fill: #c12b2c;
}

.radio-button img {
  display: inline-block;
  margin-right: 10px;
}

.radio-button .svg-icon {
  margin-left: -3px;
  margin-right: 8px;
  line-height: 1px;
}

.radio-button svg path {
  fill: #9d9d9d;
}

.vertical .radio-button-item {
  margin-bottom: -1px;
}

.vertical .radio-button-item:first-child .radio-button {
  border-radius: 5px 5px 0 0;
}

.vertical .radio-button-item:last-child {
  margin-bottom: 0;
}

.vertical .radio-button-item:last-child .radio-button {
  border-radius: 0 0 5px 5px;
}

.horizontal .radio-button-item {
  margin-left: -1px;
}

.horizontal .radio-button-item:first-child {
  margin-left: 0;
}

.horizontal .radio-button-item:first-child .radio-button {
  border-radius: 5px 0 0 5px;
}

.horizontal .radio-button-item:last-child .radio-button {
  border-radius: 0 5px 5px 0;
}

.simple .radio-button-item {
  margin-left: 0;
}

.simple .radio-button-item:last-child .radio-button {
  border-right: 0;
}

.radio-buttons-list {
  list-style-type: none;
  padding: 0;
  display: flex;
  margin: 0;
  font-size: 14px;
  line-height: 55px;
}

.vertical .radio-buttons-list {
  flex-direction: column;
}

.DropzoneErrors {
  padding-bottom: 6px;
  font-size: 14px;
  color: #e64545;
}

.ProcessingIndicator {
  padding: 30px 10px;
  font-size: 12px;
  line-height: 22px;
  text-align: center;
  text-transform: uppercase;
  border: 1px dashed #d8dfe6;
}

.ProcessingIndicator .text {
  display: inline-block;
  margin-left: 10px;
  vertical-align: top;
}

.ProcessingIndicator__Spinner {
  display: inline-block;
  position: static;
  margin: 3px 0 0 0;
  border-color: #c12b2c;
  border-top-color: white;
  opacity: 1;
}

.UploadClickLayer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.UploadClickLayer__visually-hidden {
  width: .1px;
  height: .1px;
  position: absolute;
  z-index: -1;
  background-color: transparent;
  opacity: 0;
  overflow: hidden;
}

.Upload {
  position: relative;
}

.Upload .Upload__DeleteButton {
  position: absolute;
  z-index: 1;
  right: 12px;
  bottom: 12px;
}

.Upload__full-width {
  width: 100%;
}

.Upload.input-form-row {
  flex-wrap: wrap;
}

.Upload.input-form-row .DropzoneErrors {
  order: 1;
  position: relative;
  z-index: 1;
  margin-top: 30px;
}

.create-filters .header-nav-dropdown .dropdown-item.active .inner {
  padding-top: 11px;
}

.custom-scrollbar-wrapper {
  top: 10px;
  right: 0;
  bottom: 10px;
}

.CustomScrollbarNoLib {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.CustomScrollbarNoLib__inner {
  height: 100%;
  padding-right: 45px;
  margin-right: -30px;
  overflow: auto;
}

.CustomScrollbarNoLib__scrollbar {
  width: 5px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.3);
}

.CustomScrollbarNoLib__scrollbar__indicator {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20%;
  background-color: rgba(128, 128, 128, 0.8);
  will-change: top;
}

.date-picker .switcher {
  position: relative;
  line-height: 30px;
  text-align: center;
}

.date-picker .switcher button {
  width: 20px;
  height: 100%;
  padding: 0;
  position: absolute;
  top: 0;
  font-size: 18px;
  border: none;
  outline: none !important;
  background-color: transparent;
  cursor: pointer;
}

.date-picker .switcher .prev {
  left: 0;
}

.date-picker .switcher .next {
  right: 0;
}

.date-picker .grid-header {
  display: flex;
  margin-top: 10px;
}

.date-picker .grid-header,
.date-picker .week {
  height: 26px;
}

.date-picker .grid-header:after,
.date-picker .week:after {
  content: '';
  clear: both;
  display: table;
}

.date-picker .grid {
  display: flex;
  flex-wrap: wrap;
}

.date-picker .grid .day {
  cursor: pointer;
}

.date-picker .grid .day:hover {
  color: #c12b2c;
}

.date-picker .day {
  width: 14.28571%;
  height: 100%;
  padding: 0;
  font-size: inherit;
  line-height: 24px;
  text-align: center;
  border: none;
}

.date-picker .selected {
  color: #c12b2c;
  border: 1px solid #153a57;
}

.DeleteButton {
  width: 44px;
  height: 44px;
  padding: 10px;
  font-size: 24px;
  border: 0;
  border-radius: 5px;
  background-color: white;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.regular-dropdown {
  position: relative;
  width: 180px;
  height: 46px;
}

@media (max-width: 991px) {
  .regular-dropdown {
    display: inline-block;
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 767px) {
  .regular-dropdown {
    max-width: none;
  }
}

.regular-dropdown.opened {
  z-index: 10;
}

.regular-dropdown li.active.arrow:after {
  position: absolute;
  top: 15px;
  right: 20px;
  display: block;
  width: 10px;
  height: 10px;
  content: " ";
  transform: rotate(135deg);
  pointer-events: none;
  border-top: 1px solid #9d9d9d;
  border-right: 1px solid #9d9d9d;
}

.regular-dropdown li.active:not(.arrow) {
  text-align: center;
}

.regular-dropdown.opened ul {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.regular-dropdown.opened li.active:after {
  top: 20px;
  transform: rotate(-45deg);
}

.regular-dropdown-list {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none;
  user-select: none;
  text-transform: uppercase;
  background-color: white;
  font-weight: 500;
}

.regular-dropdown-list a, .regular-dropdown-list .inner {
  display: block;
  padding: 10px 40px;
  line-height: 26px;
}

.regular-dropdown-list a {
  color: #444c5c;
}

.regular-dropdown-list .text {
  display: inline-block;
  vertical-align: top;
}

.regular-dropdown-list i {
  margin-right: 12px;
}

.regular-dropdown-list li path {
  fill: #444c5c;
}

.regular-dropdown-list li:not(.active):hover {
  color: white;
  background-color: #c12b2c;
}

.regular-dropdown-list li:not(.active):hover a {
  color: white;
}

.regular-dropdown-list li:not(.active):hover path {
  fill: white;
}

.regular-dropdown-list li.active {
  cursor: pointer;
}

.dropdown-with-avatars__active {
  display: flex;
  padding: 13px;
}

.dropdown-with-avatars__active .author-avatar {
  width: 44px;
  height: 44px;
  font-size: 24px;
  line-height: 44px;
  background-color: #17d29b;
}

.dropdown-with-avatars__active-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 13px;
}

.dropdown-with-avatars__active-content .dropdown-with-avatars__item-text {
  font-size: 20px;
  line-height: 1.2em;
}

.dropdown-with-avatars__active-content .dropdown-with-avatars__label {
  margin-top: 4px;
  margin-left: 4px;
}

.dropdown-with-avatars__active-btn {
  width: 44px;
  height: 41px;
  position: relative;
  margin-top: 2px;
  margin-left: auto;
  border: 1px solid #b0b0b0;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color .15s;
}

.dropdown-with-avatars__active-btn:hover {
  background-color: #e64545;
}

.dropdown-with-avatars__active-btn:hover .icon-default {
  opacity: 0;
  visibility: hidden;
}

.dropdown-with-avatars__active-btn:hover .icon-hover {
  opacity: 1;
  visibility: visible;
}

.dropdown-with-avatars__active-btn img {
  width: 17px;
}

.dropdown-with-avatars__active-btn .icon-default,
.dropdown-with-avatars__active-btn .icon-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .15s;
}

.dropdown-with-avatars__active-btn .icon-default {
  opacity: 1;
  visibility: visible;
}

.dropdown-with-avatars__active-btn .icon-hover {
  opacity: 0;
  visibility: hidden;
}

.dropdown-with-avatars__item {
  display: flex;
  align-items: center;
  padding: 13px 10px;
  border-bottom: 1px solid #d8dfe6;
  cursor: pointer;
  transition: background-color .2s;
}

.dropdown-with-avatars__item:hover {
  background-color: #f7f9fa;
}

.dropdown-with-avatars__item:last-child {
  border-bottom: none;
}

.dropdown-with-avatars__item .author-avatar {
  width: 35px;
  height: 35px;
  font-size: 20px;
  line-height: 35px;
  background-color: #df4915;
}

.dropdown-with-avatars__item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 10px;
}

.dropdown-with-avatars__item-text {
  font-size: 16px;
  line-height: 1.3em;
}

.dropdown-with-avatars__label {
  padding: 0 8px;
  font-family: "Roboto", sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 17px;
  text-align: center;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 10px;
  background-color: #d8dfe6;
}

.dropdown-with-avatars__label.label-active {
  background-color: #81c835;
}

.dropdown-with-avatars__label.label-inactive {
  background-color: #d65d5e;
}

.dropdown-with-avatars {
  width: 423px;
  position: relative;
  border: 1px solid #d8dfe6;
  border-radius: 4px;
  outline: none;
}

.dropdown-with-avatars.opened {
  border-radius: 0;
}

.dropdown-with-avatars.opened .dropdown-with-avatars__init:after {
  top: 22px;
  transform: rotate(-135deg);
}

.dropdown-with-avatars.opened .dropdown-with-avatars__items {
  max-height: 320px;
  border: 1px solid #d8dfe6;
  overflow-y: auto;
}

.dropdown-with-avatars.active {
  width: 440px;
  min-height: 72px;
  right: -3px;
  border-radius: 0;
}

.dropdown-with-avatars__init {
  display: block;
  padding: 13px 15px;
  cursor: pointer;
}

.dropdown-with-avatars__init:after {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  top: 18px;
  right: 27px;
  transform: rotate(45deg);
  border-width: 0 1px 1px 0;
  border-style: solid;
  border-color: #b6b6b6;
  transition: all 0.2s;
}

.dropdown-with-avatars__items {
  width: calc(100% + 2px);
  max-height: 0;
  padding: 0;
  position: absolute;
  z-index: 999;
  top: calc(100% + 1px);
  left: -1px;
  margin: 0;
  list-style-type: none;
  background-color: #fff;
  overflow: hidden;
  transition: max-height 0.2s;
}

.fake-browser {
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 0 10px #cacacc;
  overflow: hidden;
}

.fake-browser-header {
  padding: 9px 8px;
  background: linear-gradient(to bottom, #ffffff, #fafbfc);
}

.fake-browser-subheader h3 {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  color: #838384;
}

.fake-browser-dots {
  display: flex;
}

.fake-browser-dot {
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 50%;
}

.fake-browser-dot:first-child {
  background-color: #fc605c;
}

.fake-browser-dot:nth-child(2) {
  background-color: #fdbc40;
}

.fake-browser-dot:nth-child(3) {
  background-color: #34c749;
}

.fake-browser-content > div {
  padding: 15px 10px 30px;
}

.fake-browser-content > div.fake-browser-component {
  padding: 40px 15px;
}

.fake-browser-content > div p,
.fake-browser-content > div li {
  font-size: 15px;
  font-weight: 300;
  line-height: 24px;
}

.fake-browser-content > div > *:last-child {
  margin-bottom: 0;
}

.fake-browser-content > div > *:first-child {
  margin-top: 0;
}

.fake-browser-image {
  width: 100%;
}

.fake-browser .spinner-wrapper {
  padding: 100px 0;
}

.field-control-content-editable {
  display: block;
}

.field-control-content-editable > div {
  height: 120px;
  padding: 10px;
  border: 1px solid #d8dfe6;
  border-radius: 5px;
  outline: none;
  overflow: hidden;
}

.datepicker-field {
  display: block;
  position: relative;
  outline: none;
}

.datepicker-field__box {
  user-select: none;
  display: block;
  width: 320px;
  padding: 20px;
  position: absolute;
  z-index: 1;
  top: 100%;
  right: 0;
  margin-top: 5px;
  border: 1px solid #d8dfe6;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

.datepicker-field__month__grid {
  display: flex;
  flex-flow: row wrap;
}

.datepicker-field__month__grid__single-elem {
  width: calc(100% / 7);
  font-size: 16px;
  line-height: 1.6em;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  transition: all 150ms ease;
}

.datepicker-field__month__grid__single-elem.active, .datepicker-field__month__grid__single-elem:hover:not(.day-name) {
  color: #c12b2c;
  border: 1px solid #d8dfe6;
}

.datepicker-field__month__grid__single-elem.day-name {
  font-weight: 500;
}

.datepicker-field__control {
  border-style: solid;
  border-color: transparent;
  cursor: pointer;
}

.datepicker-field__control.prev {
  border-width: 10px 10px 10px 0;
  border-right-color: black;
}

.datepicker-field__control.next {
  border-width: 10px 0 10px 10px;
  border-left-color: black;
}

.datepicker-field__control-value input {
  width: auto;
  height: auto;
  min-width: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  text-align: center;
}

.datepicker-field__value-head {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.datepicker-field__value {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  height: 48px;
  padding: 10px;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 1.5em;
  border: 1px solid #d8dfe6;
  border-radius: 5px;
  background-color: #fff;
  cursor: pointer;
}

.datepicker-field__value .fa {
  margin-right: 10px;
  font-size: 20px;
  color: #9d9d9d;
}

.datepicker-field__time {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  width: 60%;
  margin-top: 30px;
}

.datepicker-field__time__part {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  width: 50%;
}

.datepicker-field__time__part .datepicker-field__control {
  border-color: transparent;
}

.datepicker-field__time__part .datepicker-field__control.prev {
  border-width: 10px 10px 0 10px;
  border-top-color: black;
}

.datepicker-field__time__part .datepicker-field__control.next {
  border-width: 0 10px 10px 10px;
  border-bottom-color: black;
}

.datepicker-field__time__part .datepicker-field__control-value {
  line-height: 3em;
}

.field-control-dropdown {
  position: relative;
  z-index: 1;
}

.field-control-dropdown.active {
  z-index: 2;
}

.field-control-dropdown.active .field-control-dropdown__options {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
}

.field-control-dropdown.active .field-control-dropdown__selected:after {
  transform: rotate(135deg);
  margin-top: -2px;
}

.field-control-dropdown__selected {
  width: 100%;
  padding: 14px 16px;
  position: relative;
  font-size: 14px;
  line-height: 1.42em;
  color: #0a1f44;
  border: 1px solid #e1e4e8;
  border-radius: 4px;
  cursor: pointer;
}

.field-control-dropdown__selected:after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 17px;
  transform: rotate(-45deg);
  margin-top: -6px;
  border: 1px solid #0a1f44;
  border-width: 0 0 1px 1px;
}

.field-control-dropdown__options {
  width: 100%;
  padding: 8px 10px;
  position: absolute;
  top: 100%;
  left: 0;
  transform: translate3d(0, -15%, 0);
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 3px 4px 0 rgba(10, 31, 68, 0.1), 0 0 1px 0 rgba(10, 31, 68, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: all 200ms ease;
}

.field-control-dropdown__single-option {
  padding: 10px 16px;
  font-size: 14px;
  line-height: 1.42em;
  color: #303236;
  background-color: white;
  cursor: pointer;
}

.field-control-dropdown__single-option:hover {
  background-color: #f8f9fb;
}

.field-control--froala-editor {
  border: 1px solid #d8dfe6;
  border-radius: 5px;
}

.field-control-number-input {
  position: relative;
}

.field-control-number-input.invalid input {
  border-color: #e64545;
}

.field-control-number-input input {
  width: 100%;
  border: 1px solid #d8dfe6;
  border-radius: 5px;
  overflow: hidden;
}

.field-control-number-input-error {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(110%, -50%);
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  color: #e64545;
}

.field-control-radio {
  display: inline-block;
  padding: 10px 0;
  font-size: 15px;
  line-height: 20px;
  cursor: pointer;
}

.field-control-radio .radio-button-dot {
  display: inline-block;
  width: 25px;
  height: 25px;
  position: relative;
  margin-right: 20px;
  border: 1px solid #d8dfe6;
  border-radius: 50%;
  background-color: #eeeef4;
}

.field-control-radio .radio-button-dot:after {
  content: " ";
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 4px;
  left: 4px;
  transform: scale(0);
  border-radius: 50%;
  background-color: #c12b2c;
  transition: none;
}

.field-control-radio.active .radio-button-dot:after {
  transform: scale(1);
  transition: all 0.25s cubic-bezier(0.405, 0.565, 0.19, 1.6);
}

.field-control-radio-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.field-control-radio-wrapper .field-control-radio {
  margin-right: 30px;
}

.field-control-textarea {
  display: block;
  height: 120px;
  border: 1px solid #d8dfe6;
  border-radius: 5px;
  overflow: hidden;
}

.field-control-textarea textarea {
  width: 100%;
  height: 100%;
}

.field-control-toggle {
  display: block;
  width: 55px;
  height: 26px;
  position: relative;
  border-radius: 50px;
  background-color: #dfe7eb;
  cursor: pointer;
  transition: background-color 0.2s;
}

.field-control-toggle:after {
  content: '';
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 7px;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.2s;
}

.field-control-toggle.active {
  background-color: #c12b2c;
}

.field-control-toggle.active:after {
  left: 33px;
}

.filter-text {
  display: inline-block;
  vertical-align: top;
}

.filter-text.opened .filter-text-trigger {
  border-bottom-color: transparent;
}

.filter-text.lists {
  margin-right: 30px;
}

.filter-text-trigger {
  display: inline-block;
  padding: 0;
  margin: 0 8px;
  vertical-align: top;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.33;
  color: #c12b2c;
  border: none;
  border-bottom: 1px solid #c12b2c;
  background: none;
  cursor: pointer;
}

.filter-text-dropdown-wrapper {
  display: inline-block;
  position: relative;
  vertical-align: top;
}

.filter-text-dropdown {
  width: auto;
  min-width: 100%;
  max-width: none;
  padding: 0 12px;
  position: absolute;
  z-index: 15;
  top: 100%;
  left: -5px;
  margin-top: 5px;
  font-size: 15px;
  font-weight: 300;
  line-height: 22px;
  white-space: nowrap;
  border: 1px solid #d8dfe6;
  border-radius: 5px;
  background-color: white;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.filter-text-dropdown.lists {
  width: 140px;
  right: auto;
  left: 50%;
  margin-left: -70px;
}

.filter-text-dropdown-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.filter-text-dropdown-list li {
  padding: 11px 6px;
  border-bottom: 1px solid #d8dfe6;
  cursor: pointer;
}

.filter-text-dropdown-list li:last-child {
  border: none;
}

.filter-text-dropdown-list li:hover {
  color: #c12b2c;
}

.font-preview-wrapper {
  position: relative;
}

.font-preview-wrapper .fonts-dropdown {
  padding: 0;
  top: 40%;
  left: 20px;
}

.font-preview {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.font-preview .inner {
  display: table;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}

.font-preview-cell {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

.font-preview-text {
  display: block;
  font-size: 80px;
  line-height: 80px;
}

@media (max-width: 480px) {
  .font-preview-text {
    font-size: 50px;
    line-height: 50px;
  }
}

.font-preview-name {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 25px;
  font-weight: 500;
  text-transform: uppercase;
}

.fonts-dropdown .inner {
  padding: 0 20px 0 12px;
}

.fonts-dropdown .custom-scrollbar-wrapper {
  right: 6px;
}

.form-controller.full-width-labels .input-form-row {
  display: block;
}

.form-controller.full-width-labels .input-wrapper {
  padding: 0;
}

.form-controller.full-width-labels .input-label {
  display: block;
  margin-bottom: 8px;
}

.gravatar-list {
  padding: 0;
  float: left;
  margin: 0 10px 0 0;
  list-style-type: none;
}

@media (max-width: 991px) {
  .gravatar-list {
    display: inline-block;
    float: none;
    margin: 0;
  }
}

.gravatar {
  display: inline-block;
  width: 42px;
  height: 42px;
  position: relative;
  z-index: 1;
  vertical-align: top;
  font-size: 18px;
  line-height: 40px;
  text-align: center;
  color: white;
  border: 1px solid white;
  border-radius: 50%;
  background-color: #8996a2;
  overflow: hidden;
}

.gravatar img {
  width: 44px;
  height: 44px;
  max-width: none;
  position: absolute;
  top: -1px;
  left: -1px;
}

.gravatar:not(:first-child) {
  margin-left: -7px;
}

.CampaignItem:first-child .gravatar:first-child,
.campaign-row:first-child .gravatar:first-child,
.audience-item-wrapper:first-child .gravatar:first-child {
  background-color: #1b92ce;
}

.CampaignItem:first-child .gravatar:nth-child(2),
.campaign-row:first-child .gravatar:nth-child(2),
.audience-item-wrapper:first-child .gravatar:nth-child(2) {
  background-color: #f68d11;
}

.CampaignItem:first-child .gravatar:nth-child(3),
.campaign-row:first-child .gravatar:nth-child(3),
.audience-item-wrapper:first-child .gravatar:nth-child(3) {
  background-color: #38bd92;
}

.CampaignItem:first-child .gravatar:nth-child(4),
.campaign-row:first-child .gravatar:nth-child(4),
.audience-item-wrapper:first-child .gravatar:nth-child(4) {
  background-color: #9f620a;
}

.CampaignItem:first-child .gravatar:nth-child(5),
.campaign-row:first-child .gravatar:nth-child(5),
.audience-item-wrapper:first-child .gravatar:nth-child(5) {
  background-color: #df307a;
}

.CampaignItem:nth-child(5n + 2) .gravatar:first-child,
.campaign-row:nth-child(5n + 2) .gravatar:first-child,
.audience-item-wrapper:nth-child(5n + 2) .gravatar:first-child {
  background-color: #d8bf00;
}

.CampaignItem:nth-child(5n + 2) .gravatar:nth-child(2),
.campaign-row:nth-child(5n + 2) .gravatar:nth-child(2),
.audience-item-wrapper:nth-child(5n + 2) .gravatar:nth-child(2) {
  background-color: #df307a;
}

.CampaignItem:nth-child(5n + 2) .gravatar:nth-child(3),
.campaign-row:nth-child(5n + 2) .gravatar:nth-child(3),
.audience-item-wrapper:nth-child(5n + 2) .gravatar:nth-child(3) {
  background-color: #646078;
}

.CampaignItem:nth-child(5n + 2) .gravatar:nth-child(4),
.campaign-row:nth-child(5n + 2) .gravatar:nth-child(4),
.audience-item-wrapper:nth-child(5n + 2) .gravatar:nth-child(4) {
  background-color: #46af3d;
}

.CampaignItem:nth-child(5n + 2) .gravatar:nth-child(5),
.campaign-row:nth-child(5n + 2) .gravatar:nth-child(5),
.audience-item-wrapper:nth-child(5n + 2) .gravatar:nth-child(5) {
  background-color: #df4915;
}

.CampaignItem:nth-child(5n + 3) .gravatar:first-child,
.campaign-row:nth-child(5n + 3) .gravatar:first-child,
.audience-item-wrapper:nth-child(5n + 3) .gravatar:first-child {
  background-color: #df4915;
}

.CampaignItem:nth-child(5n + 3) .gravatar:nth-child(2),
.campaign-row:nth-child(5n + 3) .gravatar:nth-child(2),
.audience-item-wrapper:nth-child(5n + 3) .gravatar:nth-child(2) {
  background-color: #46af3d;
}

.CampaignItem:nth-child(5n + 3) .gravatar:nth-child(3),
.campaign-row:nth-child(5n + 3) .gravatar:nth-child(3),
.audience-item-wrapper:nth-child(5n + 3) .gravatar:nth-child(3) {
  background-color: #c071a6;
}

.CampaignItem:nth-child(5n + 3) .gravatar:nth-child(4),
.campaign-row:nth-child(5n + 3) .gravatar:nth-child(4),
.audience-item-wrapper:nth-child(5n + 3) .gravatar:nth-child(4) {
  background-color: #d8bf00;
}

.CampaignItem:nth-child(5n + 3) .gravatar:nth-child(5),
.campaign-row:nth-child(5n + 3) .gravatar:nth-child(5),
.audience-item-wrapper:nth-child(5n + 3) .gravatar:nth-child(5) {
  background-color: #38bd92;
}

.CampaignItem:nth-child(5n + 4) .gravatar:first-child,
.campaign-row:nth-child(5n + 4) .gravatar:first-child,
.audience-item-wrapper:nth-child(5n + 4) .gravatar:first-child {
  background-color: #a357ce;
}

.CampaignItem:nth-child(5n + 4) .gravatar:nth-child(2),
.campaign-row:nth-child(5n + 4) .gravatar:nth-child(2),
.audience-item-wrapper:nth-child(5n + 4) .gravatar:nth-child(2) {
  background-color: #df307a;
}

.CampaignItem:nth-child(5n + 4) .gravatar:nth-child(3),
.campaign-row:nth-child(5n + 4) .gravatar:nth-child(3),
.audience-item-wrapper:nth-child(5n + 4) .gravatar:nth-child(3) {
  background-color: #1b92ce;
}

.CampaignItem:nth-child(5n + 4) .gravatar:nth-child(4),
.campaign-row:nth-child(5n + 4) .gravatar:nth-child(4),
.audience-item-wrapper:nth-child(5n + 4) .gravatar:nth-child(4) {
  background-color: #3f20af;
}

.CampaignItem:nth-child(5n + 4) .gravatar:nth-child(5),
.campaign-row:nth-child(5n + 4) .gravatar:nth-child(5),
.audience-item-wrapper:nth-child(5n + 4) .gravatar:nth-child(5) {
  background-color: #f68d11;
}

.CampaignItem:nth-child(5n + 5) .gravatar:first-child,
.campaign-row:nth-child(5n + 5) .gravatar:first-child,
.audience-item-wrapper:nth-child(5n + 5) .gravatar:first-child {
  background-color: #3f20af;
}

.CampaignItem:nth-child(5n + 5) .gravatar:nth-child(2),
.campaign-row:nth-child(5n + 5) .gravatar:nth-child(2),
.audience-item-wrapper:nth-child(5n + 5) .gravatar:nth-child(2) {
  background-color: #f68d11;
}

.CampaignItem:nth-child(5n + 5) .gravatar:nth-child(3),
.campaign-row:nth-child(5n + 5) .gravatar:nth-child(3),
.audience-item-wrapper:nth-child(5n + 5) .gravatar:nth-child(3) {
  background-color: #d80000;
}

.CampaignItem:nth-child(5n + 5) .gravatar:nth-child(4),
.campaign-row:nth-child(5n + 5) .gravatar:nth-child(4),
.audience-item-wrapper:nth-child(5n + 5) .gravatar:nth-child(4) {
  background-color: #d8bf00;
}

.CampaignItem:nth-child(5n + 5) .gravatar:nth-child(5),
.campaign-row:nth-child(5n + 5) .gravatar:nth-child(5),
.audience-item-wrapper:nth-child(5n + 5) .gravatar:nth-child(5) {
  background-color: #46af3d;
}

.CampaignItem:nth-child(5n + 6) .gravatar:first-child,
.campaign-row:nth-child(5n + 6) .gravatar:first-child,
.audience-item-wrapper:nth-child(5n + 6) .gravatar:first-child {
  background-color: #38bd92;
}

.CampaignItem:nth-child(5n + 6) .gravatar:nth-child(2),
.campaign-row:nth-child(5n + 6) .gravatar:nth-child(2),
.audience-item-wrapper:nth-child(5n + 6) .gravatar:nth-child(2) {
  background-color: #af4e14;
}

.CampaignItem:nth-child(5n + 6) .gravatar:nth-child(3),
.campaign-row:nth-child(5n + 6) .gravatar:nth-child(3),
.audience-item-wrapper:nth-child(5n + 6) .gravatar:nth-child(3) {
  background-color: #f68d11;
}

.CampaignItem:nth-child(5n + 6) .gravatar:nth-child(4),
.campaign-row:nth-child(5n + 6) .gravatar:nth-child(4),
.audience-item-wrapper:nth-child(5n + 6) .gravatar:nth-child(4) {
  background-color: #a357ce;
}

.CampaignItem:nth-child(5n + 6) .gravatar:nth-child(5),
.campaign-row:nth-child(5n + 6) .gravatar:nth-child(5),
.audience-item-wrapper:nth-child(5n + 6) .gravatar:nth-child(5) {
  background-color: #646078;
}

.CampaignItem:last-child .gravatar:first-child,
.campaign-row:last-child .gravatar:first-child,
.audience-item-wrapper:last-child .gravatar:first-child {
  background-color: #c071a6;
}

.CampaignItem:last-child .gravatar:nth-child(2),
.campaign-row:last-child .gravatar:nth-child(2),
.audience-item-wrapper:last-child .gravatar:nth-child(2) {
  background-color: #9f620a;
}

.CampaignItem:last-child .gravatar:nth-child(3),
.campaign-row:last-child .gravatar:nth-child(3),
.audience-item-wrapper:last-child .gravatar:nth-child(3) {
  background-color: #3f20af;
}

.CampaignItem:last-child .gravatar:nth-child(4),
.campaign-row:last-child .gravatar:nth-child(4),
.audience-item-wrapper:last-child .gravatar:nth-child(4) {
  background-color: #38bd92;
}

.CampaignItem:last-child .gravatar:nth-child(5),
.campaign-row:last-child .gravatar:nth-child(5),
.audience-item-wrapper:last-child .gravatar:nth-child(5) {
  background-color: #1b92ce;
}

.input-with-icon {
  display: inline-block;
  width: 296px;
  height: 51px;
  position: relative;
}

.input-with-icon input {
  width: 100%;
  height: 100%;
  padding: 0 67px 0 20px;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 15px;
  line-height: 49px;
  border: 1px solid #e7eeee;
  border-radius: 40px;
}

.input-with-icon .icon {
  content: '';
  width: 50px;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #e7eeee;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  cursor: default;
}

.input-with-icon .icon.clickable {
  cursor: pointer;
}

.input-with-icon img {
  width: 24px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -12px;
  margin-left: -15px;
}

.icon-picker {
  list-style-type: none;
  margin: 0 0 -9px;
  padding: 0;
}

.icon-picker-item {
  display: inline-block;
  vertical-align: top;
  margin-right: 9px;
  margin-bottom: 9px;
}

.icon-picker-button {
  -webkit-appearance: none;
  padding: 10px 5px;
  width: 50px;
  border: 1px solid #d8dfe6;
  border-radius: 5px;
  font-size: 20px;
  color: #c12b2c;
  background: transparent;
  text-align: center;
  line-height: 28px;
  cursor: pointer;
  transition: border-color 200ms ease-in-out;
}

.small .icon-picker-button {
  width: 32px;
  padding: 5px;
  font-size: 16px;
  line-height: 20px;
}

.icon-picker-button small {
  display: block;
  font-size: 11px;
}

.null .icon-picker-button {
  color: #9d9d9d;
}

.icon-picker-button:focus, .icon-picker-button:active {
  outline: none;
}

.icon-picker-button:hover {
  border-color: #9d9d9d;
}

.icon-picker-button.active {
  border-color: #c12b2c;
}

.icon-picker-validation-message {
  display: block;
  line-height: 50px;
  color: #e64545;
}

.Input {
  display: block;
  color: #5a5a5a;
  border: 1px solid #d8dfe6;
  border-radius: 5px;
}

.Input input {
  display: block;
  width: 100%;
  height: 48px;
  border-radius: 5px;
}

.reject .LogoDropzone,
.invalid .LogoDropzone {
  border-color: #e64545;
}

.LogoDropzone {
  padding: 6px;
  position: relative;
  text-align: center;
  color: #9d9d9d;
  border: 1px dashed #d8dfe6;
  cursor: pointer;
}

.LogoDropzone p {
  margin: 0;
}

.LogoDropzone .LogoDropzone__ImagePreview {
  width: auto;
  height: auto;
  max-width: 80%;
  max-height: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.LogoDropzone .LogoDropzone__VideoPreview {
  display: block;
  width: 100%;
}

.LogoDropzone__Inner {
  padding: 55px 40px;
  background-color: #f9f9f9;
}

.LogoDropzone__Icon {
  margin-bottom: 10px;
}

.LogoDropzone--hasContent {
  height: 250px;
}

.LogoDropzone--active {
  border: 1px dashed #24b8ba;
}

.LogoDropzone--active svg path {
  fill: #24b8ba;
}

.MainHeader {
  z-index: 99;
}

.MainHeader a {
  text-decoration: none;
}

.MainHeader .logo {
  order: 1;
}

.MainHeader .HeaderSearchForm {
  order: 2;
}

@media (max-width: 1400px) {
  .MainHeader .HeaderSearchForm {
    width: 500px;
  }
}

@media (max-width: 1250px) {
  .MainHeader .HeaderSearchForm {
    width: 100%;
    order: 3;
    border-left: 0;
  }
}

.MainHeader .HeaderMenuLinks {
  order: 3;
  margin-left: auto;
  margin-right: 20px;
  justify-self: flex-end;
}

@media (max-width: 1250px) {
  .MainHeader .HeaderMenuLinks {
    padding: 15px 0;
    order: 4;
    margin-left: 0;
    border-right: 0;
  }
}

@media (max-width: 1400px) {
  .MainHeader .HeaderMenuLinks li {
    padding: 7px 12px;
  }
}

.MainHeader .user-menu-wrapper {
  order: 4;
  justify-self: flex-end;
}

@media (max-width: 1250px) {
  .MainHeader .user-menu-wrapper {
    order: 2;
  }
}

.MainHeader__top {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  min-height: 66px;
  border-bottom: 1px solid #d8dfe6;
  background-color: #fff;
}

@media (max-width: 1250px) {
  .MainHeader__top {
    flex-flow: row wrap;
    justify-content: space-between;
  }
}

.SearchResultHeader {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-family: "Source Sans Pro", sans-serif;
}

.SearchResultHeader h5 {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6em;
  color: #9d9d9d;
  text-transform: uppercase;
}

.SearchResultHeader .svg-icon {
  width: 35px;
}

.SearchResultHeader .svg-icon svg {
  display: block;
}

.SearchResultHeader .view-more {
  font-size: 14px;
  color: #9d9d9d;
}

.SearchResultHeader .view-more a {
  margin-left: 5px;
}

.SearchResultHeader.fbads .svg-icon path {
  fill: #3b5998;
}

.SearchResultHeader.blast .svg-icon path {
  fill: #41b5ff;
}

.SearchResultHeader.content .svg-icon path {
  fill: #63b32c;
}

.SearchResultHeader.contentByTags .svg-icon svg {
  width: 23px;
  height: 23px;
}

.SearchResultHeader.contentByTags .svg-icon path {
  fill: #f08245;
}

.HeaderResultList {
  font-family: "Roboto", sans-serif;
}

.HeaderResultList:not(:last-child) {
  margin-bottom: 20px;
}

.HeaderResultList__results {
  padding: 0;
  padding-left: 35px;
  margin: 0;
  font-size: 15px;
  list-style: none;
}

.HeaderResultList__results li:not(:last-child) {
  margin-bottom: 12px;
}

.HeaderResultList__results li a {
  display: block;
  color: #444c5c;
}

.HeaderResultList__results li a:hover {
  opacity: .8;
}

.HeaderResultList__results li .text {
  display: block;
  font-weight: 700;
}

.HeaderResultList__results li .time {
  font-size: 13px;
  color: #9d9d9d;
}

@keyframes headerSearchDropdownSlideIn {
  0% {
    transform: translate3d(-100%, 0, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    oapcity: 1;
  }
}

@keyframes headerSearchClearButtonEnterAnimation {
  0% {
    transform: rotate(45deg) scale(1, 1);
  }
  50% {
    transform: rotate(45deg) scale(1.5, 1.5);
  }
  100% {
    transform: rotate(45deg) scale(1, 1);
  }
}

.HeaderSearchForm {
  width: 600px;
  height: 65px;
  max-width: 100%;
  position: relative;
  z-index: 15;
}

.HeaderSearchForm.opened .HeaderSearchForm__wrapper {
  background-color: #fff;
  box-shadow: 1px 4px 10px rgba(0, 0, 0, 0.15);
}

.HeaderSearchForm__wrapper {
  width: 100%;
  padding: 0 25px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  border-radius: 5px;
  overflow: hidden;
  transition: all 300ms ease;
}

.HeaderSearchForm__search-input {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  height: 65px;
  position: relative;
}

.HeaderSearchForm__search-input:after {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #d8dfe6;
}

.HeaderSearchForm__search-input .field-control {
  flex-grow: 1;
  width: 100%;
}

.HeaderSearchForm__search-input .field-control-simple-input {
  border: 0;
}

.HeaderSearchForm__search-input .field-control-simple-input input::-webkit-input-placeholder {
  color: #444c5c;
}

.HeaderSearchForm__search-input .field-control-simple-input input:-moz-placeholder {
  /* Firefox 18- */
  color: #444c5c;
}

.HeaderSearchForm__search-input .field-control-simple-input input::-moz-placeholder {
  /* Firefox 19+ */
  color: #444c5c;
}

.HeaderSearchForm__search-input .field-control-simple-input input:-ms-input-placeholder {
  color: #444c5c;
}

.HeaderSearchForm__search-input .icon-search-dark {
  width: 17px;
  height: 17px;
  margin: 0;
  margin-right: 10px;
}

.HeaderSearchForm__clear {
  width: 25px;
  height: 25px;
  position: relative;
  transform: rotate(45deg);
  border-radius: 50%;
  cursor: pointer;
  animation: 300ms headerSearchClearButtonEnterAnimation;
}

.HeaderSearchForm__clear:before, .HeaderSearchForm__clear:after {
  content: '';
  position: absolute;
  background-color: black;
}

.HeaderSearchForm__clear:before {
  width: 15px;
  height: 1px;
  top: 12px;
  left: 5px;
}

.HeaderSearchForm__clear:after {
  width: 1px;
  height: 15px;
  top: 5px;
  left: 12px;
}

.HeaderSearchForm__dropdown {
  padding: 20px 0 35px;
  animation: 300ms headerSearchDropdownSlideIn;
}

.HeaderSearchForm__action-icon {
  opacity: 1;
  transition: opacity 200ms ease;
}

.HeaderSearchForm__action-icon.typing {
  opacity: .5;
}

.logo {
  display: block;
  padding: 0 35px 0 15px;
}

.logo svg {
  display: block;
}

.HeaderMenuLinks ul {
  display: flex;
  flex-flow: row wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.HeaderMenuLinks ul li {
  padding: 7px 15px;
}

.HeaderMenuLinks a {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2em;
  color: #9d9d9d;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 200ms ease;
}

.HeaderMenuLinks a.current, .HeaderMenuLinks a:hover {
  color: black;
}

.HeaderMenuLinks a.current {
  font-weight: 900;
}

.HeaderMenuLinks .highlight a {
  color: #c12b2c;
}

.HeaderMenuLinks .svg-icon {
  margin-right: 7px;
}

.HeaderMenuLinks .svg-icon svg {
  display: block;
}

.btn-more-actions-wrapper {
  position: relative;
}

.btn-more-actions-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 42px;
  padding: 0;
  border: none;
  border-radius: 6px;
  outline: none;
  background-color: #fff;
  box-shadow: 0 2px 4px 0 rgba(100, 100, 100, 0.3);
  cursor: pointer;
}

.btn-more-actions-button:hover {
  box-shadow: 0 2px 4px 0 rgba(100, 100, 100, 0.6);
}

.btn-more-actions-button__dots {
  display: inline-block;
  width: 4px;
  height: 4px;
  position: relative;
  border-radius: 50%;
  background-color: #c0c6cc;
}

.btn-more-actions-button__dots:before, .btn-more-actions-button__dots:after {
  content: '';
  width: 4px;
  height: 4px;
  position: absolute;
  top: 0;
  border-radius: 50%;
  background-color: #c0c6cc;
}

.btn-more-actions-button__dots:before {
  left: -6px;
}

.btn-more-actions-button__dots:after {
  right: -6px;
}

.btn-more-actions-items {
  position: absolute;
  z-index: -1;
  top: calc(100% + 13px);
  right: 0;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0 2px 4px 0 rgba(100, 100, 100, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all .2s;
}

.btn-more-actions-items.active {
  z-index: 99;
  opacity: 1;
  visibility: visible;
}

.PageHeading {
  padding: 20px 0;
}

@media (max-width: 991px) {
  .PageHeading {
    padding-top: 10px;
  }
}

@media (max-width: 480px) {
  .PageHeading {
    padding-top: 0;
  }
}

.PageHeading.with-border {
  padding: 28px 0 28px;
}

@media (max-width: 767px) {
  .PageHeading.with-border {
    padding-top: 0;
  }
}

@media (max-width: 480px) {
  .PageHeading.with-border {
    padding-bottom: 25px;
  }
}

.PageHeading.with-border .inner {
  padding-bottom: 19px;
  border-bottom: 1px solid #d8dfe6;
}

.PageHeading .btn {
  margin-top: 3px;
}

@media (max-width: 991px) {
  .PageHeading .btn {
    display: block;
    margin: 15px auto 5px;
    max-width: 320px;
  }
}

@media (max-width: 991px) {
  .PageHeading {
    text-align: center;
  }
}

.pagination {
  list-style-type: none;
  padding: 0;
  margin: 50px 0 0;
  font-size: 0;
}

.pagination li {
  display: inline-block;
  vertical-align: top;
  margin: 0 2px;
}

.pagination-item {
  display: block;
  padding: 0;
  margin: 0;
  width: 32px;
  text-align: center;
  font-size: 14px;
  line-height: 30px;
  font-weight: 600;
  text-decoration: none;
  color: #767676;
  border-radius: 50%;
  cursor: pointer;
}

.pagination-separator {
  display: block;
  padding: 0;
  margin: 0;
  width: 32px;
  line-height: 28px;
  font-size: 16px;
  color: #9d9d9d;
}

.pagination-current-item {
  background-color: #c12b2c;
  border-color: #c12b2c;
  color: white;
}

.pagination-current-item:focus, .pagination-current-item:active {
  color: white;
}

.pagination-current-item:hover {
  color: white;
  background-color: #c12b2c;
  border-color: #c12b2c;
}

.app-inner {
  width: calc(100% - 64px);
  margin-left: 64px;
  padding-bottom: 60px;
}

@media (max-width: 1199px) {
  .app-inner {
    padding-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .app-inner {
    padding-bottom: 20px;
  }
}

.ProgressBar {
  width: 100%;
  text-align: center;
}

.ProgressBar__Bar {
  height: 9px;
  margin-top: 8px;
  border-radius: 10px;
  background-color: #dadada;
}

.ProgressBar__Bar .ProgressBar__Bar__Fill {
  width: 0;
  height: 9px;
  border-radius: 10px;
  background-color: #c12b2c;
  transition: width 300ms ease-in-out;
}

.ProgressBar__PercentageDisplay {
  padding-top: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  text-align: left;
  color: #9d9d9d;
  text-transform: uppercase;
}

.ProgressBar__PercentageDisplay .ProgressBar__PercentageDisplay__Number {
  float: right;
}

.QueryFilterItem {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  max-width: 250px;
  padding: 5px 17px 5px 17px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6em;
  color: #3f4f5f;
  border-radius: 20px;
  background-color: #dfe7eb;
}

.QueryFilterItem__close-icon {
  display: inline-block;
  width: 15px;
  height: 15px;
  position: relative;
  margin-left: 5px;
}

.QueryFilterItem__close-icon:after, .QueryFilterItem__close-icon:before {
  content: " ";
  display: block;
  width: 14px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center center;
  margin-top: -1px;
  margin-left: -7px;
  background-color: #3f4f5f;
}

.QueryFilterItem__close-icon:after {
  transform: rotate(45deg);
}

.QueryFilterItem__close-icon:before {
  transform: rotate(-45deg);
}

.QueryLink {
  display: inline-block;
  cursor: pointer;
}

.QuickFullscreenPreview {
  display: inline-block;
}

.QuickFullscreenPreview .fake-button {
  margin-left: 10px;
  color: #0198E1;
  text-decoration: underline;
  border: none;
  background: none;
  cursor: pointer;
}

.QuickFullscreenPreview .preview {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
}

.QuickFullscreenPreview .preview .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.65);
}

.QuickFullscreenPreview .preview .content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.RemoveTemplateButton {
  padding: 0 4px;
  margin-top: 10px;
  font-size: .9em;
  font-weight: 600;
  text-align: left;
  color: #bf2227;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
}

.ResetButton {
  width: auto;
  padding: 0;
  margin: 0;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* inherit font & color from ancestor */
  color: inherit;
  border: none;
  background: transparent;
  cursor: pointer;
  overflow: visible;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
}

.custom-search-dropdown {
  height: 48px;
  position: relative;
}

.custom-search-dropdown.active .search-dropdown-inner {
  box-shadow: 0 2px 16px 0 rgba(55, 63, 77, 0.15);
}

.custom-search-dropdown.active .search-dropdown-results {
  visibility: visible;
}

.custom-search-dropdown.active.filled .search-dropdown-inner {
  height: auto;
}

.custom-search-dropdown.active.filled .search-dropdown-input input {
  border-bottom: 1px solid #d8dfe6;
}

.custom-search-dropdown .search-dropdown-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 99;
  border: 1px solid #d8dfe6;
  border-radius: 5px;
  background-color: #fff;
  overflow: hidden;
}

.custom-search-dropdown .search-dropdown-input {
  padding: 4px 20px 5px;
  word-spacing: 2.5px;
}

.custom-search-dropdown .search-dropdown-input label {
  display: block;
  position: relative;
}

.custom-search-dropdown .search-dropdown-input input {
  width: 100%;
  padding-bottom: 12px;
  padding-left: 85px;
}

.custom-search-dropdown .search-dropdown-input i {
  position: absolute;
  top: 50%;
  left: 6px;
  margin-top: -9px;
}

.custom-search-dropdown .search-dropdown-results {
  width: 100%;
  padding: 10px 20px 20px;
  visibility: hidden;
}

.custom-search-dropdown .search-input-label {
  position: absolute;
  top: 10px;
  left: 29px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #444c5c;
}

.custom-search-dropdown .search-input-clear {
  width: 30px;
  height: 30px;
  padding: 0;
  position: absolute;
  top: 6px;
  right: 0;
  border: 0;
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
}

.custom-search-dropdown .search-input-clear:hover:before, .custom-search-dropdown .search-input-clear:hover:after {
  background-color: #444c5c;
}

.custom-search-dropdown .search-input-clear:before, .custom-search-dropdown .search-input-clear:after {
  content: " ";
  display: block;
  width: 15px;
  height: 1px;
  position: absolute;
  top: 14px;
  right: 7px;
  transform-origin: center center;
  background-color: #9d9d9d;
}

.custom-search-dropdown .search-input-clear:before {
  transform: rotate(45deg);
}

.custom-search-dropdown .search-input-clear:after {
  transform: rotate(-45deg);
}

.header-navigation {
  float: left;
  padding: 2px 0;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 22px;
  font-family: "Roboto", sans-serif;
}

@media (max-width: 767px) {
  .header-navigation {
    float: none;
  }
}

.header-navigation ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.header-navigation li {
  display: inline-block;
  margin-right: 48px;
}

@media (max-width: 767px) {
  .header-navigation li {
    display: block;
    margin: 0;
    text-align: center;
  }
}

.header-navigation a {
  display: block;
  padding: 10px 0;
  position: relative;
  color: #767676;
  text-decoration: none;
}

.header-navigation a:hover {
  color: #444c5c;
}

@media (max-width: 767px) {
  .header-navigation a {
    padding-right: 0;
  }
}

.header-navigation .count {
  display: inline-block;
  padding: 0 4px;
  min-width: 23px;
  height: 23px;
  margin-left: 5px;
  vertical-align: top;
  font-size: 12px;
  line-height: 22px;
  text-align: center;
  font-weight: 700;
  background-color: #dfe7eb;
  border-radius: 50px;
}

@media (max-width: 767px) {
  .header-navigation .count {
    display: inline-block;
    position: static;
    margin-left: 15px;
  }
}

.header-navigation .current:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background-color: #c12b2c;
}

@media (max-width: 767px) {
  .header-navigation .current:after {
    bottom: 0;
  }
}

.header-navigation .current .count {
  background-color: #c12b2c;
  color: white;
}

.header-navigation .custom-icon {
  margin-right: 8px;
}

.sidebar-nav {
  font-family: "Roboto", sans-serif;
  background-color: white;
  border: 1px solid #dfdfdf;
  border-radius: 5px;
  line-height: 24px;
}

@media (max-width: 991px) {
  .sidebar-nav {
    max-width: 350px;
    margin: 0 auto;
  }
}

.sidebar-nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav li {
  border-bottom: 1px solid #dfdfdf;
}

.sidebar-nav li:last-child {
  border: none;
}

.sidebar-nav a,
.sidebar-nav .disabled {
  position: relative;
  display: block;
  padding: 22px 55px 22px 22px;
  color: #767676;
  text-decoration: none;
  font-weight: 300;
}

@media (max-width: 1440px) {
  .sidebar-nav a,
  .sidebar-nav .disabled {
    padding: 22px 40px 22px 15px;
  }
}

@media (max-width: 480px) {
  .sidebar-nav a,
  .sidebar-nav .disabled {
    padding: 16px 45px 14px 15px;
  }
}

.sidebar-nav a:after,
.sidebar-nav .disabled:after {
  content: '...';
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -6px;
  font-size: 22px;
  line-height: 5px;
  color: #e5e5e5;
}

@media (max-width: 1440px) {
  .sidebar-nav a:after,
  .sidebar-nav .disabled:after {
    right: 18px;
  }
}

.sidebar-nav a > span,
.sidebar-nav .disabled > span {
  display: block;
  position: relative;
}

@media (max-width: 991px) {
  .sidebar-nav a > span,
  .sidebar-nav .disabled > span {
    padding-left: 40px;
  }
}

@media (max-width: 767px) {
  .sidebar-nav a > span,
  .sidebar-nav .disabled > span {
    padding-left: 24px;
  }
}

.sidebar-nav a .number,
.sidebar-nav .disabled .number {
  position: absolute;
  top: 0;
  left: 0;
}

.sidebar-nav .complete:after {
  content: '';
  width: 24px;
  height: 24px;
  margin-top: -12px;
  right: 25px;
  background: url(../images/create-campaign-completed.svg) left top/100% 100% no-repeat;
}

@media (max-width: 1440px) {
  .sidebar-nav .complete:after {
    right: 14px;
  }
}

.sidebar-nav .current {
  font-weight: 700;
  color: #444c5c;
}

.sidebar-nav .current:after {
  content: '';
  width: 14px;
  height: 24px;
  margin-top: -12px;
  background: url(../images/create-campaign-active.svg) left top/100% 100% no-repeat;
}

.sidebar-nav .current .nav-icon path:not(.no-active) {
  fill: #444c5c;
}

.sidebar-nav .current .nav-icon polyline,
.sidebar-nav .current .nav-icon polygon,
.sidebar-nav .current .nav-icon line {
  stroke: #444c5c;
}

.sidebar-nav .current .nav-icon .active-stroke {
  stroke: #444c5c;
}

.sidebar-nav .disabled {
  cursor: not-allowed;
}

.sidebar-nav.numbers a > span,
.sidebar-nav.numbers .disabled > span {
  padding-left: 24px;
}

.nav-icon {
  display: inline-block;
  vertical-align: top;
  margin-right: 15px;
}

.nav-icon svg {
  display: inline-block;
  vertical-align: top;
}

.signature-social-list {
  padding: 0;
  margin: 0;
  line-height: 18px;
  text-align: right;
  list-style-type: none;
}

@media (max-width: 767px) {
  .signature-social-list {
    margin-top: 10px;
    text-align: left;
  }
}

.signature-social-item {
  display: inline-block;
  margin-left: 15px;
  vertical-align: top;
}

@media (max-width: 767px) {
  .signature-social-item {
    margin-right: 15px;
    margin-left: 0;
  }
}

.signature-social-link {
  color: #949494;
}

.signature-social-link:hover {
  color: #767676;
}

.toast {
  display: flex;
  align-items: center;
  max-width: 272px;
  padding: 16px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  border: 1px solid #d8dfe6;
  border-radius: 4px;
  background-color: #fff;
}

.toast > .svg-icon {
  align-self: flex-start;
  margin-top: 5px;
  margin-right: 12px;
}

.toast .button-link {
  text-decoration: none;
}

.toast a {
  margin: 7px 0 -3px;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: 20px;
  text-align: left;
  color: #c12b2c;
  text-decoration: none;
  cursor: pointer;
}

.toast a .svg-icon {
  position: relative;
}

.toast a .svg-icon path {
  fill: #c12b2c;
}

.toast a:focus {
  outline: none;
}

.toast-dark {
  color: #fff;
  background-color: #0a1f44;
}

.toast-dark a {
  color: #ffca65;
}

.toast-dark a .svg-icon path {
  fill: #ffca65;
}

.subheader {
  border-bottom: 1px solid #d8dfe6;
  background-color: white;
}

.tags-item {
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
}

.tag-text, .tag-input-wrapper {
  display: inline-block;
  vertical-align: top;
  height: 21px;
  padding: 0 8px;
  border-radius: 50px;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 19px;
}

.tag-text {
  border: 1px solid white;
  color: #9d9d9d;
  background-color: #dfe7eb;
  cursor: pointer;
}

.tags-add-new {
  display: inline-block;
  vertical-align: top;
}

.tag-input-wrapper {
  position: relative;
  border: 1px solid #d8dfe6;
}

.tag-input-wrapper.hidden {
  display: none;
}

.tag-input-wrapper .global-autocomplete-dropdown {
  width: 100%;
  left: 0;
  margin-top: 3px;
  outline: none;
}

.tag-input {
  width: 100px;
  height: 19px;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 19px;
}

.add-new-tag-input {
  color: #9d9d9d;
}

.tag-button {
  padding: 0 3px;
  height: 11px;
  margin-top: 4px;
  border: none;
  vertical-align: top;
  font-size: 11px;
  background-color: transparent;
  cursor: pointer;
}

.tag-button.close .custom-icon.close:after, .tag-button.close .custom-icon.close:before {
  top: 5px;
  background-color: #9d9d9d;
}

.tags-trigger {
  display: block;
  height: 21px;
  padding: 1px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.tags-trigger:focus, .tags-trigger:active {
  outline: none;
}

.tags-trigger svg {
  width: 19px;
  height: 19px;
}

.tags-trigger:hover path {
  fill: #c12b2c;
}

.tags-prompt {
  margin-left: 9px;
  color: #adadad;
}

.tags-list {
  display: inline-block;
  vertical-align: top;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.toast-wrapper {
  position: relative;
  opacity: 0;
  transition-timing-function: ease-out;
  transition-duration: 400ms;
  transition-property: margin-top, margin-bottom, opacity, top;
}

@media (max-width: 991px) {
  .toast-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
    top: 0;
    margin-top: 0 !important;
    margin-right: -100%;
    margin-bottom: 0 !important;
    transition-property: margin-right, opacity;
  }
}

.toast-wrapper-top {
  top: 80px;
  margin-bottom: 15px;
}

.toast-wrapper-bottom {
  top: -80px;
  margin-top: 15px;
}

.toast-wrapper-animated-in {
  top: 0;
  opacity: 1;
}

@media (max-width: 991px) {
  .toast-wrapper-animated-in {
    margin-right: 0;
  }
}

@media (max-width: 991px) {
  .toast-wrapper-animated-out {
    margin-right: 100%;
  }
}

.toasts {
  display: flex;
  flex-direction: column;
}

@media (max-width: 991px) {
  .toasts {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    width: calc(100% - 30px);
    position: fixed;
    z-index: 99;
    top: 25px;
    right: 15px;
    left: 15px;
  }
}

.toasts-bottom {
  flex-direction: column-reverse;
}

@keyframes fadeInUserMenu {
  0% {
    transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.user-menu-wrapper {
  position: relative;
  z-index: 15;
}

.user-menu-trigger {
  padding: 17px 25px;
  cursor: pointer;
}

.user-menu-trigger.opened {
  background-color: white;
}

.user-menu {
  width: 225px;
  padding: 0;
  position: absolute;
  z-index: 1;
  top: 100%;
  right: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  list-style-type: none;
  border-radius: 5px;
  background-color: white;
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  animation: 250ms fadeInUserMenu;
}

.user-menu li {
  border-bottom: 1px solid #d8dfe6;
}

.user-menu a,
.user-menu button {
  display: block;
  width: 100%;
  padding: 15px 25px;
  font-size: 16px;
  line-height: 1.6em;
  text-align: left;
  color: #444c5c;
  letter-spacing: .02em;
  border: none;
  background-color: transparent;
  cursor: pointer;
  transition: all 200ms ease;
}

.user-menu a:hover,
.user-menu button:hover {
  color: white;
  background-color: #c12b2c;
}

.youtube-playlist {
  position: relative;
  overflow: hidden;
}

.youtube-playlist-cover-wrapper {
  width: 100%;
  padding-bottom: 45%;
}

.youtube-playlist-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding-bottom: 12.5%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  color: white;
}

.youtube-playlist-cover:after {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.youtube-playlist-cover .youtube-playlist-cover-title {
  width: 650px;
  position: relative;
  margin: 0;
  z-index: 1;
  text-align: center;
}

.youtube-playlist-list {
  list-style-type: none;
  display: flex;
  padding: 0;
  position: absolute;
  bottom: 5px;
  margin: 0;
  left: -8%;
  right: -8%;
}

.youtube-playlist-item {
  width: 16.66%;
  flex: 0 0 16.66%;
  padding: 9px;
  color: white;
}

.youtube-playlist-item:first-child, .youtube-playlist-item:last-child {
  opacity: 0.5;
}

.youtube-playlist-item-inner {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.youtube-playlist-item-inner:after {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.youtube-playlist-item-inner .title {
  padding: 13px 17px;
  position: absolute;
  bottom: 0;
  margin: 0;
  z-index: 1;
  font-size: 16px;
  line-height: 20px;
}

.youtube-playlist-spinner {
  padding: 100px 50px;
}

.youtube-playlist-error {
  padding: 150px 50px;
  text-align: center;
}

.save-object-thumbnail {
  font-size: 14px;
  line-height: 50px;
  text-align: center;
}

.save-object-thumbnail span {
  display: block;
}

.add-content-wrapper {
  padding: 28px;
}

.add-content-wrapper .inner {
  padding: 30px 0;
  border: 1px dashed #d8dfe6;
  text-align: center;
}

.objects-drawer {
  width: 265px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 97;
  background-color: rgba(48, 46, 50, 0.93);
  transform: translate3d(265px, 0, 0);
  transition: transform 350ms cubic-bezier(0.77, 0, 0.175, 1), box-shadow 350ms ease-in-out;
}

.objects-drawer.opened {
  transform: translate3d(0, 0, 0);
}

.objects-drawer .custom-scrollbar-wrapper {
  top: 0;
  bottom: 20px;
  right: 7px;
}

.objects-drawer-header {
  padding: 25px 0 0;
  z-index: 1;
}

.objects-drawer-header .inner {
  width: 212px;
  padding-bottom: 10px;
  position: relative;
  margin: 0 auto;
  border-bottom: 1px solid #59565a;
}

.objects-drawer-content-wrapper {
  flex: 1 1 calc(100vh - 60px);
}

.with-menu .objects-drawer-content-wrapper {
  flex: 1 1 calc(100vh - 115px);
}

.objects-drawer-content {
  height: 100%;
  padding-top: 20px;
}

.objects-drawer-menu {
  list-style-type: none;
  width: 212px;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  flex: 1 0 auto;
  border-bottom: 1px solid #59565a;
}

.objects-drawer-menu li {
  flex: 0 0 48%;
}

.objects-drawer-menu li.active button {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}

.objects-drawer-menu button {
  width: 100%;
  background-color: transparent;
  border: 1px solid white;
  border-radius: 50px;
  color: white;
  text-transform: uppercase;
  cursor: pointer;
}

.objects-drawer-title {
  font-size: 18px;
  line-height: 20px;
  color: white;
}

.objects-list {
  list-style-type: none;
  padding: 0;
  width: 212px;
  margin: 0 auto;
}

.objects-list-item {
  margin-bottom: 30px;
}

.objects-list-item:last-child {
  margin-bottom: 60px;
}

.object-label {
  display: block;
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 20px;
  text-transform: uppercase;
  color: white;
}

.object-img-wrapper {
  border: 1px solid #bebebe;
}

.object-img-wrapper {
  transition: box-shadow 200ms ease-in-out;
}

.object-thumbnail {
  cursor: pointer;
  position: relative;
}

.object-thumbnail:hover .object-img-wrapper {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
}

.object-thumbnail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.object-thumbnail-remove {
  padding: 2px 0;
  position: absolute;
  top: 0;
  right: 0;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}

.object-thumbnail-remove svg path {
  fill: white;
}

.objects-drawer-close {
  padding: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0;
  top: 0;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}

.objects-drawer-close span {
  display: block;
  height: 100%;
  position: relative;
}

.objects-drawer-close span:after, .objects-drawer-close span:before {
  content: " ";
  display: block;
  width: 15px;
  height: 2px;
  top: 9px;
  left: 2px;
  position: absolute;
  background-color: white;
  transform-origin: center center;
}

.objects-drawer-close span:before {
  transform: rotate(-45deg);
}

.objects-drawer-close span:after {
  transform: rotate(45deg);
}

.drawer-form-row {
  display: flex;
  margin-bottom: 12px;
}

.drawer-form-row:last-child {
  margin-bottom: 0;
}

.drawer-form-row.invalid .page-settings-input-wrapper,
.drawer-section.invalid .page-settings-input-wrapper,
.drawer-field-row.invalid .page-settings-input-wrapper {
  border-color: #e64545;
}

.page-settings-label {
  flex-grow: 1;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.page-settings-label.checkbox-label {
  min-height: 30px;
  line-height: 30px;
}

.page-settings-label.input-label {
  min-height: 50px;
  line-height: 50px;
}

.page-settings-input-wrapper,
.page-settings-tags-wrapper {
  flex: 0 1 330px;
  padding: 0;
}

.page-settings-input-wrapper textarea,
.page-settings-tags-wrapper textarea {
  width: 100%;
}

.page-settings-input-wrapper {
  border-radius: 5px;
}

.page-settings-input-wrapper.invalid {
  border-color: #e64545;
}

.page-settings-input-wrapper.short {
  flex: 0 1 90px;
}

.page-settings-input-wrapper.no-overflow {
  overflow: visible;
}

.page-settings-tags-wrapper {
  padding-top: 14px;
}

.page-settings-save-wrapper {
  padding-bottom: 20px;
}

.field-group.two-cols {
  display: flex;
  flex-wrap: wrap;
}

.field-group.two-cols .drawer-field-row {
  flex: 0 0 50%;
}

.field-group.two-cols .drawer-field-row:nth-child(odd) {
  padding-right: 15px;
}

.field-group.two-cols .drawer-field-row:nth-child(even) {
  padding-left: 15px;
}

.field-group.object-padding {
  justify-content: space-between;
}

.field-group.object-padding .drawer-field-row {
  flex: 0 0 220px;
}

.field-group.object-padding .input-wrapper {
  flex: 0 0 90px;
}

.page-settings .input-form-row .input-label {
  flex: 1 1 100%;
  min-height: 30px;
  line-height: 30px;
}

.page-settings .drawer-section:not(.border-bottom) {
  padding-bottom: 0;
}

.page-settings .field-group {
  padding-top: 5px;
}

.page-settings .field-group.border-bottom {
  border: 0;
}

.page-settings .field-group .drawer-field-row:last-child {
  margin-bottom: 0;
}

.block-setting-fields__field-wrapper {
  position: relative;
}

@keyframes animatePageSettingsErrorMsg {
  0% {
    transform: translate3d(0, -10px, 0);
    opacity: 0;
  }
}

.page-settings-form__error-msg {
  max-width: 200px;
  padding: 8px;
  position: absolute;
  z-index: 1;
  top: 100%;
  right: 15px;
  transform: translate3d(0, 0, 0);
  margin-top: 10px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: white;
  border-radius: 5px;
  background-color: #e64545;
  opacity: 1;
  animation: animatePageSettingsErrorMsg 300ms;
}

.page-settings-form__error-msg:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -10px;
  right: 30px;
  border-width: 0 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #e64545 transparent;
}

.double-ctas {
  display: flex;
  padding-top: 20px;
  margin: 0 -15px;
  justify-content: space-around;
}

.block-container-full .double-ctas {
  margin: 0;
  padding: 0 5px;
}

.double-cta-content {
  margin-bottom: 40px;
}

.double-cta-item {
  max-width: 50%;
  flex: 1 1 50%;
  margin: 0 15px;
}

.double-cta-item.center {
  text-align: center;
}

.double-cta-item.left {
  text-align: left;
}

.double-cta-item.right {
  text-align: right;
}

.block-container-full .double-cta-item {
  margin: 0;
}

.double-cta-item .editable-image-inner {
  padding: 20px 0 0;
  margin-bottom: 20px;
}

.double-cta-item .editable-button-wrapper {
  margin: 0;
}

.double-cta-item .editable-box-wrapper,
.double-cta-item .editable-box-inner {
  height: 100%;
}

.double-cta-inner {
  max-width: 350px;
  padding: 20px 10px 15px;
  margin: 0 auto;
}

.block-cta-listing .block-container:after {
  content: none;
}

.block-cta-listing .flex {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  justify-content: space-between;
}

.block-cta-listing .row {
  margin: 0 -15px;
}

.block-cta-listing .row:after {
  content: none;
}

.block-cta-listing__content, .block-cta-listing__form {
  min-height: 1px;
  padding: 0 15px;
}

.block-cta-listing__content {
  width: 45%;
  text-align: center;
}

.block-cta-listing__form {
  width: 46%;
}

.block-cta-listing__form .block-form .title {
  font-size: 30px;
}

.block-cta-listing .content-block-inner p {
  font-size: 16px;
  line-height: 1.8em;
}

.block-cta-listing__img {
  width: 172px;
  margin: 0 auto;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
}

.block-cta-listing__img div {
  padding-top: 100%;
}

.block-cta-listing__img-wrapper {
  position: relative;
  margin-bottom: 30px;
}

.block-cta-listing__img-wrapper .editable-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.block-cta-listing__img-wrapper .editable-image-inner {
  height: 100%;
}

.block-map {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  padding: 40px 77px;
  background: url(/images/objects/assets/map-background.jpg) center center/cover no-repeat;
}

.block-map:before {
  content: '';
  width: 100%;
  height: 160px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.51), transparent);
}

.block-map-form-preview {
  width: 615px;
  z-index: 2;
  border: 1px solid #ebeff1;
  background-color: white;
}

.block-map-form-preview .block-form {
  padding: 40px 60px 28px;
}

.block-map-form-preview .block-form .title {
  font-weight: var(--h3FontWeight, 700);
}

.block-map-form-preview .block-form .subtitle {
  margin-bottom: 22px;
  font-weight: var(--h4FontWeight, 300);
}

.block-map-form-preview .block-form .fa {
  display: none;
}

.block-map-form-preview .block-form .field {
  margin-top: 30px;
}

.block-map-form-preview .block-form .field-label {
  font-weight: bold;
  color: #767e89;
}

.block-map-form-preview .block-form .field-placeholder {
  color: rgba(66, 75, 81, 0.5);
}

.block-map-form-preview .block-form .submit {
  border-radius: 4px;
}

.block-map-form-preview .block-form .form-footer-subtitle {
  margin: 9px auto 0;
  font-size: 14px;
  line-height: 22px;
  color: #898e90;
}

.block-map-under-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px 40px;
  font-size: 12px;
  line-height: 14px;
}

.block-map-under-form > div {
  font-weight: bold;
}

.block-map-under-form .fb-button {
  padding: 3px 5px;
  position: relative;
  margin-left: 5px;
  color: white;
  border-radius: 3px;
  background-color: #4166b5;
}

.block-map-under-form .fb-button:before {
  content: '\f164';
  margin-right: 5px;
  font-family: FontAwesome;
}

.block-map-under-form .editable-button-wrapper {
  padding: 0;
  margin-right: 10px;
}

.block-map-under-form .editable-button-wrapper:last-child {
  margin-right: 0;
}

.block-map-under-form .editable-button-wrapper .text {
  color: var(--primaryColor, #bf2227);
}

.two-step-form-wrapper {
  display: flex;
  align-items: center;
  padding: 77px;
}

.two-step-form-wrapper.center {
  justify-content: center;
}

.two-step-form-wrapper.right {
  justify-content: flex-end;
}

.two-step-form-wrapper.left {
  justify-content: flex-start;
}

.two-step-form-wrapper:after {
  content: "";
  width: 100%;
  height: 600px;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, transparent, white 30%);
}

.two-step-form-wrapper:before {
  height: 160px;
  top: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.51), transparent);
}

.two-step-form-preview .title {
  padding: 0 10px;
  margin-bottom: 10px;
}

.hero-video-full {
  position: relative;
}

.hero-video-full .content-block-inner {
  padding: 0;
}

.hero-video-full .block-container {
  max-width: 850px;
  padding: 150px 15px;
}

.hero-video-full.center .block-container {
  text-align: center;
}

.hero-video-full.center .video-button-wrapper {
  margin-bottom: 40px;
}

.hero-video-full.left .block-container, .hero-video-full.right .block-container {
  max-width: 100%;
  display: flex;
  align-items: center;
}

.hero-video-full.left .video-button-wrapper,
.hero-video-full.left .editor-wrapper, .hero-video-full.right .video-button-wrapper,
.hero-video-full.right .editor-wrapper {
  width: 50%;
  flex: 0 0 50%;
}

.hero-video-full.left .editor-wrapper, .hero-video-full.right .editor-wrapper {
  max-width: 620px;
}

.hero-video-full.left .video-button-wrapper, .hero-video-full.right .video-button-wrapper {
  display: flex;
  justify-content: center;
}

.hero-video-full.left .editor-wrapper {
  padding: 0 0 0 110px;
  order: -1;
}

.hero-video-full.right .editor-wrapper {
  padding: 0 110px 0 0;
}

.hero-video-split {
  position: relative;
}

.hero-video-split .background-image-wrapper,
.hero-video-split .bg-video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  top: 2px;
  bottom: 2px;
  right: 2px;
  left: 50%;
  z-index: 3;
}

.hero-video-split .content-block-inner {
  display: flex;
  padding: 0;
}

.hero-video-split .block-container {
  width: 50%;
  padding: 150px 130px 150px 60px;
  margin: 0;
}

.hero-video-split .block-container .block-froala {
  color: #444c5c;
}

.hero-video-split .block-container .block-froala p {
  color: #444c5c;
}

.hero-video-split.right .content-block-inner {
  justify-content: flex-end;
  text-align: left;
}

.hero-video-split.right .background-image-wrapper,
.hero-video-split.right .bg-video-wrapper {
  left: 2px;
  right: 50%;
}

.hero-video-split.right .block-container {
  padding: 150px 100px;
}

.hero-video-split-25 .background-image-wrapper,
.hero-video-split-25 .bg-video-wrapper {
  left: 25%;
  z-index: 3;
}

.hero-video-split-25 .block-container {
  padding: 150px 0 150px 5%;
  position: relative;
  z-index: 4;
}

.hero-video-split-25.right .background-image-wrapper,
.hero-video-split-25.right .bg-video-wrapper {
  right: 25%;
}

.hero-video-split-25.right .block-container {
  padding: 150px 5% 150px 0;
}

.hero-video-split-30 .background-image-wrapper,
.hero-video-split-30 .bg-video-wrapper {
  left: 30%;
  z-index: 3;
}

.hero-video-split-30 .block-container {
  padding: 150px 0 150px 5%;
  position: relative;
  z-index: 4;
}

.hero-video-split-30.right .background-image-wrapper,
.hero-video-split-30.right .bg-video-wrapper {
  right: 30%;
}

.hero-video-split-30.right .block-container {
  padding: 150px 5% 150px 0;
}

.hero-video-split-35 .background-image-wrapper,
.hero-video-split-35 .bg-video-wrapper {
  left: 35%;
  z-index: 3;
}

.hero-video-split-35 .block-container {
  padding: 150px 0 150px 5%;
  position: relative;
  z-index: 4;
}

.hero-video-split-35.right .background-image-wrapper,
.hero-video-split-35.right .bg-video-wrapper {
  right: 35%;
}

.hero-video-split-35.right .block-container {
  padding: 150px 5% 150px 0;
}

.hero-video-split-40 .background-image-wrapper,
.hero-video-split-40 .bg-video-wrapper {
  left: 40%;
  z-index: 3;
}

.hero-video-split-40 .block-container {
  padding: 150px 0 150px 5%;
  position: relative;
  z-index: 4;
}

.hero-video-split-40.right .background-image-wrapper,
.hero-video-split-40.right .bg-video-wrapper {
  right: 40%;
}

.hero-video-split-40.right .block-container {
  padding: 150px 5% 150px 0;
}

.hero-video-split-60 .background-image-wrapper,
.hero-video-split-60 .bg-video-wrapper {
  left: 60%;
  z-index: 3;
}

.hero-video-split-60 .block-container {
  width: 60%;
  padding: 150px 5%;
  position: relative;
  z-index: 4;
}

.hero-video-split-60.hero-video-split .block-container {
  max-width: 100%;
}

.hero-video-split-60.right .background-image-wrapper,
.hero-video-split-60.right .bg-video-wrapper {
  right: 60%;
}

.hero-video-split-65 .background-image-wrapper,
.hero-video-split-65 .bg-video-wrapper {
  left: 65%;
  z-index: 3;
}

.hero-video-split-65 .block-container {
  width: 65%;
  padding: 150px 5%;
  position: relative;
  z-index: 4;
}

.hero-video-split-65.hero-video-split .block-container {
  max-width: 100%;
}

.hero-video-split-65.right .background-image-wrapper,
.hero-video-split-65.right .bg-video-wrapper {
  right: 65%;
}

.hero-video-split-70 .background-image-wrapper,
.hero-video-split-70 .bg-video-wrapper {
  left: 70%;
  z-index: 3;
}

.hero-video-split-70 .block-container {
  width: 70%;
  padding: 150px 5%;
  position: relative;
  z-index: 4;
}

.hero-video-split-70.hero-video-split .block-container {
  max-width: 100%;
}

.hero-video-split-70.right .background-image-wrapper,
.hero-video-split-70.right .bg-video-wrapper {
  right: 70%;
}

.hero-video-split-75 .background-image-wrapper,
.hero-video-split-75 .bg-video-wrapper {
  left: 75%;
  z-index: 3;
}

.hero-video-split-75 .block-container {
  width: 75%;
  padding: 150px 5%;
  position: relative;
  z-index: 4;
}

.hero-video-split-75.hero-video-split .block-container {
  max-width: 100%;
}

.hero-video-split-75.right .background-image-wrapper,
.hero-video-split-75.right .bg-video-wrapper {
  right: 75%;
}

.block-hero-video.center {
  text-align: center;
}

.block-hero-video.right {
  text-align: right;
}

.block-hero-video .video-button-wrapper {
  position: relative;
  z-index: 1;
  text-align: center;
}

.block-hero-video .video-icon {
  margin: 0;
}

.block-hero-video .video-icon svg {
  width: 90px;
  height: 90px;
}

.block-hero-video .block-container {
  max-width: 760px;
}

.block-hero-video .background-image-wrapper:after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.block-hero-video .additional-text {
  margin-top: 10px;
}

.hero-video-button-text {
  text-align: center;
  color: white;
  font-size: 14px;
  line-height: 28px;
}

.block-list .content-block-inner {
  padding: 30px 0;
}

.block-list-button-wrapper {
  padding-top: 30px;
  text-align: center;
}

.list-items {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.list-items:hover .list-item {
  opacity: .3;
}

.list-items:hover .list-item:hover {
  opacity: 1;
}

.list-item {
  flex: 0 0 50%;
  width: 50%;
  position: relative;
}

.list-item:nth-child(odd) {
  padding-right: 30px;
}

.list-item:nth-child(even) {
  padding-left: 30px;
}

.list-item:nth-child(even) .list-item__controls {
  padding-left: 30px;
}

.list-item:hover .list-item__controls {
  opacity: 1;
  visibility: visible;
}

.list-item.hide-item {
  opacity: .5;
}

.list-item__controls {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  position: absolute;
  bottom: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease;
}

.list-item__controls .stats-item-action {
  margin-right: 10px;
  font-family: var(--secondaryFont), Roboto, sans-serif;
}

.list-item__controls .stats-item-action.hide {
  width: auto;
  padding: 0 10px;
  border-radius: 12px;
}

.list-item-inner {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid #d8dfe6;
}

.list-item-title {
  flex: 1 1 100%;
  padding-right: 5px;
}

.list-item-value {
  flex: 1 0 100px;
  padding-left: 5px;
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

.property-hero-bordered .property-block-container {
  display: flex;
  flex-flow: row wrap;
  width: 1450px;
  max-width: 100%;
  margin: 0 auto;
  border: 1px solid #d3dce2;
  border-top: 0;
}

.property-hero-bordered .column__gallery {
  width: 60%;
}

.property-hero-bordered .column__content {
  width: 40%;
}

.property-hero-bordered__content {
  padding: 50px;
}

.property-hero-bordered__property-status {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 27px;
}

.property-hero-bordered__property-info {
  display: flex;
  justify-content: center;
  padding: 25px 0;
  margin: 0;
  margin-bottom: 30px;
  list-style: none;
  border: 1px solid #d8dfe6;
  border-width: 1px 0 1px 0;
}

.property-hero-bordered__single-info {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  padding: 0 20px;
  font-size: 16px;
  line-height: 1em;
}

.property-hero-bordered__single-info:not(:last-child) {
  border-right: 1px solid #d8dfe6;
}

.property-hero-bordered__single-info i {
  display: inline-block;
  max-width: 35px;
  margin-right: 15px;
}

.property-hero-bordered__single-info i svg {
  display: block;
  max-width: 100%;
  max-height: 25px;
}

.property-hero-bordered__single-info span {
  display: inline-block;
  line-height: 1em;
}

.property-hero-bordered__price {
  font-size: 30px;
  color: var(--primaryColor);
}

.property-hero-bordered__status {
  font-size: 16px;
  font-weight: bold;
}

.property-hero-bordered__status:before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 10px;
  border-radius: 50%;
  background-color: black;
}

.property-hero-bordered__status.status-active {
  color: #39ca25;
}

.property-hero-bordered__status.status-active:before {
  background-color: #39ca25;
}

.property-hero-bordered__status.status-closed {
  color: #e84434;
}

.property-hero-bordered__status.status-closed:before {
  background-color: #e84434;
}

.property-hero-bordered__button-wrapper {
  margin-top: 50px;
  text-align: center;
}

.property-hero-bordered__title {
  margin-bottom: 30px;
}

.property-hero-bordered__title h1,
.property-hero-bordered__title h3 {
  display: block;
  margin-bottom: 0;
  line-height: 1.2em;
}

.property-hero-bordered__gallery {
  min-height: 100%;
  position: relative;
}

.property-hero-bordered__gallery__wrapper {
  display: flex;
  flex-flow: row wrap;
}

.property-hero-bordered__gallery__btn-wrapper {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}

.property-hero-bordered__gallery__image {
  width: 33.333%;
}

.property-hero-bordered__gallery__image__inner {
  padding-top: 61%;
  position: relative;
  background-position: center;
  background-size: cover;
}

.property-hero-bordered__gallery__image:first-child {
  width: 100%;
}

.property-hero-bordered__gallery__image:first-child .property-hero-bordered__gallery__image__inner {
  padding-top: 79%;
}

.property-hero-bordered__gallery__image:first-child .property-hero-bordered__gallery__image__inner:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.5) 100%);
}

.property-hero-bordered__gallery__more-photos-info {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  color: white;
  background-color: rgba(0, 0, 0, 0.63);
}

.property-hero-bordered__gallery__more-photos-info:before {
  content: '';
  width: 47px;
  height: 47px;
  margin-top: 10px;
  margin-bottom: 10px;
  background-image: url(images/icon-plus-gallery.svg);
  background-size: cover;
}

.property-hero-bordered__gallery .popup-overlay {
  font-family: Roboto, sans-serif;
}

.most-recent-item {
  position: relative;
}

.most-recent-item--variant-full {
  padding: 150px 100px;
}

.most-recent-item--variant-full.most-recent-item--color-dark {
  color: #fff;
  background-color: #000;
}

.most-recent-item--variant-full.most-recent-item--color-dark p {
  color: #fff;
}

.most-recent-item--variant-full.most-recent-item--color-white {
  color: #000;
  background-color: #fff;
}

.most-recent-item--variant-full.most-recent-item--color-white p {
  color: #000;
}

.most-recent-item--variant-full .most-recent-item__content {
  max-width: 1140px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  text-align: center;
}

.most-recent-item--variant-full .most-recent-item__background {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .6;
}

.most-recent-item--variant-split {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
}

.most-recent-item--variant-split > * {
  width: 50%;
}

.most-recent-item--variant-split.most-recent-item--align-right {
  flex-flow: row-reverse wrap;
}

.most-recent-item--variant-split .most-recent-item__content {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  min-height: 450px;
  padding: 60px 38px;
  background-color: #f6f8fa;
}

.most-recent-item__background {
  background-position: center center;
  background-size: cover;
}

.any-page-cover {
  position: relative;
  background-position: center center;
  background-size: cover;
}

.overlay .any-page-cover {
  height: 650px;
}

.overlay .any-page-cover:after {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
}

.cta .any-page-cover {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.any-page-content {
  width: 100%;
  max-width: 700px;
  padding: 35px 34px;
  position: relative;
  z-index: 1;
  background-color: white;
}

.any-page-content .any-page-blog-prefix {
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 24px;
  color: var(--primaryColor);
  text-transform: uppercase;
  font-family: var(--secondaryFont), "Roboto", sans-serif;
}

.any-page-content .any-page-title {
  margin-bottom: 16px;
}

.any-page-content .any-page-author {
  margin-bottom: 16px;
}

.any-page-content-wrapper {
  display: flex;
  padding: 0 150px 120px;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
}

.overlay .any-page-content-wrapper {
  margin-top: -155px;
}

.cta .any-page-content-wrapper {
  padding: 100px 150px;
  min-height: 650px;
  align-items: center;
}

.center .any-page-content-wrapper {
  justify-content: center;
}

.right .any-page-content-wrapper {
  justify-content: flex-end;
}

.left .any-page-content-wrapper {
  text-align: left;
}

.any-page-spinner {
  padding: 100px 50px;
}

.any-page-error {
  padding: 150px 50px;
  text-align: center;
}

.related-content-button {
  display: inline-block;
  vertical-align: top;
  font-size: 14px;
  text-align: center;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.related-content-item .inner {
  padding: 30px 30px 25px;
  height: 100%;
  min-height: 230px;
  border: 1px solid #d8dfe6;
  border-radius: 3px;
}

.related-content-item.grid .inner {
  padding: 149% 0 0;
  position: relative;
  background-color: #d8dfe6;
  border: 0;
  border-radius: 6px;
  overflow: hidden;
}

.related-content-item.grid .related-content-image-wrapper {
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.related-content-item.grid .related-content-image-col {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.related-content-item.grid .related-content-image {
  border-radius: 6px;
}

.related-content-item.grid .related-content-image:after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.56));
}

.related-content-item.grid .related-content-entry-wrapper {
  padding: 10px 26px 18px 26px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  color: white;
}

.related-content-item.grid p {
  font-size: 15px;
  line-height: 26px;
  color: white;
}

.related-content-listing-item.large-grid .inner {
  padding: 0;
}

.related-content-listing-item.large-grid .related-content-image-wrapper {
  margin-bottom: 0;
}

.related-content-listing-item.large-grid .related-content-image:after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
}

.related-content-listing-item.large-grid .related-content-entry-wrapper {
  padding: 13px 26px 22px;
}

.related-content-listing-item.large-grid .mls {
  margin-bottom: 2px;
  font-family: var(--secondaryFont);
  font-size: 14px;
  line-height: 30px;
  font-weight: 400;
}

.related-content-listing-item.large-grid .related-content-title {
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
  font-family: var(--secondaryFont);
}

.related-content-listing-badge {
  padding: 5px 8px;
  position: absolute;
  top: 15px;
  left: 15px;
  border-radius: 3px;
  background-color: #f6911a;
  font-size: 12px;
  line-height: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  z-index: 1;
}

.related-content-property-info {
  width: 100%;
  padding: 0 26px 18px 26px;
  position: absolute;
  left: 0;
  bottom: 0;
  color: white;
  z-index: 1;
}

.related-content-property-info .price,
.related-content-property-info .bed-bath {
  display: block;
}

.related-content-property-info .price {
  font-size: 36px;
  line-height: 36px;
  font-weight: bold;
}

.related-content-property-info .bed-bath {
  margin-top: 10px;
  font-size: 14px;
  line-height: 25px;
  font-weight: bold;
  text-transform: uppercase;
}

.related-content-listing-item.grid .inner {
  padding: 250px 0 0;
  position: relative;
}

.related-content-listing-item.grid .related-content-image-wrapper {
  margin-bottom: 0;
}

.related-content-listing-item.grid .related-content-image:after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.56));
}

.related-content-listing-item.grid .related-content-entry-wrapper {
  padding: 13px 26px 22px;
}

.related-content-listing-item.grid .mls {
  margin-bottom: 2px;
  font-family: var(--secondaryFont);
  font-size: 14px;
  line-height: 30px;
  font-weight: 400;
}

.related-content-listing-item.grid .related-content-title {
  margin-top: 8px;
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
  font-family: var(--secondaryFont);
}

.related-content-listing-item.grid .related-content-title span {
  display: block;
}

.related-content-listing-item.grid .related-content-property-info {
  padding: 0;
  position: static;
}

.related-content-listing-item.grid .related-content-entry-wrapper {
  padding: 0 26px 18px 26px;
  position: relative;
  z-index: 1;
  color: white;
}

.related-content-listing-item.grid .related-content-property-info {
  width: 100%;
}

.related-content-listing-item.grid .related-content-property-info .price,
.related-content-listing-item.grid .related-content-property-info .bed-bath {
  display: block;
}

.related-content-listing-item.grid .related-content-property-info .price {
  font-size: 36px;
  line-height: 36px;
  font-weight: bold;
}

.related-content-listing-item.grid .related-content-property-info .bed-bath {
  margin-top: 10px;
  margin-bottom: 3px;
  font-size: 14px;
  line-height: 25px;
  font-weight: bold;
  text-transform: uppercase;
}

.related-content-listing-item.large-grid {
  font-family: var(--secondaryFont);
}

.related-content-listing-item.large-grid .related-content-image:after {
  display: none;
}

.related-content-listing-item.large-grid .mls {
  width: 100%;
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 0;
  text-align: center;
  color: white;
  text-decoration: none;
}

.related-content-listing-item.large-grid .price {
  margin-bottom: 0;
  font-size: 32px;
  line-height: 38px;
  font-weight: 300;
  font-family: var(--secondaryFont);
}

.related-content-listing-item.large-grid .related-content-title {
  font-size: 24px;
  line-height: 38px;
  font-weight: 500;
  font-family: var(--secondaryFont);
}

.related-content-listing-item.large-grid .related-content-title span {
  display: block;
}

.related-content-listing-item.list {
  font-family: var(--secondaryFont);
}

.related-content-listing-item.list .mls {
  margin-bottom: 7px;
  font-size: 15px;
  line-height: 26px;
  text-transform: uppercase;
  font-family: var(--secondaryFont);
  font-weight: 400;
}

.related-content-listing-item.list .price {
  margin-bottom: 0;
  font-size: 32px;
  line-height: 38px;
  font-weight: 300;
  font-family: var(--secondaryFont);
}

.related-content-listing-item.list .related-content-title {
  font-size: 24px;
  line-height: 38px;
  font-weight: 500;
  font-family: var(--secondaryFont);
}

.related-content-listing-item.list .related-content-title span {
  display: block;
}

.related-content-list.grid.flush-mode {
  padding: 0 24px;
}

.related-content-list.grid.flush-mode .related-content-items {
  margin: 0 -12px;
}

.related-content-list.grid.flush-mode .related-content-item.grid {
  padding: 0 12px 50px;
  flex: 0 0 25%;
}

.block-related-content-masonry .content-block-inner {
  padding: 100px 0;
}

.masonry .related-content-title-wrapper {
  margin-bottom: 60px;
}

.masonry .related-content-title-wrapper h2 {
  font-size: 52px;
  line-height: 58px;
}

.related-content-masonry-items {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.related-content-masonry-items .items-col {
  flex-shrink: 0;
  padding: 0 15px;
  width: 50%;
}

.related-content-masonry-items .vertical-items {
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: -15px 0;
}

.related-content-masonry-items .item .read-more,
.related-content-masonry-items .large-item .read-more {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 25px;
}

.related-content-masonry-items .item .read-more div,
.related-content-masonry-items .large-item .read-more div {
  display: inline;
}

.related-content-masonry-items .item .read-more i,
.related-content-masonry-items .large-item .read-more i {
  margin-left: 15px;
  font-size: 25px;
}

.related-content-masonry-items .large-item {
  margin-bottom: 30px;
}

.related-content-masonry-items .large-item .inside {
  position: relative;
  padding-top: 100%;
  background-color: rgba(var(--primaryColorRGB), .25);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 4px;
  overflow: hidden;
}

.related-content-masonry-items .large-item .texts {
  width: 100%;
  padding: 0 30px;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  text-align: center;
}

.related-content-masonry-items .large-item .title {
  margin-bottom: 15px;
  font-size: 32px;
  line-height: 38px;
  font-weight: 300;
  color: white;
}

.related-content-masonry-items .large-item .description {
  margin-bottom: 60px;
  font-size: 16px;
  line-height: 25px;
}

.related-content-masonry-items .large-item .read-more {
  justify-content: center;
  margin-top: 60px;
  color: white;
}

.related-content-masonry-items .large-item.listing .mls,
.related-content-masonry-items .large-item.listing .price,
.related-content-masonry-items .large-item.listing .related-content-title {
  color: white;
}

.related-content-masonry-items .item {
  flex-shrink: 0;
  height: 50%;
  padding: 15px 0;
}

.related-content-masonry-items .item .inside {
  position: relative;
  height: 100%;
  padding: 30px;
  border: 1px solid #d8dfe6;
  border-radius: 4px;
}

.related-content-masonry-items .item .date {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 25px;
  color: #9d9d9d;
}

.related-content-masonry-items .item .title,
.related-content-masonry-items .item .description {
  color: #444c5c;
}

.related-content-masonry-items .item .read-more {
  color: var(--primaryColor);
}

.related-content-masonry-items .item .title {
  margin-bottom: 10px;
  font-size: 32px;
  line-height: 38px;
  font-weight: 300;
}

.related-content-masonry-items .item .description {
  font-size: 16px;
  line-height: 25px;
  opacity: .9;
}

.related-content-masonry-items .item .read-more {
  position: absolute;
  left: 30px;
  bottom: 15px;
}

.related-content-masonry-items .listing .mls {
  margin-bottom: 7px;
  text-decoration: none;
  font-family: var(--secondaryFont);
  font-weight: 400;
}

.related-content-masonry-items .listing .price {
  margin-bottom: 0;
  font-size: 32px;
  line-height: 38px;
  font-weight: 300;
  font-family: var(--secondaryFont);
}

.related-content-masonry-items .listing .related-content-title {
  font-size: 24px;
  line-height: 38px;
  font-weight: 500;
  font-family: var(--secondaryFont);
}

.related-content-masonry-items .listing .related-content-title span {
  display: block;
}

.most-recent-item--type-post.most-recent-item--variant-full .most-recent-post__content {
  text-align: center;
  color: #fff;
}

.most-recent-item--type-post.most-recent-item--variant-full .most-recent-post__title {
  margin-bottom: .8em;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.most-recent-item--type-post.most-recent-item--variant-full .most-recent-post__headline {
  margin-bottom: .5em;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2em;
}

.most-recent-item--type-post.most-recent-item--variant-full .most-recent-post__author {
  margin-bottom: 2em;
  font-size: 24px;
}

.most-recent-item--type-post.most-recent-item--variant-full .most-recent-item__background {
  opacity: .4;
}

.most-recent-item--type-post.most-recent-item--variant-full .creator-static-button {
  border-color: white;
}

.most-recent-item--type-post.most-recent-item--variant-full .creator-static-button.border {
  color: white;
}

.most-recent-item--type-post.most-recent-item--variant-full .creator-static-button:not(.border) {
  background-color: white;
  color: black;
}

.most-recent-item--type-post.most-recent-item--variant-split .most-recent-item__content {
  color: var(--primaryColor);
}

.most-recent-item--type-post.most-recent-item--variant-split .most-recent-post__title {
  margin-bottom: 1.6em;
  font-size: 14px;
  font-weight: 500;
}

.most-recent-item--type-post.most-recent-item--variant-split .most-recent-post__author {
  margin-bottom: 2em;
  font-size: 18px;
  color: #000;
}

.most-recent-post__title {
  font-family: var(--h3Font, var(--primaryFont, Roboto, sans-serif));
  letter-spacing: .1em;
  text-transform: uppercase;
}

.block-related-content-recent-review.right .most-recent-review--split {
  flex-flow: row-reverse wrap;
}

.most-recent-review-icon {
  padding: 10px;
  margin-bottom: 30px;
}

.most-recent-review-icon .svg-icon:first-child:not(:only-child) {
  transform: rotate(180deg) translateY(10px);
  margin-right: 16px;
}

.most-recent-review-icon svg {
  width: 35px;
  height: auto;
}

.most-recent-review-icon svg path,
.most-recent-review-icon svg rect {
  fill: var(--primaryColor);
}

.most-recent-review-logo {
  width: auto;
  height: auto;
  max-width: 200px;
  margin-bottom: 35px;
}

.most-recent-review {
  position: relative;
}

.most-recent-review-logo {
  width: auto;
  height: auto;
  max-width: 200px;
  max-height: 50px;
  margin-bottom: 35px;
}

.most-recent-item--type-review.most-recent-item--variant-full .most-recent-review-headline {
  font-family: var(--h4Font, var(--primaryFont, Roboto, sans-serif));
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.most-recent-item--type-review.most-recent-item--variant-split .most-recent-review-headline {
  margin-bottom: 35px;
  font-size: var(--h4FontSize, 32px);
  line-height: 1.7em;
}

.multiple-pages-carousel-item {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 10px 15px 33px;
  position: relative;
  text-align: center;
  background-color: #efefef;
}

.multiple-pages-carousel-item:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000000);
  opacity: .6;
}

.multiple-pages-carousel-item .multiple-pages-carousel-image {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.multiple-pages-carousel-item .multiple-pages-carousel-content {
  width: 100%;
  padding-top: 149%;
  position: relative;
  z-index: 1;
}

.multiple-pages-carousel-item .multiple-pages-carousel-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: bold;
  line-height: 32px;
  color: #fff;
}

@media (max-width: 767px) {
  .multiple-pages-carousel-item .multiple-pages-carousel-title {
    font-size: 18px;
    line-height: 22px;
  }
}

.multiple-pages-carousel-pagination-wrapper {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.multiple-pages-carousel-pagination-item {
  display: inline-block;
  margin: 0 5px;
}

.multiple-pages-carousel-pagination-item.active .dot {
  background-color: #bf2a2a;
}

.multiple-pages-carousel-pagination-item .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #cddced;
}

.block-related-content-multiple-pages-carousel .content-block-inner {
  padding: 0;
}

.block-related-content-multiple-pages-carousel .multiple-pages-carousel {
  padding: 50px 0 80px;
}

.multiple-pages-carousel-wrapper {
  display: flex;
  justify-content: center;
  padding: 0 100px;
  position: relative;
}

@media (max-width: 991px) {
  .multiple-pages-carousel-wrapper {
    padding: 0 30px;
  }
}

@media (max-width: 767px) {
  .multiple-pages-carousel-wrapper {
    padding: 0 15px;
  }
}

.multiple-pages-carousel-wrapper:before, .multiple-pages-carousel-wrapper:after {
  content: '';
  width: 80px;
  height: 100%;
  position: absolute;
  top: 0;
  background-color: #efefef;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000000);
  opacity: .6;
}

@media (max-width: 991px) {
  .multiple-pages-carousel-wrapper:before, .multiple-pages-carousel-wrapper:after {
    display: none;
  }
}

.multiple-pages-carousel-wrapper:before {
  left: 0;
}

.multiple-pages-carousel-wrapper:after {
  right: 0;
}

.flush-view .multiple-pages-carousel-wrapper {
  padding: 0 12px;
}

.flush-view .multiple-pages-carousel-wrapper:before, .flush-view .multiple-pages-carousel-wrapper:after {
  display: none;
}

.multiple-pages-carousel-wrapper .multiple-pages-carousel-item {
  flex: 1 1 33%;
  position: relative;
  margin: 0 17.5px;
}

@media (max-width: 767px) {
  .multiple-pages-carousel-wrapper .multiple-pages-carousel-item {
    margin: 0 6px;
  }
}

.flush-view .multiple-pages-carousel-wrapper .multiple-pages-carousel-item {
  flex: 1 1 25%;
  margin: 0 12px;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}

.multiple-pages-carousel-wrapper .multiple-pages-carousel-pagination-wrapper {
  position: absolute;
  z-index: 10;
  bottom: -55px;
}

.vertical-slider-item {
  padding: 220px 50px;
  position: relative;
  text-align: center;
}

.vertical-slider-item:after {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.vertical-slider-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
}

.vertical-slider-content {
  max-width: 620px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  color: white;
}

.vertical-slider-content p {
  color: white;
}

.vertical-slider-pagination-wrapper {
  padding-left: 30px;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}

.vertical-slider-pagination {
  padding: 0;
  margin: 0;
  color: white;
  list-style-type: none;
  z-index: 2;
  backface-visibility: hidden;
}

.vertical-slider-pagination span {
  color: white;
}

.vertical-slider-pagination-item {
  display: flex;
  align-items: center;
}

.vertical-slider-pagination-item .dot {
  display: block;
  width: 5px;
  height: 5px;
  margin: 11px 4px;
  border-radius: 50%;
  background-color: white;
  opacity: 0.5;
}

.vertical-slider-pagination-item .title {
  display: block;
  width: 200px;
  position: absolute;
  margin-left: 25px;
  line-height: 20px;
}

.vertical-slider-pagination-item.active .dot {
  width: 11px;
  height: 11px;
  margin: 11px 1px;
  background-color: transparent;
  border: 2px solid white;
  opacity: 1;
}

.stats-item {
  flex: 1 1 100%;
  max-width: 33.3333%;
  padding: 20px 15px;
  text-align: center;
  z-index: 10;
}

.stats-item [contenteditable=true]:empty:before {
  content: attr(placeholder);
  display: block;
  color: #aaa;
}

.grid .stats-item {
  flex: 0 0 50%;
  max-width: 50%;
}

.stats-item .editable-image-inner {
  margin-top: -10px;
}

.stats-item .editable-image-icon {
  font-size: 48px;
  line-height: 68px;
  color: var(--primaryColor);
}

.stats-item-inner {
  padding-bottom: 95%;
  position: relative;
}

.stats-item-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.stats-item-box:hover .stats-item-menu {
  opacity: 1;
  visibility: visible;
}

.stats-item-box:hover .empty .manage-gallery-button {
  opacity: 1;
}

.stats-item-text-wrapper {
  padding-top: 5px;
}

.stats-item-text-wrapper h1,
.stats-item-text-wrapper h2,
.stats-item-text-wrapper h3,
.stats-item-text-wrapper h4,
.stats-item-text-wrapper h5,
.stats-item-text-wrapper h6 {
  color: var(--primaryColor);
}

.stats-item-text-wrapper p {
  margin: 0;
  color: inherit;
}

.stats-item-menu {
  list-style-type: none;
  display: flex;
  width: 100%;
  padding: 7px 0;
  justify-content: flex-end;
  margin: 0;
  position: absolute;
  bottom: 100%;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease-in-out, visibility 200ms ease-in-out;
}

.stats-item-menu li {
  margin-left: 8px;
}

.stats-item-action {
  display: block;
  padding: 0;
  width: 24px;
  height: 24px;
  position: relative;
  background-color: rgba(68, 76, 92, 0.9);
  border: 0;
  border-radius: 50%;
  font-size: 13px;
  line-height: 24px;
  color: white;
  text-align: center;
  cursor: pointer;
}

.stats-item-action i {
  display: inline-block;
  vertical-align: top;
  line-height: 25px;
}

.stats-item-action:hover {
  background-color: var(--primaryColor);
}

.stats-item-action.remove:after, .stats-item-action.remove:before {
  content: '';
  display: block;
  width: 2px;
  height: 12px;
  position: absolute;
  top: 6px;
  left: 11px;
  background-color: white;
  transform-origin: center center;
}

.stats-item-action.remove:before {
  transform: rotate(-45deg);
}

.stats-item-action.remove:after {
  transform: rotate(45deg);
}

.stats-item-action.sorting-handler {
  cursor: move;
}

.stats-list {
  display: flex;
  margin: 0 -15px;
}

.stats-list.centered {
  justify-content: center;
}

.stats-list.grid {
  flex-wrap: wrap;
}

.stats-item-empty-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f7f9fa;
}

.block-stats-centered .stats-list {
  padding-top: 40px;
}

.add-new-stat {
  height: 100%;
  position: relative;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}

.add-new-stat:before, .add-new-stat:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: var(--primaryColor);
}

.add-new-stat:before {
  width: 8px;
  height: 40px;
  margin: -20px 0 0 -4px;
}

.add-new-stat:after {
  width: 40px;
  height: 8px;
  margin: -4px 0 0 -20px;
}

.block-stats-centered {
  text-align: center;
}

.block-stats .background-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}

.block-stats .content-block-inner {
  padding: 100px 0;
}

.stats-cols {
  display: flex;
  align-items: center;
}

.stats-col.content {
  flex: 0 0 55%;
  padding-top: 15px;
  padding-right: 70px;
}

.left .stats-col.content {
  padding-right: 0;
  padding-left: 70px;
}

.stats-col.items {
  flex: 0 0 45%;
}

.left .stats-col.items {
  order: -1;
}

@keyframes PrettyLinkEditorOverlayOpen {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes PrettyLinkEditorInnerOpen {
  0% {
    transform: translate3d(100%, 0, 0);
  }
  50% {
    transform: translate3d(100%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

.PrettyLinkEditor {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
}

.PrettyLinkEditor__overlay {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  animation: 500ms PrettyLinkEditorOverlayOpen;
  will-change: opacity;
}

.PrettyLinkEditor__inner {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  width: 600px;
  height: 100%;
  max-width: 100%;
  padding: 25px;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate3d(0, 0, 0);
  background-color: white;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  overflow: auto;
  animation: 500ms PrettyLinkEditorInnerOpen;
  will-change: transform;
}

.PrettyLinkEditor__inner > * {
  width: 100%;
}

.PrettyLinkEditor__single-field:not(.no-bottom-space) {
  margin-bottom: 25px;
}

.PrettyLinkEditor__single-field.labeled {
  padding-top: 10px;
}

.PrettyLinkEditor__single-field.labeled .field-control {
  display: inline-block;
  vertical-align: middle;
}

.PrettyLinkEditor__single-field__title {
  margin-bottom: 5px;
  font-size: 16px;
  color: #9d9d9d;
  text-transform: uppercase;
}

.PrettyLinkEditor__single-field__label {
  display: inline-block;
  margin-right: 10px;
}

.PrettyLinkEditor__buttons-wrapper {
  padding-top: 20px;
  margin-top: auto;
  justify-self: flex-end;
}

.PrettyLinkEditor__buttons-wrapper button {
  margin-right: 15px;
}

.PrettyLinkEditor__title {
  font-size: 19px;
  line-height: 2.15em;
}

.PrettyLinkEditor__editor-head {
  margin-bottom: 25px;
}

.editable-box-wrapper {
  display: block;
  padding: 0;
  position: relative;
}

.editable-box-wrapper:hover .editable-box-trigger {
  opacity: 1;
  visibility: visible;
}

.block-cta .editable-box-wrapper {
  padding-top: 0;
}

.editable-box-trigger {
  display: block;
  padding: 10px 0;
  width: 50px;
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  background-color: #81c835;
  border: 0;
  border-radius: 5px;
  box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.15);
  font-size: 25px;
  line-height: 30px;
  color: white;
  text-align: center;
  transition: opacity 300ms ease-in-out, visibility 300ms ease-in-out, box-shadow 300ms ease-in-out;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}

.editable-box-trigger.right {
  left: auto;
  right: 10px;
}

.editable-box-trigger:hover {
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

.editable-box-inner {
  position: relative;
  z-index: 1;
}

.editable-box {
  position: relative;
}

.editable-box .background-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
}

.editable-box .bg-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  object-fit: cover;
}

.editable-button-wrapper {
  display: inline-block;
  margin-right: 10px;
  padding-top: 10px;
  vertical-align: top;
}

.editable-button-wrapper .text {
  display: inline-block;
  vertical-align: top;
}

.editable-button-inner {
  position: relative;
  display: inline-block;
  padding: 6px;
  vertical-align: top;
}

button.editable-button-inner {
  cursor: pointer;
  transition: border 200ms ease-in-out;
  border: 1px solid transparent;
  background-color: transparent;
}

button.editable-button-inner:hover {
  border-color: #81c835;
}

button.editable-button-inner:hover .editable-button-label {
  opacity: 1;
}

.editable-button-trigger {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  cursor: pointer;
  transition: border 200ms ease-in-out;
  border: 1px solid transparent;
  background-color: transparent;
}

.editable-button-trigger:hover {
  border-color: #81c835;
}

.editable-button-trigger:hover .editable-button-label {
  opacity: 1;
}

.editable-button {
  min-width: 215px;
  padding: 15px 50px;
  text-align: center;
  color: white;
  border-radius: 3px;
  background-color: var(--buttonColor, var(--primaryColor));
  font-size: 16px;
  line-height: 20px;
}

.editable-button br {
  display: none;
}

.editable-button.rounded {
  border-radius: 100px;
}

.editable-button.border {
  color: var(--buttonColor, var(--primaryColor));
  border: 1px solid var(--buttonColor, var(--primaryColor));
  background-color: transparent;
}

.editable-button.transparent {
  min-width: 0;
  color: white;
  background-color: transparent;
}

.editable-button.link {
  min-width: 70px;
  padding: 0;
}

.editable-button .text {
  position: relative;
  z-index: 1;
}

.creator-base-button.text-circle-arrow {
  padding: 15px 45px 15px 0;
  height: auto;
  position: relative;
  text-align: left;
  background-color: transparent;
  border-color: transparent;
}

.creator-base-button.simple-text-arrow {
  padding: 4px;
  height: auto;
  position: relative;
  background-color: transparent;
  border-color: transparent;
}

.creator-base-button.simple-text-arrow .text {
  display: inline-block;
  vertical-align: top;
}

.creator-base-button.simple-text-arrow:after {
  display: inline-block;
  vertical-align: top;
  width: 8px;
  height: 8px;
  margin-top: -2px;
  content: '';
  transform: rotate(-45deg);
  vertical-align: middle;
  border: 1px solid white;
  border-width: 0 1px 1px 0;
}

.editable-button-label {
  position: absolute;
  bottom: 100%;
  left: -1px;
  margin-bottom: -4px;
  padding: 0 10px;
  transition: opacity 200ms ease-in-out;
  opacity: 0;
  color: white;
  border-radius: 5px 5px 0 0;
  background-color: #81c835;
  font-size: 13px;
  line-height: 25px;
}

.button-icon.circle-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  width: 36px;
  height: 36px;
  margin-top: -18px;
  text-align: center;
  border: 2px solid white;
  border-radius: 50%;
  line-height: 32px;
}

.button-icon.circle-arrow:after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  margin-left: -6px;
  content: '';
  transform: rotate(-45deg);
  border: 1px solid white;
  border-width: 0 1px 1px 0;
  border-color: inherit;
}

.creator-base-button div[contenteditable=true] {
  padding: 0 10px;
  position: relative;
  z-index: 1;
  font-family: var(--buttonsFont);
  font-size: var(--buttonsFontSize);
  font-weight: var(--buttonsFontWeight);
}

.editable-image-inner {
  position: relative;
}

.editable-image-inner.empty {
  height: 200px;
  background-color: #f7f9fa;
}

.editable-image-inner.empty.small {
  height: 50px;
  background-color: transparent;
}

.editable-image-inner:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  opacity: 0;
}

.editable-image-inner .manage-gallery-button {
  top: 50%;
}

.editable-image-inner.small .manage-gallery-button {
  width: 50px;
  padding: 10px;
  position: absolute;
  left: 50%;
  margin-left: -25px;
  margin-top: -20px;
}

.editable-image-inner:hover .manage-gallery-button {
  z-index: 2;
  opacity: 1;
}

.block-form {
  padding: 55px 50px;
  text-align: center;
  color: black;
  background-color: white;
  /* Form and fields */
}

.block-form .title {
  letter-spacing: -1px;
}

.block-form .submit {
  height: 60px;
  padding: 0 30px;
  margin-top: 32px;
  font-size: var(--buttonsFontSize);
  font-weight: var(--buttonsFontWeight);
  line-height: 60px;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--buttonBorderRadius);
  background: var(--buttonsColor, var(--primaryColor));
}

.block-form .form-footer-title {
  margin-top: 18px;
  font-size: 14px;
  line-height: 25px;
  color: #242628;
  letter-spacing: 1px;
}

.block-form .form-footer-subtitle {
  font-size: 14px;
  line-height: 25px;
  color: #bcc8d6;
}

.block-form .form {
  text-align: left;
}

.block-form .field {
  margin-top: 33px;
}

.block-form .fields-group {
  display: flex;
}

.block-form .fields-group .field {
  flex-grow: 1;
  margin-left: 20px;
}

.block-form .fields-group .field:first-child {
  margin-left: 0;
}

.block-form .field-label {
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  color: #969fab;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.block-form .field-input {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 30px;
  color: #bcc8d6;
  border-bottom: 1px solid #d6dee8;
}

.block-form .field-input .fa {
  padding-right: 10px;
  font-size: 18px;
}

.block-form .field-placeholder {
  flex-grow: 1;
}

.block-form .dropdown .fa {
  padding: 0 15px;
  order: 2;
}

.block-form .dropdown .field-placeholder {
  color: #242628;
}

.input-with-button {
  display: flex;
  margin-top: 14px;
  text-align: left;
}

.input-with-button .wrapper {
  display: flex;
  align-items: center;
  width: 534px;
  padding: 6px 6px 6px 12px;
  background-color: white;
  border-radius: 4px;
}

.input-with-button .fa {
  padding-right: 10px;
  font-size: 22px;
  line-height: 22px;
  color: #b1bac2;
}

.input-with-button .input {
  display: block;
  height: auto;
  padding: 15px 40px 15px 0;
  flex-grow: 1;
  font-size: 16px;
  line-height: 20px;
  color: #b1bac2;
}

.input-with-button .button {
  height: 60px;
  padding: 0 30px;
  font-size: 16px;
  line-height: 60px;
  font-weight: bold;
  color: white;
  text-align: center;
  text-transform: uppercase;
  background-color: #bf2227;
  border-radius: 3px;
}

.input-with-button .button.rounded {
  border-radius: 40px;
}

.input-with-button .button.square {
  position: relative;
}

.input-with-button .button.square:after {
  content: " ";
  display: block;
  width: 1px;
  height: 26px;
  position: absolute;
  top: 17px;
  right: 100%;
  margin-right: 20px;
  background-color: #d8dfe6;
}

.input-with-button .creator-base-button {
  min-height: 48px;
  border-color: rgba(var(--buttonsColorRGB, var(--primaryColorRGB)), 0.2);
  background-color: rgba(var(--buttonsColorRGB, var(--primaryColorRGB)), 0.1);
  border-width: 1px;
  color: var(--buttonsColor, var(--primaryColor));
  font-family: var(--buttonsFont, var(--primaryFont, Roboto)), sans-serif;
  line-height: 48px;
  transition: border-color .2s, background-color .2s;
}

.creator-landing-form {
  width: 540px;
  padding: 55px 45px 60px;
  font-family: var(--primaryFont), sans-serif;
  text-align: center;
  color: #252525;
  background-color: #fff;
}

.creator-landing-form h4 {
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 300;
  line-height: 1.4em;
}

.creator-landing-form__privacy-policy {
  font-size: 16px;
  line-height: 1.5em;
  color: #6d7a86;
}

.creator-landing-form__privacy-policy span {
  color: var(--primaryColor);
  text-decoration: underline;
}

.creator-landing-form .submit-button {
  display: block;
  padding: 10px 30px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6em;
  color: var(--buttonsColor, var(--primaryColor));
  border-width: 1px;
  border-style: solid;
  border-color: rgba(var(--buttonsColorRGB, var(--primaryColorRGB)), 0.4);
  border-radius: var(--buttonBorderRadius, 4px);
  background-color: rgba(var(--buttonsColorRGB, var(--primaryColorRGB)), 0.2);
}

.landing-form-field {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.5em;
  text-align: left;
  color: #252525;
}

.landing-form-field--input {
  display: block;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  padding: 12px 14px;
  color: #808d98;
  border: 1px solid #d8dfe6;
  border-radius: 4px;
  box-shadow: inset 0 0 10px -5px #66717b;
}

.landing-form-field--input i.fa {
  display: block;
  margin-right: 15px;
  color: #c0c6cc;
}

.landing-form-field--input i.fa i {
  font-size: 20px;
  line-height: 1em;
}

.landing-form-field--input i.fa .fa-phone {
  transform: rotate(90deg);
}

.landing-form-field--radio-buttons .landing-form-field__label {
  margin-bottom: 8px;
  color: #6d7a86;
}

.landing-form-field--radio-buttons .landing-form-field__single-value {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  padding: 8px 10px;
  margin-bottom: 8px;
  font-weight: 600;
  color: #808d98;
  border: 1px solid #e0e5ea;
  border-radius: 4px;
}

.landing-form-field--radio-buttons .landing-form-field__single-value:before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  border: 1px solid #d5d8de;
  border-radius: 50%;
  transition: all 300ms ease;
}

.landing-form-field--radio-buttons .landing-form-field__single-value:first-child {
  color: var(--buttonsColor, #bf2026);
  border-color: var(--buttonsColor, #bf2026);
}

.landing-form-field--radio-buttons .landing-form-field__single-value:first-child:before {
  border: 5px solid var(--buttonsColor, #bf2026);
}

.landing-form-field--or-placeholder {
  width: 100%;
  margin-top: 28px;
  margin-bottom: 18px;
  text-align: center;
  overflow: hidden;
}

.landing-form-field--or-placeholder span {
  display: inline-block;
  padding: 0 10px;
  position: relative;
  color: #6d7a86;
}

.landing-form-field--or-placeholder span:before, .landing-form-field--or-placeholder span:after {
  content: '';
  display: block;
  width: 1000px;
  height: 1px;
  position: absolute;
  top: 50%;
  background-color: #e5eaed;
}

.landing-form-field--or-placeholder span:before {
  right: 100%;
}

.landing-form-field--or-placeholder span:after {
  left: 100%;
}

.landing-form-field--button-facebook, .landing-form-field--button-google {
  display: block;
  padding: 11px 54px;
  position: relative;
  margin-bottom: 16px;
  font-family: var(--primaryFont), sans-serif;
  font-weight: 500;
  line-height: 1.6em;
  text-align: center;
  border-radius: var(--buttonBorderRadius, 4px);
}

.landing-form-field--button-facebook i.fa, .landing-form-field--button-google i.fa {
  width: 50px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate3d(0, -50%, 0);
  font-size: 24px;
  border-right: 1px solid rgba(128, 141, 152, 0.3);
}

.landing-form-field--button-facebook {
  color: white;
  background-color: #3b5998;
}

.landing-form-field--button-google {
  border: 1px solid #e0e5ea;
}

.landing-form-field--button-google:before {
  content: '';
  width: 50px;
  height: 23px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate3d(0, -50%, 0);
  border-right: 1px solid rgba(128, 141, 152, 0.3);
  background-image: url(https://developers.google.com/identity/images/g-logo.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 23px 23px;
}

.creator-static-button {
  cursor: default;
}

.creator-static-button:not(:last-child) {
  margin-right: 15px;
}

.AlignmentButtonsList {
  padding: 0;
  margin: 0;
  background: white;
}

.AlignmentButtonsList li {
  display: inline-block;
  vertical-align: bottom;
  border-bottom: none;
}

.AlignmentButton {
  width: 42px;
  height: 42px;
  padding: 9px;
}

.AlignmentButton__Icon {
  display: block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 24px 48px;
}

.AlignmentButton__Icon:before {
  display: none;
}

.AlignmentButton__Icon.icon-reset {
  display: flex;
  align-items: center;
  justify-content: center;
}

.AlignmentButton__Icon.icon-reset:before {
  content: "None";
  display: block;
  font-size: small;
  font-style: normal;
}

.AlignmentButton__Icon.icon-align-left {
  background-image: url("/images/icon-align-left.png");
}

.AlignmentButton__Icon.icon-align-right {
  background-image: url("/images/icon-align-right.png");
}

.AlignmentButton__Icon.icon-align-center {
  background-image: url("/images/icon-align-center.png");
}

.AlignmentButton__Icon.icon-align-justify {
  background-image: url("/images/icon-align-justify.png");
}

.AlignmentButton--active .AlignmentButton__Icon, .AlignmentButton:hover .AlignmentButton__Icon, .fr-toolbar .fr-command.fr-btn[data-cmd="curaytorAlign"]:hover .AlignmentButton__Icon, .fr-toolbar .fr-command.fr-btn.fr-active[data-cmd="curaytorAlign"] .AlignmentButton__Icon {
  background-position: 0 -24px;
}

.AlignmentButton--active .AlignmentButton__Icon.icon-reset, .AlignmentButton:hover .AlignmentButton__Icon.icon-reset, .fr-toolbar .fr-command.fr-btn[data-cmd="curaytorAlign"]:hover .AlignmentButton__Icon.icon-reset, .fr-toolbar .fr-command.fr-btn.fr-active[data-cmd="curaytorAlign"] .AlignmentButton__Icon.icon-reset {
  background-position: 50% 50%;
  filter: brightness(0) invert(71%) sepia(14%) saturate(2085%) hue-rotate(130deg) brightness(88%) contrast(79%);
}

.fr-toolbar .fr-command.fr-btn.fr-btn[data-cmd="curaytorAlign"] > .AlignmentButton__Icon {
  flex-basis: 24px;
  flex-shrink: 0;
  margin: auto;
}

.fr-toolbar .fr-command.fr-btn.fr-btn[data-cmd="curaytorAlign"] .icon-reset {
  background-image: url("/images/icon-align-left.png");
  background-position: 0 0;
}

.fr-toolbar .fr-command.fr-btn.fr-btn[data-cmd="curaytorAlign"] .icon-reset:before {
  display: none;
}

.fr-toolbar .fr-command.fr-btn.fr-btn[data-cmd="curaytorAlign"]:hover, .fr-toolbar .fr-command.fr-btn.fr-btn[data-cmd="curaytorAlign"].fr-active, .fr-toolbar .fr-command.fr-btn.fr-btn[data-cmd="curaytorAlign"].fr-active {
  background-color: transparent !important;
}

.fr-toolbar .fr-command.fr-btn.fr-btn[data-cmd="curaytorAlign"]:hover .icon-reset, .fr-toolbar .fr-command.fr-btn.fr-btn[data-cmd="curaytorAlign"].fr-active .icon-reset, .fr-toolbar .fr-command.fr-btn.fr-btn[data-cmd="curaytorAlign"].fr-active .icon-reset {
  background-position: 0 0;
}

.sidebar-nav .current .nav-accounts-convert path {
  stroke: #444c5c;
}

.accounts-page-convert {
  min-height: 270px;
  padding-top: 20px;
}

@media screen and (min-width: 1200px) {
  .accounts-page-convert .option-section {
    max-width: 100%;
  }
}

.account-convert-form .field-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 12px 0;
  position: relative;
}

.account-convert-form .field-group:first-child {
  min-height: 100px;
}

.account-convert-form.dropdown-selected .btn {
  padding: 10px 17px;
}

.account-convert-form.dropdown-selected .btn .custom-icon {
  width: 25px;
  margin-top: 1px;
  margin-right: 17px;
}

.account-convert-form label {
  min-width: 130px;
  margin-right: 40px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.account-convert-form .btn {
  padding: 9px 16px;
  margin: 15px auto 15px 0;
  font-size: 15px;
  letter-spacing: .02em;
}

@media (max-width: 1250px) {
  .account-convert-form .btn {
    margin-left: auto;
  }
}

.account-convert-form .btn .custom-icon {
  width: 24px;
  margin-right: 10px;
}

.account-convert-form .dropdown-with-avatars {
  margin-right: 15px;
}

@media (max-width: 991px) {
  .account-convert-form .dropdown-with-avatars {
    margin-right: 0;
  }
}

.account-convert-form .checkbox-wrapper label {
  min-width: auto;
}

.announcement-preview-button {
  padding: 3px 15px 2px;
  background-color: #f7f9fa;
  border: 0;
  font-size: 11px;
  color: white;
}

.announcement-banner-preview {
  padding: 24px;
  max-width: 415px;
  margin: 0 auto;
  background-color: white;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  font-size: 16px;
  line-height: 24px;
  color: #9d9d9d;
}

.announcement-banner-preview h1,
.announcement-banner-preview h2,
.announcement-banner-preview h3,
.announcement-banner-preview h4,
.announcement-banner-preview h5,
.announcement-banner-preview h6 {
  color: #444c5c;
}

.announcement-banner-preview .announcement-confirmation-preview-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 380px;
}

.announcement-banner-preview h3 {
  margin-bottom: 5px;
  font-size: 26px;
  line-height: 32px;
}

.announcement-banner-preview .btn {
  min-width: 314px;
  font-size: 16px;
  line-height: 43px;
}

.announcement-banner-preview .countdown-timer {
  padding: 11px 0;
  margin-top: 4px;
  margin-bottom: 20px;
}

.announcement-banner-preview .countdown-timer .title {
  font-size: 14px;
  line-height: 24px;
}

.announcement-banner-preview .countdown-timer .timer {
  font-size: 32px;
  line-height: 40px;
}

.announcement-preview-bar {
  display: flex;
  padding: 10px 30px;
  border-top: 3px solid #c12b2c;
  background-color: white;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #444c5c;
}

.announcement-preview-bar.light {
  color: white;
}

.announcement-preview-bar.light .btn {
  color: #c12b2c;
  background-color: white;
}

.announcement-preview-bar.dark .btn {
  color: white;
  background-color: #c12b2c;
}

.announcement-preview-bar p {
  margin: 0;
}

.announcement-preview-bar .texts {
  margin-right: 10px;
}

.announcement-preview-bar .children {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.announcement-preview-bar .button-wrapper {
  color: #c12b2c;
}

.announcement-preview-bar h3 {
  font-size: 18px;
  line-height: 22px;
}

.announcement-preview-bar .poll-buttons {
  display: flex;
  padding-left: 20px;
}

.announcement-preview-bar .announcement-poll-button {
  padding: 3px 15px;
  min-height: 34px;
  min-width: 70px;
  margin: 0 5px;
  border-radius: 2px;
  box-shadow: none;
  font-size: 11px;
}

.announcement-preview-bar .announcement-poll-button .fa {
  font-size: 18px;
}

.announcement-preview-bar .announcement-poll-button:first-child {
  margin-left: 0;
}

.announcement-preview-bar .announcement-poll-button:last-child {
  margin-right: 0;
}

.announcement-preview-bar .media-wrapper {
  width: 90px;
  margin-right: 20px;
}

.announcement-preview-bar .media-wrapper .announcement-media {
  margin-bottom: 0;
}

.announcement-preview-bar .countdown-timer {
  width: auto;
  margin: -10px 20px 0 0;
}

.announcement-preview-bar .announcement-media {
  width: 80px;
  position: relative;
  margin-right: 16px;
  margin-bottom: 0;
}

.announcement-cols-with-image {
  display: flex;
}

.announcement-cols-with-image .image {
  max-width: 50%;
  flex: 0 0 50%;
  padding-right: 15px;
}

.announcement-cols-with-image .image img {
  border-radius: 5px;
}

.announcement-cols-with-image .image video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.announcement-cols-with-image .image .player-wrapper {
  position: relative;
  padding-top: 56.25%;
}

.announcement-cols-with-image .image iframe {
  position: absolute;
  top: 0;
  left: 0;
}

.announcement-cols-with-image .content {
  flex: 1 1 100%;
  align-self: center;
  text-align: center;
}

.announcement-cols-with-image .content:not(:only-child) {
  padding-left: 15px;
}

.announcement-cols-with-image .buttons-wrapper {
  margin-top: 30px;
}

.announcement-cols-with-image .buttons-wrapper:only-child {
  margin-top: 0;
}

.announcement-confirmation-preview-content {
  text-align: center;
}

.announcement-confirmation-preview-content .icon {
  margin-bottom: 10px;
  color: #c12b2c;
}

.announcement-confirmation-preview-content .icon svg {
  width: 45px;
  height: auto;
}

.announcement-confirmation-preview-content .icon path {
  fill: currentColor;
}

.announcement-confirmation-preview-content .button-wrapper {
  margin-top: 10px;
}

.ContainerBox {
  max-width: 300px;
  padding: 20px;
  border-radius: 4px;
}

.ContainerBox.with-container {
  background-color: white;
}

.left .ContainerBox {
  margin-left: 15px;
}

.right .ContainerBox {
  margin-right: 15px;
}

.countdown-timer {
  width: 220px;
  padding: 10px 0 0;
  position: relative;
  margin: 0 auto;
  overflow-x: hidden;
  text-align: center;
  color: #c12b2c;
}

.light .countdown-timer {
  color: white;
}

.countdown-timer .border {
  padding: 0 10px;
  border: 1px solid #c12b2c;
  border-top: 0;
}

.countdown-timer .title {
  display: inline-block;
  padding: 0 9px;
  position: relative;
  margin-top: -5px;
  margin-bottom: 0;
  font-size: 8px;
  line-height: 10px;
  text-transform: uppercase;
  color: inherit;
  white-space: nowrap;
  background-color: inherit;
}

.countdown-timer .title:after, .countdown-timer .title:before {
  content: " ";
  display: block;
  width: 100px;
  height: 1px;
  position: absolute;
  top: 50%;
  background-color: currentColor;
}

.countdown-timer .title:before {
  left: 100%;
}

.countdown-timer .title:after {
  right: 100%;
}

.countdown-timer .timer {
  display: block;
  margin-top: -19px;
  font-size: 14px;
  line-height: 25px;
  white-space: nowrap;
}

.light .countdown-timer .border {
  border-color: white;
}

.light .countdown-timer .title {
  color: white;
}

.announcement-media {
  margin-bottom: 20px;
}

.announcement-media video,
.announcement-media img {
  display: block;
  width: 100%;
  height: auto;
}

.announcement-media .player-wrapper {
  position: relative;
  padding-top: 56.25%;
}

.announcement-media .react-player {
  position: absolute;
  top: 0;
  left: 0;
}

.announcement-poll-button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 0;
  padding: 10px 25px;
  min-width: 130px;
  min-height: 65px;
  margin: 0 10px;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  line-height: 22px;
  color: #9d9d9d;
}

.announcement-poll-button .fa {
  margin-right: 15px;
  font-size: 20px;
}

.announcement-poll-button span + .fa {
  margin-left: 10px;
}

.video-upload .announcement-poll-button,
.video-url .announcement-poll-button {
  padding: 5px 15px;
  min-width: 80px;
  min-height: 45px;
  margin: 0 8px;
}

.video-upload .announcement-poll-button:first-child,
.video-url .announcement-poll-button:first-child {
  margin-left: 0;
}

.video-upload .announcement-poll-button:last-child,
.video-url .announcement-poll-button:last-child {
  margin-right: 0;
}

.video-upload .announcement-poll-button .fa,
.video-url .announcement-poll-button .fa {
  margin-right: 10px;
  font-size: 16px;
}

.announcement-takeover-preview-content.poll .buttons-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.announcement-takeover-preview-content.poll .announcement-poll-button {
  display: flex;
  flex-direction: column;
  width: 100px;
  padding: 10px;
  margin-left: 10px;
  margin-right: 0;
  font-size: 10px;
  line-height: 16px;
  border-radius: 0;
  border: none;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1);
}

.announcement-takeover-preview-content.poll .announcement-poll-button:first-child {
  margin-left: 0;
}

.announcement-takeover-preview-content.poll .announcement-poll-button i {
  margin-right: 0;
  margin-bottom: 5px;
}

.announcement-takeover-preview {
  display: flex;
  align-items: center;
  width: 576px;
  min-height: 350px;
  position: relative;
}

.announcement-takeover-preview.image .image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.announcement-takeover-preview.right {
  justify-content: flex-end;
}

.announcement-takeover-preview.center {
  justify-content: center;
}

.announcement-takeover-preview.light {
  color: white;
}

.announcement-takeover-preview .player-wrapper {
  height: 100%;
}

.announcement-takeover-preview.video-upload .image,
.announcement-takeover-preview.video-upload .announcement-takeover-preview-content, .announcement-takeover-preview.video-url .image,
.announcement-takeover-preview.video-url .announcement-takeover-preview-content {
  flex: 0 0 50%;
}

.announcement-takeover-preview.video-upload .image, .announcement-takeover-preview.video-url .image {
  padding-left: 40px;
}

.announcement-takeover-preview.video-upload.left .image, .announcement-takeover-preview.video-url.left .image {
  padding-left: 0;
  padding-right: 40px;
}

.announcement-takeover-preview.video-upload.left .announcement-takeover-preview-content, .announcement-takeover-preview.video-url.left .announcement-takeover-preview-content {
  order: -1;
}

.announcement-takeover-preview .image {
  overflow: hidden;
}

.announcement-takeover-preview .image img,
.announcement-takeover-preview .image video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.announcement-takeover-preview-content {
  flex: 0 0 45%;
  position: relative;
  z-index: 1;
  text-align: center;
}

.announcement-takeover-preview-content .button-wrapper {
  padding: 5px 15px 15px;
}

.announcement-takeover-preview-content .btn {
  color: #c12b2c;
}

.dark .announcement-takeover-preview-content .btn {
  color: white;
  background-color: #c12b2c;
}

.announcement-takeover-preview-content .announcement-preview-button {
  width: 100%;
  padding: 0;
  border-radius: 2px;
  font-size: 9px;
}

.announcement-takeover-preview-content .countdown-timer {
  width: 120px;
  margin-bottom: 10px;
}

.announcement-takeover-preview-content h3 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 22px;
  font-family: var(--h1Font, var(--primaryFont, Roboto)), sans-serif;
}

.announcement-takeover-preview-content p {
  font-size: 10px;
}

.announcement-takeover-preview-content em {
  font-style: normal;
  text-decoration: underline;
}

.announcement-preview-content {
  text-align: center;
}

.announcement-preview-content .announcement-poll-button {
  display: inline-flex;
  vertical-align: top;
}

.announcement-preview-content .btn {
  margin-top: 10px;
}

.announcement-preview-content .children {
  padding-top: 10px;
}

.announcement-countdown-bar-section {
  padding: 12px 15px 7px;
  margin-right: 15px;
  position: relative;
  border: 1px solid #c12b2c;
}

.announcement-countdown-bar-section .title {
  padding: 0 5px;
  position: absolute;
  top: -9px;
  left: 50%;
  margin: 0;
  transform: translate3d(-50%, 0, 0) scale(1);
  backface-visibility: hidden;
  background-color: white;
  font-size: 11px;
  line-height: 20px;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.announcement-countdown-bar-section .timer {
  font-size: 20px;
  line-height: 20px;
  white-space: nowrap;
}

.announcement-countdown-bar-section .children {
  align-items: center;
}

.announcement-preview-countdown .fake-privacy {
  display: block;
  font-size: 11px;
  color: #444c5c;
}

.announcement-preview-countdown .buttons-wrapper {
  margin-top: 15px;
  margin-bottom: 10px;
}

.announcement-fake-forms {
  padding-top: 10px;
}

.announcement-fake-forms .fake-input {
  text-align: left;
}

.announcement-fake-forms .fake-input .label,
.announcement-fake-forms .fake-input .text {
  display: block;
}

.announcement-fake-forms .fake-input .label {
  margin-bottom: 5px;
  font-size: 9px;
  color: #444c5c;
  text-transform: uppercase;
}

.announcement-fake-forms .fake-input .text {
  padding-bottom: 3px;
  margin-bottom: 10px;
  border-bottom: 1px solid #d8dfe6;
  font-size: 11px;
}

.announcement-fake-forms .fake-input.active .label {
  color: #c12b2c;
}

.announcement-fake-forms .fake-input.active .text {
  border-color: #c12b2c;
}

.announcement-fake-forms .cols {
  display: flex;
}

.announcement-fake-forms .cols .fake-input {
  flex: 0 0 50%;
}

.announcement-fake-forms .cols .fake-input:first-child {
  padding-right: 10px;
}

.announcement-fake-forms .cols .fake-input:last-child {
  padding-left: 10px;
}

.announcement-preview-cta .btn {
  width: 100%;
  text-align: center;
}

.confirmation-banner-poll .icon {
  margin-right: 20px;
}

.confirmation-banner-poll .icon svg {
  width: 30px;
  height: auto;
}

.confirmation-banner-poll .icon svg path {
  fill: currentColor;
}

.announcement-preview-cta .btn {
  width: 100%;
  text-align: center;
}

.announcements-preview-wrapper {
  font-size: 14px;
}

.announcements-preview-wrapper .btn {
  text-transform: none;
  white-space: nowrap;
}

.announcements-preview-wrapper .btn > .fa {
  margin-left: 5px;
}

.announcements-preview-wrapper .btn .fa {
  font-size: inherit;
}

.announcements-preview-inner {
  max-width: 580px;
  margin: 0 auto;
}

.announcement-create-wrapper {
  display: flex;
}

.announcement-create-wrapper .LogoDropzone__Inner {
  padding: 35px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.announcement-create-forms {
  flex: 1 1 100%;
  min-width: 380px;
  padding: 0 25px 0 75px;
}

@media (max-width: 1440px) {
  .announcement-create-forms {
    padding-left: 30px;
  }
}

.announcement-create-previews {
  flex: 0 0 50%;
  padding: 10px 30px 80px;
  background-color: #f7f9fa;
}

@media (max-width: 1700px) {
  .announcement-create-previews {
    flex: 0 0 650px;
  }
}

.announcement-type-item .svg-icon {
  margin: 0 10px 0 0;
}

.announcement-type-item svg {
  display: block;
  width: 24px;
  height: 24px;
}

.announcement-type-item svg path {
  fill: currentColor;
}

.announcements-conversion-type {
  padding-top: 10px;
  padding-bottom: 30px;
}

.announcements-conversion-type .input-form-row {
  display: block;
}

.announcements-conversion-type .input-label {
  display: block;
  margin: 20px 0;
}

.announcements-conversion-type .input-wrapper {
  padding: 0;
}

.announcement-section-title {
  margin: 10px 0 30px;
}

.announcement-preview-type {
  padding-bottom: 20px;
}

.announcement-preview-type .input-wrapper {
  background-color: transparent;
}

.announcement-preview-type .input-label {
  flex-grow: 0;
  width: auto;
  padding-right: 10px;
  color: #9d9d9d;
  font-size: 14px;
}

.announcement-validation-message {
  padding: 10px 15px;
  margin: 15px 75px;
  background-color: #f7f9fa;
  color: #e64545;
}

.announcement-validation-message .fa {
  margin-right: 10px;
}

.announcement-validation-message p {
  margin: 0;
}

@media (max-width: 1440px) {
  .announcement-validation-message {
    margin: 15px 30px;
  }
}

.announcement-form-container {
  padding: 30px 30px 100px 75px;
}

.announcement-form-container .input-form-row {
  align-items: flex-start;
}

.announcement-form-container.full {
  max-width: 100%;
}

@media (max-width: 1440px) {
  .announcement-form-container {
    padding-left: 30px;
  }
}

.announcements-displayed-on {
  display: flex;
  max-width: 90%;
  font-size: 14px;
  line-height: 20px;
  color: #8996a2;
}

.announcements-displayed-on a {
  flex-shrink: 0;
  display: block;
  margin-left: 10px;
  text-decoration: none;
  color: #444c5c;
}

.announcements-displayed-on .label {
  flex-shrink: 0;
  margin-right: 5px;
}

.announcements-displayed-on .label-instead-of-pages {
  color: #444c5c;
}

.announcements-displayed-on .pages-list {
  display: flex;
  flex-wrap: wrap;
  padding-right: 80px;
  position: relative;
  margin-left: -10px;
}

.announcements-displayed-on .open-trigger {
  padding-left: 22px;
  padding-right: 0;
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.announcements-displayed-on .open-trigger:before {
  content: '';
  width: 9px;
  height: 9px;
  position: absolute;
  left: 3px;
  top: 2px;
  transform-origin: center center;
  transform: rotate(-45deg);
  border-left: 1px solid #a2a2a2;
  border-bottom: 1px solid #a2a2a2;
}

.announcements-displayed-on .open-trigger.flip:before {
  top: 7px;
  transform: rotate(135deg);
}

.announcement-list-item {
  padding: 0 30px;
}

.announcement-list-item .inner {
  padding: 20px 0;
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #f4f4f4;
}

.announcement-list-item:last-child .inner {
  border-bottom: 0;
}

.announcement-list-item .image-wrapper {
  flex: 0 0 189px;
  height: 95px;
  margin-right: 30px;
  border-radius: 5px;
  border: 1px solid #d8dfe6;
  overflow: hidden;
}

.announcement-list-item .image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

.announcement-list-item .info {
  flex: 1 1 100%;
  padding-top: 10px;
}

.announcement-list-item .meta {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  color: #9d9d9d;
  line-height: 20px;
}

.announcement-list-item .meta ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.announcement-list-item .meta li {
  display: inline-block;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
  vertical-align: top;
}

.announcement-list-item .meta li:after {
  content: " ";
  display: block;
  width: 1px;
  height: 12px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -5px;
  background-color: #9d9d9d;
}

.announcement-list-item .meta li:last-child:after {
  display: none;
}

.announcement-list-item .meta .CreatorListBadge,
.announcement-list-item .meta .clock {
  margin-right: 8px;
}

.announcement-list-item .Badge {
  margin-right: 10px;
}

.announcement-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.announcements-toasts {
  width: 270px;
  position: fixed;
  bottom: 75px;
  right: 50px;
  z-index: 999;
}

@media (max-width: 1440px) {
  .announcements-toasts {
    right: 30px;
  }
}

.announcements-toasts .pause path {
  fill: #ff9c00;
}

.announcements-toasts .bin path {
  fill: #e64545;
}

.announcements-toasts .play path {
  fill: #81c835;
}

.announcements-toasts p {
  margin-bottom: 0;
}

.templates-panel {
  padding: 30px 0;
  margin-bottom: 22px;
  background-color: #302e32;
}

.templates-panel .container {
  position: relative;
}

.templates-panel .title {
  font-size: 12px;
  line-height: 15px;
  color: #96999a;
  text-transform: uppercase;
}

.templates-panel .page-templates-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 -15px;
  color: white;
}

.templates-panel-close {
  padding: 4px 16px;
  position: absolute;
  top: 0;
  right: 30px;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  color: white;
  text-transform: uppercase;
  border: 1px solid white;
  border-radius: 30px;
  outline: none;
  background-color: transparent;
  cursor: pointer;
}

.filter-button-wrapper {
  display: inline-block;
  margin-bottom: 18px;
  vertical-align: top;
}

.filter-button {
  display: block;
  padding: 1px 25px 0 12px;
  position: relative;
  border: 0;
  cursor: pointer;
  font-family: var(--fontSecondary);
  font-size: 15px;
  line-height: 24px;
  font-weight: 300;
}

.filter-button:not(.active) {
  background-color: transparent;
}

.filter-button.active {
  padding: 1px 30px 0 12px;
  margin-right: 15px;
  border-radius: 30px;
  background-color: #c12b2c;
  color: white;
}

.filter-button.active:after, .filter-button.active:before {
  content: " ";
  display: block;
  width: 12px;
  height: 1px;
  background-color: white;
  transform-origin: center center;
  position: absolute;
  right: 10px;
  top: 12px;
}

@media (max-width: 767px) {
  .filter-button.active:after, .filter-button.active:before {
    right: 14px;
  }
}

.filter-button.active:before {
  transform: rotate(45deg);
}

.filter-button.active:after {
  transform: rotate(-45deg);
}

.facet-wrapper {
  display: flex;
  padding: 18px 0 0;
  border-bottom: 1px solid #d8dfe6;
}

.facet-wrapper:last-child {
  border: none;
}

.facet-label {
  width: 200px;
  flex: 0 0 200px;
}

.facet-list-wrapper {
  width: 100%;
  flex: 1 1 100%;
}

.facet-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  line-height: 24px;
  font-weight: 300;
}

.facet-list.closed {
  overflow: hidden;
}

.facet-display-all {
  display: block;
  width: 125px;
  padding: 12px 30px 12px 12px;
  position: relative;
  margin-top: -12px;
  margin-bottom: 18px;
  border: 0;
  background-color: transparent;
  font-size: 16px;
  line-height: 23px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.facet-display-all:after {
  content: " ";
  display: block;
  position: absolute;
  top: 16px;
  right: 13px;
  width: 10px;
  height: 10px;
  border: 1px solid #838384;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.facet-text {
  display: inline-block;
  vertical-align: top;
  max-width: 500px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1440px) {
  .facet-text {
    max-width: 350px;
  }
}

@media (max-width: 1199px) {
  .facet-text {
    max-width: 250px;
  }
}

.brain-subheader .button-wrapper {
  padding-top: 5px;
}

@media (max-width: 767px) {
  .brain-subheader .button-wrapper {
    margin-bottom: 20px;
    text-align: center;
  }
}

.brain-subheader .button-wrapper.right {
  float: right;
}

@media (max-width: 767px) {
  .brain-subheader .button-wrapper.right {
    float: none;
  }
}

.brain-subheader .btn {
  padding: 5px 14px 4px 13px;
}

.editable-items-list {
  padding-right: 15px;
}

.editable-items-list .menu-sections-item {
  padding: 12px 0;
  box-shadow: none;
  animation: none;
}

.editable-items-list .icon-wrapper img {
  border-radius: 3px;
}

.series-of-uploads {
  padding: 0 28px;
}

.series-of-uploads .series-label {
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 500;
}

.series-of-uploads .upload-boxes-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.series-of-uploads .settings-logo-box {
  flex-shrink: 0;
  width: 25%;
}

.FontSourcesFooter {
  display: flex;
  justify-content: flex-end;
}

.FontSourcesFooter .actions {
  width: 250px;
}

.FontSourcesFooter .actions i {
  width: 16px;
}

.ItemFrame {
  padding: 15px;
  position: relative;
  margin-bottom: 20px;
  border: 1px solid #d8dfe6;
  border-radius: 6px;
}

.ItemFrame .popup-inside {
  padding: 45px 0;
  color: #444c5c;
}

.ItemFrame .popup-buttons {
  margin-top: 15px;
}

.ItemFrame .close-button {
  position: absolute;
  right: 15px;
  top: 15px;
}

.FontSourceTypekit h3 {
  font-size: 18px;
  line-height: 1.2;
}

.FontSourceTypekit footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.FontSourceTypekit .body {
  margin-top: 15px;
}

.FontSourceTypekit .Input {
  margin-top: 7px;
}

.single-form-settings {
  padding: 0 15px;
}

.single-form-settings--full {
  width: 100%;
}

.single-form-settings--full .single-form-settings__content {
  display: flex;
  flex-flow: row wrap;
}

.single-form-settings--full .single-form-settings__preview, .single-form-settings--full .single-form-settings__fields {
  width: 50%;
}

.single-form-settings--half {
  width: 50%;
}

.single-form-settings--half .input-form-row {
  display: block;
}

.single-form-settings--half .input-label {
  display: block;
  max-width: 100%;
}

.single-form-settings--half .single-form-settings__fields {
  max-width: 420px;
}

.single-form-settings__content {
  padding: 40px 45px;
}

.single-form-settings .input-label {
  min-height: 0;
  padding: 13px 0;
  line-height: 1.2em;
}

.single-form-settings .settings-subheader {
  margin-top: -1px;
  border-top: 1px solid #f4f4f4;
}

.single-form-settings .input-form-row.checkbox {
  display: flex;
  flex-flow: row nowrap;
}

.single-form-settings .drawer-subtitle {
  margin-bottom: 1em;
}

.single-form-settings .drawer-subtitle:not(:first-child) {
  margin-top: 2.5em;
}

.forms-settings-page {
  overflow: hidden;
}

.forms-settings-page__forms {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
}

.settings-review-submit-form .field-control--simple-input input {
  height: 48px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

.settings-review-submit-form .options-input-wrapper {
  padding: 0;
}

.theme-field-row--row-of-fields .theme-field-row__label + .theme-field-row__input {
  flex-grow: 1;
}

.row-of-fields {
  display: flex;
}

.row-of-fields .field-wrapper {
  width: 25%;
}

.row-of-fields .field-wrapper.size-1 {
  width: 8.33333%;
}

.row-of-fields .field-wrapper.size-2 {
  width: 16.66667%;
}

.row-of-fields .field-wrapper.size-3 {
  width: 25%;
}

.row-of-fields .field-wrapper.size-4 {
  width: 33.33333%;
}

.row-of-fields .field-wrapper.size-5 {
  width: 41.66667%;
}

.row-of-fields .field-wrapper.size-6 {
  width: 50%;
}

.row-of-fields .field-wrapper.size-7 {
  width: 58.33333%;
}

.row-of-fields .field-wrapper.size-8 {
  width: 66.66667%;
}

.row-of-fields .field-wrapper.size-9 {
  width: 75%;
}

.row-of-fields .field-wrapper.size-10 {
  width: 83.33333%;
}

.row-of-fields .field-wrapper.size-11 {
  width: 91.66667%;
}

.row-of-fields .field-wrapper.size-12 {
  width: 100%;
}

.row-of-fields .theme-field-row {
  display: flex;
  flex-flow: initial;
  margin: 0;
}

.row-of-fields .theme-field-row .theme-field-row__label {
  width: auto;
}

.row-of-fields .theme-field-row .theme-field-row__input {
  flex-grow: 1;
  width: auto;
}

.single-theme-settings {
  width: 100%;
  padding: 0 15px;
  margin-bottom: 30px;
}

.single-theme-settings--half {
  width: 50%;
}

.single-theme-settings--half .theme-field-row--color-picker, .single-theme-settings--half .theme-field-row--font-preview {
  width: 50%;
}

.single-theme-settings__inner {
  display: flex;
  flex-flow: row wrap;
  padding: 0 13px;
}

.single-theme-settings .settings-subheader {
  margin-top: -1px;
  margin-bottom: 40px;
  border-top: 1px solid #f4f4f4;
}

.theme-field-row {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 0 15px;
  margin-bottom: 30px;
}

.theme-field-row__label {
  width: 200px;
}

.theme-field-row__input {
  width: 100%;
}

.theme-field-row__label + .theme-field-row__input {
  width: 300px;
}

.theme-field-row--radio .theme-field-row__input > * {
  display: flex;
  flex-flow: row wrap;
}

.theme-field-row--radio .theme-field-row__input {
  width: calc(100% - 215px);
}

.theme-field-row--color-picker, .theme-field-row--font-preview {
  width: 25%;
}

.theme-field-row--froala-editor .theme-field-row__input, .theme-field-row--input .theme-field-row__input {
  width: 430px;
}

.theme-field-row--input .input-wrapper {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}

.theme-field-row--input .input-wrapper .input-suffix {
  padding: 0 10px;
}

.theme-field-row--color-picker .color-picker-simple {
  border-radius: 5px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

.theme-field-row .options-input-wrapper {
  overflow: hidden;
}

.theme-settings-content {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
}

.theme-settings-content .info-messages-wrapper {
  width: 726px;
  max-width: 726px;
  padding: 0 43px;
  margin: 0;
  margin-top: 20px;
}

@media (max-width: 1440px) {
  .theme-settings-content .customize-fonts--content .theme-field-row__label {
    max-width: 130px;
  }
}

@media (max-width: 1440px) {
  .theme-settings-content .customize-fonts--content .row-of-fields .field-wrapper.size-3 {
    width: 30%;
  }
}

@media (max-width: 1440px) {
  .theme-settings-content .customize-fonts--content .row-of-fields .field-wrapper.size-6 {
    width: 45%;
  }
}
