/*! Flickity v2.3.0
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: grabbing;
}

/* ---- flickity-button ---- */

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle; }
  .select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 28px;
    -ms-user-select: none;
        user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--single .select2-selection__rendered {
      display: block;
      padding-left: 8px;
      padding-right: 20px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
    .select2-container .select2-selection--single .select2-selection__clear {
      position: relative; }
  .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px; }
  .select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    -ms-user-select: none;
        user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--multiple .select2-selection__rendered {
      display: inline-block;
      overflow: hidden;
      padding-left: 8px;
      text-overflow: ellipsis;
      white-space: nowrap; }
  .select2-container .select2-search--inline {
    float: left; }
    .select2-container .select2-search--inline .select2-search__field {
      box-sizing: border-box;
      border: none;
      font-size: 100%;
      margin-top: 5px;
      padding: 0; }
      .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
        -webkit-appearance: none; }

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051; }

.select2-results {
  display: block; }

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0; }

.select2-results__option {
  padding: 6px;
  -ms-user-select: none;
      user-select: none;
  -webkit-user-select: none; }
  .select2-results__option[aria-selected] {
    cursor: pointer; }

.select2-container--open .select2-dropdown {
  left: 0; }

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-search--dropdown {
  display: block;
  padding: 4px; }
  .select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box; }
    .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
      -webkit-appearance: none; }
  .select2-search--dropdown.select2-search--hide {
    display: none; }

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0); }

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important; }

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px; }
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px; }
  .select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold; }
  .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999; }
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px; }
    .select2-container--default .select2-selection--single .select2-selection__arrow b {
      border-color: #888 transparent transparent transparent;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      height: 0;
      left: 50%;
      margin-left: -4px;
      margin-top: -2px;
      position: absolute;
      top: 50%;
      width: 0; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto; }

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default; }
  .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none; }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px; }

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text; }
  .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%; }
    .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
      list-style: none; }
  .select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-top: 5px;
    margin-right: 10px;
    padding: 1px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #333; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0; }

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default; }

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none; }

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa; }

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield; }

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--default .select2-results__option[role=group] {
  padding: 0; }

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999; }

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd; }

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em; }
    .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
      margin-left: -2em;
      padding-left: 3em; }
      .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
        margin-left: -3em;
        padding-left: 4em; }
        .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
          margin-left: -4em;
          padding-left: 5em; }
          .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
            margin-left: -5em;
            padding-left: 6em; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white; }

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
  .select2-container--classic .select2-selection--single:focus {
    border: 1px solid #5897fb; }
  .select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px; }
  .select2-container--classic .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-right: 10px; }
  .select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: #999; }
  .select2-container--classic .select2-selection--single .select2-selection__arrow {
    background-color: #ddd;
    border: none;
    border-left: 1px solid #aaa;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
    background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }
    .select2-container--classic .select2-selection--single .select2-selection__arrow b {
      border-color: #888 transparent transparent transparent;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      height: 0;
      left: 50%;
      margin-left: -4px;
      margin-top: -2px;
      position: absolute;
      top: 50%;
      width: 0; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto; }

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb; }
  .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
    background: transparent;
    border: none; }
    .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
      border-color: transparent transparent #888 transparent;
      border-width: 0 4px 5px 4px; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0; }
  .select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #5897fb; }
  .select2-container--classic .select2-selection--multiple .select2-selection__rendered {
    list-style: none;
    margin: 0;
    padding: 0 5px; }
  .select2-container--classic .select2-selection--multiple .select2-selection__clear {
    display: none; }
  .select2-container--classic .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
    color: #888;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #555; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0; }

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none; }

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent; }

.select2-container--classic .select2-dropdown--above {
  border-bottom: none; }

.select2-container--classic .select2-dropdown--below {
  border-top: none; }

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--classic .select2-results__option[role=group] {
  padding: 0; }

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey; }

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white; }

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb; }

/*!
 * Datepicker for Bootstrap v1.10.1 (https://github.com/uxsolutions/bootstrap-datepicker)
 *
 * Licensed under the Apache License v2.0 (https://www.apache.org/licenses/LICENSE-2.0)
 */

.datepicker {
  border-radius: 4px;
  direction: ltr;
}
.datepicker-inline {
  width: 220px;
}
.datepicker-rtl {
  direction: rtl;
}
.datepicker-rtl.dropdown-menu {
  left: auto;
}
.datepicker-rtl table tr td span {
  float: right;
}
.datepicker-dropdown {
  top: 0;
  left: 0;
  padding: 4px;
}
.datepicker-dropdown:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(0, 0, 0, 0.15);
  border-top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
}
.datepicker-dropdown:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-top: 0;
  position: absolute;
}
.datepicker-dropdown.datepicker-orient-left:before {
  left: 6px;
}
.datepicker-dropdown.datepicker-orient-left:after {
  left: 7px;
}
.datepicker-dropdown.datepicker-orient-right:before {
  right: 6px;
}
.datepicker-dropdown.datepicker-orient-right:after {
  right: 7px;
}
.datepicker-dropdown.datepicker-orient-bottom:before {
  top: -7px;
}
.datepicker-dropdown.datepicker-orient-bottom:after {
  top: -6px;
}
.datepicker-dropdown.datepicker-orient-top:before {
  bottom: -7px;
  border-bottom: 0;
  border-top: 7px solid rgba(0, 0, 0, 0.15);
}
.datepicker-dropdown.datepicker-orient-top:after {
  bottom: -6px;
  border-bottom: 0;
  border-top: 6px solid #fff;
}
.datepicker table {
  margin: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.datepicker table tr td,
.datepicker table tr th {
  text-align: center;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  border: none;
}
.table-striped .datepicker table tr td,
.table-striped .datepicker table tr th {
  background-color: transparent;
}
.datepicker table tr td.old,
.datepicker table tr td.new {
  color: #777777;
}
.datepicker table tr td.day:hover,
.datepicker table tr td.focused {
  background: #eeeeee;
  cursor: pointer;
}
.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
  background: none;
  color: #777777;
  cursor: default;
}
.datepicker table tr td.highlighted {
  color: #000;
  background-color: #d9edf7;
  border-color: #85c5e5;
  border-radius: 0;
}
.datepicker table tr td.highlighted:focus,
.datepicker table tr td.highlighted.focus {
  color: #000;
  background-color: #afd9ee;
  border-color: #298fc2;
}
.datepicker table tr td.highlighted:hover {
  color: #000;
  background-color: #afd9ee;
  border-color: #52addb;
}
.datepicker table tr td.highlighted:active,
.datepicker table tr td.highlighted.active {
  color: #000;
  background-color: #afd9ee;
  border-color: #52addb;
}
.datepicker table tr td.highlighted:active:hover,
.datepicker table tr td.highlighted.active:hover,
.datepicker table tr td.highlighted:active:focus,
.datepicker table tr td.highlighted.active:focus,
.datepicker table tr td.highlighted:active.focus,
.datepicker table tr td.highlighted.active.focus {
  color: #000;
  background-color: #91cbe8;
  border-color: #298fc2;
}
.datepicker table tr td.highlighted.disabled:hover,
.datepicker table tr td.highlighted[disabled]:hover,
fieldset[disabled] .datepicker table tr td.highlighted:hover,
.datepicker table tr td.highlighted.disabled:focus,
.datepicker table tr td.highlighted[disabled]:focus,
fieldset[disabled] .datepicker table tr td.highlighted:focus,
.datepicker table tr td.highlighted.disabled.focus,
.datepicker table tr td.highlighted[disabled].focus,
fieldset[disabled] .datepicker table tr td.highlighted.focus {
  background-color: #d9edf7;
  border-color: #85c5e5;
}
.datepicker table tr td.highlighted.focused {
  background: #afd9ee;
}
.datepicker table tr td.highlighted.disabled,
.datepicker table tr td.highlighted.disabled:active {
  background: #d9edf7;
  color: #777777;
}
.datepicker table tr td.today {
  color: #000;
  background-color: #ffdb99;
  border-color: #ffb733;
}
.datepicker table tr td.today:focus,
.datepicker table tr td.today.focus {
  color: #000;
  background-color: #ffc966;
  border-color: #b37400;
}
.datepicker table tr td.today:hover {
  color: #000;
  background-color: #ffc966;
  border-color: #f59e00;
}
.datepicker table tr td.today:active,
.datepicker table tr td.today.active {
  color: #000;
  background-color: #ffc966;
  border-color: #f59e00;
}
.datepicker table tr td.today:active:hover,
.datepicker table tr td.today.active:hover,
.datepicker table tr td.today:active:focus,
.datepicker table tr td.today.active:focus,
.datepicker table tr td.today:active.focus,
.datepicker table tr td.today.active.focus {
  color: #000;
  background-color: #ffbc42;
  border-color: #b37400;
}
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today[disabled]:hover,
fieldset[disabled] .datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled:focus,
.datepicker table tr td.today[disabled]:focus,
fieldset[disabled] .datepicker table tr td.today:focus,
.datepicker table tr td.today.disabled.focus,
.datepicker table tr td.today[disabled].focus,
fieldset[disabled] .datepicker table tr td.today.focus {
  background-color: #ffdb99;
  border-color: #ffb733;
}
.datepicker table tr td.today.focused {
  background: #ffc966;
}
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:active {
  background: #ffdb99;
  color: #777777;
}
.datepicker table tr td.range {
  color: #000;
  background-color: #eeeeee;
  border-color: #bbbbbb;
  border-radius: 0;
}
.datepicker table tr td.range:focus,
.datepicker table tr td.range.focus {
  color: #000;
  background-color: #d5d5d5;
  border-color: #7c7c7c;
}
.datepicker table tr td.range:hover {
  color: #000;
  background-color: #d5d5d5;
  border-color: #9d9d9d;
}
.datepicker table tr td.range:active,
.datepicker table tr td.range.active {
  color: #000;
  background-color: #d5d5d5;
  border-color: #9d9d9d;
}
.datepicker table tr td.range:active:hover,
.datepicker table tr td.range.active:hover,
.datepicker table tr td.range:active:focus,
.datepicker table tr td.range.active:focus,
.datepicker table tr td.range:active.focus,
.datepicker table tr td.range.active.focus {
  color: #000;
  background-color: #c3c3c3;
  border-color: #7c7c7c;
}
.datepicker table tr td.range.disabled:hover,
.datepicker table tr td.range[disabled]:hover,
fieldset[disabled] .datepicker table tr td.range:hover,
.datepicker table tr td.range.disabled:focus,
.datepicker table tr td.range[disabled]:focus,
fieldset[disabled] .datepicker table tr td.range:focus,
.datepicker table tr td.range.disabled.focus,
.datepicker table tr td.range[disabled].focus,
fieldset[disabled] .datepicker table tr td.range.focus {
  background-color: #eeeeee;
  border-color: #bbbbbb;
}
.datepicker table tr td.range.focused {
  background: #d5d5d5;
}
.datepicker table tr td.range.disabled,
.datepicker table tr td.range.disabled:active {
  background: #eeeeee;
  color: #777777;
}
.datepicker table tr td.range.highlighted {
  color: #000;
  background-color: #e4eef3;
  border-color: #9dc1d3;
}
.datepicker table tr td.range.highlighted:focus,
.datepicker table tr td.range.highlighted.focus {
  color: #000;
  background-color: #c1d7e3;
  border-color: #4b88a6;
}
.datepicker table tr td.range.highlighted:hover {
  color: #000;
  background-color: #c1d7e3;
  border-color: #73a6c0;
}
.datepicker table tr td.range.highlighted:active,
.datepicker table tr td.range.highlighted.active {
  color: #000;
  background-color: #c1d7e3;
  border-color: #73a6c0;
}
.datepicker table tr td.range.highlighted:active:hover,
.datepicker table tr td.range.highlighted.active:hover,
.datepicker table tr td.range.highlighted:active:focus,
.datepicker table tr td.range.highlighted.active:focus,
.datepicker table tr td.range.highlighted:active.focus,
.datepicker table tr td.range.highlighted.active.focus {
  color: #000;
  background-color: #a8c8d8;
  border-color: #4b88a6;
}
.datepicker table tr td.range.highlighted.disabled:hover,
.datepicker table tr td.range.highlighted[disabled]:hover,
fieldset[disabled] .datepicker table tr td.range.highlighted:hover,
.datepicker table tr td.range.highlighted.disabled:focus,
.datepicker table tr td.range.highlighted[disabled]:focus,
fieldset[disabled] .datepicker table tr td.range.highlighted:focus,
.datepicker table tr td.range.highlighted.disabled.focus,
.datepicker table tr td.range.highlighted[disabled].focus,
fieldset[disabled] .datepicker table tr td.range.highlighted.focus {
  background-color: #e4eef3;
  border-color: #9dc1d3;
}
.datepicker table tr td.range.highlighted.focused {
  background: #c1d7e3;
}
.datepicker table tr td.range.highlighted.disabled,
.datepicker table tr td.range.highlighted.disabled:active {
  background: #e4eef3;
  color: #777777;
}
.datepicker table tr td.range.today {
  color: #000;
  background-color: #f7ca77;
  border-color: #f1a417;
}
.datepicker table tr td.range.today:focus,
.datepicker table tr td.range.today.focus {
  color: #000;
  background-color: #f4b747;
  border-color: #815608;
}
.datepicker table tr td.range.today:hover {
  color: #000;
  background-color: #f4b747;
  border-color: #bf800c;
}
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today.active {
  color: #000;
  background-color: #f4b747;
  border-color: #bf800c;
}
.datepicker table tr td.range.today:active:hover,
.datepicker table tr td.range.today.active:hover,
.datepicker table tr td.range.today:active:focus,
.datepicker table tr td.range.today.active:focus,
.datepicker table tr td.range.today:active.focus,
.datepicker table tr td.range.today.active.focus {
  color: #000;
  background-color: #f2aa25;
  border-color: #815608;
}
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today[disabled]:hover,
fieldset[disabled] .datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today.disabled:focus,
.datepicker table tr td.range.today[disabled]:focus,
fieldset[disabled] .datepicker table tr td.range.today:focus,
.datepicker table tr td.range.today.disabled.focus,
.datepicker table tr td.range.today[disabled].focus,
fieldset[disabled] .datepicker table tr td.range.today.focus {
  background-color: #f7ca77;
  border-color: #f1a417;
}
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today.disabled:active {
  background: #f7ca77;
  color: #777777;
}
.datepicker table tr td.selected,
.datepicker table tr td.selected.highlighted {
  color: #fff;
  background-color: #777777;
  border-color: #555555;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.selected:focus,
.datepicker table tr td.selected.highlighted:focus,
.datepicker table tr td.selected.focus,
.datepicker table tr td.selected.highlighted.focus {
  color: #fff;
  background-color: #5e5e5e;
  border-color: #161616;
}
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected.highlighted:hover {
  color: #fff;
  background-color: #5e5e5e;
  border-color: #373737;
}
.datepicker table tr td.selected:active,
.datepicker table tr td.selected.highlighted:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected.highlighted.active {
  color: #fff;
  background-color: #5e5e5e;
  border-color: #373737;
}
.datepicker table tr td.selected:active:hover,
.datepicker table tr td.selected.highlighted:active:hover,
.datepicker table tr td.selected.active:hover,
.datepicker table tr td.selected.highlighted.active:hover,
.datepicker table tr td.selected:active:focus,
.datepicker table tr td.selected.highlighted:active:focus,
.datepicker table tr td.selected.active:focus,
.datepicker table tr td.selected.highlighted.active:focus,
.datepicker table tr td.selected:active.focus,
.datepicker table tr td.selected.highlighted:active.focus,
.datepicker table tr td.selected.active.focus,
.datepicker table tr td.selected.highlighted.active.focus {
  color: #fff;
  background-color: #4c4c4c;
  border-color: #161616;
}
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.highlighted.disabled:hover,
.datepicker table tr td.selected[disabled]:hover,
.datepicker table tr td.selected.highlighted[disabled]:hover,
fieldset[disabled] .datepicker table tr td.selected:hover,
fieldset[disabled] .datepicker table tr td.selected.highlighted:hover,
.datepicker table tr td.selected.disabled:focus,
.datepicker table tr td.selected.highlighted.disabled:focus,
.datepicker table tr td.selected[disabled]:focus,
.datepicker table tr td.selected.highlighted[disabled]:focus,
fieldset[disabled] .datepicker table tr td.selected:focus,
fieldset[disabled] .datepicker table tr td.selected.highlighted:focus,
.datepicker table tr td.selected.disabled.focus,
.datepicker table tr td.selected.highlighted.disabled.focus,
.datepicker table tr td.selected[disabled].focus,
.datepicker table tr td.selected.highlighted[disabled].focus,
fieldset[disabled] .datepicker table tr td.selected.focus,
fieldset[disabled] .datepicker table tr td.selected.highlighted.focus {
  background-color: #777777;
  border-color: #555555;
}
.datepicker table tr td.active,
.datepicker table tr td.active.highlighted {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.active:focus,
.datepicker table tr td.active.highlighted:focus,
.datepicker table tr td.active.focus,
.datepicker table tr td.active.highlighted.focus {
  color: #fff;
  background-color: #286090;
  border-color: #122b40;
}
.datepicker table tr td.active:hover,
.datepicker table tr td.active.highlighted:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.datepicker table tr td.active:active,
.datepicker table tr td.active.highlighted:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active.highlighted.active {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.datepicker table tr td.active:active:hover,
.datepicker table tr td.active.highlighted:active:hover,
.datepicker table tr td.active.active:hover,
.datepicker table tr td.active.highlighted.active:hover,
.datepicker table tr td.active:active:focus,
.datepicker table tr td.active.highlighted:active:focus,
.datepicker table tr td.active.active:focus,
.datepicker table tr td.active.highlighted.active:focus,
.datepicker table tr td.active:active.focus,
.datepicker table tr td.active.highlighted:active.focus,
.datepicker table tr td.active.active.focus,
.datepicker table tr td.active.highlighted.active.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.highlighted.disabled:hover,
.datepicker table tr td.active[disabled]:hover,
.datepicker table tr td.active.highlighted[disabled]:hover,
fieldset[disabled] .datepicker table tr td.active:hover,
fieldset[disabled] .datepicker table tr td.active.highlighted:hover,
.datepicker table tr td.active.disabled:focus,
.datepicker table tr td.active.highlighted.disabled:focus,
.datepicker table tr td.active[disabled]:focus,
.datepicker table tr td.active.highlighted[disabled]:focus,
fieldset[disabled] .datepicker table tr td.active:focus,
fieldset[disabled] .datepicker table tr td.active.highlighted:focus,
.datepicker table tr td.active.disabled.focus,
.datepicker table tr td.active.highlighted.disabled.focus,
.datepicker table tr td.active[disabled].focus,
.datepicker table tr td.active.highlighted[disabled].focus,
fieldset[disabled] .datepicker table tr td.active.focus,
fieldset[disabled] .datepicker table tr td.active.highlighted.focus {
  background-color: #337ab7;
  border-color: #2e6da4;
}
.datepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
  border-radius: 4px;
}
.datepicker table tr td span:hover,
.datepicker table tr td span.focused {
  background: #eeeeee;
}
.datepicker table tr td span.disabled,
.datepicker table tr td span.disabled:hover {
  background: none;
  color: #777777;
  cursor: default;
}
.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td span.active:focus,
.datepicker table tr td span.active:hover:focus,
.datepicker table tr td span.active.disabled:focus,
.datepicker table tr td span.active.disabled:hover:focus,
.datepicker table tr td span.active.focus,
.datepicker table tr td span.active:hover.focus,
.datepicker table tr td span.active.disabled.focus,
.datepicker table tr td span.active.disabled:hover.focus {
  color: #fff;
  background-color: #286090;
  border-color: #122b40;
}
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.datepicker table tr td span.active:active:hover,
.datepicker table tr td span.active:hover:active:hover,
.datepicker table tr td span.active.disabled:active:hover,
.datepicker table tr td span.active.disabled:hover:active:hover,
.datepicker table tr td span.active.active:hover,
.datepicker table tr td span.active:hover.active:hover,
.datepicker table tr td span.active.disabled.active:hover,
.datepicker table tr td span.active.disabled:hover.active:hover,
.datepicker table tr td span.active:active:focus,
.datepicker table tr td span.active:hover:active:focus,
.datepicker table tr td span.active.disabled:active:focus,
.datepicker table tr td span.active.disabled:hover:active:focus,
.datepicker table tr td span.active.active:focus,
.datepicker table tr td span.active:hover.active:focus,
.datepicker table tr td span.active.disabled.active:focus,
.datepicker table tr td span.active.disabled:hover.active:focus,
.datepicker table tr td span.active:active.focus,
.datepicker table tr td span.active:hover:active.focus,
.datepicker table tr td span.active.disabled:active.focus,
.datepicker table tr td span.active.disabled:hover:active.focus,
.datepicker table tr td span.active.active.focus,
.datepicker table tr td span.active:hover.active.focus,
.datepicker table tr td span.active.disabled.active.focus,
.datepicker table tr td span.active.disabled:hover.active.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active:hover.disabled:hover,
.datepicker table tr td span.active.disabled.disabled:hover,
.datepicker table tr td span.active.disabled:hover.disabled:hover,
.datepicker table tr td span.active[disabled]:hover,
.datepicker table tr td span.active:hover[disabled]:hover,
.datepicker table tr td span.active.disabled[disabled]:hover,
.datepicker table tr td span.active.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td span.active:hover,
fieldset[disabled] .datepicker table tr td span.active:hover:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active.disabled:focus,
.datepicker table tr td span.active:hover.disabled:focus,
.datepicker table tr td span.active.disabled.disabled:focus,
.datepicker table tr td span.active.disabled:hover.disabled:focus,
.datepicker table tr td span.active[disabled]:focus,
.datepicker table tr td span.active:hover[disabled]:focus,
.datepicker table tr td span.active.disabled[disabled]:focus,
.datepicker table tr td span.active.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td span.active:focus,
fieldset[disabled] .datepicker table tr td span.active:hover:focus,
fieldset[disabled] .datepicker table tr td span.active.disabled:focus,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:focus,
.datepicker table tr td span.active.disabled.focus,
.datepicker table tr td span.active:hover.disabled.focus,
.datepicker table tr td span.active.disabled.disabled.focus,
.datepicker table tr td span.active.disabled:hover.disabled.focus,
.datepicker table tr td span.active[disabled].focus,
.datepicker table tr td span.active:hover[disabled].focus,
.datepicker table tr td span.active.disabled[disabled].focus,
.datepicker table tr td span.active.disabled:hover[disabled].focus,
fieldset[disabled] .datepicker table tr td span.active.focus,
fieldset[disabled] .datepicker table tr td span.active:hover.focus,
fieldset[disabled] .datepicker table tr td span.active.disabled.focus,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover.focus {
  background-color: #337ab7;
  border-color: #2e6da4;
}
.datepicker table tr td span.old,
.datepicker table tr td span.new {
  color: #777777;
}
.datepicker .datepicker-switch {
  width: 145px;
}
.datepicker .datepicker-switch,
.datepicker .prev,
.datepicker .next,
.datepicker tfoot tr th {
  cursor: pointer;
}
.datepicker .datepicker-switch:hover,
.datepicker .prev:hover,
.datepicker .next:hover,
.datepicker tfoot tr th:hover {
  background: #eeeeee;
}
.datepicker .prev.disabled,
.datepicker .next.disabled {
  visibility: hidden;
}
.datepicker .cw {
  font-size: 10px;
  width: 12px;
  padding: 0 2px 0 5px;
  vertical-align: middle;
}
.input-group.date .input-group-addon {
  cursor: pointer;
}
.input-daterange {
  width: 100%;
}
.input-daterange input {
  text-align: center;
}
.input-daterange input:first-child {
  border-radius: 3px 0 0 3px;
}
.input-daterange input:last-child {
  border-radius: 0 3px 3px 0;
}
.input-daterange .input-group-addon {
  width: auto;
  min-width: 16px;
  padding: 4px 5px;
  line-height: 1.42857143;
  border-width: 1px 0;
  margin-left: -5px;
  margin-right: -5px;
}
.datepicker.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  list-style: none;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
  color: #333333;
  font-size: 13px;
  line-height: 1.42857143;
}
.datepicker.dropdown-menu th,
.datepicker.datepicker-inline th,
.datepicker.dropdown-menu td,
.datepicker.datepicker-inline td {
  padding: 0px 5px;
}

.carousel{position:relative;box-sizing:border-box}.carousel *,.carousel *:before,.carousel *:after{box-sizing:inherit}.carousel.is-draggable{cursor:move;cursor:grab}.carousel.is-dragging{cursor:move;cursor:grabbing}.carousel__viewport{position:relative;overflow:hidden;max-width:100%;max-height:100%}.carousel__track{display:-ms-flexbox;display:flex}.carousel__slide{-ms-flex:0 0 auto;flex:0 0 auto;width:var(--carousel-slide-width, 60%);max-width:100%;padding:1rem;position:relative;overflow-x:hidden;overflow-y:auto;overscroll-behavior:contain}.has-dots{margin-bottom:calc(0.5rem + 22px)}.carousel__dots{margin:0 auto;padding:0;position:absolute;top:calc(100% + 0.5rem);left:0;right:0;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;list-style:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.carousel__dots .carousel__dot{margin:0;padding:0;display:block;position:relative;width:22px;height:22px;cursor:pointer}.carousel__dots .carousel__dot:after{content:"";width:8px;height:8px;border-radius:50%;position:absolute;top:50%;left:50%;-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);background-color:currentColor;opacity:.25;transition:opacity .15s ease-in-out}.carousel__dots .carousel__dot.is-selected:after{opacity:1}.carousel__button{width:var(--carousel-button-width, 48px);height:var(--carousel-button-height, 48px);padding:0;border:0;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;pointer-events:all;cursor:pointer;color:var(--carousel-button-color, currentColor);background:var(--carousel-button-bg, transparent);border-radius:var(--carousel-button-border-radius, 50%);box-shadow:var(--carousel-button-shadow, none);transition:opacity .15s ease}.carousel__button.is-prev,.carousel__button.is-next{position:absolute;top:50%;-ms-transform:translateY(-50%);transform:translateY(-50%)}.carousel__button.is-prev{left:10px}.carousel__button.is-next{right:10px}.carousel__button[disabled]{cursor:default;opacity:.3}.carousel__button svg{width:var(--carousel-button-svg-width, 50%);height:var(--carousel-button-svg-height, 50%);fill:none;stroke:currentColor;stroke-width:var(--carousel-button-svg-stroke-width, 1.5);stroke-linejoin:bevel;stroke-linecap:round;filter:var(--carousel-button-svg-filter, none);pointer-events:none}html.with-fancybox{scroll-behavior:auto}body.compensate-for-scrollbar{overflow:hidden !important;-ms-touch-action:none;touch-action:none}.fancybox__container{position:fixed;top:0;left:0;bottom:0;right:0;direction:ltr;margin:0;padding:env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);box-sizing:border-box;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;color:var(--fancybox-color, #fff);-webkit-tap-highlight-color:rgba(0,0,0,0);overflow:hidden;z-index:1050;outline:none;-ms-transform-origin:top left;transform-origin:top left;--carousel-button-width: 48px;--carousel-button-height: 48px;--carousel-button-svg-width: 24px;--carousel-button-svg-height: 24px;--carousel-button-svg-stroke-width: 2.5;--carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4))}.fancybox__container *,.fancybox__container *::before,.fancybox__container *::after{box-sizing:inherit}.fancybox__container :focus{outline:none}body:not(.is-using-mouse) .fancybox__container :focus{box-shadow:0 0 0 1px #fff,0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94))}@media all and (min-width: 1024px){.fancybox__container{--carousel-button-width:48px;--carousel-button-height:48px;--carousel-button-svg-width:27px;--carousel-button-svg-height:27px}}.fancybox__backdrop{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1;background:var(--fancybox-bg, rgba(24, 24, 27, 0.92))}.fancybox__carousel{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;min-height:0;height:100%;z-index:10}.fancybox__carousel.has-dots{margin-bottom:calc(0.5rem + 22px)}.fancybox__viewport{position:relative;width:100%;height:100%;overflow:visible;cursor:default}.fancybox__track{display:-ms-flexbox;display:flex;height:100%}.fancybox__slide{-ms-flex:0 0 auto;flex:0 0 auto;width:100%;max-width:100%;margin:0;padding:48px 8px 8px 8px;position:relative;overscroll-behavior:contain;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;outline:0;overflow:auto;--carousel-button-width: 36px;--carousel-button-height: 36px;--carousel-button-svg-width: 22px;--carousel-button-svg-height: 22px}.fancybox__slide::before,.fancybox__slide::after{content:"";-ms-flex:0 0 0px;flex:0 0 0;margin:auto}@media all and (min-width: 1024px){.fancybox__slide{padding:64px 100px}}.fancybox__content{margin:0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);padding:36px;color:var(--fancybox-content-color, #374151);background:var(--fancybox-content-bg, #fff);position:relative;-ms-flex-item-align:center;align-self:center;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;z-index:20}.fancybox__content :focus:not(.carousel__button.is-close){outline:thin dotted;box-shadow:none}.fancybox__caption{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center;max-width:100%;margin:0;padding:1rem 0 0 0;line-height:1.375;color:var(--fancybox-color, currentColor);visibility:visible;cursor:auto;-ms-flex-negative:0;flex-shrink:0;overflow-wrap:anywhere}.is-loading .fancybox__caption{visibility:hidden}.fancybox__container>.carousel__dots{top:100%;color:var(--fancybox-color, #fff)}.fancybox__nav .carousel__button{z-index:40}.fancybox__nav .carousel__button.is-next{right:8px}@media all and (min-width: 1024px){.fancybox__nav .carousel__button.is-next{right:40px}}.fancybox__nav .carousel__button.is-prev{left:8px}@media all and (min-width: 1024px){.fancybox__nav .carousel__button.is-prev{left:40px}}.carousel__button.is-close{position:absolute;top:8px;right:8px;top:calc(env(safe-area-inset-top, 0px) + 8px);right:calc(env(safe-area-inset-right, 0px) + 8px);z-index:40}@media all and (min-width: 1024px){.carousel__button.is-close{right:40px}}.fancybox__content>.carousel__button.is-close{position:absolute;top:-40px;right:0;color:var(--fancybox-color, #fff)}.fancybox__no-click,.fancybox__no-click button{pointer-events:none}.fancybox__spinner{position:absolute;top:50%;left:50%;-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);width:50px;height:50px;color:var(--fancybox-color, currentColor)}.fancybox__slide .fancybox__spinner{cursor:pointer;z-index:1053}.fancybox__spinner svg{animation:fancybox-rotate 2s linear infinite;-ms-transform-origin:center center;transform-origin:center center;position:absolute;top:0;right:0;bottom:0;left:0;margin:auto;width:100%;height:100%}.fancybox__spinner svg circle{fill:none;stroke-width:2.75;stroke-miterlimit:10;stroke-dasharray:1,200;stroke-dashoffset:0;animation:fancybox-dash 1.5s ease-in-out infinite;stroke-linecap:round;stroke:currentColor}@keyframes fancybox-rotate{100%{transform:rotate(360deg)}}@keyframes fancybox-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35px}100%{stroke-dasharray:89,200;stroke-dashoffset:-124px}}.fancybox__backdrop,.fancybox__caption,.fancybox__nav,.carousel__dots,.carousel__button.is-close{opacity:var(--fancybox-opacity, 1)}.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop,.fancybox__container.is-animated[aria-hidden=false] .fancybox__caption,.fancybox__container.is-animated[aria-hidden=false] .fancybox__nav,.fancybox__container.is-animated[aria-hidden=false] .carousel__dots,.fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close{animation:.15s ease backwards fancybox-fadeIn}.fancybox__container.is-animated.is-closing .fancybox__backdrop,.fancybox__container.is-animated.is-closing .fancybox__caption,.fancybox__container.is-animated.is-closing .fancybox__nav,.fancybox__container.is-animated.is-closing .carousel__dots,.fancybox__container.is-animated.is-closing .carousel__button.is-close{animation:.15s ease both fancybox-fadeOut}.fancybox-fadeIn{animation:.15s ease both fancybox-fadeIn}.fancybox-fadeOut{animation:.1s ease both fancybox-fadeOut}.fancybox-zoomInUp{animation:.2s ease both fancybox-zoomInUp}.fancybox-zoomOutDown{animation:.15s ease both fancybox-zoomOutDown}.fancybox-throwOutUp{animation:.15s ease both fancybox-throwOutUp}.fancybox-throwOutDown{animation:.15s ease both fancybox-throwOutDown}@keyframes fancybox-fadeIn{from{opacity:0}to{opacity:1}}@keyframes fancybox-fadeOut{to{opacity:0}}@keyframes fancybox-zoomInUp{from{transform:scale(0.97) translate3d(0, 16px, 0);opacity:0}to{transform:scale(1) translate3d(0, 0, 0);opacity:1}}@keyframes fancybox-zoomOutDown{to{transform:scale(0.97) translate3d(0, 16px, 0);opacity:0}}@keyframes fancybox-throwOutUp{to{transform:translate3d(0, -30%, 0);opacity:0}}@keyframes fancybox-throwOutDown{to{transform:translate3d(0, 30%, 0);opacity:0}}.fancybox__carousel .carousel__slide{scrollbar-width:thin;scrollbar-color:#ccc rgba(255,255,255,.1)}.fancybox__carousel .carousel__slide::-webkit-scrollbar{width:8px;height:8px}.fancybox__carousel .carousel__slide::-webkit-scrollbar-track{background-color:rgba(255,255,255,.1)}.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb{background-color:#ccc;border-radius:2px;box-shadow:inset 0 0 4px rgba(0,0,0,.2)}.fancybox__carousel.is-draggable .fancybox__slide,.fancybox__carousel.is-draggable .fancybox__slide .fancybox__content{cursor:move;cursor:grab}.fancybox__carousel.is-dragging .fancybox__slide,.fancybox__carousel.is-dragging .fancybox__slide .fancybox__content{cursor:move;cursor:grabbing}.fancybox__carousel .fancybox__slide .fancybox__content{cursor:auto}.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content{cursor:zoom-in}.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content{cursor:zoom-out}.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content{cursor:move;cursor:grab}.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content{cursor:move;cursor:grabbing}.fancybox__image{-ms-transform-origin:0 0;transform-origin:0 0;-webkit-user-select:none;-ms-user-select:none;user-select:none;transition:none}.has-image .fancybox__content{padding:0;background:rgba(0,0,0,0);min-height:1px}.is-closing .has-image .fancybox__content{overflow:visible}.has-image[data-image-fit=contain]{overflow:visible;-ms-touch-action:none;touch-action:none}.has-image[data-image-fit=contain] .fancybox__content{-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap}.has-image[data-image-fit=contain] .fancybox__image{max-width:100%;max-height:100%;object-fit:contain}.has-image[data-image-fit=contain-w]{overflow-x:hidden;overflow-y:auto}.has-image[data-image-fit=contain-w] .fancybox__content{min-height:auto}.has-image[data-image-fit=contain-w] .fancybox__image{max-width:100%;height:auto}.has-image[data-image-fit=cover]{overflow:visible;-ms-touch-action:none;touch-action:none}.has-image[data-image-fit=cover] .fancybox__content{width:100%;height:100%}.has-image[data-image-fit=cover] .fancybox__image{width:100%;height:100%;object-fit:cover}.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,.fancybox__carousel .fancybox__slide.has-map .fancybox__content,.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,.fancybox__carousel .fancybox__slide.has-video .fancybox__content,.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content{max-width:100%;-ms-flex-negative:1;flex-shrink:1;min-height:1px;overflow:visible}.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,.fancybox__carousel .fancybox__slide.has-map .fancybox__content,.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content{width:100%;height:80%}.fancybox__carousel .fancybox__slide.has-video .fancybox__content,.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content{width:960px;height:540px;max-width:100%;max-height:100%}.fancybox__carousel .fancybox__slide.has-map .fancybox__content,.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,.fancybox__carousel .fancybox__slide.has-video .fancybox__content,.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content{padding:0;background:rgba(24,24,27,.9);color:#fff}.fancybox__carousel .fancybox__slide.has-map .fancybox__content{background:#e5e3df}.fancybox__html5video,.fancybox__iframe{border:0;display:block;height:100%;width:100%;background:rgba(0,0,0,0)}.fancybox-placeholder{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border-width:0}.fancybox__thumbs{-ms-flex:0 0 auto;flex:0 0 auto;position:relative;padding:0px 3px;opacity:var(--fancybox-opacity, 1)}.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs{animation:.15s ease-in backwards fancybox-fadeIn}.fancybox__container.is-animated.is-closing .fancybox__thumbs{opacity:0}.fancybox__thumbs .carousel__slide{-ms-flex:0 0 auto;flex:0 0 auto;width:var(--fancybox-thumbs-width, 96px);margin:0;padding:8px 3px;box-sizing:content-box;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;overflow:visible;cursor:pointer}.fancybox__thumbs .carousel__slide .fancybox__thumb::after{content:"";position:absolute;top:0;left:0;right:0;bottom:0;border-width:5px;border-style:solid;border-color:var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));opacity:0;transition:opacity .15s ease;border-radius:var(--fancybox-thumbs-border-radius, 4px)}.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after{opacity:.92}.fancybox__thumbs .carousel__slide>*{pointer-events:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.fancybox__thumb{position:relative;width:100%;padding-top:calc(100%/(var(--fancybox-thumbs-ratio, 1.5)));background-size:cover;background-position:center center;background-color:rgba(255,255,255,.1);background-repeat:no-repeat;border-radius:var(--fancybox-thumbs-border-radius, 4px)}.fancybox__toolbar{position:absolute;top:0;right:0;left:0;z-index:20;background:linear-gradient(to top, hsla(0deg, 0%, 0%, 0) 0%, hsla(0deg, 0%, 0%, 0.006) 8.1%, hsla(0deg, 0%, 0%, 0.021) 15.5%, hsla(0deg, 0%, 0%, 0.046) 22.5%, hsla(0deg, 0%, 0%, 0.077) 29%, hsla(0deg, 0%, 0%, 0.114) 35.3%, hsla(0deg, 0%, 0%, 0.155) 41.2%, hsla(0deg, 0%, 0%, 0.198) 47.1%, hsla(0deg, 0%, 0%, 0.242) 52.9%, hsla(0deg, 0%, 0%, 0.285) 58.8%, hsla(0deg, 0%, 0%, 0.326) 64.7%, hsla(0deg, 0%, 0%, 0.363) 71%, hsla(0deg, 0%, 0%, 0.394) 77.5%, hsla(0deg, 0%, 0%, 0.419) 84.5%, hsla(0deg, 0%, 0%, 0.434) 91.9%, hsla(0deg, 0%, 0%, 0.44) 100%);padding:0;-ms-touch-action:none;touch-action:none;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;--carousel-button-svg-width: 20px;--carousel-button-svg-height: 20px;opacity:var(--fancybox-opacity, 1);text-shadow:var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.4))}@media all and (min-width: 1024px){.fancybox__toolbar{padding:8px}}.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar{animation:.15s ease-in backwards fancybox-fadeIn}.fancybox__container.is-animated.is-closing .fancybox__toolbar{opacity:0}.fancybox__toolbar__items{display:-ms-flexbox;display:flex}.fancybox__toolbar__items--left{margin-right:auto}.fancybox__toolbar__items--center{position:absolute;left:50%;-ms-transform:translateX(-50%);transform:translateX(-50%)}.fancybox__toolbar__items--right{margin-left:auto}@media(max-width: 640px){.fancybox__toolbar__items--center:not(:last-child){display:none}}.fancybox__counter{min-width:72px;padding:0 10px;line-height:var(--carousel-button-height, 48px);text-align:center;font-size:17px;font-variant-numeric:tabular-nums;-webkit-font-smoothing:subpixel-antialiased}.fancybox__progress{background:var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));height:3px;left:0;position:absolute;right:0;top:0;-ms-transform:scaleX(0);transform:scaleX(0);-ms-transform-origin:0;transform-origin:0;transition-property:transform;transition-timing-function:linear;z-index:30;-webkit-user-select:none;-ms-user-select:none;user-select:none}.fancybox__container:-ms-fullscreen::backdrop{opacity:0}.fancybox__container:fullscreen::backdrop{opacity:0}.fancybox__button--fullscreen g:nth-child(2){display:none}.fancybox__container:-ms-fullscreen .fancybox__button--fullscreen g:nth-child(1){display:none}.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1){display:none}.fancybox__container:-ms-fullscreen .fancybox__button--fullscreen g:nth-child(2){display:block}.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2){display:block}.fancybox__button--slideshow g:nth-child(2){display:none}.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1){display:none}.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2){display:block}
/*! Social Likes v3.1.3 by Artem Sapegin - http://sapegin.github.com/social-likes - Licensed MIT */
.social-likes{display:inline-block}.social-likes,.social-likes__widget{padding:0;vertical-align:middle!important;word-spacing:0!important;text-indent:0!important;list-style:none!important}.social-likes{opacity:0}.social-likes_visible{opacity:1;transition:opacity .1s ease-in}.social-likes>*{display:inline-block;visibility:hidden}.social-likes_vertical>*{display:block}.social-likes_visible>*{visibility:inherit}.social-likes__widget{display:inline-block;position:relative;white-space:nowrap}.social-likes__widget:after,.social-likes__widget:before{display:none!important}.social-likes_vertical .social-likes__widget{float:left;clear:left}.social-likes__button,.social-likes__counter,.social-likes__icon{text-decoration:none;text-rendering:optimizeLegibility}.social-likes__button{display:inline-block;margin:0;outline:0}.social-likes__counter{margin:0;outline:0}.social-likes__button{position:relative;cursor:pointer;-webkit-user-select:none;-ms-user-select:none;user-select:none}.social-likes__button:before{content:"";display:inline-block}.social-likes__icon{position:absolute;top:0;left:0}.social-likes__counter{display:none;position:relative}.social-likes__counter_single,.social-likes_ready .social-likes__counter{display:inline-block}.social-likes_ready .social-likes__counter_empty{display:none}.social-likes_vertical .social-likes__widget{display:block}.social-likes_notext .social-likes__button{padding-left:0}.social-likes_single-w{position:relative;display:inline-block}.social-likes_single{position:absolute;text-align:left;z-index:99999;visibility:hidden;opacity:0;transition:visibility 0s .11s,opacity .1s ease-in;backface-visibility:hidden}.social-likes_single.social-likes_opened{visibility:visible;opacity:1;transition:opacity .15s ease-out}.social-likes__button_single{position:relative}.social-likes{min-height:36px;margin:-6px}.social-likes,.social-likes_single-w{line-height:19px}.social-likes__widget{margin:6px;color:#000;background:#fff;border:1px solid #ccc;border-radius:3px;line-height:19px}.social-likes__widget:active,.social-likes__widget:focus,.social-likes__widget:hover{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#fff;cursor:pointer}.social-likes__button,.social-likes__counter{vertical-align:middle;font-family:"Helvetica Neue",Arial,sans-serif;font-size:13px;line-height:20px;cursor:inherit}.social-likes__button{padding:1px 6px 1px 20px;font-weight:400;border-right:0}.social-likes__icon{width:20px;height:18px;margin-top:1px;background-repeat:no-repeat;background-position:50% 50%}.social-likes__counter{min-width:12px;padding:1px 4px;font-weight:400;text-align:center;border-left:1px solid #ccc}.social-likes__widget:active>.social-likes__counter,.social-likes__widget:focus>.social-likes__counter,.social-likes__widget:hover>.social-likes__counter,.social-likes__widget_active>.social-likes__counter{position:relative;border-left-color:transparent}.social-likes__widget:active>.social-likes__counter:before,.social-likes__widget:focus>.social-likes__counter:before,.social-likes__widget:hover>.social-likes__counter:before,.social-likes__widget_active>.social-likes__counter:before{content:"";position:absolute;top:0;bottom:0;left:-1px;border-left:1px solid;opacity:.4}.social-likes_vertical{margin:-6px}.social-likes_vertical .social-likes__widget{margin:6px}.social-likes_notext{margin:-3px}.social-likes_notext .social-likes__widget{margin:3px}.social-likes_notext .social-likes__button{width:18px}.social-likes_notext .social-likes__icon{width:100%;background-position:center center}.social-likes__widget_single{margin:0}.social-likes_single{margin:-12px 0 0;padding:4px 0;background:#fff;border:1px solid #ccc;border-radius:3px}.social-likes__single-container{width:100%;display:table}.social-likes_single .social-likes__widget{float:none;display:table-row;margin:0;border:0;border-radius:0;background:0 0}.social-likes_single .social-likes__button{display:block;padding:2px 6px 2px 24px}.social-likes_single .social-likes__icon{margin-left:4px;margin-top:2px}.social-likes_single .social-likes__counter{display:table-cell;padding:2px 8px 2px 4px;border-left:0;text-align:right}.social-likes_single .social-likes__widget:active>.social-likes__counter:before,.social-likes_single .social-likes__widget:focus>.social-likes__counter:before,.social-likes_single .social-likes__widget:hover>.social-likes__counter:before{display:none}.social-likes__icon_single{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAANCAYAAAB7AEQGAAAAaElEQVR42mIxL/zLgATkgXgBECcC8QOYIBOagvVA7ADEa4FYAV0RIxDPAeIUKD8VygeJM7BABf8DsScQ/4HyzwGxB1QcrKgByUpk9h8YnwlJElkBiiYmBiIAbRUx0s46FizhgwEAAgwAkmYQfIjC7tcAAAAASUVORK5CYII=)}.social-likes__widget_active,.social-likes__widget_single:active,.social-likes__widget_single:focus,.social-likes__widget_single:hover{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background:#3673f4;border-color:#3673f4;color:#fff}.social-likes__widget_active .social-likes__icon_single,.social-likes__widget_single:active .social-likes__icon_single,.social-likes__widget_single:focus .social-likes__icon_single,.social-likes__widget_single:hover .social-likes__icon_single{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAANCAYAAAB7AEQGAAAAYklEQVR42mL4//8/AxKWB+L9QKyALI6u4Nx/CDiLrBCmgBGIdwOxEVQRiN4DFWcAE1DAAsR/gBgkwIjEBzMaGBAAmf0Hzgea1IDm+P9o/AYmBiIAbRUx0s46FizhgwEAAgwAAJd9Vn3NlgwAAAAASUVORK5CYII=)}.social-likes__icon_facebook{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAaklEQVR42mJ0Cp7jycDAMBeIJRnwg+dAnMxEpGIGqJq5THgULwFicSBmBGJbmCYWPCYWAvEbdEF8GmCK/yMLMjGQCLBpsIW6GwaQ/UC6Ddj8cBjJZOr44TkJ6l+ANKSAGEQofgpKGgABBgAWcxAZp2KpkQAAAABJRU5ErkJggg==)}.social-likes__widget_facebook:active,.social-likes__widget_facebook:focus,.social-likes__widget_facebook:hover{background:#425497;border-color:#425497}.social-likes__widget_facebook:active .social-likes__icon_facebook,.social-likes__widget_facebook:focus .social-likes__icon_facebook,.social-likes__widget_facebook:hover .social-likes__icon_facebook{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAaUlEQVR42mL6//+/JxA/+08YgNR4MoIYDAwMkgzEgedMeBQvAWJxIGYEYluomCQLHtMKgfgNuiA+DTDF/5EFmRhIBNg02ELdDQPIfiDdBlCw/sclRzU/PCdB/QuQhhQQgwjFT4E4GSDAAMuiQX7Tr7YFAAAAAElFTkSuQmCC)}.social-likes__icon_twitter{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAMCAYAAABSgIzaAAAA9ElEQVR42mKU3vqak4GB4TcQ/2HABFxAXA3EzkD8DIjbgfg+ECuwAIkwIHYD4gSoAchgORD7IfEDgPgpEGczAQlBII4C4kNAbIikSAqIfdEMYgRiMSD+B7JxJ9SZFkB8Foj3A/FWIP4KVYgO5gHxFpBGNSA+DsS2UIVOUIwLfAYRIKe+gGoiFpyDaTwJxEVA/J0ITd+hXgNrBIETMCcQADOA+D26RpCn/+LRdAuI62EcmMb/0IjOx6H5ATSu4a4ChaoPEMcAsTUQy6Bp+AfEy4C4EIjfIEuANG4B4rvQVKEOTWYfoKG3HYgfoluvPm8jA0CAAQAqvDQ/IXqkWQAAAABJRU5ErkJggg==)}.social-likes__widget_twitter:active,.social-likes__widget_twitter:focus,.social-likes__widget_twitter:hover{background:#00b7ec;border-color:#00b7ec}.social-likes__widget_twitter:active .social-likes__icon_twitter,.social-likes__widget_twitter:focus .social-likes__icon_twitter,.social-likes__widget_twitter:hover .social-likes__icon_twitter{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAMCAQAAAD4iURRAAAAo0lEQVQYGQXBsSoEAACA4Z8YKIO6yXLzjYrkHS5Wm5GyYPMAUgarMikpGZQHsFh4BZPhJi9wJdzn+7JkQZJk2bl3TzYNbGTfvUVJ8gyYmdjJMd6sS9bMAHwbZ+QHMy9OHQDgWtn1CgAALpUtAADAnpITUwAAU6tKtn0BALiSkjkXfgHAhxUpybwjvwA+DSVl7MEEwJ87A0lKRs7cenTj0FCSpH8xHAhkcGt6PAAAAABJRU5ErkJggg==)}.social-likes__icon_plusone{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAMCAYAAAC5tzfZAAABD0lEQVR42nTSsUtCURTH8eszSGgIgkqSoHBQh7QpbAlBcRCJ2staHFoa+hNyzqXBoan+gMDdoWgymkwkBxMiggo3a3Cp76WfcJHXgQ/nvfveue+ewwt08luGmEEdcwgjZP7iFrtmIqaUn5SXkUEDA+wZn/CwgQgetHYjC+JbZCOANWf9VXmobDd+c4vu8YgoalhFFpf4VL8rmMW8vR/3lEQV2yijhUO99KzeQ7p+95wjneAMQcRQ1JfsNA/wrc1T46KaznyMJqZxrcIvdNRf3957Gm8JO0ggjRx+cKpN21h0B7GJDw3EOGPvYuQ3ctvgC+K4w7nOfoQlFP4rsg+usI4Lrff0Z7QnCyqpffMrwAC15jTuOMaeqQAAAABJRU5ErkJggg==)}.social-likes__widget_plusone:active,.social-likes__widget_plusone:focus,.social-likes__widget_plusone:hover{background:#dd4241;border-color:#dd4241}.social-likes__widget_plusone:active .social-likes__icon_plusone,.social-likes__widget_plusone:focus .social-likes__icon_plusone,.social-likes__widget_plusone:hover .social-likes__icon_plusone{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAMCAYAAAC5tzfZAAAA5klEQVR42myRvQrCMBSFUyehmyC4Zte1OPoALi6+gy/j6uobiINbF3Fx6tDFpZtSUFzEPxQxnksPchty4WvSJPeek5vIOWcQMViCFuiApqliDUbGD0kCeyLzAfiAI4i5VkM+CfiChdpIXRU2lNSgYAR6ysCB441jAkrfXs7KM1YXq3PuicUxuIO2/GvZKSh4n4xrcugKniwq88L3O+GmVB0GlKxWElsl2IEt1d4qsctu/ruXskqiFKXtL2WzRiQJ6McJWO8Jc/AA/dDj7niPDb2LpRU4e+q1x7VMkM5cSMZ7mBA/AQYALgmaWsDGGiQAAAAASUVORK5CYII=)}.social-likes__icon_mailru{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAABIElEQVR42mTSzytEURjG8XunISbFxmQ5UYqGIj9KMztLCyTKrMZCs7K1U7NSLBRloWb+AREmFpPF7GUzRBaymGLpV5bi+9RzM+XU595zT+85533PueHTXhC1BFaRx6DHnnGEbbxoIPSEFCp+l3DjCWOYc38FFzEe7Tj3Dlr5AG0OWscA6jhFX5zHmgO1+oy3V0AHirhHGZ36jjnnknfaxzKmMIxdTKMHO0pPE/px6cA7nAV/bQsfXky7fmtCqA5a8Bn8bz/WqlhNaCCDE0xivCk459zfMKq6VPQxCth0wTUfcZdr+UIaWVR1D0k6115lFkNYwLuPeB4beFUm0cVN4NCnoaBb5z3iDFTfIx7Cpl+j23eyiF6Pqb4lXEVBvwIMAGRTP1kwMI3TAAAAAElFTkSuQmCC)}.social-likes__widget_mailru:active,.social-likes__widget_mailru:focus,.social-likes__widget_mailru:hover{background:#255896;border-color:#255896;color:#ffcd00}.social-likes__widget_mailru:active .social-likes__icon_mailru,.social-likes__widget_mailru:focus .social-likes__icon_mailru,.social-likes__widget_mailru:hover .social-likes__icon_mailru{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAABIElEQVR42mTSzytEURjG8Xtn0IyIDc1SFpJQ5EdN1ChLC6PJFCsWsvInKCvFQllYKPaaZpIpC83CntkgsrBSLP1K2Wh8n3pupubU5865p/c9533PnbBWDaLRijWsYMBrLyhiF69aCJ3Qg7J/j3DrhDFkPV/FuRKSTK6RQAbtmMEPCojjxGv9TTw2XIJ2n/PxN2jDFh5wjA69x1yzytBJB1hCGsPYxyxS2FN5SuhDxYH3OAv+xw4+vZlO/VVCqAma8RU0jpq1KFYJz5jCKSYxXhe87NrfMaq+1HQJ69h2w5e+4k738o1BTONC19rNpOpd5jGEHD5wiAVs4k2VRB9uwneectCd6x5xBervCY9h3V+jy99kEb1eU395XEVBfwIMAE0mQy9JLJUSAAAAAElFTkSuQmCC)}.social-likes__icon_vkontakte{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAsElEQVR42mKJLJ3tycDAMBeIJRnwg+dAnMxEpGIGqJq5TGiKGZEwSE4ViDcha2LCYpIREK8C4l4gfgLElciSLDisDgXi/0A8DYi58GkA8Y8AsQkQfwHie0C8BVkBupO4kWyIBWJxIE4D4u/4nKQMxOVQ9jcgbgPii0BsgUvDIyCeBcR/gHgFVI00PhsuA3E61Lkg2xYAsSyyhudIcfGBQOS9AJmSAmIQEdNPQUkDIMAA8iAe2OyimvEAAAAASUVORK5CYII=)}.social-likes__widget_vkontakte:active,.social-likes__widget_vkontakte:focus,.social-likes__widget_vkontakte:hover{background:#526e8f;border-color:#526e8f}.social-likes__widget_vkontakte:active .social-likes__icon_vkontakte,.social-likes__widget_vkontakte:focus .social-likes__icon_vkontakte,.social-likes__widget_vkontakte:hover .social-likes__icon_vkontakte{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAQAAAD8fJRsAAAAfUlEQVQYGQXBMQ4BUQAFwGej0P1aohJCJBpcwu6N1AqVTqFX6TSu4B4if2+gNGZirwIAqPZRAQBADSAiBmYeQACxcXc2sgICiA4/MzsggKFia6HxBAIolk6Oxia+EEDRgYN4QQDF2tXF1NAbAigiGnM3ICoAAOij1QMA+Gj/aNf4AJYJLVIAAAAASUVORK5CYII=)}.social-likes__icon_odnoklassniki{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAMCAYAAABfnvydAAAAyElEQVR42kzPMQtBcRTG4UvKQmalZFNKDNdm5gsYFCUlCbMyGMwsfACLzRcw2EwsGJTBQAZlUgxsfidvceq5/3vPeTv3Xs99FHMoP3ooOd+aoo+3T40hmnjouYsQWl4uEdRxRkLO6kVsQwB23nDRBruP2swGJ+zgYqKAq97JAi8UMUNFgb16LwvUkEYHcQUOaGNjgTKyaGCrQErn0gJVpQt/g6teObbfPGKAp/Orp3pH25DEHGGsFchghbxXXxvEAjlZqFf8CDAAgr4qyqKlfhgAAAAASUVORK5CYII=);background-position:6px 3px}.social-likes__widget_odnoklassniki:active,.social-likes__widget_odnoklassniki:focus,.social-likes__widget_odnoklassniki:hover{background:#f6903b;border-color:#f6903b}.social-likes__widget_odnoklassniki:active .social-likes__icon_odnoklassniki,.social-likes__widget_odnoklassniki:focus .social-likes__icon_odnoklassniki,.social-likes__widget_odnoklassniki:hover .social-likes__icon_odnoklassniki{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAMCAQAAAD1lzQWAAAAgElEQVQIHQXBoRGCAAAF0N80OoA0AxTHcQMncAaO7J1ndRCbgUDRbPCgMABEjnu+F7FRGwxqG4m4YTLhJrG36BUKvcU+SnQiOpSx9cHDAx/biMoP/FQSZ3cnFxcnd+d4YfX2tuIVB1cjGF0dIgpf8FVIHI1otRgdozF72tl5mjV/486WhTdrOooAAAAASUVORK5CYII=)}.social-likes__icon_pinterest{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAANCAYAAAB/9ZQ7AAABCUlEQVR42nTRPUvDUBTG8ZtoKYogTsGCoAXtUqFuBR1c/AZddNbRQUqhH0Eo6KKDb0gpXQUHBxF0Kg6KFAWh4qI4KxQRtKXxf+C5OEgP/Ehu8uTclwSN0VmnWsE6shjEF05QwZMFQr04QB3vKOmjGlZxiZxTcE0Pi9jCGD402xnOsYNF67yBGwWP8IaCwhe4xjxmLDyNUySxjGGk3F/5Wcb9Rib04FNLu9LYmk2ih1cbVLXmKXTRwoPCc8jgES/WpYymlhOpSxoxdjXTNn7spo19nYbN1ME9hjTexLE/OqsAC/jGknYf6Yxv/U592LrkcYdn+VehrgmM4ND1r8CHB7CnX96v4l8BBgB54jWa5GM+bAAAAABJRU5ErkJggg==)}.social-likes__widget_pinterest:active,.social-likes__widget_pinterest:focus,.social-likes__widget_pinterest:hover{background:#cc002b;border-color:#cc002b}.social-likes__widget_pinterest:active .social-likes__icon_pinterest,.social-likes__widget_pinterest:focus .social-likes__icon_pinterest,.social-likes__widget_pinterest:hover .social-likes__icon_pinterest{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAANCAQAAADV/FywAAAAvklEQVQYGQXBsUoUAACA4f/i8MBB0TdINCQQhHoDaXRzagkkopYGhRYfwKWhSYLDZ2ixNyiTVp1cXMQgaDpNsa6v70vy3DcTt34ZeyRlaIzPXnvpAy6tK2+wIwuSZ/75Yphz3+XQjS3JVzwOe0Z+463kCBu58dHIT/fW5IEzUys58NeqK6eSJ/44NZM5r2yaurTkoRNsK8kuLlybYt9AycAnd5a98M5TScmsH44lSVIyb2JbkiSDZNF7I0mS9B8IOsS5z/yrNgAAAABJRU5ErkJggg==)}
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

@charset "UTF-8";
/* ARQUIVOS DE CONFIGURAÇÕES */
/*!
 * Bootstrap Reboot v4.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@-ms-viewport {
  width: device-width;
}
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: var(--font-family-base, "Roboto");
  font-size: var(--font-size-base, 16px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-base, #3e455e);
  text-align: left;
  background-color: white;
  overflow-x: hidden;
  transition: 0.4s;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

dfn {
  font-style: italic;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

picture {
  display: block;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

/**
 * Mixin para organizar os valores em ordem
 * @Params $map valor que deseja organizar
 * @Params $map-name array com os valores
**/
/**
 * Mixin para media-queries para definir que o valor comece em 0
 * @Params $map valor que deseja organizar
**/
/* ARQUIVOS DE CONFIGURAÇÕES */
/* ARQUIVOS DE FUNÇÕES */
/**
 * Função para retornar as cores
 * @Params $color Cor que deseja usar
 * @Params $type Variação da cor escolhida
 * @Return Cor escolhida
**/
/**
 * Função para retornar os espaçamentos dos botões
 * @Params $size tamanho do botão
 * @Params $direction eixo que deseja
 * @Return Tamanho escolhido
**/
/**
 * Função para retornar os espaçamentos dos botões
 * @Params $size tamanho do botão
 * @Params $type propriedade que deseja
 * @Return Tamanho escolhido
**/
/**
 * Função para retornar todos os tipos de font
 * @Params $family familia da font usada
 * @Params $type qual variação (h -> heading | p -> paragraph)
 * @Params $size tamanho da font
 * @Return Tamanho da font escolhida
**/
/**
 * Função para retornar todos os tipos de banners
 * @Params $type tipo do banner
 * @Params $size qual variação (w -> width | h -> height)
 * @Return Tamanho do banner
**/
/**
 * Função para retornar o próximo breakpoint
 * @Params $name Nome do breackpoint que deseja retornar
 * @Return o breakpoint escolhido
**/
/**
 * Função para retornar o menor breakpoint
 * @Params $name qual breakpoint você deseja verificar
 * @Return Valor do menor breakpoint possivel
**/
/**
 * Função para retornar o maior breakpoint
 * @Params $name qual breakpoint você deseja verificar
 * @Return Valor do maior breakpoint possivel
**/
/**
 * Função para adicionar um prefixo ao nome da classe
 * @Params $name qual breakpoint você deseja adicionar o prefixo
 * @Return Classe com o prefixo
**/
/**
 * Função para converter string em int
 * @Params $value string ou numero
 * @Return valor convertido para int
**/
/**
 * Função para retornar cor com variavel css
 * @Params $color cor desejada {Brand}
 * @Params $type variação da cor desejada {dark}
 * @Return valor usando variaveis nativas {var(--brand-dark, #000000)}
**/
/**
 * Função para retornar mix de vor com variavel css
 * @Params $color cor desejada {Brand}
 * @Params $type variação da cor desejada {dark}
 * @Params $colorVariation sobre qual cor deseja misturar {preto || branco}
 * @Return valor usando variaveis nativas {var(--brand-dark, #000000)}
**/
/*
@function customFunctions($color, $type, $function, $amount, $attr: black){
    $returnType: unquote("--" + $color + "-" + $type);
    $returnColor: color($color, $type);

    $switchFunction: map-get((
        transparentize: transparentize($returnColor, to-number($amount)),
        darken: darken($returnColor, to-number($amount)),
        lighten: lighten($returnColor, to-number($amount)),
        mix: mix($attr, $returnColor, to-number($amount))
    ), $function);

    @return var($returnType, $switchFunction);
}

@function customTransparentize($color, $type, $amount){
    $returnType: unquote("--" + $color + "-" + $type);
    $returnColor: color($color, $type);
    $value: transparentize($returnColor, to-number($amount));

    @return var($returnType, $value);
}

@function customDarken($color, $type, $amount){
    $returnType: unquote("--" + $color + "-" + $type);
    $returnColor: color($color, $type);
    $value: darken($returnColor, to-number($amount));

    @return var($returnType, $value);
}
*/
/**
 * Mixin para gerar cor do texto baseada no fundo
 * @Params $color Cor do background do elemento
 * @Return Retorna a cor com base no background
**/
/**
 * Mixin para gerar o media query atravéz do maior valor
 * @Params $name nome do breakpoint
**/
/**
 * Mixin para gerar o media query atravéz do menor valor
 * @Params $name nome do breakpoint
**/
/**
 * Mixin para retornar valores entre o menor e o maior breakpoint
 * @Params $lower menor breakpoint
 * @Params $upper maior breakpoint
 * @Return Retorna os media-queries entre os valores escolhidos
**/
/**
 * Mixin para retornar o maior ou menor breakpoint possivel
 * @Params $name breakpoint escolhido
 * @Return Retorna o media query escolhido
**/
/**
 * Mixin para retornar estrutura base do container
**/
/**
 * Mixin para retornar os tamanhos maximos do container com relação ao breakpoint atual
**/
/**
 * Mixin para retornar estrutura base do row
**/
/**
 * Mixin para retornar estrutura base do col
**/
/**
 * Mixin para retornar estrutura do col referente a cada tamanho
**/
/**
 * Mixin para retornar um offset na col
**/
/**
 * Mixin para gerar as classes do grid
**/
/**
 * Mixin para retornar o espaçamento padrão dos blocos
**/
/**
 * Mixin para definir uma imagem responsiva
**/
/**
 * Mixin para gerar o width dos card
**/
/**
 * Mixin para gerar os blocos de media query
**/
/**
 * Mixin para gerar media query customizados
 * @Params $min width minimo
 * @Params $max width maximo
 * @Params $orientation orientação do celular portrait ou landscape 
**/
/**
 * Mixin para gerar media query pequeno
 * @Params $orientation orientação do celular portrait ou landscape 
**/
/**
 * Mixin para gerar media query medio
 * @Params $orientation orientação do celular portrait ou landscape 
**/
/**
 * Mixin para gerar media query grande
 * @Params $orientation orientação do celular portrait ou landscape 
**/
/**
 * Mixin para gerar media query tablets
 * @Params $orientation orientação do celular portrait ou landscape 
**/
/**
 * Mixin para gerar media query notebooks
 * @Params $orientation orientação do celular portrait ou landscape 
**/
/**
 * Mixin para gerar media query notebooks
 * @Params $orientation orientação do celular portrait ou landscape 
**/
/* ARQUIVOS DE FUNÇÕES */
/* ARQUIVOS DE TEMAS */
/**
* Espaçamentos padrões
**/
.mg-horizontal-2 {
  margin-left: 2px;
  margin-right: 2px;
}

.pd-horizontal-2 {
  padding-left: 2px;
  padding-right: 2px;
}

.mg-vertical-2 {
  margin-top: 2px;
  margin-bottom: 2px;
}

.pd-vertical-2 {
  padding-top: 2px;
  padding-bottom: 2px;
}

.mg-horizontal-4 {
  margin-left: 4px;
  margin-right: 4px;
}

.pd-horizontal-4 {
  padding-left: 4px;
  padding-right: 4px;
}

.mg-vertical-4 {
  margin-top: 4px;
  margin-bottom: 4px;
}

.pd-vertical-4 {
  padding-top: 4px;
  padding-bottom: 4px;
}

.mg-horizontal-8 {
  margin-left: 8px;
  margin-right: 8px;
}

.pd-horizontal-8 {
  padding-left: 8px;
  padding-right: 8px;
}

.mg-vertical-8 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.pd-vertical-8 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.mg-horizontal-16 {
  margin-left: 16px;
  margin-right: 16px;
}

.pd-horizontal-16 {
  padding-left: 16px;
  padding-right: 16px;
}

.mg-vertical-16 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.pd-vertical-16 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.mg-horizontal-24 {
  margin-left: 24px;
  margin-right: 24px;
}

.pd-horizontal-24 {
  padding-left: 24px;
  padding-right: 24px;
}

.mg-vertical-24 {
  margin-top: 24px;
  margin-bottom: 24px;
}

.pd-vertical-24 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.mg-horizontal-32 {
  margin-left: 32px;
  margin-right: 32px;
}

.pd-horizontal-32 {
  padding-left: 32px;
  padding-right: 32px;
}

.mg-vertical-32 {
  margin-top: 32px;
  margin-bottom: 32px;
}

.pd-vertical-32 {
  padding-top: 32px;
  padding-bottom: 32px;
}

.mg-horizontal-40 {
  margin-left: 40px;
  margin-right: 40px;
}

.pd-horizontal-40 {
  padding-left: 40px;
  padding-right: 40px;
}

.mg-vertical-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.pd-vertical-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mg-horizontal-48 {
  margin-left: 48px;
  margin-right: 48px;
}

.pd-horizontal-48 {
  padding-left: 48px;
  padding-right: 48px;
}

.mg-vertical-48 {
  margin-top: 48px;
  margin-bottom: 48px;
}

.pd-vertical-48 {
  padding-top: 48px;
  padding-bottom: 48px;
}

.mg-horizontal-56 {
  margin-left: 56px;
  margin-right: 56px;
}

.pd-horizontal-56 {
  padding-left: 56px;
  padding-right: 56px;
}

.mg-vertical-56 {
  margin-top: 56px;
  margin-bottom: 56px;
}

.pd-vertical-56 {
  padding-top: 56px;
  padding-bottom: 56px;
}

.mg-horizontal-64 {
  margin-left: 64px;
  margin-right: 64px;
}

.pd-horizontal-64 {
  padding-left: 64px;
  padding-right: 64px;
}

.mg-vertical-64 {
  margin-top: 64px;
  margin-bottom: 64px;
}

.pd-vertical-64 {
  padding-top: 64px;
  padding-bottom: 64px;
}

.img-responsive {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hide {
  display: none !important;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

[data-bg=neutral] {
  background: var(--neutral-transp-5, rgba(62, 69, 94, 0.05));
}

[data-bg=brand] {
  background: var(--brand-base, #022e69);
}

/* ARQUIVOS DE TEMAS */
/* ARQUIVOS DE COMPONENTS */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -ms-flex-positive: 1;
      flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -ms-flex: 0 0 8.3333333333%;
      flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  -ms-flex: 0 0 16.6666666667%;
      flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  -ms-flex: 0 0 25%;
      flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -ms-flex: 0 0 33.3333333333%;
      flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  -ms-flex: 0 0 41.6666666667%;
      flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  -ms-flex: 0 0 50%;
      flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -ms-flex: 0 0 58.3333333333%;
      flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  -ms-flex: 0 0 66.6666666667%;
      flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  -ms-flex: 0 0 75%;
      flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -ms-flex: 0 0 83.3333333333%;
      flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  -ms-flex: 0 0 91.6666666667%;
      flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -ms-flex-order: -1;
      order: -1;
}

.order-last {
  -ms-flex-order: 13;
      order: 13;
}

.order-0 {
  -ms-flex-order: 0;
      order: 0;
}

.order-1 {
  -ms-flex-order: 1;
      order: 1;
}

.order-2 {
  -ms-flex-order: 2;
      order: 2;
}

.order-3 {
  -ms-flex-order: 3;
      order: 3;
}

.order-4 {
  -ms-flex-order: 4;
      order: 4;
}

.order-5 {
  -ms-flex-order: 5;
      order: 5;
}

.order-6 {
  -ms-flex-order: 6;
      order: 6;
}

.order-7 {
  -ms-flex-order: 7;
      order: 7;
}

.order-8 {
  -ms-flex-order: 8;
      order: 8;
}

.order-9 {
  -ms-flex-order: 9;
      order: 9;
}

.order-10 {
  -ms-flex-order: 10;
      order: 10;
}

.order-11 {
  -ms-flex-order: 11;
      order: 11;
}

.order-12 {
  -ms-flex-order: 12;
      order: 12;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -ms-flex-positive: 1;
        flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    -ms-flex: 0 0 8.3333333333%;
        flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    -ms-flex: 0 0 16.6666666667%;
        flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
        flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex: 0 0 33.3333333333%;
        flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    -ms-flex: 0 0 41.6666666667%;
        flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex: 0 0 58.3333333333%;
        flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    -ms-flex: 0 0 66.6666666667%;
        flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
        flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex: 0 0 83.3333333333%;
        flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    -ms-flex: 0 0 91.6666666667%;
        flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -ms-flex-order: -1;
        order: -1;
  }
  .order-sm-last {
    -ms-flex-order: 13;
        order: 13;
  }
  .order-sm-0 {
    -ms-flex-order: 0;
        order: 0;
  }
  .order-sm-1 {
    -ms-flex-order: 1;
        order: 1;
  }
  .order-sm-2 {
    -ms-flex-order: 2;
        order: 2;
  }
  .order-sm-3 {
    -ms-flex-order: 3;
        order: 3;
  }
  .order-sm-4 {
    -ms-flex-order: 4;
        order: 4;
  }
  .order-sm-5 {
    -ms-flex-order: 5;
        order: 5;
  }
  .order-sm-6 {
    -ms-flex-order: 6;
        order: 6;
  }
  .order-sm-7 {
    -ms-flex-order: 7;
        order: 7;
  }
  .order-sm-8 {
    -ms-flex-order: 8;
        order: 8;
  }
  .order-sm-9 {
    -ms-flex-order: 9;
        order: 9;
  }
  .order-sm-10 {
    -ms-flex-order: 10;
        order: 10;
  }
  .order-sm-11 {
    -ms-flex-order: 11;
        order: 11;
  }
  .order-sm-12 {
    -ms-flex-order: 12;
        order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -ms-flex-positive: 1;
        flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    -ms-flex: 0 0 8.3333333333%;
        flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.6666666667%;
        flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
        flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.3333333333%;
        flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    -ms-flex: 0 0 41.6666666667%;
        flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex: 0 0 58.3333333333%;
        flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.6666666667%;
        flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    -ms-flex: 0 0 75%;
        flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex: 0 0 83.3333333333%;
        flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    -ms-flex: 0 0 91.6666666667%;
        flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -ms-flex-order: -1;
        order: -1;
  }
  .order-md-last {
    -ms-flex-order: 13;
        order: 13;
  }
  .order-md-0 {
    -ms-flex-order: 0;
        order: 0;
  }
  .order-md-1 {
    -ms-flex-order: 1;
        order: 1;
  }
  .order-md-2 {
    -ms-flex-order: 2;
        order: 2;
  }
  .order-md-3 {
    -ms-flex-order: 3;
        order: 3;
  }
  .order-md-4 {
    -ms-flex-order: 4;
        order: 4;
  }
  .order-md-5 {
    -ms-flex-order: 5;
        order: 5;
  }
  .order-md-6 {
    -ms-flex-order: 6;
        order: 6;
  }
  .order-md-7 {
    -ms-flex-order: 7;
        order: 7;
  }
  .order-md-8 {
    -ms-flex-order: 8;
        order: 8;
  }
  .order-md-9 {
    -ms-flex-order: 9;
        order: 9;
  }
  .order-md-10 {
    -ms-flex-order: 10;
        order: 10;
  }
  .order-md-11 {
    -ms-flex-order: 11;
        order: 11;
  }
  .order-md-12 {
    -ms-flex-order: 12;
        order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -ms-flex-positive: 1;
        flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    -ms-flex: 0 0 8.3333333333%;
        flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    -ms-flex: 0 0 16.6666666667%;
        flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
        flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex: 0 0 33.3333333333%;
        flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    -ms-flex: 0 0 41.6666666667%;
        flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex: 0 0 58.3333333333%;
        flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    -ms-flex: 0 0 66.6666666667%;
        flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
        flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex: 0 0 83.3333333333%;
        flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    -ms-flex: 0 0 91.6666666667%;
        flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -ms-flex-order: -1;
        order: -1;
  }
  .order-lg-last {
    -ms-flex-order: 13;
        order: 13;
  }
  .order-lg-0 {
    -ms-flex-order: 0;
        order: 0;
  }
  .order-lg-1 {
    -ms-flex-order: 1;
        order: 1;
  }
  .order-lg-2 {
    -ms-flex-order: 2;
        order: 2;
  }
  .order-lg-3 {
    -ms-flex-order: 3;
        order: 3;
  }
  .order-lg-4 {
    -ms-flex-order: 4;
        order: 4;
  }
  .order-lg-5 {
    -ms-flex-order: 5;
        order: 5;
  }
  .order-lg-6 {
    -ms-flex-order: 6;
        order: 6;
  }
  .order-lg-7 {
    -ms-flex-order: 7;
        order: 7;
  }
  .order-lg-8 {
    -ms-flex-order: 8;
        order: 8;
  }
  .order-lg-9 {
    -ms-flex-order: 9;
        order: 9;
  }
  .order-lg-10 {
    -ms-flex-order: 10;
        order: 10;
  }
  .order-lg-11 {
    -ms-flex-order: 11;
        order: 11;
  }
  .order-lg-12 {
    -ms-flex-order: 12;
        order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -ms-flex-positive: 1;
        flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    -ms-flex: 0 0 8.3333333333%;
        flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    -ms-flex: 0 0 16.6666666667%;
        flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
        flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex: 0 0 33.3333333333%;
        flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    -ms-flex: 0 0 41.6666666667%;
        flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex: 0 0 58.3333333333%;
        flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    -ms-flex: 0 0 66.6666666667%;
        flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
        flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex: 0 0 83.3333333333%;
        flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    -ms-flex: 0 0 91.6666666667%;
        flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -ms-flex-order: -1;
        order: -1;
  }
  .order-xl-last {
    -ms-flex-order: 13;
        order: 13;
  }
  .order-xl-0 {
    -ms-flex-order: 0;
        order: 0;
  }
  .order-xl-1 {
    -ms-flex-order: 1;
        order: 1;
  }
  .order-xl-2 {
    -ms-flex-order: 2;
        order: 2;
  }
  .order-xl-3 {
    -ms-flex-order: 3;
        order: 3;
  }
  .order-xl-4 {
    -ms-flex-order: 4;
        order: 4;
  }
  .order-xl-5 {
    -ms-flex-order: 5;
        order: 5;
  }
  .order-xl-6 {
    -ms-flex-order: 6;
        order: 6;
  }
  .order-xl-7 {
    -ms-flex-order: 7;
        order: 7;
  }
  .order-xl-8 {
    -ms-flex-order: 8;
        order: 8;
  }
  .order-xl-9 {
    -ms-flex-order: 9;
        order: 9;
  }
  .order-xl-10 {
    -ms-flex-order: 10;
        order: 10;
  }
  .order-xl-11 {
    -ms-flex-order: 11;
        order: 11;
  }
  .order-xl-12 {
    -ms-flex-order: 12;
        order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
.button {
  padding: 0;
  line-height: 1.15;
  border: none;
  box-shadow: none;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  text-decoration: none;
  display: inline-block;
}
.button:focus, .button:visited, .button:active {
  outline: none;
}
.button:focus, .button:visited, .button:active, .button:hover {
  text-decoration: none;
}
.button.button-lg {
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 48px;
  padding-right: 48px;
  border-radius: var(--border-radius-button, 3px);
  font-size: 1.125em;
}
.button.button-bg {
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 32px;
  padding-right: 32px;
  border-radius: var(--border-radius-button, 3px);
  font-size: 1em;
}
.button.button-md {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: var(--border-radius-button, 3px);
  font-size: 0.875em;
}
.button.button-sm {
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: var(--border-radius-button, 3px);
  font-size: 0.75em;
}
.button.is-primary {
  background: var(--highlight-base, #137df7);
  color: rgb(240.9754098361, 247.2745901639, 254.5245901639);
}
.button.is-primary:focus, .button.is-primary:visited, .button.is-primary:active {
  background: var(--highlight-dark, rgb(16.15, 106.25, 209.95));
}
.button.is-primary:hover {
  background: var(--highlight-light-2, rgb(89.8, 164, 249.4));
}
.button.is-primary.disabled {
  opacity: 0.5;
  background: var(--highlight-base, #137df7);
  cursor: not-allowed;
}
.button.is-secondary {
  background: var(--neutral-transp-10, rgba(62, 69, 94, 0.1));
  color: var(--neutral-base, #3e455e);
}
.button.is-secondary:focus, .button.is-secondary:visited, .button.is-secondary:active {
  background: var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
}
.button.is-secondary:hover {
  background: var(--neutral-transp-15, rgba(62, 69, 94, 0.15));
}
.button.is-secondary.is-loading {
  background: var(--neutral-transp-15, rgba(62, 69, 94, 0.15));
}
.button.is-secondary.disabled {
  opacity: 0.5;
  background: var(--neutral-transp-10, rgba(62, 69, 94, 0.1));
  cursor: not-allowed;
}
.button.is-success {
  background: var(--success-base, #6cbf13);
  color: var(--color-white-base, white);
}
.button.is-success:focus, .button.is-success:visited, .button.is-success:active {
  background: var(--success-transp-25, rgba(108, 191, 19, 0.75));
}
.button.is-success:hover {
  background: var(--success-transp-15, rgba(108, 191, 19, 0.85));
}
.button.is-success.is-loading {
  background: var(--success-transp-15, rgba(108, 191, 19, 0.85));
}
.button.is-success.disabled {
  opacity: 0.5;
  background: var(--success-transp-10, rgba(108, 191, 19, 0.9));
  cursor: not-allowed;
}
.button.is-warning {
  background: var(--warning-base, #fc5353);
  color: var(--color-white-base, white);
}
.button.is-warning:focus, .button.is-warning:visited, .button.is-warning:active {
  background: var(--warning-transp-25, rgba(252, 83, 83, 0.75));
}
.button.is-warning:hover {
  background: var(--warning-transp-15, rgba(252, 83, 83, 0.85));
}
.button.is-warning.is-loading {
  background: var(--warning-transp-15, rgba(252, 83, 83, 0.85));
}
.button.is-warning.disabled {
  opacity: 0.5;
  background: var(--warning-transp-10, rgba(252, 83, 83, 0.9));
  cursor: not-allowed;
}
.button.is-attention {
  background: var(--attention-base, #ffae00);
  color: var(--color-white-base, white);
}
.button.is-attention:focus, .button.is-attention:visited, .button.is-attention:active {
  background: var(--attention-transp-25, rgba(255, 174, 0, 0.75));
}
.button.is-attention:hover {
  background: var(--attention-transp-15, rgba(255, 174, 0, 0.85));
}
.button.is-attention.is-loading {
  background: var(--attention-transp-15, rgba(255, 174, 0, 0.85));
}
.button.is-attention.disabled {
  opacity: 0.5;
  background: var(--attention-transp-10, rgba(255, 174, 0, 0.9));
  cursor: not-allowed;
}
.button.is-outline {
  background: transparent;
  border: 1px solid var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  color: var(--neutral-base, #3e455e);
  opacity: 0.75;
}
.button.is-outline:focus, .button.is-outline:visited, .button.is-outline:active, .button.is-outline.is-loading {
  border-color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
  opacity: 0.5;
}
.button.is-outline:hover {
  border-color: var(--neutral-base, #3e455e);
  opacity: 1;
}
.button.is-outline.disabled {
  opacity: 0.25;
  border-color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  cursor: not-allowed;
}
.button.is-inverse {
  background: transparent;
  border: 1px solid var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
  color: var(--color-white-base, white);
}
.button.is-inverse:focus, .button.is-inverse:visited, .button.is-inverse:active, .button.is-inverse.is-loading {
  border-color: var(--color-white-transp-50, rgba(255, 255, 255, 0.5));
  opacity: 0.5;
}
.button.is-inverse:hover {
  border-color: var(--color-white-base, white);
  opacity: 1;
}
.button.is-inverse.disabled {
  opacity: 0.25;
  border-color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
  cursor: not-allowed;
}
.button[full-width=true] {
  display: block;
  width: 100%;
}

.copy-trigger:before {
  font-family: "FontAwesome";
  font-size: 14px;
  width: 14px;
  content: "\f24d";
  cursor: pointer;
  transition: 0.2s;
  color: var(--neutral-base, #3e455e);
}
.copy-trigger:hover:before {
  color: var(--highlight-base, #137df7);
}

.icon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: var(--highlight-base, #137df7);
}
.icon.icon-xs {
  width: 12px;
  height: 12px;
  font-size: 8px;
}
.icon.icon-sm {
  width: 18px;
  height: 18px;
  font-size: 12px;
}
.icon.icon-md {
  width: 24px;
  height: 24px;
  font-size: 16px;
}
.icon.icon-lg {
  width: 28px;
  height: 28px;
  font-size: 20px;
}
.icon.icon-xl {
  width: 32px;
  height: 32px;
  font-size: 24px;
}

.pin {
  width: 30px;
  height: 30px;
  border-radius: 50% 50% 50% 0;
  background: var(--highlight-base, #137df7);
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
  position: relative;
}
.pin.is-null:after {
  content: "";
  width: 10px;
  height: 10px;
  margin: 10px 0 0 10px;
  background: white;
  position: absolute;
  border-radius: 50%;
}
.pin > .count {
  text-align: center;
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  display: block;
  color: white;
  font-size: 1.125em;
  line-height: 1;
  font-weight: 500;
  padding: 5px 0 0 5px;
}

:not(html).placeholder {
  color: var(--color-white-base, white);
  font-size: 24px;
  background: var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
}
:not(html).placeholder img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
:not(html).placeholder.is-avatar {
  border-radius: 50%;
  overflow: hidden;
}
:not(html).placeholder.is-avatar:empty:before {
  content: "\f007";
}
:not(html).placeholder.is-marks {
  border-radius: var(--border-radius, 3px);
  overflow: hidden;
}
:not(html).placeholder.placeholder-sm {
  width: 48px;
  height: 48px;
}
:not(html).placeholder.placeholder-md {
  width: 96px;
  height: 96px;
}
:not(html).placeholder.placeholder-lg {
  width: 144px;
  height: 144px;
}
:not(html).placeholder:empty {
  position: relative;
}
:not(html).placeholder:empty:before {
  font-family: "Font Awesome 5 Free";
  position: absolute;
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  z-index: 5;
}

.members-page .members-panel .panel-form-media.custom-file-upload .bootstrap-filestyle .form-control, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .selectize-control .selectize-input, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .form-group .form-control, .input {
  padding: 0 16px;
  border-radius: var(--border-radius-input, 3px);
  box-shadow: none;
  border: 1px solid var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  color: var(--neutral-base, #3e455e);
  outline: none;
  min-height: 50px;
  appearance: none;
  font-size: var(--font-size-16, 1em);
}
.members-page .members-panel .panel-form-media.custom-file-upload .bootstrap-filestyle .form-control::-webkit-input-placeholder, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .selectize-control .selectize-input::-webkit-input-placeholder, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .form-group .form-control::-webkit-input-placeholder, .input::-webkit-input-placeholder {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}
.members-page .members-panel .panel-form-media.custom-file-upload .bootstrap-filestyle .form-control::-moz-placeholder, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .selectize-control .selectize-input::-moz-placeholder, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .form-group .form-control::-moz-placeholder, .input::-moz-placeholder {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}
.members-page .members-panel .panel-form-media.custom-file-upload .bootstrap-filestyle .form-control:-ms-input-placeholder, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .selectize-control .selectize-input:-ms-input-placeholder, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .form-group .form-control:-ms-input-placeholder, .input:-ms-input-placeholder {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}
.members-page .members-panel .panel-form-media.custom-file-upload .bootstrap-filestyle .form-control:-moz-placeholder, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .selectize-control .selectize-input:-moz-placeholder, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .form-group .form-control:-moz-placeholder, .input:-moz-placeholder {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}

[placeholder] {
  text-overflow: ellipsis;
}

select.input {
  height: 50px;
  -webkit-appearance: none;
  background: transparent;
  padding: 0 32px;
  color: var(--neutral-base, #3e455e);
}

.link {
  line-height: 1.25;
  color: var(--link-base, #3ebaf6);
  transition: 0.2s ease-in-out;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  font-size: var(--font-size-14, 0.875em);
}
.link:hover {
  color: var(--link-base, #3ebaf6);
  border-color: var(--link-base, #3ebaf6);
  text-decoration: none;
}
.link:focus, .link:active {
  color: var(--link-dark, rgb(43.4, 130.2, 172.2));
  border-color: var(--link-dark, rgb(43.4, 130.2, 172.2));
  text-decoration: none;
}
.link.pricing-example {
  display: block;
  margin-top: 4px;
}
.link.pricing-example:hover {
  border: none;
}

.content-form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  max-width: 100%;
}
@media screen and (min-width: 992px) {
  .content-form {
    min-width: 70%;
    max-width: 100%;
  }
}
.content-form:not(.form).is-open:after {
  font-size: var(--font-size-16, 1em);
}
.content-form .input-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 1;
      flex-grow: 1;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .content-form .input-group {
    width: auto;
  }
}
.content-form .input-group:not(:first-child) {
  margin-top: 16px;
}
@media screen and (min-width: 992px) {
  .content-form .input-group:not(:first-child) {
    margin-left: 16px;
    margin-top: 0;
  }
}
.content-form .input-group.has-itens .input-group-icon {
  border-bottom-left-radius: 0;
}
.content-form .input-group.has-itens .twitter-typeahead .input {
  border-bottom-right-radius: 0;
}
.content-form .input-group.has-itens .tt-menu {
  border-bottom-left-radius: var(--border-radius-input, 3px);
  border-bottom-right-radius: var(--border-radius-input, 3px);
}
.content-form .input-group.has-itens .tt-menu .tt-suggestion {
  padding: 8px;
}
.content-form .input-group.has-itens .tt-menu .tt-suggestion:last-child {
  padding-bottom: 12px;
}
.content-form .input-group .input-group-icon {
  width: auto;
  padding-left: 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  background: white;
  border-top-left-radius: var(--border-radius-input, 3px);
  border-bottom-left-radius: var(--border-radius-input, 3px);
  border: 1px solid var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  border-right: none;
  margin-right: -1px;
}
.content-form .input-group .twitter-typeahead {
  -ms-flex-positive: 1;
      flex-grow: 1;
  position: static !important;
}
.content-form .input-group .twitter-typeahead > .twitter-typeahead {
  display: block !important;
}
.content-form .input-group .twitter-typeahead .input {
  width: 100%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: none;
}
.content-form .input-group:not(.twitter-typeahead) .input {
  -ms-flex-positive: 1;
      flex-grow: 1;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: none;
}
.content-form .input-group .tt-menu {
  width: 100%;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border: 1px solid var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  margin-top: -2px;
  box-sizing: content-box;
  left: -1px !important;
  overflow: hidden;
}
.content-form .input-group .tt-menu .tt-dataset {
  background: white;
}
.content-form .input-group .tt-menu .tt-dataset.tt-dataset-where .tt-suggestion {
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.content-form .input-group .tt-menu .tt-suggestion {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 8px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  white-space: pre;
}
.content-form .input-group .tt-menu .tt-suggestion:not(:first-child) {
  border-top: 1px solid var(--neutral-transp-10, rgba(62, 69, 94, 0.1));
}
.content-form .input-group .tt-menu .tt-suggestion:hover {
  background: var(--neutral-transp-10, rgba(62, 69, 94, 0.1));
}
.content-form .input-group .tt-menu .tt-suggestion span:nth-child(1) {
  -ms-flex-order: 2;
      order: 2;
  float: none;
  font-size: var(--font-size-14, 0.875em);
}
.content-form .input-group .tt-menu .tt-suggestion span:nth-child(1) .fa {
  color: var(--highlight-base, #137df7);
}
.content-form .input-group .tt-menu .tt-suggestion span:nth-child(2) {
  text-align: left;
  max-width: calc(100% - 100px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.content-form .input-group-action {
  margin-top: 16px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .content-form .input-group-action {
    margin-left: 16px;
    margin-top: 0;
    width: auto;
  }
}
.content-form .input-group-action .button {
  width: 100%;
  display: block;
}
@media screen and (min-width: 992px) {
  .content-form .input-group-action .button {
    width: auto;
    display: inline-block;
  }
}

.form-captcha {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.form-captcha img {
  height: 50px;
  margin-top: 8px;
  border: 1px solid var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  border-right: none;
  padding: 4px;
  max-width: 136px;
}
.form-captcha img + input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-top: 8px !important;
}
.form-captcha + .consents-block {
  margin-top: 8px;
}

.input-password-control {
  position: relative;
  margin-top: 10px;
}
.input-password-control .password-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  outline: none;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  z-index: 2;
}
.input-password-control .password-toggle .fa {
  font-size: 18px;
  color: #3d3e40;
  transition: 0.2s;
}

.form-box .form-group {
  position: relative;
}

.cards-default {
  padding-top: 24px;
  padding-bottom: 24px;
}
@media only screen and (min-width: 992px) {
  .cards-default {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.cards-default[data-bg=brand] .cards-header > .heading {
  color: var(--color-white-base, white);
}
.cards-default[data-bg=brand] .cards-list .card .categories-dropdown .categories-dropdown-content {
  background-color: #fff;
  color: var(--neutral-base, #3e455e);
}
.cards-default[data-bg=brand] .cards-list .card .categories-dropdown .categories-dropdown-content:before {
  background-color: #fff;
}
.cards-default[data-bg=neutral] .cards-list .card .categories-dropdown .categories-dropdown-content {
  background-color: #fff;
}
.cards-default[data-bg=neutral] .cards-list .card .categories-dropdown .categories-dropdown-content:before {
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .cards-default[scrollable=true] .cards-list:not(.has-slider) {
    -ms-flex-flow: nowrap;
        flex-flow: nowrap;
    overflow: auto;
    margin-right: 0;
  }
  .cards-default[scrollable=true] .cards-list:not(.has-slider)::-webkit-scrollbar {
    width: 0px;
    background: transparent;
  }
}
.cards-default[scrollable=true] .cards-list .card:not(.card-horizontal)[data-columns="2"] {
  min-width: calc(100% - 16px * 2);
  margin-right: 16px;
}
@media screen and (min-width: 768px) {
  @supports (-ms-ime-align: auto) {
    .cards-default[scrollable=true] .cards-list .card:not(.card-horizontal)[data-columns="2"] {
      min-width: calc(100% / 2 - 16px * 2 - 1px);
    }
  }
  .cards-default[scrollable=true] .cards-list .card:not(.card-horizontal)[data-columns="2"] {
    min-width: calc(100% / 2 - 16px * 2);
    margin-right: 0;
    margin-left: 16px;
  }
}
@media screen and (min-width: 992px) {
  @supports (-ms-ime-align: auto) {
    .cards-default[scrollable=true] .cards-list .card:not(.card-horizontal)[data-columns="2"] {
      width: calc(100% / 2 - 16px * 2 - 1px);
    }
  }
  .cards-default[scrollable=true] .cards-list .card:not(.card-horizontal)[data-columns="2"] {
    width: calc(100% / 2 - 16px * 2);
    min-width: auto;
    margin-right: 16px;
  }
}
@media screen and (min-width: 1200px) {
  @supports (-ms-ime-align: auto) {
    .cards-default[scrollable=true] .cards-list .card:not(.card-horizontal)[data-columns="2"] {
      width: calc(100% / 2 - 16px * 2 - 1px);
    }
  }
  .cards-default[scrollable=true] .cards-list .card:not(.card-horizontal)[data-columns="2"] {
    width: calc(100% / 2 - 16px * 2);
  }
}
.cards-default[scrollable=true] .cards-list .card:not(.card-horizontal)[data-columns="3"] {
  min-width: calc(100% - 16px * 2);
  margin-right: 16px;
}
@media screen and (min-width: 768px) {
  @supports (-ms-ime-align: auto) {
    .cards-default[scrollable=true] .cards-list .card:not(.card-horizontal)[data-columns="3"] {
      min-width: calc(100% / 2 - 16px * 2 - 1px);
    }
  }
  .cards-default[scrollable=true] .cards-list .card:not(.card-horizontal)[data-columns="3"] {
    min-width: calc(100% / 2 - 16px * 2);
    margin-right: 0;
    margin-left: 16px;
  }
}
@media screen and (min-width: 992px) {
  @supports (-ms-ime-align: auto) {
    .cards-default[scrollable=true] .cards-list .card:not(.card-horizontal)[data-columns="3"] {
      width: calc(100% / 3 - 16px * 2 - 1px);
    }
  }
  .cards-default[scrollable=true] .cards-list .card:not(.card-horizontal)[data-columns="3"] {
    width: calc(100% / 3 - 16px * 2);
    min-width: auto;
    margin-right: 16px;
  }
}
@media screen and (min-width: 1200px) {
  @supports (-ms-ime-align: auto) {
    .cards-default[scrollable=true] .cards-list .card:not(.card-horizontal)[data-columns="3"] {
      width: calc(100% / 3 - 16px * 2 - 1px);
    }
  }
  .cards-default[scrollable=true] .cards-list .card:not(.card-horizontal)[data-columns="3"] {
    width: calc(100% / 3 - 16px * 2);
  }
}
.cards-default[scrollable=true] .cards-list .card:not(.card-horizontal)[data-columns="4"] {
  min-width: calc(100% - 16px * 2);
  margin-right: 16px;
}
@media screen and (min-width: 768px) {
  @supports (-ms-ime-align: auto) {
    .cards-default[scrollable=true] .cards-list .card:not(.card-horizontal)[data-columns="4"] {
      min-width: calc(100% / 2 - 16px * 2 - 1px);
    }
  }
  .cards-default[scrollable=true] .cards-list .card:not(.card-horizontal)[data-columns="4"] {
    min-width: calc(100% / 2 - 16px * 2);
    margin-right: 0;
    margin-left: 16px;
  }
}
@media screen and (min-width: 992px) {
  @supports (-ms-ime-align: auto) {
    .cards-default[scrollable=true] .cards-list .card:not(.card-horizontal)[data-columns="4"] {
      width: calc(100% / 3 - 16px * 2 - 1px);
    }
  }
  .cards-default[scrollable=true] .cards-list .card:not(.card-horizontal)[data-columns="4"] {
    width: calc(100% / 3 - 16px * 2);
    min-width: auto;
    margin-right: 16px;
  }
}
@media screen and (min-width: 1200px) {
  @supports (-ms-ime-align: auto) {
    .cards-default[scrollable=true] .cards-list .card:not(.card-horizontal)[data-columns="4"] {
      width: calc(100% / 4 - 16px * 2 - 1px);
    }
  }
  .cards-default[scrollable=true] .cards-list .card:not(.card-horizontal)[data-columns="4"] {
    width: calc(100% / 4 - 16px * 2);
  }
}
@supports (-ms-ime-align: auto) {
  .cards-default[scrollable=""][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="2"], .cards-default[scrollable=false][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="2"] {
    width: calc(100% / 2 - 16px / 2 - 1px);
  }
}
.cards-default[scrollable=""][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="2"], .cards-default[scrollable=false][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="2"] {
  width: calc(100% / 2 - 16px / 2);
  margin-right: 4px;
  margin-left: 4px;
}
@media screen and (min-width: 768px) {
  @supports (-ms-ime-align: auto) {
    .cards-default[scrollable=""][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="2"], .cards-default[scrollable=false][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="2"] {
      width: calc(100% / 2 - 16px * 2 - 1px);
    }
  }
  .cards-default[scrollable=""][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="2"], .cards-default[scrollable=false][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="2"] {
    width: calc(100% / 2 - 16px * 2);
    margin-right: 16px;
    margin-left: 16px;
  }
}
@media screen and (min-width: 992px) {
  @supports (-ms-ime-align: auto) {
    .cards-default[scrollable=""][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="2"], .cards-default[scrollable=false][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="2"] {
      width: calc(100% / 2 - 16px * 2 - 1px);
    }
  }
  .cards-default[scrollable=""][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="2"], .cards-default[scrollable=false][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="2"] {
    width: calc(100% / 2 - 16px * 2);
    min-width: auto;
    margin-right: 16px;
  }
}
@media screen and (min-width: 1200px) {
  @supports (-ms-ime-align: auto) {
    .cards-default[scrollable=""][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="2"], .cards-default[scrollable=false][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="2"] {
      width: calc(100% / 2 - 16px * 2 - 1px);
    }
  }
  .cards-default[scrollable=""][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="2"], .cards-default[scrollable=false][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="2"] {
    width: calc(100% / 2 - 16px * 2);
  }
}
@supports (-ms-ime-align: auto) {
  .cards-default[scrollable=""][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="3"], .cards-default[scrollable=false][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="3"] {
    width: calc(100% / 2 - 16px / 2 - 1px);
  }
}
.cards-default[scrollable=""][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="3"], .cards-default[scrollable=false][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="3"] {
  width: calc(100% / 2 - 16px / 2);
  margin-right: 4px;
  margin-left: 4px;
}
@media screen and (min-width: 768px) {
  @supports (-ms-ime-align: auto) {
    .cards-default[scrollable=""][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="3"], .cards-default[scrollable=false][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="3"] {
      width: calc(100% / 2 - 16px * 2 - 1px);
    }
  }
  .cards-default[scrollable=""][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="3"], .cards-default[scrollable=false][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="3"] {
    width: calc(100% / 2 - 16px * 2);
    margin-right: 16px;
    margin-left: 16px;
  }
}
@media screen and (min-width: 992px) {
  @supports (-ms-ime-align: auto) {
    .cards-default[scrollable=""][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="3"], .cards-default[scrollable=false][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="3"] {
      width: calc(100% / 3 - 16px * 2 - 1px);
    }
  }
  .cards-default[scrollable=""][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="3"], .cards-default[scrollable=false][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="3"] {
    width: calc(100% / 3 - 16px * 2);
    min-width: auto;
    margin-right: 16px;
  }
}
@media screen and (min-width: 1200px) {
  @supports (-ms-ime-align: auto) {
    .cards-default[scrollable=""][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="3"], .cards-default[scrollable=false][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="3"] {
      width: calc(100% / 3 - 16px * 2 - 1px);
    }
  }
  .cards-default[scrollable=""][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="3"], .cards-default[scrollable=false][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="3"] {
    width: calc(100% / 3 - 16px * 2);
  }
}
@supports (-ms-ime-align: auto) {
  .cards-default[scrollable=""][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="4"], .cards-default[scrollable=false][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="4"] {
    width: calc(100% / 2 - 16px / 2 - 1px);
  }
}
.cards-default[scrollable=""][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="4"], .cards-default[scrollable=false][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="4"] {
  width: calc(100% / 2 - 16px / 2);
  margin-right: 4px;
  margin-left: 4px;
}
@media screen and (min-width: 768px) {
  @supports (-ms-ime-align: auto) {
    .cards-default[scrollable=""][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="4"], .cards-default[scrollable=false][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="4"] {
      width: calc(100% / 2 - 16px * 2 - 1px);
    }
  }
  .cards-default[scrollable=""][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="4"], .cards-default[scrollable=false][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="4"] {
    width: calc(100% / 2 - 16px * 2);
    margin-right: 16px;
    margin-left: 16px;
  }
}
@media screen and (min-width: 992px) {
  @supports (-ms-ime-align: auto) {
    .cards-default[scrollable=""][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="4"], .cards-default[scrollable=false][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="4"] {
      width: calc(100% / 3 - 16px * 2 - 1px);
    }
  }
  .cards-default[scrollable=""][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="4"], .cards-default[scrollable=false][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="4"] {
    width: calc(100% / 3 - 16px * 2);
    min-width: auto;
    margin-right: 16px;
  }
}
@media screen and (min-width: 1200px) {
  @supports (-ms-ime-align: auto) {
    .cards-default[scrollable=""][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="4"], .cards-default[scrollable=false][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="4"] {
      width: calc(100% / 4 - 16px * 2 - 1px);
    }
  }
  .cards-default[scrollable=""][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="4"], .cards-default[scrollable=false][mobile-columns=true] .cards-list .card:not(.card-horizontal)[data-columns="4"] {
    width: calc(100% / 4 - 16px * 2);
  }
}
@media screen and (max-width: 991px) {
  .cards-default[card-type=horizontal-cards][scrollable=true] .cards-list .card.card-horizontal {
    -ms-flex-align: start;
        align-items: flex-start;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 170px;
    margin-right: 24px;
    -ms-flex-pack: start;
        justify-content: flex-start;
  }
}
@media screen and (max-width: 1199px) {
  .cards-default[card-type=horizontal-cards][scrollable=true] .cards-list .card .content .description {
    display: none;
  }
}
.cards-default .cards-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 24px;
}
.cards-default .cards-header > .heading {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
.cards-default .cards-header > .link {
  font-size: var(--font-size-16, 1em);
}
.cards-default .cards-upcoming {
  padding: 0 64px;
  position: relative;
}
.cards-default .cards-upcoming:after {
  content: "";
  position: absolute;
  bottom: -32px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(151, 151, 151, 0.23);
}
.cards-default .cards-upcoming .upcoming-button {
  background: white;
  border: 1px solid var(--neutral-base, #3e455e);
  border-radius: 9999px;
  width: 40px;
  height: 40px;
  color: var(--neutral-base, #3e455e);
  text-decoration: none;
  outline: none;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  line-height: 1;
  font-size: 18px;
  cursor: pointer;
}
.cards-default .cards-upcoming .upcoming-button[data-direction=previous] {
  left: 0;
}
.cards-default .cards-upcoming .upcoming-button[data-direction=next] {
  right: 0;
}
.cards-default .cards-upcoming .upcoming-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cards-default .cards-upcoming .selected-date {
  position: absolute;
  width: 10px;
  height: 10px;
  left: 0;
  bottom: -36px;
  transition: 0.2s ease-in-out;
  background: white;
  border-top: 1px solid rgba(151, 151, 151, 0.23);
  border-right: 1px solid rgba(151, 151, 151, 0.23);
  border-top-right-radius: var(--border-radius-icon, 3px);
  -ms-transform: translateX(83px) rotate(-45deg);
      transform: translateX(83px) rotate(-45deg);
  z-index: 5;
}
.cards-default .cards-upcoming .cards-upcoming-wrapper {
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.cards-default .cards-upcoming .cards-upcoming-wrapper::-webkit-scrollbar {
  display: none;
}
.cards-default .cards-upcoming + .cards-list {
  margin-top: 64px;
}
.cards-default .cards-upcoming + .parent-cards-list {
  margin-top: 64px;
}
.cards-default .cards-upcoming .calendar-sm {
  cursor: pointer;
}
.cards-default .cards-upcoming .calendar-sm:not(:first-child) {
  margin-left: 12px;
}
.cards-default .cards-upcoming .calendar-sm:not(:last-child) {
  margin-right: 12px;
}
.cards-default .cards-upcoming .calendar-sm[is-active=true] .month {
  background: var(--highlight-base, #137df7);
}
.cards-default .cards-upcoming .calendar-sm .month {
  background: var(--brand-base, #022e69);
  transition: 0.2s ease-in-out;
}
.cards-default .cards-upcoming .flickity-page-dots {
  display: none;
}
.cards-default .cards-upcoming .flickity-button:disabled {
  display: none;
}
.cards-default .cards-upcoming .flickity-viewport {
  cursor: pointer;
}
.cards-default .cards-wrapper[has-ads=true] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
}
.cards-default .cards-wrapper[has-ads=true] .cards-ads {
  max-width: none;
}
@media screen and (min-width: 992px) {
  .cards-default .cards-wrapper[has-ads=true] .cards-ads {
    max-width: 300px;
  }
}
.cards-default .cards-wrapper[has-ads=true] .cards-ads .banner {
  padding: 0;
  margin-top: 0;
}
.cards-default .cards-wrapper[has-ads=true] .cards-ads .banner[type=square] {
  gap: 32px;
}
.cards-default .cards-wrapper[has-ads=true] .cards-ads .banner[type=square] img {
  max-height: 250px;
  max-width: 250px;
}
.cards-default .cards-wrapper[has-ads=true] .cards-ads .banner .banner-link {
  display: block;
}
.cards-default .cards-wrapper[has-ads=true] .cards-ads .banner .banner-link:not(:first-child) {
  margin-top: 16px;
}
.cards-default .cards-wrapper[has-ads=true][banner-type=square] .cards-list {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .cards-default .cards-wrapper[has-ads=true][banner-type=square] .cards-list {
    width: 70%;
  }
}
@media screen and (min-width: 1200px) {
  .cards-default .cards-wrapper[has-ads=true][banner-type=square] .cards-list {
    width: 75%;
  }
}
.cards-default .cards-wrapper[has-ads=true][banner-type=square] .cards-ads {
  max-width: 100%;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 32px;
}
@media screen and (min-width: 992px) {
  .cards-default .cards-wrapper[has-ads=true][banner-type=square] .cards-ads {
    width: auto;
    max-width: 250px;
    display: block;
    margin-top: -16px;
  }
}
.cards-default .cards-wrapper[has-ads=true][banner-type=square] .cards-ads .banner .banner-link {
  margin-left: 16px;
}
@media screen and (min-width: 992px) {
  .cards-default .cards-wrapper[has-ads=true][banner-type=square] .cards-ads .banner .banner-link {
    margin-left: 0;
  }
}
.cards-default .cards-wrapper[has-ads=true][banner-type=skyscraper] .cards-list {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .cards-default .cards-wrapper[has-ads=true][banner-type=skyscraper] .cards-list {
    width: 80%;
  }
}
@media screen and (min-width: 1200px) {
  .cards-default .cards-wrapper[has-ads=true][banner-type=skyscraper] .cards-list {
    width: 85%;
  }
}
.cards-default .cards-wrapper[has-ads=true][banner-type=skyscraper] .cards-ads {
  display: block;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .cards-default .cards-wrapper[has-ads=true][banner-type=skyscraper] .cards-ads {
    width: initial;
  }
}
.cards-default .cards-wrapper[has-ads=true][banner-type=halfpage] .cards-list {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .cards-default .cards-wrapper[has-ads=true][banner-type=halfpage] .cards-list {
    width: 70%;
  }
}
.cards-default .cards-wrapper[has-ads=true][banner-type=halfpage] .cards-ads {
  display: block;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .cards-default .cards-wrapper[has-ads=true][banner-type=halfpage] .cards-ads {
    width: initial;
  }
}
.cards-default .cards-wrapper[has-ads=true][banner-type=square] .cards-list .card-horizontal[data-columns="1"], .cards-default .cards-wrapper[has-ads=true][banner-type=skyscraper] .cards-list .card-horizontal[data-columns="1"], .cards-default .cards-wrapper[has-ads=true][banner-type=halfpage] .cards-list .card-horizontal[data-columns="1"] {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .cards-default .cards-wrapper[has-ads=true][banner-type=square] .cards-list .card-horizontal[data-columns="2"] .picture, .cards-default .cards-wrapper[has-ads=true][banner-type=skyscraper] .cards-list .card-horizontal[data-columns="2"] .picture, .cards-default .cards-wrapper[has-ads=true][banner-type=halfpage] .cards-list .card-horizontal[data-columns="2"] .picture {
    width: 200px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .cards-default .cards-wrapper[has-ads=true][banner-type=square] .cards-list .card-horizontal[data-columns="2"] .picture, .cards-default .cards-wrapper[has-ads=true][banner-type=skyscraper] .cards-list .card-horizontal[data-columns="2"] .picture, .cards-default .cards-wrapper[has-ads=true][banner-type=halfpage] .cards-list .card-horizontal[data-columns="2"] .picture {
    width: 125px;
  }
}
@media screen and (min-width: 1200px) {
  .cards-default .cards-wrapper[has-ads=true][banner-type=square] .cards-list .card-horizontal[data-columns="2"] .content, .cards-default .cards-wrapper[has-ads=true][banner-type=skyscraper] .cards-list .card-horizontal[data-columns="2"] .content, .cards-default .cards-wrapper[has-ads=true][banner-type=halfpage] .cards-list .card-horizontal[data-columns="2"] .content {
    width: calc(100% - 200px);
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .cards-default .cards-wrapper[has-ads=true][banner-type=square] .cards-list .card-horizontal[data-columns="2"] .content, .cards-default .cards-wrapper[has-ads=true][banner-type=skyscraper] .cards-list .card-horizontal[data-columns="2"] .content, .cards-default .cards-wrapper[has-ads=true][banner-type=halfpage] .cards-list .card-horizontal[data-columns="2"] .content {
    width: calc(100% - 125px);
  }
}
.cards-default .cards-list:not(.has-slider) {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .cards-default .cards-list:not(.has-slider) {
    margin-left: -16px;
    margin-right: -16px;
  }
}
.cards-default .cards-list.has-slider .flickity-button {
  background: white;
  border: 1px solid var(--neutral-base, #3e455e);
  border-radius: 9999px;
  width: 40px;
  height: 40px;
}
.cards-default .cards-list.has-slider .flickity-button .flickity-button-icon {
  fill: var(--neutral-base, #3e455e);
}
.cards-default .cards-list.has-slider .flickity-prev-next-button {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .cards-default .cards-list.has-slider .flickity-prev-next-button {
    display: block;
    width: 40px;
    height: 100%;
    border-radius: 0;
    background: none;
    border: none;
    opacity: 1;
  }
  .cards-default .cards-list.has-slider .flickity-prev-next-button.previous {
    left: 0;
    background: rgb(204, 204, 204);
    background: linear-gradient(to right, rgb(204, 204, 204) 0%, rgba(255, 255, 255, 0) 100%);
  }
  .cards-default .cards-list.has-slider .flickity-prev-next-button.next {
    right: 0;
    background: rgba(255, 255, 255, 0);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(204, 204, 204) 100%);
  }
}
@media screen and (min-width: 992px) {
  .cards-default .cards-list.has-slider .flickity-prev-next-button {
    display: block;
  }
  .cards-default .cards-list.has-slider .flickity-prev-next-button.previous {
    left: -43px;
  }
  .cards-default .cards-list.has-slider .flickity-prev-next-button.next {
    right: -43px;
  }
}
@media screen and (min-width: 1200px) {
  .cards-default .cards-list.has-slider .flickity-prev-next-button.previous {
    left: -55px;
  }
  .cards-default .cards-list.has-slider .flickity-prev-next-button.next {
    right: -55px;
  }
}
.cards-default .cards-list.has-slider .flickity-page-dots {
  bottom: -40px;
  display: block;
}
@media screen and (min-width: 768px) {
  .cards-default .cards-list.has-slider .flickity-page-dots {
    display: none;
  }
}
.cards-default .cards-list.has-slider .flickity-page-dots .dot {
  width: 14px;
  height: 14px;
  opacity: 1;
  background: transparent;
  border: 1px solid var(--neutral-base, #3e455e);
  transition: 0.2s ease-in-out;
}
.cards-default .cards-list.has-slider .flickity-page-dots .dot:hover {
  background: var(--neutral-base, #3e455e);
  border-color: var(--neutral-base, #3e455e);
  opacity: 0.75;
}
.cards-default .cards-list.has-slider .flickity-page-dots .dot.is-selected {
  border-width: 4px;
}
.cards-default .cards-list.has-slider .card {
  margin: 0 !important;
  margin-left: 24px !important;
}
.cards-default .cards-list .card {
  margin-bottom: 32px;
  text-decoration: none;
}
.cards-default .cards-list .card[data-columns="2"] {
  width: 100%;
}
@media screen and (min-width: 768px) {
  @supports (-ms-ime-align: auto) {
    .cards-default .cards-list .card[data-columns="2"] {
      width: calc(100% / 2 - 16px * 2 - 1px);
    }
  }
  .cards-default .cards-list .card[data-columns="2"] {
    width: calc(100% / 2 - 16px * 2);
    margin-right: 16px;
    margin-left: 16px;
  }
}
@media screen and (min-width: 992px) {
  @supports (-ms-ime-align: auto) {
    .cards-default .cards-list .card[data-columns="2"] {
      width: calc(100% / 2 - 16px * 2 - 1px);
    }
  }
  .cards-default .cards-list .card[data-columns="2"] {
    width: calc(100% / 2 - 16px * 2);
    min-width: auto;
    margin-right: 16px;
  }
}
@media screen and (min-width: 1200px) {
  @supports (-ms-ime-align: auto) {
    .cards-default .cards-list .card[data-columns="2"] {
      width: calc(100% / 2 - 16px * 2 - 1px);
    }
  }
  .cards-default .cards-list .card[data-columns="2"] {
    width: calc(100% / 2 - 16px * 2);
  }
}
.cards-default .cards-list .card[data-columns="3"] {
  width: 100%;
}
@media screen and (min-width: 768px) {
  @supports (-ms-ime-align: auto) {
    .cards-default .cards-list .card[data-columns="3"] {
      width: calc(100% / 2 - 16px * 2 - 1px);
    }
  }
  .cards-default .cards-list .card[data-columns="3"] {
    width: calc(100% / 2 - 16px * 2);
    margin-right: 16px;
    margin-left: 16px;
  }
}
@media screen and (min-width: 992px) {
  @supports (-ms-ime-align: auto) {
    .cards-default .cards-list .card[data-columns="3"] {
      width: calc(100% / 3 - 16px * 2 - 1px);
    }
  }
  .cards-default .cards-list .card[data-columns="3"] {
    width: calc(100% / 3 - 16px * 2);
    min-width: auto;
    margin-right: 16px;
  }
}
@media screen and (min-width: 1200px) {
  @supports (-ms-ime-align: auto) {
    .cards-default .cards-list .card[data-columns="3"] {
      width: calc(100% / 3 - 16px * 2 - 1px);
    }
  }
  .cards-default .cards-list .card[data-columns="3"] {
    width: calc(100% / 3 - 16px * 2);
  }
}
.cards-default .cards-list .card[data-columns="4"] {
  width: 100%;
}
@media screen and (min-width: 768px) {
  @supports (-ms-ime-align: auto) {
    .cards-default .cards-list .card[data-columns="4"] {
      width: calc(100% / 2 - 16px * 2 - 1px);
    }
  }
  .cards-default .cards-list .card[data-columns="4"] {
    width: calc(100% / 2 - 16px * 2);
    margin-right: 16px;
    margin-left: 16px;
  }
}
@media screen and (min-width: 992px) {
  @supports (-ms-ime-align: auto) {
    .cards-default .cards-list .card[data-columns="4"] {
      width: calc(100% / 3 - 16px * 2 - 1px);
    }
  }
  .cards-default .cards-list .card[data-columns="4"] {
    width: calc(100% / 3 - 16px * 2);
    min-width: auto;
    margin-right: 16px;
  }
}
@media screen and (min-width: 1200px) {
  @supports (-ms-ime-align: auto) {
    .cards-default .cards-list .card[data-columns="4"] {
      width: calc(100% / 4 - 16px * 2 - 1px);
    }
  }
  .cards-default .cards-list .card[data-columns="4"] {
    width: calc(100% / 4 - 16px * 2);
  }
}
.cards-default .cards-list .card:not(.card-horizontal) .content {
  margin-top: 24px;
}
.cards-default .cards-list .card.card-horizontal {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: start;
      align-items: flex-start;
}
@media screen and (min-width: 992px) {
  .cards-default .cards-list .card.card-horizontal {
    -ms-flex-direction: row;
        flex-direction: row;
  }
}
@media screen and (min-width: 992px) {
  .cards-default .cards-list .card.card-horizontal .picture {
    width: 200px;
  }
}
@media screen and (min-width: 1200px) {
  .cards-default .cards-list .card.card-horizontal .picture {
    width: 270px;
  }
}
.cards-default .cards-list .card.card-horizontal .picture .picture-link-offer img {
  width: auto;
}
.cards-default .cards-list .card.card-horizontal .calendar-sm {
  z-index: 5;
}
@media screen and (min-width: 992px) {
  .cards-default .cards-list .card.card-horizontal[data-columns="2"] .picture {
    width: 266px;
  }
}
@media screen and (min-width: 1200px) {
  .cards-default .cards-list .card.card-horizontal[data-columns="2"] .picture {
    width: 266px;
  }
}
@media screen and (min-width: 992px) {
  .cards-default .cards-list .card.card-horizontal[data-columns="3"] .picture {
    width: 165px;
  }
}
@media screen and (min-width: 1200px) {
  .cards-default .cards-list .card.card-horizontal[data-columns="3"] .picture {
    width: 165px;
  }
}
@media screen and (min-width: 992px) {
  .cards-default .cards-list .card.card-horizontal[data-columns="3"] .content {
    padding-left: 25px;
  }
}
.cards-default .cards-list .card.card-horizontal .content {
  margin-top: 16px;
}
@media screen and (min-width: 992px) {
  .cards-default .cards-list .card.card-horizontal .content {
    width: calc(100% - 224px);
    margin-top: 0;
    padding-left: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .cards-default .cards-list .card.card-horizontal .content {
    width: calc(100% - 294px);
  }
}
@media screen and (min-width: 992px) {
  .cards-default .cards-list .card.card-horizontal[data-columns="2"] .content {
    width: calc(100% - 266px);
  }
}
@media screen and (min-width: 1200px) {
  .cards-default .cards-list .card.card-horizontal[data-columns="2"] .content {
    width: calc(100% - 266px);
  }
}
@media screen and (min-width: 992px) {
  .cards-default .cards-list .card.card-horizontal[data-columns="3"] .content {
    width: calc(100% - 165px);
  }
}
@media screen and (min-width: 1200px) {
  .cards-default .cards-list .card.card-horizontal[data-columns="3"] .content {
    width: calc(100% - 165px);
  }
}
.cards-default .cards-list .card.has-bg {
  position: relative;
  overflow: hidden;
  background-size: cover;
}
.cards-default .cards-list .card.has-bg[data-columns="2"] {
  min-height: 170px;
}
@media screen and (min-width: 768px) {
  .cards-default .cards-list .card.has-bg[data-columns="2"] {
    min-height: 240px;
  }
}
@media screen and (min-width: 992px) {
  .cards-default .cards-list .card.has-bg[data-columns="2"] {
    min-height: 370px;
  }
}
.cards-default .cards-list .card.has-bg[data-columns="3"] {
  min-height: 170px;
}
@media screen and (min-width: 992px) {
  .cards-default .cards-list .card.has-bg[data-columns="3"] {
    min-height: 240px;
  }
}
.cards-default .cards-list .card.has-bg[data-columns="4"] {
  min-height: 170px;
}
.cards-default .cards-list .card.has-bg:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.75;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000000);
  transition: 0.2s ease-in-out;
}
.cards-default .cards-list .card.has-bg:hover:before {
  top: 50%;
}
.cards-default .cards-list .card.no-image {
  padding: 16px;
  background: var(--brand-base, #022e69);
  min-height: 154px;
  transition: 0.2s ease-in-out;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cards-default .cards-list .card.no-image {
    height: 154px;
  }
}
.cards-default .cards-list .card.no-image .content {
  margin-top: 0;
}
.cards-default .cards-list .card.no-image:hover {
  background: var(--brand-dark, rgb(1.4, 32.2, 73.5));
}
.cards-default .cards-list .card.has-bg, .cards-default .cards-list .card.no-image {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  border-radius: var(--border-radius, 3px);
  padding: 0 16px 16px;
}
.cards-default .cards-list .card.has-bg:hover .picture img, .cards-default .cards-list .card.no-image:hover .picture img {
  -ms-transform: scale(1);
      transform: scale(1);
}
.cards-default .cards-list .card.has-bg:hover .content .title, .cards-default .cards-list .card.no-image:hover .content .title {
  color: var(--color-white-base, white);
}
.cards-default .cards-list .card.has-bg .content, .cards-default .cards-list .card.no-image .content {
  position: relative;
  z-index: 5;
}
.cards-default .cards-list .card.has-bg .content .title, .cards-default .cards-list .card.no-image .content .title {
  color: var(--color-white-base, white);
}
.cards-default .cards-list .card.has-bg .content .categories, .cards-default .cards-list .card.no-image .content .categories {
  color: var(--color-white-base, white);
}
.cards-default .cards-list .card.has-bg .content .categories .count, .cards-default .cards-list .card.no-image .content .categories .count {
  color: var(--color-white-transp-50, rgba(255, 255, 255, 0.5));
  margin-left: 3px;
}
.cards-default .cards-list .card.has-bg .content .reviews, .cards-default .cards-list .card.no-image .content .reviews {
  margin-top: 8px;
}
.cards-default .cards-list .card.has-bg .content .reviews .reviews-stars .fa-star-o, .cards-default .cards-list .card.no-image .content .reviews .reviews-stars .fa-star-o {
  color: var(--color-white-transp-50, rgba(255, 255, 255, 0.5));
}
.cards-default .cards-list .card.has-bg .content .reviews .reviews-count, .cards-default .cards-list .card.no-image .content .reviews .reviews-count {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.cards-default .cards-list .card:hover .picture img {
  -ms-transform: scale(1.05);
      transform: scale(1.05);
}
.cards-default .cards-list .card:hover .content .title {
  color: var(--highlight-base, #137df7);
}
.cards-default .cards-list .card .categories-dropdown {
  position: relative;
  display: inline-block;
}
.cards-default .cards-list .card .categories-dropdown .categories-dropdown-toggle {
  text-decoration: none;
  border-bottom: none;
  cursor: pointer;
}
.cards-default .cards-list .card .categories-dropdown .categories-dropdown-content {
  position: absolute;
  width: 178px;
  background: #f5f6f7;
  padding: 8px;
  border-radius: 3px;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  margin-top: 16px;
  text-align: center;
  display: none;
  z-index: 5;
}
.cards-default .cards-list .card .categories-dropdown .categories-dropdown-content:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #f5f6f7;
  top: -5px;
  left: 50%;
  -ms-transform: translateX(-50%) rotate(45deg);
      transform: translateX(-50%) rotate(45deg);
}
.cards-default .cards-list .card .picture {
  display: block;
  border-radius: var(--border-radius, 3px);
  overflow: hidden;
  position: relative;
}
.cards-default .cards-list .card .picture .badge {
  position: absolute;
  background: var(--color-white-transp-85, rgba(255, 255, 255, 0.85));
  border-radius: var(--border-radius-icon, 3px);
  top: 16px;
  left: 16px;
  line-height: 1;
  padding: 8px;
  color: var(--neutral-base, #3e455e);
  z-index: 5;
  font-weight: bold;
  text-decoration: none;
  font-size: var(--font-size-14, 0.875em);
}
.cards-default .cards-list .card .picture img {
  /*
   * Alterado para testes 01/04/2019
   * João Deroldo
   *
   * max-width: 100%;
   * max-height: 370px;
   * height: auto;
  */
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: 0.2s ease-in-out;
  border-radius: var(--border-radius, 3px);
}
.cards-default .cards-list .card .picture .calendar-sm {
  position: absolute;
  top: 8px;
  left: 8px;
  border: none;
}
.cards-default .cards-list .card .picture .picture-link {
  display: block;
}
.cards-default .cards-list .card .content .date {
  font-family: var(--heading-font, "Rubik");
  font-size: var(--font-size-14, 0.875em);
  font-weight: 500;
  margin-bottom: 4px;
}
.cards-default .cards-list .card .content .title {
  color: var(--neutral-base, #3e455e);
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
  transition: 0.2s ease-in-out;
  display: block;
}
.cards-default .cards-list .card .content .title + .reviews {
  margin-top: 8px;
}
.cards-default .cards-list .card .content .categories {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
  margin-top: 8px;
  font-size: var(--font-size-14, 0.875em);
}
.cards-default .cards-list .card .content .description {
  margin-top: 8px;
}
.cards-default .cards-list .card .content .description .paragraph {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  font-weight: 300;
  word-break: break-word;
}
.cards-default .cards-list .card .content .location {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  margin-top: 8px;
}
.cards-default .cards-list .card .content .recurring-event {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  margin-top: 8px;
}
.cards-default .cards-list .card .content .reviews {
  margin-top: 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.cards-default .cards-list .card .content .reviews .reviews-stars .fa-star {
  color: var(--badge-base, #ffc800);
}
.cards-default .cards-list .card .content .reviews .reviews-stars .fa-star-o {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}
.cards-default .cards-list .card .content .reviews .reviews-count {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  margin-left: 16px;
  font-size: var(--font-size-14, 0.875em);
}
.cards-default .cards-list .card .content .price {
  margin-top: 16px;
}
.cards-default .cards-list .card .content .price:before {
  content: attr(data-prefix);
}
.cards-default .cards-list .card .content .author {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  margin-top: 16px;
}
.cards-default .cards-list .card .content .author .author-picture {
  width: 32px;
  height: 32px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  border-radius: 9999px;
  overflow: hidden;
  border: 1px solid var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
}
.cards-default .cards-list .card .content .author .author-picture .fa {
  color: var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
}
.cards-default .cards-list .card .content .author .author-picture img {
  max-width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.cards-default .cards-list .card .content .author .author-name {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  font-weight: 300;
  margin-left: 16px;
  font-size: var(--font-size-14, 0.875em);
  max-width: calc(100% - 64px);
}
.cards-default .cards-list .card .content .author .author-info {
  margin-left: 16px;
}
.cards-default .cards-list .card .content .author .author-info .author-name {
  font-family: var(--heading-font, "Rubik");
  color: var(--neutral-base, #3e455e);
  font-weight: bold;
  margin-left: 0;
  font-size: var(--font-size-16, 1em);
}
.cards-default .cards-list .card .content .author .author-info .author-days {
  line-height: 1;
  font-family: var(--paragraph-font, "Roboto");
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
  margin-top: 2px;
  font-size: var(--font-size-12, 0.75em);
}
.cards-default .cards-list .card .content .price-off {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
  margin-top: 16px;
  text-decoration: line-through;
  font-size: var(--font-size-14, 0.875em);
}
.cards-default .cards-list .card .content .price-off:before {
  content: attr(data-prefix);
}
.cards-default .cards-list .card .content .price-off + .price {
  margin-top: 0;
}
.cards-default .cards-list .card .content .valid-time {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
  margin-top: 16px;
  font-size: var(--font-size-16, 1em);
}
.cards-default .cards-list .card .calendar-sm + .content-info {
  width: calc(100% - 64px);
}
.cards-default .card-wrapper.card-vertical-plus-horizontal {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.cards-default .card-wrapper.card-vertical-plus-horizontal .cards-list {
  margin: 0;
}
.cards-default .card-wrapper.card-vertical-plus-horizontal > .card-wrapper-vertical {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .cards-default .card-wrapper.card-vertical-plus-horizontal > .card-wrapper-vertical {
    width: 48%;
  }
}
.cards-default .card-wrapper.card-vertical-plus-horizontal > .card-wrapper-vertical .card {
  width: 100%;
}
.cards-default .card-wrapper.card-vertical-plus-horizontal > .card-wrapper-vertical .card .picture img {
  width: 100%;
}
.cards-default .card-wrapper.card-vertical-plus-horizontal > .card-wrapper-horizontal {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .cards-default .card-wrapper.card-vertical-plus-horizontal > .card-wrapper-horizontal {
    width: 48%;
  }
}
.cards-default .card-wrapper.card-vertical-plus-horizontal > .card-wrapper-horizontal .cards-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.cards-default .card-wrapper.card-vertical-plus-horizontal > .card-wrapper-horizontal .card-horizontal {
  margin-left: 0;
  -ms-flex-align: start;
      align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .cards-default .card-wrapper.card-vertical-plus-horizontal > .card-wrapper-horizontal .card-horizontal {
    width: 48%;
  }
}
@media screen and (min-width: 992px) {
  .cards-default .card-wrapper.card-vertical-plus-horizontal > .card-wrapper-horizontal .card-horizontal {
    width: 100%;
  }
}
.cards-default .card-wrapper.card-two-columns-horizontal {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.cards-default .card-wrapper.card-two-columns-horizontal .cards-list {
  margin: 0;
}
.cards-default .card-wrapper.card-two-columns-horizontal .card-horizontal {
  margin-left: 0;
  -ms-flex-align: start;
      align-items: flex-start;
  width: 100%;
}
.cards-default .card-wrapper.card-two-columns-horizontal > .card-wrapper-left {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .cards-default .card-wrapper.card-two-columns-horizontal > .card-wrapper-left {
    width: 55%;
  }
}
.cards-default .card-wrapper.card-two-columns-horizontal > .card-wrapper-left .card-horizontal .picture {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .cards-default .card-wrapper.card-two-columns-horizontal > .card-wrapper-left .card-horizontal .picture {
    width: 280px;
  }
}
@media screen and (min-width: 1200px) {
  .cards-default .card-wrapper.card-two-columns-horizontal > .card-wrapper-left .card-horizontal .picture {
    width: 400px;
  }
}
@media screen and (min-width: 992px) {
  .cards-default .card-wrapper.card-two-columns-horizontal > .card-wrapper-left .card-horizontal .content {
    width: calc(100% - 304px);
  }
}
@media screen and (min-width: 1200px) {
  .cards-default .card-wrapper.card-two-columns-horizontal > .card-wrapper-left .card-horizontal .content {
    width: calc(100% - 424px);
  }
}
.cards-default .card-wrapper.card-two-columns-horizontal > .card-wrapper-right {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .cards-default .card-wrapper.card-two-columns-horizontal > .card-wrapper-right {
    width: 40%;
  }
}
.cards-default .card-wrapper.card-two-columns-horizontal > .card-wrapper-right .card-horizontal .picture {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .cards-default .card-wrapper.card-two-columns-horizontal > .card-wrapper-right .card-horizontal .picture {
    width: 150px;
  }
}
@media screen and (min-width: 1200px) {
  .cards-default .card-wrapper.card-two-columns-horizontal > .card-wrapper-right .card-horizontal .picture {
    width: 190px;
  }
}
@media screen and (min-width: 992px) {
  .cards-default .card-wrapper.card-two-columns-horizontal > .card-wrapper-right .card-horizontal .content {
    width: calc(100% - 174px);
  }
}
@media screen and (min-width: 1200px) {
  .cards-default .card-wrapper.card-two-columns-horizontal > .card-wrapper-right .card-horizontal .content {
    width: calc(100% - 214px);
  }
}

.calendar-sm {
  width: 50px;
  min-width: 50px;
  border-radius: 3px;
  border: 1px solid var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  background: white;
  overflow: hidden;
  z-index: 5;
}
.calendar-sm .month {
  background: var(--highlight-base, #137df7);
  font-weight: bold;
  text-transform: uppercase;
  color: var(--color-white-base, white);
  line-height: 1;
  text-align: center;
  padding: 3px 0;
  font-size: var(--font-size-14, 0.875em);
}
.calendar-sm .day {
  line-height: 1;
  text-align: center;
  padding: 3px 0;
  font-size: var(--font-size-24, 1.5em);
}
.calendar-sm .day-abbr {
  line-height: 1;
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  text-align: center;
  padding-bottom: 3px;
  font-size: var(--font-size-12, 0.75em);
}

.heading {
  line-height: 1.3;
  margin: 0;
  color: var(--neutral-base, #3e455e);
  font-family: var(--heading-font, "Rubik");
  font-weight: 500;
}
.heading.h-1 {
  font-size: var(--font-size-40, 2.5em);
}
.heading.h-2 {
  font-size: var(--font-size-32, 2em);
}
.heading.h-3 {
  font-size: var(--font-size-24, 1.5em);
}
.heading.h-4 {
  font-size: var(--font-size-20, 1.25em);
}
.heading.h-5 {
  font-size: var(--font-size-16, 1em);
}

.paragraph {
  line-height: 1.5;
  color: var(--neutral-base, #3e455e);
  font-family: var(--paragraph-font, "Roboto");
  font-weight: normal;
  margin-bottom: 0;
}
.paragraph.p-1 {
  font-size: var(--font-size-18, 1.125em);
}
.paragraph.p-2 {
  font-size: var(--font-size-16, 1em);
}
.paragraph.p-3 {
  font-size: var(--font-size-14, 0.875em);
}
.paragraph.p-4 {
  font-size: var(--font-size-12, 0.75em);
}

.pd-t {
  padding-top: 40px;
}

.admin-bar {
  background-color: transparent;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 5500;
  min-height: 40px;
  display: -ms-flexbox;
  display: flex;
}
.admin-bar.hidden-bar .toggle-bar-button {
  -ms-transform: rotate(180deg);
      transform: rotate(180deg);
}
.admin-bar.hidden-bar .admin-bar-content {
  -ms-transform: translateY(-100%);
      transform: translateY(-100%);
}
.admin-bar .toggle-bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  min-width: 40px;
  background: #000;
  padding: 0 14px;
  cursor: pointer;
}
.admin-bar .toggle-bar img {
  width: 20px;
  height: 20px;
  object-fit: cover;
  opacity: 0.2;
}
.admin-bar .toggle-bar .toggle-bar-button {
  position: relative;
  background-color: transparent;
  color: #fff;
  outline: none;
  border: 0;
  cursor: pointer;
  z-index: 1;
  font-size: 9px;
  transition: 0.2s;
}
.admin-bar .admin-bar-content {
  background: #000;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: calc(100% - 40px);
  padding: 0 15px 0 0;
  transition: 0.5s;
  -ms-transform: translateY(0);
      transform: translateY(0);
}
.admin-bar .admin-bar-content.hidden-bar {
  -ms-transform: translateY(-100%);
      transform: translateY(-100%);
}
.admin-bar .admin-bar-content > .content-left {
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.admin-bar .admin-bar-content > .content-left .admin-bar-link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 12px;
  height: 100%;
  align-items: center;
  font-size: var(--font-size-14, 0.875em);
  color: #fff;
  transition: 0.2s ease-in-out;
  text-decoration: none;
}
.admin-bar .admin-bar-content > .content-left .admin-bar-link.dashboard-link {
  display: none;
}
@media screen and (min-width: 768px) {
  .admin-bar .admin-bar-content > .content-left .admin-bar-link.dashboard-link {
    display: -ms-flexbox;
    display: flex;
  }
}
.admin-bar .admin-bar-content > .content-left .admin-bar-link:hover, .admin-bar .admin-bar-content > .content-left .admin-bar-link:focus {
  opacity: 0.6;
}
.admin-bar .admin-bar-content > .content-left .admin-bar-link .fa {
  font-size: 16px;
  margin-right: 8px;
}
.admin-bar .admin-bar-content > .content-left .admin-bar-link span {
  font-weight: 400;
}
.admin-bar .admin-bar-content > .content-left .admin-bar-link.admin-bar-link-highlight {
  position: relative;
  background-color: var(--highlight-base, #137df7);
}
.admin-bar .admin-bar-content > .content-right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
}
.admin-bar .admin-bar-content > .content-right .maintenance-message {
  display: none;
  color: var(--attention-base, #ffae00);
  font-size: 0.75em;
}
@media screen and (min-width: 992px) {
  .admin-bar .admin-bar-content > .content-right .maintenance-message {
    display: inline-block;
    font-size: 0.875em;
  }
}
.admin-bar .admin-bar-content > .content-right form {
  margin-left: 16px;
}
.admin-bar .admin-bar-content > .content-right .admin-bar-link {
  margin-left: 32px;
}
.admin-bar .admin-bar-content > .content-right .admin-bar-link .fa {
  color: #fff;
}
.admin-bar .admin-bar-content > .content-right .button {
  display: none;
}
@media screen and (min-width: 768px) {
  .admin-bar .admin-bar-content > .content-right .button {
    display: inline-block;
  }
}

.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}

.collapse.in {
  display: block;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition-property: height, visibility;
  transition-duration: 0.35s;
  transition-timing-function: ease;
}

.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.crop-image .modal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.modal.crop-image .modal-header:before, .modal.crop-image .modal-header:after {
  content: none;
}
.modal.crop-image .modal-header .switch-button {
  margin-left: 0;
}
.modal.crop-image .modal-header .toggle-crop-image-section {
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.modal.crop-image .modal-header .toggle-crop-image-section .fa {
  font-size: 16px;
  color: #6b6b6b;
  -ms-transform: translateY(3px);
      transform: translateY(3px);
}
.modal.crop-image .modal-body .default-row-biling {
  margin-top: 24px;
}
.modal.crop-image .modal-body .jcrop-holder {
  margin-bottom: 0;
}
.modal.crop-image .modal-body .fa {
  font-size: 14px;
  -ms-transform: translateY(1px);
      transform: translateY(1px);
}
.modal.crop-image .modal-body .form-group {
  position: relative;
}
.modal.crop-image .modal-body .form-group .tooltip-icon {
  margin-left: 4px;
  color: #ababab;
}
.modal.crop-image .modal-body .form-group .ai-assist-group {
  position: absolute;
  right: 0;
  top: 0;
  white-space: nowrap;
}
.modal.crop-image .modal-body .form-group .ai-assist-group .ai-assist {
  color: #1a9ad9;
}
.modal.crop-image .modal-body .form-group .ai-assist-group .ai-assist:hover {
  color: #116a96;
}

.modal.fade .modal-dialog {
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  transition: transform 0.3s ease-out;
}

.modal.in .modal-dialog {
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-content {
  position: relative;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius, 3px);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000;
}

.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}

.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: 0.5;
}

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.42857143;
}

.modal-body {
  position: relative;
  padding: 15px;
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.clearfix:before,
.clearfix:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " ";
}

.clearfix:after,
.modal-header:after,
.modal-footer:after {
  clear: both;
}

.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none !important;
}

.affix {
  position: fixed;
}

table {
  background-color: transparent;
}
table col[class*=col-] {
  position: static;
  display: table-column;
  float: none;
}
table td[class*=col-], table th[class*=col-] {
  position: static;
  display: table-cell;
  float: none;
}
table caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777777;
  text-align: left;
}
table th {
  text-align: left;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  border-top: 1px solid #dddddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #dddddd;
}
.table > caption + thead > tr:first-child > th, .table > colgroup + thead > tr:first-child > th, .table > thead:first-child > tr:first-child > th, .table > caption + thead > tr:first-child > td, .table > colgroup + thead > tr:first-child > td, .table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #dddddd;
}
.table .table {
  background-color: #ffffff;
}

.table-condensed > thead > tr > th, .table-condensed > tbody > tr > th, .table-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table-condensed > tbody > tr > td, .table-condensed > tfoot > tr > td {
  padding: 5px;
}

.table-bordered {
  border: 1px solid #dddddd;
}
.table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td {
  border: 1px solid #dddddd;
}
.table-bordered > thead > tr > th, .table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}

.table > thead > tr > td.active, .table > tbody > tr > td.active, .table > tfoot > tr > td.active, .table > thead > tr > th.active, .table > tbody > tr > th.active, .table > tfoot > tr > th.active, .table > thead > tr.active > td, .table > tbody > tr.active > td, .table > tfoot > tr.active > td, .table > thead > tr.active > th, .table > tbody > tr.active > th, .table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}

.table-hover > tbody > tr > td.active:hover, .table-hover > tbody > tr > th.active:hover {
  background-color: #e8e8e8;
}
.table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}

.table > thead > tr > td.success, .table > tbody > tr > td.success, .table > tfoot > tr > td.success, .table > thead > tr > th.success, .table > tbody > tr > th.success, .table > tfoot > tr > th.success, .table > thead > tr.success > td, .table > tbody > tr.success > td, .table > tfoot > tr.success > td, .table > thead > tr.success > th, .table > tbody > tr.success > th, .table > tfoot > tr.success > th {
  background-color: #dff0d8;
}

.table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > th.success:hover {
  background-color: #d0e9c6;
}
.table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}

.table > thead > tr > td.info, .table > tbody > tr > td.info, .table > tfoot > tr > td.info, .table > thead > tr > th.info, .table > tbody > tr > th.info, .table > tfoot > tr > th.info, .table > thead > tr.info > td, .table > tbody > tr.info > td, .table > tfoot > tr.info > td, .table > thead > tr.info > th, .table > tbody > tr.info > th, .table > tfoot > tr.info > th {
  background-color: #d9edf7;
}

.table-hover > tbody > tr > td.info:hover, .table-hover > tbody > tr > th.info:hover {
  background-color: #c4e3f3;
}
.table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}

.table > thead > tr > td.warning, .table > tbody > tr > td.warning, .table > tfoot > tr > td.warning, .table > thead > tr > th.warning, .table > tbody > tr > th.warning, .table > tfoot > tr > th.warning, .table > thead > tr.warning > td, .table > tbody > tr.warning > td, .table > tfoot > tr.warning > td, .table > thead > tr.warning > th, .table > tbody > tr.warning > th, .table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}

.table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > th.warning:hover {
  background-color: #faf2cc;
}
.table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}

.table > thead > tr > td.danger, .table > tbody > tr > td.danger, .table > tfoot > tr > td.danger, .table > thead > tr > th.danger, .table > tbody > tr > th.danger, .table > tfoot > tr > th.danger, .table > thead > tr.danger > td, .table > tbody > tr.danger > td, .table > tfoot > tr.danger > td, .table > thead > tr.danger > th, .table > tbody > tr.danger > th, .table > tfoot > tr.danger > th {
  background-color: #f2dede;
}

.table-hover > tbody > tr > td.danger:hover, .table-hover > tbody > tr > th.danger:hover {
  background-color: #ebcccc;
}
.table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}

.table-responsive {
  min-height: 0.01%;
  overflow-x: auto;
}

@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #dddddd;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th, .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > thead > tr > td, .table-responsive > .table > tbody > tr > td, .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child, .table-responsive > .table-bordered > tbody > tr > th:first-child, .table-responsive > .table-bordered > tfoot > tr > th:first-child, .table-responsive > .table-bordered > thead > tr > td:first-child, .table-responsive > .table-bordered > tbody > tr > td:first-child, .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child, .table-responsive > .table-bordered > tbody > tr > th:last-child, .table-responsive > .table-bordered > tfoot > tr > th:last-child, .table-responsive > .table-bordered > thead > tr > td:last-child, .table-responsive > .table-bordered > tbody > tr > td:last-child, .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th, .table-responsive > .table-bordered > tfoot > tr:last-child > th, .table-responsive > .table-bordered > tbody > tr:last-child > td, .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
.table-white {
  border: solid 1px #dddddd;
  background-color: #fff;
  border-radius: 3px;
  font-family: "Roboto", sans-serif;
}
.table-white > tbody > tr > th {
  font-weight: 400;
  border-top: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
  padding: 18px 32px;
}
.table-white > tbody > tr > td {
  font-weight: 400;
  border: none;
  padding: 18px 32px;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 240px;
}
.table-white .manage-link {
  padding: 8px 16px;
  color: var(--highlight-base, #137df7);
  border: solid 1px #E3ECEF;
  font-size: 14px;
  border-radius: 3px;
  transition: 0.2s;
  white-space: nowrap;
}
.table-white .manage-link:hover {
  text-decoration: none;
  color: var(--highlight-base, #137df7);
  opacity: 0.8;
}

.pd-t #smartbanner {
  margin-top: 40px;
}

#smartbanner {
  position: absolute;
  width: 100%;
  background: #e9e9e9;
  padding: 16px 8px;
}
@media screen and (min-width: 425px) {
  #smartbanner {
    padding: 16px;
  }
}
#smartbanner .sb-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
#smartbanner .sb-close {
  font-size: 34px;
  font-weight: 300;
  color: var(--brand-base, #022e69);
  line-height: 1;
  display: inline-block;
}
#smartbanner .sb-icon {
  width: 55px;
  height: 55px;
  display: block;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  border-radius: 3px;
  border: 1px solid #979797;
  margin-left: 16px;
}
#smartbanner .sb-info {
  margin-left: 8px;
  max-width: calc(100% - 98px);
}
@media screen and (min-width: 375px) {
  #smartbanner .sb-info {
    max-width: 152px;
  }
}
#smartbanner .sb-info strong {
  font-size: 18px;
  color: var(--neutral-base, #3e455e);
  display: block;
}
#smartbanner .sb-info span {
  display: block;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 300;
}
#smartbanner .sb-button {
  display: inline-block;
  padding: 8px;
  color: white;
  background: var(--highlight-base, #137df7);
  border-radius: 3px;
  font-size: 14px;
  width: 60px;
  text-align: center;
  width: 100%;
  text-align: center;
  margin-top: 16px;
}
@media screen and (min-width: 375px) {
  #smartbanner .sb-button {
    width: 100px;
    margin-left: 16px;
    margin-top: 0;
  }
}

.alert-message {
  line-height: 1.15;
  padding: 16px;
  border-radius: var(--border-radius, 3px);
  border: 1px solid transparent;
  margin-bottom: 16px;
  display: block;
  font-size: var(--font-size-16, 1em);
  position: relative;
  width: 100%;
}
.alert-message[data-type=success] {
  border-color: var(--success-base, #6cbf13);
  background: var(--success-light, rgb(196.2, 229.4, 160.6));
  color: var(--success-dark, rgb(75.6, 133.7, 13.3));
}
.alert-message[data-type=error] {
  border-color: var(--warning-base, #fc5353);
  background: var(--warning-light, rgb(253.8, 186.2, 186.2));
  color: var(--warning-dark, rgb(176.4, 58.1, 58.1));
}
.alert-message[data-type=attention] {
  border-color: var(--attention-base, #ffae00);
  background: var(--attention-light, rgb(255, 222.6, 153));
  color: var(--attention-dark, rgb(178.5, 121.8, 0));
}
.alert-message[data-type=information] {
  border-color: var(--highlight-base, #137df7);
  background: var(--highlight-light, rgb(54.4, 144.5, 248.2));
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.alert-message[is-dismissible=true] {
  padding-right: 32px;
}
.alert-message[is-dismissible=true]:after {
  content: "X";
  position: absolute;
  top: 50%;
  right: 12px;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  cursor: pointer;
}
.alert-message[is-visible=false] {
  display: none;
}
.alert-message span {
  display: block;
}
.alert-message span:not(:first-child) {
  margin-top: 4px;
}
.alert-message span strong {
  text-transform: capitalize;
}

/*
    branco - branco -> tira padding do proximo
    branco - neutral -> mantem espaçamento
    branco - brand -> mantem espaçamento

    neutral - neutral -> tira padding do proximo
    neutral - branco -> mantem espaçamento
    neutral - brand -> mantem espaçamento

    brand - brand -> tira padding do proximo
    brand - branco -> mantem espaçamento
    brand - neutral -> mantem espaçamento

    if (branco && branco) tira padding do proximo
    if (branco && neutral) mantem espaçamento
    if (branco && brand) mantem espaçamento
*/
[has-gap]:not([is-wide=false])[data-bg=base] + [has-gap]:not([is-wide=false])[data-bg=base][data-bg=base], [has-gap]:not([is-wide=false])[data-bg=base] + [has-gap]:not([is-wide=""])[data-bg=base][data-bg=base], [has-gap]:not([is-wide=""])[data-bg=base] + [has-gap]:not([is-wide=false])[data-bg=base][data-bg=base], [has-gap]:not([is-wide=""])[data-bg=base] + [has-gap]:not([is-wide=""])[data-bg=base][data-bg=base] {
  padding-top: 0;
}
[has-gap]:not([is-wide=false])[data-bg=neutral] + [has-gap]:not([is-wide=false])[data-bg=neutral][data-bg=neutral], [has-gap]:not([is-wide=false])[data-bg=neutral] + [has-gap]:not([is-wide=""])[data-bg=neutral][data-bg=neutral], [has-gap]:not([is-wide=""])[data-bg=neutral] + [has-gap]:not([is-wide=false])[data-bg=neutral][data-bg=neutral], [has-gap]:not([is-wide=""])[data-bg=neutral] + [has-gap]:not([is-wide=""])[data-bg=neutral][data-bg=neutral] {
  padding-top: 0;
}
[has-gap]:not([is-wide=false])[data-bg=brand] + [has-gap]:not([is-wide=false])[data-bg=brand][data-bg=brand], [has-gap]:not([is-wide=false])[data-bg=brand] + [has-gap]:not([is-wide=""])[data-bg=brand][data-bg=brand], [has-gap]:not([is-wide=""])[data-bg=brand] + [has-gap]:not([is-wide=false])[data-bg=brand][data-bg=brand], [has-gap]:not([is-wide=""])[data-bg=brand] + [has-gap]:not([is-wide=""])[data-bg=brand][data-bg=brand] {
  padding-top: 0;
}

.header:not([data-type="3"]):not([data-type="4"])[is-inverse=false] + .section-headers[data-bg=brand] {
  padding-top: 0;
}
.header:not([data-type="3"]):not([data-type="4"])[is-inverse=false] + .section-headers[data-bg=brand] {
  padding-top: 0;
}
.header:not([data-type="3"]):not([data-type="4"])[is-inverse=false] + main > .section-headers[data-bg=brand] {
  padding-top: 0;
}
.header:not([data-type="3"]):not([data-type="4"])[is-inverse=true] + .section-headers[data-bg=base] {
  padding-top: 0;
}
.header:not([data-type="3"]):not([data-type="4"])[is-inverse=true] + .section-headers[data-bg=base] {
  padding-top: 0;
}
.header:not([data-type="3"]):not([data-type="4"])[is-inverse=true] + main > .section-headers[data-bg=base] {
  padding-top: 0;
}

.thin-strip-base[last-item] {
  padding-bottom: 0;
}

img.lazy {
  opacity: 0;
}
img.lazy.initial, img.lazy.loaded, img.lazy.error {
  opacity: 1;
}
img.lazy:not(.initial) {
  transition: opacity 0.3s;
}
img.lazy:not([src]) {
  visibility: hidden;
}

.summary-list {
  margin-left: -16px;
  margin-top: -16px;
}
.summary-list .summary-categories {
  font-family: var(--heading-font, "Rubik");
  font-size: var(--font-size-12, 0.75em);
  font-weight: 500;
}
.summary-list .summary-card {
  width: calc(100% - 16px);
  background: var(--color-white-base, white);
  margin-left: 16px;
  margin-top: 16px;
}
.summary-list .summary-card + .summary-item {
  margin-top: 16px;
}
.summary-list .summary-card .summary-title {
  font-family: var(--heading-font, "Rubik");
  font-size: var(--font-size-20, 1.25em);
  color: var(--neutral-base, #3e455e);
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 0;
  word-break: break-word;
}
.summary-list .summary-card .summary-categories {
  font-family: var(--heading-font, "Rubik");
  font-size: var(--font-size-12, 0.75em);
  font-weight: 500;
}
.summary-list .summary-card .summary-categories .summary-categories-label {
  color: var(--neutral-base, #3e455e);
}
.summary-list .summary-card .summary-categories .summary-categories-item {
  color: var(--link-base, #3ebaf6);
}
.summary-list .summary-card .summary-categories .summary-categories-item:not(:last-child):after {
  content: ",";
}
.summary-list .summary-card .summary-categories .summary-categories-dropdown {
  display: inline-block;
  position: relative;
  margin-left: 2px;
  z-index: 500;
}
.summary-list .summary-card .summary-categories .summary-categories-dropdown .summary-categories-item-toggle:after {
  display: none;
}
.summary-list .summary-card .summary-categories .summary-categories-dropdown .summary-categories-dropdown-content {
  position: absolute;
  background: white;
  padding: 4px;
  min-width: 150px;
  border: 1px solid #eee;
  border-radius: 4px;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  margin-top: 4px;
  display: none;
}
.summary-list .summary-card .summary-actions {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  z-index: 5;
  line-height: 1;
}
.summary-list .summary-card .summary-actions .summary-actions-item {
  color: var(--highlight-base, #137df7);
  text-decoration: none;
  line-height: 1;
  position: relative;
  cursor: pointer;
}
.summary-list .summary-card .summary-actions .summary-actions-item:not(:first-child) {
  margin-left: 8px;
}
.summary-list .summary-card .summary-actions .summary-actions-item.summary-actions-share-item {
  z-index: 5;
}
.summary-list .summary-card .summary-actions .summary-actions-item .actions-item-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  background: var(--color-white-dark-5, rgb(242.25, 242.25, 242.25));
  padding: 8px;
  line-height: 1;
  border-radius: 3px;
  margin: 8px 0 0 0;
  display: none;
  min-height: auto;
  width: 96px;
  text-align: left;
  vertical-align: unset !important;
}
.summary-list .summary-card .summary-actions .summary-actions-item .actions-item-dropdown:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: -5px;
  left: 50%;
  -ms-transform: translateX(-50%) rotate(45deg);
      transform: translateX(-50%) rotate(45deg);
  background: var(--color-white-dark-5, rgb(242.25, 242.25, 242.25));
}
.summary-list .summary-card .summary-actions .summary-actions-item .actions-item-dropdown .summary-share-item {
  margin: 0;
  width: 38px;
  height: 38px;
  line-height: 1;
  text-align: center;
  line-height: 38px;
  font-size: 18px;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}
.summary-list .summary-card .summary-actions .summary-actions-item .actions-item-dropdown .summary-share-item:not(:nth-child(1)), .summary-list .summary-card .summary-actions .summary-actions-item .actions-item-dropdown .summary-share-item:not(:nth-child(2)) {
  margin-top: 4px;
}
.summary-list .summary-card .summary-actions .summary-actions-item .actions-item-dropdown .summary-share-item:before {
  display: block !important;
  font-family: "fontAwesome";
}
.summary-list .summary-card .summary-actions .summary-actions-item .actions-item-dropdown .summary-share-item .social-likes__button {
  display: none;
}
.summary-list .summary-card .summary-actions .summary-actions-item .actions-item-dropdown .summary-share-item.social-likes__widget_whatsapp {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .summary-list .summary-card .summary-actions .summary-actions-item .actions-item-dropdown .summary-share-item.social-likes__widget_whatsapp {
    display: none;
  }
}
.summary-list .summary-card .summary-actions .summary-actions-item .actions-item-dropdown .social-likes__widget_facebook:before {
  content: "\f09a";
  color: #425497;
}
.summary-list .summary-card .summary-actions .summary-actions-item .actions-item-dropdown .social-likes__widget_facebook:hover:before {
  color: white;
}
.summary-list .summary-card .summary-actions .summary-actions-item .actions-item-dropdown .social-likes__widget_twitter:before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E");
  width: 18px;
  -ms-transform: translate(9px, 2px);
      transform: translate(9px, 2px);
}
.summary-list .summary-card .summary-actions .summary-actions-item .actions-item-dropdown .social-likes__widget_twitter:hover {
  background-color: #f5f5f5;
  border-color: #ccc;
}
.summary-list .summary-card .summary-actions .summary-actions-item .actions-item-dropdown .social-likes__widget_twitter:hover:before {
  fill: #fff;
}
.summary-list .summary-card .summary-actions .summary-actions-item .actions-item-dropdown .social-likes__widget_whatsapp:before {
  content: "\f232";
  color: #65BC54;
}
.summary-list .summary-card .summary-actions .summary-actions-item .actions-item-dropdown .social-likes__widget_whatsapp:hover {
  background: #65BC54;
  border-color: #65BC54;
}
.summary-list .summary-card .summary-actions .summary-actions-item .actions-item-dropdown .social-likes__widget_whatsapp:hover:before {
  color: white;
}
.summary-list .summary-card .summary-actions .picture-title-actions.bookmark {
  color: var(--highlight-base, #137df7);
}
.summary-list .summary-card .summary-info {
  color: var(--neutral-base, #3e455e);
  font-weight: 400;
  font-family: var(--heading-font, "Rubik");
}
.summary-list .summary-card .summary-info .summary-info-item .summary-info-icon {
  font-size: 20px;
}
.summary-list .summary-card .summary-info .summary-info-item .summary-info-content {
  word-break: break-word;
}
.summary-list .summary-card .summary-address {
  font-family: var(--heading-font, "Rubik");
  word-break: break-word;
}
.summary-list .summary-card .summary-description {
  font-family: var(--heading-font, "Rubik");
  word-break: break-word;
}
.summary-list .summary-card .summary-phone {
  font-family: var(--heading-font, "Rubik");
  color: var(--neutral-base, #3e455e);
  word-break: break-word;
}
.summary-list .summary-card a.summary-picture {
  display: block;
}
.summary-list .summary-card .badge-review {
  background: var(--highlight-base, #137df7);
  color: var(--color-white-base, white);
  font-family: var(--heading-font, "Rubik");
  font-weight: 300;
  padding: 4px 8px;
  font-size: 13px;
  border-radius: var(--border-radius, 3px);
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.summary-list .summary-card .badge-review .fa {
  margin-left: 4px;
}
.summary-list .summary-card .review-stars .rate {
  line-height: 1;
}
.summary-list .summary-card .review-stars .rate:after {
  font-family: "fontAwesome";
  font-size: var(--font-size-18, 1.125em);
  color: var(--badge-base, #ffc800);
  letter-spacing: 3px;
}
.summary-list .summary-card .review-stars .rate.rate-5:after {
  content: "\f005" "\f005" "\f005" "\f005" "\f005";
}
.summary-list .summary-card .review-stars .rate.rate-4:after {
  content: "\f005" "\f005" "\f005" "\f005" "\f006";
}
.summary-list .summary-card .review-stars .rate.rate-3:after {
  content: "\f005" "\f005" "\f005" "\f006" "\f006";
}
.summary-list .summary-card .review-stars .rate.rate-2:after {
  content: "\f005" "\f005" "\f006" "\f006" "\f006";
}
.summary-list .summary-card .review-stars .rate.rate-1:after {
  content: "\f005" "\f006" "\f006" "\f006" "\f006";
}
.summary-list .summary-card .review-stars .rate.rate-0:after {
  content: "\f006" "\f006" "\f006" "\f006" "\f006";
}
.summary-list .summary-card [data-tooltip] {
  position: relative;
}
.summary-list .summary-card [data-tooltip]:before {
  content: attr(data-tooltip);
  position: absolute;
  visibility: hidden;
  opacity: 0;
  left: 50%;
  top: calc(100% + 10px);
  pointer-events: none;
  transition: 0.2s;
  will-change: transform;
  padding: 10px 18px;
  min-width: 50px;
  max-width: 300px;
  width: max-content;
  width: -moz-max-content;
  border-radius: 6px;
  font-size: 14px;
  background-color: rgb(59, 72, 80);
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
  color: #fff;
  text-align: center;
  white-space: pre-wrap;
  -ms-transform: translate(-50%, -5px) scale(0.5);
      transform: translate(-50%, -5px) scale(0.5);
}
.summary-list .summary-card [data-tooltip]:hover:before {
  visibility: visible;
  opacity: 1;
  -ms-transform: translate(-50%, -5px) scale(1);
      transform: translate(-50%, -5px) scale(1);
}
.summary-list .summary-card[summary-type="1"] .summary-picture {
  display: block;
}
.summary-list .summary-card[summary-type="1"] .summary-picture picture {
  border-bottom-right-radius: 50px;
}
.summary-list .summary-card[summary-type="1"] .summary-picture img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-bottom-right-radius: 50px;
}
.summary-list .summary-card[summary-type="2"]:hover .summary-picture img {
  -ms-transform: scale(1.1);
      transform: scale(1.1);
}
.summary-list .summary-card[summary-type="2"] .summary-picture {
  display: block;
}
.summary-list .summary-card[summary-type="2"] .summary-picture picture {
  overflow: hidden;
  border-radius: 9999px;
  display: inline-block;
}
.summary-list .summary-card[summary-type="2"] .summary-picture img {
  border-radius: 9999px;
  max-width: 150px;
  height: auto;
  object-fit: cover;
  transition: transform 0.2s ease-in-out;
}
.summary-list .summary-card[summary-type="3"] .summary-picture {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.summary-list .summary-card[summary-type="3"] .summary-picture:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
  background-image: -webkit-gradient(linear, right top, left top, color-stop(99%, rgba(0, 0, 0, 0.29)), color-stop(0, rgba(0, 0, 0, 0.68)));
}
.summary-list .summary-card[summary-type="3"] .summary-picture .review-stars {
  position: relative;
  z-index: 6;
}
.summary-list .summary-card[summary-type="3"] .summary-picture .review-stars span.fa {
  color: var(--color-white-base, white);
  font-size: var(--font-size-18, 1.125em);
}
.summary-list .summary-card[summary-type="3"] .summary-picture .review-stars .rate:after {
  color: var(--color-white-base, white);
  font-size: var(--font-size-18, 1.125em);
}
.summary-list .summary-card[summary-type="3"] .summary-picture img {
  border: 1px solid #b2b2b2;
  position: absolute;
  border-radius: 9999px;
  max-width: 150px;
  min-width: 150px;
  height: 150px;
  object-fit: cover;
  z-index: 6;
}
.summary-list .summary-card[summary-type="4"] {
  position: relative;
}
.summary-list .summary-card[summary-type="4"]:hover .summary-picture img {
  -ms-transform: scale(1.1);
      transform: scale(1.1);
}
.summary-list .summary-card[summary-type="4"] .summary-picture picture {
  overflow: hidden;
  border-radius: 9999px;
  display: inline-block;
}
.summary-list .summary-card[summary-type="4"] .summary-picture img {
  max-width: 216px;
  min-width: 216px;
  height: auto;
  border-radius: 9999px;
  object-fit: cover;
  transition: transform 0.2s ease-in-out;
}
.summary-list .summary-card[summary-type="5"]:hover .summary-picture img {
  -ms-transform: scale(1.1);
      transform: scale(1.1);
}
.summary-list .summary-card[summary-type="5"]:hover .summary-picture .review-stars {
  padding-top: 16px;
  padding-bottom: 16px;
}
.summary-list .summary-card[summary-type="5"] .summary-picture {
  position: relative;
}
.summary-list .summary-card[summary-type="5"] .summary-picture picture {
  overflow: hidden;
}
.summary-list .summary-card[summary-type="5"] .summary-picture img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.2s ease-in-out;
}
.summary-list .summary-card[summary-type="5"] .summary-picture .review-stars {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7) 49%, rgba(0, 0, 0, 0.73));
  padding-bottom: 8px;
  padding-top: 8px;
  transition: padding 0.2s ease-in-out;
}
.summary-list .summary-card[summary-type="5"] .summary-picture .review-stars .rate:after {
  font-size: var(--font-size-18, 1.125em);
}
.summary-list .summary-card[summary-type="6"]:hover .summary-picture img {
  -ms-transform: scale(1.1);
      transform: scale(1.1);
}
.summary-list .summary-card[summary-type="6"] .summary-picture picture {
  overflow: hidden;
}
.summary-list .summary-card[summary-type="6"] .summary-picture img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  width: 100%;
  transition: transform 0.2s ease-in-out;
}
.summary-list .summary-card[summary-type="6"] .summary-picture .summary-picture-actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 12px;
}
.summary-list .summary-card[summary-type="6"] .summary-picture .summary-picture-actions .review-stars:after {
  font-size: var(--font-size-17, 1.0625em);
}
.summary-list .summary-card[summary-type="7"]:hover .summary-picture img {
  -ms-transform: scale(1.1);
      transform: scale(1.1);
}
.summary-list .summary-card[summary-type="7"] .summary-picture picture {
  overflow: hidden;
}
.summary-list .summary-card[summary-type="7"] .summary-picture img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  width: 100%;
  transition: transform 0.2s ease-in-out;
}
.summary-list .summary-card[summary-type="7"] .summary-footer {
  background: var(--highlight-base, #137df7);
  text-align: center;
  color: var(--color-white-base, white);
  padding: 6px 0;
  font-family: var(--heading-font, "Rubik");
}
.summary-list .summary-card[summary-type="7"] .summary-footer .summary-phone {
  color: var(--color-white-base, white);
}
.summary-list .summary-card[summary-type="8"]:hover .summary-picture img {
  -ms-transform: scale(1.1);
      transform: scale(1.1);
}
.summary-list .summary-card[summary-type="8"] .summary-picture picture {
  display: inline-block;
  overflow: hidden;
}
.summary-list .summary-card[summary-type="8"] .summary-picture img {
  max-width: 208px;
  min-width: 208px;
  height: 156px;
  object-fit: cover;
  transition: transform 0.2s ease-in-out;
}
.summary-list .summary-card[summary-type="9"]:hover .summary-picture img {
  -ms-transform: scale(1.1);
      transform: scale(1.1);
}
.summary-list .summary-card[summary-type="9"] .summary-picture picture {
  overflow: hidden;
  border-radius: 9999px;
  display: inline-block;
}
.summary-list .summary-card[summary-type="9"] .summary-picture img {
  border-radius: 9999px;
  max-width: 150px;
  min-width: 150px;
  height: 150px;
  object-fit: cover;
  transition: transform 0.2s ease-in-out;
}
.summary-list .summary-card[summary-type="10"]:hover .summary-picture img {
  -ms-transform: scale(1.1);
      transform: scale(1.1);
}
.summary-list .summary-card[summary-type="10"] .summary-picture picture {
  overflow: hidden;
  border-radius: 9999px;
  display: inline-block;
}
.summary-list .summary-card[summary-type="10"] .summary-picture img {
  border-radius: 9999px;
  max-width: 150px;
  min-width: 150px;
  height: auto;
  object-fit: cover;
  transition: transform 0.2s ease-in-out;
}
.summary-list .summary-card[summary-type="4"] .summary-address, .summary-list .summary-card[summary-type="5"] .summary-address, .summary-list .summary-card[summary-type="6"] .summary-address, .summary-list .summary-card[summary-type="7"] .summary-address, .summary-list .summary-card[summary-type="8"] .summary-address, .summary-list .summary-card[summary-type="9"] .summary-address, .summary-list .summary-card[summary-type="10"] .summary-address {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}
.summary-list .summary-card[summary-type="4"] .summary-description, .summary-list .summary-card[summary-type="5"] .summary-description, .summary-list .summary-card[summary-type="6"] .summary-description, .summary-list .summary-card[summary-type="7"] .summary-description, .summary-list .summary-card[summary-type="8"] .summary-description, .summary-list .summary-card[summary-type="9"] .summary-description, .summary-list .summary-card[summary-type="10"] .summary-description {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
  font-size: var(--font-size-14, 0.875em);
}
.summary-list[list-type=list-view] .hidden-list-view {
  display: none;
}
.summary-list[list-type=list-view] .summary-card[summary-type="1"], .summary-list[list-type=list-view] .summary-card[summary-type="2"] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
      align-items: stretch;
}
.summary-list[list-type=list-view] .summary-card[summary-type="1"] .summary-picture, .summary-list[list-type=list-view] .summary-card[summary-type="2"] .summary-picture {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.summary-list[list-type=list-view] .summary-card[summary-type="1"] .summary-content, .summary-list[list-type=list-view] .summary-card[summary-type="2"] .summary-content {
  -ms-flex-positive: 1;
      flex-grow: 1;
  padding: 24px 24px 24px 32px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="1"] .summary-content .section-heading, .summary-list[list-type=list-view] .summary-card[summary-type="2"] .summary-content .section-heading {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 16px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="1"] .summary-content .section-heading .section-content-left, .summary-list[list-type=list-view] .summary-card[summary-type="2"] .summary-content .section-heading .section-content-left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.summary-list[list-type=list-view] .summary-card[summary-type="1"] .summary-content .section-heading .section-content-left .badge-review, .summary-list[list-type=list-view] .summary-card[summary-type="2"] .summary-content .section-heading .section-content-left .badge-review {
  margin-right: 8px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="1"] .summary-content .summary-info, .summary-list[list-type=list-view] .summary-card[summary-type="2"] .summary-content .summary-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-top: 14px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="1"] .summary-content .summary-info .summary-info-item, .summary-list[list-type=list-view] .summary-card[summary-type="2"] .summary-content .summary-info .summary-info-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.summary-list[list-type=list-view] .summary-card[summary-type="1"] .summary-content .summary-info .summary-info-item:not(:first-child), .summary-list[list-type=list-view] .summary-card[summary-type="2"] .summary-content .summary-info .summary-info-item:not(:first-child) {
  margin-left: 16px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="1"] .summary-content .summary-info .summary-info-item .summary-info-icon, .summary-list[list-type=list-view] .summary-card[summary-type="2"] .summary-content .summary-info .summary-info-item .summary-info-icon {
  margin-right: 8px;
  width: 24px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="1"] .summary-content .summary-address, .summary-list[list-type=list-view] .summary-card[summary-type="2"] .summary-content .summary-address {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  margin-top: 8px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="1"] .summary-content .summary-address .summary-address-icon, .summary-list[list-type=list-view] .summary-card[summary-type="2"] .summary-content .summary-address .summary-address-icon {
  font-size: 20px;
  width: 24px;
  margin-right: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.summary-list[list-type=list-view] .summary-card[summary-type="1"]:hover .summary-picture img {
  -ms-transform: scale(1.1);
      transform: scale(1.1);
}
.summary-list[list-type=list-view] .summary-card[summary-type="1"] .summary-picture {
  max-width: 232px;
  min-width: 232px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="1"] .summary-picture picture {
  overflow: hidden;
  border-top-right-radius: 50px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="1"] .summary-picture img {
  border-top-right-radius: 50px;
  transition: transform 0.2s ease-in-out;
}
.summary-list[list-type=list-view] .summary-card[summary-type="2"] .summary-picture {
  padding: 0 16px 0 42px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="3"] {
  display: -ms-flexbox;
  display: flex;
}
.summary-list[list-type=list-view] .summary-card[summary-type="3"]:hover .summary-picture {
  min-width: 180px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="3"]:hover .summary-picture img {
  right: -43px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="3"]:hover .summary-content {
  padding-left: 59px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="3"] .summary-picture {
  min-width: 160px;
  min-height: 216px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding-left: 16px;
  transition: min-width 0.2s ease-in-out;
}
.summary-list[list-type=list-view] .summary-card[summary-type="3"] .summary-picture .review-stars {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column-reverse wrap;
      flex-flow: column-reverse wrap;
}
.summary-list[list-type=list-view] .summary-card[summary-type="3"] .summary-picture .review-stars span {
  display: block;
}
.summary-list[list-type=list-view] .summary-card[summary-type="3"] .summary-picture .review-stars span:not(:first-child) {
  margin-top: 4px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="3"] .summary-picture img {
  right: -63px;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  transition: right 0.2s ease-in-out;
}
.summary-list[list-type=list-view] .summary-card[summary-type="3"] .summary-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  -ms-flex-positive: 1;
      flex-grow: 1;
  padding: 16px 16px 16px 79px;
  transition: 0.2s ease-in-out;
}
.summary-list[list-type=list-view] .summary-card[summary-type="3"] .summary-content .summary-heading {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 16px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="3"] .summary-content .summary-address {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}
.summary-list[list-type=list-view] .summary-card[summary-type="3"] .summary-content .summary-description {
  margin-top: 8px;
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
  font-size: var(--font-size-14, 0.875em);
}
.summary-list[list-type=list-view] .summary-card[summary-type="3"] .summary-content .summary-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-top: auto;
  padding-top: 24px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="3"] .summary-content .summary-footer .summary-phone {
  color: var(--neutral-base, #3e455e);
  font-size: var(--font-size-14, 0.875em);
}
.summary-list[list-type=list-view] .summary-card[summary-type="4"] {
  display: -ms-flexbox;
  display: flex;
  width: calc(100% - 108px);
  margin-left: 108px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="4"] .summary-picture {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-left: -92px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="4"] .summary-content {
  display: -ms-flexbox;
  display: flex;
  padding-left: 32px;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
.summary-list[list-type=list-view] .summary-card[summary-type="4"] .summary-content .summary-content-left {
  padding: 24px 32px 32px 0;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
.summary-list[list-type=list-view] .summary-card[summary-type="4"] .summary-content .summary-content-left .summary-heading {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 16px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="4"] .summary-content .summary-content-left .summary-description {
  margin-top: 8px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="4"] .summary-content .summary-content-right {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-left: 2px solid var(--neutral-transp-5, rgba(62, 69, 94, 0.05));
  padding: 24px 32px;
  text-align: center;
  width: 212px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="4"] .summary-content .summary-content-right .review-stars {
  margin-bottom: 4px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="4"] .summary-content .summary-content-right .review-stars .rate:after {
  font-size: var(--font-size-18, 1.125em);
}
.summary-list[list-type=list-view] .summary-card[summary-type="4"] .summary-content .summary-content-right .summary-info {
  margin-top: 24px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="4"] .summary-content .summary-content-right .summary-info .summary-info-item {
  font-size: var(--font-size-14, 0.875em);
  font-weight: 500;
}
.summary-list[list-type=list-view] .summary-card[summary-type="4"] .summary-content .summary-content-right .summary-badges {
  margin-top: 8px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="4"] .summary-content .summary-content-right .summary-badges + .summary-claim {
  margin-top: 16px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="4"] .summary-content .summary-content-right .summary-badges .summary-badge-item {
  display: inline-block;
  margin-top: 8px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="4"] .summary-content .summary-content-right .summary-badges .summary-badge-item:not(:last-child) {
  margin-right: 8px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="5"] {
  display: -ms-flexbox;
  display: flex;
}
.summary-list[list-type=list-view] .summary-card[summary-type="5"] .summary-picture {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 264px;
  text-align: center;
  padding: 16px 0;
}
.summary-list[list-type=list-view] .summary-card[summary-type="5"] .summary-picture .summary-picture-image {
  position: relative;
}
.summary-list[list-type=list-view] .summary-card[summary-type="5"] .summary-picture .summary-claim {
  margin-top: 14px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="5"] .summary-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  -ms-flex-positive: 1;
      flex-grow: 1;
  padding: 16px 24px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="5"] .summary-content .summary-heading {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
}
.summary-list[list-type=list-view] .summary-card[summary-type="5"] .summary-content .summary-heading .summary-heading-left .summary-actions {
  margin-bottom: 16px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="5"] .summary-content .summary-heading .summary-badges .summary-badge-item {
  display: inline-block;
  width: 28px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="5"] .summary-content .summary-heading .summary-badges .summary-badge-item img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.summary-list[list-type=list-view] .summary-card[summary-type="5"] .summary-content .summary-heading .summary-badges .summary-badge-item:not(:last-child) {
  margin-right: 8px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="5"] .summary-content .summary-address {
  margin-top: 12px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="5"] .summary-content .summary-description {
  margin-top: 8px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="5"] .summary-content .summary-footer {
  margin-top: 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-top: auto;
}
.summary-list[list-type=list-view] .summary-card[summary-type="5"] .summary-content .summary-footer .summary-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.summary-list[list-type=list-view] .summary-card[summary-type="5"] .summary-content .summary-footer .summary-info .summary-info-item {
  margin-right: 16px;
  font-size: var(--font-size-14, 0.875em);
  font-weight: 500;
}
.summary-list[list-type=list-view] .summary-card[summary-type="6"] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  padding: 16px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="6"] .summary-picture {
  max-width: 222px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-order: 2;
      order: 2;
}
.summary-list[list-type=list-view] .summary-card[summary-type="6"] .summary-content {
  -ms-flex-order: 1;
      order: 1;
  padding-right: 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
.summary-list[list-type=list-view] .summary-card[summary-type="6"] .summary-content .summary-heading {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 16px;
  -ms-flex-order: 1;
      order: 1;
}
.summary-list[list-type=list-view] .summary-card[summary-type="6"] .summary-content .summary-title {
  display: block;
}
.summary-list[list-type=list-view] .summary-card[summary-type="6"] .summary-content .summary-address {
  margin-bottom: 8px;
  -ms-flex-order: 2;
      order: 2;
}
.summary-list[list-type=list-view] .summary-card[summary-type="6"] .summary-content .summary-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-top: 16px;
  -ms-flex-order: 4;
      order: 4;
}
.summary-list[list-type=list-view] .summary-card[summary-type="6"] .summary-content .summary-info .summary-info-item {
  font-size: var(--font-size-14, 0.875em);
}
.summary-list[list-type=list-view] .summary-card[summary-type="6"] .summary-content .summary-info .summary-info-item:not(:last-child) {
  margin-right: 16px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="6"] .summary-content .summary-description {
  -ms-flex-order: 3;
      order: 3;
}
.summary-list[list-type=list-view] .summary-card[summary-type="7"] {
  display: -ms-flexbox;
  display: flex;
}
.summary-list[list-type=list-view] .summary-card[summary-type="7"] .summary-picture {
  max-width: 263px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.summary-list[list-type=list-view] .summary-card[summary-type="7"] .summary-picture img {
  border-bottom: 6px solid var(--neutral-transp-5, rgba(62, 69, 94, 0.05));
}
.summary-list[list-type=list-view] .summary-card[summary-type="7"] .summary-content {
  border-left: 6px solid var(--neutral-transp-5, rgba(62, 69, 94, 0.05));
  padding: 16px;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
.summary-list[list-type=list-view] .summary-card[summary-type="7"] .summary-content .summary-heading {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 16px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="7"] .summary-content .summary-heading .summary-heading-left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.summary-list[list-type=list-view] .summary-card[summary-type="7"] .summary-content .summary-heading .summary-heading-left .review-stars {
  margin-right: 16px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="7"] .summary-content .summary-heading .summary-heading-left .summary-claim {
  margin-left: 8px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="7"] .summary-content .summary-address,
.summary-list[list-type=list-view] .summary-card[summary-type="7"] .summary-content .summary-description {
  margin-top: 8px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="8"] {
  display: -ms-flexbox;
  display: flex;
  width: calc(100% - 54px);
}
.summary-list[list-type=list-view] .summary-card[summary-type="8"] .summary-picture {
  padding: 16px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-order: 2;
      order: 2;
  margin-right: -38px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="8"] .summary-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  -ms-flex-order: 1;
      order: 1;
  padding: 16px 32px 16px 16px;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
.summary-list[list-type=list-view] .summary-card[summary-type="8"] .summary-content .summary-heading {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 16px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="8"] .summary-content .summary-description {
  margin-top: 8px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="8"] .summary-content .summary-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="8"] .summary-content .summary-footer .summary-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.summary-list[list-type=list-view] .summary-card[summary-type="8"] .summary-content .summary-footer .summary-info .summary-info-item {
  font-size: var(--font-size-14, 0.875em);
  margin-right: 16px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="8"] .summary-content .summary-footer .summary-footer-action .summary-claim + .summary-actions {
  margin-left: 8px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="9"] {
  display: -ms-flexbox;
  display: flex;
}
.summary-list[list-type=list-view] .summary-card[summary-type="9"] .summary-picture {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 24px 32px;
  text-align: center;
}
.summary-list[list-type=list-view] .summary-card[summary-type="9"] .summary-picture .review-stars {
  margin-top: 8px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="9"] .summary-picture .review-stars .rate:after {
  font-size: var(--font-size-18, 1.125em);
}
.summary-list[list-type=list-view] .summary-card[summary-type="9"] .summary-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  padding: 24px 24px 24px 0;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
.summary-list[list-type=list-view] .summary-card[summary-type="9"] .summary-content .summary-heading {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 16px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="9"] .summary-content .summary-description {
  margin-top: 8px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="9"] .summary-content .summary-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="9"] .summary-content .summary-footer .summary-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.summary-list[list-type=list-view] .summary-card[summary-type="9"] .summary-content .summary-footer .summary-info .summary-info-item {
  font-size: var(--font-size-14, 0.875em);
}
.summary-list[list-type=list-view] .summary-card[summary-type="9"] .summary-content .summary-footer .summary-info .summary-info-item:not(:last-child) {
  margin-right: 16px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="10"] {
  display: -ms-flexbox;
  display: flex;
}
.summary-list[list-type=list-view] .summary-card[summary-type="10"] .summary-picture {
  padding: 24px 32px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.summary-list[list-type=list-view] .summary-card[summary-type="10"] .summary-content {
  padding: 16px 16px 16px 0;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
.summary-list[list-type=list-view] .summary-card[summary-type="10"] .summary-content .summary-heading {
  text-align: right;
  margin-bottom: 8px;
}
.summary-list[list-type=list-view] .summary-card[summary-type="10"] .summary-content .summary-title {
  margin-bottom: 16px;
}
.summary-list[list-type=grid-view] .hidden-grid-view {
  display: none;
}
.summary-list[list-type=grid-view] .summary-card {
  width: calc(100% - 16px);
}
@media screen and (min-width: 768px) {
  .summary-list[list-type=grid-view] .summary-card {
    width: calc(50% - 16px);
  }
}
@media screen and (min-width: 992px) {
  .summary-list[list-type=grid-view] .summary-card {
    width: calc(33.3333333333% - 16px);
  }
}
.summary-list[list-type=grid-view] .summary-card[summary-type="1"], .summary-list[list-type=grid-view] .summary-card[summary-type="2"] {
  text-align: center;
  padding-bottom: 16px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="1"] .summary-picture, .summary-list[list-type=grid-view] .summary-card[summary-type="2"] .summary-picture {
  position: relative;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="1"] .summary-picture .badge-review, .summary-list[list-type=grid-view] .summary-card[summary-type="2"] .summary-picture .badge-review {
  position: absolute;
  top: 8px;
  right: 8px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="1"] .summary-content, .summary-list[list-type=grid-view] .summary-card[summary-type="2"] .summary-content {
  margin-top: 16px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="1"] .summary-content .summary-info, .summary-list[list-type=grid-view] .summary-card[summary-type="2"] .summary-content .summary-info {
  margin-top: 24px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="1"] .summary-content .summary-info .summary-info-item:not(:first-child), .summary-list[list-type=grid-view] .summary-card[summary-type="2"] .summary-content .summary-info .summary-info-item:not(:first-child) {
  margin-top: 8px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="1"] .summary-footer, .summary-list[list-type=grid-view] .summary-card[summary-type="2"] .summary-footer {
  margin-top: 16px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="1"] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="1"]:hover .summary-picture img {
  -ms-transform: scale(1.1);
      transform: scale(1.1);
}
.summary-list[list-type=grid-view] .summary-card[summary-type="1"] .summary-picture picture {
  border-bottom-left-radius: 50px;
  overflow: hidden;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="1"] .summary-picture img {
  border-bottom-left-radius: 50px;
  transition: transform 0.2s ease-in-out;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="1"] .summary-content {
  padding: 0 16px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="1"] .summary-footer {
  margin-top: auto;
  padding-top: 16px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="2"] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="2"] .summary-picture {
  padding-top: 36px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="2"] .summary-footer {
  margin-top: auto;
  padding-top: 16px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="3"] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="3"]:hover .summary-picture {
  min-height: 180px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="3"]:hover .summary-picture img {
  bottom: -31px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="3"]:hover .summary-content {
  padding-top: 38px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="3"] .summary-picture {
  min-height: 160px;
  text-align: center;
  padding: 8px 8px 0;
  text-align: center;
  transition: min-height 0.2s ease-in-out;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="3"] .summary-picture .summary-picture-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  z-index: 6;
  position: relative;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="3"] .summary-picture .summary-picture-content.has-review {
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="3"] .summary-picture img {
  bottom: -51px;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  max-width: 100px;
  transition: bottom 0.2s ease-in-out;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="3"] .summary-content {
  padding: 58px 16px 0;
  text-align: center;
  -ms-flex-positive: 1;
      flex-grow: 1;
  transition: padding-top 0.2s ease-in-out;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="3"] .summary-content .summary-title {
  margin-bottom: 12px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="3"] .summary-content .summary-address,
.summary-list[list-type=grid-view] .summary-card[summary-type="3"] .summary-content .summary-phone {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
  font-size: var(--font-size-13, 0.8125em);
  font-weight: 500;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="3"] .summary-content .summary-categories {
  margin: 16px 8px 0;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="3"] .summary-footer {
  margin-top: 16px;
  padding-bottom: 8px;
  text-align: center;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="4"] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  margin-top: 124px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="4"] .summary-picture {
  margin-top: -108px;
  display: block;
  text-align: center;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="4"] .summary-content {
  padding: 32px 16px 16px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="4"] .summary-footer {
  margin-top: auto;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="5"] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="5"] .summary-picture img {
  width: 100%;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="5"] .summary-content {
  padding: 16px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="5"] .summary-footer {
  margin-top: auto;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="6"] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="6"] .summary-picture {
  padding: 16px;
  text-align: center;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="6"] .summary-picture .summary-picture-actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 12px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="6"] .summary-picture .summary-picture-actions .review-stars .rate:after {
  font-size: var(--font-size-17, 1.0625em);
}
.summary-list[list-type=grid-view] .summary-card[summary-type="6"] .summary-content {
  padding: 0 16px 16px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="6"] .summary-footer {
  margin-top: auto;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="4"] .summary-content .summary-title, .summary-list[list-type=grid-view] .summary-card[summary-type="5"] .summary-content .summary-title, .summary-list[list-type=grid-view] .summary-card[summary-type="6"] .summary-content .summary-title {
  text-align: center;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="4"] .summary-content .summary-title-content, .summary-list[list-type=grid-view] .summary-card[summary-type="5"] .summary-content .summary-title-content, .summary-list[list-type=grid-view] .summary-card[summary-type="6"] .summary-content .summary-title-content {
  text-align: center;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="4"] .summary-content .summary-address, .summary-list[list-type=grid-view] .summary-card[summary-type="5"] .summary-content .summary-address, .summary-list[list-type=grid-view] .summary-card[summary-type="6"] .summary-content .summary-address {
  margin-top: 16px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="4"] .summary-content .summary-info, .summary-list[list-type=grid-view] .summary-card[summary-type="5"] .summary-content .summary-info, .summary-list[list-type=grid-view] .summary-card[summary-type="6"] .summary-content .summary-info {
  margin-top: 8px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="4"] .summary-content .summary-description, .summary-list[list-type=grid-view] .summary-card[summary-type="5"] .summary-content .summary-description, .summary-list[list-type=grid-view] .summary-card[summary-type="6"] .summary-content .summary-description {
  margin-top: 8px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="4"] .summary-footer, .summary-list[list-type=grid-view] .summary-card[summary-type="5"] .summary-footer, .summary-list[list-type=grid-view] .summary-card[summary-type="6"] .summary-footer {
  padding: 8px 0;
  text-align: center;
  border-top: 2px solid var(--neutral-transp-5, rgba(62, 69, 94, 0.05));
}
.summary-list[list-type=grid-view] .summary-card[summary-type="7"] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="7"] .summary-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  -ms-flex-positive: 1;
      flex-grow: 1;
  padding: 16px 12px;
  border-bottom: 6px solid var(--neutral-transp-5, rgba(62, 69, 94, 0.05));
}
.summary-list[list-type=grid-view] .summary-card[summary-type="7"] .summary-content .summary-title {
  text-align: center;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="7"] .summary-content .summary-title-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="7"] .summary-content .summary-address {
  margin-top: 16px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="7"] .summary-content .summary-description {
  margin-top: 8px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="7"] .summary-content .summary-actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: auto;
  padding-top: 16px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="8"] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  text-align: center;
  margin-top: 54px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="8"] .summary-picture {
  margin-top: -38px;
  display: block;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="8"] .summary-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-positive: 1;
      flex-grow: 1;
  padding: 16px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="8"] .summary-content .summary-title-content {
  text-align: center;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="8"] .summary-content .summary-title-content .summary-title {
  display: block;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="8"] .summary-content .summary-address {
  font-size: 14px;
  margin-top: 16px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="8"] .summary-content .summary-info {
  margin-top: 8px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="8"] .summary-content .summary-info .summary-info-item {
  font-size: var(--font-size-14, 0.875em);
}
.summary-list[list-type=grid-view] .summary-card[summary-type="8"] .summary-content .summary-actions {
  margin-top: auto;
  padding-top: 16px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="9"] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  text-align: center;
  padding: 24px 16px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="9"] .summary-picture .summary-title {
  margin-top: 12px;
  display: block;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="9"] .summary-content {
  margin-top: 16px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="9"] .summary-content .summary-info .summary-info-item {
  font-size: var(--font-size-14, 0.875em);
}
.summary-list[list-type=grid-view] .summary-card[summary-type="9"] .summary-content .summary-address {
  font-size: var(--font-size-14, 0.875em);
  margin-top: 8px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="9"] .summary-footer {
  margin-top: auto;
  padding-top: 16px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="9"] .summary-footer .summary-actions {
  margin-top: 8px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="10"] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  text-align: center;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="10"] .summary-picture {
  padding: 24px 16px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="10"] .summary-content {
  padding: 0 16px 16px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="10"] .summary-footer {
  border-top: 2px solid var(--neutral-transp-5, rgba(62, 69, 94, 0.05));
  padding: 6px 0;
  margin-top: auto;
}

[data-tooltip] {
  position: relative;
}
[data-tooltip]:before {
  content: attr(data-tooltip);
  min-width: 50px;
  max-width: 300px;
  width: max-content;
  padding: 10px 18px;
  border-radius: 6px;
  position: absolute;
  background-color: rgb(59, 72, 80);
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
  color: var(--color-white-base, white);
  font-size: var(--font-size-14, 0.875em);
  text-align: center;
  white-space: pre-wrap;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
  will-change: transform;
  z-index: 100000;
}
[data-tooltip]:hover:before {
  visibility: visible;
  opacity: 1;
}
[data-tooltip]:hover[tooltip-position=top]:before, [data-tooltip]:hover[tooltip-position=bottom]:before {
  -ms-transform: translateX(-50%) scale(1);
      transform: translateX(-50%) scale(1);
}
[data-tooltip]:hover[tooltip-position=left]:before, [data-tooltip]:hover[tooltip-position=right]:before {
  -ms-transform: scale(1);
      transform: scale(1);
}
[data-tooltip][tooltip-position=top]:before, [data-tooltip][tooltip-position=bottom]:before {
  left: 50%;
  -ms-transform: translateX(-50%) scale(0.5);
      transform: translateX(-50%) scale(0.5);
}
[data-tooltip][tooltip-position=left]:before, [data-tooltip][tooltip-position=right]:before {
  top: -10.25px;
}
[data-tooltip][tooltip-position=top]:before {
  bottom: calc(100% + 5px);
}
[data-tooltip][tooltip-position=bottom]:before {
  top: calc(100% + 5px);
}
[data-tooltip][tooltip-position=left]:before {
  right: calc(100% + 5px);
}
[data-tooltip][tooltip-position=right]:before {
  left: calc(100% + 5px);
}

#notify-container {
  position: fixed;
  z-index: 999999;
  pointer-events: none;
}
#notify-container[notify-alignment-x=left] {
  left: 12px;
}
#notify-container[notify-alignment-x=center] {
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
}
#notify-container[notify-alignment-x=right] {
  right: 12px;
}
#notify-container[notify-alignment-y=top] {
  top: 12px;
}
#notify-container[notify-alignment-y=center] {
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
}
#notify-container[notify-alignment-y=bottom] {
  bottom: 12px;
}
#notify-container[notify-alignment-x=center][notify-alignment-y=center] {
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
}
#notify-container[notify-alignment-x=center][notify-alignment-y=center][notify-full-width=true] {
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
}
#notify-container[notify-full-width=true] {
  left: 0;
  right: 0;
}
#notify-container[notify-full-width=true][notify-alignment-x=center]:not([notify-alignment-y=center]) {
  -ms-transform: translate(0);
      transform: translate(0);
}
#notify-container[notify-full-width=true] .notify-item {
  width: 96%;
  margin: 0 auto;
}
#notify-container * {
  box-sizing: border-box;
}
#notify-container .notify-item {
  position: relative;
  pointer-events: auto;
  overflow: hidden;
  background-position: 15px center;
  background-repeat: no-repeat;
  color: var(--color-white-base, white);
  font-family: var(--heading-font, "Rubik");
  padding: 16px 32px 16px 52px;
  width: 350px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
  background-color: #199ada;
  font-size: var(--font-size-14, 0.875em);
}
#notify-container .notify-item + .notify-item {
  margin-top: 12px;
}
#notify-container .notify-item:before {
  font-family: "fontAwesome";
  position: absolute;
  left: 19px;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  font-size: 20px;
}
#notify-container .notify-item[notify-type=success] {
  background-color: #75ca76;
}
#notify-container .notify-item[notify-type=success]:before {
  content: "\f00c";
}
#notify-container .notify-item[notify-type=info] {
  background-color: #3dbff1;
}
#notify-container .notify-item[notify-type=info]:before {
  content: "\f05a";
}
#notify-container .notify-item[notify-type=warning] {
  background-color: #fe9700;
}
#notify-container .notify-item[notify-type=warning]:before {
  content: "\f071";
}
#notify-container .notify-item[notify-type=danger] {
  background-color: #c94d3c;
}
#notify-container .notify-item[notify-type=danger]:before {
  content: "\f06a";
}
#notify-container .notify-item .notify-title {
  font-weight: 500;
}
#notify-container .notify-item .notify-title + .notify-content {
  margin-top: 8px;
}
#notify-container .notify-item .notify-content {
  word-wrap: break-word;
}
#notify-container .notify-item .notify-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: rgba(0, 0, 0, 0.2);
}
#notify-container .notify-item .notify-close-button {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 16px;
  color: var(--color-white-base, white);
  line-height: 1;
  padding: 8px;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  outline: none;
  text-decoration: none;
  box-shadow: none;
}

.scroll-disabled > * {
  overflow: hidden;
}

.paywall-box {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
  padding: 100px 20px 70px 20px;
  margin-top: 32px;
  margin-bottom: 32px;
  border-radius: var(--border-radius, 3px);
}
.paywall-box img {
  max-width: 100%;
  margin-bottom: 48px;
}
.paywall-box .heading {
  font-size: 32px;
  margin-bottom: 16px;
  text-align: center;
}
.paywall-box .member-desc {
  font-size: 20px;
  margin-bottom: 32px;
  text-align: center;
}
.paywall-box .button {
  padding: 16px 28px;
  margin-bottom: 8px;
}
.paywall-box .button.is-primary {
  color: var(--color-white-base, white);
}
.paywall-box .button.is-primary:hover {
  color: var(--color-white-base, white);
}
.paywall-box .login-msg {
  font-size: 14px;
}
.paywall-box .login-msg .link {
  cursor: pointer;
  color: var(--link-base, #3ebaf6);
  transition: 0.2s;
}
.paywall-box .login-msg .link:hover, .paywall-box .login-msg .link:active {
  opacity: 0.8;
  border: none;
  text-decoration: none;
}
.paywall-box[data-bg=brand] .heading, .paywall-box[data-bg=brand] .member-desc, .paywall-box[data-bg=brand] .login-msg {
  color: var(--color-white-base, white);
}

.paywall-block {
  max-height: 110px;
  overflow: hidden;
  position: relative;
  margin-top: 24px;
}
.paywall-block:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
.blog-text .paywall-block:after {
  background: linear-gradient(180deg, rgba(242, 242, 242, 0) 0%, rgb(242, 242, 242) 100%);
}

.details-default.details-blog .detail-body-content .blog-content .blog-text.paywall-block {
  border-bottom: none;
}

.tag-membership {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 8px;
  border: 1px solid var(--color-white-base, white);
  color: var(--color-white-base, white);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  width: max-content;
}

.summary-list:not([list-type=grid-view]) .summary-card .summary-content .section-heading .tag-membership, .summary-list:not([list-type=grid-view]) .summary-card .summary-content .summary-heading-left .tag-membership, .summary-list:not([list-type=grid-view]) .summary-card .summary-content .summary-content-left .tag-membership, .summary-list:not([list-type=grid-view]) .summary-item .summary-content .section-heading .tag-membership, .summary-list:not([list-type=grid-view]) .summary-item .summary-content .summary-heading-left .tag-membership, .summary-list:not([list-type=grid-view]) .summary-item .summary-content .summary-content-left .tag-membership {
  padding: 4px 8px;
  font-weight: bold;
  font-size: 12px;
  margin-right: 8px;
  color: var(--highlight-base, #137df7);
  border-color: var(--highlight-base, #137df7);
}
.summary-list:not([list-type=grid-view]) .summary-card[summary-type="3"] .summary-content .summary-heading-left .tag-membership, .summary-list:not([list-type=grid-view]) .summary-card[summary-type="3"] .summary-content .summary-content-left .tag-membership, .summary-list:not([list-type=grid-view]) .summary-card[summary-type="4"] .summary-content .summary-heading-left .tag-membership, .summary-list:not([list-type=grid-view]) .summary-card[summary-type="4"] .summary-content .summary-content-left .tag-membership, .summary-list:not([list-type=grid-view]) .summary-card[summary-type="6"] .summary-content .summary-heading-left .tag-membership, .summary-list:not([list-type=grid-view]) .summary-card[summary-type="6"] .summary-content .summary-content-left .tag-membership, .summary-list:not([list-type=grid-view]) .summary-item[summary-type="3"] .summary-content .summary-heading-left .tag-membership, .summary-list:not([list-type=grid-view]) .summary-item[summary-type="3"] .summary-content .summary-content-left .tag-membership, .summary-list:not([list-type=grid-view]) .summary-item[summary-type="4"] .summary-content .summary-heading-left .tag-membership, .summary-list:not([list-type=grid-view]) .summary-item[summary-type="4"] .summary-content .summary-content-left .tag-membership, .summary-list:not([list-type=grid-view]) .summary-item[summary-type="6"] .summary-content .summary-heading-left .tag-membership, .summary-list:not([list-type=grid-view]) .summary-item[summary-type="6"] .summary-content .summary-content-left .tag-membership {
  margin-bottom: 8px;
}
.summary-list:not([list-type=grid-view]) .summary-card[summary-type="5"] .summary-content .summary-heading-left .tag-membership, .summary-list:not([list-type=grid-view]) .summary-item[summary-type="5"] .summary-content .summary-heading-left .tag-membership {
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.summary-list:not([list-type=grid-view]) .summary-card[summary-type="8"] .summary-content .tag-membership, .summary-list:not([list-type=grid-view]) .summary-card[summary-type="9"] .summary-content .tag-membership, .summary-list:not([list-type=grid-view]) .summary-card[summary-type="10"] .summary-content .tag-membership, .summary-list:not([list-type=grid-view]) .summary-item[summary-type="8"] .summary-content .tag-membership, .summary-list:not([list-type=grid-view]) .summary-item[summary-type="9"] .summary-content .tag-membership, .summary-list:not([list-type=grid-view]) .summary-item[summary-type="10"] .summary-content .tag-membership {
  padding: 4px 8px;
  font-weight: bold;
  font-size: 12px;
  margin-right: 8px;
  margin-bottom: 8px;
  color: var(--highlight-base, #137df7);
  border-color: var(--highlight-base, #137df7);
}
.summary-list:not([list-type=grid-view]) .summary-card[summary-type="10"] .summary-content .tag-membership, .summary-list:not([list-type=grid-view]) .summary-item[summary-type="10"] .summary-content .tag-membership {
  position: absolute;
}
.summary-list:not([list-type=grid-view]) .summary-card[data-type=listing] .summary-info .tag-membership, .summary-list:not([list-type=grid-view]) .summary-card[data-type=article] .summary-info .tag-membership, .summary-list:not([list-type=grid-view]) .summary-card[data-type=blog] .summary-info .tag-membership, .summary-list:not([list-type=grid-view]) .summary-card[data-type=event] .summary-info .tag-membership, .summary-list:not([list-type=grid-view]) .summary-card[data-type=classified] .summary-info .tag-membership, .summary-list:not([list-type=grid-view]) .summary-card[data-type=deal] .summary-info .tag-membership, .summary-list:not([list-type=grid-view]) .summary-item[data-type=listing] .summary-info .tag-membership, .summary-list:not([list-type=grid-view]) .summary-item[data-type=article] .summary-info .tag-membership, .summary-list:not([list-type=grid-view]) .summary-item[data-type=blog] .summary-info .tag-membership, .summary-list:not([list-type=grid-view]) .summary-item[data-type=event] .summary-info .tag-membership, .summary-list:not([list-type=grid-view]) .summary-item[data-type=classified] .summary-info .tag-membership, .summary-list:not([list-type=grid-view]) .summary-item[data-type=deal] .summary-info .tag-membership {
  padding: 4px 8px;
  font-weight: bold;
  font-size: 12px;
  margin-right: 8px;
  margin-bottom: 8px;
  color: var(--highlight-base, #137df7);
  border-color: var(--highlight-base, #137df7);
}

.summary-list[list-type=grid-view] .tag-membership {
  margin: 16px 0 32px;
  padding: 4px 8px;
  font-weight: bold;
  font-size: 12px;
  color: var(--highlight-base, #137df7);
  border-color: var(--highlight-base, #137df7);
}
.summary-list[list-type=grid-view] .summary-card[summary-type="1"] .tag-membership, .summary-list[list-type=grid-view] .summary-card[summary-type="2"] .tag-membership, .summary-list[list-type=grid-view] .summary-card[summary-type="3"] .tag-membership, .summary-list[list-type=grid-view] .summary-card[summary-type="4"] .tag-membership, .summary-list[list-type=grid-view] .summary-card[summary-type="5"] .tag-membership, .summary-list[list-type=grid-view] .summary-card[summary-type="6"] .tag-membership, .summary-list[list-type=grid-view] .summary-card[summary-type="7"] .tag-membership, .summary-list[list-type=grid-view] .summary-card[summary-type="8"] .tag-membership, .summary-list[list-type=grid-view] .summary-card[summary-type="9"] .tag-membership, .summary-list[list-type=grid-view] .summary-card[summary-type="10"] .tag-membership, .summary-list[list-type=grid-view] .summary-item[summary-type="1"] .tag-membership, .summary-list[list-type=grid-view] .summary-item[summary-type="2"] .tag-membership, .summary-list[list-type=grid-view] .summary-item[summary-type="3"] .tag-membership, .summary-list[list-type=grid-view] .summary-item[summary-type="4"] .tag-membership, .summary-list[list-type=grid-view] .summary-item[summary-type="5"] .tag-membership, .summary-list[list-type=grid-view] .summary-item[summary-type="6"] .tag-membership, .summary-list[list-type=grid-view] .summary-item[summary-type="7"] .tag-membership, .summary-list[list-type=grid-view] .summary-item[summary-type="8"] .tag-membership, .summary-list[list-type=grid-view] .summary-item[summary-type="9"] .tag-membership, .summary-list[list-type=grid-view] .summary-item[summary-type="10"] .tag-membership {
  margin: 16px auto 32px;
}
.summary-list[list-type=grid-view] .summary-card[data-type=deals] .tag-membership, .summary-list[list-type=grid-view] .summary-item[data-type=deals] .tag-membership {
  margin: 16px auto 24px;
}
.summary-list[list-type=grid-view] .summary-card[data-type=article] .tag-membership, .summary-list[list-type=grid-view] .summary-card[data-type=classified] .tag-membership, .summary-list[list-type=grid-view] .summary-card[data-type=event] .tag-membership, .summary-list[list-type=grid-view] .summary-item[data-type=article] .tag-membership, .summary-list[list-type=grid-view] .summary-item[data-type=classified] .tag-membership, .summary-list[list-type=grid-view] .summary-item[data-type=event] .tag-membership {
  margin: 16px 0 24px;
}
.summary-list[list-type=grid-view] .summary-card[summary-type="10"] .summary-content .summary-heading-left .tag-membership, .summary-list[list-type=grid-view] .summary-card[summary-type="10"] .summary-content .summary-content-left .tag-membership, .summary-list[list-type=grid-view] .summary-item[summary-type="10"] .summary-content .summary-heading-left .tag-membership, .summary-list[list-type=grid-view] .summary-item[summary-type="10"] .summary-content .summary-content-left .tag-membership {
  margin-top: 0;
}
.details-default .details-header .details-info .tag-membership {
  margin-top: 12px;
}
@media screen and (max-width: 992px) {
  .details-default .details-header .details-info .tag-membership {
    margin: 12px auto 0;
  }
}
.details-default .details-header[data-type=simple-header] .details-info .tag-membership {
  margin-top: 8px;
}
.details-default .details-header[data-type=vertical-header] .tag-membership {
  border-color: var(--badge-base, #ffc800);
  margin-top: 8px;
}
.details-default .details-header[data-type=profile-header] .tag-membership {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--neutral-base, #3e455e);
  border-color: var(--highlight-base, #137df7);
}
.details-default .details-header[data-type=gallery-header] .tag-membership, .details-default .details-header[data-type=slider-header] .tag-membership {
  margin-top: 8px;
  color: var(--neutral-base, #3e455e);
  border-color: var(--badge-base, #ffc800);
  -ms-flex-order: 4;
      order: 4;
}
@media screen and (max-width: 992px) {
  .details-default .details-header[data-type=gallery-header] .tag-membership, .details-default .details-header[data-type=slider-header] .tag-membership {
    margin: -12px auto 18px;
  }
}

.details-deals .details-header .details-info .tag-membership {
  margin-bottom: 24px;
}

.article-header .tag-membership {
  margin: 18px auto;
}

.blog-post-info .tag-membership {
  padding: 4px 8px;
  font-weight: bold;
  font-size: 12px;
  margin-left: 32px;
  color: var(--highlight-base, #137df7);
  border-color: var(--highlight-base, #137df7);
}

/* ARQUIVOS DE COMPONENTS */
/* ARQUIVOS DE TEMPLATES */
body.has-shadow:before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

/* ARQUIVOS DE TEMPLATES */
/* ARQUIVOS DE BLOCOS */
.categories-base {
  padding-top: 24px;
  padding-bottom: 24px;
}
@media only screen and (min-width: 992px) {
  .categories-base {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.categories-base .categories-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 24px;
}
.categories-base .categories-header > .heading {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
.categories-base .categories-content > .categories-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
}
.categories-base .categories-content > .categories-list.categories-icon {
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.categories-base .categories-content > .categories-list .categories-item {
  text-decoration: none;
}
.categories-base .categories-content > .categories-list .categories-item:hover .title {
  color: var(--highlight-base, #137df7);
}
.categories-base .categories-content > .categories-list .categories-item:hover .title .count {
  color: var(--highlight-light, rgb(54.4, 144.5, 248.2));
}
.categories-base .categories-content > .categories-list .categories-item .picture {
  overflow: hidden;
  border-radius: var(--border-radius, 3px);
}
.categories-base .categories-content > .categories-list .categories-item .picture img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  margin: 0 auto;
}
.categories-base .categories-content > .categories-list .info .title {
  transition: 0.2s ease-in-out;
}
.categories-base .categories-content > .categories-list .info .title .count {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
  margin-left: 3px;
  transition: 0.2s ease-in-out;
}
.categories-base .categories-content > .categories-list .info .title .count:before {
  content: "(";
}
.categories-base .categories-content > .categories-list .info .title .count:after {
  content: ")";
}
.categories-base .categories-wrapper[has-ads=true] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
}
.categories-base .categories-wrapper[has-ads=true] .categories-ads {
  max-width: 250px;
}
.categories-base .categories-wrapper[has-ads=true] .categories-ads .banner {
  padding: 0;
  margin-top: 0;
}
.categories-base .categories-wrapper[has-ads=true] .categories-ads .banner .banner-link {
  display: block;
}
.categories-base .categories-wrapper[has-ads=true] .categories-ads .banner .banner-link:not(:first-child) {
  margin-top: 16px;
}
.categories-base .categories-wrapper[has-ads=true][banner-type=square] .categories-content {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .categories-base .categories-wrapper[has-ads=true][banner-type=square] .categories-content {
    width: 70%;
  }
}
@media screen and (min-width: 1200px) {
  .categories-base .categories-wrapper[has-ads=true][banner-type=square] .categories-content {
    width: 75%;
  }
}
.categories-base .categories-wrapper[has-ads=true][banner-type=square] .categories-ads {
  max-width: 100%;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 32px;
}
@media screen and (min-width: 992px) {
  .categories-base .categories-wrapper[has-ads=true][banner-type=square] .categories-ads {
    width: auto;
    max-width: 250px;
    display: block;
    margin-top: -16px;
  }
}
.categories-base .categories-wrapper[has-ads=true][banner-type=square] .categories-ads .banner[type=square] picture:not(:first-child) {
  margin-top: 30px;
}
.categories-base .categories-wrapper[has-ads=true][banner-type=square] .categories-ads .banner .banner-link {
  margin-left: 16px;
}
@media screen and (min-width: 992px) {
  .categories-base .categories-wrapper[has-ads=true][banner-type=square] .categories-ads .banner .banner-link {
    margin-left: 0;
  }
}
.categories-base .categories-wrapper[has-ads=true][banner-type=skyscraper] .categories-content {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .categories-base .categories-wrapper[has-ads=true][banner-type=skyscraper] .categories-content {
    width: 80%;
  }
}
.categories-base .categories-wrapper[has-ads=true][banner-type=skyscraper] .categories-ads {
  display: none;
}
@media screen and (min-width: 992px) {
  .categories-base .categories-wrapper[has-ads=true][banner-type=skyscraper] .categories-ads {
    display: block;
  }
}
.categories-base .categories-wrapper[has-ads=true][banner-type=halfpage] .categories-content {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .categories-base .categories-wrapper[has-ads=true][banner-type=halfpage] .categories-content {
    width: 70%;
  }
}
.categories-base .categories-wrapper[has-ads=true][banner-type=halfpage] .categories-ads {
  display: none;
}
@media screen and (min-width: 992px) {
  .categories-base .categories-wrapper[has-ads=true][banner-type=halfpage] .categories-ads {
    max-width: 300px;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .categories-base[data-type="1"][scrollable=true] .categories-content > .categories-list {
    overflow: auto;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .categories-base[data-type="1"][scrollable=true] .categories-content > .categories-list::-webkit-scrollbar {
    width: 0px;
    background: transparent;
  }
}
.categories-base[data-type="1"] .categories-content > .categories-list {
  -ms-flex-pack: start;
      justify-content: flex-start;
  margin-left: -32px;
  margin-top: -32px;
}
.categories-base[data-type="1"] .categories-content > .categories-list .categories-item {
  display: block;
  transition: 0.2s ease-in-out;
  width: calc(50% - 32px);
  min-width: calc(45% - 32px);
  margin-left: 32px;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .categories-base[data-type="1"] .categories-content > .categories-list .categories-item {
    width: calc(25% - 32px);
    min-width: calc(22.5% - 32px);
  }
}
@media screen and (min-width: 1200px) {
  .categories-base[data-type="1"] .categories-content > .categories-list .categories-item {
    width: calc(20% - 32px);
    min-width: calc(18% - 32px);
  }
}
.categories-base[data-type="1"] .categories-content > .categories-list .categories-item:hover {
  -ms-transform: scale(1.05);
      transform: scale(1.05);
  box-shadow: 0px 10px 20px #fefefe;
  border: 1px solid var(--highlight-base, #137df7);
}
.categories-base[data-type="1"] .categories-content > .categories-list .info {
  text-align: center;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .categories-base[data-type="2"][scrollable=true] .categories-content > .categories-list {
    overflow: auto;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -ms-flex-pack: start;
        justify-content: flex-start;
  }
  .categories-base[data-type="2"][scrollable=true] .categories-content > .categories-list::-webkit-scrollbar {
    width: 0px;
    background: transparent;
  }
  .categories-base[data-type="2"][scrollable=true] .categories-content > .categories-list .categories-item {
    width: auto;
  }
}
@media screen and (max-width: 768px) and (min-width: 320px) and (max-width: 540px) {
  .categories-base[data-type="2"][scrollable=true] .categories-content > .categories-list .categories-item {
    min-width: 100%;
  }
  .categories-base[data-type="2"][scrollable=true] .categories-content > .categories-list .categories-item:nth-child(1n), .categories-base[data-type="2"][scrollable=true] .categories-content > .categories-list .categories-item:nth-child(2n), .categories-base[data-type="2"][scrollable=true] .categories-content > .categories-list .categories-item:nth-child(4n) {
    margin-right: 32px;
  }
}
@media screen and (max-width: 768px) and (min-width: 541px) and (max-width: 768px) {
  .categories-base[data-type="2"][scrollable=true] .categories-content > .categories-list .categories-item {
    min-width: 45%;
  }
  .categories-base[data-type="2"][scrollable=true] .categories-content > .categories-list .categories-item:nth-child(1n), .categories-base[data-type="2"][scrollable=true] .categories-content > .categories-list .categories-item:nth-child(2n), .categories-base[data-type="2"][scrollable=true] .categories-content > .categories-list .categories-item:nth-child(4n) {
    margin-right: 32px;
  }
}
.categories-base[data-type="2"] .categories-content > .categories-list .categories-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  background: var(--neutral-transp-5, rgba(62, 69, 94, 0.05));
  padding: 16px;
  margin-right: 32px;
  margin-bottom: 16px;
  border-radius: var(--border-radius, 3px);
  transition: 0.2s ease-in-out;
}
@media only screen and (min-width: 320px) and (max-width: 374px) {
  .categories-base[data-type="2"] .categories-content > .categories-list .categories-item {
    width: 100%;
  }
  .categories-base[data-type="2"] .categories-content > .categories-list .categories-item:nth-child(1n) {
    margin-right: 0;
  }
  .categories-base[data-type="2"] .categories-content > .categories-list .categories-item:nth-last-child(-n+1) {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 375px) and (max-width: 424px) {
  .categories-base[data-type="2"] .categories-content > .categories-list .categories-item {
    width: 100%;
  }
  .categories-base[data-type="2"] .categories-content > .categories-list .categories-item:nth-child(1n) {
    margin-right: 0;
  }
  .categories-base[data-type="2"] .categories-content > .categories-list .categories-item:nth-last-child(-n+1) {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 425px) and (max-width: 767px) {
  .categories-base[data-type="2"] .categories-content > .categories-list .categories-item {
    width: 46.5%;
    -ms-flex-direction: column;
        flex-direction: column;
    margin-right: 24px;
  }
  .categories-base[data-type="2"] .categories-content > .categories-list .categories-item:nth-child(2n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .categories-base[data-type="2"] .categories-content > .categories-list .categories-item {
    width: 22.3%;
    -ms-flex-direction: column;
        flex-direction: column;
    margin-right: 24px;
  }
  .categories-base[data-type="2"] .categories-content > .categories-list .categories-item:nth-child(4n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1139px) {
  .categories-base[data-type="2"] .categories-content > .categories-list .categories-item {
    width: 294px;
    margin-right: 24px;
  }
  .categories-base[data-type="2"] .categories-content > .categories-list .categories-item:nth-child(3n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1140px) {
  .categories-base[data-type="2"] .categories-content > .categories-list .categories-item {
    width: 358px;
  }
  .categories-base[data-type="2"] .categories-content > .categories-list .categories-item:nth-child(3n) {
    margin-right: 0;
  }
}
.categories-base[data-type="2"] .categories-content > .categories-list .categories-item:hover {
  -ms-transform: scale(1.05);
      transform: scale(1.05);
  box-shadow: -1px -1px 33px -3px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--highlight-base, #137df7);
}
.categories-base[data-type="2"] .categories-content > .categories-list .categories-item .picture {
  width: 47px;
  height: 47px;
  overflow: hidden;
}
.categories-base[data-type="2"] .categories-content > .categories-list .info {
  max-width: calc(100% - 63px);
  margin-left: 16px;
}
@media only screen and (min-width: 425px) and (max-width: 767px) {
  .categories-base[data-type="2"] .categories-content > .categories-list .info {
    max-width: 100%;
    margin-left: 0;
    margin-top: 16px;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .categories-base[data-type="2"] .categories-content > .categories-list .info {
    max-width: 100%;
    margin-left: 0;
    margin-top: 16px;
    text-align: center;
  }
}
.categories-base[data-type="2"][data-bg=neutral] .categories-content > .categories-list .categories-item {
  background: var(--color-white-base, white);
}
.categories-base[data-type="2"][data-bg=brand] .categories-content > .categories-list .categories-item {
  background: var(--color-white-base, white);
}
.categories-base[data-type="2"][data-bg=brand] .categories-content > .categories-list .categories-item .info .title {
  color: var(--neutral-base, #3e455e);
}
.categories-base[data-type="2"][data-bg=brand] .categories-content > .categories-list .categories-item .info .title .count {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}
.categories-base[data-type="3"] .categories-content {
  max-height: 244px;
  overflow: hidden;
  transition: 0.2s ease-in-out;
}
@media screen and (min-width: 992px) {
  .categories-base[data-type="3"] .categories-content {
    max-height: 100%;
  }
}
.categories-base[data-type="3"] .categories-content.is-toggled {
  max-height: 10000px;
}
.categories-base[data-type="3"] .categories-content > .categories-list {
  display: block;
  column-count: 2;
}
@media screen and (min-width: 768px) {
  .categories-base[data-type="3"] .categories-content > .categories-list {
    column-count: 3;
  }
}
@media screen and (min-width: 992px) {
  .categories-base[data-type="3"] .categories-content > .categories-list {
    column-count: 4;
  }
}
.categories-base[data-type="3"] .categories-content > .categories-list .categories-item {
  display: block;
  margin-right: 16px;
  margin-bottom: 16px;
}
.categories-base[data-type="3"] #toggle-locations {
  margin: 24px auto 0;
  display: block;
}
@media screen and (min-width: 992px) {
  .categories-base[data-type="3"] #toggle-locations {
    display: none;
  }
}
.categories-base[data-type="4"] .categories-content .toggle-item {
  background: var(--color-white-base, white);
  border-radius: var(--border-radius, 3px);
}
.categories-base[data-type="4"] .categories-content .toggle-item:not(:first-child) {
  margin-top: 24px;
}
.categories-base[data-type="4"] .categories-content .toggle-item .toggle-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  padding: 16px 32px;
}
.categories-base[data-type="4"] .categories-content .toggle-item .toggle-header.is-open .button-toggle-title,
.categories-base[data-type="4"] .categories-content .toggle-item .toggle-header.is-open .more-info {
  -ms-transform: rotate(90deg);
      transform: rotate(90deg);
}
.categories-base[data-type="4"] .categories-content .toggle-item .toggle-header .toggle-title:hover .title-count {
  color: var(--link-base, #3ebaf6);
}
.categories-base[data-type="4"] .categories-content .toggle-item .toggle-header .toggle-title .title-count {
  font-size: 1rem;
  font-weight: 300;
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
  transition: 0.2s ease-in-out;
}
.categories-base[data-type="4"] .categories-content .toggle-item .toggle-header .toggle-title .title-count:before {
  content: "(";
}
.categories-base[data-type="4"] .categories-content .toggle-item .toggle-header .toggle-title .title-count:after {
  content: ")";
}
.categories-base[data-type="4"] .categories-content .toggle-item .toggle-header .button-toggle-title,
.categories-base[data-type="4"] .categories-content .toggle-item .toggle-header .more-info {
  background: none;
  border: none;
  background-image: none;
  box-shadow: none;
  font-size: 22px;
  transition: 0.2s ease-in-out;
  color: var(--brand-base, #022e69);
}
.categories-base[data-type="4"] .categories-content .toggle-item .toggle-content {
  border-top: 1px solid rgba(151, 151, 151, 0.23);
  display: none;
}
.categories-base[data-type="4"] .categories-content .toggle-item .toggle-content .nav-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
}
.categories-base[data-type="4"] .categories-content .toggle-item .toggle-content .nav-wrapper .toggle-nav {
  width: 100%;
  padding: 24px 32px;
  max-height: 321px;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.categories-base[data-type="4"] .categories-content .toggle-item .toggle-content .nav-wrapper .toggle-nav::-webkit-scrollbar {
  background-color: lightgrey;
  width: 15px !important;
}
.categories-base[data-type="4"] .categories-content .toggle-item .toggle-content .nav-wrapper .toggle-nav::-webkit-scrollbar-thumb {
  background-color: darkgrey;
}
@media screen and (min-width: 768px) {
  .categories-base[data-type="4"] .categories-content .toggle-item .toggle-content .nav-wrapper .toggle-nav {
    width: 50%;
  }
}
@media screen and (min-width: 992px) {
  .categories-base[data-type="4"] .categories-content .toggle-item .toggle-content .nav-wrapper .toggle-nav {
    width: 33.3333333333%;
  }
}
@media screen and (min-width: 1200px) {
  .categories-base[data-type="4"] .categories-content .toggle-item .toggle-content .nav-wrapper .toggle-nav {
    max-width: 292px;
    width: 25%;
  }
}
.categories-base[data-type="4"] .categories-content .toggle-item .toggle-content .nav-wrapper .toggle-nav:not(:first-child) {
  border-left: 1px solid rgba(151, 151, 151, 0.23);
}
.categories-base[data-type="4"] .categories-content .toggle-item .toggle-content .nav-wrapper .toggle-nav:not([data-order="1"]) {
  display: none;
}
.categories-base[data-type="4"] .categories-content .toggle-item .toggle-content .nav-wrapper .toggle-nav .nav-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  overflow: hidden;
  white-space: nowrap;
}
.categories-base[data-type="4"] .categories-content .toggle-item .toggle-content .nav-wrapper .toggle-nav .nav-item:not(:first-child) {
  margin-top: 16px;
}
.categories-base[data-type="4"] .categories-content .toggle-item .toggle-content .nav-wrapper .toggle-nav .nav-item.is-selected .nav-link {
  color: var(--link-base, #3ebaf6);
}
.categories-base[data-type="4"] .categories-content .toggle-item .toggle-content .nav-wrapper .toggle-nav .nav-item.is-selected .nav-link .nav-count {
  color: var(--link-base, #3ebaf6);
}
.categories-base[data-type="4"] .categories-content .toggle-item .toggle-content .nav-wrapper .toggle-nav .nav-item.is-selected .button-toggle-nav,
.categories-base[data-type="4"] .categories-content .toggle-item .toggle-content .nav-wrapper .toggle-nav .nav-item.is-selected .more-info-item {
  color: var(--link-base, #3ebaf6);
}
.categories-base[data-type="4"] .categories-content .toggle-item .toggle-content .nav-wrapper .toggle-nav .nav-item .nav-link {
  font-size: 1em;
  color: var(--neutral-base, #3e455e);
  overflow: hidden;
  max-width: 180px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.categories-base[data-type="4"] .categories-content .toggle-item .toggle-content .nav-wrapper .toggle-nav .nav-item .nav-link:hover {
  color: var(--link-base, #3ebaf6);
}
.categories-base[data-type="4"] .categories-content .toggle-item .toggle-content .nav-wrapper .toggle-nav .nav-item .nav-link:hover .nav-count {
  color: var(--link-base, #3ebaf6);
}
.categories-base[data-type="4"] .categories-content .toggle-item .toggle-content .nav-wrapper .toggle-nav .nav-item .nav-link .nav-count {
  font-size: 1rem;
  font-weight: 300;
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
  transition: 0.2s ease-in-out;
}
.categories-base[data-type="4"] .categories-content .toggle-item .toggle-content .nav-wrapper .toggle-nav .nav-item .nav-link .nav-count:before {
  content: "(";
}
.categories-base[data-type="4"] .categories-content .toggle-item .toggle-content .nav-wrapper .toggle-nav .nav-item .nav-link .nav-count:after {
  content: ")";
}
.categories-base[data-type="4"] .categories-content .toggle-item .toggle-content .nav-wrapper .toggle-nav .nav-item .button-toggle-nav,
.categories-base[data-type="4"] .categories-content .toggle-item .toggle-content .nav-wrapper .toggle-nav .nav-item .more-info-item {
  background: none;
  border: none;
  background-image: none;
  box-shadow: none;
  font-size: 18px;
  color: var(--brand-base, #022e69);
}
.categories-base[data-type="4"][data-bg=base] .categories-content .toggle-item {
  background: var(--neutral-transp-5, rgba(62, 69, 94, 0.05));
}
.categories-base[data-type="6"] {
  padding: 32px 0;
}
.categories-base[data-type="6"] .categories-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-direction: column;
      flex-direction: column;
  padding: 32px 16px;
  border-top: 1px solid var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  border-bottom: 1px solid var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  position: relative;
}
@media screen and (min-width: 768px) {
  .categories-base[data-type="6"] .categories-content {
    -ms-flex-direction: row;
        flex-direction: row;
    padding: 32px 64px;
  }
}
.categories-base[data-type="6"] .categories-content .categories-nav {
  width: 35px;
  height: 35px;
  position: absolute;
  top: calc(50% + 24px);
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  border: 1px solid var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
  border-radius: 9999px;
  background: none;
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
  outline: none;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .categories-base[data-type="6"] .categories-content .categories-nav {
    top: 50%;
  }
}
.categories-base[data-type="6"] .categories-content .categories-nav[data-direction=prev] {
  left: 0;
}
.categories-base[data-type="6"] .categories-content .categories-nav[data-direction=next] {
  right: 0;
}
.categories-base[data-type="6"] .categories-content .trending-label {
  text-transform: uppercase;
  color: var(--brand-transp-20, rgba(2, 46, 105, 0.8));
  font-weight: 600;
  font-size: var(--font-size-18, 1.125em);
}
.categories-base[data-type="6"] .categories-content .trending-list {
  width: calc(100% - 56px);
  overflow: auto;
  display: -ms-flexbox;
  display: flex;
  scrollbar-width: none;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .categories-base[data-type="6"] .categories-content .trending-list {
    width: calc(75% - 16px);
    margin-top: 0;
    margin-left: 16px;
  }
}
.categories-base[data-type="6"] .categories-content .trending-list::-webkit-scrollbar {
  display: none;
}
.categories-base[data-type="6"] .categories-content .trending-item {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  text-transform: uppercase;
  font-weight: bold;
  font-size: var(--font-size-16, 1em);
  text-decoration: none;
  transition: 0.2s ease-in-out;
  white-space: nowrap;
}
.categories-base[data-type="6"] .categories-content .trending-item:not(:first-child) {
  margin-left: 24px;
}
@media screen and (min-width: 768px) {
  .categories-base[data-type="6"] .categories-content .trending-item:not(:first-child) {
    margin-left: 40px;
  }
}
.categories-base[data-type="6"] .categories-content .trending-item:hover {
  color: var(--neutral-base, #3e455e);
}
.categories-base[data-type="6"] .categories-content .trending-item .count {
  margin-left: 3px;
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}
.categories-base[data-type="6"][data-bg=brand] .categories-content {
  border-top-color: var(--color-white-transp-25, rgba(255, 255, 255, 0.25));
  border-bottom-color: var(--color-white-transp-25, rgba(255, 255, 255, 0.25));
}
.categories-base[data-type="6"][data-bg=brand] .categories-content .categories-nav {
  border-color: var(--color-white-transp-50, rgba(255, 255, 255, 0.5));
  color: var(--color-white-transp-50, rgba(255, 255, 255, 0.5));
}
.categories-base[data-type="6"][data-bg=brand] .trending-label {
  color: var(--color-white-transp-50, rgba(255, 255, 255, 0.5));
}
.categories-base[data-type="6"][data-bg=brand] .trending-item {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.categories-base[data-type="6"][data-bg=brand] .trending-item .count {
  color: var(--color-white-transp-50, rgba(255, 255, 255, 0.5));
}
.categories-base[data-type="6"][data-bg=brand] .trending-item:hover {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.categories-base[data-type="6"][data-bg=brand] .count {
  color: var(--color-white-transp-50, rgba(255, 255, 255, 0.5));
}
.categories-base[data-bg=brand] .categories-header > .heading {
  color: var(--color-white-base, white);
}
.categories-base[data-bg=brand] .categories-content > .categories-list .info .title {
  color: var(--color-white-base, white);
}
.categories-base[data-bg=brand] .categories-content > .categories-list .info .title .count {
  color: var(--color-white-transp-50, rgba(255, 255, 255, 0.5));
}

.thin-strip-base {
  padding-top: 24px;
  padding-bottom: 24px;
}
@media only screen and (min-width: 992px) {
  .thin-strip-base {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.thin-strip-base#thin-strip-search .content-form {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #fff;
  border-radius: var(--border-radius, 3px);
  padding: 8px;
}
@media screen and (min-width: 992px) {
  .thin-strip-base#thin-strip-search .content-form {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.thin-strip-base .wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.thin-strip-base .wrapper > .content-social {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.thin-strip-base .wrapper > .content-social .social-icon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  margin-right: 16px;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}
@media only screen and (min-width: 320px) and (max-width: 374px) {
  .thin-strip-base .wrapper > .content-social .social-icon {
    margin-right: 4px;
  }
}
@media only screen and (min-width: 375px) and (max-width: 424px) {
  .thin-strip-base .wrapper > .content-social .social-icon {
    margin-right: 8px;
  }
}
.thin-strip-base .wrapper > .content-social .social-icon.has-border {
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-white-base, white);
  border-radius: 50%;
}
.thin-strip-base .wrapper > .content-social .social-icon.has-border:hover {
  border-color: var(--highlight-base, #137df7);
}
.thin-strip-base .wrapper > .content-social .social-icon:hover .icon {
  color: var(--highlight-base, #137df7);
}
.thin-strip-base .wrapper > .content-social .social-icon:hover .icon svg {
  fill: var(--highlight-base, #137df7);
}
.thin-strip-base .wrapper > .content-social .social-icon .icon {
  font-size: 16px;
  color: var(--color-white-base, white);
  transition: 0.2s ease-in-out;
}
.thin-strip-base .wrapper > .content-social .social-icon .icon svg {
  fill: var(--color-white-base, white);
}
@media screen and (min-width: 768px) {
  .thin-strip-base .wrapper > .content-form {
    margin-top: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .thin-strip-base .wrapper > .content-form {
    margin-top: 0;
  }
}
.thin-strip-base .wrapper > .content-form .input-group input#searchKeyword,
.thin-strip-base .wrapper > .content-form .input-group input#searchLocation,
.thin-strip-base .wrapper > .content-form .input-group input#searchCalendar,
.thin-strip-base .wrapper > .content-form .input-group .input-group-icon {
  border: none;
}
.thin-strip-base .wrapper > .content-form .input-group:nth-child(2) {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .thin-strip-base .wrapper > .content-form .input-group:nth-child(2) {
    width: 342px;
  }
}
@media screen and (min-width: 992px) {
  .thin-strip-base .wrapper > .content-form .input-group:nth-child(2) {
    border-left: 1px solid var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  }
}
@media screen and (min-width: 1024px) {
  .thin-strip-base .wrapper > .content-form .input-group:nth-child(2) {
    width: 270px;
  }
}
@media screen and (min-width: 1200px) {
  .thin-strip-base .wrapper > .content-form .input-group:nth-child(2) {
    width: 385px;
  }
}
.thin-strip-base .wrapper > .content-form .input-group:nth-child(3) {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .thin-strip-base .wrapper > .content-form .input-group:nth-child(3) {
    width: 218px;
  }
}
@media screen and (min-width: 992px) {
  .thin-strip-base .wrapper > .content-form .input-group:nth-child(3) {
    border-left: 1px solid var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  }
}
.thin-strip-base[data-type="1"] .wrapper > .content-location {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (min-width: 320px) and (max-width: 374px) {
  .thin-strip-base[data-type="1"] .wrapper > .content-location {
    max-width: 310px;
  }
}
@media only screen and (min-width: 375px) and (max-width: 424px) {
  .thin-strip-base[data-type="1"] .wrapper > .content-location {
    max-width: 345px;
  }
}
@media only screen and (min-width: 425px) and (max-width: 767px) {
  .thin-strip-base[data-type="1"] .wrapper > .content-location {
    max-width: 360px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .thin-strip-base[data-type="1"] .wrapper > .content-location {
    max-width: 100%;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1139px) {
  .thin-strip-base[data-type="1"] .wrapper > .content-location {
    max-width: 310px;
  }
}
.thin-strip-base[data-type="1"] .wrapper > .content-location .icon {
  color: var(--color-white-base, white);
  margin-right: 8px;
}
.thin-strip-base[data-type="1"] .wrapper > .content-location .paragraph {
  color: var(--color-white-base, white);
  margin-right: 16px;
}
.thin-strip-base[data-type="1"] .wrapper > .content-location .link {
  color: var(--link-base, #3ebaf6);
}
.thin-strip-base[data-type="1"][is-inverse=true] {
  background: var(--color-white-base, white);
}
.thin-strip-base[data-type="1"][is-inverse=true] .wrapper > .content-location .icon {
  color: var(--neutral-base, #3e455e);
}
.thin-strip-base[data-type="1"][is-inverse=true] .wrapper > .content-location .paragraph {
  color: var(--neutral-base, #3e455e);
}
.thin-strip-base[data-type="2"] .wrapper {
  -ms-flex-pack: center;
      justify-content: center;
}
.thin-strip-base[data-type="2"] .wrapper > .content-form {
  margin-top: 0;
}
.thin-strip-base[data-type="2"] .wrapper > .content-form .form-toggle {
  top: 6px;
}
.thin-strip-base[data-type="3"] .wrapper {
  -ms-flex-pack: center;
      justify-content: center;
}
.thin-strip-base[data-type="4"] {
  display: none;
}
@media screen and (min-width: 992px) {
  .thin-strip-base[data-type="4"] {
    display: block;
  }
}
.thin-strip-base[data-type="4"] .wrapper {
  -ms-flex-pack: center;
      justify-content: center;
}
.thin-strip-base[data-type="4"] .wrapper > .content-form {
  margin-top: 0;
}
.thin-strip-base[data-type="4"] .wrapper > .content-form .form-toggle {
  top: 6px;
}
.thin-strip-base[data-type="4"] .wrapper > .content-form .input-group {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .thin-strip-base[data-type="4"] .wrapper > .content-form .input-group {
    width: auto;
  }
}
.thin-strip-base[data-type="5"] .wrapper > .content-contact {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.thin-strip-base[data-type="5"] .wrapper > .content-contact .paragraph {
  color: var(--color-white-base, white);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-right: 32px;
}
.thin-strip-base[data-type="5"] .wrapper > .content-contact .paragraph:last-child {
  margin-right: 0;
}
.thin-strip-base[data-type="5"] .wrapper > .content-contact .paragraph .icon {
  color: var(--color-white-base, white);
  margin-right: 16px;
}
.thin-strip-base[data-type="5"] .wrapper > .content-contact .paragraph a {
  color: var(--color-white-base, white);
}
.thin-strip-base[data-type="5"] .wrapper > .content-social {
  margin-top: 16px;
}
@media only screen and (min-width: 768px) {
  .thin-strip-base[data-type="5"] .wrapper > .content-social {
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .thin-strip-base[data-type="5"] .wrapper > .content-social .social-icon {
    margin-right: 8px;
  }
}
.thin-strip-base[data-type="6"] {
  padding: 24px 0;
}
@media only screen and (min-width: 768px) {
  .thin-strip-base[data-type="6"] {
    padding: 48px 0;
  }
}
.thin-strip-base[data-type="6"] .wrapper > .content-download {
  max-width: 100%;
}
@media screen and (min-width: 992px) {
  .thin-strip-base[data-type="6"] .wrapper > .content-download {
    max-width: 50%;
  }
}
.thin-strip-base[data-type="6"] .wrapper > .content-download .heading {
  color: var(--color-white-base, white);
  font-weight: 800;
}
.thin-strip-base[data-type="6"] .wrapper > .content-download .paragraph {
  color: var(--color-white-base, white);
  opacity: 0.75;
}
@media only screen and (min-width: 1024px) {
  .thin-strip-base[data-type="6"] .wrapper > .content-download .paragraph {
    margin-top: 16px;
  }
}
.thin-strip-base[data-type="6"] .wrapper > .content-stores {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-top: 24px;
}
@media screen and (min-width: 1200px) {
  .thin-strip-base[data-type="6"] .wrapper > .content-stores {
    margin-top: 0;
  }
}
.thin-strip-base[data-type="6"] .wrapper > .content-stores .link-store {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 100%;
  border: 1px solid var(--brand-base, #022e69);
  border-radius: var(--border-radius-button, 3px);
  color: white;
  padding: 8px 20px;
  text-decoration: none;
  max-width: 100%;
  background: #FFF;
}
@media screen and (min-width: 768px) {
  .thin-strip-base[data-type="6"] .wrapper > .content-stores .link-store {
    max-width: 230px;
    width: auto;
  }
}
.thin-strip-base[data-type="6"] .wrapper > .content-stores .link-store:not(:first-child) {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .thin-strip-base[data-type="6"] .wrapper > .content-stores .link-store:not(:first-child) {
    margin-left: 16px;
    margin-top: 0;
  }
}
.thin-strip-base[data-type="6"] .wrapper > .content-stores .link-store:hover {
  background: var(--link-base, #3ebaf6);
  border: 1px solid transparent;
}
.thin-strip-base[data-type="6"] .wrapper > .content-stores .link-store:hover .app-icon, .thin-strip-base[data-type="6"] .wrapper > .content-stores .link-store:hover .app-info {
  color: #fff;
}
.thin-strip-base[data-type="6"] .wrapper > .content-stores .link-store .app-icon {
  font-size: 24px;
  line-height: 1;
  color: var(--brand-base, #022e69);
}
@media screen and (min-width: 768px) {
  .thin-strip-base[data-type="6"] .wrapper > .content-stores .link-store .app-icon {
    font-size: 42px;
  }
}
.thin-strip-base[data-type="6"] .wrapper > .content-stores .link-store .app-info {
  max-width: calc(100% - 16px);
  margin-left: 16px;
  color: var(--brand-base, #022e69);
}
.thin-strip-base[data-type="6"] .wrapper > .content-stores .link-store .app-info span {
  font-size: 13px;
  display: block;
  line-height: 1;
}
.thin-strip-base[data-bg=neutral]#thin-strip-search, .thin-strip-base[data-bg=base]#thin-strip-search {
  background: transparent;
}
.thin-strip-base[data-bg=neutral] .wrapper > .content-contact .icon, .thin-strip-base[data-bg=base] .wrapper > .content-contact .icon {
  color: var(--brand-base, #022e69);
}
.thin-strip-base[data-bg=neutral] .wrapper > .content-contact .paragraph, .thin-strip-base[data-bg=base] .wrapper > .content-contact .paragraph {
  color: var(--brand-base, #022e69);
}
.thin-strip-base[data-bg=neutral] .wrapper > .content-contact .paragraph .icon, .thin-strip-base[data-bg=base] .wrapper > .content-contact .paragraph .icon {
  color: var(--brand-base, #022e69);
}
.thin-strip-base[data-bg=neutral] .wrapper > .content-contact .paragraph a, .thin-strip-base[data-bg=base] .wrapper > .content-contact .paragraph a {
  color: var(--brand-base, #022e69);
}
.thin-strip-base[data-bg=neutral] .wrapper > .content-social .social-icon, .thin-strip-base[data-bg=base] .wrapper > .content-social .social-icon {
  border-color: var(--brand-transp-50, rgba(2, 46, 105, 0.5));
}
.thin-strip-base[data-bg=neutral] .wrapper > .content-social .social-icon .icon, .thin-strip-base[data-bg=base] .wrapper > .content-social .social-icon .icon {
  color: var(--brand-transp-50, rgba(2, 46, 105, 0.5));
}
.thin-strip-base[data-bg=neutral] .wrapper > .content-social .social-icon .icon svg, .thin-strip-base[data-bg=base] .wrapper > .content-social .social-icon .icon svg {
  fill: var(--brand-transp-50, rgba(2, 46, 105, 0.5));
}
.thin-strip-base[data-bg=neutral] .wrapper > .content-download .heading, .thin-strip-base[data-bg=base] .wrapper > .content-download .heading {
  color: var(--brand-base, #022e69);
}
.thin-strip-base[data-bg=neutral] .wrapper > .content-download .paragraph, .thin-strip-base[data-bg=base] .wrapper > .content-download .paragraph {
  color: var(--brand-base, #022e69);
}
.thin-strip-base[data-bg=neutral] .wrapper > .content-stores .link-store, .thin-strip-base[data-bg=base] .wrapper > .content-stores .link-store {
  border-color: var(--brand-base, #022e69);
}

.hero-default {
  background-size: cover;
  padding-top: 32px;
  padding-bottom: 32px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .hero-default {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
@media only screen and (min-width: 1024px) {
  .hero-default {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}
.hero-default:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--color-black-transp-50, rgba(0, 0, 0, 0.5));
}
.hero-default[data-align=left] {
  text-align: left;
}
.hero-default[data-align=center] {
  text-align: center;
}
.hero-default[data-align=right] {
  text-align: right;
}
.hero-default .wrapper {
  position: relative;
  z-index: 5;
}
.hero-default .wrapper > .hero-header .heading {
  color: var(--color-white-base, white);
  margin-bottom: 24px;
  font-size: var(--font-size-32, 2em);
}
@media screen and (min-width: 768px) {
  .hero-default .wrapper > .hero-header .heading {
    font-size: var(--font-size-40, 2.5em);
  }
}
.hero-default .wrapper > .hero-header .paragraph {
  color: var(--color-white-base, white);
  line-height: 1.33;
  margin-top: 16px;
  display: block;
}
.hero-default .wrapper > .hero-header .paragraph:first-child {
  margin-top: 0;
}
.hero-default .wrapper > .hero-header .button {
  display: inline-block;
  margin-top: 32px;
}
.hero-default .wrapper > .content-location {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 24px;
  -ms-flex-pack: center;
      justify-content: center;
}
.hero-default .wrapper > .content-location .icon {
  color: var(--color-white-base, white);
  margin-right: 8px;
}
.hero-default .wrapper > .content-location .paragraph {
  color: var(--color-white-base, white);
  margin-top: 0 !important;
  margin-right: 16px;
}
.hero-default .wrapper > .content-location .link {
  color: var(--link-base, #3ebaf6);
}
.hero-default .wrapper > .hero-tabs {
  display: -ms-flexbox;
  display: flex;
  margin-top: 24px;
  max-width: 100%;
  overflow: auto;
}
@media screen and (min-width: 768px) {
  .hero-default .wrapper > .hero-tabs {
    width: 100%;
    margin-top: 48px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (min-width: 1024px) {
  .hero-default .wrapper > .hero-tabs {
    width: 900px;
  }
}
.hero-default .wrapper > .hero-tabs .button {
  -ms-flex-positive: 1;
      flex-grow: 1;
  border-radius: 0;
  background: var(--brand-base, #022e69);
  color: white;
}
.hero-default .wrapper > .hero-tabs .button:first-child {
  border-top-left-radius: var(--border-radius-button, 3px);
}
.hero-default .wrapper > .hero-tabs .button:last-child {
  border-top-right-radius: var(--border-radius-button, 3px);
}
.hero-default .wrapper > .hero-tabs .button:hover {
  background: var(--brand-light, rgb(39.95, 77.35, 127.5));
}
.hero-default .wrapper > .hero-tabs .button.is-active {
  background: var(--brand-dark, rgb(1.4, 32.2, 73.5));
}
.hero-default[data-type="1"] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: var(--brand-base, #022e69);
}
.hero-default[data-type="1"] .paragraph {
  word-break: break-word;
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .hero-default[data-type="1"] .paragraph {
    margin-top: 16px;
  }
}
.hero-default[data-type="2"] {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.hero-default[data-type="2"]:before {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}
.hero-default[data-type="2"].empty-hero {
  background-color: var(--brand-base, #022e69);
}
@media only screen and (min-width: 768px) {
  .hero-default[data-type="2"] {
    padding: 96px 0;
  }
}
.hero-default[data-type="2"] .wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  text-align: center;
}
.hero-default[data-type="2"] .wrapper .hero-header {
  margin-bottom: 48px;
}
.hero-default[data-type="2"] .wrapper .hero-header .heading {
  font-size: var(--font-size-32, 2em);
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .hero-default[data-type="2"] .wrapper .hero-header .heading {
    font-size: var(--font-size-40, 2.5em);
  }
}
.hero-default[data-type="2"] .wrapper .alert-message {
  max-width: 100%;
}
.hero-default[data-type="2"] .wrapper .alert-message[data-type=error] {
  margin-top: 8px;
}
.hero-default[data-type="2"] .wrapper .form-privacy {
  color: var(--color-white-base, white);
  margin-top: 16px;
}
.hero-default[data-type="2"] .paragraph {
  margin-top: 16px;
}
.hero-default[data-type="2"] .hero-form-wrapper {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: start;
      align-items: flex-start;
}
.hero-default[data-type="2"] .hero-form-wrapper .input-group {
  width: 100%;
  margin-right: 0;
  margin-bottom: 16px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .hero-default[data-type="2"] .hero-form-wrapper .input-group {
    width: auto;
    margin-right: 16px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .hero-default[data-type="2"] .hero-form-wrapper .input-group {
    width: 310px;
  }
}
.hero-default[data-type="2"] .hero-form-wrapper .input-group input {
  width: 100%;
  display: block;
}
.hero-default[data-type="2"] .consents-block {
  margin-top: 16px;
  max-width: 774px;
  text-align: left;
}
.hero-default[data-type="2"] .consents-block label {
  display: block;
  font-size: 0.6875em;
  color: var(--color-white-base, white);
}
.hero-default[data-type="2"] .button {
  width: 100% !important;
}
@media screen and (min-width: 768px) {
  .hero-default[data-type="2"] .button {
    width: auto !important;
  }
}
.hero-default[data-type="2"][data-align=left] .wrapper {
  -ms-flex-align: start;
      align-items: flex-start;
  text-align: left;
}
.hero-default[data-type="2"][data-align=center] .wrapper {
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
}
.hero-default[data-type="2"][data-align=right] .wrapper {
  -ms-flex-align: end;
      align-items: flex-end;
  text-align: right;
}
.hero-default[data-type="3"] {
  background: none;
  padding: 0;
}
.hero-default[data-type="3"]:before {
  display: none;
}
.hero-default[data-type="3"] .hero-slider:hover .flickity-prev-next-button.previous {
  left: 0;
}
.hero-default[data-type="3"] .hero-slider:hover .flickity-prev-next-button.next {
  right: 0;
}
.hero-default[data-type="3"] .hero-slider .carousel-cell {
  width: 100%;
  display: block;
  padding-top: 96px;
  padding-bottom: 76px;
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 630px;
  height: 100%;
}
@media only screen and (min-width: 320px) and (max-width: 425px) {
  .hero-default[data-type="3"] .hero-slider .carousel-cell {
    padding-top: 32px;
  }
}
@media only screen and (min-width: 1024px) {
  .hero-default[data-type="3"] .hero-slider .carousel-cell {
    padding-top: 300px;
  }
}
.hero-default[data-type="3"] .hero-slider .carousel-cell:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--color-black-transp-50, rgba(0, 0, 0, 0.5));
}
.hero-default[data-type="3"] .hero-slider .slider-content {
  max-width: 80%;
  margin: 0 auto 16px;
  text-align: center;
  position: relative;
  z-index: 5;
}
@media only screen and (min-width: 1024px) {
  .hero-default[data-type="3"] .hero-slider .slider-content {
    max-width: 970px;
  }
}
.hero-default[data-type="3"] .hero-slider .slider-content .heading {
  color: var(--color-white-base, white);
}
.hero-default[data-type="3"] .hero-slider .slider-content .heading.link {
  color: var(--link-base, #3ebaf6);
}
.hero-default[data-type="3"] .hero-slider .slider-content .paragraph {
  color: var(--color-white-base, white);
}
.hero-default[data-type="3"] .hero-slider .flickity-button {
  background: transparent;
  transition: 0.2s ease-in-out;
}
.hero-default[data-type="3"] .hero-slider .flickity-button:hover {
  background: var(--highlight-base, #137df7);
}
.hero-default[data-type="3"] .hero-slider .flickity-prev-next-button {
  border-radius: 0;
  width: 39px;
  height: 49px;
  border: none;
  background: var(--color-white-base, white);
}
@media only screen and (min-width: 320px) and (max-width: 425px) {
  .hero-default[data-type="3"] .hero-slider .flickity-prev-next-button {
    display: none;
  }
}
.hero-default[data-type="3"] .hero-slider .flickity-prev-next-button.previous {
  left: -39px;
}
.hero-default[data-type="3"] .hero-slider .flickity-prev-next-button.next {
  right: -39px;
}
.hero-default[data-type="3"] .hero-slider .flickity-prev-next-button:hover .flickity-button-icon {
  fill: var(--color-white-base, white);
}
.hero-default[data-type="3"] .hero-slider .flickity-prev-next-button .flickity-button-icon {
  fill: var(--brand-base, #022e69);
}
.hero-default[data-type="3"] .hero-slider .flickity-page-dots {
  bottom: 32px;
}
.hero-default[data-type="3"] .hero-slider .flickity-page-dots .dot {
  width: 14px;
  height: 14px;
  opacity: 1;
  background: transparent;
  border: 1px solid var(--color-white-base, white);
  transition: 0.2s ease-in-out;
}
.hero-default[data-type="3"] .hero-slider .flickity-page-dots .dot:hover {
  background: var(--color-white-base, white);
  border-color: var(--color-white-base, white);
  opacity: 0.75;
}
.hero-default[data-type="3"] .hero-slider .flickity-page-dots .dot.is-selected {
  border-width: 4px;
}
.hero-default[data-type="4"] .wrapper, .hero-default[data-type="5"] .wrapper, .hero-default[data-type="6"] .wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
}
.hero-default[data-type="4"] .wrapper .heading, .hero-default[data-type="5"] .wrapper .heading, .hero-default[data-type="6"] .wrapper .heading {
  color: var(--color-white-base, white);
  margin-bottom: 16px;
  line-height: 1.25;
}
.hero-default[data-type="4"] .wrapper .paragraph, .hero-default[data-type="5"] .wrapper .paragraph, .hero-default[data-type="6"] .wrapper .paragraph {
  color: var(--color-white-base, white);
  line-height: 1.33;
}
.hero-default[data-type="4"] .wrapper .content-form .form-toggle, .hero-default[data-type="5"] .wrapper .content-form .form-toggle, .hero-default[data-type="6"] .wrapper .content-form .form-toggle {
  top: 0;
  right: 5px;
}
.hero-default[data-type="4"] .hero-header {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .hero-default[data-type="4"] .hero-header {
    min-width: auto;
  }
}
@media screen and (min-width: 992px) {
  .hero-default[data-type="4"] .hero-header {
    min-width: 70%;
    max-width: 100%;
  }
}
.hero-default[data-type="4"] .hero-header .heading-desktop {
  display: none;
}
@media screen and (min-width: 992px) {
  .hero-default[data-type="4"] .hero-header .heading-desktop {
    display: block;
  }
}
.hero-default[data-type="4"] .hero-header .heading-tablet {
  display: none;
}
@media screen and (min-width: 768px) {
  .hero-default[data-type="4"] .hero-header .heading-tablet {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .hero-default[data-type="4"] .hero-header .heading-tablet {
    display: none;
  }
}
.hero-default[data-type="4"] .hero-header .heading-mobile {
  display: block;
}
@media screen and (min-width: 768px) {
  .hero-default[data-type="4"] .hero-header .heading-mobile {
    display: none;
  }
}
.hero-default[data-type="4"] .content-form {
  margin-top: 48px;
  background: #ffffff;
  border-radius: var(--border-radius, 3px);
  padding: 8px;
}
@media screen and (min-width: 992px) {
  .hero-default[data-type="4"] .content-form .input-group:nth-child(2), .hero-default[data-type="4"] .content-form .input-group:nth-child(3) {
    border-left: 1px solid var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  }
}
.hero-default[data-type="4"] .content-form .input-group .input, .hero-default[data-type="4"] .content-form .input-group .input-group-icon {
  border: none;
}
.hero-default[data-type="5"] .paragraph {
  margin-top: 0;
}
.hero-default[data-type="5"] .content-form {
  margin-top: 48px;
}
.hero-default[data-type="5"] .content-form .input-group:nth-child(1) {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hero-default[data-type="5"] .content-form .input-group:nth-child(1) {
    width: auto;
  }
}
.hero-default[data-type="5"] .content-form .input-group:nth-child(2) {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hero-default[data-type="5"] .content-form .input-group:nth-child(2) {
    width: 315px;
  }
}
@media screen and (min-width: 1024px) {
  .hero-default[data-type="5"] .content-form .input-group:nth-child(2) {
    width: 270px;
  }
}
@media screen and (min-width: 1200px) {
  .hero-default[data-type="5"] .content-form .input-group:nth-child(2) {
    width: 385px;
  }
}
.hero-default[data-type="5"] .content-form .input-group:nth-child(3) {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hero-default[data-type="5"] .content-form .input-group:nth-child(3) {
    width: 218px;
  }
}
.hero-default[data-type="5"] .content-form .input-group-action {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hero-default[data-type="5"] .content-form .input-group-action {
    width: auto;
  }
}
.hero-default[data-type="5"] .content-form .input-group-action .button {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hero-default[data-type="5"] .content-form .input-group-action .button {
    width: auto;
  }
}
.hero-default[data-type="6"] .content-form {
  width: 100%;
  border-radius: var(--border-radius, 3px);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .hero-default[data-type="6"] .content-form {
    background: white;
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .hero-default[data-type="6"] .content-form {
    width: 900px;
  }
}
.hero-default[data-type="6"] .content-form .input-group {
  -ms-flex-positive: 1;
      flex-grow: 1;
}
@media only screen and (min-width: 320px) and (max-width: 425px) {
  .hero-default[data-type="6"] .content-form .input-group {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .hero-default[data-type="6"] .content-form .input-group .input-group-icon {
    border: none;
  }
}
@media only screen and (min-width: 768px) {
  .hero-default[data-type="6"] .content-form .input-group .input {
    border: none;
  }
}
.hero-default[data-type="6"] .content-form .input-group.has-select {
  display: none;
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .hero-default[data-type="6"] .content-form .input-group.has-select {
    display: block;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .hero-default[data-type="6"] .content-form .input-group.has-select .input {
    width: 100%;
  }
}
.hero-default[data-type="6"] .content-form .input-group-action {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hero-default[data-type="6"] .content-form .input-group-action {
    width: auto;
  }
}
.hero-default[data-type="6"] .content-form .input-group-action .button {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hero-default[data-type="6"] .content-form .input-group-action .button {
    width: auto;
  }
}
@media only screen and (min-width: 768px) {
  .hero-default[data-type="6"] .content-form .input-group-action {
    padding: 8px 8px 8px 0;
    margin-left: 0;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .hero-default[data-type="6"] .content-form .input-group-action .button {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 32px;
    padding-right: 32px;
    border-radius: var(--border-radius-button, 3px);
    font-size: 1em;
  }
}

[active-slider=false] .flickity-button,
[active-slider=false] .flickity-page-dots {
  display: none;
}

.header[data-type="1"][is-sticky=true] + .hero-wrapper [data-type="4"] {
  top: 264px;
}
@media screen and (min-width: 768px) {
  .header[data-type="1"][is-sticky=true] + .hero-wrapper [data-type="4"] {
    top: 52%;
  }
}
.header[data-type="1"][has-opacity=true] + .hero-wrapper [data-type="4"] {
  top: 214px;
}
@media screen and (min-width: 768px) {
  .header[data-type="1"][has-opacity=true] + .hero-wrapper [data-type="4"] {
    top: 42%;
  }
}
.header[data-type="1"][has-opacity=true] + .hero-wrapper [data-type="3"] .carousel-cell {
  min-height: 800px;
}
.header[data-type="2"][is-sticky=true] + .hero-wrapper [data-type="4"] {
  top: 214px;
}
@media screen and (min-width: 768px) {
  .header[data-type="2"][is-sticky=true] + .hero-wrapper [data-type="4"] {
    top: 49%;
  }
}
.header[data-type="2"][has-opacity=true] + .hero-wrapper [data-type="4"] {
  top: 204px;
}
@media screen and (min-width: 768px) {
  .header[data-type="2"][has-opacity=true] + .hero-wrapper [data-type="4"] {
    top: 40%;
  }
}
.header[data-type="2"][has-opacity=true] + .hero-wrapper [data-type="3"] .carousel-cell {
  min-height: 750px;
}
.header[data-type="3"][is-sticky=true] + .hero-wrapper [data-type="4"] {
  top: 214px;
}
@media screen and (min-width: 768px) {
  .header[data-type="3"][is-sticky=true] + .hero-wrapper [data-type="4"] {
    top: 49%;
  }
}
.header[data-type="3"][has-opacity=true] + .hero-wrapper [data-type="4"] {
  top: 264px;
}
@media screen and (min-width: 768px) {
  .header[data-type="3"][has-opacity=true] + .hero-wrapper [data-type="4"] {
    top: 47%;
  }
}
.header[data-type="3"][has-opacity=true] + .hero-wrapper [data-type="3"] .carousel-cell {
  min-height: 800px;
}
.header[data-type="4"][is-sticky=true] + .hero-wrapper [data-type="4"] {
  top: 214px;
}
@media screen and (min-width: 768px) {
  .header[data-type="4"][is-sticky=true] + .hero-wrapper [data-type="4"] {
    top: 49%;
  }
}
.header[data-type="4"][has-opacity=true] + .hero-wrapper [data-type="4"] {
  top: 264px;
}
@media screen and (min-width: 768px) {
  .header[data-type="4"][has-opacity=true] + .hero-wrapper [data-type="4"] {
    top: 47%;
  }
}
.header[data-type="4"][has-opacity=true] + .hero-wrapper [data-type="3"] .carousel-cell {
  min-height: 800px;
}

.hero-wrapper {
  position: relative;
}
.hero-wrapper [data-type="4"] {
  position: absolute;
  width: 90%;
  top: 72px;
  left: 50%;
  background: none;
  z-index: 5;
  padding: 0;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  transition: 0.2s;
}
@media screen and (min-width: 768px) {
  .hero-wrapper [data-type="4"] {
    top: 34%;
    -ms-transform: translate(-50%, -48%);
        transform: translate(-50%, -48%);
  }
}
@media screen and (min-width: 992px) {
  .hero-wrapper [data-type="4"] {
    top: 39%;
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
  }
}
.hero-wrapper [data-type="4"]:before {
  display: none;
}
.hero-wrapper [data-type="3"] .hero-slider {
  overflow: hidden;
}
.hero-wrapper [data-type="3"] .hero-slider .slider-content {
  text-align: left;
  max-width: 360px;
  position: absolute;
  left: 24px;
  bottom: 70px;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .hero-wrapper [data-type="3"] .hero-slider .slider-content {
    left: 70px;
  }
}
.hero-wrapper [data-type="3"] .hero-slider .slider-content .paragraph {
  font-weight: 300;
  line-height: 1.15;
  margin-top: 8px;
  display: none;
}
@media screen and (min-width: 768px) {
  .hero-wrapper [data-type="3"] .hero-slider .slider-content .paragraph {
    display: block;
  }
}
.hero-wrapper [data-type="3"] .hero-slider .carousel-cell {
  min-height: 630px;
  height: 100%;
}
.hero-wrapper [data-type="3"] .hero-slider .carousel-cell.empty-hero {
  background-color: var(--brand-base, #022e69);
}

.hero-leadgen {
  position: relative;
}
.hero-leadgen .leadgen-content {
  position: absolute;
  z-index: 5;
  width: 300px;
  top: 50%;
  right: 50%;
  -ms-transform: translateY(-50%) translateX(50%);
      transform: translateY(-50%) translateX(50%);
}
@media screen and (min-width: 992px) {
  .hero-leadgen .leadgen-content {
    right: 90px;
    -ms-transform: translateY(-50%) translateX(0);
        transform: translateY(-50%) translateX(0);
  }
}
@media screen and (min-width: 1200px) {
  .hero-leadgen .leadgen-content {
    right: 120px;
  }
}
.hero-leadgen .leadgen-content .leadgen-header .heading, .hero-leadgen .leadgen-content .leadgen-header .paragraph {
  color: var(--color-white-base, white);
}
.hero-leadgen .leadgen-content .form-captcha img {
  background: white;
}
.hero-leadgen .leadgen-content .leadgen-form {
  margin-top: 8px;
}
.hero-leadgen .leadgen-content .leadgen-form .form-group {
  width: 100%;
}
.hero-leadgen .leadgen-content .leadgen-form .form-group:not(:first-child) {
  margin-top: 8px;
}
.hero-leadgen .leadgen-content .leadgen-form .form-group .input {
  width: 100%;
}
.hero-leadgen .leadgen-content .leadgen-form .form-group .input + .alert {
  margin-bottom: 0;
}
.hero-leadgen .leadgen-content .leadgen-form .form-group .input + .alert:not(.hide) {
  margin-top: 8px;
}
.hero-leadgen .leadgen-content .leadgen-form textarea {
  padding: 12px 16px;
}
.hero-leadgen .leadgen-content .leadgen-form .button {
  width: 100%;
  margin-top: 8px;
}
.hero-leadgen .leadgen-content .leadgen-form > label {
  margin-top: 16px;
  color: var(--color-white-base, white);
  margin-bottom: 0;
}
.hero-leadgen .leadgen-content .leadgen-form > label + [data-type=radio], .hero-leadgen .leadgen-content .leadgen-form > label + [data-type=checkbox] {
  margin-top: 4px;
}
.hero-leadgen .leadgen-content .leadgen-form [data-type=radio],
.hero-leadgen .leadgen-content .leadgen-form [data-type=checkbox] {
  color: var(--color-white-base, white);
}
.hero-leadgen .leadgen-content .leadgen-form [data-type=radio] .radio,
.hero-leadgen .leadgen-content .leadgen-form [data-type=radio] .checkbox,
.hero-leadgen .leadgen-content .leadgen-form [data-type=checkbox] .radio,
.hero-leadgen .leadgen-content .leadgen-form [data-type=checkbox] .checkbox {
  display: block;
}
.hero-leadgen .leadgen-content .leadgen-form [data-type=radio] .radio input,
.hero-leadgen .leadgen-content .leadgen-form [data-type=radio] .checkbox input,
.hero-leadgen .leadgen-content .leadgen-form [data-type=checkbox] .radio input,
.hero-leadgen .leadgen-content .leadgen-form [data-type=checkbox] .checkbox input {
  margin-right: 4px;
}
.hero-leadgen .leadgen-content .leadgen-form .consents-block label {
  display: block;
  font-size: 0.6875em;
  color: var(--color-white-base, white);
}
.hero-leadgen .leadgen-content .leadgen-form .consents-block label input {
  margin-right: 4px;
}
.hero-leadgen .leadgen-content .leadgen-form .select2 {
  margin-top: 8px;
}
.hero-leadgen .leadgen-content .leadgen-form .select2-selection {
  height: 50px;
  outline: none;
}
.hero-leadgen .leadgen-content .leadgen-form .select2-selection .select2-selection__rendered,
.hero-leadgen .leadgen-content .leadgen-form .select2-selection .select2-selection__arrow {
  height: 50px;
}
.hero-leadgen .leadgen-content .leadgen-form .select2-selection .select2-selection__rendered {
  line-height: 50px;
}
.hero-leadgen [data-type="3"] .hero-slider {
  overflow: hidden;
}
.hero-leadgen [data-type="3"] .hero-slider .slider-content {
  text-align: left;
  max-width: 460px;
  display: none;
}
@media screen and (min-width: 992px) {
  .hero-leadgen [data-type="3"] .hero-slider .slider-content {
    display: block;
    margin: 0 0 0 90px;
  }
}
@media screen and (min-width: 1200px) {
  .hero-leadgen [data-type="3"] .hero-slider .slider-content {
    margin: 0 0 0 120px;
  }
}
.hero-leadgen [data-type="3"] .hero-slider .slider-content .paragraph {
  margin-top: 16px;
}
.hero-leadgen [data-type="3"] .hero-slider .flickity-page-dots {
  bottom: 16px;
}
@media screen and (min-width: 992px) {
  .hero-leadgen [data-type="3"] .hero-slider .carousel-cell {
    min-height: 100vh;
  }
}
@media screen and (min-width: 992px) {
  .hero-leadgen[data-align=left] .leadgen-content {
    right: auto;
    left: 120px;
  }
  .hero-leadgen[data-align=left] [data-type="3"] .hero-slider .carousel-cell {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
        justify-content: flex-end;
  }
  .hero-leadgen[data-align=left] [data-type="3"] .hero-slider .carousel-cell .slider-content {
    text-align: right;
    margin: 0 120px 0 0;
  }
  .hero-leadgen[data-align=left] [data-type="3"] .hero-slider .carousel-cell.empty-hero {
    background-color: var(--brand-base, #022e69);
  }
  .hero-leadgen[data-align=right] .leadgen-content {
    left: auto;
    right: 120px;
  }
  .hero-leadgen[data-align=right] [data-type="3"] .hero-slider .carousel-cell {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
        justify-content: flex-start;
  }
  .hero-leadgen[data-align=right] [data-type="3"] .hero-slider .carousel-cell .slider-content {
    text-align: left;
    margin: 0 0 0 120px;
  }
  .hero-leadgen[data-align=right] [data-type="3"] .hero-slider .carousel-cell.empty-hero {
    background-color: var(--brand-base, #022e69);
  }
}

.footer > .footer-content {
  padding-top: 24px;
  padding-bottom: 24px;
}
@media only screen and (min-width: 992px) {
  .footer > .footer-content {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.footer > .footer-content {
  background: var(--brand-base, #022e69);
}
.footer > .footer-content .wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: center;
      justify-content: center;
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .footer > .footer-content .wrapper {
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}
.footer > .footer-content .footer-wrapper {
  position: relative;
  padding-bottom: 24px;
  width: 100%;
  max-width: 300px;
}
@media screen and (min-width: 768px) {
  .footer > .footer-content .footer-wrapper {
    padding-bottom: 0;
    width: auto;
  }
}
.footer > .footer-content .footer-wrapper:before, .footer > .footer-content .footer-wrapper:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 1px;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .footer > .footer-content .footer-wrapper:before, .footer > .footer-content .footer-wrapper:after {
    display: none;
  }
}
.footer > .footer-content .footer-wrapper:before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
.footer > .footer-content .footer-wrapper:after {
  right: 0;
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}
.footer > .footer-content .footer-wrapper .footer-logo img {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer > .footer-content .footer-wrapper .footer-logo img {
    margin: 0;
  }
}
.footer > .footer-content .footer-item .footer-item-title {
  color: var(--color-white-base, white);
  font-size: 1.125em;
  font-weight: 600;
}
.footer > .footer-content .footer-item .footer-item-content {
  margin-top: 24px;
}
.footer > .footer-content .footer-item:not([data-content=site-content]) .footer-item-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  -ms-flex-align: start;
      align-items: flex-start;
}
.footer > .footer-content .footer-item[data-content=site-content] {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer > .footer-content .footer-item[data-content=site-content] {
    max-width: 340px;
    width: auto;
  }
}
.footer > .footer-content .footer-item[data-content=site-content] .footer-item-content {
  column-count: 2;
}
.footer > .footer-content .footer-item[data-content=site-content] .link-footer:hover {
  color: var(--highlight-base, #137df7);
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .footer > .footer-content .footer-item[data-content=contact-content] {
    word-break: break-word;
  }
}
.footer > .footer-content .footer-item[data-content=social-content] .footer-item-content {
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
}
.footer > .footer-content .footer-item[data-content=social-content] .footer-item-content .link-footer {
  margin-top: 0;
}
.footer > .footer-content .footer-item[data-content=social-content] .footer-item-content .link-footer span {
  display: none;
}
@media screen and (min-width: 768px) {
  .footer > .footer-content .footer-item[data-content=social-content] .footer-item-content .link-footer span {
    display: inline-block;
  }
}
.footer > .footer-content .footer-item[data-content=apps-content] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-positive: 1;
      flex-grow: 1;
  margin-top: 24px;
}
@media screen and (min-width: 992px) {
  .footer > .footer-content .footer-item[data-content=apps-content] {
    max-width: 230px;
    -ms-flex-flow: column wrap;
        flex-flow: column wrap;
    margin-top: 0;
  }
}
.footer > .footer-content .footer-item[data-content=apps-content] .link-store {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 100%;
  background: black;
  border: 1px solid white;
  border-radius: var(--border-radius-button, 3px);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  max-width: 230px;
}
@media screen and (min-width: 992px) {
  .footer > .footer-content .footer-item[data-content=apps-content] .link-store {
    -ms-flex-pack: start;
        justify-content: flex-start;
    max-width: 100%;
  }
}
.footer > .footer-content .footer-item[data-content=apps-content] .link-store:not(:first-child) {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .footer > .footer-content .footer-item[data-content=apps-content] .link-store:not(:first-child) {
    margin-left: 16px;
    margin-top: 0;
  }
}
@media screen and (min-width: 992px) {
  .footer > .footer-content .footer-item[data-content=apps-content] .link-store:not(:first-child) {
    margin-top: 16px;
    margin-left: 0;
  }
}
.footer > .footer-content .footer-item[data-content=apps-content] .link-store .app-icon {
  font-size: 24px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .footer > .footer-content .footer-item[data-content=apps-content] .link-store .app-icon {
    font-size: 42px;
  }
}
.footer > .footer-content .footer-item[data-content=apps-content] .link-store .app-info {
  max-width: calc(100% - 16px);
  margin-left: 16px;
}
.footer > .footer-content .footer-item[data-content=apps-content] .link-store .app-info span {
  font-size: 13px;
  display: block;
  line-height: 1;
}
.footer > .footer-content .footer-item[data-content=newsletter-content] {
  max-width: 430px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .footer > .footer-content .footer-item[data-content=newsletter-content] {
    margin-left: 42px;
    margin-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .footer > .footer-content .footer-item[data-content=newsletter-content] * {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.footer > .footer-content .footer-item[data-content=newsletter-content] .footer-item-content .footer-item-subtitle {
  color: var(--color-white-base, white);
  margin-bottom: 8px;
}
.footer > .footer-content .footer-item[data-content=newsletter-content] .footer-item-content .form-newsletter .form-newsletter-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .footer > .footer-content .footer-item[data-content=newsletter-content] .footer-item-content .form-newsletter .form-newsletter-wrapper {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.footer > .footer-content .footer-item[data-content=newsletter-content] .footer-item-content .form-newsletter .input {
  height: 32px;
  min-height: auto;
  width: 100%;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .footer > .footer-content .footer-item[data-content=newsletter-content] .footer-item-content .form-newsletter .input {
    max-width: 145px;
    width: auto;
    margin-top: 0;
    height: 50px;
    margin-right: 8px;
  }
}
.footer > .footer-content .footer-item[data-content=newsletter-content] .footer-item-content .form-newsletter .input:first-child {
  margin-left: 0;
  margin-top: 0;
}
.footer > .footer-content .footer-item[data-content=newsletter-content] .footer-item-content .form-newsletter .button {
  display: block;
  width: 100%;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .footer > .footer-content .footer-item[data-content=newsletter-content] .footer-item-content .form-newsletter .button {
    display: inline-block;
    width: auto;
    margin-top: 0;
    height: 50px;
  }
}
.footer > .footer-content .footer-item[data-content=newsletter-content] .footer-item-content .privacy-text-footer {
  color: var(--color-white-base, white);
  margin-top: 8px;
}
.footer > .footer-content .footer-item[data-content=newsletter-content] .footer-item-content .privacy-text-footer .link {
  color: var(--color-white-base, white);
  font-size: inherit;
}
.footer > .footer-content .footer-item[data-content=newsletter-content] .footer-item-content .privacy-text-footer .link:hover {
  border-color: var(--color-white-base, white);
}
.footer > .footer-content .footer-item[data-content=newsletter-content] .form-privacy {
  margin-top: 8px;
  color: var(--color-white-base, white);
  font-size: 0.6875em;
}
.footer > .footer-content .footer-item[data-content=newsletter-content] .consents-block {
  margin-top: 8px;
}
.footer > .footer-content .footer-item[data-content=newsletter-content] .consents-block label {
  display: block;
  font-size: 0.6875em;
  color: var(--color-white-base, white);
}
.footer > .footer-content .footer-item .footer-item-content .link-footer {
  color: var(--color-white-base, white);
  margin-top: 8px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}
.footer > .footer-content .footer-item .footer-item-content .link-footer .icon {
  margin-right: 16px;
  min-width: 24px;
}
.footer > .footer-content .footer-item .footer-item-content .link-footer .fa {
  font-size: 18px;
  color: var(--color-white-base, white);
}
.footer > .footer-content .footer-item .footer-item-content .link-footer svg {
  fill: var(--color-white-base, white);
  max-width: 16px;
}
.footer > .footer-content .footer-item .footer-item-content .link-footer:first-child {
  margin-top: 0;
}
.footer > .footer-content .footer-item .footer-item-content .link-footer:hover {
  border-color: var(--color-white-base, white);
}
.footer > .footer-content .footer-item .footer-item-content .footer-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  color: var(--color-white-base, white);
  margin-top: 16px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .footer > .footer-content .footer-item .footer-item-content .footer-info {
    width: 100%;
  }
}
.footer > .footer-content .footer-item .footer-item-content .footer-info:first-child {
  margin-top: 0;
}
.footer > .footer-content .footer-item .footer-item-content .footer-info .icon {
  margin-right: 8px;
}
.footer > .footer-content .footer-item .footer-item-content .footer-info .fa {
  color: var(--color-white-base, white);
  font-size: 18px;
}
.footer > .footer-content .footer-item .footer-item-content .footer-info a {
  color: var(--color-white-base, white);
  text-decoration: none;
}
.footer > .footer-content .footer-item.footer-institutional {
  margin-top: 0;
}
.footer > .footer-content .footer-actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  margin-top: 24px;
  -ms-flex-pack: start;
      justify-content: flex-start;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer > .footer-content .footer-actions {
    -ms-flex-pack: center;
        justify-content: center;
    width: auto;
  }
}
@media screen and (min-width: 992px) {
  .footer > .footer-content .footer-actions {
    margin-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .footer > .footer-content .footer-actions {
    -ms-flex-positive: 1;
        flex-grow: 1;
  }
}
.footer > .footer-content .footer-contact {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: center;
      justify-content: center;
  text-align: center;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .footer > .footer-content .footer-contact {
    padding: 0;
  }
}
.footer > .footer-content .footer-contact .contact-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-align: center;
      align-items: center;
  color: var(--color-white-base, white);
  margin-left: 16px;
}
.footer > .footer-content .footer-contact .contact-item:first-child {
  margin-left: 0;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .footer > .footer-content .footer-contact .contact-item {
    margin-top: 0;
  }
}
.footer > .footer-content .footer-contact .contact-item .icon {
  font-size: 18px;
  color: var(--color-white-base, white);
  margin-right: 8px;
  display: none;
}
@media screen and (min-width: 768px) {
  .footer > .footer-content .footer-contact .contact-item .icon {
    display: -ms-flexbox;
    display: flex;
  }
}
.footer > .footer-content .footer-social {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 24px;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .footer > .footer-content .footer-social {
    -ms-flex-pack: start;
        justify-content: flex-start;
  }
}
.footer > .footer-content .footer-social .social-link {
  width: 36px;
  height: 36px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  color: var(--color-white-base, white);
  border: 1px solid;
  border-radius: 9999px;
  text-decoration: none;
}
.footer > .footer-content .footer-social .social-link svg {
  max-width: 16px;
  fill: #fff;
}
.footer > .footer-bar {
  background: var(--brand-dark, rgb(1.4, 32.2, 73.5));
  padding: 16px 0;
}
.footer > .footer-bar .wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
@media screen and (min-width: 768px) {
  .footer > .footer-bar .wrapper {
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}
.footer > .footer-bar .wrapper .footer-copyright {
  color: var(--color-white-base, white);
  font-weight: 300;
}
.footer > .footer-bar .wrapper .footer-powered {
  color: var(--color-white-transp-50, rgba(255, 255, 255, 0.5));
  font-weight: 300;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  line-height: 1;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .footer > .footer-bar .wrapper .footer-powered {
    margin-top: 0;
  }
}
.footer > .footer-bar .wrapper .footer-powered .edirectory-link {
  color: var(--color-white-base, white);
  text-decoration: none;
  margin-left: 8px;
  display: block;
}
.footer > .footer-bar .wrapper .footer-powered .edirectory-link:hover {
  border-color: var(--color-white-base, white);
}
.footer[data-type="1"] > .footer-content .footer-item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer[data-type="1"] > .footer-content .footer-item {
    width: auto;
  }
}
.footer[data-type="1"] > .footer-content .footer-item[data-content=contact-content], .footer[data-type="1"] > .footer-content .footer-item[data-content=social-content] {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .footer[data-type="1"] > .footer-content .footer-item[data-content=contact-content], .footer[data-type="1"] > .footer-content .footer-item[data-content=social-content] {
    margin-top: 0;
  }
}
.footer[data-type="1"] > .footer-content .footer-item[data-content=apps-content] {
  margin-top: 24px;
}
@media screen and (min-width: 992px) {
  .footer[data-type="1"] > .footer-content .footer-item[data-content=apps-content] {
    margin-top: 0;
  }
}
.footer[data-type="2"] > .footer-content .footer-wrapper .footer-logo {
  width: 180px;
  height: 90px;
  overflow: hidden;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .footer[data-type="2"] > .footer-content .footer-wrapper .footer-logo {
    margin: initial;
  }
}
.footer[data-type="2"] > .footer-content .footer-wrapper .footer-logo .logo-link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  max-width: 100%;
  max-height: 100%;
}
.footer[data-type="2"] > .footer-content .footer-wrapper .footer-logo .logo-link img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left;
}
.footer[data-type="2"] > .footer-content .footer-item:not(:first-child) {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .footer[data-type="2"] > .footer-content .footer-item:not(:first-child) {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .footer[data-type="2"] > .footer-content .wrapper .footer-actions [data-content=contact-content] {
    margin-left: 48px;
  }
}
@media screen and (min-width: 768px) {
  .footer[data-type="3"] > .footer-content .footer-social {
    -ms-flex-pack: center;
        justify-content: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .footer[data-type="4"] > .footer-content .footer-wrapper {
    width: 100%;
  }
  .footer[data-type="4"] > .footer-content .footer-wrapper .footer-logo img {
    margin: 0 auto;
  }
  .footer[data-type="4"] > .footer-content .footer-wrapper .footer-social {
    -ms-flex-pack: center;
        justify-content: center;
  }
}
.footer[data-type="4"] > .footer-content .footer-actions {
  margin-top: 24px;
}
@media screen and (min-width: 1200px) {
  .footer[data-type="4"] > .footer-content .footer-actions {
    margin-top: 0;
  }
}
@media screen and (max-width: 991px) {
  .footer[data-type="4"] > .footer-content .footer-actions {
    width: 100%;
  }
  .footer[data-type="4"] > .footer-content .footer-actions .footer-item {
    width: 100%;
    text-align: center;
  }
  .footer[data-type="4"] > .footer-content .footer-actions .footer-item .footer-item-content {
    -ms-flex-align: center;
        align-items: center;
  }
  .footer[data-type="4"] > .footer-content .footer-actions #formNewsletter {
    margin-top: 24px;
    margin-left: 0;
    text-align: center;
  }
  .footer[data-type="4"] > .footer-content .footer-actions #formNewsletter .footer-item-content {
    display: none;
  }
  .footer[data-type="4"] > .footer-content .footer-actions #formNewsletter .footer-newsletter-toggler {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
    font-weight: 300;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 24px;
    padding-right: 24px;
    border-radius: var(--border-radius-button, 3px);
    font-size: 0.875em;
  }
}
.footer[data-type="4"] > .footer-content .footer-bar {
  border-top: 1px solid var(--color-white-transp-50, rgba(255, 255, 255, 0.5));
  margin-top: 32px;
  padding-top: 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
@media screen and (min-width: 768px) {
  .footer[data-type="4"] > .footer-content .footer-bar {
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}
.footer[data-type="4"] > .footer-content .footer-bar .container {
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .footer[data-type="4"] > .footer-content .footer-bar .container {
    padding: 0;
  }
}
.footer[data-type="4"] > .footer-content .footer-bar .footer-copyright {
  color: var(--color-white-base, white);
}
.footer[data-type="4"] > .footer-content .footer-bar .footer-powered {
  color: var(--color-white-transp-50, rgba(255, 255, 255, 0.5));
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .footer[data-type="4"] > .footer-content .footer-bar .footer-powered {
    margin-top: 0;
  }
}
.footer[data-type="4"] > .footer-content .footer-bar .footer-powered .edirectory-link {
  color: var(--color-white-transp-50, rgba(255, 255, 255, 0.5));
  text-decoration: none;
  margin-left: 8px;
}
.footer[data-type="4"] > .footer-content .footer-bar .footer-powered .edirectory-link:hover {
  border-color: var(--color-white-transp-50, rgba(255, 255, 255, 0.5));
}
.footer[is-inverse=true] > .footer-content {
  background: var(--color-white-base, white);
}
.footer[is-inverse=true] > .footer-content .footer-item[data-content=newsletter-content] .form-privacy {
  color: var(--neutral-base, #3e455e);
}
.footer[is-inverse=true] > .footer-content .footer-bar {
  border-top-color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}
.footer[is-inverse=true] > .footer-content .footer-bar .footer-copyright {
  color: var(--neutral-base, #3e455e);
}
.footer[is-inverse=true] > .footer-content .footer-bar .footer-powered {
  color: var(--neutral-base, #3e455e);
}
.footer[is-inverse=true] > .footer-content .footer-bar .footer-powered .edirectory-link {
  color: var(--neutral-base, #3e455e);
}
@media screen and (max-width: 991px) {
  .footer[is-inverse=true] > .footer-content .footer-actions #formNewsletter .footer-newsletter-toggler {
    border: 1px solid var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  }
}
.footer[is-inverse=true] .footer-item .footer-item-title {
  color: var(--neutral-base, #3e455e);
}
.footer[is-inverse=true] .footer-item .footer-item-content .link-footer {
  color: var(--neutral-base, #3e455e);
}
.footer[is-inverse=true] .footer-item .footer-item-content .link-footer .fa {
  color: var(--neutral-base, #3e455e);
}
.footer[is-inverse=true] .footer-item .footer-item-content .link-footer svg {
  fill: var(--neutral-base, #3e455e);
}
.footer[is-inverse=true] .footer-item .footer-item-content .footer-info {
  color: var(--neutral-base, #3e455e);
}
.footer[is-inverse=true] .footer-item .footer-item-content .footer-info .fa {
  color: var(--neutral-base, #3e455e);
}
.footer[is-inverse=true] .footer-item .footer-item-content .footer-info a {
  color: var(--neutral-base, #3e455e);
}
.footer[is-inverse=true] .footer-contact .contact-item {
  color: var(--neutral-base, #3e455e);
}
.footer[is-inverse=true] .footer-contact .contact-item .icon {
  color: var(--neutral-base, #3e455e);
}
.footer[is-inverse=true] .footer-contact .contact-item a {
  color: var(--neutral-base, #3e455e);
}
.footer[is-inverse=true] .footer-social .social-link {
  color: var(--neutral-base, #3e455e);
}
.footer[is-inverse=true] .footer-social .social-link svg {
  fill: var(--neutral-base, #3e455e);
}
.footer[is-inverse=true] .footer-actions [data-content=newsletter-content] .footer-item-content .footer-item-subtitle {
  color: var(--neutral-base, #3e455e);
}
.footer[is-inverse=true] .footer-actions [data-content=newsletter-content] .footer-item-content .privacy-text-footer {
  color: var(--neutral-base, #3e455e);
}
.footer[is-inverse=true] .footer-actions [data-content=newsletter-content] .footer-item-content .privacy-text-footer .link {
  color: var(--neutral-base, #3e455e);
}
.footer[is-inverse=true] > .footer-bar {
  background: var(--neutral-transp-10, rgba(62, 69, 94, 0.1));
}
.footer[is-inverse=true] > .footer-bar .wrapper .footer-copyright {
  color: var(--neutral-base, #3e455e);
}
.footer[is-inverse=true] > .footer-bar .wrapper .footer-powered {
  color: var(--neutral-base, #3e455e);
}
.footer[is-inverse=true] > .footer-bar .wrapper .footer-powered .edirectory-link {
  color: var(--neutral-base, #3e455e);
}

.cards-default[data-type=business][data-bg=brand] .cards-list .card:not(.no-image) .content .title {
  color: var(--color-white-base, white);
}
.cards-default[data-type=business][data-bg=brand] .cards-list .card:not(.no-image) .content .categories {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.cards-default[data-type=business][data-bg=brand] .cards-list .card:not(.no-image) .content .categories .share {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.cards-default[data-type=business][data-bg=brand] .cards-list .card:not(.no-image) .content .description .paragraph {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.cards-default[data-type=business][data-bg=brand] .cards-list .card:not(.no-image) .content .price-off {
  color: var(--color-white-transp-50, rgba(255, 255, 255, 0.5));
}
.cards-default[data-type=business][data-bg=brand] .cards-list .card:not(.no-image) .content .price {
  color: var(--color-white-base, white);
}
.cards-default[data-type=business][data-bg=brand] .cards-list .card:not(.no-image) .content .reviews .reviews-stars .fa-star-o {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.cards-default[data-type=business][data-bg=brand] .cards-list .card:not(.no-image) .content .reviews .reviews-count {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.cards-default[data-type=business][data-bg=brand] .cards-list .card.no-image {
  background: var(--color-white-base, white);
}
.cards-default[data-type=business][data-bg=brand] .cards-list .card.no-image:hover {
  background: var(--color-white-dark-10, rgb(229.5, 229.5, 229.5));
}
.cards-default[data-type=business][data-bg=brand] .cards-list .card.no-image .content .title {
  color: var(--neutral-base, #3e455e);
}
.cards-default[data-type=business][data-bg=brand] .cards-list .card.no-image .content .categories {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
.cards-default[data-type=business][data-bg=brand] .cards-list .card.no-image .content .categories .share {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
.cards-default[data-type=business][data-bg=brand] .cards-list .card.no-image .content .description .paragraph {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
.cards-default[data-type=business][data-bg=brand] .cards-list .card.no-image .content .reviews .reviews-stars .fa-star-o {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
.cards-default[data-type=business][data-bg=brand] .cards-list .card.no-image .content .reviews .reviews-count {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
@media screen and (max-width: 425px) {
  .cards-default[data-type=business][scrollable=""][mobile-columns=true] .cards-list .card:not(.no-image) .content, .cards-default[data-type=business][scrollable=false][mobile-columns=true] .cards-list .card:not(.no-image) .content {
    margin-top: 16px;
  }
  .cards-default[data-type=business][scrollable=""][mobile-columns=true] .cards-list .card:not(.no-image) .content .title, .cards-default[data-type=business][scrollable=false][mobile-columns=true] .cards-list .card:not(.no-image) .content .title {
    font-size: var(--font-size-16, 1em);
  }
  .cards-default[data-type=business][scrollable=""][mobile-columns=true] .cards-list .card:not(.no-image) .content .description, .cards-default[data-type=business][scrollable=false][mobile-columns=true] .cards-list .card:not(.no-image) .content .description {
    display: none;
  }
  .cards-default[data-type=business][scrollable=""][mobile-columns=true] .cards-list .card:not(.no-image) .content .reviews, .cards-default[data-type=business][scrollable=false][mobile-columns=true] .cards-list .card:not(.no-image) .content .reviews {
    margin-top: 8px;
  }
  .cards-default[data-type=business][scrollable=""][mobile-columns=true] .cards-list .card:not(.no-image) .content .reviews .reviews-count, .cards-default[data-type=business][scrollable=false][mobile-columns=true] .cards-list .card:not(.no-image) .content .reviews .reviews-count {
    display: none;
  }
}

[data-type=events] .cards-list .card.no-image .content, [data-type=events] .cards-list .card.has-bg .content {
  -ms-flex-align: end;
      align-items: flex-end;
}
[data-type=events] .cards-list .card.no-image .calendar-sm, [data-type=events] .cards-list .card.has-bg .calendar-sm {
  border: none;
}
[data-type=events] .cards-list .card .content {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
[data-type=events] .cards-upcoming-events .calendar-sm {
  position: absolute;
  top: 16px;
}
[data-type=events] .calendar-mobile {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
  padding: 16px 0;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 100%;
  scrollbar-width: none;
}
[data-type=events] .calendar-mobile::-webkit-scrollbar {
  width: 0 !important;
}
@media screen and (min-width: 768px) {
  [data-type=events] .calendar-mobile {
    display: none;
  }
}
[data-type=events] .calendar-mobile .calendar-sm:not(:last-child) {
  margin-right: 16px;
}
@media screen and (min-width: 425px) {
  [data-type=events] .calendar-mobile .calendar-sm:not(:last-child) {
    margin-right: 12px;
  }
}
[data-type=events] .calendar-mobile .calendar-sm:not(:first-child) {
  margin-left: 0;
}
[data-type=events] .calendar-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
[data-type=events] .calendar-wrapper .calendar-block {
  border: 1px solid var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  border-radius: var(--border-radius, 3px);
  background: white;
  padding: 16px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  [data-type=events] .calendar-wrapper .calendar-block {
    width: 350px;
  }
}
@media screen and (min-width: 992px) {
  [data-type=events] .calendar-wrapper .calendar-block {
    width: 470px;
    padding: 32px;
  }
}
@media screen and (min-width: 1200px) {
  [data-type=events] .calendar-wrapper .calendar-block {
    width: 570px;
    padding: 56px 56px 48px;
  }
}
[data-type=events] .calendar-wrapper .calendar-block .datepicker {
  width: 100%;
}
[data-type=events] .calendar-wrapper .calendar-block .datepicker table {
  display: block;
}
[data-type=events] .calendar-wrapper .calendar-block .datepicker table * {
  display: block;
}
[data-type=events] .calendar-wrapper .calendar-block .datepicker table tr td,
[data-type=events] .calendar-wrapper .calendar-block .datepicker table tr th {
  height: auto;
}
[data-type=events] .calendar-wrapper .calendar-block .datepicker thead tr:nth-child(2) {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
[data-type=events] .calendar-wrapper .calendar-block .datepicker thead tr:nth-child(2) th {
  cursor: pointer;
}
[data-type=events] .calendar-wrapper .calendar-block .datepicker thead tr:nth-child(2) th.datepicker-switch {
  font-weight: 500;
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  font-family: var(--heading-font, "Rubik");
  padding: 0;
}
[data-type=events] .calendar-wrapper .calendar-block .datepicker thead tr:nth-child(2) th.datepicker-switch:hover {
  background: none;
}
[data-type=events] .calendar-wrapper .calendar-block .datepicker thead tr:nth-child(2) th.prev, [data-type=events] .calendar-wrapper .calendar-block .datepicker thead tr:nth-child(2) th.next {
  text-indent: -9999px;
  padding: 0;
  line-height: 1;
}
[data-type=events] .calendar-wrapper .calendar-block .datepicker thead tr:nth-child(2) th.prev:before, [data-type=events] .calendar-wrapper .calendar-block .datepicker thead tr:nth-child(2) th.next:before {
  font-family: "fontAwesome";
  text-indent: 0;
  float: left;
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  font-size: 22px;
  width: 40px;
  text-align: center;
}
[data-type=events] .calendar-wrapper .calendar-block .datepicker thead tr:nth-child(2) th.prev:hover, [data-type=events] .calendar-wrapper .calendar-block .datepicker thead tr:nth-child(2) th.next:hover {
  background: none;
}
[data-type=events] .calendar-wrapper .calendar-block .datepicker thead tr:nth-child(2) th.prev:before {
  content: "\f104";
}
[data-type=events] .calendar-wrapper .calendar-block .datepicker thead tr:nth-child(2) th.next:before {
  content: "\f105";
}
[data-type=events] .calendar-wrapper .calendar-block .datepicker thead tr:nth-child(3) {
  margin-top: 48px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 0;
}
[data-type=events] .calendar-wrapper .calendar-block .datepicker thead tr:nth-child(3) th {
  padding: 0;
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
  font-weight: bold;
  font-size: var(--font-size-14, 0.875em);
  text-transform: uppercase;
  width: 35px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  [data-type=events] .calendar-wrapper .calendar-block .datepicker thead tr:nth-child(3) th {
    width: 40px;
  }
}
[data-type=events] .calendar-wrapper .calendar-block .datepicker tbody {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  margin-top: 16px;
}
[data-type=events] .calendar-wrapper .calendar-block .datepicker tbody tr {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 0;
}
[data-type=events] .calendar-wrapper .calendar-block .datepicker tbody tr .day {
  padding: 0;
  width: 35px;
  height: 35px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  margin-top: 8px;
  color: var(--neutral-base, #3e455e);
  border-radius: 9999px;
  border: 1px solid transparent;
  font-family: var(--paragraph-font, "Roboto");
  transition: 0.2s ease-in-out;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  [data-type=events] .calendar-wrapper .calendar-block .datepicker tbody tr .day {
    width: 40px;
    height: 40px;
  }
}
[data-type=events] .calendar-wrapper .calendar-block .datepicker tbody tr .day.old, [data-type=events] .calendar-wrapper .calendar-block .datepicker tbody tr .day.new, [data-type=events] .calendar-wrapper .calendar-block .datepicker tbody tr .day.disabled {
  color: var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  font-weight: normal;
}
[data-type=events] .calendar-wrapper .calendar-block .datepicker tbody tr .day.disabled {
  cursor: not-allowed;
}
[data-type=events] .calendar-wrapper .calendar-block .datepicker tbody tr .day.active {
  background: var(--highlight-base, #137df7);
  color: var(--color-white-base, white);
}
[data-type=events] .calendar-wrapper .calendar-block .datepicker tbody tr .day.active.today {
  color: var(--color-white-base, white);
}
[data-type=events] .calendar-wrapper .calendar-block .datepicker tbody tr .day.active.has-event {
  background: var(--highlight-base, #137df7);
  color: var(--color-white-base, white);
}
[data-type=events] .calendar-wrapper .calendar-block .datepicker tbody tr .day.active:hover {
  background: var(--highlight-base, #137df7);
  color: var(--color-white-base, white);
  border-color: transparent;
}
[data-type=events] .calendar-wrapper .calendar-block .datepicker tbody tr .day.today {
  color: var(--highlight-base, #137df7);
  font-weight: bold;
}
[data-type=events] .calendar-wrapper .calendar-block .datepicker tbody tr .day.has-event, [data-type=events] .calendar-wrapper .calendar-block .datepicker tbody tr .day.disabled {
  background: var(--neutral-transp-10, rgba(62, 69, 94, 0.1));
}
[data-type=events] .calendar-wrapper .calendar-block .datepicker tbody tr .day:hover:not(.disabled) {
  background: white;
  border-color: var(--highlight-base, #137df7);
  box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.15);
  color: var(--highlight-base, #137df7);
}
[data-type=events] .calendar-wrapper .calendar-block .datepicker tbody tr td:not(.day) {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  margin-left: -8px;
}
[data-type=events] .calendar-wrapper .calendar-block .datepicker tbody tr td:not(.day) .month, [data-type=events] .calendar-wrapper .calendar-block .datepicker tbody tr td:not(.day) .year {
  width: calc(25% - 16px);
  height: 45px;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  margin: 0;
  float: none;
  line-height: 1;
  margin-top: 16px;
  margin-left: 16px;
  color: var(--neutral-base, #3e455e);
  border: 1px solid transparent;
  font-family: var(--paragraph-font, "Roboto");
  font-size: var(--font-size-20, 1.25em);
  transition: 0.2s ease-in-out;
  cursor: pointer;
  border-radius: var(--border-radius-icon, 3px);
}
@media screen and (min-width: 768px) {
  [data-type=events] .calendar-wrapper .calendar-block .datepicker tbody tr td:not(.day) .month, [data-type=events] .calendar-wrapper .calendar-block .datepicker tbody tr td:not(.day) .year {
    height: 60px;
  }
}
@media screen and (min-width: 992px) {
  [data-type=events] .calendar-wrapper .calendar-block .datepicker tbody tr td:not(.day) .month, [data-type=events] .calendar-wrapper .calendar-block .datepicker tbody tr td:not(.day) .year {
    height: 95px;
    font-size: var(--font-size-28, 1.75em);
  }
}
[data-type=events] .calendar-wrapper .calendar-block .datepicker tbody tr td:not(.day) .month.focused, [data-type=events] .calendar-wrapper .calendar-block .datepicker tbody tr td:not(.day) .year.focused {
  background: var(--highlight-base, #137df7);
  color: var(--color-white-base, white);
}
[data-type=events] .calendar-wrapper .calendar-block .datepicker tbody tr td:not(.day) .month.focused:hover, [data-type=events] .calendar-wrapper .calendar-block .datepicker tbody tr td:not(.day) .year.focused:hover {
  background: var(--highlight-base, #137df7);
  color: var(--color-white-base, white);
  border-color: transparent;
}
[data-type=events] .calendar-wrapper .calendar-block .datepicker tbody tr td:not(.day) .month:hover, [data-type=events] .calendar-wrapper .calendar-block .datepicker tbody tr td:not(.day) .year:hover {
  background: white;
  border-color: var(--highlight-base, #137df7);
  box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.15);
  color: var(--highlight-base, #137df7);
}
[data-type=events] .calendar-wrapper .calendar-events {
  width: 100%;
  overflow: auto;
  position: relative;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  [data-type=events] .calendar-wrapper .calendar-events {
    width: 318px;
    max-height: 436px;
    margin-top: 0;
  }
}
@media screen and (min-width: 992px) {
  [data-type=events] .calendar-wrapper .calendar-events {
    width: 438px;
    max-height: 460px;
  }
}
@media screen and (min-width: 1200px) {
  [data-type=events] .calendar-wrapper .calendar-events {
    width: 538px;
    max-height: 548px;
  }
}
[data-type=events] .calendar-wrapper .calendar-events.is-loading {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  color: #676c80;
}
[data-type=events] .calendar-wrapper .calendar-events .events-item {
  border: 1px solid var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  border-radius: var(--border-radius, 3px);
  padding: 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
  background: white;
  margin-top: 16px;
}
[data-type=events] .calendar-wrapper .calendar-events .events-item:first-child {
  margin-top: 0;
}
[data-type=events] .calendar-wrapper .calendar-events .events-item .content-info {
  width: calc(100% - 64px);
}
[data-type=events] .calendar-wrapper .calendar-events .events-item .content-info .title {
  text-decoration: none;
}
[data-type=events] .calendar-wrapper .calendar-events .events-item .picture img {
  width: 110px;
  height: 71px;
  margin-right: 10px;
}
[data-type=events] .calendar-wrapper .calendar-events .button {
  text-align: center;
  display: block;
  margin-top: 16px;
}
[data-type=events]#upcoming-events {
  padding-bottom: 56px;
}
@media screen and (min-width: 768px) {
  [data-type=events]#upcoming-events {
    padding-bottom: 24px;
  }
}
[data-type=events][data-bg=brand] #loading {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
[data-type=events][data-bg=brand] .cards-upcoming .selected-date {
  background: var(--brand-base, #022e69);
}
[data-type=events][data-bg=brand] .cards-list .card .content .title {
  color: var(--color-white-base, white);
}
[data-type=events][data-bg=brand] .cards-list .card .content .categories {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
[data-type=events][data-bg=brand] .cards-list .card .content .calendar-sm {
  border: none;
}
[data-type=events][data-bg=brand] .cards-list .card .content .location {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
[data-type=events][data-bg=brand] .cards-list .card .content .recurring-event {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
[data-type=events][data-bg=brand] .cards-list .card .content .description .paragraph {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
[data-type=events][data-bg=brand] .cards-list .card.no-image {
  background: var(--color-white-base, white);
}
[data-type=events][data-bg=brand] .cards-list .card.no-image:hover {
  background: var(--color-white-dark-10, rgb(229.5, 229.5, 229.5));
}
[data-type=events][data-bg=brand] .cards-list .card.no-image .content .title {
  color: var(--neutral-base, #3e455e);
}
[data-type=events][data-bg=brand] .cards-list .card.no-image .content .categories {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
[data-type=events][data-bg=brand] .cards-list .card.no-image .content .calendar-sm {
  background: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}
[data-type=events][data-bg=brand] .cards-list .card.no-image .content .calendar-sm .day, [data-type=events][data-bg=brand] .cards-list .card.no-image .content .calendar-sm .day-abbr {
  color: var(--color-white-base, white);
}
[data-type=events][data-bg=brand] .cards-list.has-slider .flickity-page-dots .dot {
  border-color: var(--color-white-base, white);
}
[data-type=events][data-bg=brand] .cards-list.has-slider .flickity-page-dots .dot:hover {
  border-color: var(--color-white-base, white);
  background: var(--color-white-base, white);
}
[data-type=events][data-bg=neutral] .cards-upcoming .selected-date {
  background: white;
}
@media screen and (max-width: 425px) {
  [data-type=events][scrollable=""][mobile-columns=true]:not(.has-slider):not(.no-image) .cards-list .card, [data-type=events][scrollable=false][mobile-columns=true]:not(.has-slider):not(.no-image) .cards-list .card {
    position: relative;
  }
  [data-type=events][scrollable=""][mobile-columns=true]:not(.has-slider):not(.no-image) .cards-list .card .content, [data-type=events][scrollable=false][mobile-columns=true]:not(.has-slider):not(.no-image) .cards-list .card .content {
    margin-top: 16px;
  }
  [data-type=events][scrollable=""][mobile-columns=true]:not(.has-slider):not(.no-image) .cards-list .card .content .title, [data-type=events][scrollable=false][mobile-columns=true]:not(.has-slider):not(.no-image) .cards-list .card .content .title {
    font-size: var(--font-size-16, 1em);
  }
  [data-type=events][scrollable=""][mobile-columns=true]:not(.has-slider):not(.no-image) .cards-list .card .content .calendar-sm, [data-type=events][scrollable=false][mobile-columns=true]:not(.has-slider):not(.no-image) .cards-list .card .content .calendar-sm {
    position: absolute;
    top: 8px;
    left: 8px;
  }
  [data-type=events][scrollable=""][mobile-columns=true]:not(.has-slider):not(.no-image) .cards-list .card .content .calendar-sm + .content-info, [data-type=events][scrollable=false][mobile-columns=true]:not(.has-slider):not(.no-image) .cards-list .card .content .calendar-sm + .content-info {
    width: 100%;
  }
}

.cards-default[data-type=classifieds][data-bg=brand] .cards-list .card .content .title {
  color: var(--color-white-base, white);
}
.cards-default[data-type=classifieds][data-bg=brand] .cards-list .card .content .categories {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.cards-default[data-type=classifieds][data-bg=brand] .cards-list .card .content .categories .share {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.cards-default[data-type=classifieds][data-bg=brand] .cards-list .card .content .description .paragraph {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.cards-default[data-type=classifieds][data-bg=brand] .cards-list .card .content .price {
  color: var(--color-white-base, white);
}
@media screen and (max-width: 425px) {
  .cards-default[data-type=classifieds][scrollable=""][mobile-columns=true] .cards-list .card .content, .cards-default[data-type=classifieds][scrollable=false][mobile-columns=true] .cards-list .card .content {
    margin-top: 16px;
  }
  .cards-default[data-type=classifieds][scrollable=""][mobile-columns=true] .cards-list .card .content .title, .cards-default[data-type=classifieds][scrollable=false][mobile-columns=true] .cards-list .card .content .title {
    font-size: var(--font-size-16, 1em);
  }
  .cards-default[data-type=classifieds][scrollable=""][mobile-columns=true] .cards-list .card .content .price, .cards-default[data-type=classifieds][scrollable=false][mobile-columns=true] .cards-list .card .content .price {
    font-size: var(--font-size-20, 1.25em);
  }
}

.cards-default[data-type=articles] .share-icon {
  position: relative;
  cursor: pointer;
}
.cards-default[data-type=articles] .share-icon .share-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  background: var(--color-white-dark-5, rgb(242.25, 242.25, 242.25));
  padding: 8px;
  line-height: 1;
  border-radius: 3px;
  margin: 8px 0 0 0;
  display: none;
  min-height: auto;
}
.cards-default[data-type=articles] .share-icon .share-dropdown:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: -5px;
  left: 50%;
  -ms-transform: translateX(-50%) rotate(45deg);
      transform: translateX(-50%) rotate(45deg);
  background: var(--color-white-dark-5, rgb(242.25, 242.25, 242.25));
}
.cards-default[data-type=articles] .share-icon .share-dropdown .social-likes__widget {
  margin: 0;
  transition: 0.2s ease-in-out;
  width: 100%;
  text-align: center;
}
.cards-default[data-type=articles] .share-icon .share-dropdown .social-likes__widget:not(:first-child) {
  margin: 8px 0 0 0;
}
.cards-default[data-type=articles] .share-icon .social-likes__button {
  display: -ms-flexbox;
  display: flex;
  padding: 2px 4px;
}
.cards-default[data-type=articles] .share-icon .social-likes__button .social-likes__icon {
  margin-top: 0;
  position: static;
  display: block;
}
.cards-default[data-type=articles] .share-icon .social-likes__button .social-likes__icon_whatsapp {
  display: none;
}
.cards-default[data-type=articles] .share-icon .social-likes__widget_whatsapp {
  display: block;
}
@media screen and (min-width: 992px) {
  .cards-default[data-type=articles] .share-icon .social-likes__widget_whatsapp {
    display: none;
  }
}
.cards-default[data-type=articles] .share-icon .social-likes__button_whatsapp:before {
  content: "\f232";
  font-family: "fontAwesome";
  margin-right: 4px;
  color: #65BC54;
}
.cards-default[data-type=articles] .share-icon .social-likes__button_whatsapp:hover {
  background: #65BC54;
}
.cards-default[data-type=articles] .share-icon .social-likes__button_whatsapp:hover:before {
  color: white;
}
.cards-default[data-type=articles] .cards-list.no-margin {
  margin: 0;
}
.cards-default[data-type=articles] .cards-list.cards-betweens {
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media screen and (min-width: 992px) {
  .cards-default[data-type=articles] .cards-list.cards-betweens .card-horizontal-full {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .cards-default[data-type=articles] .cards-list.cards-betweens[data-align=""] .card-horizontal-full .content, .cards-default[data-type=articles] .cards-list.cards-betweens[data-align=left] .card-horizontal-full .content {
    -ms-flex-order: 2;
        order: 2;
  }
  .cards-default[data-type=articles] .cards-list.cards-betweens[data-align=""] .card-horizontal-full .picture, .cards-default[data-type=articles] .cards-list.cards-betweens[data-align=left] .card-horizontal-full .picture {
    -ms-flex-order: 1;
        order: 1;
  }
}
@media screen and (min-width: 992px) {
  .cards-default[data-type=articles] .cards-list.cards-betweens[data-align=right] .card-horizontal-full .content {
    -ms-flex-order: 1;
        order: 1;
  }
  .cards-default[data-type=articles] .cards-list.cards-betweens[data-align=right] .card-horizontal-full .picture {
    -ms-flex-order: 2;
        order: 2;
  }
}
@media screen and (min-width: 992px) {
  .cards-default[data-type=articles] .cards-list.cards-betweens[data-align=alternade] .card-horizontal-full:nth-child(odd) .content {
    -ms-flex-order: 2;
        order: 2;
  }
  .cards-default[data-type=articles] .cards-list.cards-betweens[data-align=alternade] .card-horizontal-full:nth-child(odd) .picture {
    -ms-flex-order: 1;
        order: 1;
  }
  .cards-default[data-type=articles] .cards-list.cards-betweens[data-align=alternade] .card-horizontal-full:nth-child(even) .content {
    -ms-flex-order: 1;
        order: 1;
  }
  .cards-default[data-type=articles] .cards-list.cards-betweens[data-align=alternade] .card-horizontal-full:nth-child(even) .picture {
    -ms-flex-order: 2;
        order: 2;
  }
}
@media screen and (min-width: 992px) {
  .cards-default[data-type=articles] .cards-list[data-align=""] .card-horizontal-full .content, .cards-default[data-type=articles] .cards-list[data-align=left] .card-horizontal-full .content {
    -ms-flex-order: 1;
        order: 1;
  }
  .cards-default[data-type=articles] .cards-list[data-align=""] .card-horizontal-full .picture, .cards-default[data-type=articles] .cards-list[data-align=left] .card-horizontal-full .picture {
    -ms-flex-order: 2;
        order: 2;
  }
}
@media screen and (min-width: 992px) {
  .cards-default[data-type=articles] .cards-list[data-align=right] .card-horizontal-full .content {
    -ms-flex-order: 2;
        order: 2;
  }
  .cards-default[data-type=articles] .cards-list[data-align=right] .card-horizontal-full .picture {
    -ms-flex-order: 1;
        order: 1;
  }
}
@media screen and (min-width: 992px) {
  .cards-default[data-type=articles] .cards-list[data-align=alternade] .card-horizontal-full:nth-child(odd) .content {
    -ms-flex-order: 1;
        order: 1;
  }
  .cards-default[data-type=articles] .cards-list[data-align=alternade] .card-horizontal-full:nth-child(odd) .picture {
    -ms-flex-order: 2;
        order: 2;
  }
  .cards-default[data-type=articles] .cards-list[data-align=alternade] .card-horizontal-full:nth-child(even) .content {
    -ms-flex-order: 2;
        order: 2;
  }
  .cards-default[data-type=articles] .cards-list[data-align=alternade] .card-horizontal-full:nth-child(even) .picture {
    -ms-flex-order: 1;
        order: 1;
  }
}
.cards-default[data-type=articles] .cards-list .categories {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  margin-top: 0;
}
.cards-default[data-type=articles] .cards-list .categories .link {
  margin-left: 3px;
  margin-top: 2px;
}
.cards-default[data-type=articles] .cards-list .categories .bookmark {
  margin-left: 12px;
  color: var(--badge-base, #ffc800);
}
.cards-default[data-type=articles] .cards-list .categories .share {
  margin-left: 8px;
  color: var(--neutral-base, #3e455e);
}
.cards-default[data-type=articles] .cards-list .card-horizontal-full {
  width: 100%;
  margin-left: 0;
  -ms-flex-align: start;
      align-items: flex-start;
  margin-bottom: 48px;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
@media screen and (min-width: 992px) {
  .cards-default[data-type=articles] .cards-list .card-horizontal-full {
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}
.cards-default[data-type=articles] .cards-list .card-horizontal-full:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .cards-default[data-type=articles] .cards-list .card-horizontal-full:nth-child(odd) .content, .cards-default[data-type=articles] .cards-list .card-horizontal-full:nth-child(even) .content {
    -ms-flex-order: 2;
        order: 2;
  }
}
@media screen and (min-width: 992px) {
  .cards-default[data-type=articles] .cards-list .card-horizontal-full:nth-child(odd) .picture, .cards-default[data-type=articles] .cards-list .card-horizontal-full:nth-child(even) .picture {
    -ms-flex-order: 1;
        order: 1;
  }
}
.cards-default[data-type=articles] .cards-list .card-horizontal-full .content {
  width: 100%;
  -ms-flex-order: 2;
      order: 2;
}
.cards-default[data-type=articles] .cards-list .card-horizontal-full .content .title {
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
}
.cards-default[data-type=articles] .cards-list .card-horizontal-full .content .categories {
  margin-top: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
}
.cards-default[data-type=articles] .cards-list .card-horizontal-full .content .categories .link {
  margin-left: 3px;
  margin-top: 2px;
}
.cards-default[data-type=articles] .cards-list .card-horizontal-full .content .categories .bookmark {
  margin-left: 12px;
  color: var(--badge-base, #ffc800);
}
.cards-default[data-type=articles] .cards-list .card-horizontal-full .content .categories .share {
  margin-left: 8px;
  color: var(--neutral-base, #3e455e);
}
.cards-default[data-type=articles] .cards-list .card-horizontal-full .picture {
  width: 412px;
  -ms-flex-order: 1;
      order: 1;
  max-height: 340px;
}
.cards-default[data-type=articles] .cards-list .card-horizontal-full .picture img {
  width: 100%;
  object-fit: fill;
}
.cards-default[data-type=articles] .cards-list .card-horizontal-full.list-horizontal {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .cards-default[data-type=articles] .cards-list .card-horizontal-full.list-horizontal {
    width: 48%;
  }
}
@media screen and (min-width: 992px) {
  .cards-default[data-type=articles] .cards-list .card-horizontal-full.list-horizontal {
    width: 100%;
    padding: 24px 0;
  }
}
.cards-default[data-type=articles] .cards-list .card-horizontal-full.list-horizontal .content {
  width: 100%;
}
.cards-default[data-type=articles] .cards-list .card-horizontal-full.list-horizontal .content .author .author-name {
  margin-left: 16px;
}
.cards-default[data-type=articles] .cards-list .card-horizontal-full.list-horizontal .picture {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .cards-default[data-type=articles] .cards-list .card-horizontal-full.list-horizontal .picture {
    width: 412px;
  }
}
.cards-default[data-type=articles] .card-wrapper-quarter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.cards-default[data-type=articles] .card-wrapper-quarter .cards-list-quarter {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .cards-default[data-type=articles] .card-wrapper-quarter .cards-list-quarter {
    width: 55%;
  }
}
@media screen and (min-width: 992px) {
  .cards-default[data-type=articles] .card-wrapper-quarter .cards-list-quarter {
    width: 65%;
  }
}
@media screen and (min-width: 992px) {
  .cards-default[data-type=articles] .card-wrapper-quarter .cards-list-quarter[data-align=""] .card-horizontal-full .content, .cards-default[data-type=articles] .card-wrapper-quarter .cards-list-quarter[data-align=left] .card-horizontal-full .content {
    -ms-flex-order: 2;
        order: 2;
  }
  .cards-default[data-type=articles] .card-wrapper-quarter .cards-list-quarter[data-align=""] .card-horizontal-full .picture, .cards-default[data-type=articles] .card-wrapper-quarter .cards-list-quarter[data-align=left] .card-horizontal-full .picture {
    -ms-flex-order: 1;
        order: 1;
  }
}
@media screen and (min-width: 992px) {
  .cards-default[data-type=articles] .card-wrapper-quarter .cards-list-quarter[data-align=right] .card-horizontal-full .content {
    -ms-flex-order: 1;
        order: 1;
  }
  .cards-default[data-type=articles] .card-wrapper-quarter .cards-list-quarter[data-align=right] .card-horizontal-full .picture {
    -ms-flex-order: 2;
        order: 2;
  }
}
@media screen and (min-width: 992px) {
  .cards-default[data-type=articles] .card-wrapper-quarter .cards-list-quarter[data-align=alternade] .card-horizontal-full:nth-child(odd) .content {
    -ms-flex-order: 2;
        order: 2;
  }
  .cards-default[data-type=articles] .card-wrapper-quarter .cards-list-quarter[data-align=alternade] .card-horizontal-full:nth-child(odd) .picture {
    -ms-flex-order: 1;
        order: 1;
  }
  .cards-default[data-type=articles] .card-wrapper-quarter .cards-list-quarter[data-align=alternade] .card-horizontal-full:nth-child(even) .content {
    -ms-flex-order: 1;
        order: 1;
  }
  .cards-default[data-type=articles] .card-wrapper-quarter .cards-list-quarter[data-align=alternade] .card-horizontal-full:nth-child(even) .picture {
    -ms-flex-order: 2;
        order: 2;
  }
}
.cards-default[data-type=articles] .card-wrapper-quarter .cards-list-quarter .card-horizontal-full .content {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .cards-default[data-type=articles] .card-wrapper-quarter .cards-list-quarter .card-horizontal-full .content {
    width: calc(100% - 294px);
  }
}
.cards-default[data-type=articles] .card-wrapper-quarter .cards-list-quarter .card-horizontal-full .picture {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .cards-default[data-type=articles] .card-wrapper-quarter .cards-list-quarter .card-horizontal-full .picture {
    width: 300px;
    max-height: 225px;
  }
}
.cards-default[data-type=articles] .card-wrapper-quarter .cards-popular {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .cards-default[data-type=articles] .card-wrapper-quarter .cards-popular {
    width: 40%;
  }
}
@media screen and (min-width: 992px) {
  .cards-default[data-type=articles] .card-wrapper-quarter .cards-popular {
    width: 30%;
  }
}
.cards-default[data-type=articles] .card-wrapper-quarter .cards-popular > .heading {
  border-bottom: 1px solid var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  padding-bottom: 4px;
}
.cards-default[data-type=articles] .card-wrapper-quarter .cards-popular > .list-popular-articles {
  margin-top: 24px;
}
.cards-default[data-type=articles] .card-wrapper-quarter .cards-popular > .list-popular-articles .item-popular-articles {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 16px;
}
@media screen and (min-width: 992px) {
  .cards-default[data-type=articles] .card-wrapper-quarter .cards-popular > .list-popular-articles .item-popular-articles {
    padding-left: 48px;
  }
}
.cards-default[data-type=articles] .card-wrapper-quarter .cards-popular > .list-popular-articles .item-popular-articles:last-child {
  margin-bottom: 0;
}
.cards-default[data-type=articles] .card-wrapper-quarter .cards-popular > .list-popular-articles .item-popular-articles .content-left .number {
  line-height: 1;
  color: var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
}
.cards-default[data-type=articles] .card-wrapper-quarter .cards-popular > .list-popular-articles .item-popular-articles .content-right {
  width: calc(100% - 42px);
}
.cards-default[data-type=articles] .card-wrapper-quarter .cards-popular > .list-popular-articles .item-popular-articles .content-right .title {
  line-height: 1.15;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}
.cards-default[data-type=articles] .card-wrapper-quarter .cards-popular > .list-popular-articles .item-popular-articles .content-right .title:hover {
  color: var(--highlight-base, #137df7);
}
.cards-default[data-type=articles] .card-wrapper-quarter .cards-popular > .list-popular-articles .item-popular-articles .content-right .author {
  font-weight: 300;
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
@media screen and (min-width: 768px) {
  .cards-default[data-type=articles] .cards-list-half .card[data-columns="2"] {
    width: calc(50% - 32px);
  }
}
@media screen and (min-width: 768px) and (-ms-high-contrast: active), screen and (min-width: 768px) and (-ms-high-contrast: none) {
  .cards-default[data-type=articles] .cards-list-half .card[data-columns="2"] {
    width: calc(50% - 32px);
  }
}
@media screen and (min-width: 992px) {
  .cards-default[data-type=articles] .cards-list-half .card[data-columns="2"] {
    width: calc(33.3333333333% - 32px);
  }
}
@media screen and (min-width: 992px) and (-ms-high-contrast: active), screen and (min-width: 992px) and (-ms-high-contrast: none) {
  .cards-default[data-type=articles] .cards-list-half .card[data-columns="2"] {
    width: calc(33.3333333333% - 32px);
  }
}
@media screen and (min-width: 1200px) {
  .cards-default[data-type=articles] .cards-list-half .card[data-columns="2"] {
    width: calc(50% - 32px);
  }
}
@media screen and (min-width: 1200px) and (-ms-high-contrast: active), screen and (min-width: 1200px) and (-ms-high-contrast: none) {
  .cards-default[data-type=articles] .cards-list-half .card[data-columns="2"] {
    width: calc(50% - 32px);
  }
}
.cards-default[data-type=articles] .cards-list-half .card .picture {
  width: 100%;
}
.cards-default[data-type=articles] .cards-list-half .card .picture img {
  width: 100%;
}
.cards-default[data-type=articles][data-bg=brand] .cards-list .card .content .date {
  color: var(--color-white-base, white);
}
.cards-default[data-type=articles][data-bg=brand] .cards-list .card .content .title {
  color: var(--color-white-base, white);
}
.cards-default[data-type=articles][data-bg=brand] .cards-list .card .content .categories {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.cards-default[data-type=articles][data-bg=brand] .cards-list .card .content .categories .share {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.cards-default[data-type=articles][data-bg=brand] .cards-list .card .content .description .paragraph {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.cards-default[data-type=articles][data-bg=brand] .cards-list .card .content .author .author-picture {
  border-color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.cards-default[data-type=articles][data-bg=brand] .cards-list .card .content .author .author-picture .fa {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.cards-default[data-type=articles][data-bg=brand] .cards-list .card .content .author .author-name {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.cards-default[data-type=articles][data-bg=brand] .cards-list .card .content .recurring-event {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.cards-default[data-type=articles][data-bg=brand] .cards-list .card .content .location {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.cards-default[data-type=articles][data-bg=brand] .cards-list .card .content .price-off {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.cards-default[data-type=articles][data-bg=brand] .cards-list .card .content .price {
  color: var(--color-white-base, white);
}
.cards-default[data-type=articles][data-bg=brand] .cards-list .card .content .valid-time {
  color: var(--color-white-base, white);
}
.cards-default[data-type=articles][data-bg=brand] .cards-list .card-horizontal-full.list-horizontal {
  border-top-color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.cards-default[data-type=articles][data-bg=brand] .cards-list .card-horizontal-full.list-horizontal:last-child {
  border-bottom-color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.cards-default[data-type=articles][data-bg=brand] .cards-popular > .heading {
  color: var(--color-white-base, white);
  border-bottom-color: var(--color-white-transp-25, rgba(255, 255, 255, 0.25));
}
.cards-default[data-type=articles][data-bg=brand] .cards-popular > .list-popular-articles .item-popular-articles .content-left .number {
  color: var(--color-white-transp-50, rgba(255, 255, 255, 0.5));
}
.cards-default[data-type=articles][data-bg=brand] .cards-popular > .list-popular-articles .item-popular-articles .content-right .title {
  color: var(--color-white-base, white);
}
.cards-default[data-type=articles][data-bg=brand] .cards-popular > .list-popular-articles .item-popular-articles .content-right .author {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
@media screen and (max-width: 425px) {
  .cards-default[data-type=articles][scrollable=""][mobile-columns=true] .cards-list .card:not(.card-horizontal) .content, .cards-default[data-type=articles][scrollable=false][mobile-columns=true] .cards-list .card:not(.card-horizontal) .content {
    margin-top: 16px;
  }
  .cards-default[data-type=articles][scrollable=""][mobile-columns=true] .cards-list .card:not(.card-horizontal) .content .title, .cards-default[data-type=articles][scrollable=false][mobile-columns=true] .cards-list .card:not(.card-horizontal) .content .title {
    font-size: var(--font-size-16, 1em);
  }
  .cards-default[data-type=articles][scrollable=""][mobile-columns=true] .cards-list .card:not(.card-horizontal) .content .description, .cards-default[data-type=articles][scrollable=false][mobile-columns=true] .cards-list .card:not(.card-horizontal) .content .description {
    display: none;
  }
  .cards-default[data-type=articles][scrollable=""][mobile-columns=true] .cards-list .card:not(.card-horizontal) .content .author, .cards-default[data-type=articles][scrollable=false][mobile-columns=true] .cards-list .card:not(.card-horizontal) .content .author {
    margin-top: 0;
  }
  .cards-default[data-type=articles][scrollable=""][mobile-columns=true] .cards-list .card:not(.card-horizontal) .content .author .author-picture, .cards-default[data-type=articles][scrollable=false][mobile-columns=true] .cards-list .card:not(.card-horizontal) .content .author .author-picture {
    display: none;
  }
  .cards-default[data-type=articles][scrollable=""][mobile-columns=true] .cards-list .card:not(.card-horizontal) .content .author .author-name, .cards-default[data-type=articles][scrollable=false][mobile-columns=true] .cards-list .card:not(.card-horizontal) .content .author .author-name {
    margin-left: 0;
  }
}
.cards-default[data-bg=brand] .cards-list .card .content .date {
  color: var(--color-white-base, white);
}
.cards-default[data-bg=brand] .cards-list .card .content .author .author-name {
  color: var(--color-white-base, white);
}

[data-type=recent-reviews] .cards-list .card:hover .picture {
  -ms-transform: scale(1);
      transform: scale(1);
}
[data-type=recent-reviews] .cards-list .card:hover .picture:before {
  top: 50%;
}
[data-type=recent-reviews] .cards-list .card .picture {
  position: relative;
}
[data-type=recent-reviews] .cards-list .card .picture:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.75;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000000);
  transition: 0.2s ease-in-out;
  z-index: 5;
}
[data-type=recent-reviews] .cards-list .card .picture .picture-info {
  position: absolute;
  z-index: 5;
  bottom: 16px;
  left: 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc(100% - 32px);
}
[data-type=recent-reviews] .cards-list .card .picture .picture-info .picture-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-icon, 3px);
  overflow: hidden;
}
[data-type=recent-reviews] .cards-list .card .picture .picture-info .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-icon, 3px);
  background: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
  font-size: 24px;
  color: white;
}
[data-type=recent-reviews] .cards-list .card .picture .picture-info .heading {
  color: white;
  width: calc(100% - 64px);
}
[data-type=recent-reviews] .cards-list .card .content .title {
  font-weight: bold;
}
[data-type=recent-reviews][data-bg=brand] .cards-list .card .content .title {
  color: var(--color-white-base, white);
}
[data-type=recent-reviews][data-bg=brand] .cards-list .card .content .description .paragraph {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
[data-type=recent-reviews][data-bg=brand] .cards-list .card .content .reviews .reviews-stars .fa-star-o {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
[data-type=recent-reviews][data-bg=brand] .cards-list .card .content .reviews .reviews-count {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
[data-type=recent-reviews][data-bg=brand] .cards-list .card .content .author .author-picture {
  border-color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
[data-type=recent-reviews][data-bg=brand] .cards-list .card .content .author .author-picture .fa {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
[data-type=recent-reviews][data-bg=brand] .cards-list .card .content .author .author-name {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
[data-type=recent-reviews][data-bg=brand] .cards-list .card .content .author .author-days {
  color: var(--color-white-transp-50, rgba(255, 255, 255, 0.5));
}
@media screen and (max-width: 425px) {
  [data-type=recent-reviews][scrollable=""][mobile-columns=true] .cards-list .card .picture .picture-info .icon, [data-type=recent-reviews][scrollable=false][mobile-columns=true] .cards-list .card .picture .picture-info .icon {
    display: none;
  }
  [data-type=recent-reviews][scrollable=""][mobile-columns=true] .cards-list .card .picture .picture-info .heading, [data-type=recent-reviews][scrollable=false][mobile-columns=true] .cards-list .card .picture .picture-info .heading {
    width: 100%;
    font-size: var(--font-size-16, 1em);
  }
  [data-type=recent-reviews][scrollable=""][mobile-columns=true] .cards-list .card .content, [data-type=recent-reviews][scrollable=false][mobile-columns=true] .cards-list .card .content {
    margin-top: 16px;
  }
  [data-type=recent-reviews][scrollable=""][mobile-columns=true] .cards-list .card .content .description, [data-type=recent-reviews][scrollable=false][mobile-columns=true] .cards-list .card .content .description {
    max-height: 100px;
    overflow: auto;
  }
  [data-type=recent-reviews][scrollable=""][mobile-columns=true] .cards-list .card .content .author .author-picture, [data-type=recent-reviews][scrollable=false][mobile-columns=true] .cards-list .card .content .author .author-picture {
    display: none;
  }
  [data-type=recent-reviews][scrollable=""][mobile-columns=true] .cards-list .card .content .author .author-info, [data-type=recent-reviews][scrollable=false][mobile-columns=true] .cards-list .card .content .author .author-info {
    margin-left: 0;
  }
}

[data-type=latest-members] .members-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  margin: -48px -16px 0;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
[data-type=latest-members] .members-list .members-item {
  text-align: center;
  display: block;
  text-decoration: none;
  margin: 48px 8px 0;
  max-width: 125px;
}
@media only screen and (min-width: 340px) and (max-width: 375px) {
  [data-type=latest-members] .members-list .members-item {
    width: 27%;
  }
}
@media screen and (min-width: 768px) {
  [data-type=latest-members] .members-list .members-item {
    margin: 48px 16px 0;
    max-width: none;
    width: 125px;
  }
}
@media screen and (min-width: 1200px) {
  [data-type=latest-members] .members-list .members-item {
    width: 163px;
  }
}
[data-type=latest-members] .members-list .members-item:hover .picture img {
  -ms-transform: scale(1.1);
      transform: scale(1.1);
}
[data-type=latest-members] .members-list .members-item:hover .content .heading {
  color: var(--highlight-base, #137df7);
}
[data-type=latest-members] .members-list .members-item .picture {
  width: 96px;
  height: 96px;
  border-radius: 9999px;
  overflow: hidden;
  border: 1px solid var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  margin: 0 auto;
  font-size: var(--font-size-24, 1.5em);
  color: var(--brand-base, #022e69);
  line-height: 96px;
}
[data-type=latest-members] .members-list .members-item .picture img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: 0.2s ease-in-out;
}
[data-type=latest-members] .members-list .members-item .content {
  margin-top: 16px;
}
[data-type=latest-members] .members-list .members-item .content .heading {
  font-weight: bold;
  transition: 0.2s ease-in-out;
}
[data-type=latest-members] .members-list .members-item .content .joined-time {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
[data-type=latest-members][data-bg=brand] .members-list .members-item .picture {
  border-color: var(--color-white-transp-50, rgba(255, 255, 255, 0.5));
}
[data-type=latest-members][data-bg=brand] .members-list .members-item .picture .fa {
  color: var(--color-white-transp-50, rgba(255, 255, 255, 0.5));
}
[data-type=latest-members][data-bg=brand] .members-list .members-item .content .heading {
  color: var(--color-white-base, white);
}
[data-type=latest-members][data-bg=brand] .members-list .members-item .content .joined-time {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}

.horizontal-deal .cards-list .card-deals {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .horizontal-deal .cards-list .card-deals {
    width: calc(50% - 32px);
    margin-left: 16px;
    margin-right: 16px;
  }
}
@media screen and (min-width: 992px) {
  .horizontal-deal .cards-list .card-deals {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
    background: white;
    border: 1px solid var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
    border-radius: var(--border-radius, 3px);
  }
}
.horizontal-deal .cards-list .card-deals .picture {
  width: 100%;
  max-height: 160px;
}
@media screen and (min-width: 992px) {
  .horizontal-deal .cards-list .card-deals .picture {
    width: 245px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
@media screen and (min-width: 992px) {
  .horizontal-deal .cards-list .card-deals .content {
    width: calc(100% - 285px);
    margin-top: 0 !important;
    padding-right: 32px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
  }
}
@media screen and (min-width: 992px) {
  .horizontal-deal .cards-list .card-deals .content .deals-info {
    width: 300px;
  }
}
@media screen and (min-width: 1200px) {
  .horizontal-deal .cards-list .card-deals .content .deals-info {
    width: 340px;
  }
}
.horizontal-deal .cards-list .card-deals .content .deals-price {
  width: 260px;
}
@media screen and (min-width: 992px) {
  .horizontal-deal .cards-list .card-deals .content .deals-price {
    width: 196px;
  }
}
@media screen and (min-width: 1200px) {
  .horizontal-deal .cards-list .card-deals .content .deals-price {
    width: 260px;
  }
}
.horizontal-deal .cards-list .card-deals .content .deals-price .valid-time {
  margin-top: 8px;
}
.horizontal-deal .cards-list .card-deals .content .deals-action {
  display: none;
}
@media screen and (min-width: 992px) {
  .horizontal-deal .cards-list .card-deals .content .deals-action {
    display: block;
  }
}
.horizontal-deal .cards-list .card-deals .content .deals-action .button {
  display: inline-block;
}

.cards-default[data-type=deals][data-bg=brand]:not(.horizontal-deal) .cards-list .card .content .title {
  color: var(--color-white-base, white);
}
.cards-default[data-type=deals][data-bg=brand]:not(.horizontal-deal) .cards-list .card .content .categories {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.cards-default[data-type=deals][data-bg=brand]:not(.horizontal-deal) .cards-list .card .content .categories .share {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.cards-default[data-type=deals][data-bg=brand]:not(.horizontal-deal) .cards-list .card .content .description .paragraph {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.cards-default[data-type=deals][data-bg=brand]:not(.horizontal-deal) .cards-list .card .content .price-off {
  color: var(--color-white-transp-50, rgba(255, 255, 255, 0.5));
}
.cards-default[data-type=deals][data-bg=brand]:not(.horizontal-deal) .cards-list .card .content .price {
  color: var(--color-white-base, white);
}
.cards-default[data-type=deals][data-bg=brand]:not(.horizontal-deal) .cards-list .card .content .valid-time {
  color: var(--color-white-base, white);
}
.cards-default[data-type=deals][data-bg=brand].horizontal-deal .cards-list .card {
  border: none;
}
@media screen and (max-width: 768px) {
  .cards-default[data-type=deals][data-bg=brand].horizontal-deal .cards-list .card .content .title {
    color: var(--color-white-base, white);
  }
  .cards-default[data-type=deals][data-bg=brand].horizontal-deal .cards-list .card .content .categories {
    color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
  }
  .cards-default[data-type=deals][data-bg=brand].horizontal-deal .cards-list .card .content .categories .share {
    color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
  }
  .cards-default[data-type=deals][data-bg=brand].horizontal-deal .cards-list .card .content .description .paragraph {
    color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
  }
  .cards-default[data-type=deals][data-bg=brand].horizontal-deal .cards-list .card .content .price-off {
    color: var(--color-white-transp-50, rgba(255, 255, 255, 0.5));
  }
  .cards-default[data-type=deals][data-bg=brand].horizontal-deal .cards-list .card .content .price {
    color: var(--color-white-base, white);
  }
  .cards-default[data-type=deals][data-bg=brand].horizontal-deal .cards-list .card .content .valid-time {
    color: var(--color-white-base, white);
  }
}
.cards-default[data-type=deals][data-bg=brand].horizontal-deal .cards-list.has-slider .flickity-page-dots .dot {
  border-color: var(--color-white-base, white);
}
.cards-default[data-type=deals][data-bg=brand].horizontal-deal .cards-list.has-slider .flickity-page-dots .dot:hover {
  border-color: var(--color-white-base, white);
  background: var(--color-white-base, white);
}
@media screen and (max-width: 425px) {
  .cards-default[data-type=deals][scrollable=""][mobile-columns=true]:not(.horizontal-deal) .cards-list .card .content, .cards-default[data-type=deals][scrollable=false][mobile-columns=true]:not(.horizontal-deal) .cards-list .card .content {
    margin-top: 16px;
  }
  .cards-default[data-type=deals][scrollable=""][mobile-columns=true]:not(.horizontal-deal) .cards-list .card .content .title, .cards-default[data-type=deals][scrollable=false][mobile-columns=true]:not(.horizontal-deal) .cards-list .card .content .title {
    font-size: var(--font-size-16, 1em);
  }
  .cards-default[data-type=deals][scrollable=""][mobile-columns=true]:not(.horizontal-deal) .cards-list .card .content .price, .cards-default[data-type=deals][scrollable=false][mobile-columns=true]:not(.horizontal-deal) .cards-list .card .content .price {
    font-size: var(--font-size-20, 1.25em);
  }
}

.banner:not([type=large-mobile]) {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.banner[is-wide=false], .banner[is-wide=""] {
  padding-top: 24px;
  padding-bottom: 24px;
}
@media only screen and (min-width: 992px) {
  .banner[is-wide=false], .banner[is-wide=""] {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.banner[type=leaderboard], .banner[type=billboard] {
  display: -ms-flexbox;
  display: flex;
  padding-left: 12px;
  padding-right: 12px;
}
.banner[type=leaderboard] img, .banner[type=billboard] img {
  max-width: 100%;
}
.banner[type=leaderboard] .banner-link {
  max-width: 728px;
  max-height: 90px;
}
@media screen and (min-width: 768px) {
  .banner[type=leaderboard] {
    padding-left: 0;
    padding-right: 0;
  }
}
.banner[type=billboard] .banner-link {
  max-width: 970px;
  max-height: 250px;
}
@media screen and (min-width: 992px) {
  .banner[type=billboard] {
    padding-left: 0;
    padding-right: 0;
  }
}
.banner[type=large-mobile][data-count="3"] .container {
  -ms-flex-pack: center;
      justify-content: center;
}
@media screen and (min-width: 768px) {
  .banner[type=large-mobile][data-count="3"] .container {
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}
.banner[type=large-mobile] .container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .banner[type=large-mobile] .container {
    -ms-flex-flow: nowrap;
        flex-flow: nowrap;
    overflow: auto;
  }
  .banner[type=large-mobile] .container::-webkit-scrollbar {
    width: 0px;
    background: transparent;
  }
}
.banner[type=large-mobile] .container picture {
  margin: 0 auto;
}
.banner[type=large-mobile] .container img {
  max-height: 100px;
  max-width: 320px;
}
.banner[type=large-mobile]:not([data-section=sidebar]) .banner-link {
  display: inline-block;
  max-width: 320px;
  min-width: 320px;
  max-height: 100px;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .banner[type=large-mobile]:not([data-section=sidebar]) .banner-link {
    max-width: calc(50% - 16px);
    min-width: calc(50% - 16px);
    margin-top: 0;
  }
  .banner[type=large-mobile]:not([data-section=sidebar]) .banner-link:not(:first-child) {
    margin-left: 16px;
  }
}
@media screen and (min-width: 992px) {
  .banner[type=large-mobile]:not([data-section=sidebar]) .banner-link {
    max-width: calc(33.3333333333% - 16px);
    min-width: calc(33.3333333333% - 16px);
  }
}
.banner[type=large-mobile]:not([data-section=sidebar]) .banner-link.banner-sponsored-link {
  width: 320px;
  min-height: 100px;
  font-size: var(--font-size-14, 0.875em);
  border: 1px solid var(--color-white-transp-50, rgba(255, 255, 255, 0.5));
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  text-decoration: none;
}
.banner[type=large-mobile]:not([data-section=sidebar]) .banner-link.banner-sponsored-link span {
  display: block;
}
.banner[type=large-mobile]:not([data-section=sidebar]) .banner-link.banner-sponsored-link .text {
  color: var(--color-white-transp-50, rgba(255, 255, 255, 0.5));
}
@media screen and (min-width: 992px) {
  .banner[type=large-mobile]:not([data-section=sidebar])[data-count="2"] .banner-link {
    max-width: calc(50% - 16px);
    min-width: calc(50% - 16px);
  }
}
.banner[type=large-mobile][data-section=sidebar] .banner-link {
  max-width: 100%;
}
.banner[type=square] {
  margin-top: -16px;
}
.banner[type=square] img {
  max-height: 250px;
  max-width: 250px;
}
.banner[type=square]:not([data-section=main]) .banner-link {
  max-width: 250px;
  max-height: 250px;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .banner[type=square]:not([data-section=main]) .banner-link:not(:first-child) {
    margin-left: 16px;
  }
}
.banner[type=square][data-section=main] {
  margin-top: -16px;
  margin-left: -16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.banner[type=square][data-section=main] .banner-link {
  margin-top: 16px;
  margin-left: 16px;
}
.banner[type=square][data-section=main] .banner-link img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.banner[type=square][data-section=main][data-count="3"] .banner-link {
  max-width: calc(100% - 16px);
}
@media screen and (min-width: 768px) {
  .banner[type=square][data-section=main][data-count="3"] .banner-link {
    max-width: calc(50% - 16px);
  }
}
@media screen and (min-width: 992px) {
  .banner[type=square][data-section=main][data-count="3"] .banner-link {
    max-width: calc(33.3333333333% - 16px);
  }
}
.banner[type=square][data-section=main][data-count="2"] .banner-link {
  max-width: calc(100% - 16px);
}
@media screen and (min-width: 768px) {
  .banner[type=square][data-section=main][data-count="2"] .banner-link {
    max-width: calc(50% - 16px);
  }
}
.banner[type=square][data-section=main][data-count="1"] .banner-link {
  max-width: calc(100% - 16px);
}
.banner[type=skyscraper] {
  display: -ms-flexbox;
  display: flex;
}
.banner[type=skyscraper] img {
  max-height: 600px;
  max-width: 160px;
}
.banner[type=skyscraper] .banner-link {
  max-width: 160px;
  max-height: 600px;
}
.banner[type=halfpage] {
  display: -ms-flexbox;
  display: flex;
}
.banner[type=halfpage] img {
  max-width: 100%;
}
.banner[type=halfpage] .banner-link {
  max-width: 300px;
  max-height: 600px;
}
.banner .banner-link {
  display: inline-block;
  overflow: hidden;
}
.banner .banner-link .banner-image {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.banner[type=large-mobile][data-bg=base]:not([data-section=sidebar]) .banner-link.banner-sponsored-link, .banner[type=large-mobile][data-bg=neutral]:not([data-section=sidebar]) .banner-link.banner-sponsored-link {
  border-color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}
.banner[type=large-mobile][data-bg=base]:not([data-section=sidebar]) .banner-link.banner-sponsored-link .text, .banner[type=large-mobile][data-bg=neutral]:not([data-section=sidebar]) .banner-link.banner-sponsored-link .text {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}
.banner[data-bg=base] .banner-sponsored-link, .banner[data-bg=neutral] .banner-sponsored-link {
  border-color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}
.banner[data-bg=base] .banner-sponsored-link .text, .banner[data-bg=neutral] .banner-sponsored-link .text {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}

.pricing-plans {
  padding-top: 24px;
  padding-bottom: 24px;
}
@media only screen and (min-width: 992px) {
  .pricing-plans {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.pricing-plans .pricing-header {
  text-align: center;
}
.pricing-plans .pricing-header .paragraph {
  margin-top: 16px;
  display: block;
  opacity: 0.75;
}
.pricing-plans .pricing-header + .pricing-table {
  margin-top: 48px;
}
.pricing-plans .pricing-table .pricing-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: center;
      justify-content: center;
}
.pricing-plans .pricing-table .pricing-nav.multiple-navs {
  -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
  overflow: auto;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
@media screen and (min-width: 992px) {
  .pricing-plans .pricing-table .pricing-nav.multiple-navs {
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    -ms-flex-pack: center;
        justify-content: center;
  }
}
.pricing-plans .pricing-table .pricing-nav .button:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
}
.pricing-plans .pricing-table .pricing-nav .button:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: none;
}
.pricing-plans .pricing-table .pricing-nav .button:not(:first-child):not(:last-child) {
  border-radius: 0;
  border-left: none;
  border-right: none;
}
.pricing-plans .pricing-table .pricing-nav .button.is-active {
  background: var(--highlight-base, #137df7);
  color: white;
  opacity: 1;
  border: none;
}
.pricing-plans .pricing-table .pricing-nav .button.is-active:focus, .pricing-plans .pricing-table .pricing-nav .button.is-active:visited, .pricing-plans .pricing-table .pricing-nav .button.is-active:active {
  background: var(--highlight-dark, rgb(16.15, 106.25, 209.95));
}
.pricing-plans .pricing-table .pricing-nav .button.is-active:hover {
  background: var(--highlight-light-2, rgb(89.8, 164, 249.4));
}
.pricing-plans .pricing-table .pricing-wrapper {
  display: none;
}
.pricing-plans .pricing-table .pricing-wrapper.is-active {
  display: block;
}
.pricing-plans .pricing-table .pricing-wrapper.is-active.has-scroll:before, .pricing-plans .pricing-table .pricing-wrapper.is-active.has-scroll:after {
  opacity: 1;
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-buttons {
  display: none;
}
.pricing-plans .pricing-table .pricing-wrapper.has-scroll {
  position: relative;
}
@media screen and (min-width: 1200px) {
  .pricing-plans .pricing-table .pricing-wrapper.has-scroll {
    position: relative;
  }
  .pricing-plans .pricing-table .pricing-wrapper.has-scroll .pricing-list {
    -ms-flex-pack: start;
        justify-content: flex-start;
    overflow-x: scroll;
    padding: 64px 0 24px;
    margin-top: 40px;
    position: relative;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    scrollbar-width: none;
  }
  .pricing-plans .pricing-table .pricing-wrapper.has-scroll .pricing-list::-webkit-scrollbar {
    width: 0px;
    background: transparent;
    display: none;
  }
  .pricing-plans .pricing-table .pricing-wrapper.has-scroll .pricing-buttons {
    position: absolute;
    display: block;
    width: 100%;
    top: calc(50% + 16px);
    left: 0;
    -ms-transform: translateY(calc(-50% + 16px));
        transform: translateY(calc(-50% + 16px));
    height: 40px;
  }
  .pricing-plans .pricing-table .pricing-wrapper.has-scroll .pricing-buttons .button {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    position: absolute;
    top: 0;
    font-size: 28px;
  }
  .pricing-plans .pricing-table .pricing-wrapper.has-scroll .pricing-buttons .button.previous {
    left: -10px;
    display: none;
  }
  .pricing-plans .pricing-table .pricing-wrapper.has-scroll .pricing-buttons .button.next {
    right: -10px;
  }
}
@media screen and (min-width: 1300px) {
  .pricing-plans .pricing-table .pricing-wrapper.has-scroll .pricing-buttons .button.previous {
    left: -50px;
  }
  .pricing-plans .pricing-table .pricing-wrapper.has-scroll .pricing-buttons .button.next {
    right: -50px;
  }
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list {
  margin-top: 32px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
}
@media screen and (min-width: 768px) {
  .pricing-plans .pricing-table .pricing-wrapper .pricing-list {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .pricing-plans .pricing-table .pricing-wrapper .pricing-list {
    -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    -ms-flex-pack: center;
        justify-content: center;
    padding: 64px 0 24px;
  }
  .pricing-plans .pricing-table .pricing-wrapper .pricing-list.no-margin {
    padding: 24px 0;
  }
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list.pricing-articles {
  -ms-flex-pack: center;
      justify-content: center;
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list.no-margin + .pricing-buttons {
  top: calc(50% + 4px);
  -ms-transform: translateY(calc(-50% + 4px));
      transform: translateY(calc(-50% + 4px));
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item {
  background: var(--color-white-base, white);
  padding: 32px;
  border-radius: var(--border-radius, 3px);
  border: 1px solid var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  position: relative;
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 100%;
  width: 100%;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item {
    max-width: calc(50% - 16px);
    margin-left: 8px;
    margin-right: 8px;
  }
}
@media screen and (min-width: 768px) and (-ms-high-contrast: active), screen and (min-width: 768px) and (-ms-high-contrast: none) {
  .pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item {
    max-width: calc(50% - 16px);
  }
}
@media screen and (min-width: 992px) {
  .pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item {
    max-width: calc(33.3333333333% - 16px);
  }
}
@media screen and (min-width: 992px) and (-ms-high-contrast: active), screen and (min-width: 992px) and (-ms-high-contrast: none) {
  .pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item {
    max-width: calc(33.3333333333% - 16px);
  }
}
@media screen and (min-width: 1200px) {
  .pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item {
    max-width: calc(25% - 16px);
  }
}
@media screen and (min-width: 1200px) and (-ms-high-contrast: active), screen and (min-width: 1200px) and (-ms-high-contrast: none) {
  .pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item {
    max-width: calc(25% - 16px);
  }
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item.is-highlighted {
  margin-bottom: 16px;
  border-top: 8px solid var(--highlight-base, #137df7);
  border-bottom: 8px solid var(--highlight-base, #137df7);
}
@media screen and (min-width: 768px) {
  .pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item.is-highlighted {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item.is-highlighted {
    margin-top: 56px;
  }
}
@media screen and (min-width: 1200px) {
  .pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item.is-highlighted {
    padding: 48px 32px;
    margin-top: -24px;
    margin-bottom: -24px;
  }
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item.is-highlighted:before {
  content: attr(data-highlighted);
  position: absolute;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  width: 100%;
  text-align: center;
  transform: translateX(-50%);
  font-family: var(--heading-font, "Rubik");
  text-transform: uppercase;
  font-weight: bold;
  opacity: 0.75;
}
@media screen and (min-width: 992px) {
  .pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item.is-highlighted:before {
    top: -48px;
  }
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item.is-highlighted .pricing-plan, .pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item.is-highlighted .pricing-type {
  margin-top: 48px;
}
@media screen and (min-width: 992px) {
  .pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item.is-highlighted .pricing-plan, .pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item.is-highlighted .pricing-type {
    margin-top: 0;
  }
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item.is-collapsed .price-toggler {
  display: block;
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item.is-collapsed .price-advantages {
  overflow: hidden;
  height: 0;
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item:not(.is-collapsed) .price-toggler {
  display: block;
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item:not(.is-collapsed) .price-advantages {
  overflow: hidden;
  height: 0;
}
@media screen and (min-width: 1200px) {
  .pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item:not(.is-collapsed) .price-toggler {
    display: none;
  }
  .pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item:not(.is-collapsed) .price-advantages {
    overflow: initial;
    height: auto;
  }
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-plan {
  text-transform: uppercase;
  opacity: 0.5;
  text-align: center;
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-type {
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  opacity: 0.75;
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-size {
  text-align: center;
  opacity: 0.5;
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-price {
  text-align: center;
  margin-top: 16px;
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-price .pricing-value {
  font-weight: bold;
  line-height: 1.25;
  word-break: break-word;
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-price .pricing-value .pricing-month {
  font-size: 70%;
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-price .pricing-period {
  opacity: 0.75;
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-action {
  margin-top: 24px;
  text-align: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-action .button + .pricing-example {
  margin-top: 16px;
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-action .pricing-example {
  display: inline-block;
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-action .button {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-collapse {
  margin-top: 24px;
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-collapse.is-open {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-collapse.is-open .price-advantages {
  -ms-flex-order: 2;
      order: 2;
  height: 100%;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-collapse.is-open .price-toggler {
  -ms-flex-order: 3;
      order: 3;
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-collapse.is-open .price-toggler .icon {
  -ms-transform: rotate(180deg);
      transform: rotate(180deg);
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-collapse .price-description p {
  line-height: 1.5;
  color: var(--neutral-base, #3e455e);
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-collapse .price-description p:last-child {
  margin-bottom: 0;
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-collapse .price-description + .price-toggler {
  margin-top: 32px;
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-collapse .price-toggler {
  text-align: center;
  color: var(--link-base, #3ebaf6);
  text-decoration: none;
  margin-top: 24px;
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-collapse .price-toggler .icon {
  margin: 0 auto;
  color: var(--link-base, #3ebaf6);
  font-size: 16px;
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-collapse .price-advantages {
  margin: 0;
  padding: 0;
  list-style: none;
  transition: 0.2s ease-in-out;
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-collapse .price-advantages .price-advantages-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 16px;
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-collapse .price-advantages .price-advantages-item:last-child {
  margin-bottom: 0;
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-collapse .price-advantages .price-advantages-item:not(.has-advantages) {
  opacity: 0.5;
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-collapse .price-advantages .price-advantages-item:not(.has-advantages) .icon .fa:before {
  content: "\f05c";
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-collapse .price-advantages .price-advantages-item .icon {
  color: var(--brand-base, #022e69);
  font-size: 20px;
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-collapse .price-advantages .price-advantages-item .icon .fa:before {
  content: "\f05d";
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-collapse .price-advantages .price-advantages-item .item-name {
  margin-left: 8px;
  max-width: calc(100% - 32px);
  word-break: break-word;
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-collapse .price-advantages .price-advantages-item .item-name:not(.link) {
  color: var(--neutral-base, #3e455e);
}
.pricing-plans[data-bg=brand] .pricing-header .heading {
  color: var(--color-white-base, white);
}
.pricing-plans[data-bg=brand] .pricing-header .paragraph {
  color: var(--color-white-base, white);
}
.pricing-plans[data-bg=brand] .pricing-table .pricing-nav .button.is-outline {
  border-color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.pricing-plans[data-bg=brand] .pricing-table .pricing-wrapper .pricing-list .pricing-item.is-highlighted:before {
  color: var(--neutral-base, #3e455e);
}
@media screen and (min-width: 992px) {
  .pricing-plans[data-bg=brand] .pricing-table .pricing-wrapper .pricing-list .pricing-item.is-highlighted:before {
    color: var(--color-white-base, white);
  }
}
.pricing-plans[data-bg=brand][data-type=cards]:has(.highlight) .pricing-plans-cards-list, .pricing-plans[data-bg=brand][data-type=cards-topics-type-2]:has(.highlight) .pricing-plans-cards-list, .pricing-plans[data-bg=brand][data-type=cards-topics-type-1]:has(.highlight) .pricing-plans-cards-list, .pricing-plans[data-bg=brand][data-type=cards-description]:has(.highlight) .pricing-plans-cards-list {
  margin-top: 24px;
}
.pricing-plans[data-bg=brand][data-type=cards] .pricing-plans-cards-list .slick-arrow, .pricing-plans[data-bg=brand][data-type=cards-topics-type-2] .pricing-plans-cards-list .slick-arrow, .pricing-plans[data-bg=brand][data-type=cards-topics-type-1] .pricing-plans-cards-list .slick-arrow, .pricing-plans[data-bg=brand][data-type=cards-description] .pricing-plans-cards-list .slick-arrow {
  color: #fff;
}
.pricing-plans[data-type=cards] .slick-arrow, .pricing-plans[data-type=cards-topics-type-2] .slick-arrow, .pricing-plans[data-type=cards-topics-type-1] .slick-arrow, .pricing-plans[data-type=cards-description] .slick-arrow {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  font-size: 30px;
  cursor: pointer;
  color: var(--brand-base, #022e69);
}
.pricing-plans[data-type=cards] .slick-arrow.left, .pricing-plans[data-type=cards-topics-type-2] .slick-arrow.left, .pricing-plans[data-type=cards-topics-type-1] .slick-arrow.left, .pricing-plans[data-type=cards-description] .slick-arrow.left {
  left: -40px;
}
.pricing-plans[data-type=cards] .slick-arrow.right, .pricing-plans[data-type=cards-topics-type-2] .slick-arrow.right, .pricing-plans[data-type=cards-topics-type-1] .slick-arrow.right, .pricing-plans[data-type=cards-description] .slick-arrow.right {
  right: -40px;
}
@media screen and (min-width: 992px) {
  .pricing-plans[data-type=cards] .pricing-plans-cards-list, .pricing-plans[data-type=cards-topics-type-2] .pricing-plans-cards-list, .pricing-plans[data-type=cards-topics-type-1] .pricing-plans-cards-list, .pricing-plans[data-type=cards-description] .pricing-plans-cards-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    overflow: hidden;
  }
  .pricing-plans[data-type=cards] .pricing-plans-cards-list.slick-initialized.slick-slider, .pricing-plans[data-type=cards-topics-type-2] .pricing-plans-cards-list.slick-initialized.slick-slider, .pricing-plans[data-type=cards-topics-type-1] .pricing-plans-cards-list.slick-initialized.slick-slider, .pricing-plans[data-type=cards-description] .pricing-plans-cards-list.slick-initialized.slick-slider {
    overflow: visible;
  }
}
.pricing-plans[data-type=cards] .pricing-plan-card-wrapper, .pricing-plans[data-type=cards-topics-type-2] .pricing-plan-card-wrapper, .pricing-plans[data-type=cards-topics-type-1] .pricing-plan-card-wrapper, .pricing-plans[data-type=cards-description] .pricing-plan-card-wrapper {
  padding: 0 8px;
  min-width: 232px;
}
@media screen and (min-width: 1200px) {
  .pricing-plans[data-type=cards] .pricing-plan-card-wrapper, .pricing-plans[data-type=cards-topics-type-2] .pricing-plan-card-wrapper, .pricing-plans[data-type=cards-topics-type-1] .pricing-plan-card-wrapper, .pricing-plans[data-type=cards-description] .pricing-plan-card-wrapper {
    min-width: 285px;
  }
}
.pricing-plans[data-type=cards] .pricing-plan-card-wrapper .pricing-plan-card, .pricing-plans[data-type=cards-topics-type-2] .pricing-plan-card-wrapper .pricing-plan-card, .pricing-plans[data-type=cards-topics-type-1] .pricing-plan-card-wrapper .pricing-plan-card, .pricing-plans[data-type=cards-description] .pricing-plan-card-wrapper .pricing-plan-card {
  position: relative;
  background-color: #fff;
  border-radius: var(--border-radius, 3px);
  border: solid 1px #EAECEE;
  margin-top: 48px;
}
.pricing-plans[data-type=cards] .pricing-plan-card-wrapper .pricing-plan-card.highlight, .pricing-plans[data-type=cards-topics-type-2] .pricing-plan-card-wrapper .pricing-plan-card.highlight, .pricing-plans[data-type=cards-topics-type-1] .pricing-plan-card-wrapper .pricing-plan-card.highlight, .pricing-plans[data-type=cards-description] .pricing-plan-card-wrapper .pricing-plan-card.highlight {
  border-radius: 0 0 3px 3px;
  border-color: var(--highlight-base, #137df7);
  padding: 0;
}
.pricing-plans[data-type=cards] .pricing-plan-card-wrapper .pricing-plan-card.highlight:before, .pricing-plans[data-type=cards-topics-type-2] .pricing-plan-card-wrapper .pricing-plan-card.highlight:before, .pricing-plans[data-type=cards-topics-type-1] .pricing-plan-card-wrapper .pricing-plan-card.highlight:before, .pricing-plans[data-type=cards-description] .pricing-plan-card-wrapper .pricing-plan-card.highlight:before {
  content: "";
  position: absolute;
  height: 40px;
  background-color: var(--highlight-base, #137df7);
  left: -1px;
  right: -1px;
  top: -40px;
  border-radius: 3px 3px 0 0;
}
.pricing-plans[data-type=cards] .pricing-plan-card-wrapper .pricing-plan-card.highlight .highlight-text, .pricing-plans[data-type=cards-topics-type-2] .pricing-plan-card-wrapper .pricing-plan-card.highlight .highlight-text, .pricing-plans[data-type=cards-topics-type-1] .pricing-plan-card-wrapper .pricing-plan-card.highlight .highlight-text, .pricing-plans[data-type=cards-description] .pricing-plan-card-wrapper .pricing-plan-card.highlight .highlight-text {
  position: absolute;
  top: -32px;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  color: #fff;
}
.pricing-plans[data-type=cards] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header, .pricing-plans[data-type=cards-topics-type-2] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header, .pricing-plans[data-type=cards-topics-type-1] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header, .pricing-plans[data-type=cards-description] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header {
  padding: 16px;
}
.pricing-plans[data-type=cards] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header .card-title, .pricing-plans[data-type=cards-topics-type-2] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header .card-title, .pricing-plans[data-type=cards-topics-type-1] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header .card-title, .pricing-plans[data-type=cards-description] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header .card-title {
  font-family: var(--heading-font, "Rubik");
  color: var(--neutral-base, #3e455e);
  margin-bottom: 16px;
  font-size: var(--font-size-16, 1em);
  font-weight: 600;
}
.pricing-plans[data-type=cards] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header .price-group, .pricing-plans[data-type=cards-topics-type-2] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header .price-group, .pricing-plans[data-type=cards-topics-type-1] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header .price-group, .pricing-plans[data-type=cards-description] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header .price-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
  margin-bottom: 24px;
  height: 58px;
}
.pricing-plans[data-type=cards] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header .price-group .main-price, .pricing-plans[data-type=cards-topics-type-2] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header .price-group .main-price, .pricing-plans[data-type=cards-topics-type-1] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header .price-group .main-price, .pricing-plans[data-type=cards-description] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header .price-group .main-price {
  display: -ms-flexbox;
  display: flex;
}
.pricing-plans[data-type=cards] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header .price-group .main-price .value, .pricing-plans[data-type=cards-topics-type-2] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header .price-group .main-price .value, .pricing-plans[data-type=cards-topics-type-1] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header .price-group .main-price .value, .pricing-plans[data-type=cards-description] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header .price-group .main-price .value {
  font-size: var(--font-size-24, 1.5em);
  color: var(--highlight-base, #137df7);
  font-weight: 600;
}
.pricing-plans[data-type=cards] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header .price-group .main-price .recurrence, .pricing-plans[data-type=cards-topics-type-2] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header .price-group .main-price .recurrence, .pricing-plans[data-type=cards-topics-type-1] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header .price-group .main-price .recurrence, .pricing-plans[data-type=cards-description] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header .price-group .main-price .recurrence {
  font-size: var(--font-size-14, 0.875em);
  -ms-transform: translateY(10px);
      transform: translateY(10px);
}
.pricing-plans[data-type=cards] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header .price-group .alt-price, .pricing-plans[data-type=cards-topics-type-2] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header .price-group .alt-price, .pricing-plans[data-type=cards-topics-type-1] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header .price-group .alt-price, .pricing-plans[data-type=cards-description] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header .price-group .alt-price {
  font-size: var(--font-size-14, 0.875em);
}
.pricing-plans[data-type=cards] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header .button, .pricing-plans[data-type=cards-topics-type-2] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header .button, .pricing-plans[data-type=cards-topics-type-1] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header .button, .pricing-plans[data-type=cards-description] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header .button {
  width: 100%;
  padding: 12px;
  text-align: center;
}
.pricing-plans[data-type=cards] .pricing-plans-cards-list {
  position: relative;
}
.pricing-plans[data-type=cards] .pricing-plans-cards-list .pricing-plan-card-body .card-content-item {
  padding: 0 16px 24px 16px;
}
.pricing-plans[data-type=cards] .pricing-plans-cards-list .pricing-plan-card-body .card-content-item:last-of-type .card-content-item-header.open:after {
  height: 1px;
}
.pricing-plans[data-type=cards] .pricing-plans-cards-list .pricing-plan-card-body .card-content-item:last-of-type .card-content-item-header:after {
  height: 0;
}
.pricing-plans[data-type=cards] .pricing-plans-cards-list .pricing-plan-card-body .card-content-item .card-content-item-header {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 4px;
  cursor: pointer;
}
.pricing-plans[data-type=cards] .pricing-plans-cards-list .pricing-plan-card-body .card-content-item .card-content-item-header:has(.paywalled) {
  cursor: default;
}
.pricing-plans[data-type=cards] .pricing-plans-cards-list .pricing-plan-card-body .card-content-item .card-content-item-header:after {
  content: "";
  height: 1px;
  background-color: #F4F5F6;
  width: 100%;
  position: absolute;
  bottom: -12px;
}
.pricing-plans[data-type=cards] .pricing-plans-cards-list .pricing-plan-card-body .card-content-item .card-content-item-header .counter, .pricing-plans[data-type=cards] .pricing-plans-cards-list .pricing-plan-card-body .card-content-item .card-content-item-header .paywalled, .pricing-plans[data-type=cards] .pricing-plans-cards-list .pricing-plan-card-body .card-content-item .card-content-item-header .unlimited {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background-color: #EAECEE;
  color: var(--neutral-base, #3e455e);
  font-size: var(--font-size-12, 0.75em);
}
.pricing-plans[data-type=cards] .pricing-plans-cards-list .pricing-plan-card-body .card-content-item .card-content-item-header .title {
  font-size: var(--font-size-14, 0.875em);
}
.pricing-plans[data-type=cards] .pricing-plans-cards-list .pricing-plan-card-body .card-content-item .card-content-item-header .fa-times {
  position: absolute;
  right: 0;
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  font-size: 12px;
  transition: 0.3s;
}
.pricing-plans[data-type=cards] .pricing-plans-cards-list .pricing-plan-card-body .card-content-item .card-content-item-header .paywalled {
  font-size: 11px;
}
.pricing-plans[data-type=cards] .pricing-plans-cards-list .pricing-plan-card-body .card-content-item .card-content-item-header .unlimited {
  font-size: 16px;
  line-height: 12px;
}
.pricing-plans[data-type=cards] .pricing-plans-cards-list .pricing-plan-card-body .card-content-item .card-content-item-header.open {
  position: relative;
}
.pricing-plans[data-type=cards] .pricing-plans-cards-list .pricing-plan-card-body .card-content-item .card-content-item-header.open .fa-times {
  -ms-transform: rotate(0deg);
      transform: rotate(0deg);
}
.pricing-plans[data-type=cards] .pricing-plans-cards-list .pricing-plan-card-body .card-content-item .card-content-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.pricing-plans[data-type=cards] .pricing-plans-cards-list .pricing-plan-card-body .card-content-item .card-content-list li {
  font-size: var(--font-size-16, 1em);
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  padding-top: 12px;
}
.pricing-plans[data-type=cards] .pricing-plans-cards-list .pricing-plan-card-body .card-content-item .card-content-list li:before {
  content: "\f00c";
  font-family: "FontAwesome";
  display: inline-block;
  position: relative;
  margin-right: 8px;
  color: var(--highlight-base, #137df7);
}
.pricing-plans[data-type=cards] .pricing-plans-cards-list .pricing-plan-card-body .card-content-item .card-content-list li a.pricing-example {
  color: var(--link-base, #3ebaf6);
  width: 100%;
  font-size: 14px;
  display: block;
  margin-left: 28px;
  transition: 0.2s;
  border: 0 solid transparent;
}
.pricing-plans[data-type=cards] .pricing-plans-cards-list .pricing-plan-card-body .card-content-item .card-content-list li a.pricing-example:hover, .pricing-plans[data-type=cards] .pricing-plans-cards-list .pricing-plan-card-body .card-content-item .card-content-list li a.pricing-example:focus, .pricing-plans[data-type=cards] .pricing-plans-cards-list .pricing-plan-card-body .card-content-item .card-content-list li a.pricing-example:focus-within, .pricing-plans[data-type=cards] .pricing-plans-cards-list .pricing-plan-card-body .card-content-item .card-content-list li a.pricing-example:focus-visible {
  opacity: 0.5;
}
.pricing-plans[data-type=cards] .pricing-plans-cards-list .pricing-plan-card-body .card-content-item .card-content-list li a.pricing-example:hover, .pricing-plans[data-type=cards] .pricing-plans-cards-list .pricing-plan-card-body .card-content-item .card-content-list li a.pricing-example:active, .pricing-plans[data-type=cards] .pricing-plans-cards-list .pricing-plan-card-body .card-content-item .card-content-list li a.pricing-example:focus, .pricing-plans[data-type=cards] .pricing-plans-cards-list .pricing-plan-card-body .card-content-item .card-content-list li a.pricing-example:focus-within, .pricing-plans[data-type=cards] .pricing-plans-cards-list .pricing-plan-card-body .card-content-item .card-content-list li a.pricing-example:focus-visible, .pricing-plans[data-type=cards] .pricing-plans-cards-list .pricing-plan-card-body .card-content-item .card-content-list li a.pricing-example:target {
  transition: 0.2s;
  border: none;
}
.pricing-plans[data-type=cards] .pricing-plans-cards-list .pricing-plan-card-body .card-content-item .card-content-list li:first-of-type {
  padding-top: 32px;
}
.pricing-plans[data-type=cards] .pricing-plans-cards-list .pricing-plan-card-body .card-content-item .card-content-list li:last-of-type {
  padding-bottom: 24px;
}
.pricing-plans[data-type=cards-topics-type-2] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header .button {
  margin-bottom: 4px;
}
.pricing-plans[data-type=cards-topics-type-2] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header .button:last-of-type {
  margin-bottom: 0;
}
.pricing-plans[data-type=cards-topics-type-2] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header .button.expand-details {
  position: relative;
  background-color: rgba(19, 125, 247, 0.05);
  color: var(--highlight-base, #137df7);
}
.pricing-plans[data-type=cards-topics-type-2] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header .button.expand-details:after {
  font-family: "FontAwesome";
  content: "\f078";
  position: absolute;
  right: 16px;
  color: var(--highlight-base, #137df7);
  font-size: 12px;
  transition: 0.3s;
}
.pricing-plans[data-type=cards-topics-type-2] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header .button.expand-details:hover {
  background-color: rgba(19, 125, 247, 0.15);
}
.pricing-plans[data-type=cards-topics-type-2] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-body .pricing-plan-details-content .details-list {
  margin: 0;
  padding: 16px;
  list-style-type: none;
  position: relative;
}
.pricing-plans[data-type=cards-topics-type-2] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-body .pricing-plan-details-content .details-list:first-of-type:before {
  content: "";
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #EAECEE;
  text-align: center;
}
.pricing-plans[data-type=cards-topics-type-2] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-body .pricing-plan-details-content .details-list li {
  margin-bottom: 8px;
  font-weight: 400;
  font-size: var(--font-size-14, 0.875em);
}
.pricing-plans[data-type=cards-topics-type-2] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-body .pricing-plan-details-content .details-list li:last-of-type {
  margin-bottom: 0;
}
.pricing-plans[data-type=cards-topics-type-2] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-body .pricing-plan-details-content .details-list li.title {
  font-weight: 600;
}
.pricing-plans[data-type=cards-topics-type-2] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-body .pricing-plan-details-content .details-list li:not(.title):not(.unlimited):not(.featured):not(.paywalled):before {
  content: "";
  height: 4px;
  border-radius: 3px;
  background-color: var(--highlight-base, #137df7);
  display: inline-block;
  position: relative;
  -ms-transform: translateY(-3px);
      transform: translateY(-3px);
  width: 4px;
}
.pricing-plans[data-type=cards-topics-type-2] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-body .pricing-plan-details-content .details-list li:before {
  margin-right: 8px;
}
.pricing-plans[data-type=cards-topics-type-2] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-body .pricing-plan-details-content .details-list li.unlimited:before, .pricing-plans[data-type=cards-topics-type-2] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-body .pricing-plan-details-content .details-list li.featured:before, .pricing-plans[data-type=cards-topics-type-2] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-body .pricing-plan-details-content .details-list li.paywalled:before {
  width: 14px;
  color: var(--highlight-base, #137df7);
}
.pricing-plans[data-type=cards-topics-type-2] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-body .pricing-plan-details-content .details-list li.unlimited:before {
  content: "∞";
  font-family: "Roboto";
  font-size: 18px;
  line-height: 16px;
  margin-left: -5px;
  margin-right: 4px;
}
.pricing-plans[data-type=cards-topics-type-2] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-body .pricing-plan-details-content .details-list li.featured:before {
  font-family: "FontAwesome";
  content: "\f005";
}
.pricing-plans[data-type=cards-topics-type-2] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-body .pricing-plan-details-content .details-list li.paywalled:before {
  font-family: "FontAwesome";
  content: "\f13e";
  margin-left: -4px;
  margin-right: 7px;
}
.pricing-plans[data-type=cards-topics-type-2] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-body .pricing-plan-details-content .details-list li:first-of-type:before {
  display: none;
}
.pricing-plans[data-type=cards-topics-type-1] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-header .price-group {
  margin-bottom: 0;
}
.pricing-plans[data-type=cards-topics-type-1] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-body .details-list {
  margin: 0;
  padding: 0 16px 16px 16px;
  list-style-type: none;
  position: relative;
}
.pricing-plans[data-type=cards-topics-type-1] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-body .details-list li {
  margin-bottom: 8px;
  font-weight: 400;
  font-size: var(--font-size-14, 0.875em);
}
.pricing-plans[data-type=cards-topics-type-1] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-body .details-list li:last-of-type {
  margin-bottom: 0;
}
.pricing-plans[data-type=cards-topics-type-1] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-body .details-list li:before {
  content: "\f00c";
  font-family: "FontAwesome";
  display: inline-block;
  position: relative;
  margin-right: 8px;
  color: var(--highlight-base, #137df7);
  width: 14px;
  text-align: center;
}
.pricing-plans[data-type=cards-topics-type-1] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-body .details-list li.unlimited:before {
  content: "∞";
  font-family: "Roboto";
  font-size: 18px;
  line-height: 16px;
}
.pricing-plans[data-type=cards-topics-type-1] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-body .details-list li.featured:before {
  content: "\f005";
}
.pricing-plans[data-type=cards-topics-type-1] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-body .details-list li.paywalled:before {
  content: "\f13e";
}
.pricing-plans[data-type=cards-topics-type-1] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-footer {
  padding: 0 16px 16px 16px;
}
.pricing-plans[data-type=cards-topics-type-1] .pricing-plan-card-wrapper .pricing-plan-card .pricing-plan-card-footer .button {
  width: 100%;
  padding: 12px;
  text-align: center;
}
.pricing-plans[data-type=cards-description] .pricing-plan-card-body {
  padding: 16px;
  border-top: solid 1px #EAECEE;
}
.pricing-plans[data-type=cards-description] .pricing-plan-card-body .card-description {
  font-size: var(--font-size-14, 0.875em);
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
.pricing-plans[data-type=cards-single] .pricing-plan-card {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-top: 40px;
  border: solid 1px #EAECEE;
  border-radius: 3px;
  max-height: 450px;
}
@media screen and (max-width: 992px) {
  .pricing-plans[data-type=cards-single] .pricing-plan-card {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-height: none;
  }
}
.pricing-plans[data-type=cards-single] .pricing-plan-card.no-image .content-block, .pricing-plans[data-type=cards-single] .pricing-plan-card.no-image .topics-block {
  padding: 108px 40px;
}
.pricing-plans[data-type=cards-single] .pricing-plan-card.no-image .content-block .content-block-header .price-group, .pricing-plans[data-type=cards-single] .pricing-plan-card.no-image .topics-block .content-block-header .price-group {
  width: 100%;
  margin-bottom: 0;
}
@media screen and (max-width: 992px) {
  .pricing-plans[data-type=cards-single] .pricing-plan-card.no-image .content-block {
    padding: 24px 16px 0 16px;
  }
}
@media screen and (max-width: 992px) {
  .pricing-plans[data-type=cards-single] .pricing-plan-card.no-image .topics-block {
    padding: 0 16px 24px 16px;
  }
}
.pricing-plans[data-type=cards-single] .pricing-plan-card.alt-order .image-block, .pricing-plans[data-type=cards-single] .pricing-plan-card.alt-order .topics-block {
  -ms-flex-order: 2;
      order: 2;
}
.pricing-plans[data-type=cards-single] .pricing-plan-card.alt-order .content-block {
  -ms-flex-order: 1;
      order: 1;
}
.pricing-plans[data-type=cards-single] .pricing-plan-card .image-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 50%;
  overflow: hidden;
  background-color: #fff;
}
@media screen and (max-width: 992px) {
  .pricing-plans[data-type=cards-single] .pricing-plan-card .image-block {
    width: 100%;
  }
}
.pricing-plans[data-type=cards-single] .pricing-plan-card .image-block img {
  display: block;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}
.pricing-plans[data-type=cards-single] .pricing-plan-card .topics-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.pricing-plans[data-type=cards-single] .pricing-plan-card .topics-block .details-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: relative;
}
.pricing-plans[data-type=cards-single] .pricing-plan-card .topics-block .details-list li {
  margin-bottom: 8px;
  font-weight: 400;
  font-size: var(--font-size-16, 1em);
}
.pricing-plans[data-type=cards-single] .pricing-plan-card .topics-block .details-list li:last-of-type {
  margin-bottom: 0;
}
.pricing-plans[data-type=cards-single] .pricing-plan-card .topics-block .details-list li:before {
  content: "\f00c";
  font-family: "FontAwesome";
  display: inline-block;
  position: relative;
  margin-right: 8px;
  color: var(--highlight-base, #137df7);
  width: 14px;
  text-align: center;
}
.pricing-plans[data-type=cards-single] .pricing-plan-card .content-block, .pricing-plans[data-type=cards-single] .pricing-plan-card .topics-block {
  width: 50%;
  background-color: #fff;
  padding: 24px 24px 24px 32px;
  overflow: auto;
}
.pricing-plans[data-type=cards-single] .pricing-plan-card .content-block::-webkit-scrollbar-track, .pricing-plans[data-type=cards-single] .pricing-plan-card .topics-block::-webkit-scrollbar-track {
  background-color: #d5e1e8;
}
.pricing-plans[data-type=cards-single] .pricing-plan-card .content-block::-webkit-scrollbar, .pricing-plans[data-type=cards-single] .pricing-plan-card .topics-block::-webkit-scrollbar {
  height: 6px;
  width: 8px;
  background-color: #becfd7;
}
.pricing-plans[data-type=cards-single] .pricing-plan-card .content-block::-webkit-scrollbar-thumb, .pricing-plans[data-type=cards-single] .pricing-plan-card .topics-block::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background-color: #becfd7;
}
@media screen and (max-width: 992px) {
  .pricing-plans[data-type=cards-single] .pricing-plan-card .content-block, .pricing-plans[data-type=cards-single] .pricing-plan-card .topics-block {
    width: 100%;
  }
}
.pricing-plans[data-type=cards-single] .pricing-plan-card .content-block .content-block-header .content-block-title, .pricing-plans[data-type=cards-single] .pricing-plan-card .topics-block .content-block-header .content-block-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 18px;
}
.pricing-plans[data-type=cards-single] .pricing-plan-card .content-block .content-block-header .content-block-title h3, .pricing-plans[data-type=cards-single] .pricing-plan-card .topics-block .content-block-header .content-block-title h3 {
  font-size: var(--font-size-20, 1.25em);
  margin-bottom: 0;
}
.pricing-plans[data-type=cards-single] .pricing-plan-card .content-block .content-block-header .content-block-title .tag-free-trial, .pricing-plans[data-type=cards-single] .pricing-plan-card .topics-block .content-block-header .content-block-title .tag-free-trial {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  border: solid 1px var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  border-radius: 10px;
  font-size: var(--font-size-12, 0.75em);
  padding: 4px 12px;
  height: 24px;
  margin-left: 16px;
}
.pricing-plans[data-type=cards-single] .pricing-plan-card .content-block .content-block-header .description, .pricing-plans[data-type=cards-single] .pricing-plan-card .topics-block .content-block-header .description {
  font-size: var(--font-size-14, 0.875em);
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
.pricing-plans[data-type=cards-single] .pricing-plan-card .content-block .content-block-header .price-group, .pricing-plans[data-type=cards-single] .pricing-plan-card .topics-block .content-block-header .price-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
  margin-bottom: 24px;
  min-height: 58px;
  min-width: 178px;
  width: fit-content;
}
@media screen and (max-width: 992px) {
  .pricing-plans[data-type=cards-single] .pricing-plan-card .content-block .content-block-header .price-group, .pricing-plans[data-type=cards-single] .pricing-plan-card .topics-block .content-block-header .price-group {
    margin-bottom: 16px;
  }
}
.pricing-plans[data-type=cards-single] .pricing-plan-card .content-block .content-block-header .price-group .main-price, .pricing-plans[data-type=cards-single] .pricing-plan-card .topics-block .content-block-header .price-group .main-price {
  display: -ms-flexbox;
  display: flex;
}
.pricing-plans[data-type=cards-single] .pricing-plan-card .content-block .content-block-header .price-group .main-price .value, .pricing-plans[data-type=cards-single] .pricing-plan-card .topics-block .content-block-header .price-group .main-price .value {
  font-size: var(--font-size-24, 1.5em);
  color: var(--highlight-base, #137df7);
  font-weight: 600;
}
.pricing-plans[data-type=cards-single] .pricing-plan-card .content-block .content-block-header .price-group .main-price .recurrence, .pricing-plans[data-type=cards-single] .pricing-plan-card .topics-block .content-block-header .price-group .main-price .recurrence {
  font-size: var(--font-size-14, 0.875em);
  -ms-transform: translateY(10px);
      transform: translateY(10px);
}
.pricing-plans[data-type=cards-single] .pricing-plan-card .content-block .content-block-header .price-group .alt-price, .pricing-plans[data-type=cards-single] .pricing-plan-card .topics-block .content-block-header .price-group .alt-price {
  font-size: var(--font-size-14, 0.875em);
}
.pricing-plans[data-type=cards-single] .pricing-plan-card .content-block .content-block-header .price-group .button, .pricing-plans[data-type=cards-single] .pricing-plan-card .topics-block .content-block-header .price-group .button {
  margin-top: 16px;
  text-align: center;
  width: 100%;
}
.pricing-plans[data-type=cards-single] .pricing-plan-card .content-block .content-block-body .details-list, .pricing-plans[data-type=cards-single] .pricing-plan-card .topics-block .content-block-body .details-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: relative;
}
.pricing-plans[data-type=cards-single] .pricing-plan-card .content-block .content-block-body .details-list li, .pricing-plans[data-type=cards-single] .pricing-plan-card .topics-block .content-block-body .details-list li {
  margin-bottom: 8px;
  font-weight: 400;
  font-size: var(--font-size-16, 1em);
}
.pricing-plans[data-type=cards-single] .pricing-plan-card .content-block .content-block-body .details-list li:last-of-type, .pricing-plans[data-type=cards-single] .pricing-plan-card .topics-block .content-block-body .details-list li:last-of-type {
  margin-bottom: 0;
}
.pricing-plans[data-type=cards-single] .pricing-plan-card .content-block .content-block-body .details-list li:before, .pricing-plans[data-type=cards-single] .pricing-plan-card .topics-block .content-block-body .details-list li:before {
  content: "\f00c";
  font-family: "FontAwesome";
  display: inline-block;
  position: relative;
  margin-right: 8px;
  color: var(--highlight-base, #137df7);
  width: 14px;
  text-align: center;
}
.pricing-plans[data-type=cards-single] .pricing-plan-card .content-block .content-block-body .details-list li.unlimited:before, .pricing-plans[data-type=cards-single] .pricing-plan-card .topics-block .content-block-body .details-list li.unlimited:before {
  content: "∞";
  font-family: "Roboto";
  font-size: 20px;
  -ms-transform: translateY(2px);
      transform: translateY(2px);
}
.pricing-plans[data-type=cards-single] .pricing-plan-card .content-block .content-block-body .details-list li.featured:before, .pricing-plans[data-type=cards-single] .pricing-plan-card .topics-block .content-block-body .details-list li.featured:before {
  content: "\f005";
}
.pricing-plans[data-type=cards-single] .pricing-plan-card .content-block .content-block-body .details-list li.paywalled:before, .pricing-plans[data-type=cards-single] .pricing-plan-card .topics-block .content-block-body .details-list li.paywalled:before {
  content: "\f13e";
}
.pricing-plans .plan-comparison-table {
  position: relative;
  padding-top: 60px;
}
@media screen and (max-width: 992px) {
  .pricing-plans .plan-comparison-table {
    display: none;
  }
}
.pricing-plans .plan-comparison-table.mobile-view {
  display: none;
}
@media screen and (max-width: 992px) {
  .pricing-plans .plan-comparison-table.mobile-view {
    display: block;
  }
}
.pricing-plans .plan-comparison-table[amount-plans="2"] .slider-controls, .pricing-plans .plan-comparison-table[amount-plans="3"] .slider-controls, .pricing-plans .plan-comparison-table[amount-plans="4"] .slider-controls {
  display: none;
}
@media screen and (min-width: 1200px) {
  .pricing-plans .plan-comparison-table[amount-plans="2"] .table-header-wrapper {
    padding-left: 295px;
    max-width: 1140px;
  }
}
.pricing-plans .plan-comparison-table[amount-plans="2"] .table-header .table-header-column {
  width: 50%;
}
.pricing-plans .plan-comparison-table[amount-plans="2"] .table-frame {
  width: 100%;
}
.pricing-plans .plan-comparison-table[amount-plans="2"] .table-frame .table-data .column {
  width: 50%;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .pricing-plans .plan-comparison-table[amount-plans="3"] .table-header-wrapper {
    padding-left: 242px;
    max-width: 930px;
  }
}
@media screen and (min-width: 1200px) {
  .pricing-plans .plan-comparison-table[amount-plans="3"] .table-header-wrapper {
    padding-left: 295px;
    max-width: 1140px;
  }
}
.pricing-plans .plan-comparison-table[amount-plans="3"] .table-header .table-header-column {
  width: 33.3%;
}
.pricing-plans .plan-comparison-table[amount-plans="3"] .table-frame {
  width: 100%;
}
.pricing-plans .plan-comparison-table[amount-plans="3"] .table-frame .table-data {
  margin-left: 241px;
}
@media screen and (min-width: 1200px) {
  .pricing-plans .plan-comparison-table[amount-plans="3"] .table-frame .table-data {
    margin-left: 295px;
  }
}
.pricing-plans .plan-comparison-table[amount-plans="3"] .table-frame .table-data .column {
  width: calc(33.3% + 1px);
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .pricing-plans .plan-comparison-table[amount-plans="4"] .table-header-wrapper {
    padding-left: 242px;
    max-width: 930px;
  }
}
@media screen and (min-width: 1200px) {
  .pricing-plans .plan-comparison-table[amount-plans="4"] .table-header-wrapper {
    padding-left: 296px;
    max-width: 1140px;
  }
}
@media screen and (min-width: 1200px) {
  .pricing-plans .plan-comparison-table[amount-plans="4"] .table-header-wrapper .table-header .table-header-column {
    min-width: 211px;
    width: 211px;
  }
}
.pricing-plans .plan-comparison-table[amount-plans="4"] .table-frame {
  width: 100%;
}
.pricing-plans .plan-comparison-table[amount-plans="4"] .table-frame .table-data {
  margin-left: 295px;
}
@media screen and (max-width: 1200px) {
  .pricing-plans .plan-comparison-table[amount-plans="4"] .table-frame .table-data {
    margin-left: 241px;
  }
}
.pricing-plans .plan-comparison-table[amount-plans="4"] .table-frame .table-data .column {
  min-width: 211px;
  width: 211px;
}
@media screen and (max-width: 1200px) {
  .pricing-plans .plan-comparison-table[amount-plans="4"] .table-frame .table-data .column {
    min-width: 172px;
    width: 172px;
  }
}
.pricing-plans .plan-comparison-table[amount-plans="4"] .table-frame .table-data .column.highlight {
  min-width: 211px;
  width: 211px;
  border-right: 0;
}
@media screen and (max-width: 1200px) {
  .pricing-plans .plan-comparison-table[amount-plans="4"] .table-frame .table-data .column.highlight {
    min-width: 172px;
    width: 172px;
  }
}
.pricing-plans .plan-comparison-table .table-header-wrapper {
  position: relative;
  padding-left: 295px;
  background-color: #fff;
  z-index: 3;
  max-width: 1135px;
}
@media screen and (max-width: 1200px) {
  .pricing-plans .plan-comparison-table .table-header-wrapper {
    padding-left: 241px;
    max-width: 929px;
  }
}
@media screen and (max-width: 992px) {
  .pricing-plans .plan-comparison-table .table-header-wrapper {
    padding-left: 44.5%;
  }
}
.pricing-plans .plan-comparison-table .table-header-wrapper.fixed {
  position: fixed;
  top: 0;
  left: calc((100% - 1140px) / 2);
  right: 0;
}
@media screen and (max-width: 1200px) {
  .pricing-plans .plan-comparison-table .table-header-wrapper.fixed {
    max-width: 929px;
    left: calc((100% - 930px) / 2);
  }
}
.pricing-plans .plan-comparison-table .table-header-wrapper.fixed:before {
  content: "";
  background-color: #fff;
  display: block;
  position: absolute;
  left: 0;
  height: 40px;
  top: -40px;
  width: 100%;
}
.pricing-plans .plan-comparison-table .table-header-wrapper .slider-controls {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  cursor: pointer;
}
@media screen and (max-width: 992px) {
  .pricing-plans .plan-comparison-table .table-header-wrapper .slider-controls {
    display: none;
  }
}
.pricing-plans .plan-comparison-table .table-header-wrapper .slider-controls.slick-prev {
  left: 244px;
}
@media screen and (max-width: 1200px) {
  .pricing-plans .plan-comparison-table .table-header-wrapper .slider-controls.slick-prev {
    left: 190px;
  }
}
.pricing-plans .plan-comparison-table .table-header-wrapper .slider-controls.slick-next {
  right: -50px;
}
.pricing-plans .plan-comparison-table .table-header-wrapper .slider-controls.disabled .fa {
  opacity: 0.5;
}
.pricing-plans .plan-comparison-table .table-header-wrapper .slider-controls .fa {
  font-size: 32px;
  color: #3E465E;
  transition: 0.2s;
}
.pricing-plans .plan-comparison-table .table-header, .pricing-plans .plan-comparison-table .table-data {
  display: -ms-flexbox;
  display: flex;
  overflow-x: hidden;
  position: relative;
  transition: transform 0.3s ease;
  padding-top: 40px;
  width: auto;
  background-color: #fff;
  font-size: 0;
  z-index: 3;
}
.pricing-plans .plan-comparison-table .table-header .table-header-column, .pricing-plans .plan-comparison-table .table-data .table-header-column {
  -ms-flex: 1;
      flex: 1;
  position: relative;
  display: inline-block;
  padding: 16px;
  min-width: 210px;
  width: 210px;
  height: 200px;
  box-sizing: border-box;
  border-right: solid 1px #EAECEE;
  border-top: solid 1px #EAECEE;
  background-color: #fff;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .pricing-plans .plan-comparison-table .table-header .table-header-column, .pricing-plans .plan-comparison-table .table-data .table-header-column {
    min-width: 172px;
    width: 172px;
    padding: 12px 16px;
  }
}
@media screen and (max-width: 992px) {
  .pricing-plans .plan-comparison-table .table-header .table-header-column, .pricing-plans .plan-comparison-table .table-data .table-header-column {
    min-width: 28%;
    width: auto;
  }
}
@media screen and (min-width: 992px) {
  .pricing-plans .plan-comparison-table .table-header .table-header-column:first-of-type, .pricing-plans .plan-comparison-table .table-data .table-header-column:first-of-type {
    border-left: solid 1px #EAECEE;
    border-radius: var(--border-radius, 3px) 0 0 0;
  }
  .pricing-plans .plan-comparison-table .table-header .table-header-column:last-of-type, .pricing-plans .plan-comparison-table .table-data .table-header-column:last-of-type {
    border-right: solid 1px #EAECEE;
    border-radius: 0 var(--border-radius, 3px) 0 0;
  }
}
.pricing-plans .plan-comparison-table .table-header .table-header-column.highlight, .pricing-plans .plan-comparison-table .table-data .table-header-column.highlight {
  background-color: var(--highlight-base, #137df7);
  border-radius: 0;
  border-right: 0;
}
.pricing-plans .plan-comparison-table .table-header .table-header-column.highlight:last-of-type, .pricing-plans .plan-comparison-table .table-data .table-header-column.highlight:last-of-type {
  border-right: solid 1px #EAECEE;
}
@media screen and (min-width: 992px) {
  .pricing-plans .plan-comparison-table .table-header .table-header-column.highlight:first-of-type, .pricing-plans .plan-comparison-table .table-data .table-header-column.highlight:first-of-type {
    border-left: none;
  }
}
.pricing-plans .plan-comparison-table .table-header .table-header-column.highlight .plan-name, .pricing-plans .plan-comparison-table .table-data .table-header-column.highlight .plan-name {
  color: #fff;
}
.pricing-plans .plan-comparison-table .table-header .table-header-column.highlight .plan-price, .pricing-plans .plan-comparison-table .table-data .table-header-column.highlight .plan-price {
  color: #fff;
}
.pricing-plans .plan-comparison-table .table-header .table-header-column.highlight .plan-price .recurrence, .pricing-plans .plan-comparison-table .table-data .table-header-column.highlight .plan-price .recurrence {
  color: #fff;
}
.pricing-plans .plan-comparison-table .table-header .table-header-column.highlight .btn-plan, .pricing-plans .plan-comparison-table .table-data .table-header-column.highlight .btn-plan {
  background-color: #fff;
  border-color: #fff;
  color: var(--brand-base, #022e69);
}
.pricing-plans .plan-comparison-table .table-header .table-header-column.highlight:before, .pricing-plans .plan-comparison-table .table-data .table-header-column.highlight:before {
  content: attr(data-highlight-label);
  font-size: 14px;
  position: absolute;
  top: -40px;
  left: 0;
  height: 40px;
  width: 100%;
  border: solid 2px var(--highlight-base, #137df7);
  background-color: var(--brand-base, #022e69);
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  text-transform: uppercase;
  border-radius: var(--border-radius, 3px) var(--border-radius, 3px) 0 0;
}
.pricing-plans .plan-comparison-table .table-header .table-header-column .plan-name, .pricing-plans .plan-comparison-table .table-data .table-header-column .plan-name {
  position: absolute;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 32px;
  line-height: 1;
}
.pricing-plans .plan-comparison-table .table-header .table-header-column .plan-price, .pricing-plans .plan-comparison-table .table-data .table-header-column .plan-price {
  position: absolute;
  top: 40%;
  line-height: 0.2;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--highlight-base, #137df7);
}
@media screen and (max-width: 992px) {
  .pricing-plans .plan-comparison-table .table-header .table-header-column .plan-price, .pricing-plans .plan-comparison-table .table-data .table-header-column .plan-price {
    top: 30%;
    line-height: 0.6;
  }
}
@media screen and (min-width: 1200px) {
  .pricing-plans .plan-comparison-table .table-header .table-header-column .plan-price, .pricing-plans .plan-comparison-table .table-data .table-header-column .plan-price {
    font-size: 28px;
  }
}
.pricing-plans .plan-comparison-table .table-header .table-header-column .plan-price .recurrence, .pricing-plans .plan-comparison-table .table-data .table-header-column .plan-price .recurrence {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}
.pricing-plans .plan-comparison-table .table-header .table-header-column .btn-plan, .pricing-plans .plan-comparison-table .table-data .table-header-column .btn-plan {
  position: absolute;
  bottom: 8px;
  left: 12px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  border: 1px solid var(--highlight-base, #137df7);
  color: var(--highlight-base, #137df7);
  border-radius: var(--border-radius, 3px);
  font-weight: 500;
  padding: 8px;
  width: calc(100% - 24px);
  font-size: 16px;
  text-align: center;
  max-height: 44px;
}
.pricing-plans .plan-comparison-table .table-header .table-header-column .btn-plan:hover, .pricing-plans .plan-comparison-table .table-data .table-header-column .btn-plan:hover {
  opacity: 0.8;
}
@media screen and (min-width: 992px) {
  .pricing-plans .plan-comparison-table .table-header .table-header-column .btn-plan, .pricing-plans .plan-comparison-table .table-data .table-header-column .btn-plan {
    bottom: 24px;
  }
}
.pricing-plans .plan-comparison-table .table-frame {
  position: relative;
  border-bottom: 1px solid #EAECEE;
  border-left: 1px solid #EAECEE;
  border-right: 1px solid #EAECEE;
  width: calc(100% - 5px);
  border-radius: var(--border-radius, 3px) 0 var(--border-radius, 3px) var(--border-radius, 3px);
}
@media screen and (max-width: 1200px) {
  .pricing-plans .plan-comparison-table .table-frame {
    width: calc(100% - 1px);
  }
}
.pricing-plans .plan-comparison-table .table-frame .line {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding-left: 16px;
  font-size: 16px;
  height: 72px;
}
.pricing-plans .plan-comparison-table .table-frame .line:nth-child(odd) {
  background-color: #fff;
}
.pricing-plans .plan-comparison-table .table-frame .line:nth-child(even) {
  background-color: #FAFAFB;
}
.pricing-plans .plan-comparison-table .table-frame .line:first-of-type {
  border-radius: var(--border-radius, 3px) 0 0 0;
}
.pricing-plans .plan-comparison-table .table-frame .line:nth-last-child(2) {
  border-radius: 0 0 var(--border-radius, 3px) var(--border-radius, 3px);
}
.pricing-plans .plan-comparison-table .table-frame .line.exclusive-content {
  color: #fff;
  background-color: var(--brand-base, #022e69);
}
.pricing-plans .plan-comparison-table .table-frame .line .features {
  position: relative;
}
.pricing-plans .plan-comparison-table .table-frame .line .features .features-trigger {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  border: solid 2px var(--neutral-base, #3e455e);
  margin-left: 12px;
  cursor: pointer;
  transition: 0.2s;
}
.pricing-plans .plan-comparison-table .table-frame .line .features .features-trigger .fa {
  font-size: 12px;
  color: var(--neutral-base, #3e455e);
  transition: 0.2s;
}
.pricing-plans .plan-comparison-table .table-frame .line .features .features-trigger:hover, .pricing-plans .plan-comparison-table .table-frame .line .features .features-trigger:active {
  border-color: var(--highlight-base, #137df7);
}
.pricing-plans .plan-comparison-table .table-frame .line .features .features-trigger:hover .fa, .pricing-plans .plan-comparison-table .table-frame .line .features .features-trigger:active .fa {
  color: var(--highlight-base, #137df7);
}
.pricing-plans .plan-comparison-table .table-frame .line .features .features-list {
  position: absolute;
  background-color: #fff;
  border-radius: var(--border-radius, 3px);
  padding: 16px;
  width: 210px;
  box-shadow: 0px 8px 16px 0px rgba(107, 117, 124, 0.32);
  z-index: 6;
}
.pricing-plans .plan-comparison-table .table-frame .line .features .features-list .header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 12px;
}
.pricing-plans .plan-comparison-table .table-frame .line .features .features-list .header .title {
  font-weight: 700;
}
.pricing-plans .plan-comparison-table .table-frame .line .features .features-list .header .close {
  cursor: pointer;
  transition: 0.2s;
}
.pricing-plans .plan-comparison-table .table-frame .line .features .features-list .header .close:hover {
  opacity: 0.8;
}
.pricing-plans .plan-comparison-table .table-frame .line .features .features-list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.pricing-plans .plan-comparison-table .table-frame .line .features .features-list ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 4px;
  font-size: 14px;
}
.pricing-plans .plan-comparison-table .table-frame .line .features .features-list ul li:before {
  position: absolute;
  left: 0;
  top: 1px;
  font-family: "FontAwesome";
  content: "\f00c";
  color: var(--highlight-base, #137df7);
  font-size: 12px;
  margin-right: 8px;
}
.pricing-plans .plan-comparison-table .table-frame .line .features .features-list ul li:last-of-type {
  margin-bottom: 0;
}
.pricing-plans .plan-comparison-table .table-frame .line .features .features-list ul li .pricing-example {
  display: block;
}
.pricing-plans .plan-comparison-table .table-frame .line .features .features-list .details-default > .details-modal .modal-default {
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
}
.pricing-plans .plan-comparison-table .table-frame .line .link {
  margin-left: 8px;
}
.pricing-plans .plan-comparison-table .table-frame .line .content {
  display: -ms-flexbox;
  display: flex;
  gap: 0 8px;
  max-width: 44%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
}
.pricing-plans .plan-comparison-table .table-frame .line .content .link {
  margin-left: 0;
}
.pricing-plans .plan-comparison-table .table-data {
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  transition: transform 0.3s ease;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin-left: 294px;
  z-index: 1;
  padding-top: 0;
  background-color: transparent;
}
@media screen and (max-width: 1200px) {
  .pricing-plans .plan-comparison-table .table-data {
    margin-left: 240px;
  }
}
.pricing-plans .plan-comparison-table .table-data .column {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  height: 100%;
  min-width: 210px;
  width: 210px;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .pricing-plans .plan-comparison-table .table-data .column {
    min-width: 172px;
    width: 172px;
  }
}
.pricing-plans .plan-comparison-table .table-data .column:first-of-type {
  width: calc(25% - 1px);
}
.pricing-plans .plan-comparison-table .table-data .column:last-of-type.highlight .cel:last-of-type {
  border-radius: 0 0 var(--border-radius, 3px) 0;
}
.pricing-plans .plan-comparison-table .table-data .column.highlight {
  padding: 0;
}
@media screen and (max-width: 1200px) {
  .pricing-plans .plan-comparison-table .table-data .column.highlight {
    min-width: 172px;
    width: 172px;
    border-right: none;
  }
}
.pricing-plans .plan-comparison-table .table-data .column.highlight .cel {
  color: #fff;
  background-color: var(--highlight-base, #137df7);
  border-left: 0;
}
.pricing-plans .plan-comparison-table .table-data .column.highlight .cel.exclusive-content {
  color: #fff;
}
.pricing-plans .plan-comparison-table .table-data .column.highlight .cel.exclusive-content.check:before {
  color: #fff;
}
.pricing-plans .plan-comparison-table .table-data .column.highlight .cel.exclusive-content.check:after {
  color: var(--highlight-base, #137df7);
}
.pricing-plans .plan-comparison-table .table-data .column.highlight .cel.check:before {
  color: #fff;
}
.pricing-plans .plan-comparison-table .table-data .column.highlight .cel.check:after {
  color: var(--highlight-base, #137df7);
}
@media screen and (max-width: 992px) {
  .pricing-plans .plan-comparison-table .table-data .column:not(.highlight):first-of-type .table-header-column {
    border-radius: var(--border-radius, 3px) 0 0 0;
  }
  .pricing-plans .plan-comparison-table .table-data .column:not(.highlight):last-of-type .table-header-column {
    border-radius: 0 var(--border-radius, 3px) 0 0;
  }
}
.pricing-plans .plan-comparison-table .table-data .column .cel {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  height: 72px;
  font-size: 20px;
  font-weight: 700;
}
.pricing-plans .plan-comparison-table .table-data .column .cel.exclusive-content {
  color: #fff;
  border-left: none;
}
.pricing-plans .plan-comparison-table .table-data .column .cel.exclusive-content.check:before {
  color: #fff;
}
.pricing-plans .plan-comparison-table .table-data .column .cel.exclusive-content.check:after {
  color: var(--brand-base, #022e69);
}
.pricing-plans .plan-comparison-table .table-data .column .cel.title p {
  font-size: 16px;
  margin: 0;
}
.pricing-plans .plan-comparison-table .table-data .column .cel.check:before, .pricing-plans .plan-comparison-table .table-data .column .cel.check:after {
  font-family: "FontAwesome";
}
.pricing-plans .plan-comparison-table .table-data .column .cel.check:before {
  content: "\f0a3";
  font-size: 32px;
  color: var(--highlight-base, #137df7);
}
.pricing-plans .plan-comparison-table .table-data .column .cel.check:after {
  content: "\f00c";
  position: absolute;
  color: #fff;
  font-size: 13px;
}
.pricing-plans .plan-comparison-table.mobile-view {
  position: relative;
}
.pricing-plans .plan-comparison-table.mobile-view .swipe-msg {
  font-size: 12px;
  position: absolute;
  top: 180px;
  left: 2%;
  color: var(--neutral-base, #3e455e);
}
.pricing-plans .plan-comparison-table.mobile-view .swipe-msg .fa {
  color: var(--neutral-base, #3e455e);
}
.pricing-plans .plan-comparison-table.mobile-view .table-wrapper {
  padding-top: 140px;
}
.pricing-plans .plan-comparison-table.mobile-view .table-wrapper .table-frame {
  overflow: visible;
}
.pricing-plans .plan-comparison-table.mobile-view .table-wrapper .table-frame .table-data {
  padding-top: 40px;
  margin-left: 46%;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  top: -180px;
  background-color: transparent;
}
.pricing-plans .plan-comparison-table.mobile-view .table-wrapper .table-frame .table-data::-webkit-scrollbar {
  display: none;
}
.pricing-plans .plan-comparison-table.mobile-view .table-wrapper .table-frame .table-data .column {
  min-width: 150px;
}
.pricing-plans .plan-comparison-table.mobile-view .table-wrapper .table-frame .table-data .column .table-header-column {
  padding: 8px;
  min-height: 140px;
  height: 140px;
}
.pricing-plans .plan-comparison-table.mobile-view .table-wrapper .table-frame .table-data .column .table-header-column.highlight:before {
  font-size: 12px;
}
.pricing-plans .plan-comparison-table.mobile-view .table-wrapper .table-frame .table-data .column .table-header-column .plan-name {
  font-size: 12px;
  margin-bottom: 8px;
}
.pricing-plans .plan-comparison-table.mobile-view .table-wrapper .table-frame .table-data .column .table-header-column .plan-price {
  font-size: 20px;
  margin-bottom: 24px;
}
.pricing-plans .plan-comparison-table.mobile-view .table-wrapper .table-frame .table-data .column .table-header-column .plan-price .recurrence {
  font-size: 10px;
}
.pricing-plans .plan-comparison-table.mobile-view .table-wrapper .table-frame .table-data .column .table-header-column .btn-plan {
  padding: 8px 4px;
  font-size: 12px;
}
.pricing-plans[data-bg=neutral] .plan-comparison-table .table-header-wrapper {
  background-color: transparent;
}
.pricing-plans[data-bg=neutral] .plan-comparison-table .table-header-wrapper.fixed {
  background-color: #fff;
}
.pricing-plans[data-bg=neutral] .plan-comparison-table .table-header-wrapper.fixed:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 295px;
  height: 257px;
  background-color: var(--neutral-transp-5, rgba(62, 69, 94, 0.05));
}
@media screen and (max-width: 1200px) {
  .pricing-plans[data-bg=neutral] .plan-comparison-table .table-header-wrapper.fixed:before {
    width: 257px;
  }
}
.pricing-plans[data-bg=neutral] .plan-comparison-table .table-header-wrapper.fixed .table-header {
  background-color: var(--neutral-transp-5, rgba(62, 69, 94, 0.05));
}
.pricing-plans[data-bg=neutral] .plan-comparison-table .table-header-wrapper .table-header {
  background-color: transparent;
}
.pricing-plans[data-bg=brand] .plan-comparison-table[amount-plans="3"] .table-frame, .pricing-plans[data-bg=brand] .plan-comparison-table[amount-plans="2"] .table-frame {
  border-right: 0;
  border-bottom: 0;
}
.pricing-plans[data-bg=brand] .plan-comparison-table .table-header-wrapper {
  background-color: var(--brand-base, #022e69);
}
.pricing-plans[data-bg=brand] .plan-comparison-table .table-header-wrapper .table-header {
  background-color: var(--brand-base, #022e69);
}
.pricing-plans[data-bg=brand] .plan-comparison-table .table-header-wrapper .table-header .table-header-column.highlight {
  border-color: var(--highlight-base, #137df7);
}
.pricing-plans[data-bg=brand] .plan-comparison-table .table-header-wrapper .table-header .table-header-column.highlight:before {
  background-color: #fff;
  color: var(--brand-base, #022e69);
}
.pricing-plans[data-bg=brand] .plan-comparison-table .table-header-wrapper .slider-controls .fa {
  color: #fff;
}
.pricing-plans[data-bg=brand] .plan-comparison-table .table-frame .line.exclusive-content {
  background-color: #fff;
  color: var(--neutral-base, #3e455e);
}
.pricing-plans[data-bg=brand] .plan-comparison-table .table-frame .table-data .column .cel.exclusive-content {
  color: var(--neutral-base, #3e455e);
}
.pricing-plans[data-bg=brand] .plan-comparison-table .table-frame .table-data .column .cel.exclusive-content.check:before {
  color: var(--brand-base, #022e69);
}
.pricing-plans[data-bg=brand] .plan-comparison-table .table-frame .table-data .column .cel.exclusive-content.check:after {
  color: #fff;
}
.pricing-plans[data-bg=brand] .plan-comparison-table.mobile-view .swipe-msg {
  color: #fff;
}
.pricing-plans[data-bg=brand] .plan-comparison-table.mobile-view .swipe-msg .fa {
  color: #fff;
}
.pricing-plans[data-type=detail-preview] {
  padding: 40px 0;
}
.pricing-plans[data-type=detail-preview] .pricing-header .warning-box {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  text-align: left;
  border-radius: var(--border-radius, 3px);
  background-color: #E3ECF0;
  padding: 20px;
  gap: 12px;
  margin-top: 18px;
}
@media screen and (min-width: 992px) {
  .pricing-plans[data-type=detail-preview] .pricing-header .warning-box {
    display: none;
  }
}
.pricing-plans[data-type=detail-preview] .pricing-header .warning-box .fa {
  font-size: 18px;
  color: var(--highlight-base, #137df7);
}
.pricing-plans[data-type=detail-preview] .container-preview {
  position: relative;
  margin-top: 24px;
}
@media screen and (min-width: 992px) {
  .pricing-plans[data-type=detail-preview] .container-preview {
    margin-top: 74px;
  }
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container {
  display: -ms-flexbox;
  display: flex;
  height: auto;
}
@media screen and (min-width: 992px) {
  .pricing-plans[data-type=detail-preview] .container-preview .slider-container {
    min-height: 830px;
  }
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
  width: 35%;
  margin: 0 2%;
}
@media screen and (max-width: 992px) {
  .pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider {
    width: 100%;
    margin: 0 5%;
  }
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider .plan-item {
  display: none;
  position: initial;
  top: 50%;
  left: 60px;
  right: 60px;
  width: calc(100% - 120px);
  max-width: 416px;
  margin: 0 auto;
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider .plan-item.active {
  display: block;
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider .plan-item .plan-header .popular-tag {
  width: fit-content;
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  background-color: #137DF7;
  color: #fff;
  margin-bottom: 12px;
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider .plan-item .plan-header .popular-tag.hidden {
  display: none;
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider .plan-item .plan-header .plan-title {
  color: #fff;
  font-size: 36px;
  font-weight: 500;
  font-family: var(--heading-font, "Rubik");
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider .plan-item .plan-header .price {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  color: #2680EB;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider .plan-item .plan-header .price .recurrence {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  margin-left: 4px;
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider .plan-item .plan-header .second-price {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products {
  margin-top: 18px;
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item {
  margin-bottom: 5px;
  padding: 14px;
  border: solid 2px #fff;
  border-radius: var(--border-radius, 3px);
  transition: all 0.3s ease;
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item.active {
  background-color: #fff;
  color: var(--neutral-base, #3e455e);
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item.active .product-title {
  position: relative;
  color: var(--brand-base, #022e69);
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item.active .product-title .product-quantity {
  background-color: var(--brand-base, #022e69);
  color: #fff;
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item.active .product-title .collapse-icon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  position: absolute;
  right: 0;
  top: 6px;
  width: 32px;
  height: 16px;
  background-color: #EAECEE;
  color: var(--brand-base, #022e69);
  border-radius: 3px;
  transition: 0.2s;
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item.active .product-title .collapse-icon:after {
  font-family: "FontAwesome";
  content: "\f068";
  font-size: 12px;
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item.active .product-title .collapse-icon.opened:after {
  content: "\f068";
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item.active .product-title .collapse-icon.closed:after {
  content: "\f067";
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item.active .product-title:hover:before {
  background-color: #d6d9de;
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item .product-title {
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 8px;
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item .product-title .product-quantity {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  height: 32px;
  width: 32px;
  font-weight: 500;
  background-color: #fff;
  border-radius: var(--border-radius, 3px);
  color: var(--brand-base, #022e69);
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item .product-features {
  display: none;
  color: #fff;
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item .product-features.active {
  color: var(--neutral-base, #3e455e);
  display: block;
  max-height: 180px;
  overflow: auto;
  margin-top: 24px;
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item .product-features ul {
  list-style: none;
  padding-left: 0;
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item .product-features ul li {
  margin-bottom: 5px;
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item .product-features ul li:before {
  font-family: "FontAwesome";
  content: "\f00c";
  font-size: var(--font-24px, );
  color: var(--highlight-base, #137df7);
  margin-right: 4px;
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item .product-features ul li .sample-link {
  color: var(--highlight-base, #137df7);
  text-decoration: none;
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item .product-features ul li .sample-link:hover {
  text-decoration: underline;
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider .plan-item .button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 60px;
  width: 100%;
  margin-top: 24px;
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider .slider-controls {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  width: 100%;
  left: 0;
  z-index: 10;
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider .slider-controls .slider-control {
  position: absolute;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.3s;
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider .slider-controls .slider-control:hover {
  opacity: 0.8;
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider .slider-controls .slider-control.prev {
  left: 10px;
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider .slider-controls .slider-control.next {
  right: 10px;
}
.pricing-plans[data-type=detail-preview] .container-preview .slider-container .edir-plan-slider .slider-controls .slider-control .fa {
  color: #fff;
  font-size: 42px;
}
.pricing-plans[data-type=detail-preview] .container-preview .edir-plan-preview {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 3%;
  width: 55%;
  overflow: hidden;
  transition: all 0.3s ease;
}
@media screen and (max-width: 992px) {
  .pricing-plans[data-type=detail-preview] .container-preview .edir-plan-preview {
    display: none;
  }
}
.pricing-plans[data-type=detail-preview] .container-preview .edir-plan-preview .preview-controls {
  position: relative;
  padding: 40px 0 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 12px;
}
.pricing-plans[data-type=detail-preview] .container-preview .edir-plan-preview .preview-controls .select-listing-type {
  position: absolute;
  left: 0;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  padding-bottom: 20px;
}
.pricing-plans[data-type=detail-preview] .container-preview .edir-plan-preview .preview-controls .select-listing-type .title {
  margin-bottom: 12px;
  color: #fff;
}
.pricing-plans[data-type=detail-preview] .container-preview .edir-plan-preview .preview-controls .select-listing-type select {
  width: 200px;
  height: 40px;
}
.pricing-plans[data-type=detail-preview] .container-preview .edir-plan-preview .preview-controls .preview-control {
  cursor: pointer;
  color: #fff;
  opacity: 0.7;
  transition: all 0.2s ease;
  font-size: 16px;
  font-weight: 400;
  background-color: transparent;
  border: none;
  outline: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 8px;
  z-index: 1;
  -ms-transform: translateX(40px);
      transform: translateX(40px);
}
.pricing-plans[data-type=detail-preview] .container-preview .edir-plan-preview .preview-controls .preview-control:hover {
  opacity: 1;
}
.pricing-plans[data-type=detail-preview] .container-preview .edir-plan-preview .preview-controls .preview-control:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(74, 109, 148, 0.2);
}
.pricing-plans[data-type=detail-preview] .container-preview .edir-plan-preview .preview-controls .preview-control.active {
  opacity: 1;
}
.pricing-plans[data-type=detail-preview] .container-preview .edir-plan-preview .preview-controls .preview-control .fa {
  font-size: 24px;
}
.pricing-plans[data-type=detail-preview] .container-preview .edir-plan-preview .preview-controls .preview-control .fa.fa-mobile {
  font-size: 30px;
}
.pricing-plans[data-type=detail-preview] .container-preview .edir-plan-preview .preview-frame-wrapper:before {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 24px;
  font-size: 28px;
  border-radius: var(--border-radius, 3px) var(--border-radius, 3px) 0 0;
  background-color: var(--highlight-base, #137df7);
  content: "•••";
  color: #fff;
  width: 100%;
  padding-left: 50px;
}
.pricing-plans[data-type=detail-preview] .container-preview .edir-plan-preview .preview-frame-wrapper.mobile:before {
  content: "";
  height: 0;
  opacity: 0;
}
.pricing-plans[data-type=detail-preview] .container-preview .edir-plan-preview .preview-frame-wrapper .empty-state {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  height: 750px;
  width: 100%;
  background-color: #fff;
  border-radius: 0 0 var(--border-radius, 3px) var(--border-radius, 3px);
}
.pricing-plans[data-type=detail-preview] .container-preview .edir-plan-preview .preview-frame-wrapper .empty-state.banner-preview {
  height: inherit;
  background-color: transparent;
}
.pricing-plans[data-type=detail-preview] .container-preview .edir-plan-preview .preview-frame-wrapper .empty-state.banner-preview:before {
  display: none;
}
.pricing-plans[data-type=detail-preview] .container-preview .edir-plan-preview .preview-frame-wrapper .empty-state.banner-preview img {
  border: solid 12px var(--highlight-base, #137df7);
  border-radius: var(--border-radius, 3px);
}
.pricing-plans[data-type=detail-preview] .container-preview .edir-plan-preview .preview-frame-wrapper .empty-state:before {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 24px;
  font-size: 28px;
  border-radius: var(--border-radius, 3px) var(--border-radius, 3px) 0 0;
  background-color: var(--highlight-base, #137df7);
  content: "•••";
  color: #fff;
  width: 100%;
  padding-left: 50px;
  top: -20px;
  position: absolute;
}
.pricing-plans[data-type=detail-preview] .container-preview .edir-plan-preview .preview-frame-wrapper .empty-state .title {
  font-size: 20px;
  font-weight: 600;
  margin-top: 42px;
}
.pricing-plans[data-type=detail-preview] .container-preview .edir-plan-preview .preview-frame-wrapper .empty-state .subtitle {
  font-size: 20px;
  font-weight: 400;
  margin-top: 16px;
  max-width: 60%;
  text-align: center;
}
.pricing-plans[data-type=detail-preview] .container-preview .edir-plan-preview .preview-frame-wrapper .empty-state .box {
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  padding: 20px;
  margin-top: 42px;
  max-width: 70%;
  background-color: var(--neutral-transp-5, rgba(62, 69, 94, 0.05));
}
.pricing-plans[data-type=detail-preview] .container-preview .edir-plan-preview .preview-frame-wrapper .empty-state .box .fa {
  font-size: 28px;
  color: var(--highlight-base, #137df7);
  -ms-transform: translateY(10px);
      transform: translateY(10px);
}
.pricing-plans[data-type=detail-preview] .container-preview .edir-plan-preview .preview-frame-wrapper .empty-state .box .title {
  margin-top: 0;
}
.pricing-plans[data-type=detail-preview] .container-preview .edir-plan-preview .preview-frame-wrapper .empty-state .box .subtitle {
  margin-top: 4px;
  font-size: 16px;
  max-width: 100%;
  text-align: left;
}
.pricing-plans[data-type=detail-preview] .container-preview .edir-plan-preview .preview-frame-wrapper .preview-frame {
  -ms-flex: 1;
      flex: 1;
  width: 100%;
  height: calc(100% - 80px);
  border: none;
  background-color: #ffffff;
  border-radius: 0 0 var(--border-radius, 3px) var(--border-radius, 3px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  position: absolute;
  left: 50%;
}
.pricing-plans[data-type=detail-preview] .container-preview .edir-plan-preview .preview-frame-wrapper .preview-frame:not(.mobile) {
  -ms-transform: translateX(-50%) scale(0.6);
      transform: translateX(-50%) scale(0.6);
  -ms-transform-origin: top;
      transform-origin: top;
}
.pricing-plans[data-type=detail-preview] .container-preview .edir-plan-preview .preview-frame-wrapper .preview-frame.mobile {
  width: 375px;
  border: 12px solid var(--highlight-base, #137df7);
  border-radius: 32px;
  margin: 20px auto;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
}
.pricing-plans[data-type=detail-preview] .container-preview .edir-plan-preview .loading-overlay {
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  background-color: #fff;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.pricing-plans[data-type=detail-preview] .container-preview .edir-plan-preview .loading-overlay.active {
  display: -ms-flexbox;
  display: flex;
}
.pricing-plans[data-type=detail-preview] .container-preview .edir-plan-preview .loading-overlay .loader {
  width: 100px;
  aspect-ratio: 1;
  border: 8px solid #ddd;
  border-radius: 50%;
  position: relative;
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}
.pricing-plans[data-type=detail-preview] .container-preview .edir-plan-preview .loading-overlay .loader:before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 8px solid #137df7;
  animation: l18 2s infinite linear;
}
@keyframes l18 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}
.pricing-plans[data-type=detail-preview][data-bg=base] .pricing-header .warning-box, .pricing-plans[data-type=detail-preview][data-bg=neutral] .pricing-header .warning-box {
  border-radius: var(--border-radius, 3px);
  background-color: var(--neutral-transp-5, rgba(62, 69, 94, 0.05));
}
.pricing-plans[data-type=detail-preview][data-bg=base] .pricing-header .warning-box .fa, .pricing-plans[data-type=detail-preview][data-bg=neutral] .pricing-header .warning-box .fa {
  font-size: 18px;
  color: var(--highlight-base, #137df7);
}
.pricing-plans[data-type=detail-preview][data-bg=base] .container-preview .slider-container .edir-plan-slider .slider-controls .slider-control, .pricing-plans[data-type=detail-preview][data-bg=neutral] .container-preview .slider-container .edir-plan-slider .slider-controls .slider-control {
  color: var(--neutral-base, #3e455e);
}
.pricing-plans[data-type=detail-preview][data-bg=base] .container-preview .slider-container .edir-plan-slider .slider-controls .slider-control .fa, .pricing-plans[data-type=detail-preview][data-bg=neutral] .container-preview .slider-container .edir-plan-slider .slider-controls .slider-control .fa {
  color: var(--neutral-base, #3e455e);
}
.pricing-plans[data-type=detail-preview][data-bg=base] .container-preview .slider-container .edir-plan-slider .plan-item .plan-header .price .recurrence, .pricing-plans[data-type=detail-preview][data-bg=neutral] .container-preview .slider-container .edir-plan-slider .plan-item .plan-header .price .recurrence {
  color: var(--neutral-base, #3e455e);
}
.pricing-plans[data-type=detail-preview][data-bg=base] .container-preview .slider-container .edir-plan-slider .plan-item .plan-header .second-price, .pricing-plans[data-type=detail-preview][data-bg=neutral] .container-preview .slider-container .edir-plan-slider .plan-item .plan-header .second-price {
  color: var(--neutral-base, #3e455e);
}
.pricing-plans[data-type=detail-preview][data-bg=base] .container-preview .slider-container .edir-plan-slider .plan-item .plan-header .plan-title, .pricing-plans[data-type=detail-preview][data-bg=neutral] .container-preview .slider-container .edir-plan-slider .plan-item .plan-header .plan-title {
  color: var(--brand-base, #022e69);
}
.pricing-plans[data-type=detail-preview][data-bg=base] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item, .pricing-plans[data-type=detail-preview][data-bg=neutral] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item {
  border-color: var(--brand-base, #022e69);
}
.pricing-plans[data-type=detail-preview][data-bg=base] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item.active, .pricing-plans[data-type=detail-preview][data-bg=neutral] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item.active {
  background-color: var(--brand-base, #022e69);
}
.pricing-plans[data-type=detail-preview][data-bg=base] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item.active .product-title, .pricing-plans[data-type=detail-preview][data-bg=neutral] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item.active .product-title {
  color: #fff;
}
.pricing-plans[data-type=detail-preview][data-bg=base] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item.active .product-title:before, .pricing-plans[data-type=detail-preview][data-bg=neutral] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item.active .product-title:before {
  background-color: #fff;
}
.pricing-plans[data-type=detail-preview][data-bg=base] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item.active .product-title .product-quantity, .pricing-plans[data-type=detail-preview][data-bg=neutral] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item.active .product-title .product-quantity {
  color: var(--brand-base, #022e69);
  background-color: #fff;
}
.pricing-plans[data-type=detail-preview][data-bg=base] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item .product-title, .pricing-plans[data-type=detail-preview][data-bg=neutral] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item .product-title {
  color: var(--brand-base, #022e69);
  border-color: var(--brand-base, #022e69);
}
.pricing-plans[data-type=detail-preview][data-bg=base] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item .product-title .product-quantity, .pricing-plans[data-type=detail-preview][data-bg=neutral] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item .product-title .product-quantity {
  color: #fff;
  background-color: var(--brand-base, #022e69);
}
.pricing-plans[data-type=detail-preview][data-bg=base] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item .product-features ul li, .pricing-plans[data-type=detail-preview][data-bg=neutral] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item .product-features ul li {
  color: #fff;
}
.pricing-plans[data-type=detail-preview][data-bg=base] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item .product-features ul li:before, .pricing-plans[data-type=detail-preview][data-bg=neutral] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item .product-features ul li:before {
  color: #fff;
}
.pricing-plans[data-type=detail-preview][data-bg=base] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item .product-features ul li .sample-link, .pricing-plans[data-type=detail-preview][data-bg=neutral] .container-preview .slider-container .edir-plan-slider .plan-item .plan-products .product-item .product-features ul li .sample-link {
  color: #fff;
  text-decoration: underline;
}
.pricing-plans[data-type=detail-preview][data-bg=base] .container-preview .edir-plan-preview .preview-controls .select-listing-type .title, .pricing-plans[data-type=detail-preview][data-bg=neutral] .container-preview .edir-plan-preview .preview-controls .select-listing-type .title {
  color: var(--neutral-base, #3e455e);
}
.pricing-plans[data-type=detail-preview][data-bg=base] .container-preview .edir-plan-preview .preview-controls .preview-control, .pricing-plans[data-type=detail-preview][data-bg=neutral] .container-preview .edir-plan-preview .preview-controls .preview-control {
  color: var(--neutral-base, #3e455e);
}
.pricing-plans[data-type=detail-preview][data-bg=base] .container-preview .edir-plan-preview .preview-controls .preview-control .fa, .pricing-plans[data-type=detail-preview][data-bg=neutral] .container-preview .edir-plan-preview .preview-controls .preview-control .fa {
  color: var(--neutral-base, #3e455e);
}

.sample-page-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(43, 43, 43, 0.78);
  z-index: 1000;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  display: none;
}
.sample-page-modal .sample-page-container {
  min-width: 420px;
  background: var(--color-white-base, white);
  border: 1px solid #cbcbcb;
  border-radius: 3px;
  padding: 24px 32px;
  position: relative;
}
.sample-page-modal .sample-page-container .close-sample-page-modal {
  background: none;
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 20px;
  cursor: pointer;
  outline: none;
}
.sample-page-modal .sample-page-container .modal-heading {
  font-family: var(--heading-font, "Rubik");
  font-weight: bold;
  font-size: var(--font-size-20, 1.25em);
  text-align: center;
  margin-bottom: 12px;
}
.sample-page-modal .sample-page-container .modal-description {
  font-family: var(--heading-font, "Rubik");
  font-weight: normal;
  font-size: var(--font-size-18, 1.125em);
  text-align: center;
  margin-bottom: 24px;
}
.sample-page-modal .sample-page-container .select2 {
  width: 100% !important;
}
.sample-page-modal .sample-page-container .select2 .select2-selection {
  height: 54px;
  border-color: #cfd0d6;
}
.sample-page-modal .sample-page-container .select2 .select2-selection__rendered {
  line-height: 54px;
}
.sample-page-modal .sample-page-container .select2 .select2-selection__arrow {
  height: 50px;
}
.sample-page-modal .sample-page-container .selectize-control {
  position: relative;
}
.sample-page-modal .sample-page-container .selectize-control .selectize-input {
  border: 1px solid #cfd0d6;
  border-radius: 4px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  position: relative;
  padding: 14px 12px;
  cursor: pointer;
  transition: border-radius 0.2s ease-in-out;
}
.sample-page-modal .sample-page-container .selectize-control .selectize-input:after {
  content: "\f0d7";
  font-family: "FontAwesome";
  font-size: 18px;
  line-height: 1;
  transition: 0.2s ease-in-out;
}
.sample-page-modal .sample-page-container .selectize-control .selectize-input.focus {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.sample-page-modal .sample-page-container .selectize-control .selectize-input.focus:after {
  -ms-transform: rotate(180deg);
      transform: rotate(180deg);
}
.sample-page-modal .sample-page-container .selectize-control .selectize-input #myselect-selectized {
  display: none;
}
.sample-page-modal .sample-page-container .selectize-control .selectize-dropdown {
  border: 1px solid #cfd0d6;
  border-top: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  z-index: 5;
}
.sample-page-modal .sample-page-container .selectize-control .selectize-dropdown .selectize-dropdown-content .option {
  cursor: pointer;
  transition: 0.2s ease-in-out;
  padding: 8px 12px;
}
.sample-page-modal .sample-page-container .selectize-control .selectize-dropdown .selectize-dropdown-content .option.active {
  background-color: var(--highlight-base, #137df7);
  color: white;
}
.sample-page-modal .sample-page-container .selectize-control .selectize-dropdown .selectize-dropdown-content .option:hover {
  background-color: var(--highlight-base, #137df7);
  color: white;
}
.sample-page-modal .sample-page-container .button {
  text-align: center;
  margin-top: 16px;
}

.header {
  position: relative;
  transition: 0.2s;
}
.header.mt-40 {
  margin-top: 40px;
}
.header > .sample-page-bar {
  background: var(--brand-base, #022e69);
}
.header > .sample-page-bar .wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 12px 0;
}
.header > .sample-page-bar .wrapper .listing-template-selection {
  margin-right: 48px;
}
.header > .sample-page-bar .wrapper .listing-template-selection > span:first-child {
  margin-right: 8px;
}
.header > .sample-page-bar .wrapper .listing-template-selection span:not(.select2-selection__rendered) {
  font-family: var(--heading-font, "Rubik");
  color: var(--color-white-base, white);
  font-size: var(--font-size-14, 0.875em);
}
.header > .sample-page-bar .wrapper .listing-template-selection .select2 {
  min-width: 180px;
}
.header > .sample-page-bar .wrapper .listing-template-selection .select2 .select2-selection {
  border-color: #a1b3c9;
  min-width: 180px;
  height: 40px;
}
.header > .sample-page-bar .wrapper .listing-template-selection .select2 .select2-selection .select2-selection__rendered {
  line-height: 40px;
}
.header > .sample-page-bar .wrapper .listing-template-selection .select2 .select2-selection .select2-selection__arrow {
  height: 40px;
}
.header > .sample-page-bar .wrapper .listing-template-selection .select2-results__option:not(.select2-results__option--highlighted) {
  color: #444;
}
.header > .sample-page-bar .wrapper .listing-template-selection .select2-container--default .select2-results__option[aria-selected=true] {
  background-color: white;
  color: #444;
}
.header > .sample-page-bar .wrapper .listing-template-selection .select2-container--default .select2-results__option[aria-selected=true].select2-results__option--highlighted {
  background-color: #5897fb;
  color: white;
}
.header > .sample-page-bar .wrapper .listing-template-selection .select2-container--default .select2-results__option[aria-selected=true]:hover {
  background-color: #5897fb;
  color: white;
}
.header > .sample-page-bar .wrapper .listing-template-information {
  text-align: center;
  line-height: 32px;
}
.header > .sample-page-bar .wrapper .listing-template-information span {
  font-family: var(--heading-font, "Rubik");
  color: var(--color-white-base, white);
  font-size: var(--font-size-14, 0.875em);
  font-weight: normal;
}
.header > .sample-page-bar .wrapper .listing-template-information span strong {
  font-size: var(--font-size-16, 1em);
  margin-left: 4px;
}
.header > .sample-page-bar .wrapper .listing-template-information .button {
  margin-left: 16px;
}
.header > .header-bar {
  background: var(--brand-dark, rgb(1.4, 32.2, 73.5));
  line-height: 1;
  transition: 0.2s ease-in-out;
  display: none;
}
@media screen and (min-width: 992px) {
  .header > .header-bar {
    display: block;
  }
}
.header > .header-bar .wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.header > .header-bar .bar-link {
  color: white;
  line-height: 1;
  margin-left: 16px;
  border: none;
}
.header > .header-bar .bar-link:first-child {
  margin-left: 0;
}
.header > .header-bar .bar-link.link:hover {
  border-bottom-color: var(--color-white-base, white);
}
.header > .header-bar .bar-link.bar-button {
  background: var(--highlight-base, #137df7);
  padding: 16px;
  text-decoration: none;
}
.header > .header-bar .user-button {
  position: relative;
  padding: 16px 0;
  cursor: pointer;
}
.header > .header-bar .user-button.is-open .fa {
  -ms-transform: rotate(180deg);
      transform: rotate(180deg);
}
.header > .header-bar .user-button .fa {
  transition: 0.2s ease-in-out;
}
.header > .header-bar .user-button .user-content {
  width: 191px;
  position: absolute;
  background: white;
  border: 1px solid #eee;
  border-radius: 3px;
  display: none;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  -ms-flex-align: start;
      align-items: flex-start;
  padding: 24px;
  margin-top: 16px;
  z-index: 5000;
  right: 0;
}
.header > .header-bar .user-button .user-content:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: -3px;
  right: 20px;
  background: white;
  border-top: 1px solid #eee;
  border-left: 1px solid #eee;
  -ms-transform: rotate(45deg) translateX(-50%);
      transform: rotate(45deg) translateX(-50%);
}
.header > .header-bar .user-button .user-content .user-link {
  color: var(--neutral-base, #3e455e);
  text-decoration: none;
  margin-top: 16px;
  transition: 0.2s ease-in-out;
  display: block;
}
.header > .header-bar .user-button .user-content .user-link:first-child {
  margin-top: 0;
}
.header > .header-bar .user-button .user-content .user-link:hover {
  font-weight: bold;
}
.header > .header-content {
  transition: 0.2s ease-in-out;
}
.header > .header-content .wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.header > .header-content .header-logo {
  width: 250px;
  height: 80px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  overflow: hidden;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: left center;
  margin: 12px 0;
}
.header > .header-content .header-logo.wide {
  background-position: center;
  width: 750px;
  height: 100px;
  margin: 16px 0;
}
.header > .header-content .header-logo.larger-h {
  height: 100px;
}
.header > .header-content .header-logo img {
  max-width: 100%;
  max-height: 100%;
}
.header > .header-content .content-left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.header > .header-content .content-left .header-form {
  margin-left: 16px;
  display: none;
}
@media screen and (min-width: 992px) {
  .header > .header-content .content-left .header-form {
    display: block;
  }
}
.header > .header-content .content-left .header-form .fa {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}
.header > .header-content .content-left .input-group {
  width: 260px;
}
.header > .header-content .content-right {
  display: none;
  -ms-flex-flow: row;
      flex-flow: row;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-align: stretch;
      align-items: stretch;
  margin-left: 16px;
}
@media screen and (min-width: 992px) {
  .header > .header-content .content-right {
    display: -ms-flexbox;
    display: flex;
  }
}
.header > .header-content .content-right .header-form .fa {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}
.header > .header-content .content-right .button {
  margin-left: 8px;
  padding: 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
}
.header > .header-content .content-right .user-button {
  position: relative;
  padding: 16px 0;
  cursor: pointer;
  color: var(--color-white-base, white);
  margin-left: 16px;
}
.header > .header-content .content-right .user-button .fa {
  transition: 0.2s ease-in-out;
}
.header > .header-content .content-right .user-button.is-open .fa {
  -ms-transform: rotate(180deg);
      transform: rotate(180deg);
}
.header > .header-content .content-right .user-button .user-content {
  position: absolute;
  width: 191px;
  border: 1px solid #eee;
  padding: 24px;
  background: white;
  border-radius: 3px;
  margin-top: 24px;
  z-index: 5000;
  right: 0;
  display: none;
}
.header > .header-content .content-right .user-button .user-content:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: -3px;
  right: 20px;
  background: white;
  border-top: 1px solid #eee;
  border-left: 1px solid #eee;
  -ms-transform: rotate(45deg) translateX(-50%);
      transform: rotate(45deg) translateX(-50%);
}
.header > .header-content .content-right .user-button .user-content .user-link {
  color: var(--neutral-base, #3e455e);
  text-decoration: none;
  margin-top: 16px;
  transition: 0.2s ease-in-out;
  display: block;
}
.header > .header-content .content-right .user-button .user-content .user-link:first-child {
  margin-top: 0;
}
.header > .header-content .content-right .user-button .user-content .user-link:hover {
  font-weight: bold;
}
.header > .header-content .content-mobile {
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 992px) {
  .header > .header-content .content-mobile {
    display: none;
  }
}
.header > .header-content .content-mobile .toggler-button {
  font-size: 26px;
  color: var(--color-white-base, white);
  padding: 0;
  line-height: 1;
  background: none;
  border: none;
  box-shadow: none;
  outline: none;
}
.header > .header-content .content-mobile .toggler-button:not(:first-child) {
  margin-left: 12px;
}
.header > .header-content .content-mobile .navbar-toggler.is-open .fa:before {
  content: "\f00d";
}
.header .header-navbar {
  display: none;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  transition: 0.2s ease-in-out;
}
@media screen and (min-width: 992px) {
  .header .header-navbar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.header .header-navbar .navbar-link {
  color: var(--color-white-base, white);
  text-decoration: none;
  margin-left: 32px;
  position: relative;
  transition: 0.2s ease-in-out;
}
@media screen and (min-width: 992px) {
  .header .header-navbar .navbar-link {
    min-width: fit-content;
  }
}
.header .header-navbar .navbar-link:first-child {
  margin-left: 0;
}
.header .header-navbar .navbar-link:hover {
  color: var(--highlight-base, #137df7) !important;
}
.header .header-navbar .navbar-link.is-active {
  font-weight: bold;
}
.header .header-navbar .navbar-link.navbar-dropdown .more-content {
  position: absolute;
  width: 215px;
  background: white;
  border: 1px solid #eee;
  border-radius: 3px;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  -ms-flex-align: start;
      align-items: flex-start;
  padding: 24px;
  margin-top: 16px;
  left: calc(100% - 113.5px);
  z-index: 50000;
  display: none;
}
.header .header-navbar .navbar-link.navbar-dropdown .more-content:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: -3px;
  left: 50%;
  background: white;
  border-top: 1px solid #eee;
  border-left: 1px solid #eee;
  -ms-transform: rotate(45deg) translateX(-50%);
      transform: rotate(45deg) translateX(-50%);
}
.header .header-navbar .navbar-link.navbar-dropdown .more-label {
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.header .header-navbar .navbar-link.navbar-dropdown .more-label:hover {
  color: var(--highlight-base, #137df7);
}
.header .header-navbar .navbar-link.navbar-dropdown .more-label:hover .fa {
  color: var(--highlight-base, #137df7);
}
.header .header-navbar .navbar-link.navbar-dropdown .more-label .fa {
  transition: 0.2s ease-in-out;
}
.header .header-navbar .navbar-link.navbar-dropdown .more-label.is-open .fa {
  -ms-transform: rotate(180deg);
      transform: rotate(180deg);
}
.header .header-navbar .navbar-link.navbar-dropdown .more-link {
  color: var(--neutral-base, #3e455e);
  text-decoration: none;
  margin-top: 8px;
  transition: 0.2s ease-in-out;
  display: block;
  word-break: break-word;
}
.header .header-navbar .navbar-link.navbar-dropdown .more-link:first-child {
  margin-top: 0;
}
.header .header-navbar .navbar-link.navbar-dropdown .more-link:hover {
  color: var(--highlight-base, #137df7);
}
.header .header-navbar .navbar-more {
  display: none;
  position: relative;
  margin-left: 32px;
  z-index: 4000;
}
.header .header-navbar .navbar-more.has-more {
  display: block;
}
.header .header-navbar .navbar-more .more-content {
  position: absolute;
  width: 215px;
  background: white;
  border: 1px solid #eee;
  border-radius: 3px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  -ms-flex-align: start;
      align-items: flex-start;
  padding: 24px;
  margin-top: 16px;
  left: calc(100% - 113.5px);
}
.header .header-navbar .navbar-more .more-content:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: -3px;
  left: 50%;
  background: white;
  border-top: 1px solid #eee;
  border-left: 1px solid #eee;
  -ms-transform: rotate(45deg) translateX(-50%);
      transform: rotate(45deg) translateX(-50%);
}
.header .header-navbar .navbar-more .more-label {
  cursor: pointer;
  transition: 0.2s ease-in-out;
  color: var(--color-white-base, white);
}
.header .header-navbar .navbar-more .more-label:hover {
  color: var(--highlight-base, #137df7);
}
.header .header-navbar .navbar-more .more-label:hover .fa {
  color: var(--highlight-base, #137df7);
}
.header .header-navbar .navbar-more .more-label .fa {
  transition: 0.2s ease-in-out;
}
.header .header-navbar .navbar-more .more-label.is-open .fa {
  -ms-transform: rotate(180deg);
      transform: rotate(180deg);
}
.header .header-navbar .navbar-more .more-link {
  color: var(--neutral-base, #3e455e);
  text-decoration: none;
  margin-top: 8px;
  transition: 0.2s ease-in-out;
  word-break: break-word;
}
.header .header-navbar .navbar-more .more-link:first-child {
  margin-top: 0;
}
.header .header-navbar .navbar-more .more-link:hover {
  color: var(--highlight-base, #137df7);
}
.header > .navbar-outside {
  background: var(--brand-dark, rgb(1.4, 32.2, 73.5));
  padding: 16px 0;
  transition: 0.2s ease-in-out;
}
.header > .navbar-outside .wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-align: center;
      align-items: center;
}
@media screen and (min-width: 992px) {
  .header > .navbar-outside .wrapper {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.header > .navbar-outside .header-navbar .navbar-more .more-label {
  color: var(--color-white-base, white);
}
.header > .navbar-outside .header-contact {
  display: -ms-flexbox;
  display: flex;
  color: var(--color-white-base, white);
}
.header > .navbar-outside .header-contact .header-contact-item {
  display: -ms-flexbox;
  display: flex;
}
.header > .navbar-outside .header-contact .header-contact-item a {
  color: var(--color-white-base, white);
}
.header > .navbar-outside .header-contact .fa {
  color: var(--color-white-base, white);
}
.header .sponsor-notify-billing {
  width: 20px;
  height: 20px;
  line-height: 20px;
  background-color: var(--highlight-base, #137df7);
  color: white;
  text-align: center;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  border-radius: 20px;
  pointer-events: none;
  display: none;
}
.header .sponsor-notify-billing:not(.mobile-notify) {
  position: absolute;
  right: -20px;
  top: -15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .header .content-form .input-group.has-icon .input-group-icon + .input {
    margin-left: -1px;
  }
}
.header[data-type="1"] > .header-content {
  background: var(--brand-base, #022e69);
  margin-top: -1px;
}
.header[data-type="1"] > .header-content .header-navbar {
  max-width: calc(100% - 224px);
}
.header[data-type="1"][is-inverse=true] > .header-bar {
  background: var(--color-white-dark-5, rgb(242.25, 242.25, 242.25));
}
.header[data-type="1"][is-inverse=true] > .header-bar .bar-link:not(.bar-button) {
  color: var(--neutral-base, #3e455e);
}
.header[data-type="1"][is-inverse=true] > .header-content {
  background: var(--color-white-base, white);
}
.header[data-type="1"][is-inverse=true] > .header-content .header-navbar .navbar-link {
  color: var(--neutral-base, #3e455e);
}
.header[data-type="1"][is-inverse=true] > .header-content .header-navbar .navbar-more .more-label {
  color: var(--neutral-base, #3e455e);
}
.header[data-type="1"][has-opacity=true] > .header-bar {
  background: var(--color-black-transp-25, rgba(0, 0, 0, 0.25));
}
.header[data-type="1"][has-opacity=true] > .header-content {
  background: none;
}
.header[data-type="2"] {
  background: var(--brand-base, #022e69);
}
.header[data-type="2"] > .header-content .header-navbar {
  margin-left: 32px;
}
.header[data-type="2"] > .header-content .header-navbar .navbar-more .more-label {
  color: var(--color-white-base, white);
}
.header[data-type="2"] > .header-content .content-left {
  max-width: 100%;
  width: 100%;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media screen and (min-width: 992px) {
  .header[data-type="2"] > .header-content .content-left {
    width: auto;
    -ms-flex-pack: justify;
        justify-content: space-between;
    max-width: calc(60% - 32px);
  }
}
@media screen and (min-width: 1200px) {
  .header[data-type="2"] > .header-content .content-left {
    max-width: calc(80% - 32px);
  }
}
@media screen and (min-width: 992px) {
  .header[data-type="2"] > .header-content .content-left .header-navbar {
    max-width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .header[data-type="2"] > .header-content .content-left .header-navbar {
    max-width: calc(100% - 232px);
  }
}
.header[data-type="2"] .content-right .button:first-child {
  margin-left: 0;
}
.header[data-type="2"][is-inverse=true] {
  background: var(--color-white-base, white);
}
.header[data-type="2"][is-inverse=true] > .header-content {
  background: var(--color-white-base, white);
}
.header[data-type="2"][is-inverse=true] > .header-content .header-navbar .navbar-link {
  color: var(--neutral-base, #3e455e);
}
.header[data-type="2"][is-inverse=true] > .header-content .header-navbar .navbar-more .more-label {
  color: var(--neutral-base, #3e455e);
}
.header[data-type="2"][is-inverse=true] .content-right .button.is-inverse {
  border-color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
.header[data-type="2"][is-inverse=true] .content-right .button.is-inverse:hover {
  border-color: var(--neutral-base, #3e455e);
  color: var(--neutral-base, #3e455e);
}
.header[data-type="2"][is-inverse=true] .content-right .user-button {
  color: var(--neutral-base, #3e455e);
}
.header[data-type="2"][has-opacity=true] {
  background: none;
}
.header[data-type="3"] > .header-content {
  background: var(--brand-base, #022e69);
}
.header[data-type="3"] > .header-content .header-logo.wide {
  background-position: left;
}
.header[data-type="3"] > .header-content .content-left {
  width: 100%;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media screen and (min-width: 992px) {
  .header[data-type="3"] > .header-content .content-left {
    width: auto;
    -ms-flex-pack: center;
        justify-content: center;
  }
}
.header[data-type="3"] > .navbar-outside {
  display: none;
}
@media screen and (min-width: 992px) {
  .header[data-type="3"] > .navbar-outside {
    display: block;
  }
}
.header[data-type="3"] > .navbar-outside .wrapper {
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.header[data-type="3"] > .navbar-outside .header-navbar {
  max-width: 80%;
}
.header[data-type="3"][is-inverse=true] > .header-content {
  background: var(--color-white-base, white);
}
.header[data-type="3"][is-inverse=true] > .header-content .content-right .button.is-inverse {
  border-color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
.header[data-type="3"][is-inverse=true] > .header-content .content-right .button.is-inverse:hover {
  border-color: var(--neutral-base, #3e455e);
  color: var(--neutral-base, #3e455e);
}
.header[data-type="3"][is-inverse=true] > .header-content .content-right .user-button {
  color: var(--neutral-base, #3e455e);
}
.header[data-type="3"][is-inverse=true] > .navbar-outside {
  background: var(--neutral-transp-10, rgba(62, 69, 94, 0.1));
}
.header[data-type="3"][is-inverse=true] > .navbar-outside .header-navbar .navbar-link {
  color: var(--neutral-base, #3e455e);
}
.header[data-type="3"][is-inverse=true] > .navbar-outside .header-navbar .navbar-more .more-label {
  color: var(--neutral-base, #3e455e);
}
.header[data-type="3"][is-inverse=true] > .navbar-outside .header-contact {
  display: -ms-flexbox;
  display: flex;
  color: var(--neutral-base, #3e455e);
}
.header[data-type="3"][is-inverse=true] > .navbar-outside .header-contact .header-contact-item {
  display: -ms-flexbox;
  display: flex;
}
.header[data-type="3"][is-inverse=true] > .navbar-outside .header-contact .header-contact-item a {
  color: var(--neutral-base, #3e455e);
}
.header[data-type="3"][is-inverse=true] > .navbar-outside .header-contact .fa {
  color: var(--neutral-base, #3e455e);
}
.header[data-type="3"][is-inverse=true][is-sticky=true][has-opacity=false] .header-content .content-right .user-button {
  color: var(--neutral-base, #3e455e);
}
.header[data-type="3"][is-inverse=true][is-sticky=true][has-opacity=false] > .navbar-outside {
  background: var(--neutral-base, #3e455e);
}
.header[data-type="3"][is-inverse=true][is-sticky=true][has-opacity=false] > .navbar-outside .header-navbar .navbar-link {
  color: var(--color-white-base, white);
}
.header[data-type="3"][is-inverse=true][is-sticky=true][has-opacity=false] > .navbar-outside .header-navbar .navbar-more .more-label {
  color: var(--color-white-base, white);
}
.header[data-type="3"][is-inverse=true][is-sticky=true][has-opacity=false] > .navbar-outside .header-contact {
  color: var(--color-white-base, white);
}
.header[data-type="3"][is-inverse=true][is-sticky=true][has-opacity=false] > .navbar-outside .header-contact .header-contact-item {
  display: -ms-flexbox;
  display: flex;
}
.header[data-type="3"][is-inverse=true][is-sticky=true][has-opacity=false] > .navbar-outside .header-contact .header-contact-item a {
  color: var(--color-white-base, white);
}
.header[data-type="3"][is-inverse=true][is-sticky=true][has-opacity=false] > .navbar-outside .header-contact .header-contact-item .instant-messenger-icon svg {
  fill: var(--color-white-base, white);
}
.header[data-type="3"][is-inverse=true][is-sticky=true][has-opacity=false] > .navbar-outside .header-contact .fa {
  color: var(--color-white-base, white);
}
.header[data-type="3"][has-opacity=true] > .header-content {
  background: var(--color-black-transp-25, rgba(0, 0, 0, 0.25));
}
.header[data-type="3"][has-opacity=true] > .navbar-outside {
  background: none;
}
.header[data-type="4"] > .header-content {
  background: var(--brand-base, #022e69);
}
.header[data-type="4"] > .header-content .wrapper {
  -ms-flex-pack: center;
      justify-content: center;
  position: relative;
}
@media screen and (min-width: 992px) {
  .header[data-type="4"] > .header-content .content-right {
    position: absolute;
    right: 0;
    margin-left: 0;
    max-width: calc(50% - 132px);
  }
}
.header[data-type="4"] > .header-content .content-mobile {
  margin-left: 24px;
}
.header[data-type="4"] > .header-content .header-logo.wide {
  -ms-flex-pack: center;
      justify-content: center;
  width: 250px;
}
@media screen and (min-width: 992px) {
  .header[data-type="4"] > .header-content .header-logo.wide {
    width: 750px;
  }
}
.header[data-type="4"] > .navbar-outside {
  display: none;
}
@media screen and (min-width: 992px) {
  .header[data-type="4"] > .navbar-outside {
    display: block;
  }
}
.header[data-type="4"] > .navbar-outside .wrapper {
  -ms-flex-pack: center;
      justify-content: center;
}
.header[data-type="4"][is-inverse=true] > .header-content {
  background: var(--color-white-base, white);
}
.header[data-type="4"][is-inverse=true] > .header-content .content-right .button.is-inverse {
  border-color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
.header[data-type="4"][is-inverse=true] > .header-content .content-right .button.is-inverse:hover {
  border-color: var(--neutral-base, #3e455e);
  color: var(--neutral-base, #3e455e);
}
.header[data-type="4"][is-inverse=true] > .header-content .content-right .user-button {
  color: var(--neutral-base, #3e455e);
}
.header[data-type="4"][is-inverse=true] > .navbar-outside {
  background: var(--neutral-transp-10, rgba(62, 69, 94, 0.1));
}
.header[data-type="4"][is-inverse=true] > .navbar-outside .header-navbar .navbar-link {
  color: var(--neutral-base, #3e455e);
}
.header[data-type="4"][is-inverse=true] > .navbar-outside .header-navbar .navbar-more .more-label {
  color: var(--neutral-base, #3e455e);
}
.header[data-type="4"][is-inverse=true] > .navbar-outside .header-contact {
  display: -ms-flexbox;
  display: flex;
  color: var(--neutral-base, #3e455e);
}
.header[data-type="4"][is-inverse=true] > .navbar-outside .header-contact .fa {
  color: var(--neutral-base, #3e455e);
}
.header[data-type="4"][is-inverse=true][is-sticky=true][has-opacity=false] .header-content .content-right .user-button {
  color: var(--neutral-base, #3e455e);
}
.header[data-type="4"][is-inverse=true][is-sticky=true][has-opacity=false] > .navbar-outside {
  background: var(--neutral-base, #3e455e);
}
.header[data-type="4"][is-inverse=true][is-sticky=true][has-opacity=false] > .navbar-outside .header-navbar .navbar-link {
  color: var(--color-white-base, white);
}
.header[data-type="4"][is-inverse=true][is-sticky=true][has-opacity=false] > .navbar-outside .header-navbar .navbar-more .more-label {
  color: var(--color-white-base, white);
}
.header[data-type="4"][is-inverse=true][is-sticky=true][has-opacity=false] > .navbar-outside .header-contact {
  color: var(--color-white-base, white);
}
.header[data-type="4"][is-inverse=true][is-sticky=true][has-opacity=false] > .navbar-outside .header-contact .fa {
  color: var(--color-white-base, white);
}
.header[data-type="4"][has-opacity=true] > .header-content {
  background: var(--color-black-transp-25, rgba(0, 0, 0, 0.25));
}
.header[data-type="4"][has-opacity=true] > .navbar-outside {
  background: none;
}
.header[has-opacity=true], .header[is-sticky=true] {
  width: 100%;
  top: 0;
  left: 0;
  z-index: 500;
}
.header[has-opacity=true] {
  position: absolute;
}
.header[is-sticky=true] {
  position: fixed;
  max-height: 100vh;
  overflow: auto;
}
@media screen and (min-width: 992px) {
  .header[is-sticky=true] {
    overflow: visible;
  }
}
.header[is-inverse=true] > .header-content .content-mobile .toggler-button {
  color: var(--brand-base, #022e69);
}
@media screen and (min-width: 992px) {
  .header[has-opacity=true] + .hero-leadgen .leadgen-content, .header[is-sticky=true] + .hero-leadgen .leadgen-content {
    top: 60%;
  }
}
.header > .search-mobile {
  width: 100%;
  position: absolute;
  z-index: 500;
  display: none;
  border-top: 1px solid var(--color-black-transp-25, rgba(0, 0, 0, 0.25));
  box-shadow: 0 4px 2px -1px var(--color-black-transp-25, rgba(0, 0, 0, 0.25));
  background: white;
}
.header > .search-mobile:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: -3px;
  right: 53px;
  background: white;
  border-top: 1px solid var(--color-black-transp-25, rgba(0, 0, 0, 0.25));
  border-left: 1px solid var(--color-black-transp-25, rgba(0, 0, 0, 0.25));
  border-top-left-radius: 3px;
  -ms-transform: rotate(45deg) translateX(-50%);
      transform: rotate(45deg) translateX(-50%);
}
@media screen and (min-width: 768px) {
  .header > .search-mobile:before {
    right: 78px;
  }
}
.header > .search-mobile .search-mobile-form .form-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 12px 0 12px 24px;
  border-bottom: 1px solid var(--color-black-transp-25, rgba(0, 0, 0, 0.25));
}
.header > .search-mobile .search-mobile-form .form-group .fa {
  font-size: 26px;
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}
.header > .search-mobile .search-mobile-form .form-group .mobile-search-input {
  margin-left: 12px;
  padding-right: 12px;
  background: none;
  box-shadow: none;
  background-image: none;
  border: none;
  height: 40px;
  outline: none;
  width: 100%;
  font-size: 22px;
  color: var(--neutral-base, #3e455e);
}
.header > .search-mobile .search-mobile-form .form-group .mobile-search-input::-webkit-input-placeholder {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}
.header > .search-mobile .search-mobile-form .form-group .mobile-search-input::-moz-placeholder {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}
.header > .search-mobile .search-mobile-form .form-group .mobile-search-input:-ms-input-placeholder {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}
.header > .search-mobile .search-mobile-form .form-group .mobile-search-input:-moz-placeholder {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}
.header > .search-mobile .search-mobile-form .check-group {
  padding: 12px 0 12px 24px;
  border-bottom: 1px solid var(--color-black-transp-25, rgba(0, 0, 0, 0.25));
}
.header > .search-mobile .search-mobile-form .check-group label {
  color: var(--color-black-transp-55, rgba(0, 0, 0, 0.55));
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 0;
}
.header > .search-mobile .search-mobile-form .check-group label input {
  margin-right: 8px;
  width: 20px;
  height: 20px;
}
.header > .search-mobile .search-results .results-header {
  padding: 12px 24px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: var(--font-size-14, 0.875em);
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
  display: block;
}
.header > .search-mobile .search-results .results-list {
  max-height: 241px;
  overflow: auto;
}
.header > .search-mobile .search-results .results-list .results-item {
  padding: 12px 24px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  text-decoration: none;
}
.header > .search-mobile .search-results .results-list .results-item:nth-child(odd) {
  background: #f4f4f4;
}
.header > .search-mobile .search-results .results-list .results-item .item-content {
  max-width: 200px;
}
.header > .search-mobile .search-results .results-list .results-item .item-content .item-title {
  font-size: var(--font-size-18, 1.125em);
  font-weight: bold;
  color: var(--neutral-base, #3e455e);
  width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header > .search-mobile .search-results .results-list .results-item .item-content .item-attr {
  font-size: var(--font-size-15, 0.9375em);
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
.header > .search-mobile .search-results .results-list .results-item .item-categorie {
  font-size: var(--font-size-16, 1em);
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
.header > .navbar-mobile {
  display: none;
  position: relative;
  border-top: 1px solid var(--color-black-transp-25, rgba(0, 0, 0, 0.25));
  box-shadow: 0 4px 2px -1px var(--color-black-transp-25, rgba(0, 0, 0, 0.25));
  background: white;
}
.header > .navbar-mobile:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: -3px;
  right: 17px;
  background: white;
  border-top: 1px solid var(--color-black-transp-25, rgba(0, 0, 0, 0.25));
  border-left: 1px solid var(--color-black-transp-25, rgba(0, 0, 0, 0.25));
  border-top-left-radius: 3px;
  -ms-transform: rotate(45deg) translateX(-50%);
      transform: rotate(45deg) translateX(-50%);
}
@media screen and (min-width: 768px) {
  .header > .navbar-mobile:before {
    right: 40px;
  }
}
.header > .navbar-mobile .navbar-user {
  padding: 24px 12px 24px 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.header > .navbar-mobile .navbar-user .user-picture {
  border-radius: 9999px;
  overflow: hidden;
  max-width: 50px;
  max-height: 50px;
}
.header > .navbar-mobile .navbar-user .user-picture img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.header > .navbar-mobile .navbar-user .user-info {
  margin-left: 16px;
}
.header > .navbar-mobile .navbar-user .user-info .user-name {
  font-size: var(--font-size-18, 1.125em);
  font-weight: bold;
}
.header > .navbar-mobile .navbar-user .user-info .user-date {
  font-size: var(--font-size-12, 0.75em);
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}
.header > .navbar-mobile .navbar-links {
  padding: 24px 12px 24px 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
}
.header > .navbar-mobile .navbar-links a {
  color: var(--link-base, #3ebaf6);
}
.header > .navbar-mobile .navbar-links:not(:first-child) {
  border-top: 1px solid var(--color-black-transp-25, rgba(0, 0, 0, 0.25));
}
.header > .navbar-mobile .navbar-links .navbar-link {
  font-weight: 500;
  font-size: var(--font-size-18, 1.125em);
  color: var(--neutral-base, #3e455e);
  text-decoration: none;
  position: relative;
}
.header > .navbar-mobile .navbar-links .navbar-link:not(:first-child) {
  margin-top: 16px;
}
.header > .navbar-mobile .navbar-links .navbar-link.is-active {
  color: var(--highlight-base, #137df7);
}
.header > .navbar-mobile .navbar-links .navbar-dropdown .more-content {
  display: none;
  padding-top: 8px;
  padding-left: 8px;
}
.header > .navbar-mobile .navbar-links .navbar-dropdown .more-label.is-open .fa {
  -ms-transform: rotate(180deg);
      transform: rotate(180deg);
}
.header > .navbar-mobile .navbar-links .navbar-dropdown .more-label .fa {
  transition: 0.2s ease-in-out;
}
.header > .navbar-mobile .navbar-links .navbar-dropdown .more-link {
  font-size: var(--font-size-15, 0.9375em);
  color: var(--neutral-base, #3e455e);
  text-decoration: none;
  display: block;
  word-break: break-word;
}
.header > .navbar-mobile .navbar-links .navbar-dropdown .more-link:not(:first-child) {
  margin-top: 8px;
}
.header > .navbar-mobile .navbar-links .navbar-dropdown .more-link.is-active {
  color: var(--highlight-base, #137df7);
}
.header > .navbar-mobile .navbar-content {
  padding: 24px 12px 24px 40px;
  border-top: 1px solid var(--color-black-transp-25, rgba(0, 0, 0, 0.25));
}
.header > .navbar-mobile .navbar-content .phone-contact {
  display: -ms-flexbox;
  display: flex;
  color: var(--neutral-base, #3e455e);
}
.header > .navbar-mobile .navbar-content .phone-contact .fa {
  color: var(--neutral-base, #3e455e);
  margin-right: 16px;
}

.video-gallery {
  padding-top: 24px;
  padding-bottom: 24px;
}
@media only screen and (min-width: 992px) {
  .video-gallery {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.video-gallery .video-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 24px;
}
.video-gallery .video-header > .heading {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
.video-gallery .video-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: center;
      justify-content: center;
  margin: -48px 0 0;
}
@media screen and (min-width: 768px) {
  .video-gallery .video-list {
    margin: -48px -17px 0;
  }
}
.video-gallery .video-list .video-item {
  margin-top: 48px;
}
.video-gallery .video-list .video-item .video-picture {
  position: relative;
  display: block;
  border-radius: var(--border-radius, 3px);
  text-decoration: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 296px;
}
@media screen and (min-width: 768px) {
  .video-gallery .video-list .video-item .video-picture {
    height: 247px;
  }
}
@media screen and (min-width: 992px) {
  .video-gallery .video-list .video-item .video-picture {
    height: 216px;
  }
}
.video-gallery .video-list .video-item .video-picture:before, .video-gallery .video-list .video-item .video-picture:after {
  transition: 0.2s ease-in-out;
}
.video-gallery .video-list .video-item .video-picture:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 60px;
  top: calc(50% - 30px);
  left: 50%;
  -ms-transform: translate(-50%);
      transform: translate(-50%);
  background: var(--color-black-transp-55, rgba(0, 0, 0, 0.55));
  border-radius: 8px;
}
.video-gallery .video-list .video-item .video-picture:after {
  content: "\f04b";
  font-family: "fontAwesome";
  position: absolute;
  top: calc(50% - 16px);
  left: calc(50% + 5px);
  -ms-transform: translate(-50%);
      transform: translate(-50%);
  line-height: 1;
  font-size: 32px;
  color: white;
}
.video-gallery .video-list .video-item .video-picture:hover:before {
  background: var(--brand-transp-20, rgba(2, 46, 105, 0.8));
}
.video-gallery .video-list .video-item .video-description {
  margin-top: 16px;
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  font-weight: bold;
}
.video-gallery[data-columns="4"] .video-list .video-item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  @supports (-ms-ime-align: auto) {
    .video-gallery[data-columns="4"] .video-list .video-item {
      width: calc(100% / 2 - 16px * 2 - 1px);
    }
  }
  .video-gallery[data-columns="4"] .video-list .video-item {
    width: calc(100% / 2 - 16px * 2);
    margin-right: 16px;
    margin-left: 16px;
  }
}
@media screen and (min-width: 992px) {
  @supports (-ms-ime-align: auto) {
    .video-gallery[data-columns="4"] .video-list .video-item {
      width: calc(100% / 3 - 16px * 2 - 1px);
    }
  }
  .video-gallery[data-columns="4"] .video-list .video-item {
    width: calc(100% / 3 - 16px * 2);
    min-width: auto;
    margin-right: 16px;
  }
}
@media screen and (min-width: 1200px) {
  @supports (-ms-ime-align: auto) {
    .video-gallery[data-columns="4"] .video-list .video-item {
      width: calc(100% / 4 - 16px * 2 - 1px);
    }
  }
  .video-gallery[data-columns="4"] .video-list .video-item {
    width: calc(100% / 4 - 16px * 2);
  }
}
.video-gallery[data-columns="3"] .video-list .video-item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  @supports (-ms-ime-align: auto) {
    .video-gallery[data-columns="3"] .video-list .video-item {
      width: calc(100% / 2 - 16px * 2 - 1px);
    }
  }
  .video-gallery[data-columns="3"] .video-list .video-item {
    width: calc(100% / 2 - 16px * 2);
    margin-right: 16px;
    margin-left: 16px;
  }
}
@media screen and (min-width: 992px) {
  @supports (-ms-ime-align: auto) {
    .video-gallery[data-columns="3"] .video-list .video-item {
      width: calc(100% / 3 - 16px * 2 - 1px);
    }
  }
  .video-gallery[data-columns="3"] .video-list .video-item {
    width: calc(100% / 3 - 16px * 2);
    min-width: auto;
    margin-right: 16px;
  }
}
@media screen and (min-width: 1200px) {
  @supports (-ms-ime-align: auto) {
    .video-gallery[data-columns="3"] .video-list .video-item {
      width: calc(100% / 3 - 16px * 2 - 1px);
    }
  }
  .video-gallery[data-columns="3"] .video-list .video-item {
    width: calc(100% / 3 - 16px * 2);
  }
}
.video-gallery[data-columns="2"] .video-list .video-item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  @supports (-ms-ime-align: auto) {
    .video-gallery[data-columns="2"] .video-list .video-item {
      width: calc(100% / 2 - 16px * 2 - 1px);
    }
  }
  .video-gallery[data-columns="2"] .video-list .video-item {
    width: calc(100% / 2 - 16px * 2);
    margin-right: 16px;
    margin-left: 16px;
  }
}
@media screen and (min-width: 992px) {
  @supports (-ms-ime-align: auto) {
    .video-gallery[data-columns="2"] .video-list .video-item {
      width: calc(100% / 2 - 16px * 2 - 1px);
    }
  }
  .video-gallery[data-columns="2"] .video-list .video-item {
    width: calc(100% / 2 - 16px * 2);
    min-width: auto;
    margin-right: 16px;
  }
}
@media screen and (min-width: 1200px) {
  @supports (-ms-ime-align: auto) {
    .video-gallery[data-columns="2"] .video-list .video-item {
      width: calc(100% / 2 - 16px * 2 - 1px);
    }
  }
  .video-gallery[data-columns="2"] .video-list .video-item {
    width: calc(100% / 2 - 16px * 2);
  }
}
@media screen and (min-width: 992px) {
  .video-gallery[data-columns="2"] .video-list .video-item .video-picture {
    height: 337px;
  }
}
.video-gallery[data-bg=brand] .video-header > .heading {
  color: var(--color-white-base, white);
}
.video-gallery[data-bg=brand] .video-list .video-item .video-description {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}

@media screen and (min-width: 992px) {
  .tab-right .video-gallery[data-columns="3"] .video-list .video-item {
    width: 100%;
  }
}

.cards-default[data-bg=brand] .card-vertical-plus-horizontal .cards-list .card .content .title {
  color: var(--color-white-base, white);
}
.cards-default[data-bg=brand] .card-vertical-plus-horizontal .cards-list .card .content .categories {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.cards-default[data-bg=brand] .card-vertical-plus-horizontal .cards-list .card .content .description .paragraph {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.cards-default[data-bg=brand] .card-vertical-plus-horizontal .cards-list .card .content .reviews .reviews-stars .fa-star-o {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.cards-default[data-bg=brand] .card-vertical-plus-horizontal .cards-list .card .content .reviews .reviews-count {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}

.cards-default[data-bg=brand] .card-two-columns-horizontal .cards-list .card .content .title {
  color: var(--color-white-base, white);
}
.cards-default[data-bg=brand] .card-two-columns-horizontal .cards-list .card .content .categories {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.cards-default[data-bg=brand] .card-two-columns-horizontal .cards-list .card .content .reviews .reviews-stars .fa-star-o {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.cards-default[data-bg=brand] .card-two-columns-horizontal .cards-list .card .content .reviews .reviews-count {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}

.cards-default .centralized-highglighted-card {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.cards-default .centralized-highglighted-card > .card-wrapper {
  width: 100%;
  margin-bottom: 32px;
}
@media screen and (min-width: 992px) {
  .cards-default .centralized-highglighted-card > .card-wrapper {
    width: 45%;
    margin-bottom: 0;
  }
}
.cards-default .centralized-highglighted-card > .card-wrapper:nth-child(1), .cards-default .centralized-highglighted-card > .card-wrapper:nth-child(3) {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .cards-default .centralized-highglighted-card > .card-wrapper:nth-child(1), .cards-default .centralized-highglighted-card > .card-wrapper:nth-child(3) {
    width: 48%;
  }
}
@media screen and (min-width: 992px) {
  .cards-default .centralized-highglighted-card > .card-wrapper:nth-child(1), .cards-default .centralized-highglighted-card > .card-wrapper:nth-child(3) {
    width: 25%;
  }
}
.cards-default .centralized-highglighted-card > .card-wrapper:nth-child(1) .card-centralized, .cards-default .centralized-highglighted-card > .card-wrapper:nth-child(3) .card-centralized {
  height: 200px;
  margin-bottom: 32px;
}
.cards-default .centralized-highglighted-card > .card-wrapper .cards-list {
  margin: 0;
}
.cards-default .centralized-highglighted-card > .card-wrapper .card-centralized {
  width: 100%;
  height: 332px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  border-radius: var(--border-radius, 3px);
}
@media screen and (min-width: 768px) {
  .cards-default .centralized-highglighted-card > .card-wrapper .card-centralized {
    height: 432px;
  }
}
.cards-default .centralized-highglighted-card > .card-wrapper .card-centralized:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: black;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.cards-default .centralized-highglighted-card > .card-wrapper .card-centralized:hover:before {
  opacity: 0.5;
}
.cards-default .centralized-highglighted-card > .card-wrapper .card-centralized:hover .content {
  bottom: 0 !important;
}
.cards-default .centralized-highglighted-card > .card-wrapper .card-centralized .categories-dropdown {
  position: relative;
  display: inline-block;
}
.cards-default .centralized-highglighted-card > .card-wrapper .card-centralized .categories-dropdown .categories-dropdown-toggle {
  text-decoration: none;
  border-bottom: none;
  cursor: pointer;
}
.cards-default .centralized-highglighted-card > .card-wrapper .card-centralized .categories-dropdown .categories-dropdown-content {
  display: none;
}
.cards-default .centralized-highglighted-card > .card-wrapper .card-centralized .content {
  position: absolute;
  width: 100%;
  padding: 16px;
  background: var(--brand-transp-50, rgba(2, 46, 105, 0.5));
  transition: 0.2s ease-in-out;
}
.cards-default .centralized-highglighted-card > .card-wrapper .card-centralized .content .date {
  font-family: var(--heading-font, "Rubik");
  font-size: var(--font-size-14, 0.875em);
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--color-white-base, white);
}
.cards-default .centralized-highglighted-card > .card-wrapper .card-centralized .content .title {
  color: var(--color-white-base, white);
  text-decoration: none;
  margin-bottom: 12px;
  display: block;
}
.cards-default .centralized-highglighted-card > .card-wrapper .card-centralized .content .categories {
  color: var(--color-white-base, white);
}
.cards-default .centralized-highglighted-card > .card-wrapper .card-centralized .content .description p {
  color: var(--color-white-base, white);
}
.cards-default .centralized-highglighted-card > .card-wrapper .card-centralized .content .reviews-stars {
  color: var(--color-white-base, white);
}
.cards-default .centralized-highglighted-card > .card-wrapper .card-centralized .content .price, .cards-default .centralized-highglighted-card > .card-wrapper .card-centralized .content .price-off, .cards-default .centralized-highglighted-card > .card-wrapper .card-centralized .content .valid-time {
  color: var(--color-white-base, white);
}
.cards-default .centralized-highglighted-card > .card-wrapper .card-centralized .content .recurring-event, .cards-default .centralized-highglighted-card > .card-wrapper .card-centralized .content .location {
  color: var(--color-white-base, white);
}
.cards-default .centralized-highglighted-card > .card-wrapper .card-centralized .content .price:before, .cards-default .centralized-highglighted-card > .card-wrapper .card-centralized .content .price-off:before {
  content: attr(data-prefix);
  margin-right: 4px;
}
.cards-default .centralized-highglighted-card > .card-wrapper .card-centralized .content .price-off {
  text-decoration: line-through;
}
.cards-default .centralized-highglighted-card > .card-wrapper .card-centralized .content .author {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  margin-top: 16px;
}
.cards-default .centralized-highglighted-card > .card-wrapper .card-centralized .content .author .author-picture {
  width: 32px;
  height: 32px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  border-radius: 9999px;
  overflow: hidden;
  border: 1px solid var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.cards-default .centralized-highglighted-card > .card-wrapper .card-centralized .content .author .author-picture .fa {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.cards-default .centralized-highglighted-card > .card-wrapper .card-centralized .content .author .author-picture img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.cards-default .centralized-highglighted-card > .card-wrapper .card-centralized .content .author .author-name {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
  font-weight: 300;
  margin-left: 16px;
  max-width: calc(100% - 64px);
}
.cards-default .centralized-highglighted-card > .card-wrapper .card-centralized .calendar-sm {
  cursor: default;
  border: none;
  top: 8px;
  position: absolute;
  left: 8px;
}
.cards-default .centralized-highglighted-card > .card-wrapper .card-centralized .badge {
  cursor: default;
  position: absolute;
  background: var(--color-white-transp-85, rgba(255, 255, 255, 0.85));
  border-radius: var(--border-radius-icon, 3px);
  top: 16px;
  left: 16px;
  line-height: 1;
  padding: 8px;
  color: var(--neutral-base, #3e455e);
  z-index: 5;
  font-weight: bold;
  text-decoration: none;
}

.section-headers {
  padding-top: 24px;
  padding-bottom: 24px;
}
@media only screen and (min-width: 992px) {
  .section-headers {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.section-headers {
  text-align: center;
}
.section-headers .wrapper.has-actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.section-headers .wrapper .heading,
.section-headers .wrapper .paragraph {
  color: white;
  font-weight: 300;
  position: relative;
  z-index: 5;
}
.section-headers[data-align=left] {
  text-align: left;
}
.section-headers[data-align=right] {
  text-align: right;
}
.section-headers[data-bg=brand] {
  background: var(--brand-base, #022e69);
}
.section-headers[data-bg=neutral] {
  background: var(--neutral-transp-5, rgba(62, 69, 94, 0.05));
}
.section-headers[data-bg=base] {
  background: var(--color-white-base, white);
}
.section-headers[data-bg=neutral] .wrapper .heading,
.section-headers[data-bg=neutral] .wrapper .paragraph, .section-headers[data-bg=base] .wrapper .heading,
.section-headers[data-bg=base] .wrapper .paragraph {
  color: var(--neutral-base, #3e455e);
}

.details-default {
  overflow: hidden;
}
.details-default > .details-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--color-black-transp-50, rgba(0, 0, 0, 0.5));
  z-index: 50000;
  overflow-y: auto;
  padding: 24px 0;
  display: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.details-default > .details-modal::-webkit-scrollbar {
  width: 0 !important;
}
.details-default > .details-modal .modal-header {
  position: relative;
  width: 100%;
  height: 96px;
  background-color: var(--brand-base, #022e69);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.details-default > .details-modal .modal-header:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--color-black-transp-25, rgba(0, 0, 0, 0.25));
}
.details-default > .details-modal .modal-header + .modal-info {
  padding: 64px 40px 24px;
}
.details-default > .details-modal .modal-header .modal-picture {
  width: 108px;
  height: 108px;
  overflow: hidden;
  border: 6px solid white;
  border-radius: var(--border-radius, 3px);
  position: absolute;
  top: 48px;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  z-index: 5;
}
.details-default > .details-modal .modal-close {
  position: absolute;
  color: var(--neutral-base, #3e455e);
  line-height: 1;
  top: 5px;
  right: 6px;
  font-size: 22px;
  cursor: pointer;
}
.details-default > .details-modal .has-coverimage .modal-close, .details-default > .details-modal .custom-close-color .modal-close {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.details-default > .details-modal .modal-rate {
  text-align: center;
}
.details-default > .details-modal .modal-rate .paragraph {
  font-size: var(--font-size-28, 1.75em);
}
.details-default > .details-modal .modal-rate .select-rating {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  -ms-transform: rotate(180deg);
      transform: rotate(180deg);
}
.details-default > .details-modal .modal-rate .select-rating span {
  display: inline-block;
  font-size: 30px;
  cursor: pointer;
  -ms-transform: rotate(180deg);
      transform: rotate(180deg);
}
.details-default > .details-modal .modal-rate .select-rating span:after {
  content: "\f006";
  font-family: "fontAwesome";
  color: var(--badge-base, #ffc800);
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.details-default > .details-modal .modal-rate .select-rating span:hover:after, .details-default > .details-modal .modal-rate .select-rating span:hover ~ span:after, .details-default > .details-modal .modal-rate .select-rating span.active:after, .details-default > .details-modal .modal-rate .select-rating span.active ~ span:after, .details-default > .details-modal .modal-rate .select-rating span:focus:after, .details-default > .details-modal .modal-rate .select-rating span:focus ~ span:after {
  content: "\f005";
}
.details-default > .details-modal .modal-info {
  padding: 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .details-default > .details-modal .modal-info {
    padding: 24px 40px;
  }
}
.details-default > .details-modal .modal-info.has-picture {
  padding-top: 80px;
}
.details-default > .details-modal .modal-info .heading {
  font-weight: bold;
}
.details-default > .details-modal .modal-info span {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  display: inline-block;
}
.details-default > .details-modal .modal-form {
  padding: 0 24px;
}
@media screen and (min-width: 768px) {
  .details-default > .details-modal .modal-form {
    padding: 0 48px;
  }
}
.details-default > .details-modal .modal-form .content-form {
  max-width: 100%;
}
.details-default > .details-modal .modal-form .input {
  -ms-flex-positive: 1;
      flex-grow: 1;
  margin-top: 16px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .details-default > .details-modal .modal-form .input {
    width: auto;
  }
}
.details-default > .details-modal .modal-form .input:first-child {
  margin-top: 0;
}
.details-default > .details-modal .modal-form textarea {
  padding: 8px 16px;
  margin-bottom: 16px;
}
.details-default > .details-modal .modal-form .form-actions {
  width: 100%;
  margin-top: 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 992px) {
  .details-default > .details-modal .modal-form .form-actions {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.details-default > .details-modal .modal-form .form-actions .button {
  white-space: pre;
  width: 100%;
  margin-top: 16px;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .details-default > .details-modal .modal-form .form-actions .button {
    width: auto;
    margin-top: 0;
    margin-left: 16px;
  }
}
.details-default > .details-modal .modal-form .form-actions .button:first-child {
  margin-left: 0;
  margin-top: 0;
}
.details-default > .details-modal .modal-form .input-group {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-align: start;
      align-items: flex-start;
  margin-left: 0;
}
.details-default > .details-modal .modal-form .input-group .input-group-addon {
  height: 50px;
  line-height: 50px;
  border: 1px solid var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  width: 250px;
}
@media screen and (min-width: 768px) {
  .details-default > .details-modal .modal-form .input-group .input-group-addon {
    width: auto;
  }
}
.details-default > .details-modal .modal-form .input-group .input-group-addon img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.details-default > .details-modal .modal-form .input-group .input {
  margin-top: 0;
  padding-right: 0;
}
.details-default > .details-modal .modal-form .modalError {
  width: 100%;
  text-align: center;
}
.details-default > .details-modal .modal-form .consents-block label {
  display: block;
  font-size: 0.6875em;
  color: #bfb6b6;
}
.details-default > .details-modal .modal-form .consents-block label input {
  margin-right: 4px;
}
.details-default > .details-modal.modal-preview .modal-close {
  color: var(--highlight-base, #137df7);
}
.details-default > .details-modal.modal-preview img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.details-default > .details-modal.is-sent {
  padding: 0;
}
.details-default > .details-modal.is-sent .modal-default {
  background: none !important;
  height: 100vh;
}
.details-default > .details-modal.is-sent .modal-default .modal-return {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  height: 100vh;
  z-index: 5;
  color: var(--color-white-base, white);
}
.details-default > .details-modal.is-sent .modal-default .modal-return .fa {
  display: inline-block;
  margin-right: 16px;
}
.details-default > .details-modal.is-sent .modal-default *:not(.modal-return) {
  display: none;
}
.details-default > .details-modal.is-sent-error {
  padding: 0;
}
.details-default > .details-modal.is-sent-error .modal-default {
  background: none !important;
  height: 100vh;
}
.details-default > .details-modal.is-sent-error .modal-default .modal-return-error {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  height: 100vh;
  z-index: 5;
  color: var(--color-white-base, white);
}
.details-default > .details-modal.is-sent-error .modal-default .modal-return-error .fa {
  display: inline-block;
  margin-right: 16px;
}
.details-default > .details-modal.is-sent-error .modal-default *:not(.modal-return-error) {
  display: none;
}
.details-default > .details-modal .modal-default {
  width: 90%;
  margin: 0 auto;
  position: relative;
  border-radius: var(--border-radius, 3px);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .details-default > .details-modal .modal-default {
    width: 432px;
  }
}
.details-default > .details-modal .modal-default .modal-return {
  display: none;
}
.details-default > .details-modal .modal-default .modal-return-error {
  display: none;
}
.details-default > .details-modal .modal-default.message-modal {
  background: white;
  padding-bottom: 32px;
}
.details-default > .details-modal .modal-default.message-modal .modal-info span {
  font-weight: bold;
}
.details-default > .details-modal .modal-default.message-modal .modal-info .heading {
  margin-top: 8px;
}
.details-default > .details-modal .modal-default.deals-coupon .coupon-bottom {
  content: "";
  position: absolute;
  width: 100%;
  height: 16px;
  bottom: -16px;
  left: 0;
  background: url(/assets/images/modal-deal-bottom.png) no-repeat top center;
  z-index: 500;
}
.details-default > .details-modal .modal-default.deals-coupon .modal-info {
  background: var(--color-white-base, white);
  background: linear-gradient(315deg, transparent 10px, var(--color-white-base, white) 0) bottom right, linear-gradient(45deg, transparent 10px, var(--color-white-base, white) 0) bottom left;
  background-image: radial-gradient(circle at 100% 100%, rgba(204, 0, 0, 0) 14px, var(--color-white-base, white) 15px), radial-gradient(circle at 0 100%, rgba(204, 0, 0, 0) 14px, var(--color-white-base, white) 15px);
  background-size: 50% 50%;
  background-repeat: no-repeat;
  position: relative;
  pointer-events: none;
}
.details-default > .details-modal .modal-default.deals-coupon .modal-info:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 15px);
  background: var(--color-white-base, white);
  z-index: -1;
}
.details-default > .details-modal .modal-default.deals-coupon .modal-info .coupon-middle {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 20px;
  width: calc(100% - 40px);
  border-bottom: 2px dashed var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  z-index: 5;
}
.details-default > .details-modal .modal-default.deals-coupon .modal-info span {
  margin-top: 8px;
}
.details-default > .details-modal .modal-default.deals-coupon .deals-content {
  padding: 24px 40px;
  background: var(--color-white-base, white);
  background: linear-gradient(135deg, transparent 10px, var(--color-white-base, white) 0) top left, linear-gradient(225deg, transparent 10px, var(--color-white-base, white) 0) top right;
  background-image: radial-gradient(circle at 0 0, rgba(204, 0, 0, 0) 14px, var(--color-white-base, white) 15px), radial-gradient(circle at 100% 0, rgba(204, 0, 0, 0) 14px, var(--color-white-base, white) 15px);
  background-size: 50% 50%;
  background-repeat: no-repeat;
  position: relative;
}
.details-default > .details-modal .modal-default.deals-coupon .deals-content:after {
  content: "";
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  height: 90%;
  background: var(--color-white-base, white);
  z-index: -1;
}
.details-default > .details-modal .modal-default.deals-coupon .deals-content .deals-content-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  margin-top: 16px;
}
.details-default > .details-modal .modal-default.deals-coupon .deals-content .deals-content-item:first-child {
  margin-top: 0;
}
.details-default > .details-modal .modal-default.deals-coupon .deals-content .deals-content-item .content-title {
  font-weight: bold;
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
  text-transform: uppercase;
}
.details-default > .details-modal .modal-default.deals-coupon .deals-content .deals-content-item .content-for {
  width: 50%;
}
.details-default > .details-modal .modal-default.deals-coupon .deals-content .deals-content-item .content-valid {
  width: 40%;
  margin-left: 32px;
}
.details-default > .details-modal .modal-default.deals-coupon .deals-content .deals-content-item .content-deal-value {
  width: 50%;
}
.details-default > .details-modal .modal-default.deals-coupon .deals-content .deals-content-item .content-original-value {
  width: 40%;
  margin-left: 32px;
}
.details-default > .details-modal .modal-default.deals-coupon .deals-code {
  background: white;
  position: relative;
  text-align: center;
  padding: 24px 0;
}
.details-default > .details-modal .modal-default.deals-coupon .deals-code:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--neutral-transp-5, rgba(62, 69, 94, 0.05));
}
.details-default > .details-modal .modal-default.deals-coupon .deals-code strong {
  font-weight: bold;
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
.details-default > .details-modal .modal-default.deals-coupon .deals-code .heading {
  margin-top: 8px;
  font-weight: bold;
  letter-spacing: 6px;
}
.details-default > .details-modal .modal-default.deals-coupon .deals-action {
  padding: 24px 0;
  background: var(--color-white-base, white);
  text-align: center;
}
.details-default > .details-modal .modal-default.deals-coupon .deals-action .button {
  color: var(--color-white-base, white);
}
.details-default > .details-header {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  background-color: var(--brand-base, #022e69);
}
.details-default > .details-header:not(.details-header-mobile):before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--color-black-transp-65, rgba(0, 0, 0, 0.65));
}
.details-default > .details-header.details-header-desktop {
  display: none;
}
@media screen and (min-width: 992px) {
  .details-default > .details-header.details-header-desktop {
    display: block;
  }
}
.details-default > .details-header.details-header-mobile {
  display: block;
  background-color: white;
}
@media screen and (min-width: 992px) {
  .details-default > .details-header.details-header-mobile {
    display: none;
  }
}
.details-default > .details-header:not([data-type=simple-header]):not([data-type=vertical-header]):not([data-type=profile-header]) .details-header-navbar:not(.is-fixed) .container {
  max-width: 100%;
  padding: 0;
}
.details-default > .details-header[data-type=simple-header] {
  background-color: var(--brand-base, #022e69);
}
.details-default > .details-header[data-type=simple-header]:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--brand-base, #022e69);
}
.details-default > .details-header[data-type=simple-header] .details-general .details-picture img {
  border-radius: var(--border-radius, 3px);
}
.details-default > .details-header[data-type=simple-header] .details-general .details-info .details-share {
  -ms-transform: translateY(3px);
      transform: translateY(3px);
  margin-left: 10px;
}
.details-default > .details-header[data-type=simple-header] .details-general .details-info .details-share .icon {
  font-size: 20px;
}
.details-default > .details-header[data-type=simple-header] .details-general .details-info .categories {
  color: #fff;
}
.details-default > .details-header[data-type=simple-header] .details-actions {
  text-align: right;
}
.details-default > .details-header[data-type=simple-header] .details-actions .button {
  margin-left: 12px;
}
.details-default > .details-header[data-type=simple-header] .details-actions .button:first-of-type {
  margin-left: 0;
}
.details-default > .details-header[data-type=simple-header] .details-claim {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: baseline;
      align-items: baseline;
  -ms-flex-pack: end;
      justify-content: end;
  margin-top: 12px;
  color: var(--color-white-base, white);
  font-size: var(--font-size-14, 0.875em);
  font-weight: 300;
  z-index: 1;
}
.details-default > .details-header[data-type=simple-header] .details-claim .icon {
  margin-right: 10px;
  color: var(--color-white-base, white);
}
.details-default > .details-header[data-type=simple-header] .details-claim a {
  margin-left: 10px;
  font-weight: 400;
}
.details-default > .details-header[data-type=simple-header] .details-header-navbar {
  background-color: var(--color-white-base, white);
}
.details-default > .details-header[data-type=simple-header] .details-header-navbar:before {
  background-color: var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  top: 56px;
}
.details-default > .details-header[data-type=simple-header] .details-header-navbar .tab-navbar {
  color: var(--brand-base, #022e69);
}
.details-default > .details-header[data-type=simple-header] .details-header-navbar .tab-navbar:first-child {
  margin-left: 0;
}
.details-default > .details-header[data-type=simple-header] .details-header-navbar .tab-navbar:hover {
  border-bottom-color: var(--brand-base, #022e69);
}
.details-default > .details-header[data-type=simple-header] .details-header-navbar .tab-navbar.is-selected {
  border-bottom-color: var(--brand-base, #022e69);
}
.details-default > .details-header[data-type=vertical-header] .details-header-content {
  -ms-flex-pack: center;
      justify-content: center;
}
.details-default > .details-header[data-type=vertical-header] .details-header-content .details-general {
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
}
@media screen and (max-width: 992px) {
  .details-default > .details-header[data-type=vertical-header] .details-header-content .details-general {
    width: 100%;
  }
}
.details-default > .details-header[data-type=vertical-header] .details-header-content .details-general .details-picture {
  border-radius: 80px;
  max-width: 170px;
  max-height: 170px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  margin-right: 0;
}
.details-default > .details-header[data-type=vertical-header] .details-header-content .details-general .details-picture img {
  border-radius: var(--border-radius, 3px);
  max-width: 100%;
  max-height: 100%;
}
.details-default > .details-header[data-type=vertical-header] .details-header-content .details-general .details-reviews {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  margin-bottom: 16px;
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.details-default > .details-header[data-type=vertical-header] .details-header-content .details-general .details-reviews .reviews-stars {
  margin-right: 10px;
}
.details-default > .details-header[data-type=vertical-header] .details-header-content .details-general .details-reviews .reviews-rating {
  display: none;
}
.details-default > .details-header[data-type=vertical-header] .details-header-content .details-general .details-reviews .reviews-stars .fa {
  color: var(--badge-base, #ffc800);
}
.details-default > .details-header[data-type=vertical-header] .details-header-content .details-general .details-reviews .reviews-count {
  font-weight: 300;
}
.details-default > .details-header[data-type=vertical-header] .details-header-content .details-general .details-reviews .reviews-count .link {
  color: var(--color-white-base, white);
}
.details-default > .details-header[data-type=vertical-header] .details-header-content .details-general .details-reviews .reviews-count .link:hover {
  color: var(--color-white-base, white);
  border-color: var(--color-white-base, white);
}
.details-default > .details-header[data-type=vertical-header] .details-header-content .details-general .details-reviews .reviews-count .first-to-review-label {
  font-style: italic;
  font-weight: 400;
  margin-right: 1px;
}
.details-default > .details-header[data-type=vertical-header] .details-header-content .details-general .details-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  margin-top: 16px;
}
.details-default > .details-header[data-type=vertical-header] .details-header-content .details-general .details-info .details-title {
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  text-align: center;
}
.details-default > .details-header[data-type=vertical-header] .details-header-content .details-general .details-info .details-title .heading {
  font-weight: 600;
}
.details-default > .details-header[data-type=vertical-header] .details-header-content .details-general .details-info .details-title .details-share {
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 8px;
}
.details-default > .details-header[data-type=vertical-header] .details-header-content .details-general .details-info .details-title .details-share i {
  font-size: 20px;
}
.details-default > .details-header[data-type=vertical-header] .details-header-content .details-general .details-info .details-title .details-share .icon {
  margin-right: 0;
}
.details-default > .details-header[data-type=vertical-header] .details-header-content .details-general .details-info .details-claim {
  font-weight: 300;
}
.details-default > .details-header[data-type=vertical-header] .details-header-content .details-general .details-info .details-claim .link {
  color: var(--highlight-base, #137df7);
}
.details-default > .details-header[data-type=vertical-header] .details-header-content .details-general .details-info .details-claim .link:hover {
  border-color: var(--highlight-base, #137df7);
}
.details-default > .details-header[data-type=vertical-header] .details-header-content .details-general .details-info .details-actions {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .details-default > .details-header[data-type=vertical-header] .details-header-content .details-general .details-info .details-actions {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: center;
        justify-content: center;
  }
  .details-default > .details-header[data-type=vertical-header] .details-header-content .details-general .details-info .details-actions .button {
    margin-left: 0;
    width: 100%;
  }
  .details-default > .details-header[data-type=vertical-header] .details-header-content .details-general .details-info .details-actions .button:first-of-type {
    margin-bottom: 8px;
  }
}
.details-default > .details-header[data-type=vertical-header] .details-header-content .details-general .details-info .details-actions .button {
  font-weight: 300;
  max-width: 250px;
}
.details-default > .details-header[data-type=vertical-header] .details-header-content .details-general .details-info .details-actions .button i {
  font-size: 18px;
  bottom: -2 px;
  position: relative;
  margin-right: 8px;
}
.details-default > .details-header[data-type=vertical-header] .details-header-navbar {
  background-color: var(--color-white-base, white);
}
.details-default > .details-header[data-type=vertical-header] .details-header-navbar:before {
  background-color: var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  top: 56px;
}
.details-default > .details-header[data-type=vertical-header] .details-header-navbar .tab-navbar {
  color: var(--brand-base, #022e69);
}
.details-default > .details-header[data-type=vertical-header] .details-header-navbar .tab-navbar:first-child {
  margin-left: 0;
}
.details-default > .details-header[data-type=vertical-header] .details-header-navbar .tab-navbar:hover {
  border-bottom-color: var(--brand-base, #022e69);
}
.details-default > .details-header[data-type=vertical-header] .details-header-navbar .tab-navbar.is-selected {
  border-bottom-color: var(--brand-base, #022e69);
}
.details-default > .details-header[data-type=vertical-header] .details-header-navbar .container {
  text-align: center;
}
.details-default > .details-header[data-type=vertical-header] .details-header-navbar .container .tab-navbar {
  white-space: nowrap;
}
.details-default > .details-header[data-type=vertical-header] .details-header-navbar .container::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}
@media screen and (max-width: 768px) {
  .details-default > .details-header[data-type=vertical-header] .details-header-navbar .container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow: auto;
  }
}
.details-default > .details-header[data-type=profile-header] .bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
  height: 360px;
}
.details-default > .details-header[data-type=profile-header]:before {
  background-color: var(--color-white-base, white);
}
.details-default > .details-header[data-type=profile-header]:not(.has-logo) .details-header-content, .details-default > .details-header[data-type=profile-header][cover-image=false] .details-header-content {
  margin-top: 0;
  padding-top: 58px;
}
.details-default > .details-header[data-type=profile-header][cover-image=false] .bg {
  display: none;
}
.details-default > .details-header[data-type=profile-header] .details-header-content {
  margin-top: -85px;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 0;
}
.details-default > .details-header[data-type=profile-header] .details-header-content .details-general {
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
}
@media screen and (max-width: 992px) {
  .details-default > .details-header[data-type=profile-header] .details-header-content .details-general {
    width: 100%;
  }
}
.details-default > .details-header[data-type=profile-header] .details-header-content .details-general .details-picture {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  border-radius: 162px;
  height: 150px;
  width: 150px;
  box-sizing: content-box;
  margin: auto;
  background-color: lightgray;
  border: solid 8px var(--color-white-base, white);
  margin-bottom: 24px;
  overflow: hidden;
}
.details-default > .details-header[data-type=profile-header] .details-header-content .details-general .details-picture img {
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.details-default > .details-header[data-type=profile-header] .details-header-content .details-general .details-title {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8px;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
}
.details-default > .details-header[data-type=profile-header] .details-header-content .details-general .details-title .details-share {
  display: -ms-flexbox;
  display: flex;
  margin: 3px 0 12px 12px;
}
.details-default > .details-header[data-type=profile-header] .details-header-content .details-general .details-title .details-share .fa {
  font-size: 20px;
}
.details-default > .details-header[data-type=profile-header] .details-header-content .details-general .details-title .details-share .icon {
  margin-right: 0;
}
.details-default > .details-header[data-type=profile-header] .details-header-content .details-general .details-categories {
  margin-bottom: 8px;
}
.details-default > .details-header[data-type=profile-header] .details-header-content .details-general .details-reviews {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
}
.details-default > .details-header[data-type=profile-header] .details-header-content .details-general .details-reviews .reviews-stars {
  margin-right: 10px;
}
.details-default > .details-header[data-type=profile-header] .details-header-content .details-general .details-reviews .reviews-rating {
  display: none;
}
.details-default > .details-header[data-type=profile-header] .details-header-content .details-general .details-reviews .reviews-stars .fa {
  color: var(--badge-base, #ffc800);
}
.details-default > .details-header[data-type=profile-header] .details-header-content .details-general .details-reviews .reviews-count {
  font-weight: 300;
}
.details-default > .details-header[data-type=profile-header] .details-header-content .details-general .details-reviews .reviews-count .first-to-review-label {
  font-style: italic;
  font-weight: 400;
  margin-right: 1px;
}
.details-default > .details-header[data-type=profile-header] .details-header-content .details-general .details-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  margin-top: 16px;
  margin-bottom: 58px;
}
.details-default > .details-header[data-type=profile-header] .details-header-content .details-general .details-info .details-title {
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  text-align: center;
}
.details-default > .details-header[data-type=profile-header] .details-header-content .details-general .details-info .details-title .heading {
  font-weight: 600;
  margin-right: 24px;
}
.details-default > .details-header[data-type=profile-header] .details-header-content .details-general .details-info .details-title .details-share {
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 8px;
}
.details-default > .details-header[data-type=profile-header] .details-header-content .details-general .details-info .details-title .details-share i {
  font-size: 20px;
}
.details-default > .details-header[data-type=profile-header] .details-header-content .details-general .details-info .details-claim {
  font-weight: 300;
  color: var(--neutral-base, #3e455e);
}
.details-default > .details-header[data-type=profile-header] .details-header-content .details-general .details-info .details-claim .fa {
  color: var(--neutral-base, #3e455e);
}
.details-default > .details-header[data-type=profile-header] .details-header-content .details-general .details-info .details-claim .link {
  color: var(--highlight-base, #137df7);
}
.details-default > .details-header[data-type=profile-header] .details-header-content .details-general .details-info .details-claim .link:hover {
  border-color: var(--highlight-base, #137df7);
}
.details-default > .details-header[data-type=profile-header] .details-header-content .details-general .details-info .details-actions {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .details-default > .details-header[data-type=profile-header] .details-header-content .details-general .details-info .details-actions {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: center;
        justify-content: center;
  }
  .details-default > .details-header[data-type=profile-header] .details-header-content .details-general .details-info .details-actions .button {
    margin-left: 0;
    width: 100%;
  }
  .details-default > .details-header[data-type=profile-header] .details-header-content .details-general .details-info .details-actions .button:first-of-type {
    margin-bottom: 8px;
  }
}
.details-default > .details-header[data-type=profile-header] .details-header-content .details-general .details-info .details-actions .button {
  font-weight: 300;
  max-width: 250px;
}
.details-default > .details-header[data-type=profile-header] .details-header-content .details-general .details-info .details-actions .button i {
  font-size: 18px;
  bottom: -2 px;
  position: relative;
  margin-right: 8px;
}
.details-default > .details-header[data-type=profile-header] .details-header-navbar {
  background-color: var(--color-white-base, white);
}
.details-default > .details-header[data-type=profile-header] .details-header-navbar:before {
  background-color: var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  top: 0;
}
.details-default > .details-header[data-type=profile-header] .details-header-navbar .tab-navbar {
  color: var(--brand-base, #022e69);
  border-bottom: none;
  border-top: 4px solid transparent;
}
.details-default > .details-header[data-type=profile-header] .details-header-navbar .tab-navbar:first-child {
  margin-left: 0;
}
.details-default > .details-header[data-type=profile-header] .details-header-navbar .tab-navbar:hover {
  border-top-color: var(--brand-base, #022e69);
}
.details-default > .details-header[data-type=profile-header] .details-header-navbar .tab-navbar.is-selected {
  border-top-color: var(--brand-base, #022e69);
}
.details-default > .details-header[data-type=profile-header] .details-header-navbar .container {
  text-align: center;
}
.details-default > .details-header[data-type=profile-header] .details-header-navbar .container .tab-navbar {
  white-space: nowrap;
}
.details-default > .details-header[data-type=profile-header] .details-header-navbar .container::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}
@media screen and (max-width: 768px) {
  .details-default > .details-header[data-type=profile-header] .details-header-navbar .container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow: auto;
  }
}
.details-default > .details-header[data-type=profile-header].contained {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .details-default > .details-header[data-type=profile-header].contained {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .details-default > .details-header[data-type=profile-header].contained {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .details-default > .details-header[data-type=profile-header].contained {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .details-default > .details-header[data-type=profile-header].contained {
    max-width: 1170px;
  }
}
.details-default > .details-header[data-type=profile-header].contained .bg {
  border-radius: var(--border-radius, 3px);
}
.details-default > .details-header[data-type=gallery-header] {
  background-color: var(--color-white-base, white);
}
.details-default > .details-header[data-type=gallery-header]:before {
  background: transparent;
  width: 0;
}
.details-default > .details-header[data-type=gallery-header] .gallery {
  display: none;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  height: 360px;
  border: solid 1px var(--color-white-base, white);
}
@media screen and (min-width: 992px) {
  .details-default > .details-header[data-type=gallery-header] .gallery {
    display: -ms-flexbox;
    display: flex;
  }
}
.details-default > .details-header[data-type=gallery-header] .gallery.gallery-mobile {
  display: -ms-flexbox;
  display: flex;
  overflow-x: scroll;
  max-width: 1000%;
}
@media screen and (min-width: 992px) {
  .details-default > .details-header[data-type=gallery-header] .gallery.gallery-mobile {
    display: none;
  }
}
.details-default > .details-header[data-type=gallery-header] .gallery.gallery-mobile .scroll {
  overflow-x: scroll;
}
.details-default > .details-header[data-type=gallery-header] .gallery .full-h, .details-default > .details-header[data-type=gallery-header] .gallery .half-h {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}
.details-default > .details-header[data-type=gallery-header] .gallery a {
  overflow: hidden;
  min-width: fit-content;
  display: inline-block;
  border: solid 1px var(--color-white-base, white);
}
@media screen and (min-width: 992px) {
  .details-default > .details-header[data-type=gallery-header] .gallery a {
    display: -ms-flexbox;
    display: flex;
    min-width: initial;
  }
}
.details-default > .details-header[data-type=gallery-header] .gallery a img {
  max-width: 100%;
  max-height: 360px;
  height: 360px;
  object-fit: cover;
}
@media screen and (min-width: 992px) {
  .details-default > .details-header[data-type=gallery-header] .gallery a img {
    max-width: initial;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    height: auto;
  }
}
.details-default > .details-header[data-type=gallery-header] .gallery .half-h {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.details-default > .details-header[data-type=gallery-header] .gallery .half-h a {
  height: 50%;
}
.details-default > .details-header[data-type=gallery-header] .gallery[amount-images="1"] .full-h a {
  width: 100%;
}
.details-default > .details-header[data-type=gallery-header] .gallery[amount-images="2"] .full-h a {
  width: 50%;
}
.details-default > .details-header[data-type=gallery-header] .gallery[amount-images="3"] .full-h a {
  width: 33.3%;
}
.details-default > .details-header[data-type=gallery-header] .gallery[amount-images="4"] .full-h a {
  width: 25%;
}
.details-default > .details-header[data-type=gallery-header] .gallery[amount-images="5"] .full-h a {
  width: 100%;
}
.details-default > .details-header[data-type=gallery-header] .gallery[amount-images="5"] .half-h a {
  width: 50%;
}
.details-default > .details-header[data-type=gallery-header] .gallery[amount-images="6"] .full-h a {
  width: 50%;
}
.details-default > .details-header[data-type=gallery-header] .gallery[amount-images="6"] .half-h a {
  width: 50%;
}
.details-default > .details-header[data-type=gallery-header] .gallery[amount-images="7"] .full-h {
  width: 33.3%;
}
.details-default > .details-header[data-type=gallery-header] .gallery[amount-images="7"] .full-h a {
  width: 100%;
}
.details-default > .details-header[data-type=gallery-header] .gallery[amount-images="7"] .half-h a {
  width: 33.3%;
}
.details-default > .details-header[data-type=gallery-header] .gallery[amount-images="8"] .full-h {
  display: none;
}
.details-default > .details-header[data-type=gallery-header] .gallery[amount-images="8"] .half-h a {
  width: 25%;
}
.details-default > .details-header[data-type=gallery-header] .details-header-block, .details-default > .details-header[data-type=slider-header] .details-header-block {
  display: -ms-flexbox;
  display: flex;
  padding: 48px 0;
  -ms-flex-direction: column;
      flex-direction: column;
}
@media screen and (min-width: 992px) {
  .details-default > .details-header[data-type=gallery-header] .details-header-block, .details-default > .details-header[data-type=slider-header] .details-header-block {
    -ms-flex-direction: row;
        flex-direction: row;
  }
}
.details-default > .details-header[data-type=gallery-header] .details-header-block .details-picture.mobile, .details-default > .details-header[data-type=slider-header] .details-header-block .details-picture.mobile {
  margin: 0;
}
@media screen and (min-width: 992px) {
  .details-default > .details-header[data-type=gallery-header] .details-header-block .details-picture.mobile, .details-default > .details-header[data-type=slider-header] .details-header-block .details-picture.mobile {
    display: none;
  }
}
.details-default > .details-header[data-type=gallery-header] .details-header-block .details-picture.desktop, .details-default > .details-header[data-type=slider-header] .details-header-block .details-picture.desktop {
  display: none;
}
@media screen and (min-width: 992px) {
  .details-default > .details-header[data-type=gallery-header] .details-header-block .details-picture.desktop, .details-default > .details-header[data-type=slider-header] .details-header-block .details-picture.desktop {
    display: -ms-flexbox;
    display: flex;
  }
}
.details-default > .details-header[data-type=gallery-header] .details-header-block .details-picture, .details-default > .details-header[data-type=slider-header] .details-header-block .details-picture {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  height: 150px;
  width: 150px;
  min-width: 150px;
  box-sizing: content-box;
  margin-right: 33px;
}
@media screen and (min-width: 992px) {
  .details-default > .details-header[data-type=gallery-header] .details-header-block .details-picture, .details-default > .details-header[data-type=slider-header] .details-header-block .details-picture {
    -ms-flex-align: start;
        align-items: flex-start;
  }
}
.details-default > .details-header[data-type=gallery-header] .details-header-block .details-picture img, .details-default > .details-header[data-type=slider-header] .details-header-block .details-picture img {
  border-radius: var(--border-radius, 3px);
  max-width: 100%;
  max-height: 100%;
}
.details-default > .details-header[data-type=gallery-header] .details-header-block .details-header-content, .details-default > .details-header[data-type=slider-header] .details-header-block .details-header-content {
  padding: 0;
  -ms-flex-pack: center;
      justify-content: center;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .details-default > .details-header[data-type=gallery-header] .details-header-block .details-header-content, .details-default > .details-header[data-type=slider-header] .details-header-block .details-header-content {
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}
.details-default > .details-header[data-type=gallery-header] .details-header-block .details-header-content .details-general, .details-default > .details-header[data-type=slider-header] .details-header-block .details-header-content .details-general {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
}
@media screen and (min-width: 992px) {
  .details-default > .details-header[data-type=gallery-header] .details-header-block .details-header-content .details-general, .details-default > .details-header[data-type=slider-header] .details-header-block .details-header-content .details-general {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-align: start;
        align-items: flex-start;
  }
}
.details-default > .details-header[data-type=gallery-header] .details-header-block .details-header-content .details-general .details-info, .details-default > .details-header[data-type=slider-header] .details-header-block .details-header-content .details-general .details-info {
  display: -ms-flexbox;
  display: flex;
  width: auto;
}
.details-default > .details-header[data-type=gallery-header] .details-header-block .details-header-content .details-general .details-info .details-info-group, .details-default > .details-header[data-type=slider-header] .details-header-block .details-header-content .details-general .details-info .details-info-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
}
@media screen and (min-width: 992px) {
  .details-default > .details-header[data-type=gallery-header] .details-header-block .details-header-content .details-general .details-info .details-info-group, .details-default > .details-header[data-type=slider-header] .details-header-block .details-header-content .details-general .details-info .details-info-group {
    -ms-flex-align: start;
        align-items: flex-start;
  }
}
.details-default > .details-header[data-type=gallery-header] .details-header-block .details-header-content .details-general .details-info .details-title, .details-default > .details-header[data-type=slider-header] .details-header-block .details-header-content .details-general .details-info .details-title {
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 8px;
}
@media screen and (min-width: 992px) {
  .details-default > .details-header[data-type=gallery-header] .details-header-block .details-header-content .details-general .details-info .details-title, .details-default > .details-header[data-type=slider-header] .details-header-block .details-header-content .details-general .details-info .details-title {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-align: start;
        align-items: flex-start;
    margin-bottom: 0;
  }
}
.details-default > .details-header[data-type=gallery-header] .details-header-block .details-header-content .details-general .details-info .details-title .heading, .details-default > .details-header[data-type=slider-header] .details-header-block .details-header-content .details-general .details-info .details-title .heading {
  color: var(--neutral-base, #3e455e);
  -ms-flex-order: 2;
      order: 2;
}
@media screen and (min-width: 992px) {
  .details-default > .details-header[data-type=gallery-header] .details-header-block .details-header-content .details-general .details-info .details-title .heading, .details-default > .details-header[data-type=slider-header] .details-header-block .details-header-content .details-general .details-info .details-title .heading {
    margin-right: 10px;
    -ms-flex-order: 1;
        order: 1;
  }
}
.details-default > .details-header[data-type=gallery-header] .details-header-block .details-header-content .details-general .details-info .details-title .details-share, .details-default > .details-header[data-type=slider-header] .details-header-block .details-header-content .details-general .details-info .details-title .details-share {
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-order: 1;
      order: 1;
}
.details-default > .details-header[data-type=gallery-header] .details-header-block .details-header-content .details-general .details-info .details-title .details-share .fa, .details-default > .details-header[data-type=slider-header] .details-header-block .details-header-content .details-general .details-info .details-title .details-share .fa {
  font-size: 20px;
}
.details-default > .details-header[data-type=gallery-header] .details-header-block .details-header-content .details-general .details-info .details-title .details-share .share-icon .fa, .details-default > .details-header[data-type=slider-header] .details-header-block .details-header-content .details-general .details-info .details-title .details-share .share-icon .fa {
  color: var(--neutral-base, #3e455e);
}
@media screen and (min-width: 992px) {
  .details-default > .details-header[data-type=gallery-header] .details-header-block .details-header-content .details-general .details-info .details-title .details-share, .details-default > .details-header[data-type=slider-header] .details-header-block .details-header-content .details-general .details-info .details-title .details-share {
    -ms-flex-pack: start;
        justify-content: flex-start;
  }
}
@media screen and (min-width: 992px) {
  .details-default > .details-header[data-type=gallery-header] .details-header-block .details-header-content .details-general .details-info .details-title .details-share, .details-default > .details-header[data-type=slider-header] .details-header-block .details-header-content .details-general .details-info .details-title .details-share {
    -ms-flex-order: 2;
        order: 2;
  }
}
.details-default > .details-header[data-type=gallery-header] .details-header-block .details-header-content .details-general .details-info .details-categories, .details-default > .details-header[data-type=slider-header] .details-header-block .details-header-content .details-general .details-info .details-categories {
  margin-bottom: 24px;
  color: var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
}
@media screen and (min-width: 992px) {
  .details-default > .details-header[data-type=gallery-header] .details-header-block .details-header-content .details-general .details-info .details-categories, .details-default > .details-header[data-type=slider-header] .details-header-block .details-header-content .details-general .details-info .details-categories {
    -ms-flex-order: 3;
        order: 3;
    margin-bottom: 0;
  }
}
.details-default > .details-header[data-type=gallery-header] .details-header-block .details-header-content .details-general .details-info .details-reviews, .details-default > .details-header[data-type=slider-header] .details-header-block .details-header-content .details-general .details-info .details-reviews {
  margin-top: 18px;
}
@media screen and (min-width: 992px) {
  .details-default > .details-header[data-type=gallery-header] .details-header-block .details-header-content .details-general .details-info .details-reviews, .details-default > .details-header[data-type=slider-header] .details-header-block .details-header-content .details-general .details-info .details-reviews {
    margin-top: 8px;
    margin-bottom: 54px;
    -ms-flex-order: 4;
        order: 4;
  }
}
.details-default > .details-header[data-type=gallery-header] .details-header-block .details-header-content .details-general .details-info .details-reviews .reviews-rating, .details-default > .details-header[data-type=slider-header] .details-header-block .details-header-content .details-general .details-info .details-reviews .reviews-rating {
  color: var(--neutral-base, #3e455e);
}
.details-default > .details-header[data-type=gallery-header] .details-header-block .details-header-content .details-general .details-info .details-reviews .reviews-count, .details-default > .details-header[data-type=slider-header] .details-header-block .details-header-content .details-general .details-info .details-reviews .reviews-count {
  color: var(--neutral-base, #3e455e);
}
.details-default > .details-header[data-type=gallery-header] .details-header-block .details-header-content .details-general .details-info .details-reviews .advanced-reviews.review-additional-title, .details-default > .details-header[data-type=slider-header] .details-header-block .details-header-content .details-general .details-info .details-reviews .advanced-reviews.review-additional-title {
  color: var(--neutral-base, #3e455e);
}
.details-default > .details-header[data-type=gallery-header] .details-header-block .details-header-content .details-general .details-actions, .details-default > .details-header[data-type=slider-header] .details-header-block .details-header-content .details-general .details-actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
}
.details-default > .details-header[data-type=gallery-header] .details-header-block .details-header-content .details-general .details-actions .button, .details-default > .details-header[data-type=slider-header] .details-header-block .details-header-content .details-general .details-actions .button {
  width: 100%;
  display: block;
  margin-bottom: 8px;
}
.details-default > .details-header[data-type=gallery-header] .details-header-block .details-header-content .details-general .details-actions .details-claim, .details-default > .details-header[data-type=slider-header] .details-header-block .details-header-content .details-general .details-actions .details-claim {
  font-size: var(--font-size-14, 0.875em);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 3px;
}
.details-default > .details-header[data-type=gallery-header] .details-header-block .details-header-content .details-contact, .details-default > .details-header[data-type=slider-header] .details-header-block .details-header-content .details-contact {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 40px;
  -ms-flex-direction: column;
      flex-direction: column;
  margin-top: 28px;
}
@media screen and (min-width: 992px) {
  .details-default > .details-header[data-type=gallery-header] .details-header-block .details-header-content .details-contact, .details-default > .details-header[data-type=slider-header] .details-header-block .details-header-content .details-contact {
    max-width: 560px;
    -ms-flex-direction: row;
        flex-direction: row;
    margin-top: 0;
    gap: 24px 40px;
  }
}
@media screen and (min-width: 1200px) {
  .details-default > .details-header[data-type=gallery-header] .details-header-block .details-header-content .details-contact, .details-default > .details-header[data-type=slider-header] .details-header-block .details-header-content .details-contact {
    max-width: none;
  }
}
.details-default > .details-header[data-type=gallery-header] .details-header-block .details-header-content .details-contact .contact-item, .details-default > .details-header[data-type=slider-header] .details-header-block .details-header-content .details-contact .contact-item {
  color: var(--neutral-base, #3e455e);
  margin-top: 0;
}
.details-default > .details-header[data-type=gallery-header] .details-header-block .details-header-content .details-contact .contact-item:last-of-type, .details-default > .details-header[data-type=slider-header] .details-header-block .details-header-content .details-contact .contact-item:last-of-type {
  margin-right: 0;
}
.details-default > .details-header[data-type=gallery-header] .details-header-block .details-header-content .details-contact .contact-item a, .details-default > .details-header[data-type=slider-header] .details-header-block .details-header-content .details-contact .contact-item a {
  color: var(--neutral-base, #3e455e);
}
.details-default > .details-header[data-type=gallery-header] .details-header-block .details-header-content .details-contact .contact-item .icon .fa, .details-default > .details-header[data-type=slider-header] .details-header-block .details-header-content .details-contact .contact-item .icon .fa {
  color: var(--neutral-base, #3e455e);
}
.details-default > .details-header[data-type=gallery-header] .details-header-navbar, .details-default > .details-header[data-type=slider-header] .details-header-navbar {
  background-color: var(--color-white-base, white);
}
.details-default > .details-header[data-type=gallery-header] .details-header-navbar:before, .details-default > .details-header[data-type=slider-header] .details-header-navbar:before {
  background-color: var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  top: 0;
}
.details-default > .details-header[data-type=gallery-header] .details-header-navbar .tab-navbar, .details-default > .details-header[data-type=slider-header] .details-header-navbar .tab-navbar {
  color: var(--brand-base, #022e69);
  border-bottom: none;
  border-top: 4px solid transparent;
}
.details-default > .details-header[data-type=gallery-header] .details-header-navbar .tab-navbar:first-child, .details-default > .details-header[data-type=slider-header] .details-header-navbar .tab-navbar:first-child {
  margin-left: 0;
}
.details-default > .details-header[data-type=gallery-header] .details-header-navbar .tab-navbar:hover, .details-default > .details-header[data-type=slider-header] .details-header-navbar .tab-navbar:hover {
  border-top-color: var(--brand-base, #022e69);
}
.details-default > .details-header[data-type=gallery-header] .details-header-navbar .tab-navbar.is-selected, .details-default > .details-header[data-type=slider-header] .details-header-navbar .tab-navbar.is-selected {
  border-top-color: var(--brand-base, #022e69);
}
.details-default > .details-header[data-type=gallery-header] .details-header-navbar .container, .details-default > .details-header[data-type=slider-header] .details-header-navbar .container {
  text-align: center;
}
.details-default > .details-header[data-type=gallery-header] .details-header-navbar .container .tab-navbar, .details-default > .details-header[data-type=slider-header] .details-header-navbar .container .tab-navbar {
  white-space: nowrap;
}
.details-default > .details-header[data-type=gallery-header] .details-header-navbar .container::-webkit-scrollbar, .details-default > .details-header[data-type=slider-header] .details-header-navbar .container::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}
@media screen and (max-width: 768px) {
  .details-default > .details-header[data-type=gallery-header] .details-header-navbar .container, .details-default > .details-header[data-type=slider-header] .details-header-navbar .container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow: auto;
  }
}
.details-default > .details-header[data-type=slider-header] {
  background-color: var(--color-white-base, white);
}
.details-default > .details-header[data-type=slider-header]:before {
  display: none;
}
.details-default > .details-header[data-type=slider-header] .gallery-slider {
  position: relative;
  height: 360px;
}
@media screen and (min-width: 992px) {
  .details-default > .details-header[data-type=slider-header] .gallery-slider[slider=false] {
    display: -ms-flexbox;
    display: flex;
  }
  .details-default > .details-header[data-type=slider-header] .gallery-slider[slider=false] a {
    width: 100%;
  }
}
.details-default > .details-header[data-type=slider-header] .gallery-slider a img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border: solid 1px #fff;
}
.details-default > .details-header[data-type=slider-header] .gallery-slider .slick-arrow {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  background-color: #fff;
  padding: 20px 10px;
  cursor: pointer;
  font-size: 20px;
  z-index: 1;
}
.details-default > .details-header[data-type=slider-header] .gallery-slider .slick-arrow.slick-arrow-left {
  left: 0;
}
.details-default > .details-header[data-type=slider-header] .gallery-slider .slick-arrow.slick-arrow-right {
  right: 0;
}
.details-default > .details-header .categories-dropdown {
  position: relative;
  display: inline-block;
}
.details-default > .details-header .categories-dropdown .categories-dropdown-toggle {
  text-decoration: none;
  border-bottom: none;
  cursor: pointer;
}
.details-default > .details-header .categories-dropdown .categories-dropdown-content {
  position: absolute;
  width: 178px;
  background: white;
  padding: 8px;
  border-radius: 3px;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  margin-top: 16px;
  text-align: center;
  display: none;
  color: var(--neutral-base, #3e455e);
  z-index: 5;
}
.details-default > .details-header .categories-dropdown .categories-dropdown-content:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: white;
  top: -5px;
  left: 50%;
  -ms-transform: translateX(-50%) rotate(45deg);
      transform: translateX(-50%) rotate(45deg);
}
.details-default > .details-header .details-picture {
  border-radius: var(--border-radius-icon, 3px);
  margin-right: 32px;
}
.details-default > .details-header .details-picture img {
  border-radius: var(--border-radius, 3px);
}
.details-default > .details-header.details-header-mobile .details-picture, .details-default > .details-header.details-header-mobile .details-reviews, .details-default > .details-header.details-header-mobile .details-actions {
  position: relative;
  z-index: 5;
}
.details-default > .details-header.details-header-mobile .details-share {
  display: -ms-flexbox;
  display: flex;
  margin-left: 8px;
}
.details-default > .details-header.details-header-mobile .details-share a {
  text-decoration: none;
}
.details-default > .details-header.details-header-mobile .details-share .icon {
  cursor: pointer;
  font-size: 22px;
  text-decoration: none;
}
.details-default > .details-header.details-header-mobile .details-share .bookmark,
.details-default > .details-header.details-header-mobile .details-share .fa-bookmark,
.details-default > .details-header.details-header-mobile .details-share .fa-bookmark-o {
  color: var(--badge-base, #ffc800);
  text-decoration: none;
}
.details-default > .details-header.details-header-mobile .details-share .fa-share-alt {
  color: var(--color-white-base, white);
}
.details-default > .details-header.details-header-mobile .details-reviews {
  text-align: center;
  margin-top: 16px;
  color: white;
}
.details-default > .details-header.details-header-mobile .details-reviews .reviews-stars .fa {
  color: var(--badge-base, #ffc800);
}
.details-default > .details-header.details-header-mobile .details-reviews .reviews-value {
  margin-left: 4px;
  font-weight: 300;
  color: var(--badge-base, #ffc800);
  font-size: var(--font-size-12, 0.75em);
}
.details-default > .details-header.details-header-mobile .details-reviews .reviews-value:before {
  content: "(";
}
.details-default > .details-header.details-header-mobile .details-reviews .reviews-value:after {
  content: ")";
}
.details-default > .details-header.details-header-mobile .detail-header-content-mobile {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  -ms-flex-align: center;
      align-items: center;
  padding: 32px 0;
  position: relative;
  background-color: var(--brand-base, #022e69);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.details-default > .details-header.details-header-mobile .detail-header-content-mobile:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--color-black-transp-65, rgba(0, 0, 0, 0.65));
}
.details-default > .details-header.details-header-mobile[data-type=simple-header] .details-general-mobile .details-reviews {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  margin-bottom: 24px;
}
.details-default > .details-header.details-header-mobile[data-type=simple-header] .details-general-mobile .details-reviews .reviews-rating, .details-default > .details-header.details-header-mobile[data-type=simple-header] .details-general-mobile .details-reviews .reviews-stars {
  margin-right: 8px;
}
.details-default > .details-header.details-header-mobile[data-type=simple-header] .details-general-mobile .details-info {
  margin-top: 16px;
}
.details-default > .details-header.details-header-mobile[data-type=simple-header] .details-general-mobile .details-info .details-title {
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
}
.details-default > .details-header.details-header-mobile[data-type=simple-header] .details-general-mobile .details-info .details-title .details-share {
  margin-bottom: 8px;
}
.details-default > .details-header.details-header-mobile[data-type=simple-header] .details-general-mobile .details-info .details-categories {
  margin-top: 16px;
}
.details-default > .details-header.details-header-mobile[data-type=simple-header]:before {
  background: var(--color-white-base, white);
}
.details-default > .details-header.details-header-mobile[data-type=simple-header] .detail-header-content-mobile {
  padding: 48px 0;
}
.details-default > .details-header.details-header-mobile[data-type=simple-header] .detail-header-content-mobile:before {
  background: var(--brand-base, #022e69);
}
.details-default > .details-header.details-header-mobile[data-type=simple-header] .detail-header-content-mobile .details-actions {
  margin-top: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.details-default > .details-header.details-header-mobile[data-type=simple-header] .detail-header-content-mobile .details-actions .button {
  width: 100%;
  margin: 0;
}
.details-default > .details-header.details-header-mobile[data-type=simple-header] .detail-header-content-mobile .details-actions .button:first-of-type {
  margin-bottom: 8px;
}
.details-default > .details-header.details-header-mobile[data-type=simple-header] .details-header-navbar-mobile .tab-navbar {
  color: var(--brand-base, #022e69);
  border-bottom: 4px solid transparent;
}
.details-default > .details-header.details-header-mobile[data-type=simple-header] .details-header-navbar-mobile .tab-navbar.is-selected {
  color: var(--brand-base, #022e69);
  border-bottom-color: var(--brand-base, #022e69);
}
.details-default > .details-header.details-header-mobile .details-actions {
  margin-top: 8px;
  text-align: center;
}
.details-default > .details-header.details-header-mobile .details-actions .button {
  margin-top: 8px;
}
.details-default > .details-header.details-header-mobile .details-date {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
  font-weight: 600;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  z-index: 5;
}
.details-default > .details-header.details-header-mobile .details-date .fa {
  color: var(--color-white-base, white);
  margin-right: 8px;
}
.details-default > .details-header.details-header-mobile .details-date-open {
  margin-left: 16px;
}
.details-default > .details-header.details-header-mobile .details-occurence {
  margin-top: 8px;
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
  z-index: 5;
  text-align: center;
  padding: 0 16px;
}
.details-default > .details-header.details-header-mobile .details-header-navbar-mobile {
  position: relative;
  z-index: 5;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
  overflow: auto;
  border-bottom: 1px solid rgba(151, 151, 151, 0.25);
  height: 53px;
}
.details-default > .details-header.details-header-mobile .details-header-navbar-mobile::-webkit-scrollbar {
  width: 0px;
  background: transparent;
  display: none;
}
.details-default > .details-header.details-header-mobile .details-header-navbar-mobile .tab-navbar {
  color: var(--neutral-base, #3e455e);
  padding: 16px 5px 12px;
  display: inline-block;
  margin-left: 32px;
  text-decoration: none;
  white-space: nowrap;
}
.details-default > .details-header.details-header-mobile .details-header-navbar-mobile .tab-navbar.is-selected {
  color: var(--highlight-base, #137df7);
}
.details-default > .details-header.details-header-mobile .detail-info-mobile {
  padding: 16px 32px;
}
.details-default > .details-header.details-header-mobile .detail-info-mobile .details-title {
  display: none;
  -ms-flex-align: center;
      align-items: center;
}
@media screen and (min-width: 992px) {
  .details-default > .details-header.details-header-mobile .detail-info-mobile .details-title {
    display: -ms-flexbox;
    display: flex;
  }
}
.details-default > .details-header.details-header-mobile .detail-info-mobile .details-categories {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
  margin-top: 8px;
  display: none;
}
@media screen and (min-width: 992px) {
  .details-default > .details-header.details-header-mobile .detail-info-mobile .details-categories {
    display: block;
  }
}
.details-default > .details-header.details-header-mobile .detail-info-mobile .details-certified {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-top: 16px;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.details-default > .details-header.details-header-mobile .detail-info-mobile .details-certified::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}
.details-default > .details-header.details-header-mobile .detail-info-mobile .details-certified .item-certified {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  width: 160px;
  margin-left: 16px;
}
.details-default > .details-header.details-header-mobile .detail-info-mobile .details-certified .item-certified:first-child {
  margin-left: 0;
}
.details-default > .details-header.details-header-mobile .detail-info-mobile .details-certified .item-certified .picture {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.details-default > .details-header.details-header-mobile .detail-info-mobile .details-certified .item-certified .picture img {
  max-width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.details-default > .details-header.details-header-mobile .detail-info-mobile .details-certified .item-certified .title {
  color: var(--neutral-base, #3e455e);
  width: calc(100% - 56px);
  font-size: 11px;
  margin-left: 8px;
}
.details-default > .details-header.details-header-mobile .detail-info-mobile .details-contact {
  margin-top: 24px;
}
.details-default > .details-header.details-header-mobile .detail-info-mobile .details-contact .contact-item-name {
  margin-top: 8px !important;
}
@media screen and (min-width: 992px) {
  .details-default > .details-header.details-header-mobile .detail-info-mobile .details-contact .contact-item-name {
    margin-top: 32px !important;
  }
}
.details-default > .details-header.details-header-mobile .detail-info-mobile .details-contact .contact-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  color: var(--neutral-base, #3e455e);
  margin-top: 8px;
  word-break: break-word;
}
.details-default > .details-header.details-header-mobile .detail-info-mobile .details-contact .contact-item.contact-open-time {
  -ms-flex-align: start;
      align-items: flex-start;
}
.details-default > .details-header.details-header-mobile .detail-info-mobile .details-contact .contact-item-name {
  -ms-flex-align: center;
      align-items: center;
  margin-top: 32px;
}
.details-default > .details-header.details-header-mobile .detail-info-mobile .details-contact .contact-item-name .link {
  margin-left: 6px !important;
}
.details-default > .details-header.details-header-mobile .detail-info-mobile .details-contact .contact-item-phone {
  -ms-flex-align: center;
      align-items: center;
}
.details-default > .details-header.details-header-mobile .detail-info-mobile .details-contact .contact-item:first-child {
  margin-top: 0;
}
.details-default > .details-header.details-header-mobile .detail-info-mobile .details-contact .contact-item .icon {
  margin-right: 8px;
}
.details-default > .details-header.details-header-mobile .detail-info-mobile .details-contact .contact-item .icon .fa {
  color: var(--neutral-base, #3e455e);
}
.details-default > .details-header.details-header-mobile .detail-info-mobile .details-contact .contact-item .link {
  margin-left: 16px;
}
.details-default > .details-header.details-header-mobile .detail-info-mobile .details-contact .contact-item .open-time .open-list {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}
.details-default > .details-header.details-header-mobile .detail-info-mobile .details-contact .contact-item .open-time .open-list .open-item {
  margin-top: 4px;
}
.details-default > .details-header.details-header-mobile .detail-info-mobile .details-contact .contact-item .open-time .open-list .open-item:first-child {
  margin-top: 0;
}
.details-default > .details-header.details-header-mobile .detail-info-mobile .details-social {
  display: -ms-flexbox;
  display: flex;
  margin-top: 16px;
}
.details-default > .details-header.details-header-mobile .detail-info-mobile .details-social .social-item {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  color: var(--color-white-base, white);
  background: var(--neutral-base, #3e455e);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  text-decoration: none;
  font-size: 16px;
  margin-top: 0;
}
.details-default > .details-header.details-header-mobile .detail-info-mobile .details-social .social-item:not(:first-child) {
  margin-left: 16px;
}
.details-default > .details-header .details-header-content {
  padding: 48px 0;
  position: relative;
  z-index: 5;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.details-default > .details-header .details-general {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
  width: 60%;
}
.details-default > .details-header .details-general .details-info {
  width: 100%;
}
.details-default > .details-header .details-general .details-info .details-title {
  display: -ms-flexbox;
  display: flex;
}
.details-default > .details-header .details-general .details-info .details-title .heading {
  color: white;
}
.details-default > .details-header .details-general .details-info .details-share {
  display: -ms-flexbox;
  display: flex;
}
.details-default > .details-header .details-general .details-info .details-share a {
  text-decoration: none;
}
.details-default > .details-header .details-general .details-info .details-share .icon {
  cursor: pointer;
  text-decoration: none;
}
.details-default > .details-header .details-general .details-info .details-share .bookmark,
.details-default > .details-header .details-general .details-info .details-share .fa-bookmark,
.details-default > .details-header .details-general .details-info .details-share .fa-bookmark-o {
  color: var(--badge-base, #ffc800);
  text-decoration: none;
}
.details-default > .details-header .details-general .details-info .details-share .fa-share-alt {
  color: var(--color-white-base, white);
}
.details-default > .details-header .details-general .details-info .details-categories {
  color: var(--color-white-transp-50, rgba(255, 255, 255, 0.5));
  margin-top: 8px;
}
.details-default > .details-header .details-general .details-info .details-old-price {
  margin-top: 16px;
  line-height: 1;
  color: var(--color-white-transp-50, rgba(255, 255, 255, 0.5));
  text-decoration: line-through;
}
.details-default > .details-header .details-general .details-info .details-old-price + .details-price {
  margin-top: 4px;
  line-height: 1;
}
.details-default > .details-header .details-general .details-info .details-price {
  color: var(--color-white-base, white);
  margin-top: 24px;
}
.details-default > .details-header .details-general .details-info .details-date {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
  font-weight: 600;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-top: 12px;
}
.details-default > .details-header .details-general .details-info .details-date .fa {
  color: var(--color-white-base, white);
  margin-right: 8px;
}
.details-default > .details-header .details-general .details-info .details-date-open {
  margin-left: 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.details-default > .details-header .details-general .details-info .details-date-open .timezone-detail {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  cursor: default;
}
.details-default > .details-header .details-general .details-info .details-date-open .timezone-detail .timezone-detail-content {
  position: relative;
  margin-left: 8px;
  font-size: var(--font-size-12, 0.75em);
  opacity: 0.8;
  display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90px;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .details-default > .details-header .details-general .details-info .details-date-open .timezone-detail .timezone-detail-content {
    max-width: 170px;
  }
}
.details-default > .details-header .details-general .details-info .details-date-open .timezone-detail[data-tooltip]:before {
  font-weight: 300;
  font-family: "Rubik", sans-serif;
  font-size: var(--font-size-12, 0.75em);
  color: #fdfdfd;
  padding: 8px;
  background-color: #2f2f2f;
  text-align: left;
}
.details-default > .details-header .details-general .details-info .details-occurence {
  margin-top: 8px;
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.details-default > .details-header .details-general .details-info .details-reviews {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
  margin-top: 12px;
}
.details-default > .details-header .details-general .details-info .details-reviews .reviews-first {
  margin-left: 8px;
  font-style: italic;
}
.details-default > .details-header .details-general .details-info .details-reviews .reviews-first .link {
  font-style: normal;
}
.details-default > .details-header .details-general .details-info .details-reviews .reviews-stars {
  margin-left: 8px;
}
.details-default > .details-header .details-general .details-info .details-reviews .reviews-stars .fa {
  color: var(--badge-base, #ffc800);
}
.details-default > .details-header .details-general .details-info .details-reviews .reviews-rating {
  font-weight: bold;
  font-size: var(--font-size-20, 1.25em);
}
.details-default > .details-header .details-general .details-info .details-reviews .reviews-count {
  font-size: var(--font-size-14, 0.875em);
  margin-left: 16px;
  font-weight: 300;
}
.details-default > .details-header .details-general .details-info .details-reviews .reviews-count .first-to-review-label {
  font-style: italic;
  font-weight: 400;
  margin-right: 1px;
}
.details-default > .details-header .details-general .details-info .details-reviews .reviews-value {
  margin-left: 4px;
  font-weight: 300;
  color: var(--badge-base, #ffc800);
  font-size: var(--font-size-12, 0.75em);
}
.details-default > .details-header .details-general .details-info .details-reviews .reviews-value:before {
  content: "(";
}
.details-default > .details-header .details-general .details-info .details-reviews .reviews-value:after {
  content: ")";
}
.details-default > .details-header .details-general .details-info .details-actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row;
      flex-flow: row;
  -ms-flex-align: center;
      align-items: center;
  margin-top: 24px;
}
.details-default > .details-header .details-general .details-info .details-actions + .details-claim {
  margin-top: 24px;
}
.details-default > .details-header .details-general .details-info .details-actions .button {
  margin-left: 16px;
  text-align: center;
  max-width: 200px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.details-default > .details-header .details-general .details-info .details-actions .button:first-child {
  margin-left: 0;
}
.details-default > .details-header .details-general .details-info .details-claim {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-top: 8px;
  color: white;
}
.details-default > .details-header .details-general .details-info .details-claim .fa {
  margin-right: 8px;
  color: white;
}
.details-default > .details-header .details-general .details-info .details-claim .link {
  margin-left: 8px;
  margin-top: 3px;
}
.details-default > .details-header .details-general .details-info .details-certified {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-align: center;
      align-items: center;
}
@media screen and (min-width: 992px) {
  .details-default > .details-header .details-general .details-info .details-certified {
    margin-left: -16px;
    margin-top: 16px;
  }
}
.details-default > .details-header .details-general .details-info .details-certified .item-certified {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  width: 160px;
  margin-left: 16px;
  margin-bottom: 16px;
}
@media screen and (min-width: 992px) {
  .details-default > .details-header .details-general .details-info .details-certified .item-certified {
    width: 150px;
  }
}
@media screen and (min-width: 1200px) {
  .details-default > .details-header .details-general .details-info .details-certified .item-certified {
    width: 160px;
  }
}
.details-default > .details-header .details-general .details-info .details-certified .item-certified .picture {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.details-default > .details-header .details-general .details-info .details-certified .item-certified .picture img {
  max-width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  margin: 0 auto;
}
.details-default > .details-header .details-general .details-info .details-certified .item-certified .title {
  color: var(--color-white-base, white);
  width: calc(100% - 44px);
}
.details-default > .details-header .details-general-mobile {
  width: 90%;
  z-index: 10;
}
.details-default > .details-header .details-general-mobile .details-picture {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 136px;
  height: 136px;
  margin: 0 auto;
}
.details-default > .details-header .details-general-mobile .details-picture img {
  max-width: 100%;
}
.details-default > .details-header .details-general-mobile .details-info {
  margin-top: 24px;
}
.details-default > .details-header .details-general-mobile .details-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.details-default > .details-header .details-general-mobile .details-title .heading {
  max-width: calc(100% - 72px);
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
  word-break: break-word;
  text-align: center;
}
.details-default > .details-header .details-general-mobile .details-categories {
  text-align: center;
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.details-default > .details-header .details-general-mobile .details-claim {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  margin-top: 8px;
  color: white;
}
.details-default > .details-header .details-general-mobile .details-claim .fa {
  margin-right: 8px;
  color: white;
}
.details-default > .details-header .details-general-mobile .details-claim .link {
  margin-left: 8px;
  margin-top: 3px;
}
.details-default > .details-header .share-dropdown-mobile {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  background: rgba(0, 0, 0, 0.8);
  padding: 8px;
  transition: 0.4s ease-in-out;
  z-index: 50000;
  margin: 0;
  min-height: auto;
  line-height: 1;
}
.details-default > .details-header .share-dropdown-mobile.is-open {
  left: 0;
}
.details-default > .details-header .share-dropdown-mobile .close-share {
  position: absolute;
  right: 16px;
  top: 16px;
  color: white;
  display: block;
  line-height: 1;
  padding: 0;
  font-size: 28px;
  z-index: 5;
  outline: none;
  background: none;
  border: none;
}
.details-default > .details-header .share-dropdown-mobile .social-likes__widget {
  margin: 0;
  display: block;
  line-height: 1;
  transition: 0.2s ease-in-out;
}
.details-default > .details-header .share-dropdown-mobile .social-likes__widget:not(:first-child) {
  margin-left: 24px;
}
.details-default > .details-header .share-dropdown-mobile .social-likes__widget:active.social-likes__widget_whatsapp, .details-default > .details-header .share-dropdown-mobile .social-likes__widget:focus.social-likes__widget_whatsapp, .details-default > .details-header .share-dropdown-mobile .social-likes__widget:hover.social-likes__widget_whatsapp {
  background: #25D366;
  border-color: #25D366;
}
.details-default > .details-header .share-dropdown-mobile .social-likes__widget:active.social-likes__widget_whatsapp .social-likes__button, .details-default > .details-header .share-dropdown-mobile .social-likes__widget:focus.social-likes__widget_whatsapp .social-likes__button, .details-default > .details-header .share-dropdown-mobile .social-likes__widget:hover.social-likes__widget_whatsapp .social-likes__button {
  color: var(--color-white-base, white);
}
.details-default > .details-header .share-dropdown-mobile .social-likes__widget:active.social-likes__widget_twitter, .details-default > .details-header .share-dropdown-mobile .social-likes__widget:focus.social-likes__widget_twitter, .details-default > .details-header .share-dropdown-mobile .social-likes__widget:hover.social-likes__widget_twitter {
  background-color: #f5f5f5;
  border-color: #ccc;
}
.details-default > .details-header .share-dropdown-mobile .social-likes__widget svg {
  width: 32px;
}
.details-default > .details-header .share-dropdown-mobile .social-likes__widget .social-likes__button {
  padding: 0;
  display: block;
  line-height: 1;
  font-size: 32px;
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 48px;
}
.details-default > .details-header .share-dropdown-mobile .social-likes__widget .social-likes__button:before {
  display: none;
}
.details-default > .details-header .share-dropdown-mobile .social-likes__widget .social-likes__button .social-likes__icon {
  display: none;
}
.details-default > .details-header .details-contact .contact-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
  margin-top: 8px;
  max-width: 250px;
  word-break: break-word;
}
.details-default > .details-header .details-contact .contact-item.contact-open-time {
  -ms-flex-align: start;
      align-items: flex-start;
}
.details-default > .details-header .details-contact .contact-item-name {
  -ms-flex-align: center;
      align-items: center;
}
.details-default > .details-header .details-contact .contact-item-name .link {
  margin-left: 6px !important;
  margin-top: 3px;
}
.details-default > .details-header .details-contact .contact-item-phone {
  -ms-flex-align: center;
      align-items: center;
}
.details-default > .details-header .details-contact .contact-item.item-phone a {
  color: var(--highlight-base, #137df7);
}
@media screen and (min-width: 992px) {
  .details-default > .details-header .details-contact .contact-item.item-phone a {
    color: var(--color-white-base, white);
  }
}
.details-default > .details-header .details-contact .contact-item.item-phone.addition-phone {
  padding-left: 32px;
  -ms-flex-align: center;
      align-items: center;
}
.details-default > .details-header .details-contact .contact-item.item-phone.addition-phone small {
  line-height: 1;
  margin-left: 4px;
}
.details-default > .details-header .details-contact .contact-item:first-child {
  margin-top: 0;
}
.details-default > .details-header .details-contact .contact-item .icon {
  margin-right: 8px;
}
.details-default > .details-header .details-contact .contact-item .icon .fa {
  color: white;
}
.details-default > .details-header .details-contact .contact-item .link {
  margin-left: 16px;
}
.details-default > .details-header .details-contact .contact-item .contact-item-link-website {
  max-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.details-default > .details-header .details-contact .contact-item .open-time .open-list {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}
.details-default > .details-header .details-contact .contact-item .open-time .open-list .open-item {
  margin-top: 4px;
}
.details-default > .details-header .details-contact .contact-item .open-time .open-list .open-item:first-child {
  margin-top: 0;
}
.details-default > .details-header .details-social .social-item {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background: var(--color-white-base, white);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  margin-top: 16px;
  text-decoration: none;
  font-size: 16px;
}
.details-default > .details-header .details-social .social-item:first-child {
  margin-top: 0;
}
.details-default > .details-header .details-header-navbar {
  position: relative;
  z-index: 4;
  padding-bottom: 1px;
  width: 100%;
  transition: 0.2s ease-in-out;
}
.details-default > .details-header .details-header-navbar.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  background: var(--color-black-transp-90, rgba(0, 0, 0, 0.9));
}
.details-default > .details-header .details-header-navbar:before {
  content: "";
  position: absolute;
  width: 200%;
  height: 1px;
  top: 0;
  left: -50%;
  background: var(--color-white-transp-50, rgba(255, 255, 255, 0.5));
}
.details-default > .details-header .details-header-navbar .tab-navbar {
  color: white;
  padding: 16px 5px 12px;
  display: inline-block;
  border-bottom: 4px solid transparent;
  margin-left: 32px;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}
.details-default > .details-header .details-header-navbar .tab-navbar:first-child {
  margin-left: 0;
}
.details-default > .details-header .details-header-navbar .tab-navbar:hover {
  border-bottom-color: var(--color-white-base, white);
}
.details-default > .details-header .details-header-navbar .tab-navbar.is-selected {
  border-bottom-color: var(--color-white-base, white);
}
.details-default > .detail-body:not(.no-padding) {
  padding-top: 24px;
  padding-bottom: 24px;
}
@media only screen and (min-width: 992px) {
  .details-default > .detail-body:not(.no-padding) {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.details-default > .detail-body .description {
  width: 100%;
}
.details-default > .detail-body .description-picture {
  border-radius: var(--border-radius, 3px);
  overflow: hidden;
}
.details-default > .detail-body .detail-gallery-main-image a {
  display: block;
}
.details-default > .detail-body .detail-gallery-main-image img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--border-radius, 3px);
}
.details-default > .detail-body .detail-gallery-thumb-images {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  margin-top: 16px;
  overflow-x: auto;
}
@media screen and (min-width: 992px) {
  .details-default > .detail-body .detail-gallery-thumb-images {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    overflow-x: initial;
    margin-left: -16px;
  }
}
.details-default > .detail-body .detail-gallery-thumb-images a {
  display: block;
  max-width: 50%;
  margin-bottom: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.details-default > .detail-body .detail-gallery-thumb-images a:not(:first-child) {
  margin-left: 16px;
}
@media screen and (min-width: 768px) {
  .details-default > .detail-body .detail-gallery-thumb-images a {
    max-width: 33.3333333333%;
  }
}
@media screen and (min-width: 992px) {
  .details-default > .detail-body .detail-gallery-thumb-images a {
    max-width: calc(20% - 16px);
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
  .details-default > .detail-body .detail-gallery-thumb-images a:first-child {
    margin-left: 16px;
  }
}
.details-default > .detail-body .detail-gallery-thumb-images a img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 4px;
}
.details-default > .detail-body .detail-body-content .tab-content#overview .tab-right {
  margin-top: 24px;
}
@media screen and (min-width: 992px) {
  .details-default > .detail-body .detail-body-content .tab-content#overview .tab-right {
    margin-top: 0;
  }
}
@media screen and (min-width: 992px) {
  .details-default > .detail-body .detail-body-content .tab-content#deals .cards-default .cards-list.has-slider .card, .details-default > .detail-body .detail-body-content .tab-content#classifieds .cards-default .cards-list.has-slider .card {
    margin-left: 0 !important;
  }
}
.details-default > .detail-body .detail-body-content .tab-content .widget-separator {
  /*
  * Attribute separator-style could have two values to change the style of separator line
  * solid - this will set a continous line at the separator widget
  * dashed - this will set a line dashed at the separator widget
  */
}
.details-default > .detail-body .detail-body-content .tab-content .widget-separator[separator-style=solid] {
  border-bottom-style: solid;
}
.details-default > .detail-body .detail-body-content .tab-content .widget-separator[separator-style=dashed] {
  border-bottom-style: dashed;
}
.details-default > .detail-body .detail-body-content .tab-content .widget-separator {
  /*
  * Attribute separator-color could have two values to change the color of the separator line
  * neutral - this will set the neutral color with 25% of opacity
  * brand - this will set the brand color
  */
}
.details-default > .detail-body .detail-body-content .tab-content .widget-separator[separator-color=neutral] {
  border-bottom-color: var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
}
.details-default > .detail-body .detail-body-content .tab-content .widget-separator[separator-color=brand] {
  border-bottom-color: var(--brand-base, #022e69);
}
.details-default > .detail-body .detail-body-content .tab-content .widget-separator {
  /*
  * Attribute separator-space could have three values to change the space at separator widget
  * small - this will set space of 24px at top and bottom
  * medium - this will set space of 32px at top and bottom
  * large - this will set space of 40px at top and bottom
  */
}
.details-default > .detail-body .detail-body-content .tab-content .widget-separator[separator-space=small] {
  margin: 24px 0;
}
.details-default > .detail-body .detail-body-content .tab-content .widget-separator[separator-space=medium] {
  margin: 32px 0;
}
.details-default > .detail-body .detail-body-content .tab-content .widget-separator[separator-space=large] {
  margin: 40px 0;
}
.details-default > .detail-body .detail-body-content .tab-content .widget-separator {
  /*
  * Attribute separator-thickness could have three values to change the thickness of the separator line
  * small - this will set the thickness to 1px
  * medium - this will set the thickness to 2px
  * large - this will set the thickness to 3px
  */
}
.details-default > .detail-body .detail-body-content .tab-content .widget-separator[separator-thickness=small] {
  border-bottom-width: 1px;
}
.details-default > .detail-body .detail-body-content .tab-content .widget-separator[separator-thickness=medium] {
  border-bottom-width: 2px;
}
.details-default > .detail-body .detail-body-content .tab-content .widget-separator[separator-thickness=large] {
  border-bottom-width: 3px;
}
.details-default > .detail-body .detail-body-content .tab-content .widget-separator + .tab-item {
  margin-top: 0;
}
.details-default > .detail-body .detail-body-content .tab-content .widget-separator + .widget-separator {
  display: none;
}
.details-default > .detail-body .detail-body-content .tab-content .cards-default .container {
  max-width: 100%;
  padding: 0;
  margin: 0;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item .tab-item-content .cards-default {
  padding-top: 0;
  padding-bottom: 0;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item .tab-item-content .cards-default .cards-header .heading {
  font-weight: bold;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item, .details-default > .detail-body .detail-body-content .tab-content .banner {
  margin-top: 32px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item:first-child, .details-default > .detail-body .detail-body-content .tab-content .banner:first-child {
  margin-top: 0;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item .tab-item-heading, .details-default > .detail-body .detail-body-content .tab-content .banner .tab-item-heading {
  margin-bottom: 24px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item .tab-item-heading.space-between, .details-default > .detail-body .detail-body-content .tab-content .banner .tab-item-heading.space-between {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item .tab-item-heading .heading, .details-default > .detail-body .detail-body-content .tab-content .banner .tab-item-heading .heading {
  color: var(--neutral-base, #3e455e);
  font-weight: bold;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item .tab-item-content#long-description:not(.display), .details-default > .detail-body .detail-body-content .tab-content .banner .tab-item-content#long-description:not(.display) {
  margin-top: 24px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item .tab-item-content#long-description img, .details-default > .detail-body .detail-body-content .tab-content .banner .tab-item-content#long-description img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-about .tab-item-content, .details-default > .detail-body .detail-body-content .tab-content .banner-about .tab-item-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .details-default > .detail-body .detail-body-content .tab-content .tab-item-about .tab-item-content, .details-default > .detail-body .detail-body-content .tab-content .banner-about .tab-item-content {
    overflow: hidden;
  }
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-about .picture, .details-default > .detail-body .detail-body-content .tab-content .banner-about .picture {
  border-radius: var(--border-radius, 3px);
  position: relative;
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .details-default > .detail-body .detail-body-content .tab-content .tab-item-about .picture, .details-default > .detail-body .detail-body-content .tab-content .banner-about .picture {
    width: 322px;
  }
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-about .picture img, .details-default > .detail-body .detail-body-content .tab-content .banner-about .picture img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-about .picture + .description, .details-default > .detail-body .detail-body-content .tab-content .banner-about .picture + .description {
  margin-top: 16px;
}
@media screen and (min-width: 992px) {
  .details-default > .detail-body .detail-body-content .tab-content .tab-item-about .picture + .description, .details-default > .detail-body .detail-body-content .tab-content .banner-about .picture + .description {
    margin-top: 0;
    width: calc(100% - 346px);
  }
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-about .picture .button, .details-default > .detail-body .detail-body-content .tab-content .banner-about .picture .button {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--neutral-transp-80, rgba(62, 69, 94, 0.8));
  color: var(--color-white-base, white);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-about .description p, .details-default > .detail-body .detail-body-content .tab-content .banner-about .description p {
  text-align: justify;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-about .description .summary-description, .details-default > .detail-body .detail-body-content .tab-content .banner-about .description .summary-description {
  opacity: 0.75;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-features .tab-item-content, .details-default > .detail-body .detail-body-content .tab-content .banner-features .tab-item-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  margin-left: -16px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-features .item-features, .details-default > .detail-body .detail-body-content .tab-content .banner-features .item-features {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 8px 12px 8px 8px;
  margin-left: 16px;
  margin-bottom: 16px;
  border-radius: var(--border-radius-icon, 3px);
  font-weight: 300;
  color: var(--highlight-base, #137df7);
  background: var(--highlight-transp-10, rgba(19, 125, 247, 0.1));
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-features .item-features .icon, .details-default > .detail-body .detail-body-content .tab-content .banner-features .item-features .icon {
  margin-right: 4px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-additional .additional-item strong,
.details-default > .detail-body .detail-body-content .tab-content .tab-item-additional .additional-item span, .details-default > .detail-body .detail-body-content .tab-content .banner-additional .additional-item strong,
.details-default > .detail-body .detail-body-content .tab-content .banner-additional .additional-item span {
  display: block;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-video iframe, .details-default > .detail-body .detail-body-content .tab-content .banner-video iframe {
  width: 100%;
  max-height: 400px;
  border: none;
}
@media screen and (min-width: 992px) {
  .details-default > .detail-body .detail-body-content .tab-content .tab-item-video iframe, .details-default > .detail-body .detail-body-content .tab-content .banner-video iframe {
    height: 400px;
    max-width: 100%;
  }
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-video img, .details-default > .detail-body .detail-body-content .tab-content .banner-video img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-video .description, .details-default > .detail-body .detail-body-content .tab-content .banner-video .description {
  margin-top: 16px;
  color: var(--neutral-base, #3e455e);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-others .tab-item-content, .details-default > .detail-body .detail-body-content .tab-content .banner-others .tab-item-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-others .tab-item-content .other-name, .details-default > .detail-body .detail-body-content .tab-content .banner-others .tab-item-content .other-name {
  font-size: var(--font-size-14, 0.875em);
  background: var(--neutral-transp-10, rgba(62, 69, 94, 0.1));
  padding: 8px 12px 8px 8px;
  border-radius: 3px;
  color: var(--highlight-base, #137df7);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-others .tab-item-content .other-name .fa, .details-default > .detail-body .detail-body-content .tab-content .banner-others .tab-item-content .other-name .fa {
  margin-right: 4px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-header {
  padding-bottom: 40px;
  border-bottom: solid 1px var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  margin-bottom: 40px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .reviews-title, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-header .reviews-title {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  font-family: var(--heading-font, "Rubik");
  font-size: var(--font-size-16, 1em);
  margin-bottom: 12px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .details-reviews, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-header .details-reviews {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 16px;
}
@media screen and (max-width: 992px) {
  .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .details-reviews, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-header .details-reviews {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (min-width: 992px) {
  .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .details-reviews:has(.ai-summary-review) .reviews-summary, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-header .details-reviews:has(.ai-summary-review) .reviews-summary {
    max-width: 30%;
  }
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .details-reviews .details-reviews-content, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-header .details-reviews .details-reviews-content {
  width: 100%;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .details-reviews .reviews-summary, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-header .details-reviews .reviews-summary {
  width: 100%;
  max-width: 50%;
  min-width: 30%;
}
@media screen and (max-width: 768px) {
  .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .details-reviews .reviews-summary, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-header .details-reviews .reviews-summary {
    max-width: none;
  }
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .details-reviews .reviews-summary .reviews-metrics, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-header .details-reviews .reviews-summary .reviews-metrics {
  display: -ms-flexbox;
  display: flex;
  min-width: fit-content;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .details-reviews .reviews-summary .reviews-metrics .reviews-stats, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-header .details-reviews .reviews-summary .reviews-metrics .reviews-stats {
  margin-left: 16px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .details-reviews .reviews-summary .reviews-bars, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-header .details-reviews .reviews-summary .reviews-bars {
  margin-top: 18px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .details-reviews .reviews-summary .reviews-bars .review-bar-container, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-header .details-reviews .reviews-summary .reviews-bars .review-bar-container {
  position: relative;
  width: 100%;
  margin-bottom: 12px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .details-reviews .reviews-summary .reviews-bars .review-bar-container .review-bar, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-header .details-reviews .reviews-summary .reviews-bars .review-bar-container .review-bar {
  background-color: #F0F0F2;
  height: 6px;
  border-radius: var(--border-radius, 3px);
  overflow: hidden;
  position: relative;
  width: calc(100% - 24px);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .details-reviews .reviews-summary .reviews-bars .review-bar-container .review-bar .review-fill, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-header .details-reviews .reviews-summary .reviews-bars .review-bar-container .review-bar .review-fill {
  background-color: #137df7;
  height: 100%;
  border-radius: var(--border-radius, 3px);
  transition: width 0.4s ease;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .details-reviews .reviews-summary .reviews-bars .review-bar-container .review-label, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-header .details-reviews .reviews-summary .reviews-bars .review-bar-container .review-label {
  position: absolute;
  top: 0;
  right: 0;
  font-size: var(--font-size-14, 0.875em);
  color: var(--neutral-base, #3e455e);
  line-height: 0.5;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .details-reviews .ai-summary-review, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-header .details-reviews .ai-summary-review {
  position: relative;
  padding: 8px;
  border-radius: var(--border-radius, 3px);
  background-color: var(--neutral-transp-5, rgba(62, 69, 94, 0.05));
  width: 100%;
}
@media screen and (max-width: 992px) {
  .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .details-reviews .ai-summary-review, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-header .details-reviews .ai-summary-review {
    margin-top: 16px;
    margin-left: 0;
  }
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .details-reviews .ai-summary-review .ai-summary-content, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-header .details-reviews .ai-summary-review .ai-summary-content {
  font-weight: 400;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .details-reviews .ai-summary-review .ai-note, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-header .details-reviews .ai-summary-review .ai-note {
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  color: #626F86;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .details-reviews .ai-summary-review .ai-note img, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-header .details-reviews .ai-summary-review .ai-note img {
  -ms-transform: translateY(-1px);
      transform: translateY(-1px);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .details-reviews .reviews-rating, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-header .details-reviews .reviews-rating {
  color: var(--neutral-base, #3e455e);
  font-weight: 600;
  font-size: var(--font-size-40, 2.5em);
  line-height: normal;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .details-reviews .reviews-stars, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-header .details-reviews .reviews-stars {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .details-reviews .reviews-stars .fa-star, .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .details-reviews .reviews-stars .fa-star-o, .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .details-reviews .reviews-stars .fa-star-half-o, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-header .details-reviews .reviews-stars .fa-star, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-header .details-reviews .reviews-stars .fa-star-o, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-header .details-reviews .reviews-stars .fa-star-half-o {
  font-size: var(--font-size-16, 1em);
  color: var(--badge-base, #ffc800);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .details-reviews .reviews-value, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-header .details-reviews .reviews-value {
  margin-left: 4px;
  font-weight: 300;
  color: var(--badge-base, #ffc800);
  font-size: var(--font-size-12, 0.75em);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .details-reviews .reviews-value:before, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-header .details-reviews .reviews-value:before {
  content: "(";
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .details-reviews .reviews-value:after, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-header .details-reviews .reviews-value:after {
  content: ")";
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .details-reviews .reviews-count, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-header .details-reviews .reviews-count {
  font-weight: 400;
  color: var(--neutral-base, #3e455e);
  font-size: 14px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .details-reviews .reviews-count .first-to-review-label, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-header .details-reviews .reviews-count .first-to-review-label {
  font-style: italic;
  font-weight: 400;
  margin-right: 1px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .details-reviews .button, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-header .details-reviews .button {
  margin-left: 24px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .reviews-action .button, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-header .reviews-action .button {
  margin-left: 16px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .reviews-action .button:first-child, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-header .reviews-action .button:first-child {
  margin-left: 0;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .review-filter select, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-header .review-filter select {
  outline: none;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-list-header, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-list-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-list-header .reviews-list-title, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-list-header .reviews-list-title {
  font-weight: 500;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-list-header .reviews-list-actions .button.is-primary, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-list-header .reviews-list-actions .button.is-primary {
  padding: 12px 24px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-list-header .reviews-list-actions .review-dropdown-container, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-list-header .reviews-list-actions .review-dropdown-container {
  position: relative;
  display: inline-block;
  -ms-transform: translateY(1px);
      transform: translateY(1px);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-list-header .reviews-list-actions .review-dropdown-container .review-dropdown-button, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-list-header .reviews-list-actions .review-dropdown-container .review-dropdown-button {
  background-color: #fff;
  color: var(--neutral-base, #3e455e);
  padding: 8px 20px;
  border-radius: var(--border-radius, 3px);
  font-size: var(--font-size-14, 0.875em);
  cursor: pointer;
  transition: all 0.3s ease;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 8px;
  height: 40px;
  width: 150px;
  border: solid 1px var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-list-header .reviews-list-actions .review-dropdown-container .review-dropdown-button.active, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-list-header .reviews-list-actions .review-dropdown-container .review-dropdown-button.active {
  background-color: #e0f0ff;
  color: #0059cc;
  border-color: #0059cc;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-list-header .reviews-list-actions .review-dropdown-container .review-dropdown-button.active .fa, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-list-header .reviews-list-actions .review-dropdown-container .review-dropdown-button.active .fa {
  -ms-transform: rotate(180deg);
      transform: rotate(180deg);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-list-header .reviews-list-actions .review-dropdown-container .review-dropdown-button:focus, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-list-header .reviews-list-actions .review-dropdown-container .review-dropdown-button:focus {
  outline: none;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-list-header .reviews-list-actions .review-dropdown-container .review-dropdown-button .fa, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-list-header .reviews-list-actions .review-dropdown-container .review-dropdown-button .fa {
  position: absolute;
  top: 30%;
  right: 12px;
  transition: transform 0.3s ease;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-list-header .reviews-list-actions .review-dropdown-container .review-dropdown-menu, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-list-header .reviews-list-actions .review-dropdown-container .review-dropdown-menu {
  position: absolute;
  background-color: #fff;
  border-radius: var(--border-radius, 3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
  font-size: var(--font-size-14, 0.875em);
  margin-top: 8px;
  width: 100%;
  display: none;
  z-index: 1000;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-list-header .reviews-list-actions .review-dropdown-container .review-dropdown-menu button, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-list-header .reviews-list-actions .review-dropdown-container .review-dropdown-menu button {
  background: none;
  border: none;
  padding: 10px 20px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  color: #1d3557;
  transition: background-color 0.2s ease;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-list-header .reviews-list-actions .review-dropdown-container .review-dropdown-menu button:hover, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-list-header .reviews-list-actions .review-dropdown-container .review-dropdown-menu button:hover {
  background-color: #f0f4ff;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-item {
  margin-top: 40px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item:first-child, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-item:first-child {
  margin-top: 0;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-item-header, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-item .review-item-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-item-header .review-author, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-item .review-item-header .review-author {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 8px;
  font-size: var(--font-size-16, 1em);
  color: var(--neutral-base, #3e455e);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-item-header .review-author a, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-item .review-item-header .review-author a {
  color: var(--neutral-base, #3e455e);
  font-weight: 500;
  transition: 0.2s;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-item-header .review-author a:hover, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-item .review-item-header .review-author a:hover {
  color: var(--link-base, #3ebaf6);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-item-header .review-date, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-item .review-item-header .review-date {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  font-size: var(--font-size-12, 0.75em);
  line-height: 2;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-picture, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-item .review-picture {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
  line-height: 48px;
  border: solid 1px var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-picture .author-picture, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-item .review-picture .author-picture {
  height: 100%;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-picture a, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-item .review-picture a {
  display: block;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-picture img, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-item .review-picture img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-item .review-content {
  width: calc(100% - 64px);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .reviews-stars .fa-star, .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .reviews-stars .fa-star-o, .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .reviews-stars .fa-star-half-o, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-item .review-content .reviews-stars .fa-star, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-item .review-content .reviews-stars .fa-star-o, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-item .review-content .reviews-stars .fa-star-half-o {
  color: var(--badge-base, #ffc800);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-description, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-item .review-content .review-description {
  font-size: var(--font-size-16, 1em);
  color: var(--neutral-base, #3e455e);
  margin-top: 8px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-description .review-title, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-item .review-content .review-description .review-title {
  font-weight: 700;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-helpfull, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-item .review-content .review-helpfull {
  display: -ms-flexbox;
  display: flex;
  color: var(--neutral-base, #3e455e);
  margin-top: 8px;
  font-size: var(--font-size-14, 0.875em);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-helpfull .review-helpfull-vote, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-item .review-content .review-helpfull .review-helpfull-vote {
  display: -ms-flexbox;
  display: flex;
  margin-left: 8px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-helpfull .review-helpfull-vote .vote-good,
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-helpfull .review-helpfull-vote .vote-bad, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-item .review-content .review-helpfull .review-helpfull-vote .vote-good,
.details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-item .review-content .review-helpfull .review-helpfull-vote .vote-bad {
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-helpfull .review-helpfull-vote .vote-good .fa,
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-helpfull .review-helpfull-vote .vote-bad .fa, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-item .review-content .review-helpfull .review-helpfull-vote .vote-good .fa,
.details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-item .review-content .review-helpfull .review-helpfull-vote .vote-bad .fa {
  -ms-transform: translateY(1px);
      transform: translateY(1px);
  font-size: var(--font-size-20, 1.25em);
  margin-right: 8px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-helpfull .review-helpfull-vote .vote-bad, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-item .review-content .review-helpfull .review-helpfull-vote .vote-bad {
  margin-left: 16px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-reply, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-item .review-content .review-reply {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
  border-left: 2px solid var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  padding-left: 16px;
  margin-top: 24px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-reply .reply-picture, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-item .review-content .review-reply .reply-picture {
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: var(--border-radius, 3px);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-reply .reply-content, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-item .review-content .review-reply .reply-content {
  width: calc(100% - 64px);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-list-footer .see-all-reviews, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-list .reviews-list-footer .see-all-reviews {
  margin-top: 40px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-pagination, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-pagination {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  margin-top: 48px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-pagination .item-pagination, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-pagination .item-pagination {
  width: 30px;
  height: 30px;
  background: var(--neutral-transp-10, rgba(62, 69, 94, 0.1));
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  border-radius: var(--border-radius-button, 3px);
  margin-left: 4px;
  color: var(--neutral-base, #3e455e);
  border: 1px solid transparent;
  transition: 0.2s ease-in-out;
  text-decoration: none;
  cursor: pointer;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-pagination .item-pagination:first-child, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-pagination .item-pagination:first-child {
  margin-left: 0;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-pagination .item-pagination:not(.is-disabled):not(.is-selected):hover, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-pagination .item-pagination:not(.is-disabled):not(.is-selected):hover {
  background: transparent;
  color: var(--highlight-base, #137df7);
  border-color: var(--highlight-base, #137df7);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-pagination .item-pagination.is-selected, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-pagination .item-pagination.is-selected {
  background: var(--highlight-base, #137df7);
  color: white;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-pagination .item-pagination.is-disabled, .details-default > .detail-body .detail-body-content .tab-content .banner-reviews .reviews-pagination .item-pagination.is-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-additional .additional-item, .details-default > .detail-body .detail-body-content .tab-content .banner-additional .additional-item {
  margin-top: 16px;
  width: 100%;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-additional .additional-item .additional-question, .details-default > .detail-body .detail-body-content .tab-content .banner-additional .additional-item .additional-question {
  font-weight: bold;
  color: var(--neutral-base, #3e455e);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-additional .additional-item .additional-answer, .details-default > .detail-body .detail-body-content .tab-content .banner-additional .additional-item .additional-answer {
  color: var(--neutral-base, #3e455e);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-photos .photos-list, .details-default > .detail-body .detail-body-content .tab-content .banner-photos .photos-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  margin-top: -24px;
  margin-left: -24px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-photos .photos-list .photos-item, .details-default > .detail-body .detail-body-content .tab-content .banner-photos .photos-list .photos-item {
  position: relative;
  display: block;
  width: calc(50% - 24px);
  max-height: 172px;
  border-radius: var(--border-radius, 3px);
  overflow: hidden;
  margin-top: 24px;
  margin-left: 24px;
}
@media screen and (min-width: 992px) {
  .details-default > .detail-body .detail-body-content .tab-content .tab-item-photos .photos-list .photos-item, .details-default > .detail-body .detail-body-content .tab-content .banner-photos .photos-list .photos-item {
    width: calc(25% - 24px);
  }
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-photos .photos-list .photos-item img, .details-default > .detail-body .detail-body-content .tab-content .banner-photos .photos-list .photos-item img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-photos .photos-list .photos-item:hover .photos-caption, .details-default > .detail-body .detail-body-content .tab-content .banner-photos .photos-list .photos-item:hover .photos-caption {
  -ms-transform: translateY(0);
      transform: translateY(0);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-photos .photos-list .photos-item .photos-caption, .details-default > .detail-body .detail-body-content .tab-content .banner-photos .photos-list .photos-item .photos-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  color: white;
  background: var(--highlight-transp-50, rgba(19, 125, 247, 0.5));
  overflow: hidden;
  transition: 0.2s ease-in-out;
  -ms-transform: translateY(100%);
      transform: translateY(100%);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-photos .photos-list .photos-item .photos-caption .fa, .details-default > .detail-body .detail-body-content .tab-content .banner-photos .photos-list .photos-item .photos-caption .fa {
  margin-bottom: 8px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-location .location-address, .details-default > .detail-body .detail-body-content .tab-content .banner-location .location-address {
  margin-top: 16px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-location .button, .details-default > .detail-body .detail-body-content .tab-content .banner-location .button {
  margin-top: 16px;
  padding: 12px;
  border-radius: var(--border-radius-button, 3px);
  width: 100%;
  text-align: center;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-location .button .fa, .details-default > .detail-body .detail-body-content .tab-content .banner-location .button .fa {
  margin-right: 8px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-social .tab-item-content, .details-default > .detail-body .detail-body-content .tab-content .banner-social .tab-item-content {
  display: -ms-flexbox;
  display: flex;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-social .social-item, .details-default > .detail-body .detail-body-content .tab-content .banner-social .social-item {
  width: 50px;
  height: 50px;
  border-radius: 9999px;
  background: var(--brand-base, #022e69);
  display: inline-block;
  font-size: 22px;
  color: var(--color-white-base, white);
  text-align: center;
  line-height: 50px;
  transition: 0.2s ease-in-out;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-social .social-item:not(:first-child), .details-default > .detail-body .detail-body-content .tab-content .banner-social .social-item:not(:first-child) {
  margin-left: 8px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-social .social-item:hover, .details-default > .detail-body .detail-body-content .tab-content .banner-social .social-item:hover {
  background: var(--brand-transp-20, rgba(2, 46, 105, 0.8));
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-social .social-item svg, .details-default > .detail-body .detail-body-content .tab-content .banner-social .social-item svg {
  fill: var(--color-white-base, white);
  max-width: 22px;
  -ms-transform: translateY(-3px);
      transform: translateY(-3px);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-hours .hours-heading, .details-default > .detail-body .detail-body-content .tab-content .banner-hours .hours-heading {
  font-weight: bold;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-hours .hours-heading .fa, .details-default > .detail-body .detail-body-content .tab-content .banner-hours .hours-heading .fa {
  margin-right: 8px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-hours .hours-heading .fa-angle-down, .details-default > .detail-body .detail-body-content .tab-content .banner-hours .hours-heading .fa-angle-down {
  font-size: var(--font-size-20, 1.25em);
  color: var(--brand-base, #022e69);
  margin-left: 8px;
  transition: 0.2s ease-in-out;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-hours .hours-heading .fa-angle-down.is-open, .details-default > .detail-body .detail-body-content .tab-content .banner-hours .hours-heading .fa-angle-down.is-open {
  -ms-transform: rotate(180deg);
      transform: rotate(180deg);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-hours .hours-heading[data-status-time=open-now], .details-default > .detail-body .detail-body-content .tab-content .banner-hours .hours-heading[data-status-time=open-now] {
  color: var(--success-base, #6cbf13);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-hours .hours-heading[data-status-time=closing-soon], .details-default > .detail-body .detail-body-content .tab-content .banner-hours .hours-heading[data-status-time=closing-soon] {
  color: var(--attention-base, #ffae00);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-hours .hours-heading[data-status-time=closing-soon] span, .details-default > .detail-body .detail-body-content .tab-content .banner-hours .hours-heading[data-status-time=closing-soon] span {
  font-weight: 300;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-hours .hours-heading[data-status-time=closed-today], .details-default > .detail-body .detail-body-content .tab-content .tab-item-hours .hours-heading[data-status-time=open-at], .details-default > .detail-body .detail-body-content .tab-content .tab-item-hours .hours-heading[data-status-time=closed-now], .details-default > .detail-body .detail-body-content .tab-content .banner-hours .hours-heading[data-status-time=closed-today], .details-default > .detail-body .detail-body-content .tab-content .banner-hours .hours-heading[data-status-time=open-at], .details-default > .detail-body .detail-body-content .tab-content .banner-hours .hours-heading[data-status-time=closed-now] {
  color: var(--warning-base, #fc5353);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-hours .hours-heading.first-hours, .details-default > .detail-body .detail-body-content .tab-content .banner-hours .hours-heading.first-hours {
  cursor: pointer;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-hours .hours-content, .details-default > .detail-body .detail-body-content .tab-content .banner-hours .hours-content {
  margin-top: 8px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-hours .hours-content .hours-item, .details-default > .detail-body .detail-body-content .tab-content .banner-hours .hours-content .hours-item {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-hours .hours-content .hours-more, .details-default > .detail-body .detail-body-content .tab-content .banner-hours .hours-content .hours-more {
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-hours .hours-content .hours-more .hours-item, .details-default > .detail-body .detail-body-content .tab-content .banner-hours .hours-content .hours-more .hours-item {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-hours .hours-content .hours-more .hours-item .day, .details-default > .detail-body .detail-body-content .tab-content .banner-hours .hours-content .hours-more .hours-item .day {
  font-weight: 800;
  color: #3e455e;
  width: 60px;
  font-family: "Roboto";
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-hours .hours-content .hours-more .hours-item .hour.closed, .details-default > .detail-body .detail-body-content .tab-content .tab-item-hours .hours-content .hours-more .hours-item .hour.opened, .details-default > .detail-body .detail-body-content .tab-content .banner-hours .hours-content .hours-more .hours-item .hour.closed, .details-default > .detail-body .detail-body-content .tab-content .banner-hours .hours-content .hours-more .hours-item .hour.opened {
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 700;
  color: #ff7070;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-hours .hours-content .hours-more .hours-item .hour.closed, .details-default > .detail-body .detail-body-content .tab-content .banner-hours .hours-content .hours-more .hours-item .hour.closed {
  color: #ff7070;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-hours .hours-content .hours-more .hours-item .hour.open, .details-default > .detail-body .detail-body-content .tab-content .banner-hours .hours-content .hours-more .hours-item .hour.open {
  color: #21c434;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-hours .hours-content .hours-more .hours-item:not(:first-child), .details-default > .detail-body .detail-body-content .tab-content .banner-hours .hours-content .hours-more .hours-item:not(:first-child) {
  margin-top: 4px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-hours .hours-content .hours-more .hours-timezone, .details-default > .detail-body .detail-body-content .tab-content .banner-hours .hours-content .hours-more .hours-timezone {
  width: 100%;
  background-color: #f0f1f3;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  border-radius: 3px;
  padding: 8px 50px;
  font-size: 12px;
  margin-bottom: 12px;
  text-align: center;
  font-weight: 700;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-ads, .details-default > .detail-body .detail-body-content .tab-content .banner-ads {
  margin-top: 48px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-ads .ads-block, .details-default > .detail-body .detail-body-content .tab-content .banner-ads .ads-block {
  padding: 0;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-owner .tab-item-content, .details-default > .detail-body .detail-body-content .tab-content .banner-owner .tab-item-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-owner .tab-item-content .owner-picture, .details-default > .detail-body .detail-body-content .tab-content .banner-owner .tab-item-content .owner-picture {
  width: 96px;
  height: 96px;
  border-radius: 9999px;
  overflow: hidden;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-owner .tab-item-content .owner-content, .details-default > .detail-body .detail-body-content .tab-content .banner-owner .tab-item-content .owner-content {
  width: calc(100% - 118px);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-owner .tab-item-content .owner-content .owner-name, .details-default > .detail-body .detail-body-content .tab-content .banner-owner .tab-item-content .owner-content .owner-name {
  font-weight: bold;
  color: var(--neutral-base, #3e455e);
  line-height: 1;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-owner .tab-item-content .owner-content .owner-email, .details-default > .detail-body .detail-body-content .tab-content .banner-owner .tab-item-content .owner-content .owner-email {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  margin-top: 8px;
  line-height: 1;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-owner .tab-item-content .owner-content .button, .details-default > .detail-body .detail-body-content .tab-content .banner-owner .tab-item-content .owner-content .button {
  margin-top: 16px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-offer-time .tab-item-content, .details-default > .detail-body .detail-body-content .tab-content .banner-offer-time .tab-item-content {
  display: -ms-flexbox;
  display: flex;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-offer-time .tab-item-content .item-time, .details-default > .detail-body .detail-body-content .tab-content .banner-offer-time .tab-item-content .item-time {
  text-align: center;
  margin-left: 24px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-offer-time .tab-item-content .item-time:first-child, .details-default > .detail-body .detail-body-content .tab-content .banner-offer-time .tab-item-content .item-time:first-child {
  margin-left: 0;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-offer-time .tab-item-content .item-value, .details-default > .detail-body .detail-body-content .tab-content .banner-offer-time .tab-item-content .item-value {
  font-weight: bold;
  opacity: 0.75;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-offer-time .tab-item-content .item-label, .details-default > .detail-body .detail-body-content .tab-content .banner-offer-time .tab-item-content .item-label {
  opacity: 0.75;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-offer-time .tab-item-content .offer-sould-out,
.details-default > .detail-body .detail-body-content .tab-content .tab-item-offer-time .tab-item-content .offer-expired, .details-default > .detail-body .detail-body-content .tab-content .banner-offer-time .tab-item-content .offer-sould-out,
.details-default > .detail-body .detail-body-content .tab-content .banner-offer-time .tab-item-content .offer-expired {
  font-size: var(--font-size-24, 1.5em);
  font-weight: bold;
  display: inline-block;
  color: var(--warning-base, #fc5353);
  line-height: 1;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-offer-owner .tab-item-content, .details-default > .detail-body .detail-body-content .tab-content .banner-offer-owner .tab-item-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-offer-owner .tab-item-content .owner-picture, .details-default > .detail-body .detail-body-content .tab-content .banner-offer-owner .tab-item-content .owner-picture {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius, 3px);
  overflow: hidden;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-offer-owner .tab-item-content .owner-content, .details-default > .detail-body .detail-body-content .tab-content .banner-offer-owner .tab-item-content .owner-content {
  width: calc(100% - 72px);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-offer-owner .owner-name, .details-default > .detail-body .detail-body-content .tab-content .banner-offer-owner .owner-name {
  font-weight: bold;
  color: var(--neutral-base, #3e455e);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-offer-owner .reviews-vote, .details-default > .detail-body .detail-body-content .tab-content .banner-offer-owner .reviews-vote {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-align: center;
      align-items: center;
  margin-top: 8px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-offer-owner .reviews-vote .reviews-rating, .details-default > .detail-body .detail-body-content .tab-content .banner-offer-owner .reviews-vote .reviews-rating {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
  font-weight: bold;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-offer-owner .reviews-vote .reviews-stars, .details-default > .detail-body .detail-body-content .tab-content .banner-offer-owner .reviews-vote .reviews-stars {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
  margin-left: 8px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-offer-owner .reviews-vote .reviews-stars .fa-star, .details-default > .detail-body .detail-body-content .tab-content .tab-item-offer-owner .reviews-vote .reviews-stars .fa-star-o, .details-default > .detail-body .detail-body-content .tab-content .tab-item-offer-owner .reviews-vote .reviews-stars .fa-star-half-o, .details-default > .detail-body .detail-body-content .tab-content .banner-offer-owner .reviews-vote .reviews-stars .fa-star, .details-default > .detail-body .detail-body-content .tab-content .banner-offer-owner .reviews-vote .reviews-stars .fa-star-o, .details-default > .detail-body .detail-body-content .tab-content .banner-offer-owner .reviews-vote .reviews-stars .fa-star-half-o {
  color: var(--badge-base, #ffc800);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-offer-owner .reviews-vote .reviews-value, .details-default > .detail-body .detail-body-content .tab-content .banner-offer-owner .reviews-vote .reviews-value {
  margin-left: 4px;
  font-weight: 300;
  color: var(--badge-base, #ffc800);
  font-size: var(--font-size-12, 0.75em);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-offer-owner .reviews-vote .reviews-value:before, .details-default > .detail-body .detail-body-content .tab-content .banner-offer-owner .reviews-vote .reviews-value:before {
  content: "(";
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-offer-owner .reviews-vote .reviews-value:after, .details-default > .detail-body .detail-body-content .tab-content .banner-offer-owner .reviews-vote .reviews-value:after {
  content: ")";
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-offer-owner .reviews-vote .reviews-count, .details-default > .detail-body .detail-body-content .tab-content .banner-offer-owner .reviews-vote .reviews-count {
  font-weight: 300;
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  margin-left: 24px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-offer-owner .reviews-vote .reviews-count .first-to-review-label, .details-default > .detail-body .detail-body-content .tab-content .banner-offer-owner .reviews-vote .reviews-count .first-to-review-label {
  font-style: italic;
  font-weight: 400;
  margin-right: 1px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-offer-owner .owner-actions, .details-default > .detail-body .detail-body-content .tab-content .banner-offer-owner .owner-actions {
  margin-top: 8px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-facebook .fb-like-box.fb_iframe_widget.fb_iframe_widget_fluid *, .details-default > .detail-body .detail-body-content .tab-content .banner-facebook .fb-like-box.fb_iframe_widget.fb_iframe_widget_fluid * {
  max-width: 100%;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-check-list .check-list, .details-default > .detail-body .detail-body-content .tab-content .banner-check-list .check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-check-list .check-list .check-item, .details-default > .detail-body .detail-body-content .tab-content .banner-check-list .check-list .check-item {
  margin-bottom: 12px;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-check-list .check-list .check-item .check-icon, .details-default > .detail-body .detail-body-content .tab-content .banner-check-list .check-list .check-item .check-icon {
  color: var(--highlight-base, #137df7);
  margin-right: 12px;
}
@media screen and (min-width: 768px) {
  .details-default > .detail-body .detail-body-content .tab-content .tab-item-check-list .check-list .check-item, .details-default > .detail-body .detail-body-content .tab-content .banner-check-list .check-list .check-item {
    width: 50%;
  }
}
@media screen and (min-width: 992px) {
  .details-default > .detail-body .detail-body-content .tab-content .tab-item-check-list .check-list .check-item, .details-default > .detail-body .detail-body-content .tab-content .banner-check-list .check-list .check-item {
    width: 33%;
  }
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-more-details .more-details-list, .details-default > .detail-body .detail-body-content .tab-content .banner-more-details .more-details-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-more-details .more-details-list .more-details-item, .details-default > .detail-body .detail-body-content .tab-content .banner-more-details .more-details-list .more-details-item {
  width: 50%;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .details-default > .detail-body .detail-body-content .tab-content .tab-item-more-details .more-details-list .more-details-item, .details-default > .detail-body .detail-body-content .tab-content .banner-more-details .more-details-list .more-details-item {
    width: 25%;
  }
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-more-details .more-details-list .more-details-item .details-title, .details-default > .detail-body .detail-body-content .tab-content .banner-more-details .more-details-list .more-details-item .details-title {
  display: block;
  margin-bottom: 8px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-more-details[data-section=sidebar] .more-details-list .more-details-item, .details-default > .detail-body .detail-body-content .tab-content .banner-more-details[data-section=sidebar] .more-details-list .more-details-item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .details-default > .detail-body .detail-body-content .tab-content .tab-item-more-details[data-section=sidebar] .more-details-list .more-details-item, .details-default > .detail-body .detail-body-content .tab-content .banner-more-details[data-section=sidebar] .more-details-list .more-details-item {
    width: 100%;
  }
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-range .range-item, .details-default > .detail-body .detail-body-content .tab-content .banner-range .range-item {
  color: #ccc;
  font-size: 26px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-range .range-item .fa:not(:first-child), .details-default > .detail-body .detail-body-content .tab-content .banner-range .range-item .fa:not(:first-child) {
  margin-left: 8px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-range .range-item .is-active, .details-default > .detail-body .detail-body-content .tab-content .banner-range .range-item .is-active {
  color: var(--highlight-base, #137df7);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-contact-us .info-list, .details-default > .detail-body .detail-body-content .tab-content .banner-contact-us .info-list {
  padding-left: 6px;
  margin: 0;
  list-style-type: none;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-contact-us .info-list li:last-of-type, .details-default > .detail-body .detail-body-content .tab-content .banner-contact-us .info-list li:last-of-type {
  margin-bottom: 0;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-contact-us .info-list div.contact-item, .details-default > .detail-body .detail-body-content .tab-content .banner-contact-us .info-list div.contact-item {
  margin-left: -8px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-contact-us .info-list li, .details-default > .detail-body .detail-body-content .tab-content .tab-item-contact-us .info-list div.contact-item, .details-default > .detail-body .detail-body-content .tab-content .banner-contact-us .info-list li, .details-default > .detail-body .detail-body-content .tab-content .banner-contact-us .info-list div.contact-item {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 18px;
  font-size: var(--font-size-16, 1em);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-contact-us .info-list li i, .details-default > .detail-body .detail-body-content .tab-content .tab-item-contact-us .info-list div.contact-item i, .details-default > .detail-body .detail-body-content .tab-content .banner-contact-us .info-list li i, .details-default > .detail-body .detail-body-content .tab-content .banner-contact-us .info-list div.contact-item i {
  color: var(--neutral-base, #3e455e);
  margin-right: 17px;
  font-size: var(--font-size-18, 1.125em);
  -ms-transform: translateX(4px);
      transform: translateX(4px);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-contact-us .info-list li svg, .details-default > .detail-body .detail-body-content .tab-content .tab-item-contact-us .info-list div.contact-item svg, .details-default > .detail-body .detail-body-content .tab-content .banner-contact-us .info-list li svg, .details-default > .detail-body .detail-body-content .tab-content .banner-contact-us .info-list div.contact-item svg {
  fill: var(--neutral-base, #3e455e);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-contact-us .info-list li .instant-messenger-icon, .details-default > .detail-body .detail-body-content .tab-content .tab-item-contact-us .info-list div.contact-item .instant-messenger-icon, .details-default > .detail-body .detail-body-content .tab-content .banner-contact-us .info-list li .instant-messenger-icon, .details-default > .detail-body .detail-body-content .tab-content .banner-contact-us .info-list div.contact-item .instant-messenger-icon {
  margin-right: 9px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-contact-us .info-list li a, .details-default > .detail-body .detail-body-content .tab-content .tab-item-contact-us .info-list div.contact-item a, .details-default > .detail-body .detail-body-content .tab-content .banner-contact-us .info-list li a, .details-default > .detail-body .detail-body-content .tab-content .banner-contact-us .info-list div.contact-item a {
  color: var(--neutral-base, #3e455e);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-contact-us .info-list li a:hover, .details-default > .detail-body .detail-body-content .tab-content .tab-item-contact-us .info-list div.contact-item a:hover, .details-default > .detail-body .detail-body-content .tab-content .banner-contact-us .info-list li a:hover, .details-default > .detail-body .detail-body-content .tab-content .banner-contact-us .info-list div.contact-item a:hover {
  text-decoration: none;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-contact-us .info-list li.addition-phone, .details-default > .detail-body .detail-body-content .tab-content .tab-item-contact-us .info-list div.contact-item.addition-phone, .details-default > .detail-body .detail-body-content .tab-content .banner-contact-us .info-list li.addition-phone, .details-default > .detail-body .detail-body-content .tab-content .banner-contact-us .info-list div.contact-item.addition-phone {
  margin-left: 26px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-contact-us .info-list li.addition-phone small, .details-default > .detail-body .detail-body-content .tab-content .tab-item-contact-us .info-list div.contact-item.addition-phone small, .details-default > .detail-body .detail-body-content .tab-content .banner-contact-us .info-list li.addition-phone small, .details-default > .detail-body .detail-body-content .tab-content .banner-contact-us .info-list div.contact-item.addition-phone small {
  margin-left: 4px;
  margin-top: 1px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-contact-us .info-list li.item-url .icon, .details-default > .detail-body .detail-body-content .tab-content .tab-item-contact-us .info-list div.contact-item.item-url .icon, .details-default > .detail-body .detail-body-content .tab-content .banner-contact-us .info-list li.item-url .icon, .details-default > .detail-body .detail-body-content .tab-content .banner-contact-us .info-list div.contact-item.item-url .icon {
  font-size: var(--font-size-14, 0.875em);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-contact-us .info-list .button, .details-default > .detail-body .detail-body-content .tab-content .banner-contact-us .info-list .button {
  margin-top: 20px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-badges .details-certified, .details-default > .detail-body .detail-body-content .tab-content .banner-badges .details-certified {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: start;
      justify-content: flex-start;
  gap: 15px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .details-default > .detail-body .detail-body-content .tab-content .tab-item-badges .details-certified, .details-default > .detail-body .detail-body-content .tab-content .banner-badges .details-certified {
    gap: 44px;
  }
}
@media screen and (min-width: 992px) {
  .details-default > .detail-body .detail-body-content .tab-content .tab-item-badges .details-certified, .details-default > .detail-body .detail-body-content .tab-content .banner-badges .details-certified {
    gap: 33px;
  }
}
@media screen and (min-width: 1200px) {
  .details-default > .detail-body .detail-body-content .tab-content .tab-item-badges .details-certified, .details-default > .detail-body .detail-body-content .tab-content .banner-badges .details-certified {
    gap: 35px;
  }
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-badges .details-certified .item-certified, .details-default > .detail-body .detail-body-content .tab-content .banner-badges .details-certified .item-certified {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
  width: 94px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-badges .details-certified .item-certified .title, .details-default > .detail-body .detail-body-content .tab-content .banner-badges .details-certified .item-certified .title {
  font-size: var(--font-size-14, 0.875em);
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-products-services, .details-default > .detail-body .detail-body-content .tab-content .banner-products-services {
  position: relative;
  padding: 40px 40px;
  background-color: var(--color-white-dark-5, rgb(242.25, 242.25, 242.25));
  border-radius: 8px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-products-services .store-list, .details-default > .detail-body .detail-body-content .tab-content .banner-products-services .store-list {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: stretch;
      align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  column-gap: 0;
  row-gap: 56px;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-products-services .store-list:after, .details-default > .detail-body .detail-body-content .tab-content .banner-products-services .store-list:after {
  content: "";
  -ms-flex: auto;
      flex: auto;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-products-services .store-list .store-item, .details-default > .detail-body .detail-body-content .tab-content .banner-products-services .store-list .store-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  position: relative;
  min-width: 192px;
  width: 100%;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-products-services .store-list .store-item-thumb, .details-default > .detail-body .detail-body-content .tab-content .banner-products-services .store-list .store-item-thumb {
  width: 100%;
  height: 170px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 3px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-products-services .store-list .store-item:before, .details-default > .detail-body .detail-body-content .tab-content .banner-products-services .store-list .store-item:before {
  content: "";
  position: absolute;
  top: -32px;
  left: 0;
  right: 0;
  background-color: var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-products-services .store-list .store-item:nth-child(n+2):before, .details-default > .detail-body .detail-body-content .tab-content .banner-products-services .store-list .store-item:nth-child(n+2):before {
  height: 1px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-products-services .store-list .store-item .price, .details-default > .detail-body .detail-body-content .tab-content .banner-products-services .store-list .store-item .price {
  font-size: var(--font-size-20, 1.25em);
  font-weight: 600;
  margin-top: 16px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-products-services .store-list .store-item p, .details-default > .detail-body .detail-body-content .tab-content .banner-products-services .store-list .store-item p {
  margin-top: 8px;
  margin-bottom: 0;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-products-services .store-list .store-item .actions, .details-default > .detail-body .detail-body-content .tab-content .banner-products-services .store-list .store-item .actions {
  position: relative;
  bottom: 0;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-products-services .store-list .store-item .actions .button, .details-default > .detail-body .detail-body-content .tab-content .banner-products-services .store-list .store-item .actions .button {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-products-services .store-list .store-item .actions .link-more-details, .details-default > .detail-body .detail-body-content .tab-content .banner-products-services .store-list .store-item .actions .link-more-details {
  color: var(--highlight-base, #137df7);
  font-weight: 400;
}
@media screen and (min-width: 551px) {
  .details-default > .detail-body .detail-body-content .tab-content .tab-item-products-services .store-list .store-item, .details-default > .detail-body .detail-body-content .tab-content .banner-products-services .store-list .store-item {
    width: 29%;
  }
  .details-default > .detail-body .detail-body-content .tab-content .tab-item-products-services .store-list .store-item:nth-child(n+2):before, .details-default > .detail-body .detail-body-content .tab-content .banner-products-services .store-list .store-item:nth-child(n+2):before {
    height: 0;
  }
  .details-default > .detail-body .detail-body-content .tab-content .tab-item-products-services .store-list .store-item:nth-child(2n+3):before, .details-default > .detail-body .detail-body-content .tab-content .banner-products-services .store-list .store-item:nth-child(2n+3):before {
    height: 1px;
    width: 221%;
  }
}
@media screen and (min-width: 768px) {
  .details-default > .detail-body .detail-body-content .tab-content .tab-item-products-services .store-list .store-item, .details-default > .detail-body .detail-body-content .tab-content .banner-products-services .store-list .store-item {
    width: 47%;
  }
  .details-default > .detail-body .detail-body-content .tab-content .tab-item-products-services .store-list .store-item:nth-child(n+2):before, .details-default > .detail-body .detail-body-content .tab-content .banner-products-services .store-list .store-item:nth-child(n+2):before {
    height: 0;
  }
  .details-default > .detail-body .detail-body-content .tab-content .tab-item-products-services .store-list .store-item:nth-child(2n+3):before, .details-default > .detail-body .detail-body-content .tab-content .banner-products-services .store-list .store-item:nth-child(2n+3):before {
    height: 1px;
    width: 221%;
  }
}
@media screen and (min-width: 1200px) {
  .details-default > .detail-body .detail-body-content .tab-content .tab-item-products-services .store-list .store-item, .details-default > .detail-body .detail-body-content .tab-content .banner-products-services .store-list .store-item {
    width: 29%;
  }
  .details-default > .detail-body .detail-body-content .tab-content .tab-item-products-services .store-list .store-item:nth-child(n+2):before, .details-default > .detail-body .detail-body-content .tab-content .banner-products-services .store-list .store-item:nth-child(n+2):before {
    height: 0;
  }
  .details-default > .detail-body .detail-body-content .tab-content .tab-item-products-services .store-list .store-item:nth-child(2n+3):before, .details-default > .detail-body .detail-body-content .tab-content .banner-products-services .store-list .store-item:nth-child(2n+3):before {
    height: 0;
  }
  .details-default > .detail-body .detail-body-content .tab-content .tab-item-products-services .store-list .store-item:nth-child(3n+4):before, .details-default > .detail-body .detail-body-content .tab-content .banner-products-services .store-list .store-item:nth-child(3n+4):before {
    height: 1px;
    width: 345%;
  }
}
@media screen and (min-width: 551px) {
  .details-default > .detail-body .detail-body-content .tab-content .tab-item-products-services .store-list, .details-default > .detail-body .detail-body-content .tab-content .banner-products-services .store-list {
    column-gap: 40px;
  }
}
@media screen and (min-width: 768px) {
  .details-default > .detail-body .detail-body-content .tab-content .tab-item-products-services .store-list, .details-default > .detail-body .detail-body-content .tab-content .banner-products-services .store-list {
    column-gap: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .details-default > .detail-body .detail-body-content .tab-content .tab-item-products-services .store-list, .details-default > .detail-body .detail-body-content .tab-content .banner-products-services .store-list {
    column-gap: 40px;
  }
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-additional-image img, .details-default > .detail-body .detail-body-content .tab-content .banner-additional-image img {
  max-width: 100%;
  height: auto;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-description .custom-content.ckeditor-content, .details-default > .detail-body .detail-body-content .tab-content .banner-description .custom-content.ckeditor-content {
  padding: 0;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-action-button, .details-default > .detail-body .detail-body-content .tab-content .banner-action-button {
  /*
  * Attribute button-space could have four values to change the space at call to action widget
  * none - this will remove all spaces from the top and bottom
  * small - this will set space of 24px at top and bottom
  * medium - this will set space of 40px at top and bottom
  * large - this will set space of 56px at top and bottom
  */
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-action-button[button-space=none], .details-default > .detail-body .detail-body-content .tab-content .banner-action-button[button-space=none] {
  margin-top: 0;
  margin-bottom: 0;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-action-button[button-space=small], .details-default > .detail-body .detail-body-content .tab-content .banner-action-button[button-space=small] {
  margin-top: 24px;
  margin-bottom: 24px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-action-button[button-space=medium], .details-default > .detail-body .detail-body-content .tab-content .banner-action-button[button-space=medium] {
  margin-top: 40px;
  margin-bottom: 40px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-action-button[button-space=large], .details-default > .detail-body .detail-body-content .tab-content .banner-action-button[button-space=large] {
  margin-top: 56px;
  margin-bottom: 56px;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-action-button, .details-default > .detail-body .detail-body-content .tab-content .banner-action-button {
  /*
  * Attribute button-align could have three values to change the alignment of call to action widget
  * left - this will align the button to the left side
  * center - this will align the button to the center side
  * right - this will align the button to the right side
  */
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-action-button[button-align=left], .details-default > .detail-body .detail-body-content .tab-content .banner-action-button[button-align=left] {
  text-align: left;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-action-button[button-align=center], .details-default > .detail-body .detail-body-content .tab-content .banner-action-button[button-align=center] {
  text-align: center;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-action-button[button-align=right], .details-default > .detail-body .detail-body-content .tab-content .banner-action-button[button-align=right] {
  text-align: right;
}
.details-default > .detail-body .detail-body-content .tab-content .tab-item-action-button .button, .details-default > .detail-body .detail-body-content .tab-content .banner-action-button .button {
  text-align: center;
}
@media screen and (min-width: 992px) {
  .details-default > .detail-body .detail-body-content .tab-content:not(.has-sidebar) .tab-item-products-services .store-list .store-item {
    width: 30%;
  }
  .details-default > .detail-body .detail-body-content .tab-content:not(.has-sidebar) .tab-item-products-services .store-list .store-item:nth-child(n+2):before {
    height: 0;
  }
  .details-default > .detail-body .detail-body-content .tab-content:not(.has-sidebar) .tab-item-products-services .store-list .store-item:nth-child(2n+3):before {
    height: 0;
  }
  .details-default > .detail-body .detail-body-content .tab-content:not(.has-sidebar) .tab-item-products-services .store-list .store-item:nth-child(3n+4):before {
    height: 1px;
    width: 332%;
  }
}
@media screen and (min-width: 1200px) {
  .details-default > .detail-body .detail-body-content .tab-content:not(.has-sidebar) .tab-item-products-services .store-list .store-item {
    width: 22%;
  }
  .details-default > .detail-body .detail-body-content .tab-content:not(.has-sidebar) .tab-item-products-services .store-list .store-item:nth-child(n+2):before {
    height: 0;
  }
  .details-default > .detail-body .detail-body-content .tab-content:not(.has-sidebar) .tab-item-products-services .store-list .store-item:nth-child(2n+3):before {
    height: 0;
  }
  .details-default > .detail-body .detail-body-content .tab-content:not(.has-sidebar) .tab-item-products-services .store-list .store-item:nth-child(3n+4):before {
    height: 0;
  }
  .details-default > .detail-body .detail-body-content .tab-content:not(.has-sidebar) .tab-item-products-services .store-list .store-item:nth-child(4n+5):before {
    height: 1px;
    width: 455%;
  }
}
@media screen and (min-width: 992px) {
  .details-default > .detail-body .detail-body-content .tab-content:not(.has-sidebar) .tab-item-products-services .store-list {
    column-gap: 40px;
  }
}
.details-default > .detail-body .detail-body-content .tab-content .tab-right .tab-item-contact-us .info-list .button {
  width: 100%;
  text-align: center;
}
.details-default > .detail-body .detail-body-content .sidebar-cards {
  background: var(--neutral-transp-5, rgba(62, 69, 94, 0.05));
  padding: 24px 54px;
  position: relative;
  max-width: 342px;
  margin: 0 auto;
}
.details-default > .detail-body .detail-body-content .sidebar-cards .sidebar-cards-heading {
  color: #6e7486;
  font-family: var(--heading-font, "Rubik");
  font-weight: 500;
  font-size: var(--font-size-20, 1.25em);
  text-align: center;
  margin-bottom: 16px;
}
.details-default > .detail-body .detail-body-content .sidebar-cards .cards-list {
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
}
.details-default > .detail-body .detail-body-content .sidebar-cards .cards-list::-webkit-scrollbar {
  width: 0; /* Remove scrollbar space */
  background: transparent; /* Optional: just make scrollbar invisible */
}
.details-default > .detail-body .detail-body-content .sidebar-cards .card-sidebar {
  min-width: 100%;
  margin-right: 8px;
}
.details-default > .detail-body .detail-body-content .sidebar-cards .card-sidebar .card-picture,
.details-default > .detail-body .detail-body-content .sidebar-cards .card-sidebar .picture-link {
  margin-bottom: 24px;
  display: block;
}
.details-default > .detail-body .detail-body-content .sidebar-cards .card-sidebar .card-picture img,
.details-default > .detail-body .detail-body-content .sidebar-cards .card-sidebar .picture-link img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.details-default > .detail-body .detail-body-content .sidebar-cards .card-sidebar .card-title {
  margin: 0;
  color: var(--neutral-base, #3e455e);
  font-family: var(--heading-font, "Rubik");
  font-weight: 500;
  font-size: var(--font-size-20, 1.25em);
  margin-bottom: 8px;
}
.details-default > .detail-body .detail-body-content .sidebar-cards .card-sidebar .cards-category {
  color: var(--highlight-base, #137df7);
  font-size: var(--font-size-13, 0.8125em);
  font-family: var(--heading-font, "Rubik");
  font-weight: 400;
}
.details-default > .detail-body .detail-body-content .sidebar-cards .card-sidebar .cards-reviews {
  margin-top: 4px;
}
.details-default > .detail-body .detail-body-content .sidebar-cards .card-sidebar .cards-reviews .fa-star {
  color: var(--badge-base, #ffc800);
}
.details-default > .detail-body .detail-body-content .sidebar-cards .card-sidebar .cards-reviews .fa-star-o {
  color: var(--neutral-base, #3e455e);
}
.details-default > .detail-body .detail-body-content .sidebar-cards .card-sidebar.store-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
  overflow: hidden;
}
.details-default > .detail-body .detail-body-content .sidebar-cards .card-sidebar.store-item .store-item-thumb {
  width: 100%;
  height: 170px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 3px;
}
.details-default > .detail-body .detail-body-content .sidebar-cards .card-sidebar.store-item .price {
  font-size: var(--font-size-20, 1.25em);
  font-weight: 600;
  margin-top: 16px;
}
.details-default > .detail-body .detail-body-content .sidebar-cards .card-sidebar.store-item p {
  margin-top: 8px;
  margin-bottom: 0;
}
.details-default > .detail-body .detail-body-content .sidebar-cards .card-sidebar.store-item .actions {
  position: relative;
  bottom: 0;
}
.details-default > .detail-body .detail-body-content .sidebar-cards .card-sidebar.store-item .actions .button {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}
.details-default > .detail-body .detail-body-content .sidebar-cards .card-sidebar.store-item .actions .link-more-details {
  color: var(--highlight-base, #137df7);
  font-weight: 400;
  margin-bottom: 20px;
}
.details-default > .detail-body .detail-body-content .sidebar-cards .sidebar-cards-nav {
  width: 30px;
  height: 30px;
  border: none;
  background: var(--neutral-base, #3e455e);
  color: var(--color-white-base, white);
  border-radius: 9999px;
  font-size: 22px;
  line-height: 28px;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  outline: none;
  cursor: pointer;
}
.details-default > .detail-body .detail-body-content .sidebar-cards .sidebar-cards-nav[nav-direction=left] {
  left: 12px;
}
.details-default > .detail-body .detail-body-content .sidebar-cards .sidebar-cards-nav[nav-direction=right] {
  right: 12px;
}
.details-default > .detail-body .detail-body-content .reviews-page-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 24px;
}
.details-default .share-icon {
  position: relative;
  cursor: pointer;
  margin-right: 16px;
}
.details-default .share-icon .share-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  background: var(--color-white-dark-5, rgb(242.25, 242.25, 242.25));
  padding: 8px;
  line-height: 1;
  border-radius: 3px;
  margin: 8px 0 0 0;
  display: none;
  min-height: auto;
  min-width: 85px;
  z-index: 1;
}
.details-default .share-icon .share-dropdown:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: -5px;
  left: 50%;
  -ms-transform: translateX(-50%) rotate(45deg);
      transform: translateX(-50%) rotate(45deg);
  background: var(--color-white-dark-5, rgb(242.25, 242.25, 242.25));
}
.details-default .share-icon .share-dropdown .social-likes__widget {
  margin: 0;
  transition: 0.2s ease-in-out;
  text-align: center;
}
.details-default .share-icon .share-dropdown .social-likes__widget.social-likes__widget_twitter:hover {
  background-color: #f5f5f5;
  border-color: #ccc;
}
.details-default .share-icon .share-dropdown .social-likes__widget svg {
  width: 16px;
  -ms-transform: translate(-2px, -1px);
      transform: translate(-2px, -1px);
}
.details-default .share-icon .social-likes__button {
  padding: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
}
.details-default .share-icon .social-likes__button .social-likes__icon {
  display: none;
}
.details-default .share-icon .social-likes__button .social-likes__icon_whatsapp {
  display: none;
}
.details-default .share-icon .share-dropdown .social-likes__widget_whatsapp {
  margin-top: 4px;
  display: block;
}
@media screen and (min-width: 992px) {
  .details-default .share-icon .share-dropdown .social-likes__widget_whatsapp {
    display: none;
  }
}
.details-default.details-listing > .details-header .details-general .details-info {
  width: calc(100% - 100px);
}
.details-default.details-listing > .detail-body .detail-body-content .tab-content {
  display: none;
}
.details-default.details-listing > .detail-body .detail-body-content .tab-content.is-active:not(.has-sidebar) {
  display: block;
}
.details-default.details-listing > .detail-body .detail-body-content .tab-content.is-active.has-sidebar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
}
.details-default.details-listing > .detail-body .detail-body-content .tab-content.is-active.has-sidebar .tab-left {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .details-default.details-listing > .detail-body .detail-body-content .tab-content.is-active.has-sidebar .tab-left {
    width: 65%;
  }
}
.details-default.details-listing > .detail-body .detail-body-content .tab-content.is-active.has-sidebar .tab-right {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .details-default.details-listing > .detail-body .detail-body-content .tab-content.is-active.has-sidebar .tab-right {
    width: 30%;
  }
}
.details-default.details-listing > .detail-body .detail-body-content .tab-content.is-active.has-sidebar .tab-right .banner[type=square] {
  margin-top: 0;
}
.details-default.details-listing > .detail-body .detail-body-content .tab-content.is-active.has-sidebar .tab-right .banner[type=square] .banner-link {
  margin-left: 0;
}
@media screen and (min-width: 500px) {
  .details-default.details-listing > .detail-body .detail-body-content .tab-content.is-active.has-sidebar .tab-right .banner[type=square] .banner-link {
    margin-left: 8px;
  }
}
@media screen and (min-width: 992px) {
  .details-default.details-listing > .detail-body .detail-body-content .tab-content.is-active.has-sidebar .tab-right .banner[type=square] .banner-link {
    margin-left: 0;
  }
}
.details-default.details-listing > .detail-body .detail-body-content .tab-content.is-active.has-sidebar .tab-right .tab-item-video iframe {
  max-height: 300px;
}
@media screen and (min-width: 992px) {
  .details-default.details-listing > .detail-body .detail-body-content .tab-content.is-active.has-sidebar .tab-right .tab-item-video iframe {
    height: 200px;
  }
}
.details-default.details-listing > .detail-body .detail-body-content .tab-content.is-active.has-sidebar .tab-right .tab-item-badges .details-certified {
  gap: 30px;
}
.details-default.details-listing > .detail-body .detail-body-content .tab-content.is-active.has-sidebar#reviews .banner[type=skyscraper] {
  display: none;
}
@media screen and (min-width: 992px) {
  .details-default.details-listing > .detail-body .detail-body-content .tab-content.is-active.has-sidebar#reviews .banner[type=skyscraper] {
    display: -ms-flexbox;
    display: flex;
  }
}
.details-default.details-listing > .detail-body .detail-body-content .tab-content.is-active.has-sidebar#reviews .banner[type=halfpage] {
  display: none;
}
@media screen and (min-width: 992px) {
  .details-default.details-listing > .detail-body .detail-body-content .tab-content.is-active.has-sidebar#reviews .banner[type=halfpage] {
    display: -ms-flexbox;
    display: flex;
  }
}
.details-default:not(.details-listing) > .detail-body .detail-body-content .tab-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
}
.details-default:not(.details-listing) > .detail-body .detail-body-content .tab-content .tab-left {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .details-default:not(.details-listing) > .detail-body .detail-body-content .tab-content .tab-left {
    width: 65%;
  }
}
.details-default:not(.details-listing) > .detail-body .detail-body-content .tab-content .tab-right {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .details-default:not(.details-listing) > .detail-body .detail-body-content .tab-content .tab-right {
    width: 30%;
  }
}
.details-default:not(.details-listing) > .detail-body .detail-body-content .tab-content .tab-right .banner[type=square] {
  margin-top: 0;
}
.details-default:not(.details-listing) > .detail-body .detail-body-content .tab-content .tab-right .banner[type=square] picture:not(:first-child) {
  margin-top: 30px;
}
.details-default:not(.details-listing) > .detail-body .detail-body-content .tab-content .tab-right .banner[type=square] .banner-link {
  margin-left: 0;
}
@media screen and (min-width: 500px) {
  .details-default:not(.details-listing) > .detail-body .detail-body-content .tab-content .tab-right .banner[type=square] .banner-link {
    margin-left: 8px;
  }
}
@media screen and (min-width: 992px) {
  .details-default:not(.details-listing) > .detail-body .detail-body-content .tab-content .tab-right .banner[type=square] .banner-link {
    margin-left: 0;
  }
}
@media screen and (min-width: 992px) {
  .details-default.details-events > .details-header .details-contact-panel {
    max-width: 35%;
  }
}
.details-default.details-events .tab-right {
  margin-top: 32px;
}
@media screen and (min-width: 992px) {
  .details-default.details-events .tab-right {
    margin-top: 0;
  }
}
.details-default.details-events .tab-right .banner[type=square] {
  margin-top: 0;
}
.details-default.details-events .tab-right .banner[type=square] .banner-link {
  margin-left: 0;
}
@media screen and (min-width: 500px) {
  .details-default.details-events .tab-right .banner[type=square] .banner-link {
    margin-left: 8px;
  }
}
@media screen and (min-width: 992px) {
  .details-default.details-events .tab-right .banner[type=square] .banner-link {
    margin-left: 0;
  }
}
.details-default.details-events .detail-header-content-mobile .details-info {
  margin-top: 0;
}
.details-default.details-events .detail-header-content-mobile .details-date {
  margin-top: 24px;
}
.details-default.details-events .detail-header-content-mobile .details-date-open {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.details-default.details-events .detail-header-content-mobile .details-date-open .timezone-detail {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  cursor: default;
  width: 100%;
}
.details-default.details-events .detail-header-content-mobile .details-date-open .timezone-detail .timezone-detail-content {
  position: relative;
  font-size: var(--font-size-12, 0.75em);
  opacity: 0.8;
  display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 260px;
  overflow: hidden;
}
.details-default.details-events .detail-header-content-mobile .details-date-open .timezone-detail[data-tooltip]:before {
  font-weight: 300;
  font-family: "Rubik", sans-serif;
  font-size: var(--font-size-12, 0.75em);
  color: #fdfdfd;
  padding: 8px;
  background-color: #2f2f2f;
  text-align: left;
}
@media screen and (min-width: 992px) {
  .details-default.details-classifieds > .details-header .details-contact-panel {
    max-width: 45%;
  }
}
.details-default.details-classifieds > .details-header.details-header-mobile .details-price {
  margin-top: 8px;
}
.details-default.details-classifieds .detail-header-content-mobile .details-info {
  margin-top: 0;
}
.details-default.details-deals > .details-header.details-header-mobile .details-actions {
  margin-top: 0;
}
.details-default.details-deals > .details-header.details-header-desktop .details-share {
  margin-left: 8px;
}
.details-default.details-deals .details-old-price {
  margin-top: 16px;
  line-height: 1;
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
  text-decoration: line-through;
}
.details-default.details-deals .details-old-price + .details-price {
  margin-top: 4px;
  line-height: 1;
}
.details-default.details-deals .details-price {
  color: var(--neutral-base, #3e455e);
  margin-top: 8px;
}
.details-default.details-articles .article-header {
  max-width: 770px;
  margin: 0 auto;
  text-align: center;
}
.details-default.details-articles .article-header .article-date {
  font-weight: 300;
  color: var(--color-white-base, white);
}
.details-default.details-articles .article-header .article-title {
  color: var(--color-white-base, white);
  margin-top: 16px;
}
.details-default.details-articles .article-header .article-actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 16px;
}
.details-default.details-articles .article-header .article-actions .icon {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
  margin-left: 8px;
  text-decoration: none;
  font-size: 20px;
}
.details-default.details-articles .article-header .article-actions .icon:first-child {
  margin-left: 0;
}
.details-default.details-articles .article-header .article-actions .social-likes__widget_whatsapp {
  display: block;
}
@media screen and (min-width: 992px) {
  .details-default.details-articles .article-header .article-actions .social-likes__widget_whatsapp {
    display: none;
  }
}
.details-default.details-articles .tab-content {
  max-width: 770px;
  margin: 0 auto;
  display: block !important;
}
.details-default.details-articles .tab-content .article-author {
  display: -ms-flexbox;
  display: flex;
}
.details-default.details-articles .tab-content .article-author .article-picture {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 9999px;
  text-align: center;
  line-height: 48px;
  border: 1px solid var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
}
.details-default.details-articles .tab-content .article-author .article-picture img {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: cover;
}
.details-default.details-articles .tab-content .article-author .article-content {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
  margin-left: 16px;
}
.details-default.details-articles .tab-content .article-author .article-content .author-name {
  font-weight: bold;
  display: inline-block;
}
.details-default.details-articles .tab-content .article-author-full {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-align: center;
      align-items: center;
  border-top: 1px solid #979797;
  margin-top: 16px;
  padding-top: 16px;
}
.details-default.details-articles .tab-content .article-author-full .author-full-picture {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 67px;
  height: 67px;
  overflow: hidden;
  border-radius: 9999px;
  text-align: center;
  line-height: 67px;
}
.details-default.details-articles .tab-content .article-author-full .author-full-picture img {
  width: 67px;
  height: 67px;
  display: block;
  object-fit: cover;
}
.details-default.details-articles .tab-content .article-author-full .author-full-about {
  max-width: calc(100% - 83px);
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
  margin-left: 16px;
}
.details-default.details-articles .tab-content .details-slider {
  margin-top: 32px;
}
.details-default.details-articles .tab-content .article-description {
  margin-top: 48px;
}
.details-default.details-articles .tab-content .article-description h1, .details-default.details-articles .tab-content .article-description h2, .details-default.details-articles .tab-content .article-description h3, .details-default.details-articles .tab-content .article-description h4, .details-default.details-articles .tab-content .article-description h5, .details-default.details-articles .tab-content .article-description h6 {
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
}
.details-default.details-articles .tab-content .article-description p {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  margin-bottom: 16px;
  margin-top: 0;
}
.details-default.details-articles .tab-content .article-description blockquote {
  border-left: 5px solid #ccc;
  padding: 2px 8px 2px 20px;
  font-style: italic;
}
.details-default.details-articles .tab-content .article-description img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--border-radius, 3px);
}
.details-default.details-articles .tab-content .article-categories {
  margin-top: 32px;
  margin-left: -8px;
}
.details-default.details-articles .tab-content .article-categories .categorie-item {
  background: var(--neutral-transp-15, rgba(62, 69, 94, 0.15));
  border-radius: var(--border-radius-icon, 3px);
  padding: 4px 8px;
  font-weight: bold;
  color: var(--neutral-base, #3e455e);
  margin-left: 8px;
  margin-bottom: 8px;
  font-size: 0.75em;
}
.details-default.details-blog {
  background: #f2f2f2;
}
.details-default.details-blog .details-header:before {
  display: none;
}
.details-default.details-blog .details-header-content {
  padding: 24px 0;
  -ms-flex-pack: center;
      justify-content: center;
  border-bottom: 1px solid var(--color-black-transp-25, rgba(0, 0, 0, 0.25));
}
.details-default.details-blog .detail-body-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
}
.details-default.details-blog .detail-body-content .blog-content {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .details-default.details-blog .detail-body-content .blog-content {
    width: 55%;
  }
}
@media screen and (min-width: 1200px) {
  .details-default.details-blog .detail-body-content .blog-content {
    width: 60%;
  }
}
.details-default.details-blog .detail-body-content .blog-content .blog-category {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}
.details-default.details-blog .detail-body-content .blog-content .blog-title {
  margin-top: 8px;
  max-width: 80%;
  line-height: 1.1;
  font-size: 1.5em;
}
@media screen and (min-width: 768px) {
  .details-default.details-blog .detail-body-content .blog-content .blog-title {
    font-size: 1.75em;
  }
}
@media screen and (min-width: 992px) {
  .details-default.details-blog .detail-body-content .blog-content .blog-title {
    font-size: 2.5em;
  }
}
.details-default.details-blog .detail-body-content .blog-content .blog-post-info {
  display: -ms-flexbox;
  display: flex;
}
.details-default.details-blog .detail-body-content .blog-content .blog-post-info .actions {
  display: -ms-flexbox;
  display: flex;
  margin-left: 32px;
}
.details-default.details-blog .detail-body-content .blog-content .blog-post-info .actions i {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
.details-default.details-blog .detail-body-content .blog-content .blog-post-info .actions .social-likes__widget_facebook:hover .fa, .details-default.details-blog .detail-body-content .blog-content .blog-post-info .actions .social-likes__widget_twitter:hover .fa {
  color: #fff;
}
.details-default.details-blog .detail-body-content .blog-content .blog-post-info .actions .social-likes__widget_facebook:hover svg, .details-default.details-blog .detail-body-content .blog-content .blog-post-info .actions .social-likes__widget_twitter:hover svg {
  fill: #000;
}
.details-default.details-blog .detail-body-content .blog-content .blog-picture {
  position: relative;
  margin-top: 24px;
}
.details-default.details-blog .detail-body-content .blog-content .blog-picture picture {
  height: 260px;
  overflow: hidden;
}
.details-default.details-blog .detail-body-content .blog-content .blog-picture img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--border-radius, 3px);
}
.details-default.details-blog .detail-body-content .blog-content .blog-picture .calendar-sm {
  position: absolute;
  top: 16px;
  left: 16px;
  border: none;
}
.details-default.details-blog .detail-body-content .blog-content .blog-text {
  margin-top: 24px;
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  border-bottom: 1px solid var(--color-black-transp-25, rgba(0, 0, 0, 0.25));
}
.details-default.details-blog .detail-body-content .blog-content .blog-text blockquote {
  border-left: 5px solid #ccc;
  padding: 2px 8px 2px 20px;
  font-style: italic;
}
.details-default.details-blog .detail-body-content .blog-content .blog-text img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--border-radius, 3px);
}
.details-default.details-blog .detail-body-content .blog-content .blog-categories {
  margin-top: 16px;
  margin-left: -8px;
}
.details-default.details-blog .detail-body-content .blog-content .blog-categories .categorie-item {
  background: var(--neutral-transp-15, rgba(62, 69, 94, 0.15));
  border-radius: var(--border-radius-icon, 3px);
  padding: 4px 8px;
  font-weight: bold;
  color: var(--neutral-base, #3e455e);
  margin-left: 8px;
  margin-bottom: 8px;
  font-size: 0.75em;
}
.details-default.details-blog .detail-body-content .blog-content .blog-facebook-comment {
  margin-top: 16px;
}
.details-default.details-blog .detail-body-content .blog-content .blog-facebook-comment iframe {
  width: 100%;
}
.details-default.details-blog .detail-body-content .blog-content .blog-share {
  margin-top: 16px;
}
.details-default.details-blog .detail-body-content .blog-content .blog-share .share-dropdown {
  line-height: 1;
  margin: 0;
  min-height: auto;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.details-default.details-blog .detail-body-content .blog-content .blog-share .social-likes__widget {
  margin: 0;
}
.details-default.details-blog .detail-body-content .blog-content .blog-share .social-likes__widget:not(:first-child) {
  margin-left: 8px;
}
.details-default.details-blog .detail-body-content .blog-content .blog-share .social-likes__button {
  padding: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  text-align: center;
}
.details-default.details-blog .detail-body-content .blog-content .blog-share .social-likes__button .social-likes__icon {
  display: none;
}
.details-default.details-blog .detail-body-content .blog-content .blog-share .social-likes__button .social-likes__icon_whatsapp {
  display: none;
}
.details-default.details-blog .detail-body-content .blog-content .blog-share .social-likes__button_whatsapp:hover {
  background: #65BC54;
  color: white;
}
.details-default.details-blog .detail-body-content .blog-content .blog-share .social-likes__widget_whatsapp {
  display: block;
}
@media screen and (min-width: 992px) {
  .details-default.details-blog .detail-body-content .blog-content .blog-share .social-likes__widget_whatsapp {
    display: none;
  }
}
.details-default.details-blog .detail-body-content .blog-sidebar {
  width: 100%;
  margin-top: 24px;
}
@media screen and (min-width: 992px) {
  .details-default.details-blog .detail-body-content .blog-sidebar {
    width: 40%;
    margin-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .details-default.details-blog .detail-body-content .blog-sidebar {
    width: 35%;
  }
}
.details-default.details-blog .detail-body-content .blog-sidebar .blog-card {
  background: white;
  padding: 24px;
  border-radius: var(--border-radius, 3px);
}
.details-default.details-blog .detail-body-content .blog-sidebar .blog-card:not(:first-child) {
  margin-top: 16px;
}
.details-default.details-blog .detail-body-content .blog-sidebar .blog-card .card-content {
  width: 100%;
  margin-top: 8px;
}
.details-default.details-blog .detail-body-content .blog-sidebar .blog-card .card-content#headerSearchForm {
  display: -ms-flexbox;
  display: flex;
}
.details-default.details-blog .detail-body-content .blog-sidebar .blog-card .card-content#headerSearchForm .input-group {
  margin-right: 8px;
}
.details-default.details-blog .detail-body-content .blog-sidebar .blog-card .card-content#headerSearchForm .input-group-action {
  -ms-flex-positive: 1;
      flex-grow: 1;
}
.details-default.details-blog .detail-body-content .blog-sidebar .blog-card .card-content .input-group {
  display: -ms-flexbox;
  display: flex;
}
.details-default.details-blog .detail-body-content .blog-sidebar .blog-card .card-content .input-group .icon {
  padding-left: 16px;
  border: 1px solid rgba(62, 69, 94, 0.25);
  color: var(--neutral-base, #3e455e);
  border-right: none;
  border-top-left-radius: var(--border-radius-input, 3px);
  border-bottom-left-radius: var(--border-radius-input, 3px);
}
.details-default.details-blog .detail-body-content .blog-sidebar .blog-card .card-content .input-group .input {
  -ms-flex-positive: 1;
      flex-grow: 1;
  border-left: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.details-default.details-blog .detail-body-content .blog-sidebar .blog-card .card-content .card-categories .categories-item {
  display: block;
  color: var(--neutral-base, #3e455e);
  font-weight: bold;
  text-decoration: none;
  border-top: 1px solid var(--color-black-transp-25, rgba(0, 0, 0, 0.25));
  padding: 8px 0 8px 4px;
}
.details-default.details-blog .detail-body-content .blog-sidebar .blog-card .card-content .card-categories .categories-item:last-child {
  padding-bottom: 0;
}
.details-default.details-blog .detail-body-content .blog-sidebar .blog-card .card-content .card-popular .popular-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-align: start;
      align-items: flex-start;
}
.details-default.details-blog .detail-body-content .blog-sidebar .blog-card .card-content .card-popular .popular-item:not(:first-child) {
  margin-top: 16px;
}
.details-default.details-blog .detail-body-content .blog-sidebar .blog-card .card-content .card-popular .popular-item .item-count {
  color: var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  font-size: 2.5em;
  font-weight: bold;
  line-height: 1;
}
.details-default.details-blog .detail-body-content .blog-sidebar .blog-card .card-content .card-popular .popular-item .item-content {
  max-width: 80%;
  margin-left: 16px;
}
.details-default.details-blog .detail-body-content .blog-sidebar .blog-card .card-content .card-popular .popular-item .item-title {
  font-weight: 500;
  line-height: 1.1;
}
.details-default.details-blog .detail-body-content .blog-sidebar .blog-card .card-content .card-popular .popular-item .item-category {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
  margin-top: 4px;
}
.details-default.details-blog .detail-body-content .blog-sidebar .banner[type=square] {
  margin-top: 0;
}
.details-default.details-blog .detail-body-content .blog-sidebar .banner[type=square] picture:not(:first-child) {
  margin-top: 30px;
}
.details-default.details-blog .detail-body-content .blog-sidebar .banner[type=square] .banner-link {
  margin-left: 0;
}
@media screen and (min-width: 500px) {
  .details-default.details-blog .detail-body-content .blog-sidebar .banner[type=square] .banner-link {
    margin-left: 16px;
  }
}
@media screen and (min-width: 992px) {
  .details-default.details-blog .detail-body-content .blog-sidebar .banner[type=square] .banner-link {
    margin-left: 0;
  }
}
.details-default.details-blog.blog-widget {
  background: var(--color-white-base, white);
}
.details-default.details-blog.blog-widget .blog-card {
  border: 1px solid #979797;
}
.details-default.details-blog.blog-widget .full-width {
  margin: 0;
  padding: 0;
}
.details-default.details-blog.blog-widget .full-width + .cards-default {
  padding-bottom: 0;
}
@media screen and (min-width: 992px) {
  .details-default.details-blog.blog-widget .full-width + .cards-default {
    padding-bottom: 60px;
  }
}
.details-default.details-blog.blog-widget .full-width .card {
  margin: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .details-default.details-blog.blog-widget .full-width .card {
    margin: 0 16px;
  }
}

a[data-fancybox] img {
  cursor: zoom-in;
}

.fancybox__container {
  z-index: 5600;
}
.fancybox__container.products-services-gallery {
  --fancybox-bg: #fff;
  --fancybox-color: #333;
  --fancybox-accent-color: #e879f9;
  --carousel-button-svg-filter: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
@media screen and (min-width: 992px) {
  .fancybox__container.products-services-gallery {
    -ms-flex-direction: row;
        flex-direction: row;
  }
}
.fancybox__container.products-services-gallery .fancybox__toolbar {
  display: none;
  position: relative;
  padding: 0;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  border-bottom: 1px solid #edeef0;
  text-shadow: none;
  font-weight: 400;
  --carousel-button-svg-stroke-width: 1.75;
  --carousel-button-svg-width: 22px;
  --carousel-button-svg-height: 22px;
}
.fancybox__container.products-services-gallery .fancybox__thumbs {
  background-color: #121111;
}
.fancybox__container.products-services-gallery .fancybox__thumbs .carousel__slide .fancybox__thumb {
  border-radius: 0;
}
.fancybox__container.products-services-gallery .fancybox__thumbs .carousel__slide .fancybox__thumb:after {
  border-color: var(--highlight-base, #137df7);
  border-width: 1px;
}
.fancybox__container.products-services-gallery .fancybox__slide {
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: #121111;
  border: solid 1px #121111;
}
.fancybox__container.products-services-gallery .fancybox__leftCol .fancybox__content .carousel__button {
  display: none;
}
.fancybox__container.products-services-gallery .fancybox__nav {
  --carousel-button-bg: #e5e7eb;
  --carousel-button-border-radius: 6px;
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  --carousel-button-svg-stroke-width: 2.5;
}
.fancybox__container.products-services-gallery .fancybox__nav .carousel__button {
  border-radius: 0;
  width: 33px;
}
.fancybox__container.products-services-gallery .fancybox__nav .carousel__button.is-next {
  right: 0;
}
.fancybox__container.products-services-gallery .fancybox__nav .carousel__button.is-prev {
  left: 0;
}
.fancybox__container.products-services-gallery .fancybox__leftCol {
  width: 100vw;
}
@media screen and (min-width: 992px) {
  .fancybox__container.products-services-gallery .fancybox__leftCol {
    width: 75vw;
  }
}
.fancybox__container.products-services-gallery .fancybox__leftCol {
  min-height: 1px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  overflow: hidden;
  position: relative;
}
.fancybox__container.products-services-gallery .fancybox__rightCol {
  position: relative;
  height: 100%;
  overflow: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  border-left: 1px solid #edeef0;
  opacity: var(--fancybox-opacity, 1);
  width: 100vw;
}
@media screen and (min-width: 992px) {
  .fancybox__container.products-services-gallery .fancybox__rightCol {
    width: 25vw;
  }
}
.fancybox__container.products-services-gallery .fancybox__rightCol .rightCol-header {
  padding: 24px;
  border-bottom: solid 1px #becfd7;
  text-align: right;
}
.fancybox__container.products-services-gallery .fancybox__rightCol .rightCol-header button {
  border: none;
  background-color: transparent;
  font-size: 20px;
  color: #121111;
  cursor: pointer;
}
.fancybox__container.products-services-gallery .fancybox__rightCol .rightCol-body {
  padding: 40px 32px 155px 32px;
}
.fancybox__container.products-services-gallery .fancybox__rightCol .rightCol-body .product-price {
  margin-top: 16px;
}
.fancybox__container.products-services-gallery .fancybox__rightCol .rightCol-body .product-description {
  margin-top: 14px;
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
.fancybox__container.products-services-gallery .fancybox__rightCol .rightCol-footer {
  border-top: solid 1px #becfd7;
  position: fixed;
  bottom: 0;
  padding: 32px;
  width: 100vw;
  background-color: #fff;
}
@media screen and (min-width: 992px) {
  .fancybox__container.products-services-gallery .fancybox__rightCol .rightCol-footer {
    width: 25vw;
  }
}
.fancybox__container.products-services-gallery .fancybox__rightCol .rightCol-footer .button {
  width: 100%;
  text-align: center;
}
.fancybox__container.products-services-gallery {
  /* Opening */
}
.fancybox__container.products-services-gallery.is-animated[aria-hidden=false] .fancybox__rightCol {
  animation: 0.15s ease backwards fancybox-fadeIn;
}
.fancybox__container.products-services-gallery {
  /* Closing */
}
.fancybox__container.products-services-gallery.is-animated.is-closing .fancybox__rightCol {
  animation: 0.15s ease both fancybox-fadeOut;
}
.fancybox__container.products-services-gallery.is-animated.is-closing .fancybox__leftCol {
  overflow: visible;
}

.modal-sign {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: start;
      align-items: flex-start;
}
.modal-sign:not([is-page=true]) {
  position: fixed;
  width: 100%;
  min-height: 100vh;
  top: 0;
  left: 0;
  z-index: 50000;
  overflow: auto;
  padding: 48px 0;
  background: var(--color-black-transp-50, rgba(0, 0, 0, 0.5));
  display: none;
}
.modal-sign[is-page=true]:before {
  display: none;
}
.modal-sign[is-page=true] .modal-content {
  border: 1px solid var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  margin: 48px 0;
  box-shadow: none;
  width: 550px;
  max-height: none;
}
.modal-sign[is-page=true]:not(.keep-style) .modal-body .content-tab {
  position: static;
  width: auto;
}
.modal-sign .modal-content {
  background: white;
  border-radius: var(--border-radius, 3px);
  width: 90%;
  margin: 0 auto;
  max-height: 90vh;
  overflow: auto;
}
@media screen and (min-width: 768px) {
  .modal-sign .modal-content {
    width: 446px;
  }
}
.modal-sign .modal-content .modal-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 24px;
  border-bottom: 1px solid #cbcbcb;
  position: relative;
  min-height: 73.2px;
}
.modal-sign .modal-content .modal-nav .modal-nav-link {
  color: var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  font-weight: 600;
  margin-left: 32px;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}
.modal-sign .modal-content .modal-nav .modal-nav-link:first-child {
  margin-left: 0;
}
.modal-sign .modal-content .modal-nav .modal-nav-link:hover, .modal-sign .modal-content .modal-nav .modal-nav-link.active {
  color: var(--neutral-base, #3e455e);
}
.modal-sign .modal-content .modal-nav .modal-close-button {
  position: absolute;
  color: var(--neutral-base, #3e455e);
  text-decoration: none;
  right: 24px;
  line-height: 1;
  font-size: 24px;
}
.modal-sign .modal-content .modal-nav .selected-arrow {
  width: 12px;
  height: 12px;
  border-top: 1px solid rgba(151, 151, 151, 0.5);
  border-left: 1px solid rgba(151, 151, 151, 0.5);
  background: white;
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  position: absolute;
  bottom: -6px;
  transition: 0.5s ease-in-out;
}
.modal-sign .modal-content .modal-body {
  padding: 48px;
  overflow: hidden;
  position: relative;
  transition: 0.5s ease-in-out;
}
.modal-sign .modal-content .modal-body .content-tab {
  width: calc(100% - 96px);
  position: absolute;
  top: 48px;
  transition: 0.5s ease-in-out;
}
.modal-sign .modal-content .modal-body .content-tab.content-sign-in {
  left: -100%;
}
.modal-sign .modal-content .modal-body .content-tab.content-sign-up {
  right: -100%;
}
.modal-sign .modal-content .modal-body .content-tab.active.content-sign-in {
  left: 48px;
}
.modal-sign .modal-content .modal-body .content-tab.active.content-sign-up {
  right: 48px;
}
.modal-sign .modal-content .modal-body .modal-social {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.modal-sign .modal-content .modal-body .modal-social .modal-social-wrapper {
  max-width: 290px;
}
.modal-sign .modal-content .modal-body .modal-social .modal-social-wrapper .social-modal-button {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  border-radius: var(--border-radius-button, 3px);
  padding: 10px 30px 10px 54px;
  text-decoration: none;
  background: #fff;
  color: #6d6d6d;
  transition: 0.2s ease-in-out;
  margin-bottom: 8px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16);
}
.modal-sign .modal-content .modal-body .modal-social .modal-social-wrapper .social-modal-button:last-of-type {
  margin-bottom: 0;
}
.modal-sign .modal-content .modal-body .modal-social .modal-social-wrapper .social-modal-button:hover {
  background: rgb(242.25, 242.25, 242.25);
}
.modal-sign .modal-content .modal-body .modal-social .modal-social-wrapper .social-modal-button img, .modal-sign .modal-content .modal-body .modal-social .modal-social-wrapper .social-modal-button .fa {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  left: 10px;
  width: 18px;
  height: 18px;
}
.modal-sign .modal-content .modal-body .modal-social .modal-social-wrapper .social-modal-button img {
  width: 20px;
  height: 20px;
}
.modal-sign .modal-content .modal-body .modal-social .modal-social-wrapper .social-modal-button .fa {
  font-size: 20px;
}
.modal-sign .modal-content .modal-body .modal-social .modal-social-wrapper .social-modal-button.facebook-button .fa {
  color: #1877F2;
}
.modal-sign .modal-content .modal-body .modal-social .modal-social-wrapper .social-modal-button.apple-button .fa {
  color: #000000;
}
.modal-sign .modal-content .modal-body .modal-social .modal-social-wrapper .social-modal-button.google-button img {
  max-width: 17px;
  max-height: 17px;
}
.modal-sign .modal-content .modal-body .or-label {
  display: block;
  text-align: center;
  margin-top: 16px;
  line-height: 1;
}
.modal-sign .modal-content .modal-body .modal-form {
  margin-top: 16px;
}
.modal-sign .modal-content .modal-body .modal-form .input {
  width: 100%;
  margin-top: 8px;
}
.modal-sign .modal-content .modal-body .modal-form .input:first-child {
  margin-top: 0;
}
.modal-sign .modal-content .modal-body .modal-form .checkbox {
  margin-top: 8px;
}
.modal-sign .modal-content .modal-body .modal-form .checkbox + #reCaptchaContainer {
  margin-top: 8px;
}
@media screen and (max-width: 425px) {
  .modal-sign .modal-content .modal-body .modal-form #reCaptchaContainer * {
    max-width: 100%;
  }
}
.modal-sign .modal-content .modal-body .consents-block {
  margin-top: 8px;
}
.modal-sign .modal-content .modal-body .consents-block label {
  display: block;
  font-size: 0.6875em;
  color: #bfb6b6;
}
.modal-sign .modal-content .modal-body .form-actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .modal-sign .modal-content .modal-body .form-actions {
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin-top: 4px;
  }
}
.modal-sign .modal-content .modal-body .form-actions .form-remember {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  margin: 0;
}
.modal-sign .modal-content .modal-body .form-actions .form-remember input {
  margin-right: 4px;
}
.modal-sign .modal-content .modal-body .form-actions + .form-button {
  margin-top: 32px;
}
.modal-sign .modal-content .modal-body .form-actions .form-lost-password {
  margin-left: 8px;
}
@media screen and (min-width: 768px) {
  .modal-sign .modal-content .modal-body .form-actions .form-lost-password {
    margin-left: 0;
  }
}
@media screen and (max-width: 425px) {
  .modal-sign .modal-content .modal-body .g-recaptcha * {
    max-width: 100%;
  }
}
.modal-sign .modal-content .modal-body .g-recaptcha > div,
.modal-sign .modal-content .modal-body #reCaptchaContainer > div {
  margin: 8px auto 0;
}
.modal-sign .modal-content .modal-body .form-button {
  margin-top: 16px;
}
.modal-sign .modal-content .modal-body .form-button .button {
  width: 100%;
  text-align: center;
  display: inline-block;
}
.modal-sign .modal-content .modal-body .privacy-policy {
  color: #bfb6b6;
  text-align: center;
  display: block;
  margin-top: 8px;
}
.modal-sign .modal-content .modal-body .privacy-policy .link {
  font-size: inherit;
}
.modal-sign .modal-content .modal-body .not-member {
  display: block;
  line-height: 1;
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  text-align: center;
  margin-top: 8px;
}
.modal-sign.sign-modal .modal-content {
  width: 446px;
}
.modal-sign.login-page-advertise .modal-content .modal-body .content-tab {
  position: static;
  width: 100%;
}
.modal-sign.login-page-advertise .checkbox {
  margin-top: 16px;
}

.contactus-block {
  padding-top: 24px;
  padding-bottom: 24px;
}
@media only screen and (min-width: 992px) {
  .contactus-block {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.contactus-block .wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
}
.contactus-block .wrapper .contactus-content {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contactus-block .wrapper .contactus-content {
    width: 45%;
  }
}
@media screen and (min-width: 992px) {
  .contactus-block .wrapper .contactus-content {
    width: 485px;
  }
}
.contactus-block .wrapper .contactus-content .paragraph {
  font-weight: 300;
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
.contactus-block .wrapper .contactus-content .contactus-info {
  margin-top: 32px;
}
.contactus-block .wrapper .contactus-content .contactus-info .info-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-align: center;
      align-items: center;
}
.contactus-block .wrapper .contactus-content .contactus-info .info-item:not(:first-child) {
  margin-top: 8px;
}
.contactus-block .wrapper .contactus-content .contactus-info .info-item .icon {
  margin-right: 8px;
  color: var(--brand-base, #022e69);
  font-size: 18px;
}
.contactus-block .wrapper .contactus-content .contactus-info .info-item a {
  color: var(--neutral-base, #3e455e);
  text-decoration: none;
}
.contactus-block .wrapper .contactus-content .contactus-social {
  display: -ms-flexbox;
  display: flex;
  margin-top: 24px;
}
.contactus-block .wrapper .contactus-content .contactus-social .social-item {
  width: 36px;
  height: 36px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  color: var(--brand-base, #022e69);
  border: 1px solid var(--brand-base, #022e69);
  border-radius: 9999px;
  text-decoration: none;
}
.contactus-block .wrapper .contactus-content .contactus-social .social-item:not(:first-child) {
  margin-left: 16px;
}
.contactus-block .wrapper .contactus-content .contactus-social .social-item svg {
  max-width: 16px;
  fill: var(--brand-base, #022e69);
}
.contactus-block .wrapper .contactus-form {
  width: 100%;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .contactus-block .wrapper .contactus-form {
    width: 300px;
    margin-top: 0;
  }
}
@media screen and (min-width: 992px) {
  .contactus-block .wrapper .contactus-form {
    width: 375px;
  }
}
.contactus-block .wrapper .contactus-form .input {
  width: 100%;
}
.contactus-block .wrapper .contactus-form .input:not(:first-child) {
  margin-top: 8px;
}
.contactus-block .wrapper .contactus-form textarea {
  padding-top: 8px;
}
.contactus-block .wrapper .contactus-form .button {
  width: 100%;
  display: block;
  margin-top: 8px;
}
.contactus-block .wrapper .contactus-form .input-group {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-align: start;
      align-items: flex-start;
  margin-left: 0;
  display: -ms-flexbox;
  display: flex;
  margin-top: 8px;
}
.contactus-block .wrapper .contactus-form .input-group .input-group-addon {
  height: 50px;
  line-height: 50px;
  border: 1px solid var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-right: none;
}
.contactus-block .wrapper .contactus-form .input-group .input {
  margin-top: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.contactus-block .wrapper .contactus-form .input-group + .alert {
  margin-top: 8px;
}
.contactus-block .wrapper .contactus-form .input-group + .alert ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contactus-block .wrapper .contactus-form .consents-block {
  margin-top: 8px;
}
.contactus-block .wrapper .contactus-form .consents-block label {
  display: block;
  font-size: 0.6875em;
  color: #bfb6b6;
}
.contactus-block .wrapper .contactus-form .consents-block label input {
  margin-right: 4px;
}
.contactus-block .wrapper .contactus-form [data-type=radio],
.contactus-block .wrapper .contactus-form [data-type=checkbox] {
  margin-top: 8px;
}
.contactus-block .wrapper .contactus-form [data-type=radio] .radio,
.contactus-block .wrapper .contactus-form [data-type=radio] .checkbox,
.contactus-block .wrapper .contactus-form [data-type=checkbox] .radio,
.contactus-block .wrapper .contactus-form [data-type=checkbox] .checkbox {
  display: block;
}
.contactus-block .wrapper .contactus-form [data-type=radio] .radio input,
.contactus-block .wrapper .contactus-form [data-type=radio] .checkbox input,
.contactus-block .wrapper .contactus-form [data-type=checkbox] .radio input,
.contactus-block .wrapper .contactus-form [data-type=checkbox] .checkbox input {
  margin-right: 4px;
}
.contactus-block .wrapper .contactus-form .select2 {
  margin-top: 8px;
}
.contactus-block .wrapper .contactus-form .select2-selection {
  height: 50px;
  outline: none;
}
.contactus-block .wrapper .contactus-form .select2-selection .select2-selection__rendered,
.contactus-block .wrapper .contactus-form .select2-selection .select2-selection__arrow {
  height: 50px;
}
.contactus-block .wrapper .contactus-form .select2-selection .select2-selection__rendered {
  line-height: 50px;
}
.contactus-block .wrapper .contactus-form .g-recaptcha > div {
  margin: 8px auto 0;
}
.contactus-block .contactus-map {
  margin-top: 32px;
}
.contactus-block .contactus-map #map_canvas {
  width: 100% !important;
}

.faq-page .faq-header {
  padding: 32px 0;
}
@media screen and (min-width: 992px) {
  .faq-page .faq-header {
    padding: 64px 0;
  }
}
.faq-page .faq-header[data-bg=brand] .wrapper .faq-info .heading {
  color: var(--color-white-base, white);
}
.faq-page .faq-header[data-bg=brand] .wrapper .faq-info .paragraph {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.faq-page .faq-header .wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.faq-page .faq-header .wrapper .faq-info {
  max-width: 450px;
}
.faq-page .faq-header .wrapper .faq-info .heading {
  color: var(--brand-base, #022e69);
}
.faq-page .faq-header .wrapper .faq-info .paragraph {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  font-size: var(--font-size-14, 0.875em);
}
.faq-page .faq-header .wrapper .faq-search {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 24px;
}
@media screen and (max-width: 425px) {
  .faq-page .faq-header .wrapper .faq-search {
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
  }
}
@media screen and (min-width: 992px) {
  .faq-page .faq-header .wrapper .faq-search {
    width: calc(100% - 600px);
    margin-top: 0;
  }
}
.faq-page .faq-header .wrapper .faq-search .input {
  -ms-flex-positive: 1;
      flex-grow: 1;
}
.faq-page .faq-header .wrapper .faq-search .button {
  margin-left: 16px;
}
@media screen and (max-width: 425px) {
  .faq-page .faq-header .wrapper .faq-search .button {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
  }
}
.faq-page .faq-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  -ms-flex-align: center;
      align-items: center;
  padding: 64px 15px;
}
.faq-page .faq-content .toggle-item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .faq-page .faq-content .toggle-item {
    width: 90%;
  }
}
@media screen and (min-width: 992px) {
  .faq-page .faq-content .toggle-item {
    width: 65%;
  }
}
.faq-page .faq-content .toggle-item:not(:first-child) {
  margin-top: 24px;
}
.faq-page .faq-content .toggle-item[data-bg=brand] .toggle-header .heading, .faq-page .faq-content .toggle-item[data-bg=brand] .toggle-header .button {
  color: var(--color-white-base, white);
}
.faq-page .faq-content .toggle-item[data-bg=brand] .toggle-content .paragraph {
  color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
}
.faq-page .faq-content .toggle-item .toggle-header {
  padding: 18px 24px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.faq-page .faq-content .toggle-item .toggle-header.is-open .button {
  -ms-transform: rotate(0);
      transform: rotate(0);
}
.faq-page .faq-content .toggle-item .toggle-header.is-open .button:before {
  opacity: 0;
}
.faq-page .faq-content .toggle-item .toggle-header .toggle-title {
  line-height: 1;
  max-width: calc(100% - 40px);
}
.faq-page .faq-content .toggle-item .toggle-header .button {
  background: none;
  box-shadow: none;
  border: none;
  font-size: 22px;
  position: relative;
  -ms-transform: rotate(90deg);
      transform: rotate(90deg);
  transition: 0.2s ease-in-out;
}
.faq-page .faq-content .toggle-item .toggle-header .button:before {
  content: "\f068";
  font-family: "fontAwesome";
  font-size: 22px;
  position: absolute;
  left: -1px;
  top: -1px;
  -ms-transform: rotate(90deg);
      transform: rotate(90deg);
  transition: 0.2s ease-in-out;
}
.faq-page .faq-content .toggle-item .toggle-content {
  border-top: 1px solid rgba(151, 151, 151, 0.23);
  padding: 24px;
  display: none;
}
.faq-page .faq-content .toggle-item .toggle-content .paragraph {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
.faq-page .faq-content .contact-us {
  margin-top: 32px;
  display: block;
  font-size: var(--font-size-14, 0.875em);
}

.custom-content {
  padding-top: 24px;
  padding-bottom: 24px;
}
@media only screen and (min-width: 992px) {
  .custom-content {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.custom-content img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.custom-content h1, .custom-content h2, .custom-content h3, .custom-content h4, .custom-content h5, .custom-content h6 {
  line-height: 1.3;
  color: var(--neutral-base, #3e455e);
  font-family: var(--heading-font, "Rubik");
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.custom-content p, .custom-content span {
  line-height: 1.5;
  color: var(--neutral-base, #3e455e);
  font-family: var(--paragraph-font, "Roboto");
  font-weight: normal;
  margin-bottom: 1rem;
}
.custom-content h1 {
  font-size: var(--font-size-40, 2.5em);
}
.custom-content h2 {
  font-size: var(--font-size-32, 2em);
}
.custom-content h3 {
  font-size: var(--font-size-24, 1.5em);
}
.custom-content h4 {
  font-size: var(--font-size-20, 1.25em);
}
.custom-content h5 {
  font-size: var(--font-size-16, 1em);
}
.custom-content h6 {
  font-size: var(--font-size-14, 0.875em);
}
.custom-content a {
  line-height: 1.25;
  color: var(--link-base, #3ebaf6);
  transition: 0.2s ease-in-out;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.custom-content a:hover {
  color: var(--link-base, #3ebaf6);
  border-color: var(--link-base, #3ebaf6);
  text-decoration: none;
}
.custom-content a:focus, .custom-content a:active {
  color: var(--link-dark, rgb(43.4, 130.2, 172.2));
  border-color: var(--link-dark, rgb(43.4, 130.2, 172.2));
  text-decoration: none;
}
.custom-content blockquote {
  border-left: 5px solid #ccc;
  padding: 2px 8px 2px 20px;
  font-style: italic;
}
.custom-content ul > li {
  margin-bottom: 8px;
}
.custom-content ul > li > p {
  margin-bottom: 0;
}

.custom-content.built .container {
  max-width: 360px;
}
.custom-content.built img, .custom-content.built h1, .custom-content.built blockquote {
  padding: 16px 0;
}
.custom-content.built p, .custom-content.built ul, .custom-content.built iframe {
  padding: 8px 0;
}
.custom-content.built img {
  margin: auto;
}
.custom-content.built h1 {
  font-size: var(--font-size-24, 1.5em);
  font-weight: 600;
  margin: 0;
}
.custom-content.built iframe {
  width: 100%;
  height: auto;
  border: none;
  border-radius: 8px;
}
.custom-content.built ul {
  padding-left: 40px;
}
.custom-content.built blockquote {
  padding-left: 10px;
  border-left: 2px solid #ccc;
}

.results-header {
  border-bottom: 1px solid rgba(151, 151, 151, 0.62);
  padding: 24px 0;
}
.results-header .results-breadcrumb .breadcrumb-item {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  text-decoration: none;
  transition: 0.2s ease-in-out;
}
.results-header .results-breadcrumb .breadcrumb-item:not(:last-child):after {
  content: ">";
  margin-left: 4px;
}
.results-header .results-breadcrumb .breadcrumb-item:hover {
  color: var(--neutral-base, #3e455e);
}
.results-header .results-title {
  margin-top: 16px;
}
.results-header img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--border-radius, 3px);
}

.results-body {
  padding-top: 32px;
  background: var(--neutral-transp-5, rgba(62, 69, 94, 0.05));
}
.results-body .wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
}
.results-body .results-sidebar {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .results-body .results-sidebar {
    width: 25%;
  }
}
.results-body .results-sidebar .sidebar-wrapper {
  display: none;
  margin-bottom: 48px;
}
@media screen and (min-width: 992px) {
  .results-body .results-sidebar .sidebar-wrapper {
    display: block;
  }
}
.results-body .results-sidebar .sidebar-item {
  border: 1px solid var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
  border-radius: 3px;
  background: white;
}
.results-body .results-sidebar .sidebar-item:not(:first-child) {
  margin-top: 16px;
}
.results-body .results-sidebar .sidebar-item + .banner {
  margin-top: 24px;
  display: none;
}
@media screen and (min-width: 1200px) {
  .results-body .results-sidebar .sidebar-item + .banner {
    display: -ms-flexbox;
    display: flex;
  }
}
.results-body .results-sidebar .sidebar-item .item-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  padding: 8px;
  cursor: pointer;
}
.results-body .results-sidebar .sidebar-item .item-header.is-closed .item-title .item-attr,
.results-body .results-sidebar .sidebar-item .item-header.is-closed .item-title .item-badge {
  display: inline-block;
}
.results-body .results-sidebar .sidebar-item .item-header .item-title {
  color: var(--neutral-base, #3e455e);
}
.results-body .results-sidebar .sidebar-item .item-header .item-title .item-attr,
.results-body .results-sidebar .sidebar-item .item-header .item-title .item-badge {
  font-size: inherit;
  font-style: italic;
  text-transform: capitalize;
  display: inline-block;
}
@media screen and (min-width: 1200px) {
  .results-body .results-sidebar .sidebar-item .item-header .item-title .item-attr,
  .results-body .results-sidebar .sidebar-item .item-header .item-title .item-badge {
    display: none;
  }
}
.results-body .results-sidebar .sidebar-item .item-header .item-title .item-badge {
  border-radius: 10px;
  border: 1px solid var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
  padding: 2px 10px;
  line-height: 1;
  font-style: normal;
}
.results-body .results-sidebar .sidebar-item .item-body {
  border-top: 1px solid var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
  display: none;
}
@media screen and (min-width: 1200px) {
  .results-body .results-sidebar .sidebar-item .item-body {
    display: block;
  }
}
.results-body .results-sidebar .sidebar-item .item-body .category-item .category-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  padding: 8px 8px 8px 26px;
  position: relative;
  transition: 0.2s ease-in-out;
}
.results-body .results-sidebar .sidebar-item .item-body .category-item .category-header:hover {
  background: var(--color-black-transp-5, rgba(0, 0, 0, 0.05));
}
.results-body .results-sidebar .sidebar-item .item-body .category-item .category-header .subcategory-toggler {
  position: absolute;
  left: 8px;
  background: none;
  color: var(--highlight-base, #137df7);
}
.results-body .results-sidebar .sidebar-item .item-body .category-item .category-link {
  text-decoration: none;
  color: var(--neutral-base, #3e455e);
  max-width: calc(100% - 40px);
}
.results-body .results-sidebar .sidebar-item .item-body .category-item .category-count {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  vertical-align: baseline;
  white-space: nowrap;
  text-align: center;
  background-color: var(--brand-base, #022e69);
  border-radius: 10px;
}
.results-body .results-sidebar .sidebar-item .item-body .category-item .category-subcategory {
  display: none;
}
.results-body .results-sidebar .sidebar-item .item-body .category-item .category-subcategory .category-item .category-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  padding: 8px 8px 8px 38px;
  transition: 0.2s ease-in-out;
}
.results-body .results-sidebar .sidebar-item .item-body .category-item .category-subcategory .category-item .category-header:hover {
  background: var(--color-black-transp-5, rgba(0, 0, 0, 0.05));
}
.results-body .results-sidebar .sidebar-item .item-body .category-item.custom-item-datepicker {
  padding: 8px 26px;
  background: var(--color-black-transp-5, rgba(0, 0, 0, 0.05));
}
.results-body .results-sidebar .sidebar-item .item-body .category-item.custom-item-datepicker .form-group {
  display: -ms-flexbox;
  display: flex;
}
.results-body .results-sidebar .sidebar-item .item-body .category-item.custom-item-datepicker .form-group .input {
  width: 100%;
  min-height: 40px;
  height: 40px;
}
@supports (-moz-appearance: none) {
  .results-body .results-sidebar .sidebar-item .item-body .category-item.custom-item-datepicker .form-group .input {
    width: 92.5px;
  }
  @media screen and (min-width: 768px) {
    .results-body .results-sidebar .sidebar-item .item-body .category-item.custom-item-datepicker .form-group .input {
      width: 100%;
    }
  }
  @media screen and (min-width: 1200px) {
    .results-body .results-sidebar .sidebar-item .item-body .category-item.custom-item-datepicker .form-group .input {
      width: 92.5px;
    }
  }
}
.results-body .results-sidebar .sidebar-item .item-body .category-item.custom-item-datepicker .form-group .input:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.results-body .results-sidebar .sidebar-item .item-body .category-item.custom-item-datepicker .form-group .input:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.results-body .results-sidebar .sidebar-item .item-body .category-item.custom-item-datepicker .form-group .attr {
  background: #ccc;
  border-radius: 0;
  line-height: 40px;
  text-align: center;
  padding: 0 15px;
  text-align: center;
}
.results-body .results-sidebar .sidebar-item .item-body .category-item.custom-item-datepicker .button {
  margin-top: 8px;
}
.results-body .results-sidebar .sidebar-item .item-body .category-item[is-selected=true] .category-header {
  background: var(--color-black-transp-5, rgba(0, 0, 0, 0.05));
}
.results-body .results-sidebar .sidebar-item .item-body .category-item[is-selected=true] .category-header .category-link:after {
  content: "\f00c";
  font-family: "fontAwesome";
  margin-left: 4px;
  color: var(--highlight-base, #137df7);
}
.results-body .results-content {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .results-body .results-content {
    width: calc(75% - 32px);
  }
}
.results-body .results-content .results-actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  border-bottom: 1px solid rgba(151, 151, 151, 0.62);
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.results-body .results-content .relevance-filters {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .results-body .results-content .relevance-filters {
    width: auto;
  }
}
.results-body .results-content .relevance-filters .select2 {
  width: 100% !important;
}
@media screen and (min-width: 768px) {
  .results-body .results-content .relevance-filters .select2 {
    width: 200px !important;
  }
}
.results-body .results-content .relevance-filters .select2 .select2-selection {
  height: 40px;
  outline: none;
}
.results-body .results-content .relevance-filters .select2 .select2-selection__rendered {
  height: 40px;
  line-height: 40px;
}
.results-body .results-content .relevance-filters .select2 .select2-selection__arrow {
  height: 40px;
}
.results-body .results-content .results-type {
  margin-top: 16px;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .results-body .results-content .results-type {
    margin-top: 0;
    width: auto;
  }
}
.results-body .results-content .results-type .button {
  height: 40px;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
.results-body .results-content .results-type .button:not(:first-child) {
  margin-left: 4px;
}
.results-body .results-content .results-type .button.is-selected {
  background: var(--brand-base, #022e69);
  color: white;
  opacity: 1;
}
.results-body .results-content .results-type .button:hover, .results-body .results-content .results-type .button:focus {
  opacity: 1;
}
.results-body .results-content .results-type .button[data-type=list-view] {
  display: none;
}
@media screen and (min-width: 768px) {
  .results-body .results-content .results-type .button[data-type=list-view] {
    display: inline-block;
  }
}
.results-body .results-content .results-type .refine-button {
  display: inline-block;
}
@media screen and (min-width: 1200px) {
  .results-body .results-content .results-type .refine-button {
    display: none;
  }
}
.results-body .results-content .categories-dropdown {
  position: relative;
  display: inline-block;
}
.results-body .results-content .categories-dropdown .categories-dropdown-toggle {
  text-decoration: none;
  border-bottom: none;
  cursor: pointer;
}
.results-body .results-content .categories-dropdown .categories-dropdown-content {
  position: absolute;
  width: 178px;
  background: #f5f6f7;
  padding: 8px;
  border-radius: 3px;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  margin-top: 16px;
  text-align: center;
  display: none;
  z-index: 5000;
}
.results-body .results-content .categories-dropdown .categories-dropdown-content:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: white;
  top: -5px;
  left: 50%;
  -ms-transform: translateX(-50%) rotate(45deg);
      transform: translateX(-50%) rotate(45deg);
}
.results-body .results-content .summary-list {
  transition: 0.2s ease-in-out;
  margin-bottom: 32px;
}
.results-body .results-content .summary-list[list-type=list-view].is-active {
  display: block;
}
.results-body .results-content .summary-list[list-type=grid-view] {
  display: none;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
}
.results-body .results-content .summary-list[list-type=grid-view].is-active {
  display: -ms-flexbox;
  display: flex;
}
.results-body .results-content .summary-list[list-type=grid-view] .summary-item {
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
@supports (-ms-ime-align: auto) {
  .results-body .results-content .summary-list[list-type=grid-view] .summary-item {
    width: calc(100% - 16px - 0.1px);
  }
}
.results-body .results-content .summary-list[list-type=grid-view] .summary-item {
  width: calc(100% - 16px);
}
@media screen and (min-width: 768px) {
  @supports (-ms-ime-align: auto) {
    .results-body .results-content .summary-list[list-type=grid-view] .summary-item {
      width: calc(50% - 16px - 0.1px);
    }
  }
  .results-body .results-content .summary-list[list-type=grid-view] .summary-item {
    width: calc(50% - 16px);
  }
}
@media screen and (min-width: 992px) {
  @supports (-ms-ime-align: auto) {
    .results-body .results-content .summary-list[list-type=grid-view] .summary-item {
      width: calc(33.3333333333% - 16px - 0.1px);
    }
  }
  .results-body .results-content .summary-list[list-type=grid-view] .summary-item {
    width: calc(33.3333333333% - 16px);
  }
}
.results-body .results-content .summary-list[list-type=grid-view] .summary-item .summary-content {
  width: 100%;
  border-right: none;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  padding-right: 0;
}
.results-body .results-content .summary-list[list-type=grid-view] .summary-item .summary-content .summary-categories-grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.results-body .results-content .summary-list[list-type=grid-view] .summary-item .summary-content .summary-categories-grid.no-categories {
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.results-body .results-content .summary-list[list-type=grid-view] .summary-item .summary-content .summary-categories-grid .categories-list {
  max-width: calc(100% - 104px);
}
.results-body .results-content .summary-list[list-type=grid-view] .summary-item .summary-content .summary-categories-grid .summary-grid-actions {
  background: var(--color-black-transp-50, rgba(0, 0, 0, 0.5));
  line-height: 1;
  padding: 8px;
  border-radius: var(--border-radius-icon, 3px);
}
.results-body .results-content .summary-list[list-type=grid-view] .summary-item .summary-content .summary-categories-grid .summary-grid-actions .picture-title-actions,
.results-body .results-content .summary-list[list-type=grid-view] .summary-item .summary-content .summary-categories-grid .summary-grid-actions .title-actions {
  color: white;
  line-height: 1;
  transition: 0.2s ease-in-out;
}
.results-body .results-content .summary-list[list-type=grid-view] .summary-item .summary-content .summary-categories-grid .summary-grid-actions .picture-title-actions:not(:first-child),
.results-body .results-content .summary-list[list-type=grid-view] .summary-item .summary-content .summary-categories-grid .summary-grid-actions .title-actions:not(:first-child) {
  margin-left: 8px;
}
.results-body .results-content .summary-list[list-type=grid-view] .summary-item .summary-content .summary-attrs {
  width: 100%;
  margin-top: 16px;
}
.results-body .results-content .summary-list[list-type=grid-view] .summary-item .summary-content .summary-attrs .summary-picture {
  display: none;
}
.results-body .results-content .summary-list[list-type=grid-view] .summary-item .summary-content .summary-attrs .summary-picture-grid {
  display: block;
}
.results-body .results-content .summary-list[list-type=grid-view] .summary-item .summary-content .summary-attrs .summary-picture-grid img {
  width: 100% !important;
}
.results-body .results-content .summary-list[list-type=grid-view] .summary-item .summary-content .summary-info {
  width: 100%;
  max-width: 100%;
  margin-top: 16px;
}
.results-body .results-content .summary-list[list-type=grid-view] .summary-item .summary-content .summary-info .summary-categories {
  display: none;
}
.results-body .results-content .summary-list[list-type=grid-view] .summary-item .summary-content .summary-info .summary-title {
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
}
.results-body .results-content .summary-list[list-type=grid-view] .summary-item .summary-content .summary-info .summary-title .title {
  max-width: 100%;
}
.results-body .results-content .summary-list[list-type=grid-view] .summary-item .summary-content .summary-info .summary-title .actions {
  display: none;
}
.results-body .results-content .summary-list[list-type=grid-view] .summary-item .summary-content .summary-info .summary-contact-grid {
  margin-top: 8px;
  display: block;
}
.results-body .results-content .summary-list[list-type=grid-view] .summary-item .summary-content .summary-info .summary-contact-grid .summary-phone {
  text-decoration: none;
  color: var(--neutral-base, #3e455e);
}
.results-body .results-content .summary-list[list-type=grid-view] .summary-item .summary-content .summary-info .summary-contact-grid .summary-additional-phone a {
  text-decoration: none;
  color: var(--neutral-base, #3e455e);
}
.results-body .results-content .summary-list[list-type=grid-view] .summary-item .summary-additional {
  width: 100%;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
}
.results-body .results-content .summary-list[list-type=grid-view] .summary-item .summary-additional .summary-contact {
  display: none;
  word-break: break-word;
}
.results-body .results-content .summary-list[list-type=grid-view] .summary-item[data-type=listing] .summary-additional {
  display: none;
}
.results-body .results-content .summary-list .summary-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 16px;
  margin-bottom: 16px;
  border-radius: 3px;
  background: white;
  border: 1px solid var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  transition: 0.2s ease-in-out;
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-left: 16px;
}
@media screen and (min-width: 768px) {
  .results-body .results-content .summary-list .summary-item {
    width: auto;
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
  }
}
@media screen and (min-width: 992px) {
  .results-body .results-content .summary-list .summary-item {
    overflow: inherit;
  }
}
.results-body .results-content .summary-list .summary-item:hover .summary-picture img {
  -ms-transform: scale(1.05);
      transform: scale(1.05);
}
.results-body .results-content .summary-list .summary-item .share-icon {
  position: relative;
  cursor: pointer;
  display: inline-block;
  z-index: 50;
}
.results-body .results-content .summary-list .summary-item .share-icon .share-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  background: var(--color-white-dark-5, rgb(242.25, 242.25, 242.25));
  padding: 8px;
  line-height: 1;
  border-radius: 3px;
  margin: 8px 0 0 0;
  display: none;
  min-height: auto;
  min-width: 85px;
}
.results-body .results-content .summary-list .summary-item .share-icon .share-dropdown:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: -5px;
  left: 50%;
  -ms-transform: translateX(-50%) rotate(45deg);
      transform: translateX(-50%) rotate(45deg);
  background: var(--color-white-dark-5, rgb(242.25, 242.25, 242.25));
}
.results-body .results-content .summary-list .summary-item .share-icon .share-dropdown .social-likes__widget {
  margin: 0;
  transition: 0.2s ease-in-out;
  text-align: center;
}
.results-body .results-content .summary-list .summary-item .share-icon .share-dropdown .social-likes__widget.social-likes__widget_twitter:hover {
  background-color: #f5f5f5;
  border-color: #ccc;
}
.results-body .results-content .summary-list .summary-item .share-icon .share-dropdown .social-likes__widget svg {
  width: 18px;
  -ms-transform: translate(-2px, -1px);
      transform: translate(-2px, -1px);
}
.results-body .results-content .summary-list .summary-item .share-icon .share-dropdown .social-likes__widget {
  /*
  width: 100%;

  &:not(:first-child){
      margin: 8px 0 0 0;
  }
  */
}
.results-body .results-content .summary-list .summary-item .share-icon .social-likes__button {
  /*
  display: flex;
  padding: 2px 4px;
  */
  padding: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
}
.results-body .results-content .summary-list .summary-item .share-icon .social-likes__button .social-likes__icon {
  display: none;
}
.results-body .results-content .summary-list .summary-item .share-icon .social-likes__button .social-likes__icon_whatsapp {
  display: none;
}
.results-body .results-content .summary-list .summary-item .share-icon .social-likes__widget_whatsapp {
  display: block;
}
@media screen and (min-width: 992px) {
  .results-body .results-content .summary-list .summary-item .share-icon .social-likes__widget_whatsapp {
    display: none;
  }
}
.results-body .results-content .summary-list .summary-item .share-dropdown-mobile {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  background: rgba(0, 0, 0, 0.8);
  padding: 8px;
  transition: 0.4s ease-in-out;
  z-index: 50000;
  margin: 0;
  min-height: auto;
  line-height: 1;
}
@media screen and (min-width: 992px) {
  .results-body .results-content .summary-list .summary-item .share-dropdown-mobile {
    display: none;
  }
}
.results-body .results-content .summary-list .summary-item .share-dropdown-mobile.is-open {
  left: 0;
}
.results-body .results-content .summary-list .summary-item .share-dropdown-mobile .close-share {
  position: absolute;
  right: 16px;
  top: 16px;
  color: white;
  display: block;
  line-height: 1;
  padding: 0;
  font-size: 28px;
  z-index: 5;
  outline: none;
  background: none;
  border: none;
}
.results-body .results-content .summary-list .summary-item .share-dropdown-mobile .social-likes__widget {
  margin: 0;
  display: block;
  line-height: 1;
  transition: 0.2s ease-in-out;
}
.results-body .results-content .summary-list .summary-item .share-dropdown-mobile .social-likes__widget:not(:first-child) {
  margin-left: 24px;
}
.results-body .results-content .summary-list .summary-item .share-dropdown-mobile .social-likes__widget:active.social-likes__widget_whatsapp, .results-body .results-content .summary-list .summary-item .share-dropdown-mobile .social-likes__widget:focus.social-likes__widget_whatsapp, .results-body .results-content .summary-list .summary-item .share-dropdown-mobile .social-likes__widget:hover.social-likes__widget_whatsapp {
  background: #25D366;
  border-color: #25D366;
}
.results-body .results-content .summary-list .summary-item .share-dropdown-mobile .social-likes__widget:active.social-likes__widget_whatsapp .social-likes__button, .results-body .results-content .summary-list .summary-item .share-dropdown-mobile .social-likes__widget:focus.social-likes__widget_whatsapp .social-likes__button, .results-body .results-content .summary-list .summary-item .share-dropdown-mobile .social-likes__widget:hover.social-likes__widget_whatsapp .social-likes__button {
  color: var(--color-white-base, white);
}
.results-body .results-content .summary-list .summary-item .share-dropdown-mobile .social-likes__widget:active.social-likes__widget_twitter, .results-body .results-content .summary-list .summary-item .share-dropdown-mobile .social-likes__widget:focus.social-likes__widget_twitter, .results-body .results-content .summary-list .summary-item .share-dropdown-mobile .social-likes__widget:hover.social-likes__widget_twitter {
  background-color: #f5f5f5;
  border-color: #ccc;
}
.results-body .results-content .summary-list .summary-item .share-dropdown-mobile .social-likes__widget svg {
  width: 34px;
}
.results-body .results-content .summary-list .summary-item .share-dropdown-mobile .social-likes__widget .social-likes__button {
  padding: 0;
  display: block;
  line-height: 1;
  font-size: 32px;
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 48px;
}
.results-body .results-content .summary-list .summary-item .share-dropdown-mobile .social-likes__widget .social-likes__button:before {
  display: none;
}
.results-body .results-content .summary-list .summary-item .share-dropdown-mobile .social-likes__widget .social-likes__button .social-likes__icon {
  display: none;
}
.results-body .results-content .summary-list .summary-item .summary-content {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
}
@media screen and (min-width: 768px) {
  .results-body .results-content .summary-list .summary-item .summary-content {
    width: 75%;
    padding-right: 24px;
    border-right: 1px solid rgba(151, 151, 151, 0.62);
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
  .results-body .results-content .summary-list .summary-item .summary-content.deal-without-price {
    width: 100%;
    border-right: none;
  }
}
.results-body .results-content .summary-list .summary-item .summary-content .summary-categories-grid {
  display: none;
}
.results-body .results-content .summary-list .summary-item .summary-content .summary-attrs {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .results-body .results-content .summary-list .summary-item .summary-content .summary-attrs {
    width: 186px;
  }
}
.results-body .results-content .summary-list .summary-item .summary-content .summary-attrs.no-image {
  display: none;
}
@media screen and (min-width: 768px) {
  .results-body .results-content .summary-list .summary-item .summary-content .summary-attrs.no-image + .summary-info {
    width: 100%;
    max-width: 100%;
  }
}
.results-body .results-content .summary-list .summary-item .summary-content .summary-attrs.no-image + .summary-info .summary-claim-noimage {
  display: inline-block;
}
.results-body .results-content .summary-list .summary-item .summary-content .summary-attrs .summary-categories {
  margin-bottom: 8px;
  display: none;
}
.results-body .results-content .summary-list .summary-item .summary-content .summary-attrs .summary-picture {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius, 3px);
}
.results-body .results-content .summary-list .summary-item .summary-content .summary-attrs .summary-picture img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: 0.2s ease-in-out;
}
@media screen and (min-width: 768px) {
  .results-body .results-content .summary-list .summary-item .summary-content .summary-attrs .summary-picture img {
    width: auto;
    height: auto;
  }
}
.results-body .results-content .summary-list .summary-item .summary-content .summary-attrs .summary-picture-grid {
  position: relative;
  display: none;
}
.results-body .results-content .summary-list .summary-item .summary-content .summary-attrs .summary-picture-grid .summary-picture-link {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius, 3px);
}
.results-body .results-content .summary-list .summary-item .summary-content .summary-attrs .summary-picture-grid .summary-picture-link img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .results-body .results-content .summary-list .summary-item .summary-content .summary-attrs .summary-picture-grid .summary-picture-link img {
    width: auto;
  }
}
.results-body .results-content .summary-list .summary-item .summary-content .summary-attrs .summary-claim {
  margin-top: 8px;
  text-align: center;
}
.results-body .results-content .summary-list .summary-item .summary-content .summary-info {
  width: 100%;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .results-body .results-content .summary-list .summary-item .summary-content .summary-info {
    max-width: calc(100% - 216px);
    margin-top: 0;
  }
}
.results-body .results-content .summary-list .summary-item .summary-content .summary-info .summary-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.results-body .results-content .summary-list .summary-item .summary-content .summary-info .summary-title .title {
  text-decoration: none;
  color: var(--neutral-base, #3e455e);
  max-width: calc(100% - 104px);
}
.results-body .results-content .summary-list .summary-item .summary-content .summary-info .summary-title .actions {
  font-size: 1.125em;
  margin-left: 16px;
}
.results-body .results-content .summary-list .summary-item .summary-content .summary-info .summary-title .actions .title-actions, .results-body .results-content .summary-list .summary-item .summary-content .summary-info .summary-title .actions .picture-title-actions {
  color: var(--highlight-base, #137df7);
  transition: 0.2s ease-in-out;
}
.results-body .results-content .summary-list .summary-item .summary-content .summary-info .summary-title .actions .title-actions:not(:first-child), .results-body .results-content .summary-list .summary-item .summary-content .summary-info .summary-title .actions .picture-title-actions:not(:first-child) {
  margin-left: 4px;
}
.results-body .results-content .summary-list .summary-item .summary-content .summary-info .summary-address {
  font-size: 1em;
  margin-bottom: 0;
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
  margin-top: 8px;
}
.results-body .results-content .summary-list .summary-item .summary-content .summary-info .summary-distance {
  margin-top: 8px;
  font-size: var(--font-size-14, 0.875em);
  color: var(--neutral-base, #3e455e);
}
.results-body .results-content .summary-list .summary-item .summary-content .summary-info .summary-contact-grid {
  display: none;
}
.results-body .results-content .summary-list .summary-item .summary-content .summary-info .summary-description {
  margin-top: 16px;
  font-size: 0.875em;
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}
.results-body .results-content .summary-list .summary-item .summary-content .summary-info .summary-claim-noimage {
  margin-top: 8px;
  display: none;
}
.results-body .results-content .summary-list .summary-item .summary-additional {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .results-body .results-content .summary-list .summary-item .summary-additional {
    width: calc(25% - 24px);
    margin-top: 0;
  }
}
.results-body .results-content .summary-list .summary-item .summary-additional .summary-date span {
  text-align: center;
  display: block;
}
.results-body .results-content .summary-list .summary-item .summary-additional .summary-date .label-when {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
  font-weight: bold;
  line-height: 1;
}
.results-body .results-content .summary-list .summary-item .summary-additional .summary-date .date-recurring {
  color: var(--neutral-base, #3e455e);
  font-size: 1.125em;
  line-height: 1.3;
  margin-top: 8px;
}
.results-body .results-content .summary-list .summary-item .summary-additional .summary-date .date-now {
  color: var(--neutral-base, #3e455e);
  margin-top: 8px;
  text-transform: uppercase;
  font-size: 1.5em;
  font-weight: bold;
}
.results-body .results-content .summary-list .summary-item .summary-additional .summary-date .date-interval {
  margin-top: 8px;
  line-height: 1;
  color: var(--neutral-base, #3e455e);
}
.results-body .results-content .summary-list .summary-item .summary-additional .summary-date .date-interval:not(:first-child) {
  margin-top: 0;
  margin-top: 4px;
}
.results-body .results-content .summary-list .summary-item .summary-additional .summary-date .date-interval strong {
  margin-top: 4px;
  display: block;
}
.results-body .results-content .summary-list .summary-item .summary-additional .summary-date .date-hours {
  color: var(--neutral-base, #3e455e);
  font-weight: bold;
  margin-top: 8px;
}
.results-body .results-content .summary-list .summary-item .summary-additional .summary-rating {
  text-align: center;
}
.results-body .results-content .summary-list .summary-item .summary-additional .summary-rating .rate {
  display: block;
  line-height: 1;
}
.results-body .results-content .summary-list .summary-item .summary-additional .summary-rating .rate:after {
  font-family: "fontAwesome";
  font-size: 1.5em;
  color: var(--badge-base, #ffc800);
}
.results-body .results-content .summary-list .summary-item .summary-additional .summary-rating .rate.rate-5:after {
  content: "\f005" "\f005" "\f005" "\f005" "\f005";
}
.results-body .results-content .summary-list .summary-item .summary-additional .summary-rating .rate.rate-4:after {
  content: "\f005" "\f005" "\f005" "\f005" "\f006";
}
.results-body .results-content .summary-list .summary-item .summary-additional .summary-rating .rate.rate-3:after {
  content: "\f005" "\f005" "\f005" "\f006" "\f006";
}
.results-body .results-content .summary-list .summary-item .summary-additional .summary-rating .rate.rate-2:after {
  content: "\f005" "\f005" "\f006" "\f006" "\f006";
}
.results-body .results-content .summary-list .summary-item .summary-additional .summary-rating .rate.rate-1:after {
  content: "\f005" "\f006" "\f006" "\f006" "\f006";
}
.results-body .results-content .summary-list .summary-item .summary-additional .summary-rating .rate.rate-0:after {
  content: "\f006" "\f006" "\f006" "\f006" "\f006";
}
.results-body .results-content .summary-list .summary-item .summary-additional .summary-rating .button {
  margin-top: 16px;
}
.results-body .results-content .summary-list .summary-item .summary-additional .summary-price, .results-body .results-content .summary-list .summary-item .summary-additional .summary-off-price {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: end;
      align-items: flex-end;
  line-height: 1;
}
.results-body .results-content .summary-list .summary-item .summary-additional .summary-price .price-currency, .results-body .results-content .summary-list .summary-item .summary-additional .summary-off-price .price-currency {
  font-weight: bold;
}
.results-body .results-content .summary-list .summary-item .summary-additional .summary-price .price-decimal, .results-body .results-content .summary-list .summary-item .summary-additional .summary-off-price .price-decimal {
  font-size: 80%;
}
.results-body .results-content .summary-list .summary-item .summary-additional .summary-price {
  font-size: var(--font-size-24, 1.5em);
}
.results-body .results-content .summary-list .summary-item .summary-additional .summary-off-price {
  font-size: var(--font-size-20, 1.25em);
  text-decoration: line-through;
}
.results-body .results-content .summary-list .summary-item .summary-additional .summary-off-price + .summary-price {
  margin-top: 8px;
}
.results-body .results-content .summary-list .summary-item .summary-additional .summary-contact {
  text-align: center;
  margin-top: 16px;
  word-break: break-word;
}
.results-body .results-content .summary-list .summary-item .summary-additional .summary-phone {
  text-decoration: none;
  color: var(--neutral-base, #3e455e);
}
.results-body .results-content .summary-list .summary-item .summary-additional .summary-additional-phone a {
  text-decoration: none;
  color: var(--neutral-base, #3e455e);
}
.results-body .results-content .summary-list .summary-item .summary-additional .summary-badges {
  text-align: center;
}
.results-body .results-content .summary-list .summary-item .summary-additional .summary-badges .item-badge {
  display: inline-block;
  margin-right: 8px;
  margin-top: 16px;
}
.results-body .results-content .summary-list .summary-item .summary-additional .summary-actions {
  margin-top: 16px;
  text-align: center;
}
.results-body .results-content .summary-list .summary-item .summary-additional .summary-actions .button:not(:first-child) {
  margin-top: 8px;
}
.results-body .results-content .summary-list .summary-item[data-type=article] .summary-content {
  width: 100%;
  border-right: none;
}
.results-body .results-content .summary-list .summary-item[data-type=blog] .summary-content {
  width: 100%;
  border-right: none;
}
.results-body .results-content .summary-list-map {
  display: none;
}
.results-body .results-content .summary-list-map.is-active {
  display: block;
  margin-bottom: 24px;
}
.results-body .results-content .summary-list-map #map_canvas {
  width: 100% !important;
  height: 500px !important;
}
.results-body .results-content .results-pagination {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  margin: 48px 0;
}
.results-body .results-content .results-pagination .item-pagination {
  width: 30px;
  height: 30px;
  background: var(--neutral-transp-10, rgba(62, 69, 94, 0.1));
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  border-radius: var(--border-radius-icon, 3px);
  margin-left: 4px;
  color: var(--neutral-base, #3e455e);
  border: 1px solid transparent;
  transition: 0.2s ease-in-out;
  text-decoration: none;
}
.results-body .results-content .results-pagination .item-pagination:first-child {
  margin-left: 0;
}
.results-body .results-content .results-pagination .item-pagination:hover {
  background: transparent;
  color: var(--highlight-base, #137df7);
  border-color: var(--highlight-base, #137df7);
}
.results-body .results-content .results-pagination .item-pagination.is-selected {
  background: var(--highlight-base, #137df7);
  color: white;
}
.results-body[data-align=right] .results-sidebar .banner {
  display: none;
}
@media screen and (min-width: 1200px) {
  .results-body[data-align=right] .results-sidebar {
    -ms-flex-order: 2;
        order: 2;
  }
  .results-body[data-align=right] .results-sidebar .banner {
    display: -ms-flexbox;
    display: flex;
  }
  .results-body[data-align=right] .results-content {
    -ms-flex-order: 1;
        order: 1;
  }
  .results-body[data-align=right] .results-content .results-actions .relevance-filters {
    -ms-flex-order: 2;
        order: 2;
  }
  .results-body[data-align=right] .results-content .results-actions .results-type {
    -ms-flex-order: 1;
        order: 1;
  }
}

.gm-style-iw {
  max-width: 250px;
}

.gm-style .gm-style-iw-c {
  min-width: 210px !important;
}

.summary-map-info .map-info-distance strong {
  font-weight: bold;
}
.summary-map-info .map-info-rating {
  margin-top: 8px;
}
.summary-map-info .map-info-rating .rate {
  display: block;
  line-height: 1;
}
.summary-map-info .map-info-rating .rate:after {
  font-family: "fontAwesome";
  font-size: 1.5em;
  color: var(--badge-base, #ffc800);
}
.summary-map-info .map-info-rating .rate.rate-5:after {
  content: "\f005" "\f005" "\f005" "\f005" "\f005";
}
.summary-map-info .map-info-rating .rate.rate-4:after {
  content: "\f005" "\f005" "\f005" "\f005" "\f006";
}
.summary-map-info .map-info-rating .rate.rate-3:after {
  content: "\f005" "\f005" "\f005" "\f006" "\f006";
}
.summary-map-info .map-info-rating .rate.rate-2:after {
  content: "\f005" "\f005" "\f006" "\f006" "\f006";
}
.summary-map-info .map-info-rating .rate.rate-1:after {
  content: "\f005" "\f006" "\f006" "\f006" "\f006";
}
.summary-map-info .map-info-rating .rate.rate-0:after {
  content: "\f006" "\f006" "\f006" "\f006" "\f006";
}
.summary-map-info .map-info-rating .button {
  margin-top: 16px;
}
.summary-map-info .map-info-open-time {
  margin-top: 8px;
  font-size: var(--font-size-20, 1.25em);
  font-weight: bold;
}
.summary-map-info .map-info-open-time[data-status-time=open-now] {
  color: var(--success-base, #6cbf13);
}
.summary-map-info .map-info-open-time[data-status-time=closing-soon] {
  color: var(--attention-base, #ffae00);
}
.summary-map-info .map-info-open-time[data-status-time=closing-soon] span {
  font-weight: 300;
}
.summary-map-info .map-info-open-time[data-status-time=closed-today], .summary-map-info .map-info-open-time[data-status-time=open-at], .summary-map-info .map-info-open-time[data-status-time=closed-now] {
  color: var(--warning-base, #fc5353);
}
.summary-map-info .map-info-date {
  margin-top: 8px;
  font-size: var(--font-size-18, 1.125em);
}
.summary-map-info .map-info-price {
  margin-top: 8px;
}
.summary-map-info .map-info-price mark {
  background: none;
  font-style: normal;
}
.summary-map-info .map-info-price mark em {
  font-style: normal;
}
.summary-map-info .map-info-price .info-price-free,
.summary-map-info .map-info-price .info-price-value {
  font-size: 1.5em;
  font-weight: bold;
}
.summary-map-info .map-info-price .info-price-offprice {
  text-decoration: line-through;
  font-size: 1.125em;
}
.summary-map-info .map-info-contact {
  margin-top: 8px;
}

.marker-cluster-custom {
  background-color: #137df7;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  border: 2px solid white;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
}

.leaflet-control-attribution a svg.leaflet-attribution-flag {
  display: none !important;
}

.highlight {
  padding-top: 24px;
  padding-bottom: 24px;
}
@media screen and (min-width: 992px) {
  .highlight {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.highlight .highlights-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.highlight .highlights-list .card {
  display: -ms-flexbox;
  display: flex;
  border-radius: var(--border-radius, 3px);
  overflow: hidden;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 100%;
  max-height: initial;
  -ms-flex-positive: 0;
      flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media screen and (min-width: 992px) {
  .highlight .highlights-list .card {
    -ms-flex-direction: row;
        flex-direction: row;
    max-height: 452px;
  }
}
.highlight .highlights-list .card .image-area {
  width: 100%;
  background-color: var(--color-white-base, white);
}
@media screen and (min-width: 992px) {
  .highlight .highlights-list .card .image-area {
    width: 50%;
  }
}
.highlight .highlights-list .card .image-area img {
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: cover;
  display: block;
}
.highlight .highlights-list .card .content-area {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  padding: 24px 16px;
  border: 1px solid #e1e2e6;
  border-radius: 0 0 var(--border-radius, 3px) var(--border-radius, 3px);
  background-color: var(--color-white-base, white);
}
@media screen and (min-width: 992px) {
  .highlight .highlights-list .card .content-area {
    border-left: none;
    width: 50%;
    border-radius: 0 var(--border-radius, 3px) var(--border-radius, 3px) 0;
  }
}
@media screen and (min-width: 1200px) {
  .highlight .highlights-list .card .content-area {
    padding: 48px 40px;
  }
}
.highlight .highlights-list .card .content-area .content h4 {
  font-size: var(--font-size-20, 1.25em);
  margin-bottom: 24px;
}
.highlight .highlights-list .card .content-area .content p {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  font-weight: 400;
  margin: 0;
}
.highlight[highlight-layout=card] .highlights-list .card .image-area img {
  height: 100%;
}
.highlight[highlight-layout=image] .highlights-list {
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 992px) {
  .highlight[highlight-layout=image] .highlights-list .card .image-area {
    padding: 32px 0 32px 32px;
    border-right: none;
    border-bottom: 1px solid #e1e2e6;
  }
}
.highlight[highlight-layout=image] .highlights-list .card .image-area {
  padding: 16px 16px 0 16px;
  border: 1px solid #e1e2e6;
  border-bottom: none;
}
.highlight[highlight-layout=image] .highlights-list .card .image-area img {
  border-radius: var(--border-radius, 3px);
}
.highlight[highlight-layout=image] .highlights-list .card .content-area {
  border-top: none;
  -ms-flex-align: start;
      align-items: flex-start;
}
@media screen and (min-width: 992px) {
  .highlight[highlight-layout=image] .highlights-list .card .content-area {
    border-top: 1px solid #e1e2e6;
    width: 75%;
  }
}
.highlight[highlight-layout=image] .highlights-list .card .content-area .content h4, .highlight[highlight-layout=image] .highlights-list .card .content-area .content p {
  text-align: center;
}
@media screen and (min-width: 992px) {
  .highlight[highlight-layout=image] .highlights-list .card .content-area .content h4, .highlight[highlight-layout=image] .highlights-list .card .content-area .content p {
    text-align: left;
  }
}
@media screen and (min-width: 992px) {
  .highlight[highlight-layout=image][highlight-type="1"] .highlights-list .card .image-area {
    width: 23%;
  }
}
.highlight[highlight-layout=image][highlight-type="1"] .highlights-list .card .content-area {
  -ms-flex-pack: center;
      justify-content: center;
}
@media screen and (min-width: 992px) {
  .highlight[highlight-layout=image][highlight-type="1"] .highlights-list .card .content-area {
    -ms-flex-pack: start;
        justify-content: flex-start;
    width: 77%;
  }
}
@media screen and (min-width: 992px) {
  .highlight[highlight-layout=image][highlight-type="2"] .highlights-list .card {
    -ms-flex-preferred-size: 49%;
        flex-basis: 49%;
  }
}
@media screen and (min-width: 992px) {
  .highlight[highlight-layout=image][highlight-type="2"] .highlights-list .card .image-area {
    width: 39%;
  }
}
.highlight[highlight-layout=image][highlight-type="2"] .highlights-list .card .content-area {
  padding: 32px;
  -ms-flex-pack: center;
      justify-content: center;
}
@media screen and (min-width: 992px) {
  .highlight[highlight-layout=image][highlight-type="2"] .highlights-list .card .content-area {
    width: 61%;
    -ms-flex-pack: start;
        justify-content: flex-start;
  }
}
.highlight[highlight-layout=image][highlight-type="2"] .highlights-list .card .content-area .content h4 {
  margin-bottom: 16px;
}
.highlight[highlight-layout=image][highlight-type="3"] .highlights-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .highlight[highlight-layout=image][highlight-type="3"] .highlights-list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.highlight[highlight-layout=image][highlight-type="3"] .highlights-list .card {
  -ms-flex-direction: column;
      flex-direction: column;
  max-height: inherit;
  -ms-flex-negative: inherit;
      flex-shrink: inherit;
}
.highlight[highlight-layout=image][highlight-type="3"] .highlights-list .card .image-area {
  padding: 0;
  border-right: 1px solid #e1e2e6;
  border-bottom: none;
}
@media screen and (min-width: 992px) {
  .highlight[highlight-layout=image][highlight-type="3"] .highlights-list .card .image-area {
    width: 100%;
  }
}
.highlight[highlight-layout=image][highlight-type="3"] .highlights-list .card .image-area img {
  border-radius: 0;
  max-width: 570px;
  margin: auto;
}
.highlight[highlight-layout=image][highlight-type="3"] .highlights-list .card .content-area {
  height: 100%;
  padding: 32px;
  border-radius: 0 0 var(--border-radius, 3px) var(--border-radius, 3px);
  border-top: 0;
  border-left: 1px solid #e1e2e6;
  -ms-flex-pack: center;
      justify-content: center;
}
@media screen and (min-width: 992px) {
  .highlight[highlight-layout=image][highlight-type="3"] .highlights-list .card .content-area {
    width: 100%;
  }
}
.highlight[highlight-layout=image][highlight-type="3"] .highlights-list .card .content-area .content h4, .highlight[highlight-layout=image][highlight-type="3"] .highlights-list .card .content-area .content p {
  text-align: center;
}
.highlight[highlight-layout=image][highlight-type="3"] .highlights-list .card .content-area .content h4 {
  margin-bottom: 16px;
}
.highlight[highlight-layout=image][highlight-type="3"][single-card=true] .highlights-list .card .image-area {
  padding-top: 0;
}
@media screen and (min-width: 992px) {
  .highlight[highlight-layout=image][highlight-type="3"][single-card=true] .highlights-list .card .image-area {
    padding-top: 24px;
  }
}
.highlight[highlight-layout=image][highlight-type="3"][single-card=true] .highlights-list .card .image-area img {
  border-radius: var(--border-radius, 3px);
}
.highlight[highlight-layout=image][highlight-type="3"][single-card=true] .highlights-list .card .content-area {
  -ms-flex-pack: center;
      justify-content: center;
}
.highlight[highlight-layout=image][highlight-type="3"][single-card=true] .highlights-list .card .content-area .content {
  max-width: 820px;
}
.highlight[highlight-layout=image][highlight-type="3"][round-img=true] .highlights-list .card .image-area {
  padding: 24px 40px 0;
}
.highlight[highlight-layout=image][highlight-type="3"][round-img=true] .highlights-list .card .image-area img {
  aspect-ratio: 1/1;
  border-radius: 50%;
  max-width: 270px;
}
.highlight[highlight-layout=image][highlight-type="3"][round-img=true][single-card=true] .highlights-list .card .image-area {
  padding-top: 40px;
}
.highlight[highlight-layout=image][highlight-type="3"][round-img=true][single-card=true] .highlights-list .card .content-area {
  -ms-flex-pack: center;
      justify-content: center;
}
.highlight[highlight-layout=image][highlight-type="3"][round-img=true][single-card=true] .highlights-list .card .content-area .content {
  max-width: 640px;
}
.highlight[highlight-layout=icon] .highlights-list .card {
  border: 1px solid #e1e2e6;
}
.highlight[highlight-layout=icon][highlight-type="1"] .highlights-list .card {
  margin-bottom: 16px;
}
.highlight[highlight-layout=icon][highlight-type="1"] .highlights-list .card:last-of-type {
  margin-bottom: 0;
}
.highlight[highlight-layout=icon][highlight-type="1"] .highlights-list .card .image-area {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 48px 0 6px 0;
  width: 100%;
}
.highlight[highlight-layout=icon][highlight-type="1"] .highlights-list .card .image-area .fa {
  margin-top: 10px;
  font-size: 55px;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .highlight[highlight-layout=icon][highlight-type="1"] .highlights-list .card .image-area {
    -ms-flex-pack: start;
        justify-content: flex-start;
    padding: 48px 0 48px 48px;
    width: 104px;
  }
}
.highlight[highlight-layout=icon][highlight-type="1"] .highlights-list .card .content-area {
  border: none;
  -ms-flex-pack: center;
      justify-content: center;
}
@media screen and (min-width: 992px) {
  .highlight[highlight-layout=icon][highlight-type="1"] .highlights-list .card .content-area {
    width: 100%;
    -ms-flex-pack: start;
        justify-content: flex-start;
  }
}
.highlight[highlight-layout=icon][highlight-type="1"] .highlights-list .card .content-area .content h4, .highlight[highlight-layout=icon][highlight-type="1"] .highlights-list .card .content-area .content p {
  text-align: center;
}
@media screen and (min-width: 992px) {
  .highlight[highlight-layout=icon][highlight-type="1"] .highlights-list .card .content-area .content h4, .highlight[highlight-layout=icon][highlight-type="1"] .highlights-list .card .content-area .content p {
    text-align: left;
  }
}
.highlight[highlight-layout=icon][highlight-type="2"] .highlights-list {
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.highlight[highlight-layout=icon][highlight-type="2"] .highlights-list .card {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-direction: row;
      flex-direction: row;
}
@media screen and (min-width: 992px) {
  .highlight[highlight-layout=icon][highlight-type="2"] .highlights-list .card {
    -ms-flex-preferred-size: 49%;
        flex-basis: 49%;
  }
}
.highlight[highlight-layout=icon][highlight-type="2"] .highlights-list .card .image-area {
  padding: 40px 40px 0 40px;
  width: 100%;
}
.highlight[highlight-layout=icon][highlight-type="2"] .highlights-list .card .image-area .fa {
  font-size: 55px;
}
.highlight[highlight-layout=icon][highlight-type="2"] .highlights-list .card .content-area {
  padding: 32px;
  width: 100%;
  border: none;
  -ms-flex-align: start;
      align-items: flex-start;
  height: 100%;
}
.highlight[highlight-layout=icon][highlight-type="2"] .highlights-list .card .content-area .content h4 {
  margin-bottom: 16px;
}
.highlight[highlight-layout=icon][highlight-type="3"] .highlights-list {
  gap: 16px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.highlight[highlight-layout=icon][highlight-type="3"] .highlights-list .card {
  -ms-flex-direction: column;
      flex-direction: column;
  max-height: inherit;
  -ms-flex-negative: inherit;
      flex-shrink: inherit;
}
.highlight[highlight-layout=icon][highlight-type="3"] .highlights-list .card .image-area {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  border-bottom: none;
  padding: 40px 0 0;
}
@media screen and (min-width: 992px) {
  .highlight[highlight-layout=icon][highlight-type="3"] .highlights-list .card .image-area {
    width: 100%;
  }
}
.highlight[highlight-layout=icon][highlight-type="3"] .highlights-list .card .image-area .fa {
  font-size: 55px;
}
.highlight[highlight-layout=icon][highlight-type="3"] .highlights-list .card .content-area {
  height: 100%;
  padding: 32px;
  border-radius: 0 0 var(--border-radius, 3px) var(--border-radius, 3px);
  border: 0;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
}
@media screen and (min-width: 992px) {
  .highlight[highlight-layout=icon][highlight-type="3"] .highlights-list .card .content-area {
    width: 100%;
  }
}
.highlight[highlight-layout=icon][highlight-type="3"] .highlights-list .card .content-area .content h4, .highlight[highlight-layout=icon][highlight-type="3"] .highlights-list .card .content-area .content p {
  text-align: center;
}
.highlight[highlight-layout=icon][highlight-type="3"] .highlights-list .card .content-area .content h4 {
  margin-bottom: 16px;
}
.highlight[round-img=true] .highlights-list .card .image-area img {
  aspect-ratio: 1/1;
  border-radius: 50%;
}
@media screen and (min-width: 992px) {
  .highlight[round-img=true][highlight-type="1"] .highlights-list .card .image-area {
    width: 19%;
  }
}
@media screen and (min-width: 992px) {
  .highlight[round-img=true][highlight-type="1"] .highlights-list .card .content-area {
    width: 81%;
  }
}
@media screen and (min-width: 992px) {
  .highlight[round-img=true][highlight-type="2"] .highlights-list .card .image-area {
    width: 36%;
  }
}
@media screen and (min-width: 992px) {
  .highlight[round-img=true][highlight-type="2"] .highlights-list .card .content-area {
    width: 64%;
  }
}
.section-headers + .highlight {
  padding-top: 0;
}

.testimonial {
  padding-top: 24px;
  padding-bottom: 24px;
}
@media only screen and (min-width: 992px) {
  .testimonial {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.testimonial .testimonial-box {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  border-radius: var(--border-radius, 3px);
  border: solid 1px #e1e2e6;
  background-color: #fff;
  padding: 40px;
}
.testimonial .testimonial-box .testimonial-title {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 20px;
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
@media (min-width: 992px) {
  .testimonial .testimonial-box .testimonial-title {
    margin-top: 0;
    margin-bottom: 40px;
  }
}
.testimonial .testimonial-box .testimonial-list {
  max-width: 340px;
  min-width: 300px;
}
@media (min-width: 576px) {
  .testimonial .testimonial-box .testimonial-list {
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .testimonial .testimonial-box .testimonial-list {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .testimonial .testimonial-box .testimonial-list {
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .testimonial .testimonial-box .testimonial-list {
    max-width: 1140px;
  }
}
.testimonial .testimonial-box .testimonial-list .testimonial-item .testimonial-item-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.testimonial .testimonial-box .testimonial-list .testimonial-item .testimonial-item-content .avatar-pic-container {
  position: relative;
}
.testimonial .testimonial-box .testimonial-list .testimonial-item .testimonial-item-content .avatar-pic-container:before, .testimonial .testimonial-box .testimonial-list .testimonial-item .testimonial-item-content .avatar-pic-container:after {
  font-family: "FontAwesome";
  display: block;
  font-size: 24px;
  color: var(--highlight-base, #137df7);
  position: absolute;
  top: calc(50% - 20px);
  left: calc(50% - 10px);
}
.testimonial .testimonial-box .testimonial-list .testimonial-item .testimonial-item-content .avatar-pic-container:before {
  content: "\f10d";
  -ms-transform: translateX(-96px);
      transform: translateX(-96px);
}
.testimonial .testimonial-box .testimonial-list .testimonial-item .testimonial-item-content .avatar-pic-container:after {
  content: "\f10e";
  -ms-transform: translateX(96px);
      transform: translateX(96px);
}
.testimonial .testimonial-box .testimonial-list .testimonial-item .testimonial-item-content .avatar-pic-container .avatar-pic {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 120px;
  height: 120px;
  background-color: lightgray;
  border-radius: 120px;
  margin-bottom: 16px;
  overflow: hidden;
}
.testimonial .testimonial-box .testimonial-list .testimonial-item .testimonial-item-content .avatar-pic-container .avatar-pic img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.testimonial .testimonial-box .testimonial-list .testimonial-item .testimonial-item-content .testimonial-name {
  font-family: "Rubik";
  font-size: var(--font-size-20, 1.25em);
  font-weight: 500;
  text-align: center;
  color: var(--neutral-base, #3e455e);
  margin-bottom: 16px;
  max-width: 280px;
}
@media screen and (min-width: 768px) {
  .testimonial .testimonial-box .testimonial-list .testimonial-item .testimonial-item-content .testimonial-name {
    max-width: 620px;
  }
}
@media screen and (min-width: 992px) {
  .testimonial .testimonial-box .testimonial-list .testimonial-item .testimonial-item-content .testimonial-name {
    max-width: 800px;
  }
}
.testimonial .testimonial-box .testimonial-list .testimonial-item .testimonial-item-content .testimonial-text {
  font-size: var(--font-size-16, 1em);
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  max-width: 280px;
}
@media screen and (min-width: 768px) {
  .testimonial .testimonial-box .testimonial-list .testimonial-item .testimonial-item-content .testimonial-text {
    max-width: 620px;
  }
}
@media screen and (min-width: 992px) {
  .testimonial .testimonial-box .testimonial-list .testimonial-item .testimonial-item-content .testimonial-text {
    max-width: 800px;
  }
}
@media screen and (min-width: 1200px) {
  .testimonial .testimonial-box .testimonial-list .testimonial-item .testimonial-item-content .testimonial-text {
    max-width: 900px;
  }
}
.testimonial .testimonial-box .testimonial-list .slick-arrow {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  cursor: pointer;
  position: absolute;
  top: -115px;
  height: 30px;
  width: 30px;
  border-radius: 20px;
  border: solid 1px var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
}
@media (min-width: 992px) {
  .testimonial .testimonial-box .testimonial-list .slick-arrow {
    top: 40%;
    width: 40px;
    height: 40px;
    border: none;
    background-color: #d6d6d6;
  }
}
.testimonial .testimonial-box .testimonial-list .slick-arrow-left {
  left: 50%;
  -ms-transform: translate(-35px, -50%);
      transform: translate(-35px, -50%);
}
@media (min-width: 992px) {
  .testimonial .testimonial-box .testimonial-list .slick-arrow-left {
    left: -55px;
    -ms-transform: translateY(-50%);
        transform: translateY(-50%);
  }
}
.testimonial .testimonial-box .testimonial-list .slick-arrow-right {
  right: 50%;
  -ms-transform: translate(35px, -50%);
      transform: translate(35px, -50%);
}
@media (min-width: 992px) {
  .testimonial .testimonial-box .testimonial-list .slick-arrow-right {
    right: -55px;
    -ms-transform: translateY(-50%);
        transform: translateY(-50%);
  }
}
.testimonial .testimonial-box .testimonial-list .slick-arrow .fa {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
@media (min-width: 992px) {
  .testimonial .testimonial-box .testimonial-list .slick-arrow .fa {
    color: var(--color-white-base, white);
  }
}
.testimonial[data-bg=brand] .testimonial-box .testimonial-list .slick-arrow {
  background-color: var(--color-white-base, white);
}
@media (min-width: 992px) {
  .testimonial[data-bg=brand] .testimonial-box .testimonial-list .slick-arrow .fa {
    color: var(--brand-base, #022e69);
  }
}

.photo-gallery {
  padding-top: 24px;
  padding-bottom: 24px;
}
@media only screen and (min-width: 992px) {
  .photo-gallery {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.photo-gallery .photo-gallery-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 24px;
}
.photo-gallery .photo-gallery-header > .heading {
  color: var(--color-white-base, white);
}
.photo-gallery[data-bg=neutral] .photo-gallery-header > .heading, .photo-gallery[data-bg=base] .photo-gallery-header > .heading {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
.photo-gallery[data-bg=neutral] .slick-arrow, .photo-gallery[data-bg=base] .slick-arrow {
  border: solid 1px var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}
.photo-gallery[data-bg=neutral] .slick-arrow[className=slick-next]:before, .photo-gallery[data-bg=neutral] .slick-arrow[className=slick-prev]:before, .photo-gallery[data-bg=base] .slick-arrow[className=slick-next]:before, .photo-gallery[data-bg=base] .slick-arrow[className=slick-prev]:before {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
.photo-gallery .photo-gallery-list {
  margin-bottom: 54px;
}
@media screen and (min-width: 768px) {
  .photo-gallery .photo-gallery-list {
    margin-bottom: 0;
  }
}
.photo-gallery .photo-gallery-list .photo-item {
  display: -ms-flexbox !important;
  display: flex !important;
  aspect-ratio: 4/3;
}
.photo-gallery .photo-gallery-list .photo-item img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--border-radius, 3px);
}
.photo-gallery[type=grid] .photo-gallery-list {
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .photo-gallery[type=grid] .photo-gallery-list {
    display: -ms-grid;
    display: grid;
  }
}
.photo-gallery[type=grid] .photo-gallery-list .photo-item {
  display: -ms-flexbox !important;
  display: flex !important;
  aspect-ratio: 4/3;
}
.photo-gallery[type=grid] .photo-gallery-list .photo-item img {
  width: 100%;
  object-fit: cover;
  display: block;
}
@media screen and (min-width: 768px) {
  .photo-gallery[type=grid][amount-images="1"] .photo-gallery-list {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: 1fr;
        grid-template-rows: 1fr;
  }
  .photo-gallery[type=grid][amount-images="1"] .photo-gallery-list .photo-item {
    -ms-grid-column: span 12;
        grid-column: span 12;
    -ms-grid-row: span 2;
        grid-row: span 2;
  }
  .photo-gallery[type=grid][amount-images="2"] .photo-gallery-list {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: 1fr;
        grid-template-rows: 1fr;
  }
  .photo-gallery[type=grid][amount-images="3"] .photo-gallery-list {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: 1fr;
        grid-template-rows: 1fr;
  }
  .photo-gallery[type=grid][amount-images="4"] .photo-gallery-list {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
    -ms-grid-rows: 1fr;
        grid-template-rows: 1fr;
  }
  .photo-gallery[type=grid][amount-images="5"] .photo-gallery-list {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
    -ms-grid-rows: (1fr)[2];
        grid-template-rows: repeat(2, 1fr);
  }
  .photo-gallery[type=grid][amount-images="5"] .photo-gallery-list .photo-item {
    -ms-grid-column: span 1;
        grid-column: span 1;
    -ms-grid-row: span 1;
        grid-row: span 1;
  }
  .photo-gallery[type=grid][amount-images="5"] .photo-gallery-list .photo-item:nth-of-type(1) {
    -ms-grid-column: span 2;
        grid-column: span 2;
    -ms-grid-row: span 2;
        grid-row: span 2;
  }
  .photo-gallery[type=grid][amount-images="6"] .photo-gallery-list {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: (1fr)[2];
        grid-template-rows: repeat(2, 1fr);
  }
  .photo-gallery[type=grid][amount-images="7"] .photo-gallery-list {
    -ms-grid-columns: (1fr)[12];
        grid-template-columns: repeat(12, 1fr);
    -ms-grid-rows: (1fr)[2];
        grid-template-rows: repeat(2, 1fr);
  }
  .photo-gallery[type=grid][amount-images="7"] .photo-gallery-list .photo-item {
    -ms-grid-column: span 3;
        grid-column: span 3;
    -ms-grid-row: 2;
        grid-row: 2;
  }
  .photo-gallery[type=grid][amount-images="7"] .photo-gallery-list .photo-item:nth-of-type(1), .photo-gallery[type=grid][amount-images="7"] .photo-gallery-list .photo-item:nth-of-type(2), .photo-gallery[type=grid][amount-images="7"] .photo-gallery-list .photo-item:nth-of-type(3) {
    -ms-grid-column: span 4;
        grid-column: span 4;
    -ms-grid-row: 1;
        grid-row: 1;
  }
  .photo-gallery[type=grid]:not([amount-images="1"]):not([amount-images="2"]):not([amount-images="3"]):not([amount-images="4"]):not([amount-images="5"]):not([amount-images="6"]):not([amount-images="7"]) .photo-gallery-list {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}
.photo-gallery[type=carousel] .photo-gallery-list {
  max-height: 250px;
}
.photo-gallery[type=carousel] .photo-gallery-list .photo-item img {
  height: 250px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .photo-gallery[type=carousel] .photo-gallery-list .photo-item img {
    width: 333px;
  }
}
@media screen and (min-width: 768px) {
  .photo-gallery[type=carousel] .photo-gallery-list {
    width: 100%;
    margin: 0 auto;
  }
  .photo-gallery[type=carousel] .photo-gallery-list .slick-arrow {
    bottom: 50%;
    height: 40px;
    width: 40px;
    border-radius: 40px;
    -ms-transform: translateY(50%);
        transform: translateY(50%);
  }
  .photo-gallery[type=carousel] .photo-gallery-list .slick-arrow[className=slick-next]:before, .photo-gallery[type=carousel] .photo-gallery-list .slick-arrow[className=slick-prev]:before {
    font-size: 16px;
  }
  .photo-gallery[type=carousel] .photo-gallery-list .slick-arrow[className=slick-next] {
    right: -56px;
    left: auto;
  }
  .photo-gallery[type=carousel] .photo-gallery-list .slick-arrow[className=slick-prev] {
    left: -56px;
  }
}
.photo-gallery[type=carousel] .photo-gallery-list .photo-item {
  margin-right: 32px;
}
.photo-gallery .slick-arrow {
  position: absolute;
  left: 50%;
  bottom: -44px;
  height: 30px;
  width: 30px;
  border-radius: 30px;
  border: solid 1px var(--color-white-base, white);
  background-color: transparent;
  cursor: pointer;
}
.photo-gallery .slick-arrow[className=slick-next]:before, .photo-gallery .slick-arrow[className=slick-prev]:before {
  font-family: FontAwesome;
  position: absolute;
  left: 50%;
  top: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  color: var(--color-white-base, white);
  font-size: 12px;
}
.photo-gallery .slick-arrow[className=slick-next] {
  -ms-transform: translateX(20%);
      transform: translateX(20%);
}
.photo-gallery .slick-arrow[className=slick-next]:before {
  content: "\f054";
}
.photo-gallery .slick-arrow[className=slick-prev] {
  -ms-transform: translateX(-120%);
      transform: translateX(-120%);
}
.photo-gallery .slick-arrow[className=slick-prev]:before {
  content: "\f053";
}
.photo-gallery .slick-arrow:focus {
  outline: none;
}

/* ARQUIVOS DE BLOCOS */
/* CUSTOM FILES */
.cards-default[data-type=articles] .cards-list .card-horizontal-full .content .title {
  font-size: var(--font-size-24, 1.5em);
}
.cards-default[data-type=articles] .cards-list .card-horizontal-full .content .categories .link {
  font-size: var(--font-size-14, 0.875em);
}
.cards-default[data-type=articles] .cards-list.list-horizontal .content .title {
  font-size: var(--font-size-24, 1.5em);
}
.cards-default[data-type=articles] .card-wrapper-quarter .card-list-quarter .card-horizontal-full .content .title {
  font-size: var(--font-size-24, 1.5em);
}
.cards-default[data-type=articles] .card-wrapper-quarter .cards-popular > .list-popular-articles .item-popular-articles .content-right .title {
  font-size: var(--font-size-20, 1.25em);
}
.cards-default[data-type=articles] .card-wrapper-quarter .cards-popular > .list-popular-articles .item-popular-articles .content-right .author {
  font-size: var(--font-size-14, 0.875em);
}
.cards-default[data-type=articles] .card .content .title {
  font-weight: bold;
  font-size: var(--font-size-20, 1.25em);
}

.categories-base .categories-header > .link {
  font-size: var(--font-size-16, 1em);
}
.categories-base .categories-content > .categories-list .info .title {
  font-size: var(--font-size-16, 1em);
}

.horizontal-deal .cards-list .card-deals .content .deals-price .valid-time {
  font-size: var(--font-size-14, 0.875em);
}

.details-default > .details-modal.is-sent .modal-default .modal-return {
  font-size: var(--font-size-18, 1.125em);
}
.details-default > .details-modal.deals-coupon .deals-content .deals-content-item .content-title {
  font-size: var(--font-size-12, 0.75em);
}
.details-default > .details-header .details-general .details-info .details-categories {
  font-size: var(--font-size-14, 0.875em);
}
.details-default > .details-header .details-general .details-info .details-old-price {
  font-size: var(--font-size-14, 0.875em);
}
.details-default > .details-header .details-general .details-info .details-date {
  font-size: var(--font-size-16, 1em);
}
.details-default > .details-header .details-general .details-info .details-reviews .reviews-first {
  font-size: var(--font-size-14, 0.875em);
}
@media screen and (min-width: 992px) {
  .details-default > .details-header .details-general .details-info .details-actions .button {
    font-size: var(--font-size-14, 0.875em);
  }
}
@media screen and (min-width: 1200px) {
  .details-default > .details-header .details-general .details-info .details-actions .button {
    font-size: var(--font-size-16, 1em);
  }
}
.details-default > .details-header .details-general .details-info .details-claim {
  font-size: var(--font-size-14, 0.875em);
}
.details-default > .details-header .details-general .details-info .details-certified .item-certified .title {
  font-size: var(--font-size-14, 0.875em);
}
.details-default > .detail-body .detail-body-content .tab-item-features .item-features {
  font-size: var(--font-size-14, 0.875em);
}
.details-default > .detail-body .detail-body-content .tab-item-reviews .reviews-header .reviews-vote .reviews-rating {
  font-size: var(--font-size-16, 1em);
}
.details-default > .detail-body .detail-body-content .tab-item-reviews .reviews-header .reviews-vote .reviews-count {
  font-size: var(--font-size-14, 0.875em);
}
.details-default > .detail-body .detail-body-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-author {
  font-size: var(--font-size-16, 1em);
}
.details-default > .detail-body .detail-body-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-date {
  font-size: var(--font-size-12, 0.75em);
}
.details-default > .detail-body .detail-body-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-description {
  font-size: var(--font-size-16, 1em);
}
.details-default > .detail-body .detail-body-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-helpfull {
  font-size: var(--font-size-12, 0.75em);
}
.details-default > .detail-body .detail-body-content .tab-item-reviews .reviews-pagination .item-pagination {
  font-size: var(--font-size-16, 1em);
}
.details-default > .detail-body .detail-body-content .tab-item-additional .additional-item .additional-question {
  font-size: var(--font-size-16, 1em);
}
.details-default > .detail-body .detail-body-content .tab-item-additional .additional-item .additional-answer {
  font-size: var(--font-size-16, 1em);
}
.details-default > .detail-body .detail-body-content .tab-item-photos .photos-list .photos-item .photos-caption {
  font-size: var(--font-size-16, 1em);
}
.details-default > .detail-body .detail-body-content .tab-item-location .button {
  font-size: var(--font-size-16, 1em);
}
.details-default > .detail-body .detail-body-content .tab-item-hours .hour-item .day {
  font-size: var(--font-size-16, 1em);
}
.details-default > .detail-body .detail-body-content .tab-item-hours .hour-item .time {
  font-size: var(--font-size-16, 1em);
}
.details-default > .detail-body .detail-body-content .tab-item-owner .tab-item-content .owner-content .owner-name {
  font-size: var(--font-size-16, 1em);
}
.details-default > .detail-body .detail-body-content .tab-item-owner .tab-item-content .owner-content .owner-email {
  font-size: var(--font-size-14, 0.875em);
}
.details-default > .detail-body .detail-body-content .tab-item-offer-time .tab-item-content .item-label {
  font-size: var(--font-size-14, 0.875em);
}
.details-default > .detail-body .detail-body-content .tab-item-offer-owner .owner-name {
  font-size: var(--font-size-16, 1em);
}
.details-default > .detail-body .detail-body-content .tab-item-offer-owner .reviews-vote .reviews-rating {
  font-size: var(--font-size-16, 1em);
}
.details-default > .detail-body .detail-body-content .tab-item-offer-owner .reviews-vote .reviews-count {
  font-size: var(--font-size-14, 0.875em);
}
.details-default.details-articles .article-header .article-date {
  font-size: var(--font-size-18, 1.125em);
}
.details-default.details-articles .tab-content .article-author .article-content {
  font-size: var(--font-size-16, 1em);
}
.details-default.details-articles .tab-content .article-author .article-content .author-name {
  font-size: var(--font-size-14, 0.875em);
}

.cards-events .calendar-wrapper .calendar-block .datepicker .datepicker--nav-title {
  font-size: var(--font-size-20, 1.25em);
}
.cards-events .calendar-wrapper .calendar-block .datepicker .datepicker--content .datepicker--days-names .datepicker--day-name {
  font-size: var(--font-size-14, 0.875em);
}
@media screen and (min-width: 768px) {
  .cards-events .calendar-wrapper .calendar-block .datepicker .datepicker--content .datepicker--days-names .datepicker--cells .datepicker--cell {
    font-size: var(--font-size-14, 0.875em);
  }
}
@media screen and (min-width: 992px) {
  .cards-events .calendar-wrapper .calendar-block .datepicker .datepicker--content .datepicker--days-names .datepicker--cells .datepicker--cell {
    font-size: var(--font-size-16, 1em);
  }
}
.cards-events .calendar-wrapper .calendar-block .datepicker .datepicker--content .datepicker--days-names .datepicker--cells .datepicker--cell.-other-month- {
  font-size: var(--font-size-16, 1em);
}

.footer > .footer-content .wrapper .footer-item .footer-item-title {
  font-size: var(--font-size-18, 1.125em);
}
.footer > .footer-content .wrapper .footer-item .footer-item-content .link-footer {
  font-size: var(--font-size-15, 0.9375em);
}
.footer > .footer-content .wrapper .footer-item .footer-item-content .footer-info {
  font-size: var(--font-size-15, 0.9375em);
}
.footer > .footer-bar .wrapper .footer-copyright {
  font-size: var(--font-size-16, 1em);
}
.footer > .footer-bar .wrapper .footer-powered {
  font-size: var(--font-size-16, 1em);
}
.footer[data-type="3"] > .footer-content .footer-contact .contact-item {
  font-size: var(--font-size-14, 0.875em);
}
.footer[data-type="4"] > .footer-content .wrapper .footer-actions [data-content=newsletter-content] .footer-item-content .footer-item-subtitle {
  font-size: var(--font-size-15, 0.9375em);
}
.footer[data-type="4"] > .footer-content .wrapper .footer-actions [data-content=newsletter-content] .footer-item-content .form-newsletter .input {
  font-size: var(--font-size-14, 0.875em);
}
.footer[data-type="4"] > .footer-content .wrapper .footer-actions [data-content=newsletter-content] .footer-item-content .privacy-text-footer {
  font-size: var(--font-size-12, 0.75em);
}
.footer[data-type="4"] > .footer-content .footer-bar .footer-copyright {
  font-size: var(--font-size-16, 1em);
}
.footer[data-type="4"] > .footer-content .footer-bar .footer-powered {
  font-size: var(--font-size-16, 1em);
}

.header > .header-bar .bar-link {
  font-size: var(--font-size-14, 0.875em);
}
.header .header-navbar .navbar-link {
  font-size: var(--font-size-16, 1em);
}
.header .header-navbar .navbar-more .more-label {
  font-size: var(--font-size-16, 1em);
}
.header .header-navbar .navbar-more .more-link {
  font-size: var(--font-size-16, 1em);
}

.hero-default .wrapper > .content-location .link {
  font-size: var(--font-size-14, 0.875em);
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .hero-default.type-1 .heading {
    font-size: var(--font-size-28, 1.75em);
  }
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .hero-default.type-1 .paragraph {
    font-size: var(--font-size-14, 0.875em);
  }
}
.hero-default.type-2.is-column .wrapper .heading {
  font-size: var(--font-size-32, 2em);
}
@media screen and (min-width: 320px) and (max-width: 425px) {
  .hero-default.type-2.is-column .wrapper .heading {
    font-size: var(--font-size-24, 1.5em);
  }
}
.hero-default.type-2.is-column .wrapper .paragraph {
  font-size: var(--font-size-18, 1.125em);
}
@media screen and (min-width: 320px) and (max-width: 425px) {
  .hero-default.type-2.is-column .wrapper .paragraph {
    font-size: var(--font-size-16, 1em);
  }
}
@media screen and (min-width: 320px) and (max-width: 425px) {
  .hero-default.type-3 .hero-slider .slider-content .heading {
    font-size: var(--font-size-24, 1.5em);
  }
}
@media screen and (min-width: 320px) and (max-width: 425px) {
  .hero-default.type-3 .hero-slider .slider-content .paragraph {
    font-size: var(--font-size-16, 1em);
  }
}
@media screen and (min-width: 320px) and (max-width: 425px) {
  .hero-default.type-4 .wrapper .heading, .hero-default.type-5 .wrapper .heading, .hero-default.type-6 .wrapper .heading {
    font-size: var(--font-size-24, 1.5em);
  }
}
@media screen and (min-width: 320px) and (max-width: 425px) {
  .hero-default.type-4 .wrapper .paragraph, .hero-default.type-5 .wrapper .paragraph, .hero-default.type-6 .wrapper .paragraph {
    font-size: var(--font-size-16, 1em);
  }
}

.cards-latest-members .members-list .members-item .content .joined-time {
  font-size: var(--font-size-14, 0.875em);
}

.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item.is-highlighted:before {
  font-size: var(--font-size-24, 1.5em);
}
@media screen and (min-width: 992px) {
  .pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item.is-highlighted:before {
    font-size: var(--font-size-16, 1em);
  }
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-collapse .price-description p {
  font-size: var(--font-size-15, 0.9375em);
}
.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-collapse .price-advantages .price-advantages-item .item-name {
  font-size: var(--font-size-16, 1em);
}

.modal-default .modal-content .modal-nav .modal-nav-link {
  font-size: var(--font-size-18, 1.125em);
}
.modal-default .modal-content .modal-body .form-actions .form-remember {
  font-size: var(--font-size-14, 0.875em);
}
.modal-default .modal-content .modal-body .privacy-policy {
  font-size: var(--font-size-12, 0.75em);
}
.modal-default .modal-content .modal-body .not-member .link {
  font-size: var(--font-size-16, 1em);
}

.thin-strip-base.type-1 .wrapper > .content-location .link {
  font-size: var(--font-size-14, 0.875em);
}
.thin-strip-base.type-6 .wrapper > .content-download .heading {
  font-size: var(--font-size-16, 1em);
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .thin-strip-base.type-6 .wrapper > .content-download .heading {
    font-size: var(--font-size-24, 1.5em);
  }
}
@media screen and (min-width: 1024px) {
  .thin-strip-base.type-6 .wrapper > .content-download .heading {
    font-size: var(--font-size-32, 2em);
  }
}
.thin-strip-base.type-6 .wrapper > .content-download .paragraph {
  font-size: var(--font-size-14, 0.875em);
}
@media screen and (min-width: 1024px) {
  .thin-strip-base.type-6 .wrapper > .content-download .paragraph {
    font-size: var(--font-size-18, 1.125em);
  }
}

.video-gallery .video-header > .link {
  font-size: var(--font-size-16, 1em);
}

/* CUSTOM FILES */
/* ARQUIVOS DE PAGINAS */
#screen2 {
  background-color: #F3F5F8;
}

.claim-signup-breadcrumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.claim-signup-breadcrumb.isVisible {
  display: -ms-flexbox !important;
  display: flex !important;
}
.claim-signup-breadcrumb + .modal-sign .modal-content {
  margin-top: 32px;
}
.claim-signup-breadcrumb .breadcrumb-item {
  background: var(--brand-base, #022e69);
  color: var(--color-white-base, white);
  line-height: 1;
  padding: 16px 12px;
  position: relative;
  font-size: 0.75em;
}
@media screen and (min-width: 768px) {
  .claim-signup-breadcrumb .breadcrumb-item {
    padding: 16px 24px;
    font-size: 1em;
  }
}
.claim-signup-breadcrumb .breadcrumb-item[is-active=true] {
  background: var(--highlight-base, #137df7);
}
.claim-signup-breadcrumb .breadcrumb-item:not(:first-child):before {
  content: "";
  position: absolute;
  top: -5px;
  left: -4px;
  width: 6px;
  height: calc(50% + 6px);
  background: white;
  -ms-transform: rotate(-15deg);
      transform: rotate(-15deg);
}
.claim-signup-breadcrumb .breadcrumb-item:not(:first-child):after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: -4px;
  width: 6px;
  height: calc(50% + 6px);
  background: white;
  -ms-transform: rotate(15deg);
      transform: rotate(15deg);
}
.claim-signup-breadcrumb .breadcrumb-item strong {
  display: none;
}
@media screen and (min-width: 768px) {
  .claim-signup-breadcrumb .breadcrumb-item strong {
    display: inline-block;
  }
}

.claim-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  text-align: center;
  -ms-flex-pack: center;
      justify-content: center;
}

.claim-steps {
  padding-top: 24px;
  padding-bottom: 24px;
}
@media only screen and (min-width: 992px) {
  .claim-steps {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.claim-steps .claim-wrapper .claim-steps-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 24px;
  width: 100%;
  padding: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 992px) {
  .claim-steps .claim-wrapper .claim-steps-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.claim-steps .claim-wrapper .claim-steps-list li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 24px;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  padding: 24px;
  width: calc((100% - 48px) / 3);
  border-radius: var(--border-radius, 3px);
  background-color: var(--neutral-transp-10, rgba(62, 69, 94, 0.1));
}
@media screen and (max-width: 992px) {
  .claim-steps .claim-wrapper .claim-steps-list li {
    width: 100%;
  }
}
.claim-steps .claim-wrapper .claim-steps-list .step-title {
  position: absolute;
  max-width: 320px;
  color: var(--brand-base, #022e69);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 36px;
}
.claim-steps .claim-wrapper .claim-steps-list .step-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  min-height: 164px;
  margin-top: 90px;
}
.claim-steps .claim-wrapper .claim-steps-list .step-content .step-number {
  color: var(--brand-base, #022e69);
  font-size: 96px;
  font-weight: 500;
  line-height: normal;
}
.claim-steps .claim-wrapper .claim-steps-list .step-content .step-title {
  color: var(--brand-base, #022e69);
  font-size: 24px;
  font-weight: 500;
}
.claim-steps .claim-wrapper .claim-steps-list .step-content .step-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  min-height: 164px;
}
.claim-steps .claim-wrapper .claim-steps-list .step-content .step-content .step-number {
  color: var(--brand-base, #022e69);
  font-size: 96px;
  font-weight: 500;
  line-height: normal;
}
.claim-steps .claim-wrapper .claim-steps-list .step-content .step-content img {
  max-width: calc(100% - 60px);
}
.claim-steps[data-bg=neutral] .claim-wrapper .claim-steps-list li, .claim-steps[data-bg=brand] .claim-wrapper .claim-steps-list li {
  background-color: #fff;
}

.start-claim {
  padding-top: 24px;
  padding-bottom: 24px;
}
@media only screen and (min-width: 992px) {
  .start-claim {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.start-claim .claim-wrapper .button.signup {
  padding: 12px 48px;
}
.start-claim .claim-wrapper .claim-title {
  width: 100%;
}
.start-claim .claim-wrapper .claim-title h1, .start-claim .claim-wrapper .claim-title p {
  -ms-flex-pack: center;
      justify-content: center;
}
.start-claim .claim-wrapper .link-claim {
  color: var(--link-base, #3ebaf6);
  width: 100%;
  margin-top: 24px;
  font-size: 14px;
}

.error-page {
  height: 100vh;
}
.error-page.error-400 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
}
.error-page:not(.error-400) {
  background: #fbfbfb;
}
.error-page:not(.error-400) .wrapper {
  height: inherit;
}
.error-page .wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}
.error-page .wrapper > .error-image {
  width: 200px;
}
@media screen and (min-width: 768px) {
  .error-page .wrapper > .error-image {
    width: 300px;
  }
}
@media screen and (min-width: 992px) {
  .error-page .wrapper > .error-image {
    width: auto;
  }
}
.error-page .wrapper > .error-image img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.error-page .wrapper > .error-content {
  text-align: center;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .error-page .wrapper > .error-content {
    text-align: left;
    margin-left: 32px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .error-page .wrapper > .error-content {
    margin-left: 64px;
  }
}
.error-page .wrapper > .error-content .error-title {
  color: #022e69;
  font-size: 48px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .error-page .wrapper > .error-content .error-title {
    font-size: 88px;
  }
}
@media screen and (min-width: 992px) {
  .error-page .wrapper > .error-content .error-title {
    font-size: 150px;
  }
}
.error-page .wrapper > .error-content .error-description {
  color: #2a2c33;
  font-size: 22px;
  max-width: 350px;
  font-weight: 300;
  margin: 16px auto 0;
  line-height: 1.15;
}
@media screen and (min-width: 768px) {
  .error-page .wrapper > .error-content .error-description {
    font-size: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .error-page .wrapper > .error-content .error-description {
    font-size: 32px;
  }
}
.error-page > .error-form {
  margin-top: 56px;
}
.error-page > .error-form .form-label {
  color: #848484;
  font-size: var(--font-size-24, 1.5em);
}

.checkout-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  margin: 40px auto;
  max-width: 720px;
}
.checkout-wrapper .payment-options {
  width: 100%;
  position: relative;
}
.checkout-wrapper .payment-options .payment-options-section {
  position: relative;
  background-color: #fff;
  padding: 24px;
}
.checkout-wrapper .payment-options .payment-options-section h5 {
  font-family: var(--heading-font, "Rubik");
  font-size: 16px;
  margin-bottom: 16px;
  margin-top: 12px;
  font-weight: 400;
}
.checkout-wrapper .payment-options .payment-options-section:last-of-type, .checkout-wrapper .payment-options .payment-options-section.mb-0 {
  margin-bottom: 0;
}
.checkout-wrapper .payment-options .payment-options-section .payment-methods-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  margin-bottom: 40px;
}
.checkout-wrapper .payment-options .payment-options-section .payment-methods-list .payment-method {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 3px;
  font-family: var(--paragraph-font, "Roboto");
  font-size: 14px;
  font-weight: 400;
  border: solid 1px #A1B3C9;
  transition: 0.2s;
  cursor: pointer;
  max-height: 56px;
  width: calc(33% - 10px);
}
@media screen and (max-width: 767px) {
  .checkout-wrapper .payment-options .payment-options-section .payment-methods-list .payment-method {
    width: 100%;
  }
}
.checkout-wrapper .payment-options .payment-options-section .payment-methods-list .payment-method:has(input[type=radio]:checked) {
  border-color: #137df7;
  color: #137df7;
}
.checkout-wrapper .payment-options .payment-options-section .payment-methods-list .payment-method label {
  margin-bottom: 0;
  cursor: pointer;
}
.checkout-wrapper .payment-options .payment-options-section .payment-methods-list .payment-method:hover, .checkout-wrapper .payment-options .payment-options-section .payment-methods-list .payment-method.checked {
  border-color: var(--highlight-base, #137df7);
}
.checkout-wrapper .payment-options .payment-options-section .payment-methods-list .payment-method small {
  display: block;
  font-family: Rubik;
  font-size: 10px;
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
.checkout-wrapper .payment-options .payment-options-section .form-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  gap: 16px;
  margin-bottom: 16px;
}
@media screen and (min-width: 992px) {
  .checkout-wrapper .payment-options .payment-options-section .form-group {
    margin-bottom: 0;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.checkout-wrapper .payment-options .payment-options-section .form-group.has-error {
  color: #fc5353;
}
.checkout-wrapper .payment-options .payment-options-section .form-group .form-control {
  width: 100%;
  height: 40px;
  border-radius: 2px;
  border: solid 1px #A1B3C9;
  font-family: var(--paragraph-font, "Roboto");
  font-size: 14px;
  font-weight: 400;
  padding: 8px 16px;
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .checkout-wrapper .payment-options .payment-options-section .form-group .form-control {
    margin-bottom: 16px;
  }
}
.checkout-wrapper .payment-options .payment-options-section .form-group .form-control.is-invalid {
  border: 1px solid #fc5353 !important;
}
.checkout-wrapper .payment-options .payment-options-section .form-group .form-control.size50 {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .checkout-wrapper .payment-options .payment-options-section .form-group .form-control.size50 {
    width: 50%;
  }
}
.checkout-wrapper .payment-options .payment-options-section .form-group .form-control.size15 {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .checkout-wrapper .payment-options .payment-options-section .form-group .form-control.size15 {
    width: 15%;
  }
}
.checkout-wrapper .payment-options .payment-options-section .form-group .form-control:focus-visible {
  outline: none;
  border-color: #137df7;
}
.checkout-wrapper .payment-options .payment-options-section .form-group .select2-container {
  width: calc(50% - 8px) !important;
}
@media screen and (min-width: 992px) {
  .checkout-wrapper .payment-options .payment-options-section .form-group .select2-container {
    width: 12% !important;
  }
}
.checkout-wrapper .payment-options .payment-options-section .form-group .select2-container--default .select2-selection--single {
  height: 40px;
  border-color: #A1B3C9;
  border-radius: 2px;
}
.checkout-wrapper .payment-options .payment-options-section .form-group .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 38px;
}
.checkout-wrapper .payment-options .payment-options-section .form-group .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 6px;
}
.checkout-wrapper .payment-options .payment-options-section .form-group .select2-container--default .select2-selection--single.is-invalid {
  border: 1px solid #fc5353 !important;
}
.checkout-wrapper .payment-options .payment-options-section .print-invoice {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
}
.checkout-wrapper .payment-options .payment-options-section .print-invoice a {
  color: var(--link-base, #3ebaf6);
}
.checkout-wrapper .payment-options .payment-options-section .check-terms {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  font-size: 14px;
  margin-top: 24px;
  transition: 0.3s;
}
.checkout-wrapper .payment-options .payment-options-section .check-terms.has-error {
  color: #fc5353;
}
.checkout-wrapper .payment-options .payment-options-section .check-terms input {
  margin-left: 5px;
  margin-right: 16px;
}
.checkout-wrapper .payment-options .payment-options-section .check-terms input.form-control.is-invalid {
  border: 1px solid #fc5353 !important;
}
.checkout-wrapper .payment-options .payment-options-section .check-terms a {
  color: var(--link-base, #3ebaf6);
}
.checkout-wrapper .payment-options .action-buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  width: 100%;
  gap: 8px;
}
.checkout-wrapper .payment-options .action-buttons .button-md {
  padding: 12px 24px;
}
.checkout-wrapper .discount-applied-state {
  height: 220px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 32px;
  -ms-flex-align: center;
      align-items: center;
  text-align: left;
  margin: auto;
  padding: 60px;
}
@media screen and (max-width: 767px) {
  .checkout-wrapper .discount-applied-state {
    height: auto;
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
.checkout-wrapper .discount-applied-state img {
  max-width: 100%;
  max-height: 100%;
}
.checkout-wrapper .discount-applied-state h3 {
  margin-bottom: 18px;
}
.checkout-wrapper .discount-applied-state p {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  margin-bottom: 0;
}
.checkout-wrapper .confirm-payment {
  width: 100%;
  height: 64px;
  font-size: 16px;
}
.checkout-wrapper .confirm-payment .fa {
  -ms-transform: translateY(2px);
      transform: translateY(2px);
  color: #fff;
  font-size: 24px;
  margin-right: 6px;
}
.checkout-wrapper .confirm-payment[disabled] {
  opacity: 32%;
}
.checkout-wrapper .confirm-payment[disabled]:hover {
  opacity: 32%;
}
.checkout-wrapper .loader-button {
  width: 24px;
  margin: -5px 5px;
  height: 24px;
  border: 2px solid #FFF;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 0.8s linear infinite;
  opacity: 0.8;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.order-info {
  width: 100%;
}
.order-info .order-info-link {
  display: block;
  font-family: var(--paragraph-font, "Roboto");
  font-size: 14px;
  font-weight: 400;
  text-decoration: underline;
  color: var(--neutral-base, #3e455e);
  transition: 0.3s;
}
.order-info .order-info-link:hover {
  opacity: 0.7;
}
.order-info .promo-code {
  margin-top: 45px;
}
.order-info .promo-code .title-promo-code {
  font-size: 14px;
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  margin-bottom: 12px;
}
.order-info .promo-code .input-promo-code {
  position: relative;
  display: -ms-flexbox;
  display: flex;
}
.order-info .promo-code .input-promo-code input, .order-info .promo-code .input-promo-code .btn-apply {
  border: solid 1px #A1B3C9;
}
.order-info .promo-code .input-promo-code input {
  width: 100%;
  height: 40px;
  border-radius: 3px 0 0 3px;
  padding: 16px;
}
.order-info .promo-code .input-promo-code input:focus-visible {
  outline: 0;
}
.order-info .promo-code .input-promo-code .btn-apply {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
  color: var(--highlight-base, #137df7);
  background-color: #fff;
  font-family: var(--paragraph-font, "Roboto");
  font-size: 14px;
  min-width: 110px;
  border-radius: 0 3px 3px 0;
  transition: 0.2s;
  cursor: pointer;
}
.order-info .promo-code .input-promo-code .btn-apply:hover {
  opacity: 0.8;
  text-decoration: none;
}
.order-info .promo-code .input-promo-code .clear {
  display: none;
  background: none;
  border: none;
}
.order-info .promo-code .code-msg {
  display: none;
  font-size: 14px;
  margin-top: 12px;
}
.order-info .promo-code small {
  display: none;
  margin-top: 12px;
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
.order-info .promo-code.valid .input-promo-code:before, .order-info .promo-code.invalid .input-promo-code:before, .order-info .promo-code.loading .input-promo-code:before {
  font-family: "FontAwesome";
  display: block;
  font-size: 22px;
  position: absolute;
  top: 4px;
  left: 16px;
}
.order-info .promo-code.valid .input-promo-code input, .order-info .promo-code.invalid .input-promo-code input, .order-info .promo-code.loading .input-promo-code input {
  padding: 16px 16px 16px 48px;
  border-radius: 3px;
}
.order-info .promo-code.valid .input-promo-code .btn-apply, .order-info .promo-code.invalid .input-promo-code .btn-apply, .order-info .promo-code.loading .input-promo-code .btn-apply {
  display: none;
}
.order-info .promo-code.valid .input-promo-code .clear, .order-info .promo-code.invalid .input-promo-code .clear, .order-info .promo-code.loading .input-promo-code .clear {
  position: absolute;
  top: 9px;
  right: 12px;
  font-size: 14px;
  color: var(--neutral-base, #3e455e);
  display: block;
}
.order-info .promo-code.valid .input-promo-code:before {
  content: "\f05d";
  color: var(--success-base, #6cbf13);
}
.order-info .promo-code.valid .input-promo-code input {
  border-color: var(--success-base, #6cbf13);
}
.order-info .promo-code.valid .code-msg {
  display: block;
  color: var(--success-base, #6cbf13);
}
.order-info .promo-code.valid small {
  display: block;
}
.order-info .promo-code.invalid .input-promo-code:before {
  content: "\f05c";
  color: var(--warning-base, #fc5353);
}
.order-info .promo-code.invalid .input-promo-code input {
  border-color: var(--warning-base, #fc5353);
}
.order-info .promo-code.invalid .code-msg {
  display: block;
  color: var(--warning-base, #fc5353);
}
.order-info .promo-code.loading .input-promo-code:before {
  content: "";
  width: 14px;
  height: 14px;
  margin-top: 10px;
  border: 2px solid var(--brand-base, #022e69);
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 0.8s linear infinite;
  opacity: 0.8;
  color: var(--neutral-base, #3e455e);
}
.order-info .promo-code.loading .input-promo-code input {
  border-color: var(--neutral-base, #3e455e);
}
.order-info .promo-code.loading .code-msg {
  display: block;
  color: var(--neutral-base, #3e455e);
}
.order-info .order-info-line {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 12px;
}
.order-info .order-info-line:last-of-type {
  margin-bottom: 0;
}
.order-info .order-info-line .title, .order-info .order-info-line .value {
  font-family: var(--paragraph-font, "Roboto");
  font-size: 16px;
  color: var(--neutral-base, #3e455e);
}
.order-info .order-info-line .title {
  font-weight: 600;
}
.order-info .order-info-line .value {
  font-weight: 400;
}
.order-info .order-info-line .value.price-off {
  text-decoration: line-through;
}
.order-info .order-info-header {
  background-color: #fff;
  padding: 24px;
  margin-bottom: 3px;
}
.order-info .order-info-header h5 {
  margin-bottom: 8px;
}
.order-info .order-info-header h3 {
  display: inline-block;
  margin-bottom: 0;
}
.order-info .order-info-header .freetrial-tag {
  display: inline-block;
  margin-left: 4px;
  padding: 2px 12px;
  border: solid 1px var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  border-radius: 99px;
  font-size: 12px;
  color: var(--neutral-base, #3e455e);
  -ms-transform: translateY(-3px);
      transform: translateY(-3px);
}
.order-info .order-info-header .payment-recurrence-options {
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-top: 16px;
}
.order-info .order-info-header .payment-recurrence-options .payment-recurrence {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 8px;
  padding: 16px 64px 16px 16px;
  border-radius: 3px;
  font-family: var(--paragraph-font, "Roboto");
  font-size: 14px;
  font-weight: 400;
  border: solid 1px #A1B3C9;
  transition: 0.2s;
  cursor: pointer;
  max-height: 56px;
}
.order-info .order-info-header .payment-recurrence-options .payment-recurrence:has(input[type=radio]:checked) {
  border-color: #137df7;
  color: #137df7;
}
.order-info .order-info-header .payment-recurrence-options .payment-recurrence label {
  margin-bottom: 0;
  cursor: pointer;
}
.order-info .order-info-header .payment-recurrence-options .payment-recurrence:hover, .order-info .order-info-header .payment-recurrence-options .payment-recurrence.checked {
  border-color: #137df7;
}
.order-info .order-info-body {
  padding: 24px;
  background-color: #fff;
  margin-bottom: 3px;
}
.order-info .order-info-body .order-info-link {
  margin-top: 24px;
}
.order-info .order-info-footer {
  padding: 24px;
  background-color: #E8ECF1;
}
.order-info .order-info-footer .order-info-line {
  position: relative;
}
.order-info .order-info-footer .order-info-line .title, .order-info .order-info-footer .order-info-line .value {
  font-size: 20px;
}
.order-info .order-info-footer.promo-code-applied .value {
  -ms-transform: translateY(-9px);
      transform: translateY(-9px);
}
.order-info .order-info-footer.promo-code-applied .save-info {
  position: absolute;
  right: 0;
  bottom: -12px;
  font-size: 14px;
  color: var(--highlight-base, #137df7);
}

.widget-section-header {
  padding-top: 48px;
  padding-bottom: 48px;
}
.widget-section-header .title, .widget-section-header .subtitle {
  text-align: center;
}
.widget-section-header .title {
  color: var(--neutral-base, #3e455e);
  font-family: var(--heading-font, "Rubik");
  margin-bottom: 4px;
}
.widget-section-header .subtitle {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  font-family: var(--paragraph-font, "Roboto");
  font-size: var(--font-size-18, 1.125em);
  margin-bottom: 0;
}

.modal-plan-info-checkout[data-type=cards] .modal-dialog, .modal-plan-info-checkout[data-type=cards-topics-type-2] .modal-dialog, .modal-plan-info-checkout[data-type=cards-topics-type-1] .modal-dialog, .modal-plan-info-checkout[data-type=cards-description] .modal-dialog, .modal-plan-info-checkout[data-type=cards-single] .modal-dialog {
  width: 300px;
}
.modal-plan-info-checkout[data-type=cards] .modal-dialog .modal-content, .modal-plan-info-checkout[data-type=cards-topics-type-2] .modal-dialog .modal-content, .modal-plan-info-checkout[data-type=cards-topics-type-1] .modal-dialog .modal-content, .modal-plan-info-checkout[data-type=cards-description] .modal-dialog .modal-content, .modal-plan-info-checkout[data-type=cards-single] .modal-dialog .modal-content {
  position: relative;
  padding: 24px;
}
.modal-plan-info-checkout[data-type=cards] .modal-dialog .modal-content .close, .modal-plan-info-checkout[data-type=cards-topics-type-2] .modal-dialog .modal-content .close, .modal-plan-info-checkout[data-type=cards-topics-type-1] .modal-dialog .modal-content .close, .modal-plan-info-checkout[data-type=cards-description] .modal-dialog .modal-content .close, .modal-plan-info-checkout[data-type=cards-single] .modal-dialog .modal-content .close {
  position: absolute;
  top: 6px;
  right: 11px;
  line-height: 1;
  margin-top: 0;
  outline: none;
  background: none;
  border: none;
  font-weight: 700;
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
}
.modal-plan-info-checkout[data-type=cards] .modal-body .content-block-title h3 {
  margin-bottom: 24px;
}
.modal-plan-info-checkout[data-type=cards] .modal-body .details-list {
  margin: 0;
  padding: 0;
  padding-inline-start: 0;
  list-style-type: none;
  position: relative;
}
.modal-plan-info-checkout[data-type=cards] .modal-body .details-list .card-content-item {
  margin-bottom: 24px;
}
.modal-plan-info-checkout[data-type=cards] .modal-body .pricing-plan-card-body .card-content-item:last-of-type .card-content-item-header.open:after {
  height: 1px;
}
.modal-plan-info-checkout[data-type=cards] .modal-body .pricing-plan-card-body .card-content-item:last-of-type .card-content-item-header:after {
  height: 0;
}
.modal-plan-info-checkout[data-type=cards] .modal-body .pricing-plan-card-body .card-content-item .card-content-item-header {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 4px;
  cursor: pointer;
}
.modal-plan-info-checkout[data-type=cards] .modal-body .pricing-plan-card-body .card-content-item .card-content-item-header:has(.paywalled) {
  cursor: default;
}
.modal-plan-info-checkout[data-type=cards] .modal-body .pricing-plan-card-body .card-content-item .card-content-item-header:after {
  content: "";
  height: 1px;
  background-color: #F4F5F6;
  width: 100%;
  position: absolute;
  bottom: -12px;
}
.modal-plan-info-checkout[data-type=cards] .modal-body .pricing-plan-card-body .card-content-item .card-content-item-header .counter, .modal-plan-info-checkout[data-type=cards] .modal-body .pricing-plan-card-body .card-content-item .card-content-item-header .paywalled, .modal-plan-info-checkout[data-type=cards] .modal-body .pricing-plan-card-body .card-content-item .card-content-item-header .unlimited {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background-color: #EAECEE;
  color: var(--neutral-base, #3e455e);
  font-size: var(--font-size-12, 0.75em);
}
.modal-plan-info-checkout[data-type=cards] .modal-body .pricing-plan-card-body .card-content-item .card-content-item-header .title {
  font-size: var(--font-size-14, 0.875em);
}
.modal-plan-info-checkout[data-type=cards] .modal-body .pricing-plan-card-body .card-content-item .card-content-item-header .fa-times {
  position: absolute;
  right: 0;
  top: 50%;
  -ms-transform: translateY(-50%) rotate(45deg);
      transform: translateY(-50%) rotate(45deg);
  font-size: 12px;
  transition: 0.3s;
}
.modal-plan-info-checkout[data-type=cards] .modal-body .pricing-plan-card-body .card-content-item .card-content-item-header.open {
  position: relative;
}
.modal-plan-info-checkout[data-type=cards] .modal-body .pricing-plan-card-body .card-content-item .card-content-item-header.open .fa-times {
  -ms-transform: translateY(-50%) rotate(0deg);
      transform: translateY(-50%) rotate(0deg);
}
.modal-plan-info-checkout[data-type=cards] .modal-body .pricing-plan-card-body .card-content-item .card-content-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.modal-plan-info-checkout[data-type=cards] .modal-body .pricing-plan-card-body .card-content-item .card-content-list li {
  font-size: var(--font-size-16, 1em);
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  padding-top: 12px;
}
.modal-plan-info-checkout[data-type=cards] .modal-body .pricing-plan-card-body .card-content-item .card-content-list li a.pricing-example {
  color: var(--link-base, #3ebaf6);
  width: 100%;
  font-size: 14px;
  display: block;
  margin-left: 28px;
  transition: 0.2s;
}
.modal-plan-info-checkout[data-type=cards] .modal-body .pricing-plan-card-body .card-content-item .card-content-list li a.pricing-example:hover, .modal-plan-info-checkout[data-type=cards] .modal-body .pricing-plan-card-body .card-content-item .card-content-list li a.pricing-example:focus, .modal-plan-info-checkout[data-type=cards] .modal-body .pricing-plan-card-body .card-content-item .card-content-list li a.pricing-example:focus-within, .modal-plan-info-checkout[data-type=cards] .modal-body .pricing-plan-card-body .card-content-item .card-content-list li a.pricing-example:focus-visible {
  opacity: 0.5;
}
.modal-plan-info-checkout[data-type=cards] .modal-body .pricing-plan-card-body .card-content-item .card-content-list li a.pricing-example:active, .modal-plan-info-checkout[data-type=cards] .modal-body .pricing-plan-card-body .card-content-item .card-content-list li a.pricing-example:focus, .modal-plan-info-checkout[data-type=cards] .modal-body .pricing-plan-card-body .card-content-item .card-content-list li a.pricing-example:focus-within, .modal-plan-info-checkout[data-type=cards] .modal-body .pricing-plan-card-body .card-content-item .card-content-list li a.pricing-example:focus-visible {
  border: none;
}
.modal-plan-info-checkout[data-type=cards] .modal-body .pricing-plan-card-body .card-content-item .card-content-list li:before {
  content: "\f00c";
  font-family: "FontAwesome";
  display: inline-block;
  position: relative;
  margin-right: 8px;
  color: var(--highlight-base, #137df7);
}
.modal-plan-info-checkout[data-type=cards] .modal-body .pricing-plan-card-body .card-content-item .card-content-list li:first-of-type {
  padding-top: 32px;
}
.modal-plan-info-checkout[data-type=cards-topics-type-2] .pricing-plan-details-content .details-list {
  margin: 0;
  padding: 0px;
  list-style-type: none;
  position: relative;
}
.modal-plan-info-checkout[data-type=cards-topics-type-2] .pricing-plan-details-content .details-list:first-of-type:before {
  content: "";
  height: 1px;
  position: absolute;
  top: 0;
  left: -39px;
  width: 135%;
  background-color: #EAECEE;
}
.modal-plan-info-checkout[data-type=cards-topics-type-2] .pricing-plan-details-content .details-list li {
  margin-bottom: 8px;
  font-weight: 400;
  font-size: var(--font-size-14, 0.875em);
}
.modal-plan-info-checkout[data-type=cards-topics-type-2] .pricing-plan-details-content .details-list li:last-of-type {
  margin-bottom: 0;
}
.modal-plan-info-checkout[data-type=cards-topics-type-2] .pricing-plan-details-content .details-list li.title {
  font-weight: 600;
}
.modal-plan-info-checkout[data-type=cards-topics-type-2] .pricing-plan-details-content .details-list li:not(.title):not(.unlimited):not(.featured):not(.paywalled):before {
  content: "";
  height: 4px;
  width: 14px;
  border-radius: 3px;
  background-color: var(--highlight-base, #137df7);
  display: inline-block;
  position: relative;
  margin-right: 8px;
  -ms-transform: translateY(-3px);
      transform: translateY(-3px);
  width: 14px;
  text-align: center;
}
.modal-plan-info-checkout[data-type=cards-topics-type-2] .pricing-plan-details-content .details-list li.unlimited:before {
  content: "∞";
  font-family: "Roboto";
  font-size: 20px;
  -ms-transform: translateY(2px);
      transform: translateY(2px);
}
.modal-plan-info-checkout[data-type=cards-topics-type-2] .pricing-plan-details-content .details-list li.featured:before {
  content: "\f005";
}
.modal-plan-info-checkout[data-type=cards-topics-type-2] .pricing-plan-details-content .details-list li.paywalled:before {
  content: "\f13e";
}
.modal-plan-info-checkout[data-type=cards-topics-type-2] .pricing-plan-details-content .details-list li:first-of-type:before {
  display: none;
}
.modal-plan-info-checkout[data-type=cards-topics-type-1] .details-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: relative;
}
.modal-plan-info-checkout[data-type=cards-topics-type-1] .details-list:before {
  content: "";
  height: 1px;
  position: absolute;
  top: -10px;
  left: -39px;
  width: 135%;
  background-color: #EAECEE;
}
.modal-plan-info-checkout[data-type=cards-topics-type-1] .details-list li {
  margin-bottom: 8px;
  font-weight: 400;
  font-size: var(--font-size-14, 0.875em);
}
.modal-plan-info-checkout[data-type=cards-topics-type-1] .details-list li:last-of-type {
  margin-bottom: 0;
}
.modal-plan-info-checkout[data-type=cards-topics-type-1] .details-list li:before {
  content: "\f00c";
  font-family: "FontAwesome";
  display: inline-block;
  position: relative;
  margin-right: 8px;
  color: var(--highlight-base, #137df7);
  width: 14px;
  text-align: center;
  width: 14px;
}
.modal-plan-info-checkout[data-type=cards-topics-type-1] .details-list li.unlimited:before {
  content: "∞";
  font-family: "Roboto";
  font-size: 20px;
  -ms-transform: translateY(2px);
      transform: translateY(2px);
}
.modal-plan-info-checkout[data-type=cards-topics-type-1] .details-list li.featured:before {
  content: "\f005";
}
.modal-plan-info-checkout[data-type=cards-topics-type-1] .details-list li.paywalled:before {
  content: "\f13e";
}
.modal-plan-info-checkout[data-type=cards-description] .card-description {
  position: relative;
  font-size: var(--font-size-14, 0.875em);
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
.modal-plan-info-checkout[data-type=cards-description] .card-description:before {
  content: "";
  height: 1px;
  position: absolute;
  top: -10px;
  left: -39px;
  width: 135%;
  background-color: #EAECEE;
}
.modal-plan-info-checkout[data-type=cards-single] .modal-dialog {
  width: 840px;
}
.modal-plan-info-checkout[data-type=cards-single] .modal-dialog .modal-content, .modal-plan-info-checkout[data-type=cards-single] .modal-dialog .modal-body {
  padding: 0;
}
.modal-plan-info-checkout[data-type=cards-single] .modal-dialog .pricing-plan-card {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  border-radius: 3px;
}
.modal-plan-info-checkout[data-type=cards-single] .modal-dialog .pricing-plan-card.alt-order .image-block {
  -ms-flex-order: 2;
      order: 2;
}
.modal-plan-info-checkout[data-type=cards-single] .modal-dialog .pricing-plan-card.alt-order .content-block {
  -ms-flex-order: 1;
      order: 1;
}
.modal-plan-info-checkout[data-type=cards-single] .modal-dialog .pricing-plan-card .image-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 50%;
  overflow: hidden;
}
.modal-plan-info-checkout[data-type=cards-single] .modal-dialog .pricing-plan-card .image-block img {
  display: block;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-plan-info-checkout[data-type=cards-single] .modal-dialog .pricing-plan-card .content-block {
  width: 50%;
  background-color: #fff;
  padding: 24px 24px 24px 32px;
}
.modal-plan-info-checkout[data-type=cards-single] .modal-dialog .pricing-plan-card .content-block .content-block-header .content-block-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 18px;
}
.modal-plan-info-checkout[data-type=cards-single] .modal-dialog .pricing-plan-card .content-block .content-block-header .content-block-title h3 {
  font-size: var(--font-size-20, 1.25em);
  margin-bottom: 0;
}
.modal-plan-info-checkout[data-type=cards-single] .modal-dialog .pricing-plan-card .content-block .content-block-header .description {
  font-size: var(--font-size-14, 0.875em);
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
.modal-plan-info-checkout[data-type=cards-single] .modal-dialog .pricing-plan-card .content-block .content-block-body .details-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: relative;
}
.modal-plan-info-checkout[data-type=cards-single] .modal-dialog .pricing-plan-card .content-block .content-block-body .details-list li {
  margin-bottom: 8px;
  font-weight: 400;
  font-size: var(--font-size-16, 1em);
}
.modal-plan-info-checkout[data-type=cards-single] .modal-dialog .pricing-plan-card .content-block .content-block-body .details-list li:last-of-type {
  margin-bottom: 0;
}
.modal-plan-info-checkout[data-type=cards-single] .modal-dialog .pricing-plan-card .content-block .content-block-body .details-list li:before {
  content: "\f00c";
  font-family: "FontAwesome";
  display: inline-block;
  position: relative;
  margin-right: 8px;
  color: var(--highlight-base, #137df7);
  width: 14px;
  text-align: center;
}
.modal-plan-info-checkout[data-type=cards-single] .modal-dialog .pricing-plan-card .content-block .content-block-body .details-list li.unlimited:before {
  content: "∞";
  font-family: "Roboto";
  font-size: 20px;
  -ms-transform: translateY(2px);
      transform: translateY(2px);
}
.modal-plan-info-checkout[data-type=cards-single] .modal-dialog .pricing-plan-card .content-block .content-block-body .details-list li.featured:before {
  content: "\f005";
}
.modal-plan-info-checkout[data-type=cards-single] .modal-dialog .pricing-plan-card .content-block .content-block-body .details-list li.paywalled:before {
  content: "\f13e";
}

.payment-overview {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 16px;
  padding: 24px 40px;
  width: 100%;
  background-color: #fff;
  border-radius: var(--border-radius, 3px);
  border-left: 5px solid var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
}
.payment-overview.success {
  border-color: var(--success-base, #6cbf13);
}
.payment-overview.success .payment-overview-header .fa {
  color: var(--success-base, #6cbf13);
}
.payment-overview .payment-overview-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--neutral-base, #3e455e);
  margin-bottom: 12px;
}
.payment-overview .payment-overview-title-2 {
  margin-top: 32px;
  font-size: 16px;
  font-weight: 600;
}
.payment-overview .payment-overview-subtitle {
  font-size: 16px;
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
.payment-overview .payment-overview-paragraph {
  margin: 16px 0;
  color: var(--neutral-base, #3e455e);
  font-size: 16px;
  font-weight: 400;
}
.payment-overview .payment-overview-header .fa {
  color: var(--neutral-base, #3e455e);
  font-size: 38px;
  margin-bottom: 16px;
}
.payment-overview .payment-overview-header .fa.fa-check-circle.invoice {
  color: var(--success-base, #6cbf13);
}
.payment-overview .payment-overview-content {
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
}
.payment-overview .payment-overview-content:has(.order-tip) .payment-overview-section .cta-block + .payment-overview-title-2 + .new-content-list.plans,
.payment-overview .payment-overview-content:has(.order-tip) .payment-overview-section .cta-block + .payment-overview-subtitle + .new-content-list.plans,
.payment-overview .payment-overview-content:has(.order-tip) .payment-overview-section .cta-block + .payment-overview-paragraph + .new-content-list.plans {
  max-height: 346px;
}
.payment-overview .payment-overview-content:has(.order-tip) .payment-overview-section .new-content-list.plans {
  max-height: 490px;
}
@media screen and (max-width: 992px) {
  .payment-overview .payment-overview-content {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
.payment-overview .payment-overview-content .payment-overview-section {
  width: 50%;
}
@media screen and (max-width: 992px) {
  .payment-overview .payment-overview-content .payment-overview-section {
    width: 100%;
  }
}
.payment-overview .payment-overview-content .payment-overview-section.left {
  -ms-flex: 1;
      flex: 1;
}
.payment-overview .payment-overview-content .payment-overview-section.right {
  position: relative;
  max-height: 100%;
}
.payment-overview .payment-overview-content .payment-overview-section .link-print-invoice {
  display: block;
  margin-top: 24px;
  color: var(--highlight-base, #137df7);
  transition: 0.2s;
}
.payment-overview .payment-overview-content .payment-overview-section .link-print-invoice .fa {
  color: var(--highlight-base, #137df7);
  font-size: 20px;
}
.payment-overview .payment-overview-content .payment-overview-section .link-print-invoice:hover {
  opacity: 0.8;
  text-decoration: none;
}
.payment-overview .payment-overview-content .payment-overview-section .order-info {
  margin-top: 16px;
  padding: 20px;
  border: solid 2px var(--neutral-transp-10, rgba(62, 69, 94, 0.1));
  border-radius: var(--border-radius, 3px);
}
.payment-overview .payment-overview-content .payment-overview-section .order-info .order-info-line {
  margin-bottom: 8px;
}
.payment-overview .payment-overview-content .payment-overview-section .order-info .order-info-line:last-of-type {
  margin-bottom: 0;
}
.payment-overview .payment-overview-content .payment-overview-section .order-info .order-info-header, .payment-overview .payment-overview-content .payment-overview-section .order-info .order-info-body {
  padding: 0;
}
.payment-overview .payment-overview-content .payment-overview-section .order-info .order-info-header .price {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: baseline;
      align-items: baseline;
  gap: 4px;
  margin: 16px 0;
}
.payment-overview .payment-overview-content .payment-overview-section .order-info .order-info-header .price .value {
  font-size: 24px;
  color: var(--highlight-base, #137df7);
  font-weight: 600;
}
.payment-overview .payment-overview-content .payment-overview-section .order-info-footer {
  margin-top: 16px;
  padding: 24px;
  background-color: #E8ECF1;
}
.payment-overview .payment-overview-content .payment-overview-section .order-info-footer .order-info-line {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 100%;
}
.payment-overview .payment-overview-content .payment-overview-section .order-info-footer .order-info-line .title {
  font-weight: 700;
}
.payment-overview .payment-overview-content .payment-overview-section .order-info-footer .order-info-line .title, .payment-overview .payment-overview-content .payment-overview-section .order-info-footer .order-info-line .value {
  font-size: 20px;
}
.payment-overview .payment-overview-content .payment-overview-section .order-tip {
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: 24px;
  padding: 24px;
  border: solid 1px #E3ECEF;
  background-color: #F3F5F8;
  border-radius: var(--border-radius, 3px);
}
.payment-overview .payment-overview-content .payment-overview-section .order-tip .fa {
  color: var(--neutral-base, #3e455e);
  font-size: 16px;
  padding: 3px;
  border: solid 2px var(--neutral-base, #3e455e);
  border-radius: 99px;
  height: 24px;
  min-width: 24px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.payment-overview .payment-overview-content .payment-overview-section .order-tip p {
  font-size: 14px;
  margin: 0;
  font-weight: 400;
  color: var(--neutral-base, #3e455e);
  -ms-transform: translateY(-3px);
      transform: translateY(-3px);
}
.payment-overview .payment-overview-content .payment-overview-section .cta-block.exclusive-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  padding: 24px 40px 24px 16px;
  min-height: 0;
  color: var(--neutral-base, #3e455e);
}
@media screen and (max-width: 992px) {
  .payment-overview .payment-overview-content .payment-overview-section .cta-block.exclusive-content {
    padding: 24px 16px;
  }
}
.payment-overview .payment-overview-content .payment-overview-section .cta-block.exclusive-content:hover {
  text-decoration: none;
}
.payment-overview .payment-overview-content .payment-overview-section .cta-block.exclusive-content:after {
  content: "\f054";
  font-family: "FontAwesome";
  position: absolute;
  right: 12px;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
}
.payment-overview .payment-overview-content .payment-overview-section .cta-block.exclusive-content img {
  max-width: 20%;
}
.payment-overview .payment-overview-content .payment-overview-section .cta-block.exclusive-content p {
  font-size: 14px;
  margin-bottom: 0;
}
.payment-overview .payment-overview-content .payment-overview-section .new-content-list.plans {
  display: block;
  padding: 0;
  margin: 16px 0 110px 0;
  max-width: none;
  overflow-y: auto;
  max-height: 350px;
}
.payment-overview .payment-overview-content .payment-overview-section .new-content-list.plans::-webkit-scrollbar-track {
  background-color: #d5e1e8;
}
.payment-overview .payment-overview-content .payment-overview-section .new-content-list.plans::-webkit-scrollbar {
  height: 6px;
  width: 8px;
  background-color: #becfd7;
}
.payment-overview .payment-overview-content .payment-overview-section .new-content-list.plans::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background-color: #becfd7;
}
.payment-overview .payment-overview-content .payment-overview-section .new-content-list.plans .new-content-item {
  height: 54px;
  padding: 4px 16px;
}
.payment-overview .payment-overview-content .payment-overview-section .new-content-list.plans .new-content-item .info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 8px;
}
.payment-overview .payment-overview-content .payment-overview-section .new-content-list.plans .new-content-item .info a {
  font-weight: 500;
  color: var(--highlight-base, #137df7);
  transition: 0.2s;
}
.payment-overview .payment-overview-content .payment-overview-section .new-content-list.plans .new-content-item .info a:hover {
  text-decoration: none;
  opacity: 0.8;
}
.payment-overview .payment-overview-content .payment-overview-section .new-content-list.plans .new-content-item .info .count {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border-radius: var(--border-radius, 3px);
  padding: 8px;
  background-color: var(--highlight-transp-10, rgba(19, 125, 247, 0.1));
  min-height: 40px;
  min-width: 40px;
}
.payment-overview .payment-overview-content .payment-overview-section .cta-block + .payment-overview-title-2 + .new-content-list.plans {
  max-height: 218px;
}
.payment-overview .payment-overview-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  gap: 16px;
  margin-top: 8px;
}
.payment-overview .payment-overview-footer .button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 16px 0;
  margin-top: 24px;
  width: 100%;
}
.payment-overview .payment-overview-footer .button:not(:only-child) {
  width: 50%;
}
.payment-overview .payment-overview-footer .button.is-secondary {
  background-color: #fff;
  border: solid 1px var(--neutral-base, #3e455e);
}
.payment-overview .payment-overview-footer .button.is-secondary:hover {
  opacity: 0.8;
}
.payment-overview .payment-overview-footer .button.is-secondary:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #CFD0D6;
  cursor: default;
}
.payment-overview .payment-overview-footer .button.is-secondary:after {
  content: attr(data-title);
  position: absolute;
  top: -10px;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  padding: 0 8px;
  font-size: 18px;
  background-color: #fff;
  cursor: default;
}

.payment-status {
  width: 100%;
  padding: 24px;
  background-color: #E8ECF1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-direction: column;
      flex-direction: column;
  max-width: 720px;
  margin: 24px auto 0;
}
.payment-status.plan-cant-claim-listing {
  margin-bottom: -32px;
}
.payment-status .fa {
  margin-bottom: 12px;
  font-size: 38px;
}
.payment-status .fa.fa-check-circle {
  color: #6cbf13;
}
.payment-status .fa.fa-exclamation-circle {
  color: #fc5353;
}
.payment-status h2 {
  font-family: var(--heading-font, "Rubik");
  font-size: 24px;
  font-weight: 600;
  color: var(--neutral-base, #3e455e);
  margin-bottom: 12px;
}
.payment-status p {
  font-family: var(--paragraph-font, "Roboto");
  font-size: 16px;
  font-weight: 400;
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  max-width: 620px;
}
.payment-status .button {
  width: 288px;
  text-align: center;
  height: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.payment-status img {
  max-width: 100%;
  -ms-transform: translateY(50px);
      transform: translateY(50px);
}

.maintenance-page {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  height: calc(100vh - 132px);
  max-width: 700px;
  -ms-flex-direction: column;
      flex-direction: column;
  font-family: "Roboto";
  text-align: center;
  margin: 0 auto;
}
.maintenance-page .logo {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  width: 100%;
}
.maintenance-page .logo img {
  width: 250px;
  height: auto;
}
.maintenance-page .image-container img {
  max-width: 100%;
  height: auto;
}
.maintenance-page h2 {
  color: var(--neutral-base, #3e455e);
  margin-top: 48px;
  margin-bottom: 0;
  font-size: 32px;
}
.maintenance-page p {
  color: var(--neutral-base, #3e455e);
  margin-top: 24px;
  margin-bottom: 0;
  font-size: 24px;
}

/* ARQUIVOS DE PAGINAS */
/* ARQUIVOS DE MEMBERS */
.form-edit-alert {
  background: var(--attention-light, rgb(255, 222.6, 153));
  line-height: 1;
  padding: 12px;
  border-radius: var(--border-radius, 3px);
  border: 1px solid var(--attention-base, #ffae00);
  margin-bottom: 16px;
}
.form-edit-alert.alert-success {
  background: var(--success-light, rgb(196.2, 229.4, 160.6));
  border-color: var(--success-base, #6cbf13);
}

.form-wrapper {
  position: relative;
}

.datepicker {
  opacity: 1;
}
.datepicker table {
  width: 100%;
}
.datepicker table .datepicker-switch {
  text-align: center;
}

.alert {
  line-height: 1;
  padding: 12px;
  border-radius: var(--border-radius, 3px);
  border: 1px solid transparent;
  margin-bottom: 16px;
}
.alert.alert-warning {
  border-color: var(--attention-base, #ffae00);
  background: var(--attention-light, rgb(255, 222.6, 153));
  color: var(--attention-dark, rgb(178.5, 121.8, 0));
}
.alert.alert-danger {
  border-color: var(--warning-base, #fc5353);
  background: var(--warning-light, rgb(253.8, 186.2, 186.2));
  color: var(--warning-dark, rgb(176.4, 58.1, 58.1));
}
.alert.alert-success {
  border-color: var(--success-base, #6cbf13);
  background: var(--success-light, rgb(196.2, 229.4, 160.6));
  color: var(--success-dark, rgb(75.6, 133.7, 13.3));
}

.form-edit-alert-success {
  background: var(--success-light, rgb(196.2, 229.4, 160.6));
  line-height: 1;
  padding: 12px;
  border-radius: var(--border-radius, 3px);
  border: 1px solid var(--success-base, #6cbf13);
  margin-bottom: 16px;
}

.bootbox .modal-body .bootbox-close-button {
  display: none;
}
.bootbox .modal-footer .btn {
  padding: 0;
  line-height: 1.15;
  border: none;
  box-shadow: none;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  text-decoration: none;
  display: inline-block;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: var(--border-radius-button, 3px);
  font-size: 0.875em;
}
.bootbox .modal-footer .btn:focus, .bootbox .modal-footer .btn:visited, .bootbox .modal-footer .btn:active {
  outline: none;
}
.bootbox .modal-footer .btn:focus, .bootbox .modal-footer .btn:visited, .bootbox .modal-footer .btn:active, .bootbox .modal-footer .btn:hover {
  text-decoration: none;
}
.bootbox .modal-footer .btn-default {
  background: var(--neutral-transp-10, rgba(62, 69, 94, 0.1));
  color: var(--neutral-base, #3e455e);
}
.bootbox .modal-footer .btn-default:focus, .bootbox .modal-footer .btn-default:visited, .bootbox .modal-footer .btn-default:active {
  background: var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
}
.bootbox .modal-footer .btn-default:hover {
  background: var(--neutral-transp-15, rgba(62, 69, 94, 0.15));
}
.bootbox .modal-footer .btn-default.is-loading {
  background: var(--neutral-transp-15, rgba(62, 69, 94, 0.15));
}
.bootbox .modal-footer .btn-default.disabled {
  opacity: 0.5;
  background: var(--neutral-transp-10, rgba(62, 69, 94, 0.1));
  cursor: not-allowed;
}
.bootbox .modal-footer .btn-primary {
  background: var(--highlight-base, #137df7);
  color: rgb(240.9754098361, 247.2745901639, 254.5245901639);
}
.bootbox .modal-footer .btn-primary:focus, .bootbox .modal-footer .btn-primary:visited, .bootbox .modal-footer .btn-primary:active {
  background: var(--highlight-dark, rgb(16.15, 106.25, 209.95));
}
.bootbox .modal-footer .btn-primary:hover {
  background: var(--highlight-light-2, rgb(89.8, 164, 249.4));
}
.bootbox .modal-footer .btn-primary.disabled {
  opacity: 0.5;
  background: var(--highlight-base, #137df7);
  cursor: not-allowed;
}

.img-fluid {
  max-width: 100%;
}

.members-page {
  padding: 32px 0;
  background: #f4f8fa;
  min-height: calc(100vh - 200px);
}
.members-page .members-title {
  position: relative;
  margin-bottom: 32px;
}
.members-page .members-title h1 {
  font-family: "Roboto";
  font-size: 32px;
  font-weight: 500;
  color: #3f455c;
}
.members-page .members-title .manage-dropdown {
  position: absolute;
  top: 0;
  right: 0;
}
.members-page .members-title .manage-dropdown.opened .manage-toggler .fa {
  -ms-transform: rotate(180deg);
      transform: rotate(180deg);
}
.members-page .members-title .manage-dropdown.opened .manage-content {
  display: block;
}
.members-page .members-title .manage-dropdown .manage-toggler {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 3px;
  background-color: #fff;
  width: max-content;
  border: solid 1px #A1B3C9;
  cursor: pointer;
  transition: 0.2s;
}
.members-page .members-title .manage-dropdown .manage-toggler .fa {
  transition: 0.2s;
}
.members-page .members-title .manage-dropdown .manage-toggler:hover {
  opacity: 0.8;
}
.members-page .members-title .manage-dropdown .manage-content {
  display: none;
  position: absolute;
  top: 60px;
  right: 0;
  z-index: 5;
  background-color: #fff;
  border: solid 1px #A1B3C9;
  border-radius: 3px;
  width: 530px;
  overflow: hidden;
}
.members-page .members-title .manage-dropdown .manage-content .content-title {
  padding: 12px 16px;
  background-color: #F3F5F8;
  font-size: 12px;
  color: var(--neutral-base, #3e455e);
  border-bottom: solid 1px #A1B3C9;
  font-weight: bold;
}
.members-page .members-title .manage-dropdown .manage-content .content-item {
  display: block;
  padding: 12px 16px;
  background-color: #fff;
  font-size: 14px;
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  transition: 0.2s;
}
.members-page .members-title .manage-dropdown .manage-content .content-item ~ .content-title {
  border-top: solid 1px #A1B3C9;
}
.members-page .members-title .manage-dropdown .manage-content .content-item .fa {
  font-size: 14px;
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  margin-right: 12px;
}
.members-page .members-title .manage-dropdown .manage-content .content-item:hover {
  text-decoration: none;
  opacity: 0.8;
}
.members-page .members-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 40px;
}
.members-page .members-wrapper-centered {
  text-align: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.members-page .members-wrapper-centered .members-title {
  width: 100%;
}
.members-page .members-wrapper-centered .members-title h1, .members-page .members-wrapper-centered .members-title p {
  -ms-flex-pack: center;
      justify-content: center;
}
.members-page .members-wrapper:last-of-type {
  margin-bottom: 0;
}
.members-page .members-wrapper #account .col-sm-4, .members-page .members-wrapper #account .col-md-4 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .members-page .members-wrapper #account .col-sm-4, .members-page .members-wrapper #account .col-md-4 {
    width: calc(33.3333333333% - 6px);
  }
}
.members-page .members-wrapper #account .col-md-6 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .members-page .members-wrapper #account .col-md-6 {
    width: calc(50% - 6px);
  }
}
.members-page .members-wrapper .members-sidebar {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .members-page .members-wrapper .members-sidebar {
    width: 25%;
  }
}
.members-page .members-wrapper .members-sidebar .new-content .button.is-open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.members-page .members-wrapper .members-sidebar .new-content .button[disabled] {
  cursor: auto;
  background-color: var(--highlight-light-2, rgb(89.8, 164, 249.4));
}
.members-page .members-wrapper .members-sidebar .new-content .new-content-list {
  background: white;
  padding: 16px;
  text-align: center;
  display: none;
}
.members-page .members-wrapper .members-sidebar .new-content .new-content-list .new-content-item {
  color: var(--neutral-base, #3e455e);
  text-decoration: none;
  display: block;
}
.members-page .members-wrapper .members-sidebar .new-content .new-content-list .new-content-item:not(:first-child):not(.product) {
  margin-top: 8px;
}
.members-page .members-wrapper .members-sidebar .new-content .new-content-list.plans .new-content-item {
  display: -ms-flexbox;
  display: flex;
}
.members-page .members-wrapper .members-sidebar .new-content .new-content-list.plans .new-content-item:not(:first-child):not(.product) {
  margin-top: 12px;
}
.members-page .members-wrapper .members-sidebar .members-cards {
  margin-top: 16px;
  overflow-y: auto;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 992px) {
  .members-page .members-wrapper .members-sidebar .members-cards {
    max-height: 550px;
    display: block;
  }
}
.members-page .members-wrapper .members-sidebar .members-cards .members-item {
  background: white;
  border: 1px solid #e3ecf0;
  border-radius: var(--border-radius, 3px);
  cursor: pointer;
  transition: 0.2s ease-in-out;
  min-width: 96%;
}
.members-page .members-wrapper .members-sidebar .members-cards .members-item:not(:first-child) {
  margin-left: 8px;
}
@media screen and (min-width: 375px) {
  .members-page .members-wrapper .members-sidebar .members-cards .members-item {
    min-width: 85%;
  }
}
@media screen and (min-width: 768px) {
  .members-page .members-wrapper .members-sidebar .members-cards .members-item {
    min-width: 55%;
  }
}
@media screen and (min-width: 992px) {
  .members-page .members-wrapper .members-sidebar .members-cards .members-item {
    margin-left: 0;
    min-width: auto;
  }
  .members-page .members-wrapper .members-sidebar .members-cards .members-item:not(:first-child) {
    margin-top: 8px;
    margin-left: 0;
  }
}
.members-page .members-wrapper .members-sidebar .members-cards .members-item:hover {
  border-color: var(--highlight-base, #137df7);
}
.members-page .members-wrapper .members-sidebar .members-cards .members-item[is-active=true] {
  border-left: 5px solid var(--highlight-base, #137df7);
}
.members-page .members-wrapper .members-sidebar .members-cards .members-item[is-active=true] .card-title, .members-page .members-wrapper .members-sidebar .members-cards .members-item[is-active=true] .card-type {
  color: var(--highlight-base, #137df7);
}
.members-page .members-wrapper .members-sidebar .members-cards .members-item .cards-content {
  padding: 24px;
}
.members-page .members-wrapper .members-sidebar .members-cards .members-item .cards-content .card-title {
  line-height: 1;
  font-weight: bold;
}
.members-page .members-wrapper .members-sidebar .members-cards .members-item .cards-content .card-type {
  margin-top: 16px;
  line-height: 1;
}
.members-page .members-wrapper .members-sidebar .members-cards .members-item .cards-content .card-type .fa {
  margin-right: 8px;
}
.members-page .members-wrapper .members-sidebar .members-cards .members-item .cards-content .card-status {
  margin-top: 12px;
  font-size: 0.75em;
  line-height: 1;
}
.members-page .members-wrapper .members-sidebar .members-cards .members-item .cards-content .card-status [class^=status-] {
  display: block;
  position: relative;
  padding-left: 18px;
}
.members-page .members-wrapper .members-sidebar .members-cards .members-item .cards-content .card-status [class^=status-]:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 0;
  left: 0;
  border-radius: 999px;
}
.members-page .members-wrapper .members-sidebar .members-cards .members-item .cards-content .card-status .status-active:before {
  background: var(--success-base, #6cbf13);
}
.members-page .members-wrapper .members-sidebar .members-cards .members-item .cards-content .card-status .status-suspended:before {
  background: #a3bac5;
}
.members-page .members-wrapper .members-sidebar .members-cards .members-item .cards-content .card-status .status-expired:before {
  background: var(--warning-base, #fc5353);
}
.members-page .members-wrapper .members-sidebar .members-cards .members-item .cards-content .card-status .status-pending:before {
  background: var(--attention-base, #ffae00);
}
.members-page .members-wrapper .members-sidebar .members-cards .members-item .cards-content .card-status.status-scheduled {
  color: #3d455e;
  opacity: 0.75;
}
.members-page .members-wrapper .members-sidebar .members-cards .members-item .cards-actions {
  background: var(--neutral-transp-95, );
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  line-height: 1;
}
.members-page .members-wrapper .members-sidebar .members-cards .members-item .cards-actions .action-link {
  font-size: 0.875em;
  padding: 8px;
  text-decoration: none;
  color: var(--neutral-base, #3e455e);
  transition: 0.2s ease-in-out;
  -ms-flex-positive: 1;
      flex-grow: 1;
  text-align: center;
  outline: none;
}
.members-page .members-wrapper .members-sidebar .members-cards .members-item .cards-actions .action-link:hover {
  background: var(--highlight-base, #137df7);
  color: var(--color-white-base, white);
}
.members-page .members-wrapper .members-content {
  width: 100%;
  margin-top: 48px;
}
@media screen and (min-width: 992px) {
  .members-page .members-wrapper .members-content {
    width: calc(75% - 48px);
    margin-top: 0;
  }
}
.members-page .members-wrapper .profile-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  margin-bottom: 32px;
  -ms-flex-direction: column;
      flex-direction: column;
}
@media screen and (min-width: 768px) {
  .members-page .members-wrapper .profile-header {
    -ms-flex-direction: row;
        flex-direction: row;
  }
}
.members-page .members-wrapper .profile-header h2 {
  font-size: 32px;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .members-page .members-wrapper .profile-header h2 {
    margin-bottom: 0;
  }
}
.members-page .members-wrapper .profile-header .button {
  height: fit-content;
  width: 100%;
  text-align: center;
  padding: 8px 16px;
}
@media screen and (min-width: 768px) {
  .members-page .members-wrapper .profile-header .button {
    width: auto;
    padding: 8px 100px;
  }
}
.members-page .members-wrapper .profile-header .new-content {
  position: relative;
}
.members-page .members-wrapper .profile-header .new-content.active .new-content-list {
  display: block;
}
.members-page .members-wrapper .profile-header .new-content .new-content-list {
  position: absolute;
  width: 100%;
  z-index: 1;
  background: white;
  text-align: center;
  box-shadow: 0 9px 25px -6px rgba(0, 0, 0, 0.15);
  display: none;
}
.members-page .members-wrapper .profile-header .new-content .new-content-list .new-content-item {
  color: var(--neutral-base, #3e455e);
  text-decoration: none;
  display: block;
  padding: 8px 0;
  transition: 0.2s;
}
.members-page .members-wrapper .profile-header .new-content .new-content-list .new-content-item:hover {
  background-color: rgba(0, 0, 0, 0.03);
}
.members-page .members-wrapper .profile-title {
  width: 100%;
  margin-bottom: 24px;
}
.members-page .members-wrapper .profile-title .members-panel .panel-body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-direction: column;
      flex-direction: column;
  padding: 24px;
}
@media screen and (min-width: 768px) {
  .members-page .members-wrapper .profile-title .members-panel .panel-body {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-align: start;
        align-items: flex-start;
  }
}
.members-page .members-wrapper .profile-title .members-panel .panel-body .left-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .members-page .members-wrapper .profile-title .members-panel .panel-body .left-content {
    -ms-flex-direction: row;
        flex-direction: row;
  }
}
.members-page .members-wrapper .profile-title .members-panel .panel-body .left-content .user-info {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .members-page .members-wrapper .profile-title .members-panel .panel-body .left-content .user-info {
    text-align: left;
  }
}
.members-page .members-wrapper .profile-title .members-panel .panel-body .left-content .user-info .user-name {
  font-family: "Roboto";
  font-size: 24px;
  font-weight: 600;
  color: #3e455e;
  margin-bottom: 12px;
}
.members-page .members-wrapper .profile-title .members-panel .panel-body .left-content .user-info .user-since, .members-page .members-wrapper .profile-title .members-panel .panel-body .left-content .user-info .user-from {
  margin: 0;
}
.members-page .members-wrapper .profile-title .members-panel .panel-body .right-content {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .members-page .members-wrapper .profile-title .members-panel .panel-body .right-content {
    margin-top: 0;
  }
}
.members-page .members-wrapper .profile-sidebar {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .members-page .members-wrapper .profile-sidebar {
    width: 30%;
  }
}
.members-page .members-wrapper .profile-content {
  width: 100%;
  margin-top: 24px;
}
@media screen and (min-width: 992px) {
  .members-page .members-wrapper .profile-content {
    width: calc(70% - 24px);
    margin-top: 0;
  }
}
.members-page .members-wrapper .profile-content .h-3 {
  margin-top: 16px;
}
.members-page .members-wrapper .profile-content .activity-empty-state {
  text-align: center;
}
.members-page .members-wrapper .profile-content .activity-empty-state .paragraph {
  margin-top: 8px;
  margin-bottom: 40px;
}
.members-page .members-wrapper .profile-content .activity-empty-state img {
  margin-bottom: 24px;
}
@media screen and (max-width: 992px) {
  .members-page .members-wrapper.table-responsive {
    overflow-x: scroll;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .members-page .members-wrapper.table-responsive .table-white > tbody > tr > th {
    padding: 12px 24px;
  }
}
.members-page .dashboard-header {
  margin-bottom: 32px;
}
.members-page .dashboard-header .dashboard-title {
  line-height: 1;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
}
.members-page .dashboard-header .dashboard-title .dashboard-icon {
  font-size: 20px;
  border-radius: 9999px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: #3e455e;
  color: white;
  margin-right: 8px;
}
.members-page .dashboard-header .dashboard-title .button {
  font-size: 14px;
  margin-left: 24px;
}
.members-page .dashboard-header .dashboard-title .item-new {
  position: absolute;
  top: 0;
  right: -40px;
  font-size: 12px;
  background: var(--highlight-base, #137df7);
  color: var(--color-white-base, white);
  padding: 4px;
  border-radius: 30px;
}
.members-page .dashboard-header .dashboard-info-title {
  margin-left: 48px;
}
.members-page .dashboard-header .dashboard-status {
  margin-top: 12px;
  line-height: 1;
}
.members-page .dashboard-header .dashboard-status [class^=status-] {
  display: block;
  position: relative;
  padding-left: 18px;
}
.members-page .dashboard-header .dashboard-status [class^=status-]:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 2px;
  left: 0;
  border-radius: 999px;
}
.members-page .dashboard-header .dashboard-status .status-active:before {
  background: var(--success-base, #6cbf13);
}
.members-page .dashboard-header .dashboard-status .status-suspended:before {
  background: #a3bac5;
}
.members-page .dashboard-header .dashboard-status .status-expired:before {
  background: var(--warning-base, #fc5353);
}
.members-page .dashboard-header .dashboard-status .status-pending:before {
  background: var(--attention-base, #ffae00);
}
.members-page .listing-completion {
  margin-bottom: 16px;
}
.members-page .sponsor-listing-template-tabs {
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.members-page .sponsor-listing-template-tabs ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.members-page .sponsor-listing-template-tabs li {
  padding: 8px 16px;
  border: 1px solid #e3ecf0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  outline: none;
  transition: background-color 0.2s ease-in-out;
}
.members-page .sponsor-listing-template-tabs li + li {
  margin-left: -1px;
}
.members-page .sponsor-listing-template-tabs li.active {
  border-bottom: none;
  background-color: white;
}
.members-page .sponsor-listing-template-tabs li:hover {
  background-color: white;
}
.members-page .sponsor-listing-template-tabs li a {
  color: #3e455e;
  text-decoration: none;
  outline: none;
}
.members-page .sponsor-listing-template-tabs + .members-panel {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.members-page .linked-listing-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 16px 0 0 -8px;
}
.members-page .linked-listing-container .linked-list-item {
  height: 40px;
  border: 1px dashed #b7c4d5;
  color: #b7c4d5;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  width: calc(20% - 8px);
  border-radius: 4px;
  text-decoration: none;
  margin: 8px 0 0 8px;
  padding: 0 8px;
  cursor: pointer;
}
.members-page .linked-listing-container .linked-list-item a {
  color: #b7c4d5;
  text-decoration: none;
}
.members-page .linked-listing-container .linked-list-item span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.members-page .linked-listing-container .linked-list-item .fa-plus-circle {
  margin-right: 8px;
  font-size: 22px;
}
.members-page .linked-listing-container .linked-list-item.is-selected {
  background: white;
  border-style: solid;
  color: #2f2f2f;
  cursor: grab;
}
.members-page .linked-listing-container .linked-list-item.is-selected .fa {
  margin-left: 8px;
  font-size: 14px;
  cursor: pointer;
}
.members-page .linked-listing-footer-actions {
  text-align: right;
  margin-top: 24px;
}
.members-page .members-panel {
  border: 1px solid #e3ecf0;
  border-radius: var(--border-radius, 3px);
  background: var(--color-white-base, white);
  width: 100%;
}
.members-page .members-panel .stars-rating [class*=rate-]:after {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--badge-base, #ffc800);
  font-size: 1.25em;
  vertical-align: baseline;
}
.members-page .members-panel .stars-rating .rate-0:after {
  content: "\f006" "\f006" "\f006" "\f006" "\f006";
}
.members-page .members-panel .stars-rating .rate-1:after {
  content: "\f005" "\f006" "\f006" "\f006" "\f006";
}
.members-page .members-panel .stars-rating .rate-2:after {
  content: "\f005" "\f005" "\f006" "\f006" "\f006";
}
.members-page .members-panel .stars-rating .rate-3:after {
  content: "\f005" "\f005" "\f005" "\f006" "\f006";
}
.members-page .members-panel .stars-rating .rate-4:after {
  content: "\f005" "\f005" "\f005" "\f005" "\f006";
}
.members-page .members-panel .stars-rating .rate-5:after {
  content: "\f005" "\f005" "\f005" "\f005" "\f005";
}
.members-page .members-panel#chart-panel > .panel-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.members-page .members-panel#chart-panel.is-closed .chart-options {
  opacity: 0;
  visibility: hidden;
  height: 0;
  padding: 0;
  margin-top: 0;
}
.members-page .members-panel#chart-panel .chart-options {
  opacity: 1;
  transition: 0.2s ease-in-out;
  -ms-flex-order: 3;
      order: 3;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .members-page .members-panel#chart-panel .chart-options {
    -ms-flex-order: unset;
        order: unset;
    margin-top: 0;
  }
}
.members-page .members-panel#chart-panel .chart-options#controlLegend {
  margin-bottom: 32px;
}
.members-page .members-panel#chart-panel .chart-options .chart-item {
  color: var(--neutral-base, #3e455e);
  text-decoration: none;
  font-size: 0.875em;
  display: inline-block;
  cursor: pointer;
}
.members-page .members-panel#chart-panel .chart-options .chart-item:not(.item-view-all) {
  opacity: 0.6;
  transition: 0.2s ease-in-out;
}
.members-page .members-panel#chart-panel .chart-options .chart-item:not(.item-view-all).is-visible {
  opacity: 1;
}
.members-page .members-panel#chart-panel .chart-options .chart-item:not(.item-view-all):before {
  content: "\f096";
  font-family: "fontAwesome";
}
.members-page .members-panel#chart-panel .chart-options .chart-item:not(.item-view-all).checked:before {
  content: "\f046";
}
.members-page .members-panel#chart-panel .chart-options .chart-item:not(:first-child) {
  margin-right: 8px;
}
.members-page .members-panel#chart-panel .chart-options .chart-color {
  width: 10px;
  height: 10px;
  display: inline-block;
}
.members-page .members-panel > .panel-header {
  border-bottom: 1px solid #e3ecf0;
  padding: 8px 16px;
}
.members-page .members-panel > .panel-header.header-spaced {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.members-page .members-panel > .panel-header .panel-share a:hover, .members-page .members-panel > .panel-header .panel-share a:focus, .members-page .members-panel > .panel-header .panel-share a:focus-visible, .members-page .members-panel > .panel-header .panel-share a:visited {
  text-decoration: none;
}
.members-page .members-panel > .panel-header .panel-share a:hover .social-square, .members-page .members-panel > .panel-header .panel-share a:focus .social-square, .members-page .members-panel > .panel-header .panel-share a:focus-visible .social-square, .members-page .members-panel > .panel-header .panel-share a:visited .social-square {
  background-color: #0056b3;
}
.members-page .members-panel > .panel-header .panel-share .social-square {
  background-color: #007bff;
  border-radius: 3px;
  padding: 2px;
  width: 15px;
  height: 15px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-transform: translateY(-1px);
      transform: translateY(-1px);
}
.members-page .members-panel > .panel-header .panel-share .social-square svg {
  max-width: 10px;
  fill: #fff;
}
.members-page .members-panel .panel-body {
  padding: 24px;
}
.members-page .members-panel .panel-body .panel-body {
  padding: 0;
}
.members-page .members-panel .panel-body canvas {
  width: 100% !important;
}
.members-page .members-panel .panel-body .panel-description {
  border-bottom: 1px solid #e3ecf0;
  margin-bottom: 16px;
}
.members-page .members-panel .panel-body .panel-description p {
  margin: 0;
  font-size: 14px;
}
.members-page .members-panel .panel-body .panel-description p:not(:first-child) {
  margin-top: 8px;
}
.members-page .members-panel .panel-body .completion-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.members-page .members-panel .panel-body .completion-content .completion-chart {
  width: 40%;
  position: relative;
}
.members-page .members-panel .panel-body .completion-content .completion-chart:after {
  content: "%";
  position: absolute;
  right: calc(50% - 24px);
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  font-size: 20px;
  color: #3e455e;
}
.members-page .members-panel .panel-body .completion-content .completion-chart > div {
  display: block !important;
  margin: 0 auto;
}
.members-page .members-panel .panel-body .completion-content .completion-chart .dial {
  outline: none;
  text-decoration: none;
  font-size: 1.5em !important;
  margin: 0 !important;
  left: calc(50% - 6px) !important;
  top: 50% !important;
  -ms-transform: translate(-50%, -50%) !important;
      transform: translate(-50%, -50%) !important;
  color: #3e455e !important;
}
.members-page .members-panel .panel-body .completion-content .completion-steps {
  width: 55%;
}
.members-page .members-panel .panel-body .completion-content .completion-steps .steps-title {
  border-bottom: 1px solid #e3ecf0;
  padding-bottom: 8px;
  font-size: 1.125em;
}
.members-page .members-panel .panel-body .completion-content .completion-steps .steps-list {
  margin-top: 8px;
}
.members-page .members-panel .panel-body .completion-content .completion-steps .steps-list .steps-item {
  font-size: 0.875em;
  display: inline-block;
}
.members-page .members-panel .panel-body .activity-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.members-page .members-panel .panel-body .activity-content .total-views {
  width: 40%;
  text-align: center;
}
.members-page .members-panel .panel-body .activity-content .total-views .views-item:not(:first-child) {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e3ecf0;
}
.members-page .members-panel .panel-body .activity-content .total-views .views-count {
  line-height: 1;
}
.members-page .members-panel .panel-body .activity-content .total-views .views-label {
  line-height: 1;
  width: inherit;
  margin: 4px auto 0;
}
.members-page .members-panel .panel-body .activity-content .activity-list {
  width: calc(60% - 16px);
  border-left: 1px solid #e3ecf0;
  padding-left: 16px;
}
.members-page .members-panel .panel-body .activity-content .activity-list .activicty-item {
  font-size: 1.125em;
  line-height: 1;
}
.members-page .members-panel .panel-body .activity-content .activity-list .activicty-item:not(:first-child) {
  border-top: 1px solid #e3ecf0;
  margin-top: 8px;
  padding-top: 8px;
}
.members-page .members-panel .panel-body .activity-content .activity-list .activicty-item .link, .members-page .members-panel .panel-body .activity-content .activity-list .activicty-item .count {
  font-size: 0.75em;
}
.members-page .members-panel .panel-body .activity-content .activity-list .activicty-item .count:before {
  content: "(";
}
.members-page .members-panel .panel-body .activity-content .activity-list .activicty-item .count:after {
  content: ")";
}
.members-page .members-panel .panel-body .activity-content .activity-list .activicty-item .stars-rating {
  margin-bottom: 8px;
}
.members-page .members-panel .panel-body .form-status label {
  margin-bottom: 0;
}
.members-page .members-panel .panel-body .form-status label:not(:first-child) {
  margin-left: 8px;
}
.members-page .members-panel .panel-body .form-status label input {
  margin-right: 4px;
}
.members-page .members-panel .panel-body .content-list .content-item {
  background: var(--color-white-dark-5, rgb(242.25, 242.25, 242.25));
  padding: 16px;
  border-radius: var(--border-radius, 3px);
  margin: 0 auto;
  border: 1px solid transparent;
  position: relative;
  outline: none;
}
.members-page .members-panel .panel-body .content-list .content-item[is-new=true] {
  border-color: var(--highlight-base, #137df7);
}
.members-page .members-panel .panel-body .content-list .content-item:not(:first-child) {
  margin-top: 16px;
}
.members-page .members-panel .panel-body .content-list .content-item .content-status {
  font-size: 0.875em;
  line-height: 1;
  color: var(--attention-base, #ffae00);
  padding: 0;
  margin-top: 8px;
}
.members-page .members-panel .panel-body .content-list .content-item .content-header {
  position: relative;
}
.members-page .members-panel .panel-body .content-list .content-item .content-header:not(.no-flex) {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-align: start;
      align-items: flex-start;
  padding-top: 32px;
}
@media screen and (min-width: 768px) {
  .members-page .members-panel .panel-body .content-list .content-item .content-header:not(.no-flex) {
    -ms-flex-align: center;
        align-items: center;
    padding-top: 0;
  }
}
.members-page .members-panel .panel-body .content-list .content-item .content-header .button-edit-reply {
  position: absolute;
  right: 0;
  top: 0;
}
.members-page .members-panel .panel-body .content-list .content-item .content-replied-date {
  font-size: 0.875em;
  color: var(--color-black-transp-50, rgba(0, 0, 0, 0.5));
  font-style: italic;
}
.members-page .members-panel .panel-body .content-list .content-item .content-from {
  margin-top: 8px;
}
.members-page .members-panel .panel-body .content-list .content-item .content-picture {
  display: inline-block;
  border-radius: 9999px;
  width: 50px;
  height: 50px;
  overflow: hidden;
}
.members-page .members-panel .panel-body .content-list .content-item .content-picture img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.members-page .members-panel .panel-body .content-list .content-item .content-info {
  margin-left: 24px;
  max-width: calc(100% - 74px);
}
@media screen and (min-width: 768px) {
  .members-page .members-panel .panel-body .content-list .content-item .content-info {
    max-width: calc(100% - 184px);
  }
}
.members-page .members-panel .panel-body .content-list .content-item .content-title, .members-page .members-panel .panel-body .content-list .content-item .content-author {
  line-height: 1;
}
.members-page .members-panel .panel-body .content-list .content-item .content-title time {
  font-size: 80%;
}
.members-page .members-panel .panel-body .content-list .content-item .content-author {
  margin-top: 4px;
}
.members-page .members-panel .panel-body .content-list .content-item .stars-rating {
  margin-top: 8px;
}
.members-page .members-panel .panel-body .content-list .content-item .content-body {
  margin-top: 16px;
}
.members-page .members-panel .panel-body .content-list .content-item .content-body .content-text {
  opacity: 0.7;
  font-style: italic;
}
.members-page .members-panel .panel-body .content-list .content-item .content-body .content-reply {
  margin-top: 8px;
  margin-bottom: 0;
  padding: 16px;
  border-left: 5px solid rgb(231.25, 231.25, 231.25);
  position: relative;
}
.members-page .members-panel .panel-body .content-list .content-item .content-body .reply-form {
  margin-top: 8px;
  display: none;
}
.members-page .members-panel .panel-body .content-list .content-item .content-body .reply-form label {
  display: block;
  margin: 0;
  font-weight: bold;
}
.members-page .members-panel .panel-body .content-list .content-item .content-body .reply-form .input {
  width: 100%;
  margin-top: 4px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.members-page .members-panel .panel-body .content-list .content-item .content-body .reply-form .reply-message {
  padding: 8px;
  border: 1px solid transparent;
  border-radius: var(--border-radius, 3px);
  color: var(--color-white-base, white);
  margin-bottom: 8px;
  display: none;
}
.members-page .members-panel .panel-body .content-list .content-item .content-body .reply-form .reply-message[data-type=success] {
  background: var(--success-base, #6cbf13);
  border-color: var(--success-dark, rgb(75.6, 133.7, 13.3));
}
.members-page .members-panel .panel-body .content-list .content-item .content-body .reply-form .reply-message[data-type=error] {
  background: var(--warning-base, #fc5353);
  border-color: var(--warning-dark, rgb(176.4, 58.1, 58.1));
}
.members-page .members-panel .panel-body .favorite-item {
  border: 1px solid #e3ecf0;
}
.members-page .members-panel .panel-body .favorite-item:not(:first-child) {
  margin-top: 16px;
}
.members-page .members-panel .panel-body .favorite-item .favorite-content {
  padding: 16px;
  position: relative;
  max-width: calc(100% - 32px);
}
.members-page .members-panel .panel-body .favorite-item .favorite-content .remove-favorite {
  position: absolute;
  top: 16px;
  right: -16px;
  color: var(--neutral-base, #3e455e);
  text-decoration: none;
  font-size: 22px;
  line-height: 1;
}
.members-page .members-panel .panel-body .favorite-item .favorite-content .favorite-address {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
  margin-top: 8px;
}
.members-page .members-panel .panel-body .favorite-item .favorite-footer {
  padding: 8px 16px;
  background: #eee;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.members-page .members-panel .panel-body .favorite-item .favorite-footer .social-link {
  font-size: 22px;
}
.members-page .members-panel .panel-body .favorite-item .favorite-footer .favorite-share a:hover, .members-page .members-panel .panel-body .favorite-item .favorite-footer .favorite-share a:focus, .members-page .members-panel .panel-body .favorite-item .favorite-footer .favorite-share a:focus-visible, .members-page .members-panel .panel-body .favorite-item .favorite-footer .favorite-share a:visited {
  text-decoration: none;
}
.members-page .members-panel .panel-body .favorite-item .favorite-footer .favorite-share a:hover .social-square, .members-page .members-panel .panel-body .favorite-item .favorite-footer .favorite-share a:focus .social-square, .members-page .members-panel .panel-body .favorite-item .favorite-footer .favorite-share a:focus-visible .social-square, .members-page .members-panel .panel-body .favorite-item .favorite-footer .favorite-share a:visited .social-square {
  background-color: #0056b3;
}
.members-page .members-panel .panel-body .favorite-item .favorite-footer .favorite-share .social-square {
  background-color: #007bff;
  border-radius: 4px;
  padding: 2px;
  width: 20px;
  height: 20px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-transform: translateY(-1px);
      transform: translateY(-1px);
}
.members-page .members-panel .panel-body .favorite-item .favorite-footer .favorite-share .social-square svg {
  max-width: 12px;
  fill: #fff;
}
.members-page .members-panel .panel-body #listing-extra-fields-sidebar {
  margin-top: 16px;
}
.members-page .members-panel .panel-body #listing-extra-fields-sidebar .panel .panel-heading {
  font-size: 16px;
  margin-bottom: 0;
  min-height: 52px;
}
.members-page .members-panel .panel-body #listing-extra-fields-sidebar .panel .panel-heading .btn.btn-sm {
  white-space: normal;
  padding: 5px 10px;
  font-size: 0.875em;
  line-height: 1.5;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 0;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  transition: ease all 0.5s 0s;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.members-page .members-panel .panel-body #listing-extra-fields-sidebar .panel .panel-heading .btn.btn-sm [class^=icon-] {
  font-family: "FontAwesome";
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.members-page .members-panel .panel-body #listing-extra-fields-sidebar .panel .panel-heading .btn.btn-sm .icon-ion-ios7-trash-outline:before {
  content: "\f1f8";
}
.members-page .members-panel .panel-body #listing-extra-fields-sidebar .panel .panel-heading .btn.btn-sm:hover {
  background-color: var(--highlight-light-2, rgb(89.8, 164, 249.4));
}
.members-page .members-panel .panel-body #listing-extra-fields-sidebar .panel .panel-heading .btn.btn-sm.btn-danger {
  color: #fff;
  background-color: var(--warning-base, #fc5353);
  border-color: var(--warning-base, #fc5353);
  font-size: 0.75em;
  padding: 6px 16px;
  margin: 0 0 0 8px;
  right: 100px;
  height: 33px;
}
.members-page .members-panel .panel-body #listing-extra-fields-sidebar .panel .panel-heading .btn.btn-sm.btn-danger:hover {
  background-color: var(--warning-transp-15, rgba(252, 83, 83, 0.85));
}
.members-page .members-panel .panel-body #listing-extra-fields-sidebar .panel .panel-heading .btn-primary {
  color: #fff;
  background-color: var(--highlight-base, #137df7);
  border-color: var(--highlight-base, #137df7);
}
.members-page .members-panel #accordion .panel-header a {
  color: var(--neutral-base, #3e455e);
  text-decoration: none;
}
.members-page .members-panel.edit-panel .panel-body.redem-body {
  padding: 8px 16px;
}
.members-page .members-panel.edit-panel .panel-body.redem-body .redem-title {
  margin-bottom: 8px;
}
.members-page .members-panel.edit-panel .panel-body.redem-body .redem-date {
  font-size: var(--font-size-14, 0.875em);
}
.members-page .members-panel.edit-panel .panel-body .form-action-sponsors {
  margin-top: 24px;
}
@media screen and (min-width: 992px) {
  .members-page .members-panel.edit-panel .panel-body .form-action-sponsors {
    margin-top: 0;
  }
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content [class^=col-], .members-page .members-panel.edit-panel .panel-body .custom-edit-content [class*=" col-"] {
  display: block;
  padding: 0;
  max-width: 100%;
  -ms-flex: none;
      flex: none;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .row {
  margin: 0;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .row-gap {
  gap: 12px;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content[has-sidebar=true] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content[has-sidebar=true] .col-md-7 {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .members-page .members-panel.edit-panel .panel-body .custom-edit-content[has-sidebar=true] .col-md-7 {
    width: 60%;
  }
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content[has-sidebar=true] .col-md-5 {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .members-page .members-panel.edit-panel .panel-body .custom-edit-content[has-sidebar=true] .col-md-5 {
    width: calc(40% - 24px);
  }
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .col-md-7 {
  width: 100%;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .col-xs-6 {
  width: 100%;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row {
  width: 100%;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row {
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row.align-start, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup.align-start, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row.align-start {
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
}
@supports (-moz-appearance: none) {
  .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row .custom-col-6-fix, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup .custom-col-6-fix, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row .custom-col-6-fix {
    min-width: 100%;
  }
  .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row .custom-col-6-fix:not(:first-child), .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup .custom-col-6-fix:not(:first-child), .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row .custom-col-6-fix:not(:first-child) {
    margin-top: 8px;
  }
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row .col-sm-6, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row .col-md-6, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup .col-sm-6, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup .col-md-6, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row .col-sm-6, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row .col-md-6 {
  width: calc(50% - 6px);
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row .col-xs-12, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row .col-ms-12, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup .col-xs-12, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup .col-ms-12, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row .col-xs-12, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row .col-ms-12 {
  width: 100%;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row .col-sm-4, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row .col-md-4, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup .col-sm-4, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup .col-md-4, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row .col-sm-4, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row .col-md-4 {
  width: calc(33.3333333333% - 6px);
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row .col-md-10, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row .col-sm-10, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup .col-md-10, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup .col-sm-10, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row .col-md-10, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row .col-sm-10 {
  width: calc(83.3% - 16px);
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row .col-md-9, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row .col-sm-9, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup .col-md-9, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup .col-sm-9, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row .col-md-9, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row .col-sm-9 {
  width: calc(75% - 16px);
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row .col-md-8, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row .col-sm-8, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup .col-md-8, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup .col-sm-8, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row .col-md-8, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row .col-sm-8 {
  width: calc(67.4% - 16px);
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row .col-md-3, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row .col-sm-3, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup .col-md-3, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup .col-sm-3, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row .col-md-3, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row .col-sm-3 {
  width: calc(25% - 6px);
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row .col-md-2, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row .col-sm-2, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup .col-md-2, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup .col-sm-2, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row .col-md-2, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row .col-sm-2 {
  width: calc(16.6666666667% - 6px);
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row.responsive-rows .col-md-2, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row.responsive-rows .col-sm-2, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup.responsive-rows .col-md-2, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup.responsive-rows .col-sm-2, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row.responsive-rows .col-md-2, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row.responsive-rows .col-sm-2 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row.responsive-rows .col-md-2, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row.responsive-rows .col-sm-2, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup.responsive-rows .col-md-2, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup.responsive-rows .col-sm-2, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row.responsive-rows .col-md-2, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row.responsive-rows .col-sm-2 {
    width: 35%;
  }
}
@media screen and (min-width: 992px) {
  .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row.responsive-rows .col-md-2, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row.responsive-rows .col-sm-2, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup.responsive-rows .col-md-2, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup.responsive-rows .col-sm-2, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row.responsive-rows .col-md-2, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row.responsive-rows .col-sm-2 {
    width: 25%;
  }
}
@media screen and (min-width: 1200px) {
  .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row.responsive-rows .col-md-2, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row.responsive-rows .col-sm-2, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup.responsive-rows .col-md-2, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup.responsive-rows .col-sm-2, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row.responsive-rows .col-md-2, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row.responsive-rows .col-sm-2 {
    width: 20%;
  }
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row.responsive-rows .col-md-10, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row.responsive-rows .col-sm-10, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup.responsive-rows .col-md-10, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup.responsive-rows .col-sm-10, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row.responsive-rows .col-md-10, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row.responsive-rows .col-sm-10 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row.responsive-rows .col-md-10, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row.responsive-rows .col-sm-10, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup.responsive-rows .col-md-10, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup.responsive-rows .col-sm-10, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row.responsive-rows .col-md-10, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row.responsive-rows .col-sm-10 {
    width: calc(65% - 24px);
  }
}
@media screen and (min-width: 992px) {
  .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row.responsive-rows .col-md-10, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row.responsive-rows .col-sm-10, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup.responsive-rows .col-md-10, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup.responsive-rows .col-sm-10, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row.responsive-rows .col-md-10, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row.responsive-rows .col-sm-10 {
    width: calc(75% - 24px);
  }
}
@media screen and (min-width: 1200px) {
  .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row.responsive-rows .col-md-10, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row.responsive-rows .col-sm-10, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup.responsive-rows .col-md-10, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup.responsive-rows .col-sm-10, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row.responsive-rows .col-md-10, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row.responsive-rows .col-sm-10 {
    width: calc(80% - 24px);
  }
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row .cutom-select-appearence, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup .cutom-select-appearence, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row .cutom-select-appearence {
  appearance: menulist !important;
  height: 40px !important;
  background: white;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row .radio-inline, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup .radio-inline, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row .radio-inline {
  display: inline-block;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row .radio-inline:not(:last-child), .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup .radio-inline:not(:last-child), .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row .radio-inline:not(:last-child) {
  margin-right: 16px;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row .input-group, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup .input-group, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row .input-group {
  display: -ms-flexbox;
  display: flex;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row .input-group .form-control:not(:last-child), .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup .input-group .form-control:not(:last-child), .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row .input-group .form-control:not(:last-child) {
  border-radius: 0;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row .input-group .input-group-addon, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup .input-group .input-group-addon, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row .input-group .input-group-addon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 100px;
  background: rgba(62, 69, 94, 0.25);
  color: var(--brand-base, #022e69);
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row .input-group .input-group-addon + .form-control, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup .input-group .input-group-addon + .form-control, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row .input-group .input-group-addon + .form-control {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: none;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row.custom-hour-block, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup.custom-hour-block, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row.custom-hour-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: baseline;
      align-items: baseline;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row.custom-hour-block label, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup.custom-hour-block label, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row.custom-hour-block label {
  width: 100%;
  display: block;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row.custom-hour-block .input-group, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup.custom-hour-block .input-group, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row.custom-hour-block .input-group {
  width: 100%;
}
@media screen and (min-width: 520px) {
  .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row.custom-hour-block .input-group, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup.custom-hour-block .input-group, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row.custom-hour-block .input-group {
    width: calc(50% - 6px);
  }
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row.custom-hour-block .form-group, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup.custom-hour-block .form-group, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row.custom-hour-block .form-group {
  margin-bottom: 0;
  margin-top: 16px;
}
@media screen and (min-width: 520px) {
  .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row.custom-hour-block .form-group, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup.custom-hour-block .form-group, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row.custom-hour-block .form-group {
    margin-left: 32px;
    margin-top: 0;
  }
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .list-features {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
  margin-top: -16px;
  margin-left: -16px;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .list-features .group-feature {
  width: 50px;
  text-align: center;
  margin-left: 16px;
  margin-top: 16px;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .list-features .group-feature-icon {
  border: 1px solid #ccc;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 24px;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .list-features .group-feature-link {
  font-size: 14px;
  display: inline-block;
  word-break: break-word;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .feature-content .option {
  font-family: "fontAwesome";
  cursor: pointer;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .feature-content .selectize-dropdown {
  max-height: 200px;
  overflow: auto;
  position: absolute;
  z-index: 5;
  background: white;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .feature-content .selectize-control {
  position: relative;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .feature-content .selectize-input .item {
  font-family: "fontAwesome";
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-input-group {
  display: -ms-flexbox;
  display: flex;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-input-group .form-control {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-input-group .input-group-addon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  background: rgba(62, 69, 94, 0.25);
  color: var(--brand-base, #022e69);
  line-height: 1;
  width: 200px !important;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .panel-form-media#tour-file .bootstrap-filestyle .btn, .members-page .members-panel.edit-panel .panel-form-media#tour-file .bootstrap-filestyle .panel-body .custom-edit-content .btn, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .panel-form-media.custom-file-upload .bootstrap-filestyle .btn, .members-page .members-panel.edit-panel .panel-form-media.custom-file-upload .bootstrap-filestyle .panel-body .custom-edit-content .btn, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .panel-form-media .panel-heading .panel-heading-action .btn, .members-page .members-panel.edit-panel .panel-form-media .panel-heading .panel-heading-action .panel-body .custom-edit-content .btn, .members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-categories .btn {
  padding: 0;
  line-height: 1.15;
  border: none;
  box-shadow: none;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  text-decoration: none;
  display: inline-block;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .help-block {
  font-size: 0.875em;
  margin-top: 4px;
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
  margin-bottom: 0;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .form-group {
  margin-bottom: 24px;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .form-group label {
  display: inline-block;
  margin-bottom: 5px;
  max-width: 100%;
  font-weight: bold;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .form-group label.radio-inline {
  margin-right: 10px;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .form-group .form-control {
  display: block;
  width: 100%;
  min-height: 40px;
  border-color: #a1b3c9;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .form-group textarea.form-control {
  padding-top: 8px;
  padding-bottom: 8px;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .form-group.sponsor-deal {
  max-width: 180px;
  margin: 0;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .form-group.group-list-hours-work {
  margin: 0;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .group-display-timezone {
  margin-bottom: 24px;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .group-display-timezone .form-group:first-of-type {
  margin-bottom: 0;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-selectize .select2-selection {
  height: 40px;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-selectize .select2-selection .select2-selection__rendered {
  line-height: 40px;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-selectize .select2-selection .select2-selection__arrow {
  height: 40px;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-selectize .selectize-control .selectize-input {
  -webkit-appearance: menulist;
  height: 40px;
  padding: 0 8px;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-selectize .selectize-control .selectize-input.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-selectize .selectize-control .selectize-input .item {
  background: none;
  margin: 0;
  color: var(--neutral-base, #3e455e);
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-selectize .selectize-control .selectize-dropdown {
  border: 1px solid rgba(62, 69, 94, 0.25);
  margin-top: -3px;
  background: white;
  padding: 0;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-selectize .selectize-control .selectize-dropdown .option {
  padding: 8px 16px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-selectize .selectize-control .selectize-dropdown .option:hover, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-selectize .selectize-control .selectize-dropdown .option.active {
  background: var(--brand-base, #022e69);
  color: white;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .selectize-control {
  padding: 0 !important;
  height: auto !important;
  border: none !important;
  background: none !important;
  box-shadow: none !important;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .selectize-control .selectize-input {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  padding: 0 8px 8px;
  min-height: 40px;
  border-color: #a1b3c9;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .selectize-control .selectize-input > input {
  font-weight: normal;
  padding: 0;
  min-height: 0;
  max-height: none;
  max-width: 100%;
  margin: 0;
  text-indent: 0;
  border: 0 none;
  background: none;
  line-height: inherit;
  box-shadow: none;
  outline: none;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .selectize-control .selectize-input .item {
  background: #738dad;
  line-height: 1;
  padding: 4px 8px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-top: 8px;
  font-size: 14px;
  color: var(--color-white-base, white);
  border-radius: 3px;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .selectize-control .selectize-input .item:not(:last-child) {
  margin-right: 8px;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .selectize-control .selectize-input .item .remove {
  color: var(--color-white-base, white);
  font-size: 14px;
  line-height: 1;
  display: inline-block;
  padding: 0;
  margin-left: 8px;
  text-decoration: none;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .selectize-control .selectize-input #categories-selectized {
  display: none;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .panel-form .panel-heading {
  line-height: 1.3;
  margin: 0;
  color: var(--neutral-base, #3e455e);
  font-family: var(--heading-font, "Rubik");
  font-weight: 500;
  font-size: var(--font-size-24, 1.5em);
  margin-bottom: 16px;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-categories {
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-categories .col-xs-12 {
  width: 100%;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-categories .col-sm-9, .members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-categories .col-sm-8 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-categories .col-sm-9, .members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-categories .col-sm-8 {
    width: 80%;
  }
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-categories .col-sm-3, .members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-categories .col-sm-4 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-categories .col-sm-3, .members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-categories .col-sm-4 {
    width: calc(20% - 24px);
  }
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-categories .btn {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-categories .btn {
    margin-top: 0;
  }
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-categories .btn {
  display: block;
  width: 100%;
  height: 40px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: var(--border-radius-button, 3px);
  font-size: 0.875em;
  background: var(--highlight-base, #137df7);
  color: rgb(240.9754098361, 247.2745901639, 254.5245901639);
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-categories .btn:focus, .members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-categories .btn:visited, .members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-categories .btn:active {
  background: var(--highlight-dark, rgb(16.15, 106.25, 209.95));
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-categories .btn:hover {
  background: var(--highlight-light-2, rgb(89.8, 164, 249.4));
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-categories .btn.disabled {
  opacity: 0.5;
  background: var(--highlight-base, #137df7);
  cursor: not-allowed;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-categories .publish-date-state {
  font-family: Rubik;
  font-size: 14px;
  color: #199ada;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-contact .col-sm-6 {
  width: 100%;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-contact .col-sm-6 {
    width: calc(50% - 6px);
    margin-bottom: 0;
  }
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-price {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-price {
    width: calc(50% - 6px);
  }
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-features .col-md-4 {
  width: calc(50% - 6px);
}
@media screen and (min-width: 768px) {
  .members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-features .col-md-4 {
    width: calc(33.3333333333% - 6px);
  }
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-features .col-md-2 {
  width: calc(50% - 6px);
}
@media screen and (min-width: 768px) {
  .members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-features .col-md-2 {
    width: calc(16.6666666667% - 6px);
  }
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-features .col-md-2 .button {
  margin-top: 8px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-features .col-md-2 .button {
    margin-top: 0;
    width: auto;
  }
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-hours .selectize {
  width: calc(33.3333333333% - 6px);
}
@media screen and (min-width: 768px) {
  .members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-hours .selectize {
    width: calc(25% - 6px);
  }
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-hours .col-md-3:not(.selectize) {
  width: 100%;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-hours .col-md-3:not(.selectize) {
    width: calc(25% - 6px);
    margin-top: 0;
  }
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-hours .selectize-dropdown {
  max-height: 200px;
  overflow: auto;
  position: absolute;
  z-index: 5;
  background: white;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-hours .selectize-control {
  position: relative;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-hours .group-hours-work .col-md-3 {
  width: calc(33.3333333333% - 6px);
}
@media screen and (min-width: 768px) {
  .members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-hours .group-hours-work .col-md-3 {
    width: calc(25% - 6px);
  }
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-hours .group-hours-work .col-md-3:nth-child(7) {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-hours .group-hours-work .col-md-3:nth-child(7) {
    width: calc(25% - 6px);
  }
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-cover-image #coverimage {
  height: 100px;
  overflow: hidden;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-cover-image #coverimage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-additional .panel-form .panel-heading {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-additional .panel-form .panel-heading .panel-title {
  max-width: 55%;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-additional .panel-form .panel-heading .actions {
  display: -ms-flexbox;
  display: flex;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-additional label {
  margin-bottom: 0;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-additional label input {
  margin-right: 8px;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-author-info #authorimage {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-author-info .img-circle {
  max-width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 9999px;
  margin: auto;
  width: 100px;
  height: 100px;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-date #reccuring_events #dayofweek,
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-date #reccuring_events #week {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -16px;
  margin-top: -8px;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-date #reccuring_events #dayofweek .checkbox-inline,
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-date #reccuring_events #week .checkbox-inline {
  margin-left: 16px;
  margin-top: 8px;
  line-height: 1;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-date #reccuring_events #dayofweek .checkbox-inline label,
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-date #reccuring_events #week .checkbox-inline label {
  margin-bottom: 0;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-date #reccuring_events #dayofweek .checkbox-inline label input,
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-date #reccuring_events #week .checkbox-inline label input {
  margin-right: 8px;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-date #reccuring_events #week_of,
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-date #reccuring_events #month_of {
  margin-top: 24px;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-date #reccuring_events #month2 {
  appearance: menulist;
  width: 100%;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-date #reccuring_events #select_day + #select_week {
  margin-top: 24px;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-date #reccuring_events .customized-addon {
  width: auto;
  -ms-flex-align: stretch;
      align-items: stretch;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-date #reccuring_events .customized-addon #of2 {
  width: 30px;
  display: block;
  line-height: 48px;
  text-align: center;
  background: #eee;
  border: 1px solid var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  border-left: none;
  border-right: none;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-date #reccuring_events .customized-addon #of4 {
  min-width: 120px;
  text-align: center;
  line-height: 40px;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-date #reccuring_events .customized-addon #month {
  background: white;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  appearance: menulist;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-date .selectize {
  position: relative;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-date .selectize .selectize-dropdown {
  position: absolute;
  z-index: 5;
  background: white;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-date #timezone-config .selectize-dropdown {
  max-height: 200px;
  overflow: auto;
  position: absolute;
  z-index: 5;
  background: white;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-date #timezone-config .selectize-control {
  position: relative;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .payment-action .button {
  width: 100%;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .members-page .members-panel.edit-panel .panel-body .custom-edit-content .payment-action .button {
    width: auto;
    margin-top: 0;
  }
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .panel-hours-of-work {
  margin: 24px 0;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .panel-hours-of-work .hours-list .hours-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 28px;
  font-family: "Rubik", sans-serif;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .panel-hours-of-work .hours-list .hours-item .day {
  color: #3e455e;
  font-weight: 700;
  font-size: 16px;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .panel-hours-of-work .hours-list .hours-item .hour ul {
  list-style: none;
  display: inline-block;
  padding: 0;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .panel-hours-of-work .hours-list .hours-item .hour.add-hour {
  color: #199ada;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: 0.3s;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .panel-hours-of-work .hours-list .hours-item .hour.add-hour:before {
  content: "\f055";
  font-family: "FontAwesome";
  color: #199ada;
  margin-right: 8px;
  font-size: 18px;
  transition: 0.3s;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .panel-hours-of-work .hours-list .hours-item .hour.add-hour:hover {
  color: #1f7faf;
  text-decoration: none;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .panel-hours-of-work .hours-list .hours-item .hour.add-hour:hover:before {
  color: #1f7faf;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .panel-hours-of-work .hours-list .hours-item .hour.selected {
  color: #6c6c6d;
  font-size: 16px;
  font-weight: 400;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .panel-hours-of-work .hours-list .hours-item .hour.selected:after {
  content: "\f040";
  font-family: "FontAwesome";
  color: #a1b3c9;
  margin-left: 8px;
  font-size: 18px;
  transition: 0.3s;
  cursor: pointer;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .panel-hours-of-work .hours-list .hours-item .hour.selected:hover {
  text-decoration: none;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .panel-hours-of-work .hours-list .hours-item .hour.selected:hover:after {
  color: #8193a9;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .panel-hours-of-work .hours-options {
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin: 24px 0 0 0;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .panel-hours-of-work .hours-options a {
  color: #636465;
  padding: 12px 16px;
  border-radius: 3px;
  border: solid 1px #636465;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .panel-hours-of-work .hours-options a:hover {
  text-decoration: none;
}
.members-page .members-panel.edit-panel .panel-body .custom-edit-content .panel-hours-of-work .group-display-timezone {
  margin-top: 18px;
}
.members-page .members-panel.linked-listing-panel .panel-header {
  font-family: var(--heading-font, "Rubik");
  color: #4a4a4a;
}
.members-page .members-panel.linked-listing-panel .panel-header a {
  text-decoration: none;
  color: #4a4a4a;
}
.members-page .members-panel.linked-listing-panel .panel-header a .fa {
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
}
.members-page .members-panel.linked-listing-panel .linked-listing-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -8px;
}
.members-page .members-panel.linked-listing-panel .linked-listing-container .linked-list-item {
  height: 40px;
  border: 1px dashed #b7c4d5;
  color: #b7c4d5;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  width: calc(100% - 8px);
  border-radius: 4px;
  text-decoration: none;
  margin: 8px 0 0 8px;
  padding: 0 8px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .members-page .members-panel.linked-listing-panel .linked-listing-container .linked-list-item {
    width: calc(33.3333333333% - 8px);
  }
}
@media screen and (min-width: 992px) {
  .members-page .members-panel.linked-listing-panel .linked-listing-container .linked-list-item {
    width: calc(25% - 8px);
  }
}
@media screen and (min-width: 1200px) {
  .members-page .members-panel.linked-listing-panel .linked-listing-container .linked-list-item {
    width: calc(20% - 8px);
  }
}
.members-page .members-panel.linked-listing-panel .linked-listing-container .linked-list-item a {
  color: #b7c4d5;
  text-decoration: none;
}
.members-page .members-panel.linked-listing-panel .linked-listing-container .linked-list-item span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.members-page .members-panel.linked-listing-panel .linked-listing-container .linked-list-item .fa-plus-circle {
  margin-right: 8px;
  font-size: 22px;
}
.members-page .members-panel.linked-listing-panel .linked-listing-container .linked-list-item.is-selected {
  background: white;
  border-style: solid;
  color: #2f2f2f;
  cursor: grab;
}
.members-page .members-panel.linked-listing-panel .linked-listing-container .linked-list-item.is-selected .fa {
  margin-left: 8px;
  font-size: 14px;
  cursor: pointer;
}
.members-page .members-panel .panel-form-media:not(:first-child) {
  margin-top: 16px;
}
.members-page .members-panel .panel-form-media .panel-heading {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  background: #e8ecf1;
  padding: 8px;
}
.members-page .members-panel .panel-form-media .panel-heading .panel-heading-action {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
}
.members-page .members-panel .panel-form-media .panel-heading .panel-heading-action .bootstrap-filestyle {
  margin-left: 8px;
  white-space: pre;
}
.members-page .members-panel .panel-form-media .panel-heading .panel-heading-action .bootstrap-filestyle + .button {
  margin-left: 8px;
}
.members-page .members-panel .panel-form-media .panel-heading .panel-heading-action .btn {
  display: block;
  width: 100%;
  padding: 8px !important;
  border-radius: var(--border-radius-button, 3px);
  font-size: 0.875em;
  margin: 0;
  background: var(--highlight-base, #137df7);
  color: rgb(240.9754098361, 247.2745901639, 254.5245901639);
}
.members-page .members-panel .panel-form-media .panel-heading .panel-heading-action .btn:focus, .members-page .members-panel .panel-form-media .panel-heading .panel-heading-action .btn:visited, .members-page .members-panel .panel-form-media .panel-heading .panel-heading-action .btn:active {
  background: var(--highlight-dark, rgb(16.15, 106.25, 209.95));
}
.members-page .members-panel .panel-form-media .panel-heading .panel-heading-action .btn:hover {
  background: var(--highlight-light-2, rgb(89.8, 164, 249.4));
}
.members-page .members-panel .panel-form-media .panel-heading .panel-heading-action .btn.disabled {
  opacity: 0.5;
  background: var(--highlight-base, #137df7);
  cursor: not-allowed;
}
.members-page .members-panel .panel-form-media .panel-heading .panel-heading-action .btn:not(:first-child) {
  margin-left: 8px;
}
.members-page .members-panel .panel-form-media .panel-heading .panel-heading-action .btn + .button {
  margin-left: 8px;
}
.members-page .members-panel .panel-form-media .panel-body {
  background: #e8ecf1;
  padding: 8px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(162, 162, 162, 0.25);
}
.members-page .members-panel .panel-form-media .panel-body .label-photo-gallery {
  margin: 0;
  padding: 8px 0 24px;
}
.members-page .members-panel .panel-form-media .panel-body .label-photo-gallery + br {
  display: none;
}
.members-page .members-panel .panel-form-media .panel-body #video_frame {
  max-width: 100%;
}
.members-page .members-panel .panel-form-media .panel-body #video_frame iframe {
  max-width: 100%;
  height: auto;
}
.members-page .members-panel .panel-form-media .panel-body .uploaded-files {
  padding: 0 12px;
}
.members-page .members-panel .panel-form-media .panel-body .uploaded-files .ui-sortable-helper {
  -ms-transform: translate(0, 150px);
      transform: translate(0, 150px);
  background-color: #e8ecf1;
}
.members-page .members-panel .panel-form-media .panel-body .custom-template-download {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.members-page .members-panel .panel-form-media .panel-body .custom-template-download:not(:first-child) {
  margin-top: 16px;
}
.members-page .members-panel .panel-form-media .panel-body .custom-template-download .photo-gallery-image {
  width: 30%;
  -ms-flex-order: 1;
      order: 1;
  padding-left: 35px;
}
.members-page .members-panel .panel-form-media .panel-body .custom-template-download .photo-gallery-image:before {
  transition: 0.2s ease-in-out;
}
.members-page .members-panel .panel-form-media .panel-body .custom-template-download .photo-gallery-image [data-image_id=""] {
  display: none;
}
.members-page .members-panel .panel-form-media .panel-body .custom-template-download .photo-gallery-image .drag-handle {
  position: absolute;
  top: 50% !important;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  left: -10px !important;
  color: #999 !important;
}
.members-page .members-panel .panel-form-media .panel-body .custom-template-download .photo-gallery-image .drag-handle.disabled {
  color: #ccc !important;
}
.members-page .members-panel .panel-form-media .panel-body .custom-template-download .photo-gallery-actions {
  width: auto;
  -ms-flex-order: 3;
      order: 3;
}
.members-page .members-panel .panel-form-media .panel-body .custom-template-download .photo-gallery-actions .button {
  padding: 8px 12px;
}
.members-page .members-panel .panel-form-media .panel-body .custom-template-download .photo-gallery-actions .button .fa {
  font-size: 16px;
}
.members-page .members-panel .panel-form-media .panel-body .custom-template-download .photo-gallery-actions .set-main-image {
  background-color: transparent;
}
.members-page .members-panel .panel-form-media .panel-body .custom-template-download .photo-gallery-actions .set-main-image .fa {
  color: #B8B8B8;
  transition: 0.2s;
}
.members-page .members-panel .panel-form-media .panel-body .custom-template-download .photo-gallery-actions .set-main-image .fa-star {
  color: var(--highlight-base, #137df7);
}
.members-page .members-panel .panel-form-media .panel-body .custom-template-download .photo-gallery-actions .set-main-image:hover .fa {
  color: var(--highlight-base, #137df7);
}
.members-page .members-panel .panel-form-media .panel-body .custom-template-download .photo-gallery-title {
  width: 30%;
  word-break: break-word;
  -ms-flex-order: 2;
      order: 2;
  font-size: 14px;
}
.members-page .members-panel .panel-form-media .panel-body .custom-template-download .photo-gallery-title .file-title, .members-page .members-panel .panel-form-media .panel-body .custom-template-download .photo-gallery-title p {
  font-size: 11px;
  line-height: 14px;
}
.members-page .members-panel .panel-form-media .panel-body .custom-template-download .photo-gallery-title .file-title {
  font-weight: 700;
}
.members-page .members-panel .panel-form-media .panel-body .custom-template-download .photo-gallery-title p {
  margin: 0;
}
.members-page .members-panel .panel-form-media .panel-body #no-filesImages {
  border: 1px solid var(--color-black-transp-5, rgba(0, 0, 0, 0.05));
  margin: 16px 0 8px;
  padding: 8px 0;
}
.members-page .members-panel .panel-form-media .panel-body #no-filesImages .icon-images9 {
  display: none;
}
.members-page .members-panel .panel-form-media .panel-body #no-filesImages .text-muted {
  margin: 0;
  line-height: 1;
}
.members-page .members-panel .panel-form-media .panel-footer {
  background: #e8ecf1;
  border-top: 1px solid rgba(162, 162, 162, 0.25);
  padding: 8px;
}
.members-page .members-panel .panel-form-media .panel-footer .text-muted {
  font-size: 0.75em;
  margin-bottom: 0;
}
.members-page .members-panel .panel-form-media #coverimage img {
  margin: 0 auto;
}
.members-page .members-panel .panel-form-media #coverimage .paragraph {
  font-size: 0.75em;
}
.members-page .members-panel .panel-form-media#tour-file .form-group, .members-page .members-panel .panel-form-media.custom-file-upload .form-group {
  margin-bottom: 0;
}
.members-page .members-panel .panel-form-media#tour-file .uploaded-files, .members-page .members-panel .panel-form-media.custom-file-upload .uploaded-files {
  margin-bottom: 16px;
}
.members-page .members-panel .panel-form-media#tour-file .uploaded-files .row, .members-page .members-panel .panel-form-media.custom-file-upload .uploaded-files .row {
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.members-page .members-panel .panel-form-media#tour-file .uploaded-files .custom-attachment-icon, .members-page .members-panel .panel-form-media.custom-file-upload .uploaded-files .custom-attachment-icon {
  display: none;
}
.members-page .members-panel .panel-form-media#tour-file .uploaded-files .custom-attachment-actions, .members-page .members-panel .panel-form-media.custom-file-upload .uploaded-files .custom-attachment-actions {
  -ms-flex-order: 2;
      order: 2;
  width: auto;
}
.members-page .members-panel .panel-form-media#tour-file .uploaded-files .custom-attachment-title, .members-page .members-panel .panel-form-media.custom-file-upload .uploaded-files .custom-attachment-title {
  -ms-flex-order: 1;
      order: 1;
  width: 60%;
}
.members-page .members-panel .panel-form-media#tour-file .uploaded-files .custom-attachment-title p, .members-page .members-panel .panel-form-media.custom-file-upload .uploaded-files .custom-attachment-title p {
  margin-bottom: 0;
}
.members-page .members-panel .panel-form-media#tour-file .bootstrap-filestyle, .members-page .members-panel .panel-form-media.custom-file-upload .bootstrap-filestyle {
  display: -ms-flexbox;
  display: flex;
}
.members-page .members-panel .panel-form-media#tour-file .bootstrap-filestyle .form-control, .members-page .members-panel .panel-form-media.custom-file-upload .bootstrap-filestyle .form-control {
  max-width: 70%;
  height: 40px;
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.members-page .members-panel .panel-form-media#tour-file .bootstrap-filestyle .input-sm, .members-page .members-panel .panel-form-media.custom-file-upload .bootstrap-filestyle .input-sm {
  padding: 0 16px;
  border-radius: var(--border-radius-button, 3px);
  box-shadow: none;
  border: 1px solid #a1b3c9;
  color: var(--neutral-base, #3e455e);
  outline: none;
  min-height: 40px;
}
.members-page .members-panel .panel-form-media#tour-file .bootstrap-filestyle .group-span-filestyle, .members-page .members-panel .panel-form-media.custom-file-upload .bootstrap-filestyle .group-span-filestyle {
  -ms-flex-positive: 1;
      flex-grow: 1;
  text-align: center;
}
.members-page .members-panel .panel-form-media#tour-file .bootstrap-filestyle .btn, .members-page .members-panel .panel-form-media.custom-file-upload .bootstrap-filestyle .btn {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  height: 39px;
  border-radius: var(--border-radius-button, 3px);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-bottom: 0;
  background: var(--highlight-base, #137df7);
  font-weight: 400;
  color: rgb(240.9754098361, 247.2745901639, 254.5245901639);
}
.members-page .members-panel .panel-form-media#tour-file .bootstrap-filestyle .btn:focus, .members-page .members-panel .panel-form-media#tour-file .bootstrap-filestyle .btn:visited, .members-page .members-panel .panel-form-media#tour-file .bootstrap-filestyle .btn:active, .members-page .members-panel .panel-form-media.custom-file-upload .bootstrap-filestyle .btn:focus, .members-page .members-panel .panel-form-media.custom-file-upload .bootstrap-filestyle .btn:visited, .members-page .members-panel .panel-form-media.custom-file-upload .bootstrap-filestyle .btn:active {
  background: var(--highlight-dark, rgb(16.15, 106.25, 209.95));
}
.members-page .members-panel .panel-form-media#tour-file .bootstrap-filestyle .btn:hover, .members-page .members-panel .panel-form-media.custom-file-upload .bootstrap-filestyle .btn:hover {
  background: var(--highlight-light-2, rgb(89.8, 164, 249.4));
}
.members-page .members-panel .panel-form-media#tour-file .bootstrap-filestyle .btn.disabled, .members-page .members-panel .panel-form-media.custom-file-upload .bootstrap-filestyle .btn.disabled {
  opacity: 0.5;
  background: var(--highlight-base, #137df7);
  cursor: not-allowed;
}
.members-page .members-panel .panel-form-media.custom-file-upload .bootstrap-filestyle .form-control {
  width: 70%;
  min-height: 40px;
  border-color: #a1b3c9;
}
.members-page .members-panel .panel-form-media#tour-badges .custom-content-badge {
  margin-bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.members-page .members-panel .panel-form-media#tour-badges .custom-content-badge .edir-badge {
  width: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.members-page .members-panel .panel-form-media#tour-badges .custom-content-badge .edir-badge:not(:nth-child(1)):not(:nth-child(2)) {
  margin-top: 16px;
}
.members-page .members-panel .panel-form-media#tour-badges .custom-content-badge .edir-badge label {
  margin-top: 8px;
  margin-bottom: 0;
}
.members-page .members-panel .panel-form-media .banner-image img {
  max-width: 100%;
  height: auto;
}
.members-page .members-panel.sponsor-completion .panel-body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}
@media screen and (min-width: 992px) {
  .members-page .members-panel.sponsor-completion .panel-body {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.members-page .members-panel.sponsor-completion .panel-body .completion-content {
  -ms-flex-align: start;
      align-items: flex-start;
}
.members-page .members-panel.sponsor-completion .panel-body .completion-content .completion-chart {
  width: 100%;
}
.members-page .members-panel.sponsor-completion .panel-body .description {
  width: 286px;
  padding-right: 16px;
}
.members-page .members-panel.sponsor-completion .panel-body .description p {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #74798b;
}
.members-page .members-panel.sponsor-completion .panel-body .description a {
  font-size: 14px;
  color: #3ebaf5;
  transition: 0.3s;
}
.members-page .members-panel.sponsor-completion .panel-body .steps-list {
  width: 100%;
}
.members-page .members-panel.sponsor-completion .panel-body .steps-list ul {
  width: 100%;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.members-page .members-panel.sponsor-completion .panel-body .steps-list ul .steps-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  height: 51px;
  width: 100%;
  padding: 8px;
  margin-bottom: 8px;
  background-color: #eef5fe;
  border-radius: 3px;
}
.members-page .members-panel.sponsor-completion .panel-body .steps-list ul .steps-item .wrapper-left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.members-page .members-panel.sponsor-completion .panel-body .steps-list ul .steps-item .wrapper-left .title {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #3e455e;
}
.members-page .members-panel.sponsor-completion .panel-body .steps-list ul .steps-item .wrapper-left .count {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  background-color: #d5e7fc;
  border-radius: 3px;
  padding: 8px;
  font-size: 12px;
  margin-right: 16px;
}
.members-page .members-panel.sponsor-completion .panel-body .steps-list ul .steps-item .wrapper-right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 20px;
}
.members-page .members-panel.sponsor-completion .panel-body .steps-list ul .steps-item .wrapper-right .skip-link {
  font-size: 14px;
  color: #2680eb;
  transition: 0.3s;
}
.members-page .members-panel.sponsor-completion .panel-body .steps-list .view-more {
  font-family: "Roboto", sans-serif;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  height: 35px;
  border-radius: 3px;
  border: solid 1px #e3ecef;
  font-size: 14px;
  color: #2680eb;
  transition: 0.3s;
}
.members-page .members-panel.sponsor-completion .panel-body .steps-list .view-more:hover {
  text-decoration: none;
  border-color: #2680eb;
}
.members-page .members-panel.statistics .panel-header .actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.members-page .members-panel.statistics .panel-header .actions .view-selection {
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-right: 24px;
  color: #3E455E;
  font-family: "Roboto";
  font-size: 14px;
  font-weight: 400;
}
.members-page .members-panel.statistics .panel-header .actions .view-selection .btn-web, .members-page .members-panel.statistics .panel-header .actions .view-selection .btn-app {
  color: rgba(62, 69, 94, 0.64);
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 400;
  opacity: 0.65;
  cursor: pointer;
}
.members-page .members-panel.statistics .panel-header .actions .view-selection .btn-web .fa, .members-page .members-panel.statistics .panel-header .actions .view-selection .btn-app .fa {
  color: rgba(62, 69, 94, 0.64);
}
.members-page .members-panel.statistics .panel-header .actions .view-selection .btn-web.active, .members-page .members-panel.statistics .panel-header .actions .view-selection .btn-app.active {
  opacity: 1;
  color: #137DF7;
}
.members-page .members-panel.statistics .panel-header .actions .view-selection .btn-web.active .fa, .members-page .members-panel.statistics .panel-header .actions .view-selection .btn-app.active .fa {
  opacity: 1;
  color: #137DF7;
}
.members-page .members-panel.statistics .panel-header .actions .view-selection .btn-app .fa {
  font-size: 20px;
}
.members-page .members-panel.statistics .chart-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.members-page .members-panel.statistics .chart-container .panel-body {
  width: 100%;
}
.members-page .members-panel.statistics .chart-container .panel-body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.members-page .members-panel.statistics .chart-container .panel-body .chart-area {
  width: 100%;
}
.members-page .members-panel.statistics .chart-container .filters-area {
  width: 25%;
  padding: 10px 0px 10px 0px;
}
.members-page .members-panel.statistics .chart-container .filters-area .chart-options {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.members-page .members-panel.activity-report .panel-body {
  padding: 0;
}
.members-page .members-panel.activity-report .panel-body .reviews {
  border-bottom: 1px solid #DCDEE2;
}
.members-page .members-panel.activity-report .panel-body .reviews .activicty-item {
  padding: 24px 16px;
}
.members-page .members-panel.activity-report .panel-body .view-selection {
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-right: 24px;
  color: #3E455E;
  font-family: "Roboto";
  font-size: 14px;
  font-weight: 400;
  padding: 16px 24px;
}
.members-page .members-panel.activity-report .panel-body .view-selection .btn-web, .members-page .members-panel.activity-report .panel-body .view-selection .btn-app {
  color: rgba(62, 69, 94, 0.64);
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 400;
  opacity: 0.65;
  cursor: pointer;
}
.members-page .members-panel.activity-report .panel-body .view-selection .btn-web .fa, .members-page .members-panel.activity-report .panel-body .view-selection .btn-app .fa {
  color: rgba(62, 69, 94, 0.64);
}
.members-page .members-panel.activity-report .panel-body .view-selection .btn-web.active, .members-page .members-panel.activity-report .panel-body .view-selection .btn-app.active {
  opacity: 1;
  color: #137DF7;
}
.members-page .members-panel.activity-report .panel-body .view-selection .btn-web.active .fa, .members-page .members-panel.activity-report .panel-body .view-selection .btn-app.active .fa {
  opacity: 1;
  color: #137DF7;
}
.members-page .members-panel.activity-report .panel-body .view-selection .btn-app .fa {
  font-size: 20px;
}
.members-page .members-panel.activity-report .panel-body .activity-content {
  padding: 8px 24px 16px 24px;
}
.members-page#screenPackage .advertise-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .members-page#screenPackage .advertise-wrapper {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.members-page#screenPackage .advertise-wrapper .media-left {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .members-page#screenPackage .advertise-wrapper .media-left {
    width: auto;
  }
}
.members-page#screenPackage .advertise-wrapper .media-left img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  margin: 0 auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .members-page#screenPackage .advertise-wrapper .media-left img {
    max-width: initial;
  }
}
.members-page#screenPackage .advertise-wrapper .media-body {
  text-align: center;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .members-page#screenPackage .advertise-wrapper .media-body {
    margin-left: 24px;
    margin-top: 0;
    text-align: left;
  }
}
.members-page#screenPackage .advertise-wrapper + br + .text-center .button {
  width: 100%;
}
.members-page#screenPackage .advertise-wrapper + br + .text-center .button:not(:first-child) {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .members-page#screenPackage .advertise-wrapper + br + .text-center .button {
    width: auto;
    margin-top: 0;
  }
}
.members-page .sponsor-plans-table {
  border: solid 1px #e3ecef;
  border-radius: 3px;
  background-color: #fff;
}
.members-page .sponsor-plans-table .table-header {
  display: -ms-flexbox;
  display: flex;
  padding: 12px 0 12px 56px;
  border-bottom: solid 1px #e3ecef;
}
.members-page .sponsor-plans-table .table-header .table-col {
  font-size: 16px;
  font-weight: 700;
  color: #3e455e;
  width: 200px;
}
.members-page .sponsor-plans-table .table-body .plans-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.members-page .sponsor-plans-table .table-body .plans-list li .plan-item-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  position: relative;
  padding: 12px 24px 12px 56px;
  border-bottom: solid 1px #e3ecef;
}
.members-page .sponsor-plans-table .table-body .plans-list li .plan-item-header:last-of-type {
  border-bottom: 0;
}
.members-page .sponsor-plans-table .table-body .plans-list li .plan-item-header .wrapper-left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.members-page .sponsor-plans-table .table-body .plans-list li .plan-item-header .wrapper-left .expand-item {
  position: absolute;
  left: 22px;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  cursor: pointer;
}
.members-page .sponsor-plans-table .table-body .plans-list li .plan-item-header .wrapper-left .expand-item .fa {
  color: #2680eb;
  font-size: 12px;
}
.members-page .sponsor-plans-table .table-body .plans-list li .plan-item-header .wrapper-left .table-col {
  font-size: 14px;
  font-weight: 400;
  color: #3e455e;
  width: 200px;
}
.members-page .sponsor-plans-table .table-body .plans-list li .plan-item-header .wrapper-left .table-col .tag {
  padding: 2px 12px;
  border-radius: 50px;
  width: fit-content;
}
.members-page .sponsor-plans-table .table-body .plans-list li .plan-item-header .wrapper-left .table-col .tag.active {
  color: #6cbf13;
  background-color: #f3faec;
}
.members-page .sponsor-plans-table .table-body .plans-list li .plan-item-header .wrapper-left .table-col .tag.canceled {
  color: #747083;
  background-color: #f0f0f2;
}
.members-page .sponsor-plans-table .table-body .plans-list li .plan-item-header .wrapper-left .table-col .tag.expired {
  color: #747083;
  background-color: #fedbe3;
}
.members-page .sponsor-plans-table .table-body .plans-list li .plan-item-header .wrapper-left .table-col .tag.trial {
  color: #747083;
  background-color: #dcebfc;
}
.members-page .sponsor-plans-table .table-body .plans-list li .plan-item-header .wrapper-right {
  display: -ms-flexbox;
  display: flex;
}
.members-page .sponsor-plans-table .table-body .plans-list li .plan-item-header .wrapper-right .table-button {
  border-radius: 3px;
  border: solid 1px #e3ecef;
  padding: 8px 16px;
  color: #2680eb;
  margin-right: 8px;
  font-size: 14px;
  transition: 0.3s;
}
.members-page .sponsor-plans-table .table-body .plans-list li .plan-item-header .wrapper-right .table-button:last-of-type {
  margin-right: 0;
}
.members-page .sponsor-plans-table .table-body .plans-list li .plan-item-header .wrapper-right .table-button:hover {
  text-decoration: none;
  border-color: #2680eb;
}
.members-page .sponsor-plans-table .table-body .plans-list li .plan-item-detail {
  background-color: #f6faff;
}
.members-page .sponsor-plans-table .table-body .plans-list li .plan-item-detail .details-list {
  list-style-type: none;
  margin: 0;
  padding: 12px 56px;
}
.members-page .sponsor-plans-table .table-body .plans-list li .plan-item-detail .details-list li {
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  color: #3e455e;
}
.members-page .sponsor-plans-table .table-body .plans-list li .plan-item-detail .details-list li .title {
  font-weight: 700;
  margin-right: 4px;
}
.members-page .page-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 24px;
}
.members-page .page-title .back-link {
  font-size: 14px;
  margin-right: 24px;
  color: #3e455e;
}
.members-page .page-title .back-link .fa {
  font-size: 10px;
  margin-right: 8px;
  color: #3e455e;
}
.members-page .page-title .back-link:hover {
  text-decoration: none;
}
.members-page .page-title h1 {
  margin-bottom: 0;
}
.members-page .panel-plans-info {
  border-radius: 3px;
  border: solid 1px #e3ecef;
  background-color: #fff;
}
.members-page .panel-plans-info .panel-plans-header {
  padding: 12px 24px;
  border-bottom: solid 1px #e3ecef;
  font-size: 16px;
  color: #3e455e;
}
.members-page .panel-plans-info .panel-plans-body {
  padding: 16px 24px;
}
.members-page .panel-plans-info .panel-plans-body p {
  color: #74798b;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}
.members-page .panel-plans-info .panel-plans-body .status-tag {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 24px;
}
.members-page .panel-plans-info .panel-plans-body .status-tag .title {
  font-weight: 700;
  margin-right: 8px;
}
.members-page .panel-plans-info .panel-plans-body .status-tag .tag {
  padding: 2px 12px;
  border-radius: 50px;
  width: fit-content;
  font-size: 14px;
}
.members-page .panel-plans-info .panel-plans-body .status-tag .tag.active {
  color: #6cbf13;
  background-color: #f3faec;
}
.members-page .panel-plans-info .panel-plans-body .status-tag .tag.canceled {
  color: #747083;
  background-color: #f0f0f2;
}
.members-page .panel-plans-info .panel-plans-body .status-tag .tag.expired {
  color: #747083;
  background-color: #fedbe3;
}
.members-page .panel-plans-info .panel-plans-body .status-tag .tag.trial {
  color: #747083;
  background-color: #dcebfc;
}
.members-page .panel-plans-info .panel-plans-body .list-info {
  list-style-type: none;
  padding: 0;
  margin-bottom: 24px;
}
.members-page .panel-plans-info .panel-plans-body .list-info li {
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
}
.members-page .panel-plans-info .panel-plans-body .list-info li .title {
  font-weight: 700;
  margin-right: 8px;
}
.members-page .panel-plans-info .panel-plans-body .cancel-plan {
  font-family: "Roboto", sans-serif;
  border-radius: 3px;
  border: solid 1px #e3ecef;
  padding: 8px 16px;
  color: #2680eb;
  font-size: 14px;
  transition: 0.3;
}
.members-page .panel-plans-info .panel-plans-body .cancel-plan:hover {
  text-decoration: none;
  border-color: #2680eb;
}
.members-page .panel-plans-info .panel-plans-body .plan-products-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.members-page .panel-plans-info .panel-plans-body .plan-products-list li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 8px;
  background-color: #eef5fe;
  border-radius: 4px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #3e455e;
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
}
.members-page .panel-plans-info .panel-plans-body .plan-products-list li .count {
  border-radius: 4px;
  padding: 8px 12px;
  background-color: #d5e7fc;
  margin-right: 16px;
}
.members-page.subscriptions-table {
  overflow-x: scroll;
}

.selectize-customized .selectize-control {
  position: relative;
}
.selectize-customized .selectize-dropdown {
  position: absolute;
  margin-top: 8px;
  z-index: 5000;
  background: var(--color-white-base, white);
  padding: 0 !important;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
}
.selectize-customized .option {
  cursor: pointer;
  padding: 8px 16px;
  transition: 0.2s ease-in-out;
}
.selectize-customized .option:hover {
  background: var(--highlight-base, #137df7);
  color: var(--color-white-base, white);
}
.selectize-customized .selectize-input {
  padding: 0 16px !important;
}
.selectize-customized .selectize-input .item {
  background: none !important;
  color: var(--neutral-base, #3e455e) !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: var(--font-size-16, 1em) !important;
}

.custom-level-price {
  padding: 32px 0;
}
.custom-level-price .pricing-plans {
  padding: 0;
}
.custom-level-price .pricing-table {
  margin-top: 0;
}
.custom-level-price .pricing-table .pricing-wrapper .pricing-list {
  padding: 0;
  margin-top: 0;
}
.custom-level-price .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-collapse .price-advantages .price-advantages-item .item-name {
  font-size: 0.875em;
}
.custom-level-price .level-price-actions {
  text-align: center;
  margin-top: 32px;
}

.order-package-page .page-title {
  width: 100%;
  display: block;
  text-align: center;
}
.order-package-page .order-package-content .package-picture {
  display: block;
  text-align: center;
  margin-top: 24px;
}
.order-package-page .order-package-content .package-description {
  max-width: 65%;
  margin: 16px auto 0;
  text-align: center;
}
.order-package-page .order-package-content .table {
  max-width: 65%;
  margin: 16px auto 0;
}
.order-package-page .order-package-content .package-actions {
  text-align: center;
  margin-top: 24px;
}
.order-package-page .order-package-content .package-actions .button {
  width: 100%;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .order-package-page .order-package-content .package-actions .button {
    width: auto;
    margin-top: 0;
  }
}

.custom-members-modal {
  position: absolute;
}
@media screen and (min-width: 1200px) {
  .custom-members-modal {
    position: fixed;
  }
}
.custom-members-modal .modal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  background: var(--highlight-base, #137df7);
  color: rgb(240.9754098361, 247.2745901639, 254.5245901639);
}
.custom-members-modal .modal-header:before, .custom-members-modal .modal-header:after {
  display: none;
}
.custom-members-modal .modal-header .button {
  background: white;
}
.custom-members-modal .multiple-categories ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.custom-members-modal .multiple-categories ul li {
  padding: 0;
  line-height: 1;
  font-size: 0.875em;
  cursor: pointer;
}
.custom-members-modal .multiple-categories ul li .btn-opencategory .ion-ios7-plus-outline, .custom-members-modal .multiple-categories ul li .btn-opencategory .ion-ios7-minus-outline {
  font-style: normal;
  color: var(--highlight-base, #137df7);
}
.custom-members-modal .multiple-categories ul li .btn-opencategory .ion-ios7-plus-outline:before, .custom-members-modal .multiple-categories ul li .btn-opencategory .ion-ios7-minus-outline:before {
  font-family: "fontAwesome";
}
.custom-members-modal .multiple-categories ul li .btn-opencategory .ion-ios7-plus-outline:before {
  content: "\f055";
}
.custom-members-modal .multiple-categories ul li .btn-opencategory .ion-ios7-minus-outline:before {
  content: "\f056";
}
.custom-members-modal .multiple-categories > ul {
  background: #eee;
  padding: 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  -ms-flex-align: start;
      align-items: flex-start;
}
.custom-members-modal .multiple-categories > ul li {
  text-transform: uppercase;
}
.custom-members-modal .multiple-categories > ul li:not(:first-child) {
  margin-top: 16px;
}
.custom-members-modal .multiple-categories > ul ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  -ms-flex-align: start;
      align-items: flex-start;
  margin-left: 16px;
}
.custom-members-modal .multiple-categories > ul ul:not(.opened) {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
}
.custom-members-modal .multiple-categories > ul ul li {
  margin-top: 16px;
  text-transform: capitalize;
  font-size: 0.875rem;
}
.custom-members-modal .multiple-categories .no-child {
  display: inline-block;
  border-radius: var(--border-radius, 3px);
  text-transform: capitalize;
}
.custom-members-modal .multiple-categories .no-child .category-child {
  padding: 4px;
  background: var(--highlight-base, #137df7);
  color: white;
  display: block;
  border-radius: var(--border-radius, 3px);
  transition: 0.2s ease-in-out;
}
.custom-members-modal .multiple-categories .no-child .category-child.selected {
  background: rgb(212.5, 212.5, 212.5);
  text-decoration: line-through;
  color: var(--neutral-base, #3e455e);
}
.custom-members-modal .multiple-categories .no-child .category-child:hover {
  background: var(--highlight-dark, rgb(16.15, 106.25, 209.95));
}
.custom-members-modal .selectize-control {
  background: #eee;
}
.custom-members-modal .selectize-control + .max-categories {
  background: #eee;
  line-height: 1;
  padding: 8px;
  font-size: 0.75em;
  border-top: 1px solid rgb(225.25, 225.25, 225.25);
}
.custom-members-modal .selectize-control + br {
  display: none;
}
.custom-members-modal .selectize-control #category-select-selectized {
  display: none;
}
.custom-members-modal .selectize-control .items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: start;
      align-items: flex-start;
}
.custom-members-modal .selectize-control .items.has-options {
  padding: 0 8px 8px;
}
.custom-members-modal .selectize-control .items .item {
  line-height: 1;
  background: var(--highlight-base, #137df7);
  color: white;
  border-radius: var(--border-radius, 3px);
  padding: 4px 18px 4px 4px;
  position: relative;
  text-decoration: none;
  margin-top: 8px;
  margin-right: 8px;
}
.custom-members-modal .selectize-control .items .item .remove {
  color: white;
  line-height: 1;
  margin-left: 4px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: right;
  padding-right: 10px;
  padding-top: 4px;
  text-decoration: none;
}
.custom-members-modal .modal-footer {
  background: var(--color-black-transp-5, rgba(0, 0, 0, 0.05));
  text-align: center;
}
.custom-members-modal .modal-footer:before, .custom-members-modal .modal-footer:after {
  display: none;
}

.custom-biling table {
  background: white;
}
.custom-biling table .link-table {
  cursor: pointer;
  color: var(--link-base, #3ebaf6);
}
.custom-biling .custom-inline-radio .radio {
  display: inline-block;
}
.custom-biling .custom-inline-radio .radio:not(:last-child) {
  margin-right: 16px;
}
.custom-biling .custom-inline-radio .radio input {
  margin-right: 8px;
}

.cutom-select-appearence {
  appearance: menulist !important;
  height: 40px !important;
  background: white !important;
}

.default-row-biling {
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.default-row-biling .col-md-12 {
  width: 100%;
}
.default-row-biling .col-md-8 {
  width: calc(67.4% - 16px);
}
.default-row-biling .col-md-6 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .default-row-biling .col-md-6 {
    width: calc(50% - 6px);
  }
}
.default-row-biling .col-md-4 {
  width: calc(33.3333333333% - 6px);
}
.default-row-biling .col-md-3 {
  width: calc(25% - 6px);
}
.default-row-biling .col-md-2 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .default-row-biling .col-md-2 {
    width: calc(16.6666666667% - 6px);
  }
}
.default-row-biling .multiple-select select {
  width: 100%;
}

dl {
  margin-top: 0;
  margin-bottom: 20px;
}

dt, dd {
  line-height: 1.42857143;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}
.custom-tree-view {
  background: #eee;
  padding: 16px;
}
.custom-tree-view ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.custom-tree-view ul li {
  padding: 0;
  line-height: 1;
  font-size: 0.875rem;
  cursor: pointer;
}
.custom-tree-view .categoryBullet .categoryAdd {
  padding: 4px;
  background: var(--highlight-base, #137df7);
  color: white;
  display: inline-block;
  border-radius: var(--border-radius, 3px);
  transition: 0.2s ease-in-out;
  text-decoration: none;
  font-size: 12px;
}
.custom-tree-view .switchOpen, .custom-tree-view .switchClose {
  display: inline-block;
  background: #e1e1e1;
  text-align: center;
  border-radius: 9999px;
  font-size: 18px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  margin-right: 8px;
  text-decoration: none;
}
.custom-tree-view .switchOpen, .custom-tree-view .categoryTitle, .custom-tree-view .categoryBullet {
  color: var(--neutral-base, #3e455e);
  text-decoration: none;
}
.custom-tree-view > ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  -ms-flex-align: start;
      align-items: flex-start;
}
.custom-tree-view > ul li {
  text-transform: uppercase;
}
.custom-tree-view > ul li:not(:first-child) {
  margin-top: 16px;
}
.custom-tree-view > ul ul {
  margin-left: 30px;
}
.custom-tree-view > ul ul li {
  margin-top: 0 !important;
  margin-top: 8px !important;
}

.isHidden {
  display: none !important;
}

.isVisible {
  display: block !important;
}

.price-resume {
  padding: 48px 0;
}
.price-resume .orderTotalAmount {
  font-size: 1.5em;
  font-family: var(--paragraph-font, "Roboto");
}
.price-resume .orderTotalAmount strong {
  font-family: var(--heading-font, "Rubik");
}
.price-resume .price-action {
  margin-top: 24px;
  text-align: center;
}
.price-resume .price-action .button {
  width: 100%;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .price-resume .price-action .button {
    width: auto;
    margin-top: 0;
  }
}

.profile-page .members-panel > .panel-body {
  padding: 16px;
}
.profile-page .user-picture {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 9999px;
  display: block;
  margin: 0 auto;
}
.profile-page .user-from {
  margin-top: 8px;
}
.profile-page .user-from {
  margin-top: 4px;
}
.profile-page .profile-user-description {
  text-align: left;
}
.profile-page .profile-user-description .user-company, .profile-page .profile-user-description .user-phone, .profile-page .profile-user-description .user-about, .profile-page .profile-user-description .user-address, .profile-page .profile-user-description .link, .profile-page .profile-user-description .user-desc {
  margin-top: 8px;
}
.profile-page .profile-user-description .facebook-link {
  margin-top: 16px;
}
.profile-page .profile-user-description-empty {
  text-align: center;
}
.profile-page .profile-user-description-empty .paragraph {
  margin-bottom: 16px;
}
.profile-page .profile-user-description-empty .button {
  display: block;
  width: fit-content;
  margin: 16px auto 0 auto;
}
.profile-page .input-group-btn .button {
  height: 40px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  white-space: pre;
}
.profile-page #checkUsername {
  margin-top: 8px;
}
.profile-page .profile-edit-picture .preview-picture {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  max-width: 100%;
  position: relative;
  border: solid 1px #e3ecef;
  padding: 12px 32px;
}
.profile-page .profile-edit-picture .preview-picture .profile-picture:not(.has-picture) {
  margin-bottom: 16px;
}
.profile-page .profile-edit-picture .preview-picture .profile-picture:not(.has-picture):not(.loading-picture) img {
  width: 100px;
  height: 100px;
}
.profile-page .profile-edit-picture .preview-picture .profile-picture:not(.has-picture) img {
  object-fit: cover;
  border-radius: 9999px;
  display: block;
  margin: 0 auto;
}
.profile-page .profile-edit-picture .preview-picture .profile-picture.has-picture img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.profile-page .profile-edit-picture .preview-picture #image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
  font-size: 0px;
}
.profile-page .profile-edit-picture .or {
  display: block;
  text-align: center;
  padding: 8px 0;
}
.profile-page .profile-edit-picture .picture-actions {
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}
.profile-page .profile-edit-picture .picture-actions .btn-group-input {
  position: relative;
  cursor: pointer;
}
.profile-page .profile-edit-picture .picture-actions .button-md {
  padding: 8px;
  font-family: "Roboto";
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
}
.profile-page .url-example {
  font-size: 12px;
  margin-top: -8px;
  word-break: break-word;
}
.profile-page .personal-page-switch {
  margin: auto;
}
.profile-page .personal-page-label {
  font-family: "Rubik";
  font-size: 12px;
  font-weight: bold;
  margin-top: 16px;
  margin-bottom: 12px;
  text-align: center;
}
.profile-page .personal-page {
  position: relative;
  background: rgba(0, 0, 0, 0.25);
  width: 45px;
  height: 22px;
  border-radius: 10px;
  margin: auto;
}
.profile-page .personal-page:before, .profile-page .personal-page:after {
  font-family: "fontAwesome";
  position: absolute;
  top: 3px;
  font-size: 10px;
  color: #fff;
}
.profile-page .personal-page:before {
  content: "\f00c";
  left: 7px;
}
.profile-page .personal-page:after {
  content: "\f00d";
  right: 7px;
}
.profile-page .personal-page.enabled {
  background-color: var(--success-base, #6cbf13);
}
.profile-page .personal-page.enabled .switch-label-on {
  cursor: pointer;
}
.profile-page .personal-page.enabled .switch-label-off {
  cursor: default;
}
.profile-page .personal-page.enabled .switch-selection {
  border-color: var(--success-base, #6cbf13);
}
.profile-page .personal-page .switch-label {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
  z-index: 2;
  float: left;
  width: 50%;
  height: 26px;
  margin-bottom: 0;
  line-height: 1;
  font-size: 11px;
  color: var(--neutral-base, #3e455e);
  text-align: center;
}
.profile-page .personal-page .switch-label:active {
  font-weight: bold;
}
.profile-page .personal-page .switch-label-off {
  padding-left: 2px;
  cursor: pointer;
}
.profile-page .personal-page .switch-label-on {
  padding-right: 2px;
}
.profile-page .personal-page .switch-input {
  display: none;
}
.profile-page .personal-page .switch-input:checked + .switch-label {
  font-weight: bold;
  color: white;
  transition: 0.15s ease-out;
  transition-property: color, text-shadow;
}
.profile-page .personal-page .switch-input:checked + .switch-label-on ~ .switch-selection {
  right: calc(50% + 1px);
}
.profile-page .personal-page .switch-selection {
  position: absolute;
  z-index: 1;
  top: 1px;
  right: 1px;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background: #fff;
  transition: left 0.15s ease-out;
}

.renewal_options {
  margin-top: 8px;
}
.renewal_options .radio label {
  margin-bottom: 0;
}
.renewal_options .radio label input {
  margin-right: 8px;
}

#cropPanel .jcrop-holder {
  margin-bottom: 24px;
}
#cropPanel .jcrop-holder img {
  max-width: none;
}
#cropPanel img.jcrop-preview {
  max-width: none;
}
#cropPanel .jcrop-hline, #cropPanel .jcrop-vline {
  font-size: 0;
  position: absolute;
  background: white url(../../images/Jcrop.gif);
}
#cropPanel .jcrop-hline {
  height: 1px !important;
  width: 100%;
}
#cropPanel .jcrop-hline.bottom {
  bottom: 0;
}
#cropPanel .jcrop-vline {
  width: 1px !important;
  height: 100%;
}
#cropPanel .jcrop-vline.right {
  right: 0;
}
#cropPanel .jcrop-tracker {
  width: 100%;
  height: 100%;
  -webkit-tap-highlight-color: transparent;
}
#cropPanel .jcrop-dragbar.ord-n, #cropPanel .jcrop-dragbar.ord-s {
  width: 100%;
  height: 7px;
}
#cropPanel .jcrop-dragbar.ord-e, #cropPanel .jcrop-dragbar.ord-w {
  width: 7px;
  height: 100%;
}
#cropPanel .jcrop-dragbar.ord-n {
  margin-top: -4px;
}
#cropPanel .jcrop-dragbar.ord-s {
  bottom: 0;
  margin-bottom: -4px;
}
#cropPanel .jcrop-dragbar.ord-e {
  margin-right: -4px;
  right: 0;
}
#cropPanel .jcrop-dragbar.ord-w {
  margin-left: -4px;
}
#cropPanel .jcrop-handle {
  background: #333;
  border: 1px solid #eee;
  width: 7px;
  height: 7px;
  font-size: 1px;
}
#cropPanel .jcrop-handle.ord-n {
  top: 0;
  left: 50%;
  margin-top: -5px;
  margin-left: -5px;
}
#cropPanel .jcrop-handle.ord-s {
  bottom: 0;
  left: 50%;
  margin-bottom: -5px;
  margin-left: -5px;
}
#cropPanel .jcrop-handle.ord-e {
  top: 50%;
  right: 0;
  margin-top: -5px;
  margin-right: -5px;
}
#cropPanel .jcrop-handle.ord-w {
  top: 50%;
  left: 0;
  margin-top: -5px;
  margin-left: -5px;
}
#cropPanel .jcrop-handle.ord-nw {
  top: 0;
  left: 0;
  margin-top: -5px;
  margin-left: -5px;
}
#cropPanel .jcrop-handle.ord-ne {
  top: 0;
  right: 0;
  margin-top: -5px;
  margin-right: -5px;
}
#cropPanel .jcrop-handle.ord-se {
  bottom: 0;
  right: 0;
  margin-bottom: -5px;
  margin-right: -5px;
}
#cropPanel .jcrop-handle.ord-sw {
  bottom: 0;
  left: 0;
  margin-bottom: -5px;
  margin-left: -5px;
}

.remove-hours-work {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  height: 40px;
}

.custom-input-size {
  width: 100%;
}
.custom-input-size:not(:first-child) {
  margin-top: 8px;
}

.section-unsplash .unsplash-header {
  margin-bottom: 32px;
}
.section-unsplash .unsplash-header .form-group {
  position: relative;
}
.section-unsplash .unsplash-header .form-group .fa {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 16px;
  color: #A1B3C9;
}
.section-unsplash .unsplash-header .form-group input {
  padding-left: 32px;
}
.section-unsplash .unsplash-header label {
  font-size: 0.875em;
}
.section-unsplash .unsplash-header .input {
  width: 100%;
}
.section-unsplash .unsplash-body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-top: -16px;
}
.section-unsplash .unsplash-body .unsplash-item {
  width: calc(33.3333333333% - 6px);
  height: 120px;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  margin-top: 16px;
}
.section-unsplash .unsplash-body .unsplash-item:before {
  content: "\f00c";
  font-family: "fontAwesome";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(25, 154, 219, 0.7);
  display: none;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  color: white;
  font-size: 32px;
}
.section-unsplash .unsplash-body .unsplash-item:hover .unsplash-author {
  -ms-transform: translateY(0);
      transform: translateY(0);
}
.section-unsplash .unsplash-body .unsplash-item.selected:before {
  display: -ms-flexbox;
  display: flex;
}
.section-unsplash .unsplash-body .unsplash-item.selected .unsplash-author {
  -ms-transform: translateY(0);
      transform: translateY(0);
}
.section-unsplash .unsplash-body .unsplash-item .unsplash-picture {
  width: 100%;
  height: 120px;
  display: block;
}
.section-unsplash .unsplash-body .unsplash-item .unsplash-picture img {
  width: 100%;
  height: 120px;
  display: block;
  object-fit: cover;
}
.section-unsplash .unsplash-body .unsplash-item .unsplash-author {
  position: absolute;
  width: 100%;
  bottom: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  color: #ccc;
  font-weight: bold;
  display: block;
  padding: 4px;
  text-decoration: none;
  transition: 0.2s ease-in-out;
  -ms-transform: translateY(100%);
      transform: translateY(100%);
}
.section-unsplash .unsplash-loadmore {
  margin-top: 16px;
}
.section-unsplash .unsplash-loadmore .btn-unsplash-more {
  background-color: transparent;
  color: var(--highlight-base, #137df7);
  border: solid 1px var(--highlight-base, #137df7);
}

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.progress .progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #ffffff;
  text-align: center;
  background-color: #337ab7;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  transition: width 0.6s ease;
}
.progress .progress-bar.active {
  animation: progress-bar-stripes 2s linear infinite;
}
.progress.progress-striped .progress-bar {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}
.progress.progress-striped .progress-bar-success,
.progress.progress-striped .progress-bar-info,
.progress.progress-striped .progress-bar-warning,
.progress.progress-striped .progress-bar-danger {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress.active .progress-bar {
  animation: progress-bar-stripes 2s linear infinite;
}
.progress .progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}
.progress .progress-bar-success {
  background-color: var(--success-base, #6cbf13);
}
.progress .progress-bar-info {
  background-color: var(--highlight-base, #137df7);
}
.progress .progress-bar-warning {
  background-color: var(--attention-base, #ffae00);
}
.progress .progress-bar-danger {
  background-color: var(--warning-base, #fc5353);
}

.panel-hours-of-work .selectize {
  width: 100% !important;
}
.panel-hours-of-work label {
  margin-bottom: 0 !important;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .panel-hours-of-work .col-md-2 {
    width: 100% !important;
  }
  .panel-hours-of-work .btn-add-hours {
    margin-top: 16px;
  }
}
.panel-hours-of-work .btn-add-hours {
  padding-top: 11px;
  padding-bottom: 11px;
}

.hours-datepicker {
  position: absolute;
  z-index: 500;
  background: white;
  padding: 24px;
  border: 1px solid #ccc;
  margin-top: 14px;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.35);
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
}
.hours-datepicker:before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  background: white;
  top: -6.5px;
  left: 50%;
  -ms-transform: translateX(-50%) rotate(45deg);
      transform: translateX(-50%) rotate(45deg);
}
.hours-datepicker .datepicker-content {
  display: -ms-flexbox;
  display: flex;
}
.hours-datepicker .datepicker-item {
  width: 50px;
  text-align: center;
}
.hours-datepicker .datepicker-item.minutes-item, .hours-datepicker .datepicker-item.am-pm-item {
  margin-left: 24px;
}
.hours-datepicker .datepicker-item.am-pm-item button {
  margin-top: 55px;
}
.hours-datepicker .datepicker-item span {
  font-size: 16px;
  font-weight: 400;
  display: block;
}
.hours-datepicker .datepicker-item .input-content {
  margin-top: 8px;
}
.hours-datepicker .datepicker-item .input-content .button-input {
  background: none;
  border: none;
  box-shadow: none;
  background-image: none;
  font-size: 20px;
  width: 100%;
  height: auto;
  padding: 0;
  line-height: 1;
}
.hours-datepicker .datepicker-item .input-content .input-action {
  width: 50px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  border: 1px solid #ccc;
}
.hours-datepicker .datepicker-nextday {
  margin-top: 8px;
  text-align: center;
  border-top: 1px solid #eee;
  padding-top: 8px;
}
.hours-datepicker .datepicker-nextday label {
  margin-bottom: 0;
}

.members-heading {
  padding: 24px 0;
}
@media screen and (min-width: 992px) {
  .members-heading {
    padding: 48px 0;
  }
}
.members-heading .wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.members-heading .heading {
  font-weight: normal;
}

.form-control-blocked {
  background: #e8ecf1 !important;
  border-color: #dadde1 !important;
  background-image: url(/sitemgr/assets/img/locker-input.svg) !important;
  background-size: 15px !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  pointer-events: none;
  font-size: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

textarea.form-control-blocked {
  height: 65px;
}

.selectize-control.form-control-blocked .selectize-input {
  background: #e8ecf1 !important;
  border-color: #dadde1 !important;
  background-image: url(/sitemgr/assets/img/locker-input.svg) !important;
  background-size: 15px !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  pointer-events: none;
  font-size: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}
.selectize-control.form-control-blocked .selectize-input:after {
  display: none !important;
}
.selectize-control.form-control-blocked .selectize-input .item {
  display: none !important;
}
.selectize-control.form-control-blocked .selectize-dropdown {
  display: none !important;
}

.panel {
  position: relative;
}

.panel-blocked {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(232, 236, 241, 0.9);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-direction: column;
      flex-direction: column;
  color: #6e747b;
  font-family: var(--heading-font, "Rubik");
  font-size: 16px;
  padding: 0 124px;
  text-align: center;
  z-index: 4;
  cursor: not-allowed;
}
.panel-blocked p {
  margin-top: 8px;
  margin-bottom: 0;
}
.panel-blocked p a, .panel-blocked p .link {
  color: #6e747b;
  border-bottom-color: #6e747b;
}
.panel-blocked p a:hover, .panel-blocked p .link:hover {
  border-bottom-color: #6e747b;
}

.icon-wrapper {
  width: 96px;
  height: 96px;
  perspective: 600px;
  margin: 0 auto;
}
.icon-wrapper .icon-item {
  width: 100%;
  height: 100%;
  transition: transform 0.4s;
  transform-style: preserve-3d;
  position: relative;
}
.icon-wrapper .icon-item.is-flipped {
  transform: rotateY(180deg);
}
.icon-wrapper .icon-item .icon-face {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 50px;
  backface-visibility: hidden;
  border-radius: 9999px;
  border: 5px solid transparent;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.icon-wrapper .icon-item .icon-face.icon-face-front {
  border-color: #199ada;
  color: #199ada;
}
.icon-wrapper .icon-item .icon-face.icon-face-back {
  border-color: #75ca76;
  color: #75ca76;
  transform: rotateY(180deg);
  background-color: #fff;
}

.radio-group-margin {
  margin: 8px 0 16px 0;
}

#modal-upgrade .modal-header {
  border: none;
  text-align: right;
  padding-right: 0;
  padding-top: 8px;
}
#modal-upgrade .modal-header .button {
  background: none;
  font-size: 24px;
}
#modal-upgrade .upgrade-content {
  max-width: 80%;
  margin: 32px auto 0;
  text-align: center;
  margin-bottom: 32px;
}
#modal-upgrade .upgrade-content strong {
  color: #4a4a4a;
  font-family: var(--heading-font, "Rubik");
  font-weight: normal;
  font-size: 18px;
}
#modal-upgrade .upgrade-content p {
  color: #4a4a4a;
  font-family: var(--heading-font, "Rubik");
  font-weight: normal;
  font-size: 14px;
  margin: 16px 0 0;
}
#modal-upgrade .upgrade-content .button {
  margin-top: 42px;
}
#modal-upgrade .upgrade-content.second-step {
  display: none;
}

#modal-linked-listing .modal-body .search-listing-linked {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  max-width: 50%;
  border: 1px solid #a1b3c9;
  color: #8aa0ba;
  border-radius: 3px;
  background-color: white;
  padding-left: 12px;
  margin-bottom: 8px;
}
#modal-linked-listing .modal-body .search-listing-linked .form-control {
  border: none;
  outline: none;
  box-shadow: none;
  width: 100%;
  padding-left: 12px;
  height: 34px;
}
#modal-linked-listing .modal-body .linked-listing-list {
  border: 1px solid #a1b3c9;
  border-radius: 3px;
  max-height: 176px;
  overflow-y: auto;
  background: white;
}
#modal-linked-listing .modal-body .linked-listing-list::-webkit-scrollbar-track {
  background-color: #e2edf2;
}
#modal-linked-listing .modal-body .linked-listing-list::-webkit-scrollbar {
  width: 4px;
  background-color: #becfd7;
}
#modal-linked-listing .modal-body .linked-listing-list::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background-color: #becfd7;
}
#modal-linked-listing .modal-body .linked-listing-list .list-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  font-weight: 500;
  color: #2f2f2f;
  padding: 8px 16px;
  border-bottom: 1px solid #e2edf2;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out;
}
#modal-linked-listing .modal-body .linked-listing-list .list-item span {
  max-width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#modal-linked-listing .modal-body .linked-listing-list .list-item:hover {
  background-color: #e2edf2;
}

.categories-list:not(.categories-list-block) .categories-item .categories-block {
  padding: 20px 13px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
  transition: 0.2s ease-in-out;
  border-bottom: 1px solid #e6e6e6;
}
.categories-list:not(.categories-list-block) .categories-item .categories-block:hover {
  background: #f3f5f8;
  color: #199ada;
}
.categories-list:not(.categories-list-block) .categories-item .categories-block:hover .categories-name {
  color: #199ada;
}
.categories-list:not(.categories-list-block) .categories-item .categories-block:hover.is-selected {
  color: #199ada;
}
.categories-list:not(.categories-list-block) .categories-item .categories-block:hover.is-selected .categories-name {
  color: #199ada;
}
.categories-list:not(.categories-list-block) .categories-item .categories-block:hover .categories-action {
  display: block;
}
.categories-list:not(.categories-list-block) .categories-item .categories-block.is-selected .categories-name {
  color: #199adb;
}
.categories-list:not(.categories-list-block) .categories-item .categories-block[tree="0"] .categories-check {
  margin-right: 16px;
}
.categories-list:not(.categories-list-block) .categories-item .categories-block[tree="1"] .categories-check {
  margin-right: 48px;
}
.categories-list:not(.categories-list-block) .categories-item .categories-block[tree="2"] .categories-check {
  margin-right: 96px;
}
.categories-list:not(.categories-list-block) .categories-item .categories-block[tree="3"] .categories-check {
  margin-right: 144px;
}
.categories-list:not(.categories-list-block) .categories-item .categories-block[tree="4"] .categories-check {
  margin-right: 192px;
}
.categories-list:not(.categories-list-block) .categories-item .categories-block[is-loading=true] {
  -ms-flex-pack: center;
      justify-content: center;
  padding: 0;
  height: 63px;
}
.categories-list:not(.categories-list-block) .categories-item .categories-block[is-loading=true]:hover {
  background: white;
}
.categories-list:not(.categories-list-block) .categories-item .categories-check {
  margin: 0;
}
.categories-list:not(.categories-list-block) .categories-item .categories-name {
  font-size: 16px;
  color: #302e2b;
  font-weight: 400;
  text-decoration: none;
}
.categories-list:not(.categories-list-block) .categories-item .categories-name.is-active .fa {
  -ms-transform: rotate(180deg);
      transform: rotate(180deg);
}
.categories-list:not(.categories-list-block) .categories-item .categories-name .fa {
  transition: 0.2s ease-in-out;
}
.categories-list:not(.categories-list-block) .categories-item .categories-action {
  position: absolute;
  right: 13px;
  display: none;
}
.categories-list:not(.categories-list-block) .categories-item .categories-action .btn-edit {
  color: white;
  background-color: #199adb;
}
.categories-list:not(.categories-list-block) .categories-item .categories-action .btn-remove {
  color: white;
  background-color: #f48895;
}
.categories-list:not(.categories-list-block) .categories-item .categories-sub-block:not([is-active=true]) {
  display: none;
}

#tour-categories {
  position: relative;
}
#tour-categories .input-group .selectize-control {
  height: 34px;
}
#tour-categories .categories-buttons-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
#tour-categories .create-new-category-button {
  margin-top: 8px;
  display: inline-block;
  text-decoration: none;
}
#tour-categories .text-left {
  margin-top: 8px;
}

.categories-list-block:not(.create-categories-modal) {
  position: absolute;
  width: 290px;
  background: white;
  z-index: 5;
  border-radius: 4px;
  border: 1px solid #ccc;
  right: 0;
  top: 59px;
  margin-top: 12px;
  display: none;
}
@media screen and (min-width: 768px) {
  .categories-list-block:not(.create-categories-modal) {
    width: 430px;
    min-height: 343px;
  }
}
.categories-list-block:not(.create-categories-modal):before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: -7px;
  right: 35px;
  background: white;
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.categories-list-block:not(.create-categories-modal) .categories-list-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  padding: 8px;
  border-bottom: 1px solid #cccccc;
}
.categories-list-block:not(.create-categories-modal) .categories-list-header .open-create-categories.is-disabled {
  opacity: 0.3 !important;
  pointer-events: none !important;
  cursor: not-allowed !important;
}
.categories-list-block.create-categories-modal .categories-item .categories-block:hover {
  background: #f3f5f8;
}
.categories-list-block.create-categories-modal .categories-item .categories-block:hover .categories-name {
  color: #2f2f2f;
}
.categories-list-block.create-categories-modal .categories-item .categories-block:hover.is-selected .categories-name {
  color: #2f2f2f;
}
.categories-list-block.create-categories-modal .categories-item:last-child > .categories-block {
  border-bottom: none;
}
.categories-list-block.create-categories-modal .categories-list-header .form-control {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
}
.categories-list-block.create-categories-modal .categories-list-header .input-group-addon {
  cursor: pointer;
  background: white;
}
.categories-list-block.create-categories-modal .categories-list-header .input-group-addon .fa {
  transition: 0.2s ease-in-out;
}
.categories-list-block.create-categories-modal .categories-list-header .input-group-addon.is-open .fa {
  -ms-transform: rotate(180deg);
      transform: rotate(180deg);
}
.categories-list-block.create-categories-modal .categories-list-header .open-create-categories.is-disabled {
  opacity: 0.3 !important;
  pointer-events: none !important;
  cursor: not-allowed !important;
}
.categories-list-block.create-categories-modal .categories-wrap {
  border: 1px solid #ccc;
  border-top: none;
  background: white;
  display: none;
}
.categories-list-block.sponsors-category-dropdown .categories-item .categories-block:hover .addCategory,
.categories-list-block.sponsors-category-dropdown .categories-item .categories-block:hover .removeCategory {
  color: white;
}
.categories-list-block .categories-wrap {
  max-height: 290px;
  overflow-y: auto;
}
.categories-list-block .categories-list-header .input-group-icon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
.categories-list-block .categories-list-header .input-group-icon .input-icon {
  line-height: 32px;
  border: 1px solid #ccc;
  border-right: none;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  color: #8aa0ba;
  padding-left: 12px;
}
.categories-list-block .categories-list-header .input-group-icon .form-control {
  border-left: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  outline: none;
  box-shadow: none;
  color: #8aa0ba;
}
.categories-list-block .categories-list-header .input-group-icon .form-control:focus {
  border-color: #ccc;
}
.categories-list-block .categories-list-header .input-group-icon .form-control:-ms-input-placeholder {
  color: #8aa0ba;
  opacity: 1;
}
.categories-list-block .categories-list-header .input-group-icon .form-control::placeholder {
  color: #8aa0ba;
  opacity: 1;
}
.categories-list-block .categories-list-header .input-group-icon .form-control::-ms-input-placeholder {
  color: #8aa0ba;
}
.categories-list-block .categories-list-header .selectize-input {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.categories-list-block .categories-list-header .create-new-category {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 16px;
  text-decoration: none;
  background: #738dad;
  color: white;
  padding: 7px 12px;
  border-radius: 4px;
}
.categories-list-block .categories-list-header .open-create-categories.is-disabled {
  opacity: 0.3 !important;
  pointer-events: none !important;
  cursor: not-allowed !important;
}
.categories-list-block .categories-form-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  min-height: 343px;
  padding: 45px;
}
.categories-list-block .categories-form-list .form-group {
  width: 100%;
}
.categories-list-block .categories-form-list .form-actions {
  width: 100%;
  text-align: right;
}
.categories-list-block .categories-form-list .custom-input-tree {
  background: white;
  cursor: pointer;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.categories-list-block .categories-form-list .categories-tree-new {
  background: white;
  border: 1px solid #ccc;
  border-top: none;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  display: none;
}
.categories-list-block .categories-item .categories-block {
  padding: 8px 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  border-bottom: 1px solid #ccc;
  transition: background 0.2s ease-in-out, color 0.1s ease-in-out;
}
.categories-list-block .categories-item .categories-block:hover {
  background: #199ada;
}
.categories-list-block .categories-item .categories-block:hover .categories-name {
  color: white;
}
.categories-list-block .categories-item .categories-block:hover .addParent {
  color: white;
}
.categories-list-block .categories-item .categories-block:hover.is-selected .categories-name {
  color: white;
}
.categories-list-block .categories-item .categories-block[tree="0"] {
  padding-left: 8px;
}
.categories-list-block .categories-item .categories-block[tree="1"] {
  padding-left: 24px;
}
.categories-list-block .categories-item .categories-block[tree="2"] {
  padding-left: 48px;
}
.categories-list-block .categories-item .categories-block[tree="3"] {
  padding-left: 72px;
}
.categories-list-block .categories-item .categories-block[tree="4"] {
  padding-left: 96px;
}
.categories-list-block .categories-item .categories-block.is-last[tree="0"] {
  padding-left: 16px;
}
.categories-list-block .categories-item .categories-block.is-last[tree="1"] {
  padding-left: 32px;
}
.categories-list-block .categories-item .categories-block.is-last[tree="2"] {
  padding-left: 56px;
}
.categories-list-block .categories-item .categories-block.is-last[tree="3"] {
  padding-left: 80px;
}
.categories-list-block .categories-item .categories-block.is-last[tree="4"] {
  padding-left: 104px;
}
.categories-list-block .categories-item .categories-block.is-selected .categories-name {
  color: #199adb;
}
.categories-list-block .categories-item .categories-block[is-loading=true] {
  -ms-flex-pack: center;
      justify-content: center;
  padding: 0;
  height: 37px;
}
.categories-list-block .categories-item .categories-block[is-loading=true]:hover {
  background: white;
}
.categories-list-block .categories-item .categories-name {
  color: #7c7c7c;
  font-weight: 500;
  text-decoration: none;
}
.categories-list-block .categories-item .categories-name.is-active .fa {
  -ms-transform: rotate(180deg);
      transform: rotate(180deg);
}
.categories-list-block .categories-item .categories-name .fa {
  transition: 0.2s ease-in-out;
}
.categories-list-block .categories-item .categories-name span {
  margin-left: 8px;
  padding-left: 8px;
  border-left: 1px solid #ccc;
}
.categories-list-block .categories-item .categories-action .btn-add {
  color: #97cc61;
}
.categories-list-block .categories-item .categories-action .btn-remove {
  color: #f48895;
}
.categories-list-block .categories-item .categories-sub-block:not([is-active=true]) {
  display: none;
}

.advertise-category-custom .input-categories-list {
  min-height: 50px;
}
.advertise-category-custom .category-search {
  -ms-flex-positive: 1;
      flex-grow: 1;
}
.advertise-category-custom .categories-list {
  right: 15px;
}

.custom-members-category {
  display: -ms-flexbox;
  display: flex;
}
.custom-members-category .input-categories-list {
  -ms-flex-positive: 1;
      flex-grow: 1;
}
.custom-members-category .categories-list {
  top: 100%;
}
.custom-members-category .input-icon {
  line-height: 31px !important;
}
.custom-members-category .category-search {
  border-left: none !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  min-height: 34px !important;
}
.custom-members-category .input-categories-list {
  border-top-left-radius: var(--border-radius, 3px);
  border-bottom-left-radius: var(--border-radius, 3px);
  -ms-flex-align: center;
      align-items: center;
}
.custom-members-category .button-browse-categories {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.categories-advanced-options {
  text-decoration: none !important;
  font-size: 14px;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding-bottom: 8px;
  margin-bottom: 16px;
  font-weight: 400;
}

.categories-dropdown-block {
  position: absolute;
  top: 100%;
  z-index: 1000;
  left: calc(-100% - 10px);
  min-width: 320px;
  margin-top: 12px;
  background-color: #fff;
  border: 1px solid #8aa1bb;
  border-radius: 4px;
  padding: 30px;
  display: none;
}
@media screen and (min-width: 768px) {
  .categories-dropdown-block {
    min-width: 560px;
    left: -40px;
  }
}
@media screen and (min-width: 992px) {
  .categories-dropdown-block {
    min-width: 654px;
    left: -50%;
  }
}
.categories-dropdown-block:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: -7px;
  left: 48px;
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  background: white;
  border-top: 1px solid #8aa1bb;
  border-left: 1px solid #8aa1bb;
}
@media screen and (min-width: 768px) {
  .categories-dropdown-block:before {
    left: 80px;
  }
}
.categories-dropdown-block .form-group {
  display: block;
  margin-bottom: 15px;
}
.categories-dropdown-block .form-group .form-control {
  width: 100%;
  float: none;
  display: block;
}

.categories-select-item {
  height: 34px;
}
.categories-select-item .selectize-input {
  border-right: none;
}

#modal-create-categories .modal-header .modal-title {
  color: #4a4a4a;
  font-size: 18px;
  font-family: var(--heading-font, "Rubik"), sans-serif;
  font-weight: 500;
}
#modal-create-categories .modal-header .close {
  margin: 0;
  opacity: 1;
  text-shadow: none;
  color: #738dad;
}
#modal-create-categories .modal-body {
  background: #f3f5f8;
}
#modal-create-categories .modal-body label {
  font-weight: 500;
  color: #4a4a4a;
  font-family: var(--heading-font, "Rubik"), sans-serif;
}
#modal-create-categories .modal-body label + .drag-file-block {
  margin-top: 4px;
}
#modal-create-categories .modal-body .advanced-options-categories {
  margin-top: 24px;
}
#modal-create-categories .modal-body .advanced-options-categories .advanced-options-title {
  display: inline-block;
  color: #199ada;
  cursor: pointer;
  font-family: var(--heading-font, "Rubik"), sans-serif;
  font-weight: 400;
}
#modal-create-categories .modal-body .advanced-options-categories .advanced-options-title.is-open .fa {
  -ms-transform: rotate(180deg);
      transform: rotate(180deg);
}
#modal-create-categories .modal-body .advanced-options-categories .advanced-options-title .fa {
  transition: 0.2s ease-in-out;
}
#modal-create-categories .modal-body .advanced-options-categories .advanced-options-list {
  margin-top: 12px;
  display: none;
}
#modal-create-categories .modal-body .advanced-options-categories .advanced-options-list .image-thumb {
  position: relative;
  max-height: 480px;
  border-radius: 3px;
  overflow: hidden;
}
#modal-create-categories .modal-body .advanced-options-categories .advanced-options-list .image-thumb .btn {
  position: absolute;
  right: 8px;
  top: 8px;
}
#modal-create-categories .modal-body .drag-file-block {
  background: #e5e5e5;
  padding: 34px;
  text-align: center;
}
#modal-create-categories .modal-body .drag-file-block .drag-file-title {
  color: #a1b3c9;
  font-weight: 500;
  font-family: var(--heading-font, "Rubik"), sans-serif;
  font-size: 18px;
}
#modal-create-categories .modal-body .drag-file-block .drag-file-or {
  color: #a1b3c9;
  font-weight: 500;
  font-family: var(--heading-font, "Rubik"), sans-serif;
  margin-top: 4px;
}
#modal-create-categories .modal-body .drag-file-block .btn {
  font-weight: 300;
  padding: 12px 32px;
  color: white;
  font-size: 14px;
}
#modal-create-categories .modal-body .drag-file-block .btn .badge,
#modal-create-categories .modal-body .drag-file-block .btn .glyphicon {
  display: none;
}
#modal-create-categories .modal-body .drag-file-block .drag-file-recommended {
  color: #a1b3c9;
  font-weight: 500;
  font-family: var(--heading-font, "Rubik"), sans-serif;
  margin-top: 22px;
}
#modal-create-categories .modal-body .drag-file-block .bootstrap-filestyle {
  display: block;
  margin-top: 12px;
}
#modal-create-categories .modal-body .section-modal-categorie-title {
  color: #636465;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--heading-font, "Rubik"), sans-serif;
  margin: 24px 0 8px;
  display: block;
}

.input-categories-list {
  border: 1px solid #ccc;
  display: -ms-flexbox;
  display: flex;
  padding: 6px 12px;
  max-width: 100%;
  overflow-x: auto;
}
.input-categories-list .input-categories-item {
  background: #199adb;
  border-radius: 3px;
  padding: 2px 6px;
  font-size: 12px;
  font-family: var(--heading-font, "Rubik");
  color: white;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.input-categories-list .input-categories-item:not(:first-child) {
  margin-left: 4px;
}
.input-categories-list .input-categories-item .remove-categories-item {
  display: inline-block;
  cursor: pointer;
}

.range-form-group {
  margin-bottom: 48px;
}
.range-form-group .rage-icons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 8px;
  padding: 0 38px 0 36px;
}
.range-form-group .rage-icons .range-icon {
  transition: 0.2s ease-in-out;
  opacity: 0;
}
.range-form-group .range-input-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.range-form-group .range-input-group .range-amount {
  font-weight: 500;
  color: #636465;
  width: 20px;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.range-form-group .range-input-group .range-amount.max-amount {
  text-align: right;
}
.range-form-group .range-input-group .range-slider {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
  margin: 0 14px;
}
.range-form-group .range-input-group .range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
}
.range-form-group .range-input-group .range-slider:focus {
  outline: none;
}
.range-form-group .range-input-group .range-slider::-ms-track {
  width: 100%;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
.range-form-group .range-input-group .range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: 1px solid #a1b3c9;
  height: 14px;
  width: 14px;
  border-radius: 9999px;
  background: white;
  cursor: pointer;
  margin-top: -5px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.range-form-group .range-input-group .range-slider::-moz-range-thumb {
  border: 1px solid #a1b3c9;
  height: 14px;
  width: 14px;
  border-radius: 9999px;
  background: white;
  cursor: pointer;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.range-form-group .range-input-group .range-slider::-ms-thumb {
  border: 1px solid #a1b3c9;
  height: 14px;
  width: 14px;
  border-radius: 9999px;
  background: white;
  cursor: pointer;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.range-form-group .range-input-group .range-slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background: #a1b3c9;
}
.range-form-group .range-input-group .range-slider:focus::-webkit-slider-runnable-track {
  background: #a1b3c9;
}
.range-form-group .range-input-group .range-slider::-moz-range-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background: #a1b3c9;
}
.range-form-group .range-input-group .range-slider::-ms-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background: #a1b3c9;
}
.range-form-group .range-indicators {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 0 40px;
}
.range-form-group .range-indicators .range-indicator {
  width: 1px;
  height: 5px;
  background: #a1b3c9;
  display: block;
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  visibility: visible;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0;
}

.tooltip.in {
  opacity: 0.9;
}

.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}

.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}

.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}

.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #000;
  border-radius: 0;
}

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  left: 5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  right: 5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}

.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}

.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  left: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  right: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.text-danger#limitAlert {
  color: #c94d3c;
  font-family: var(--heading-font, "Rubik");
  font-size: var(--font-size-14, 0.875em);
  text-align: right;
  margin-top: 8px;
  -ms-transform: translateY(-28px);
      transform: translateY(-28px);
}
@media screen and (max-width: 768px) {
  .text-danger#limitAlert {
    -ms-transform: translateY(0);
        transform: translateY(0);
    text-align: left;
  }
}
.text-danger#limitAlert .fa {
  margin-right: 4px;
}

.products-services-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  padding: 20px 36px;
}
.products-services-container .products-services-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  position: relative;
  width: 300px;
  padding: 48px;
  border: dashed 1px #b7c4d5;
  border-radius: 3px;
  min-height: 338px;
  background-color: #fff;
}
.products-services-container .products-services-item.add-item {
  color: #b7c4d5;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s;
}
.products-services-container .products-services-item.add-item .fa-plus-circle {
  font-size: 18px;
}
.products-services-container .products-services-item.add-item:hover {
  opacity: 0.7;
  background-color: #e7e9ec;
}
.products-services-container .products-services-item.add-item .add-item.content {
  color: #b7c4d5;
}
.products-services-container .products-services-item.add-item .add-item.content:hover {
  color: #b7c4d5;
  opacity: 1;
}
.products-services-container .products-services-item .content:hover {
  opacity: 1;
}
.products-services-container .products-services-item .content .product-option .edit-product {
  margin-right: 5px;
}
.products-services-container .products-services-item .content .product-option .edit-product:hover {
  cursor: pointer;
}
.products-services-container .products-services-item .fa-close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #738dad;
  cursor: pointer;
}
.products-services-container .products-services-item .products-services-thumb {
  width: 100%;
  height: 170px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 3px;
  position: relative;
}
.products-services-container .products-services-item .products-services-thumb .product-option {
  width: 100%;
  height: 100%;
  background-color: rgba(243, 245, 248, 0.8);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  transition: 0.2s;
  cursor: pointer;
}
.products-services-container .products-services-item .products-services-thumb .product-option .edit-product:hover {
  color: #199adb;
}
.products-services-container .products-services-item .products-services-thumb .product-option .edit-product .fa {
  font-size: 20px;
}
.products-services-container .products-services-item .price {
  font-size: 20px;
  font-weight: 600;
  margin-top: 16px;
}
.products-services-container .products-services-item p {
  font-size: 16px;
  font-weight: 400;
  margin-top: 8px;
  margin-bottom: 0;
}
.products-services-container .products-services-item:hover .product-option {
  opacity: 1;
}
.products-services-container .products-services-item .product-option {
  position: absolute;
  opacity: 0;
}

.qrcode-box {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 190px;
  height: 130px;
  padding: 10px 16px 8px 8px;
  border-radius: 4px;
}
.qrcode-box .qrcode {
  width: 111px;
  height: 111px;
  border: solid 1px #b6b7bf;
}
.qrcode-box .qrcode-actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  margin-left: 16px;
  width: 32px;
}
.qrcode-box .qrcode-actions .button.button-md {
  padding-left: 12px;
  padding-right: 12px;
}

.form-group #qr-upload-button .btn-primary {
  padding: 12px 20px;
  font-size: 14px;
  margin-top: 16px;
  color: #fff;
  background-color: #199adb;
  border-color: #199adb;
  border-radius: 3px;
  cursor: pointer;
}

.hours-of-work .modal-dialog {
  width: 415px;
}
.hours-of-work .modal-body .days-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}
.hours-of-work .modal-body .days-list .day {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 32px;
  border: solid 1px #a1b3c9;
  background-color: #fff;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #a1b3c9;
  transition: 0.3s;
}
.hours-of-work .modal-body .days-list .day:hover {
  text-decoration: none;
}
.hours-of-work .modal-body .days-list .day.active {
  color: #fff;
  background-color: #199ada;
  border-color: #199ada;
}
.hours-of-work .modal-body .check-options {
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  margin-bottom: 32px;
}
.hours-of-work .modal-body .check-options .checkbox-control {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.hours-of-work .modal-body .check-options .checkbox-control label {
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  color: #636465;
  margin-left: 8px;
  margin-bottom: 0;
  font-weight: 400;
}
.hours-of-work .modal-body .check-options .checkbox-control input {
  margin-top: 0;
}
.hours-of-work .modal-body .hours-list h5 {
  font-family: "Rubik", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #4a4a4a;
  margin-top: 0;
}
.hours-of-work .modal-body .hours-list .col-md-6:nth-child(2) .hours-header {
  margin-left: -14px;
}
.hours-of-work .modal-body .hours-list .list-hours {
  max-height: 200px;
  overflow-y: scroll;
  width: 364px;
}
.hours-of-work .modal-body .hours-list .list-hours::-webkit-scrollbar-track {
  background-color: #eef7fc;
}
.hours-of-work .modal-body .hours-list .list-hours::-webkit-scrollbar {
  height: 3px;
  width: 5px;
  background-color: #d5e1e8;
}
.hours-of-work .modal-body .hours-list .list-hours::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background-color: #d5e1e8;
}
.hours-of-work .modal-body .hours-list .list-hours .list-item-content {
  gap: 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding-bottom: 10px;
}
.hours-of-work .modal-body .hours-list .list-hours .list-item-content .hours-list-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
}
.hours-of-work .modal-body .hours-list .list-hours .list-item-content .hours-list-item:last-of-type {
  margin-bottom: 0;
}
.hours-of-work .modal-body .hours-list .list-hours .list-item-content .hours-list-item input {
  height: 34px;
  max-width: 48px;
  margin-right: 8px;
  border: solid 1px #a1b3c9;
  border-radius: 3px;
  padding: 6px 2px 6px 8px;
  font-size: 14px;
}
.hours-of-work .modal-body .hours-list .list-hours .list-item-content .hours-list-item .day-period {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  font-family: "Rubik", sans-serif;
  height: 34px;
  width: 34px;
  background-color: #199ada;
  border-radius: 3px;
  cursor: pointer;
}
.hours-of-work .modal-body .hours-list .list-hours .list-item-content .hours-list-item .delete-hour {
  position: absolute;
  right: -20px;
}
.hours-of-work .modal-body .hours-list .list-hours .list-item-content .hours-list-item .delete-hour .fa {
  font-size: 12px;
  color: #a1b3c9;
  transition: 0.3s;
}
.hours-of-work .modal-body .hours-list .list-hours .list-item-content .hours-list-item .delete-hour:hover {
  text-decoration: none;
}
.hours-of-work .modal-body .hours-list .list-hours .list-item-content .hours-list-item .delete-hour:hover .fa {
  color: #8697ab;
}
.hours-of-work .modal-body .add-hour {
  display: block;
  width: 100%;
  text-align: right;
  color: #199ada;
  font-size: 14px;
  font-family: "Rubik", sans-serif;
  margin-top: 16px;
  font-weight: 400px;
}
.hours-of-work .modal-body .add-hour:hover {
  text-decoration: none;
}

[id^=modal-custominvoice-] .modal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
[id^=modal-custominvoice-] .modal-header .close {
  background-color: transparent;
  border: none;
  position: absolute;
  right: 20px;
  font-size: 25px;
  cursor: pointer;
}

.switch-button {
  width: 50px;
  height: 20px;
  border-radius: 10px;
  position: relative;
  transition: 0.2s ease-in-out;
  margin: auto;
  cursor: pointer;
}
.switch-button:before, .switch-button:after {
  font-family: "fontAwesome";
  position: absolute;
  top: 2px;
  font-size: 10px;
  color: white;
}
.switch-button:before {
  content: "\f00c";
  left: 7px;
}
.switch-button:after {
  content: "\f00d";
  right: 7px;
}
.switch-button.is-enable {
  background: #75ca76;
}
.switch-button.is-enable .toggle-item {
  border-color: #75ca76;
}
.switch-button.is-disable {
  background: #ccc;
}
.switch-button.is-disable .toggle-item {
  border-color: #ccc;
  right: 23px;
}
.switch-button .toggle-item {
  width: 28px;
  height: 28px;
  display: block;
  background: white;
  border-radius: 9999px;
  position: absolute;
  top: -4px;
  border: 1px solid transparent;
  transition: 0.2s ease-in-out;
  right: 0;
  z-index: 5;
}

.sponsor-deal .help-block {
  position: absolute;
}

.ai-assist-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 3px;
  float: right;
  margin-left: 10px;
}
.ai-assist-group img {
  width: 23px;
  height: 23px;
  margin-bottom: 8px;
  opacity: 0.3;
}

.ai-assist {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  color: #1a9ad9;
  font-family: "Roboto";
  font-size: 12px;
  cursor: pointer;
  transition: 0.2s;
}
.ai-assist svg {
  margin-top: -3px;
  width: 22px;
  height: 22px;
}
.ai-assist svg #right, .ai-assist svg #up, .ai-assist svg #down {
  transition: 0.2s;
  fill: #1a9ad9;
}
.ai-assist .sep {
  margin: 0 8px;
  color: #dfe0e2;
}
.ai-assist.disabled {
  color: #a6a6a6;
  cursor: default;
}
.ai-assist:hover {
  color: #116a96;
  text-decoration: none;
}
.ai-assist:hover svg #right, .ai-assist:hover svg #up, .ai-assist:hover svg #down {
  fill: #116a96;
}
.ai-assist:hover .sep {
  color: #dfe0e2;
}
.ai-assist:focus, .ai-assist:visited {
  color: #116a96;
  text-decoration: none;
}

.form-title-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: end;
      align-items: end;
}

.ai-loader {
  position: absolute;
  top: 20px;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
}
.ai-loader .ai-loader-animation {
  position: relative;
  width: 34px;
  height: 34px;
}
.ai-loader .ai-loader-animation #star1, .ai-loader .ai-loader-animation #star2, .ai-loader .ai-loader-animation #star3 {
  position: absolute;
}
.ai-loader .ai-loader-animation #star1 *, .ai-loader .ai-loader-animation #star2 *, .ai-loader .ai-loader-animation #star3 * {
  transform-box: fill-box;
}
.ai-loader .ai-loader-animation #star1 #star, .ai-loader .ai-loader-animation #star2 #star, .ai-loader .ai-loader-animation #star3 #star {
  -ms-transform-origin: center;
      transform-origin: center;
}
.ai-loader .ai-loader-animation #star1 {
  top: 0;
  left: 4px;
}
.ai-loader .ai-loader-animation #star1 #star {
  animation: loader-ai 0.7s none 0.1s infinite;
}
.ai-loader .ai-loader-animation #star2 {
  right: 0;
  top: 6px;
}
.ai-loader .ai-loader-animation #star2 #star {
  animation: loader-ai 0.7s none 0.3s infinite;
}
.ai-loader .ai-loader-animation #star3 {
  left: 2px;
  bottom: 0;
}
.ai-loader .ai-loader-animation #star3 #star {
  animation: loader-ai 0.7s none 0.5s infinite;
}
@keyframes loader-ai {
  0% {
    transform: scale(1);
  }
  27% {
    transform: scale(0.66);
  }
  33% {
    transform: scale(0.66);
  }
  60% {
    transform: scale(0.45);
  }
  66% {
    transform: scale(0.45);
  }
  94% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

.ai-loader-suggest {
  position: absolute;
}
.ai-loader-suggest .ai-loader-animation {
  position: relative;
  width: 34px;
  height: 34px;
}
.ai-loader-suggest .ai-loader-animation #star1, .ai-loader-suggest .ai-loader-animation #star2, .ai-loader-suggest .ai-loader-animation #star3 {
  position: absolute;
}
.ai-loader-suggest .ai-loader-animation #star1 *, .ai-loader-suggest .ai-loader-animation #star2 *, .ai-loader-suggest .ai-loader-animation #star3 * {
  transform-box: fill-box;
}
.ai-loader-suggest .ai-loader-animation #star1 #star, .ai-loader-suggest .ai-loader-animation #star2 #star, .ai-loader-suggest .ai-loader-animation #star3 #star {
  -ms-transform-origin: center;
      transform-origin: center;
}
.ai-loader-suggest .ai-loader-animation #star1 {
  top: 0;
  left: 4px;
}
.ai-loader-suggest .ai-loader-animation #star1 #star {
  animation: loader-ai 0.7s none 0.1s infinite;
}
.ai-loader-suggest .ai-loader-animation #star2 {
  right: 0;
  top: 6px;
}
.ai-loader-suggest .ai-loader-animation #star2 #star {
  animation: loader-ai 0.7s none 0.3s infinite;
}
.ai-loader-suggest .ai-loader-animation #star3 {
  left: 2px;
  bottom: 0;
}
.ai-loader-suggest .ai-loader-animation #star3 #star {
  animation: loader-ai 0.7s none 0.5s infinite;
}
@keyframes loader-ai {
  0% {
    transform: scale(1);
  }
  27% {
    transform: scale(0.66);
  }
  33% {
    transform: scale(0.66);
  }
  60% {
    transform: scale(0.45);
  }
  66% {
    transform: scale(0.45);
  }
  94% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

.cta-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  border: solid 1px #dce5e8;
  width: 100%;
}
.cta-block p {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
.cta-block.choose-plan {
  gap: 7%;
  height: 310px;
  padding: 0 50px;
  background-color: #F5FAFE;
  background-image: url(/assets/images/cta-choose-plan-bg.png);
}
@media screen and (max-width: 767px) {
  .cta-block.choose-plan {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: auto;
    padding: 32px;
  }
  .cta-block.choose-plan .content {
    margin-top: 16px;
  }
}
.cta-block.choose-plan h3 {
  margin-bottom: 16px;
  color: var(--neutral-base, #3e455e);
}
.cta-block.choose-plan p {
  margin-bottom: 32px;
}
.cta-block.exclusive-content {
  gap: 3%;
  -ms-flex-pack: justify;
      justify-content: space-between;
  min-height: 160px;
  padding: 24px 32px;
  background-color: #fff;
  background-image: url(/assets/images/cta-exclusive-content-bg.png);
}
.cta-block.exclusive-content .button {
  white-space: nowrap;
}
@media screen and (max-width: 992px) {
  .cta-block.exclusive-content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: center;
        justify-content: center;
    text-align: center;
  }
  .cta-block.exclusive-content img {
    margin-bottom: 12px;
  }
}

.cta-link {
  position: relative;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #0079F2;
}
.cta-link p {
  max-width: 700px;
}
.cta-link:before {
  position: absolute;
  bottom: -8px;
  content: "";
  background-color: #0079F2;
  border-radius: 10px;
  height: 3px;
  width: calc(100% + 20px);
}
.cta-link:after {
  position: absolute;
  right: -20px;
  top: -1px;
  font-family: "FontAwesome";
  content: "\f054";
  transition: 0.2s;
}
.cta-link:hover {
  text-decoration: none;
  color: #0079F2;
}
.cta-link:hover:after {
  right: -30px;
}

.empty-state-dashboard-plan {
  display: -ms-flexbox;
  display: flex;
  gap: 90px;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
  padding-top: 70px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .empty-state-dashboard-plan {
    gap: 24px;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
    text-align: center;
  }
}
.empty-state-dashboard-plan img {
  margin-bottom: 40px;
}
@media screen and (max-width: 992px) {
  .empty-state-dashboard-plan img {
    margin-bottom: 0;
    margin-left: 56px;
  }
}
.empty-state-dashboard-plan h2 {
  margin-bottom: 12px;
}
.empty-state-dashboard-plan p {
  margin-bottom: 40px;
}
.empty-state-dashboard-plan .cta-link {
  margin-right: 20px;
}
.empty-state-dashboard-plan .new-content-toggler {
  margin: 40px auto 0;
  max-width: 280px;
}
.empty-state-dashboard-plan .new-content-list.plans {
  margin: auto;
}

.new-content-list.plans {
  display: none;
  background: #fff;
  max-width: 280px;
  margin: auto;
  padding: 4px 8px 12px 8px;
}
.new-content-list.plans .new-content-item {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  color: var(--neutral-base, #3e455e);
}
.new-content-list.plans .new-content-item.plan {
  margin: 12px 0;
}
.new-content-list.plans .new-content-item.plan .fa {
  -ms-transform: translateY(2px);
      transform: translateY(2px);
  color: var(--neutral-base, #3e455e);
  margin-left: 8px;
}
.new-content-list.plans .new-content-item.product {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 100%;
  border-radius: 3px;
  background-color: var(--highlight-transp-10, rgba(19, 125, 247, 0.1));
  margin-bottom: 4px;
  padding: 4px 8px;
  font-size: 14px;
  color: var(--neutral-base, #3e455e);
}
.new-content-list.plans .new-content-item.product .title .fa {
  font-size: 16px;
  color: var(--highlight-base, #137df7);
  margin-right: 12px;
}
.new-content-list.plans .new-content-item.product .count {
  font-size: 12px;
}
.new-content-list.plans .new-content-item.product.full {
  background-color: #FFF1F1;
}
.new-content-list.plans .new-content-item.product.full .title .fa {
  color: var(--warning-base, #fc5353);
}
.new-content-list.plans .new-content-item.product.full .count {
  font-weight: bold;
}
.new-content-list.plans .new-content-item.graph {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.new-content-list.plans .new-content-item.graph h5 {
  font-size: 12px;
  margin-bottom: 0;
}
.new-content-list.plans .new-content-item.graph small {
  font-size: 11px;
  line-height: 15px;
}
.new-content-list.plans .new-content-item.graph .link {
  border-color: var(--link-base, #3ebaf6);
}
.new-content-list.plans .new-content-item:hover {
  text-decoration: none;
}

.plan-status-tag {
  font-size: 14px;
  padding: 2px 8px;
  border-radius: 50px;
  color: #3E455E;
  width: fit-content;
  font-weight: 500;
}
.plan-status-tag.active, .plan-status-tag.approved {
  background-color: #E4F3D4;
  color: #6CBF13;
}
.plan-status-tag.expired {
  background-color: #FFF1E4;
}
.plan-status-tag.suspended, .plan-status-tag.pending {
  background-color: #F0F0F2;
}
.plan-status-tag.trialing {
  background-color: #D6EAFD;
}
.plan-status-tag.canceled {
  background-color: #FDDCE4;
}
.plan-status-tag.first-month {
  color: #1B71C7;
  border-radius: 3px;
  background-color: #D6EAFD;
  padding: 2px 12px;
}
.plan-status-tag.item-expired {
  color: #fff;
  border-radius: 3px;
  background-color: var(--attention-base, #ffae00);
  padding: 2px 12px;
}
.plan-status-tag.item-expired .fa {
  margin-right: 8px;
}
.plan-status-tag.success {
  color: #fff;
  border-radius: 3px;
  background-color: #6CBF13;
  padding: 2px 8px;
}
.plan-status-tag.failed {
  color: #fff;
  border-radius: 3px;
  background-color: #FC5353;
  padding: 2px 8px;
}

.back-link {
  font-size: 14px;
  color: #3E455E;
}
.back-link .fa {
  margin-right: 12px;
  color: #3E455E;
  font-size: 11px;
  -ms-transform: translateY(-1px);
      transform: translateY(-1px);
}
.back-link:hover {
  text-decoration: none;
  color: #3E455E;
}

.sub-box {
  background-color: #fff;
  border: solid 1px #E3ECEF;
  border-radius: 3px;
  width: 100%;
}
.sub-box .sub-box-header {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 24px 32px;
  border-bottom: solid 1px #E3ECEF;
}
@media screen and (max-width: 992px) {
  .sub-box .sub-box-header {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
  }
}
.sub-box .sub-box-header:before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  content: "";
  width: 5px;
  height: 100%;
  background-color: var(--brand-base, #022e69);
}
.sub-box .sub-box-header .sub-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.sub-box .sub-box-header .sub-info .sub-info-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  font-size: 32px;
  color: var(--neutral-base, #3e455e);
  margin-bottom: 12px;
}
.sub-box .sub-box-header .sub-info .sub-info-title a {
  color: var(--neutral-base, #3e455e);
  font-size: 14px;
  text-decoration: underline;
  transition: 0.2s;
}
.sub-box .sub-box-header .sub-info .sub-info-title a:hover {
  color: var(--neutral-base, #3e455e);
  opacity: 0.8;
}
.sub-box .sub-box-header .sub-info .sub-info-billing {
  font-size: 16px;
  color: var(--neutral-base, #3e455e);
}
.sub-box .sub-box-header .sub-info .sub-info-billing a {
  display: block;
  margin-top: 24px;
}
.sub-box .sub-box-header .sub-info .button {
  padding: 12px 18px;
  width: fit-content;
}
.sub-box .sub-box-header .sub-payment {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 4px;
  text-align: right;
}
@media screen and (max-width: 992px) {
  .sub-box .sub-box-header .sub-payment {
    margin-top: 24px;
    text-align: left;
  }
}
.sub-box .sub-box-header .sub-payment .sub-price {
  position: relative;
  color: var(--highlight-base, #137df7);
  font-size: 32px;
  font-weight: 500;
}
.sub-box .sub-box-header .sub-payment .sub-price .cycle {
  font-size: 20px;
  color: var(--neutral-base, #3e455e);
}
.sub-box .sub-box-header .sub-payment .sub-id {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: end;
  -ms-flex-align: center;
      align-items: center;
  gap: 10px;
}
.sub-box .sub-box-header .sub-payment .sub-price-update {
  display: inline-block;
  font-size: 16px;
  color: var(--neutral-base, #3e455e);
}
.sub-box .sub-box-header .sub-payment .sub-price-update .price {
  color: var(--highlight-base, #137df7);
  font-weight: bold;
  display: inline-block;
}
.sub-box .sub-box-header .sub-payment .sub-price-update .tooltip-primary {
  display: inline-block;
}
.sub-box .sub-box-body .sub-box-title {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 24px 32px;
}
.sub-box .sub-box-body .sub-box-title .btn-collapse-box {
  background-color: var(--neutral-transp-10, rgba(62, 69, 94, 0.1));
  color: var(--neutral-base, #3e455e);
  padding: 4px 16px;
  border-radius: var(--border-radius, 3px);
  font-size: 14px;
  cursor: pointer;
  line-height: 0;
  max-height: 24px;
}
@media screen and (max-width: 992px) {
  .sub-box .sub-box-body .sub-box-title .btn-collapse-box {
    position: absolute;
    right: 24px;
  }
}
.sub-box .sub-box-body .sub-box-title h3, .sub-box .sub-box-body .sub-box-title h4 {
  display: inline;
  line-height: 1;
}
.sub-box .sub-box-body .sub-box-title h3 {
  font-size: 20px;
  font-weight: 400;
}
.sub-box .sub-box-body .sub-box-title a {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  margin-left: 12px;
  transition: 0.2s;
}
@media screen and (max-width: 992px) {
  .sub-box .sub-box-body .sub-box-title a {
    margin-left: 0;
  }
}
.sub-box .sub-box-body .sub-box-title a span {
  color: var(--neutral-base, #3e455e);
  text-decoration: underline;
  font-size: 14px;
}
.sub-box .sub-box-body .sub-box-title a .fa {
  color: var(--neutral-base, #3e455e);
  margin-left: 4px;
  margin-top: -4px;
  text-decoration: none;
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
}
.sub-box .sub-box-body .sub-box-title a:hover {
  color: var(--neutral-base, #3e455e);
  opacity: 0.8;
  text-decoration: none;
}
.sub-box .sub-box-body .sub-box-title a:hover .fa {
  text-decoration: none;
}
.sub-box .sub-box-body .sub-box-content {
  padding: 24px 32px;
}
.sub-box .sub-box-body .sub-box-content .sub-box-section .sub-box-title {
  padding: 0 0 8px 0;
}
.sub-box .sub-box-body .sub-box-content .sub-box-section + .sub-box-section {
  margin-top: 48px;
}
.sub-box .sub-box-body .sub-box-content .sub-box-section .section-content {
  display: -ms-flexbox;
  display: flex;
}
.sub-box .sub-box-body .sub-box-content .sub-box-section .actions-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 24px;
}
@media screen and (max-width: 992px) {
  .sub-box .sub-box-body .sub-box-content .sub-box-section .actions-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0;
  }
}
.sub-box .sub-box-body .sub-box-content .sub-box-section .actions-list .action-box {
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  padding: 16px 24px 16px 16px;
  width: calc((100% - 48px) / 3);
  background-color: var(--neutral-transp-10, rgba(62, 69, 94, 0.1));
  color: var(--neutral-base, #3e455e);
  border-radius: var(--border-radius, 3px);
  transition: 0.2s;
}
@media screen and (max-width: 992px) {
  .sub-box .sub-box-body .sub-box-content .sub-box-section .actions-list .action-box {
    width: 100%;
    margin-bottom: 24px;
  }
  .sub-box .sub-box-body .sub-box-content .sub-box-section .actions-list .action-box:last-of-type {
    margin-bottom: 0;
  }
}
.sub-box .sub-box-body .sub-box-content .sub-box-section .actions-list .action-box .fa {
  color: var(--neutral-base, #3e455e);
  font-size: 34px;
  transition: 0.2s;
}
.sub-box .sub-box-body .sub-box-content .sub-box-section .actions-list .action-box .content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  height: 100%;
}
.sub-box .sub-box-body .sub-box-content .sub-box-section .actions-list .action-box .content .button {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 12px;
}
.sub-box .sub-box-body .sub-box-content .sub-box-section .actions-list .action-box.box-hover {
  text-decoration: none;
  color: var(--neutral-base, #3e455e);
  background-color: var(--highlight-transp-10, rgba(19, 125, 247, 0.1));
}
.sub-box .sub-box-body .sub-box-content .sub-box-section .actions-list .action-box.box-hover .fa {
  color: var(--highlight-base, #137df7);
}
.sub-box .sub-box-body .sub-box-content .sub-box-section .signup-plan-link .fa {
  font-size: 16px;
  color: var(--neutral-base, #3e455e);
}
.sub-box .sub-box-body .sub-box-content .sub-box-section .fa {
  font-size: 22px;
  margin-right: 12px;
  color: var(--highlight-base, #137df7);
}
.sub-box .sub-box-body .sub-box-content .sub-box-section .link {
  font-size: 16px;
  margin: 0 2px;
}
.sub-box .sub-box-body .sub-box-content .sub-list {
  overflow: hidden;
  height: 130px;
  transition: 0.3s;
  margin-top: 12px;
  display: -ms-flexbox;
  display: flex;
  gap: 64px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 992px) {
  .sub-box .sub-box-body .sub-box-content .sub-list {
    height: auto;
  }
}
.sub-box .sub-box-body .sub-box-content .sub-list.opened {
  height: auto;
}
.sub-box .sub-box-body .sub-box-content .sub-list .sub-list-item {
  width: calc((100% - 256px) / 5);
}
@media screen and (max-width: 1200px) {
  .sub-box .sub-box-body .sub-box-content .sub-list .sub-list-item {
    width: calc((100% - 192px) / 4);
  }
}
@media screen and (max-width: 992px) {
  .sub-box .sub-box-body .sub-box-content .sub-list .sub-list-item {
    width: calc((100% - 128px) / 2);
  }
}
@media screen and (max-width: 778px) {
  .sub-box .sub-box-body .sub-box-content .sub-list .sub-list-item {
    width: 100%;
  }
}
.sub-box .sub-box-body .sub-box-content .sub-list .sub-list-item .item-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 12px;
  color: var(--neutral-base, #3e455e);
  font-size: 16px;
  min-height: 60px;
}
.sub-box .sub-box-body .sub-box-content .sub-list .sub-list-item .item-title .fa {
  font-size: 14px;
}
.sub-box .sub-box-body .sub-box-content .sub-list .sub-list-item .progress-bar-container {
  min-height: 28px;
}
.sub-box .sub-box-body .sub-box-content .sub-list .sub-list-item .progress-bar-container .progress-bar {
  position: relative;
  width: 100%;
  border-radius: 20px;
  height: 10px;
  background-color: #D8D8D8;
  overflow: hidden;
}
.sub-box .sub-box-body .sub-box-content .sub-list .sub-list-item .progress-bar-container .progress-bar .content {
  position: absolute;
  left: 0;
  background-color: var(--success-base, #6cbf13);
  height: 100%;
}
.sub-box .sub-box-body .sub-box-content .sub-list .sub-list-item .progress-bar-container .progress-bar.attention .content {
  background-color: var(--attention-base, #ffae00);
}
.sub-box .sub-box-body .sub-box-content .sub-list .sub-list-item .progress-bar-container .progress-bar.warning .content {
  background-color: var(--warning-base, #fc5353);
}
.sub-box .sub-box-body .sub-box-content .sub-list .sub-list-item .item-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
  font-size: 14px;
}
.sub-box .sub-box-body .sub-box-content .sub-list .sub-list-item .item-footer .count {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  white-space: nowrap;
  gap: 4px;
  min-width: 45px;
}
.sub-box .sub-box-body .sub-box-content .sub-list .sub-list-item .item-footer .count .sym {
  font-size: 20px;
  line-height: 17px;
}
.sub-box .sub-box-body .sub-box-content .sub-list .sub-list-item .item-footer a {
  font-size: 14px;
  color: var(--highlight-base, #137df7);
  text-decoration: none;
  text-align: right;
  padding-left: 8px;
}
.sub-box .sub-box-body .sub-box-content .sub-list .sub-list-item .item-footer a:hover {
  text-decoration: none;
}
.sub-box .sub-box-body .sub-box-content .sub-list .sub-list-item .item-footer a[disabled] {
  opacity: 0.5;
  cursor: default;
}
.sub-box .sub-box-body .sub-box-content .btn-view-more {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  border: solid 1px #E3ECEF;
  border-radius: 3px;
  padding: 12px;
  color: var(--highlight-base, #137df7);
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s;
  margin-top: 24px;
}
.sub-box .sub-box-body .sub-box-content .btn-view-more:hover {
  opacity: 0.8;
}
.sub-box .sub-box-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  padding: 12px 32px;
  border-top: solid 1px #E3ECEF;
}
.sub-box .button.is-secondary {
  background-color: #fff;
  color: var(--neutral-base, #3e455e);
  border: solid 1px var(--neutral-base, #3e455e);
}
.sub-box .button.is-secondary:hover {
  opacity: 0.8;
}

.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal.modal-member {
  display: none;
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  transform: translate3d(0, 0, 0);
  max-height: 99vh;
  outline: 0;
}
.modal.modal-member.fade .modal-dialog {
  transform: translate3d(0, -25%, 0);
  transition: 0.3s ease-out;
}
.modal.modal-member.in .modal-dialog {
  transform: translate3d(0, 0, 0);
}
.modal.modal-member .modal-dialog {
  position: relative;
  width: 600px;
  margin: 16px auto;
}
.modal.modal-member .modal-dialog.modal-lg {
  width: 900px;
}
.modal.modal-member .modal-dialog .modal-content {
  position: relative;
  padding: 24px 40px;
  background-color: #fff;
  border: 1px solid #A1B3C9;
  border-radius: 3px;
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.3);
  outline: 0;
}
.modal.modal-member .modal-dialog .modal-content .switch-button {
  width: 50px;
  height: 20px;
  border-radius: 10px;
  position: relative;
  transition: 0.2s ease-in-out;
  margin: auto;
  cursor: pointer;
}
.modal.modal-member .modal-dialog .modal-content .switch-button:before, .modal.modal-member .modal-dialog .modal-content .switch-button:after {
  font-family: "fontAwesome";
  position: absolute;
  top: 2px;
  font-size: 10px;
  color: white;
}
.modal.modal-member .modal-dialog .modal-content .switch-button:before {
  content: "\f00c";
  left: 7px;
}
.modal.modal-member .modal-dialog .modal-content .switch-button:after {
  content: "\f00d";
  right: 7px;
}
.modal.modal-member .modal-dialog .modal-content .switch-button.is-enable {
  background: #75ca76;
}
.modal.modal-member .modal-dialog .modal-content .switch-button.is-enable .toggle-item {
  border-color: #75ca76;
}
.modal.modal-member .modal-dialog .modal-content .switch-button.is-disable {
  background: #ccc;
}
.modal.modal-member .modal-dialog .modal-content .switch-button.is-disable .toggle-item {
  border-color: #ccc;
  right: 23px;
}
.modal.modal-member .modal-dialog .modal-content .switch-button .toggle-item {
  width: 28px;
  height: 28px;
  display: block;
  background: white;
  border-radius: 9999px;
  position: absolute;
  top: -4px;
  border: 1px solid transparent;
  transition: 0.2s ease-in-out;
  right: 0;
  z-index: 5;
}
.modal.modal-member .modal-dialog .modal-content .modal-header {
  display: -ms-flexbox;
  display: flex;
  padding: 0 0 24px 0;
  border: 0;
}
.modal.modal-member .modal-dialog .modal-content .modal-header .h4, .modal.modal-member .modal-dialog .modal-content .modal-header .h5, .modal.modal-member .modal-dialog .modal-content .modal-header .h6, .modal.modal-member .modal-dialog .modal-content .modal-header h4, .modal.modal-member .modal-dialog .modal-content .modal-header h5, .modal.modal-member .modal-dialog .modal-content .modal-header h6 {
  margin-top: 0;
  margin-bottom: 0;
}
.modal.modal-member .modal-dialog .modal-content .modal-header .modal-title {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}
.modal.modal-member .modal-dialog .modal-content .modal-header .close {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 22px;
  font-weight: 400;
  color: #000;
  line-height: 0.6;
  padding: 8px;
  margin: -8px;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}
.modal.modal-member .modal-dialog .modal-content .modal-body {
  position: relative;
  padding: 0;
}
.modal.modal-member .modal-dialog .modal-content .modal-body .form-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 24px;
}
.modal.modal-member .modal-dialog .modal-content .modal-body .form-group.mb-0 {
  margin-bottom: 0;
}
.modal.modal-member .modal-dialog .modal-content .modal-body .form-group label {
  font-family: var(--heading-font, "Rubik");
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
}
.modal.modal-member .modal-dialog .modal-content .modal-body .form-group input[type=text] {
  display: block;
  width: 100%;
  height: 34px;
  min-height: 0;
  border-radius: 2px;
  border: 1px solid #A1B3C9;
  background: #fff;
  color: var(--neutral-base, #3e455e);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 12px 8px;
  transition: 0.2s;
}
.modal.modal-member .modal-dialog .modal-content .modal-body .form-group input[type=text]:active, .modal.modal-member .modal-dialog .modal-content .modal-body .form-group input[type=text]:focus-within, .modal.modal-member .modal-dialog .modal-content .modal-body .form-group input[type=text]:focus-visible, .modal.modal-member .modal-dialog .modal-content .modal-body .form-group input[type=text]:focus {
  border: 1px solid var(--highlight-base, #137df7);
  outline: none;
  box-shadow: none;
}
.modal.modal-member .modal-dialog .modal-content .modal-body .form-group select.form-control {
  width: 100%;
  height: 40px;
  border-radius: 3px;
  border: solid 1px #A1B3C9;
}
.modal.modal-member .modal-dialog .modal-content .modal-body .section-unsplash .unsplash-header .form-group {
  position: relative;
}
.modal.modal-member .modal-dialog .modal-content .modal-body .section-unsplash .unsplash-header .form-group .fa {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 16px;
  color: #A1B3C9;
}
.modal.modal-member .modal-dialog .modal-content .modal-body .section-unsplash .unsplash-header .form-group input {
  padding-left: 32px;
}
.modal.modal-member .modal-dialog .modal-content .modal-footer {
  border: 0;
  padding: 40px 0 0 0;
}
.modal.modal-member .modal-dialog .modal-content .btn {
  border-radius: 3px;
  padding: 12px 16px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  border: solid 1px transparent;
  line-height: 0.9;
  cursor: pointer;
}
.modal.modal-member .modal-dialog .modal-content .btn-primary {
  border-color: var(--highlight-base, #137df7);
  background-color: var(--highlight-base, #137df7);
  color: #fff;
}
.modal.modal-member .modal-dialog .modal-content .btn-secondary {
  background-color: transparent;
  color: var(--neutral-base, #3e455e);
}
.modal.modal-member.hours-of-work .modal-dialog {
  width: 415px;
}
.modal.modal-member.hours-of-work .modal-body .days-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}
.modal.modal-member.hours-of-work .modal-body .days-list .day {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 32px;
  border: solid 1px #a1b3c9;
  background-color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #a1b3c9;
  transition: 0.3s;
}
.modal.modal-member.hours-of-work .modal-body .days-list .day:hover {
  text-decoration: none;
}
.modal.modal-member.hours-of-work .modal-body .days-list .day.active {
  color: #fff;
  background-color: #199ada;
  border-color: #199ada;
}
.modal.modal-member.hours-of-work .modal-body .check-options {
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  margin-bottom: 32px;
}
.modal.modal-member.hours-of-work .modal-body .check-options .checkbox-control {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.modal.modal-member.hours-of-work .modal-body .check-options .checkbox-control label {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #636465;
  margin-left: 8px;
  margin-bottom: 0;
  font-weight: 400;
}
.modal.modal-member.hours-of-work .modal-body .check-options .checkbox-control input {
  margin-top: 0;
}
.modal.modal-member.hours-of-work .modal-body .hours-list h5 {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #4a4a4a;
  margin-top: 0;
}
.modal.modal-member.hours-of-work .modal-body .hours-list .col-md-6:nth-child(2) .hours-header {
  margin-left: -14px;
}
.modal.modal-member.hours-of-work .modal-body .hours-list .list-hours {
  max-height: 200px;
  overflow-y: auto;
  width: 364px;
}
.modal.modal-member.hours-of-work .modal-body .hours-list .list-hours::-webkit-scrollbar-track {
  background-color: #eef7fc;
}
.modal.modal-member.hours-of-work .modal-body .hours-list .list-hours::-webkit-scrollbar {
  height: 3px;
  width: 5px;
  background-color: #d5e1e8;
}
.modal.modal-member.hours-of-work .modal-body .hours-list .list-hours::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background-color: #d5e1e8;
}
.modal.modal-member.hours-of-work .modal-body .hours-list .list-hours .list-item-content {
  gap: 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding-bottom: 10px;
}
.modal.modal-member.hours-of-work .modal-body .hours-list .list-hours .list-item-content .hours-list-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
}
.modal.modal-member.hours-of-work .modal-body .hours-list .list-hours .list-item-content .hours-list-item:last-of-type {
  margin-bottom: 0;
}
.modal.modal-member.hours-of-work .modal-body .hours-list .list-hours .list-item-content .hours-list-item input {
  height: 34px;
  max-width: 48px;
  margin-right: 8px;
  border: solid 1px #a1b3c9;
  border-radius: 3px;
  padding: 6px 2px 6px 8px;
  font-size: 14px;
}
.modal.modal-member.hours-of-work .modal-body .hours-list .list-hours .list-item-content .hours-list-item .day-period {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  height: 34px;
  width: 34px;
  background-color: #199ada;
  border-radius: 3px;
  cursor: pointer;
}
.modal.modal-member.hours-of-work .modal-body .hours-list .list-hours .list-item-content .hours-list-item .delete-hour {
  position: absolute;
  right: -20px;
}
.modal.modal-member.hours-of-work .modal-body .hours-list .list-hours .list-item-content .hours-list-item .delete-hour .fa {
  font-size: 12px;
  color: #a1b3c9;
  transition: 0.3s;
}
.modal.modal-member.hours-of-work .modal-body .hours-list .list-hours .list-item-content .hours-list-item .delete-hour:hover {
  text-decoration: none;
}
.modal.modal-member.hours-of-work .modal-body .hours-list .list-hours .list-item-content .hours-list-item .delete-hour:hover .fa {
  color: #8697ab;
}
.modal.modal-member.hours-of-work .modal-body .add-hour {
  display: block;
  width: 100%;
  text-align: right;
  color: #199ada;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  margin-top: 16px;
  font-weight: 400;
}
.modal.modal-member.hours-of-work .modal-body .add-hour:hover {
  text-decoration: none;
}
.modal.modal-member.publish-date .modal-dialog {
  width: 415px;
}
.modal.modal-member.publish-date .modal-dialog .modal-content .modal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 0;
  border: none;
  margin-bottom: 16px;
}
.modal.modal-member.publish-date .modal-dialog .modal-content .modal-header h5 {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  margin: 0;
}
.modal.modal-member.publish-date .modal-dialog .modal-content .modal-header a {
  color: #199ada;
  font-size: 12px;
}
.modal.modal-member.publish-date .modal-dialog .modal-content .modal-header:before, .modal.modal-member.publish-date .modal-dialog .modal-content .modal-header:after {
  display: none;
}
.modal.modal-member.publish-date .modal-dialog .modal-content .modal-body .publish-hour {
  margin-bottom: 24px;
}
.modal.modal-member.publish-date .modal-dialog .modal-content .modal-body .publish-hour label {
  font-size: 12px;
  margin-bottom: 8px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: #4a4a4a;
}
.modal.modal-member.publish-date .modal-dialog .modal-content .modal-body .publish-hour .publish-hour-form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.modal.modal-member.publish-date .modal-dialog .modal-content .modal-body .publish-hour .publish-hour-form span {
  margin: 0 4px;
}
.modal.modal-member.publish-date .modal-dialog .modal-content .modal-body .publish-hour .publish-hour-form select {
  width: 80px;
  height: 42px;
  padding: 12px;
  border-radius: 3px;
  border: solid 1px #a1b3c9;
}
.modal.modal-member.publish-date .modal-dialog .modal-content .modal-body .publish-hour .publish-hour-form .selectize-control {
  width: 100%;
  cursor: pointer;
}
.modal.modal-member.publish-date .modal-dialog .modal-content .modal-body .publish-hour .publish-hour-form .selectize-control .selectize-input {
  padding: 6px 12px;
  border: 1px solid #ccc;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  box-shadow: none;
  border-radius: 2px;
}
.modal.modal-member.publish-date .modal-dialog .modal-content .modal-body .publish-hour .publish-hour-form .selectize-control .selectize-input input {
  outline: 0 !important;
  border: 0 !important;
  position: absolute !important;
}
.modal.modal-member.publish-date .modal-dialog .modal-content .modal-body .publish-hour .publish-hour-form .selectize-control .selectize-input .item {
  padding: 0;
  margin: 0;
  background-color: transparent;
  color: var(--neutral-base, #3e455e);
  font-size: var(--font-size-15, 0.9375em);
}
.modal.modal-member.publish-date .modal-dialog .modal-content .modal-body .publish-hour .publish-hour-form .selectize-dropdown {
  position: absolute;
  height: auto;
  padding: 0;
  margin: 2px 0 0 0;
  z-index: 1000;
  background: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
.modal.modal-member.publish-date .modal-dialog .modal-content .modal-body .publish-hour .publish-hour-form .selectize-dropdown .selectize-dropdown-content {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
  padding: 5px 0;
}
.modal.modal-member.publish-date .modal-dialog .modal-content .modal-body .publish-hour .publish-hour-form .selectize-dropdown .selectize-dropdown-content .option:hover {
  background-color: #199adb;
}
.modal.modal-member.publish-date .modal-dialog .modal-content .modal-body .publish-hour .publish-hour-form .ampm {
  margin-left: 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-transform: translateY(-4px);
      transform: translateY(-4px);
}
.modal.modal-member.publish-date .modal-dialog .modal-content .modal-body .publish-hour .publish-hour-form .ampm label {
  margin-bottom: 0;
}
.modal.modal-member.publish-date .modal-dialog .modal-content .modal-body .publish-hour .publish-hour-form .ampm input[type=radio] {
  margin: 2px 0 0 -20px;
  -ms-transform: translateY(2px);
      transform: translateY(2px);
}
.modal.modal-member.publish-date .modal-dialog .modal-content .modal-body .publish-hour .publish-hour-form .ampm .radio-inline {
  margin: 0 10px 0 0;
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: 300;
  cursor: pointer;
}
.modal.modal-member.publish-date .modal-dialog .modal-content .modal-body .publish-date {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  color: #4a4a4a;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.modal.modal-member.publish-date .modal-dialog .modal-content .modal-body .publish-date label {
  font-size: 12px;
  margin-bottom: 8px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: #4a4a4a;
}
.modal.modal-member.publish-date .modal-dialog .modal-content .modal-body .publish-date input {
  width: 100%;
  height: 40px;
  padding: 12px;
  border-radius: 3px;
  border: solid 1px #a1b3c9;
  font-size: 14px;
}
.modal.modal-member.publish-date .modal-dialog .modal-content .modal-footer .btn-primary {
  background-color: var(--highlight-base, #137df7);
}
.modal.modal-member.products-services .modal-dialog {
  width: 890px;
}
.modal.modal-member.products-services .modal-dialog .modal-body .upload-images-container {
  margin-top: 20px;
  margin-bottom: 14px;
}
.modal.modal-member.products-services .modal-dialog .modal-body .upload-images-container p {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
}
.modal.modal-member.products-services .modal-dialog .modal-body .upload-images-container .upload-images-list {
  display: -ms-flexbox;
  display: flex;
  column-gap: 24px;
  list-style: none;
  margin: 16px 0 12px 0;
  padding: 0;
}
.modal.modal-member.products-services .modal-dialog .modal-body .upload-images-container .upload-images-list .upload-images-item {
  width: 120px;
  height: 104px;
  padding: 12px;
  border: dashed 1px #a1b3c9;
  cursor: pointer;
}
.modal.modal-member.products-services .modal-dialog .modal-body .upload-images-container .upload-images-list .upload-images-item:nth-of-type(2) {
  border: 2px solid #199ADA;
}
.modal.modal-member.products-services .modal-dialog .modal-body .upload-images-container .upload-images-list .upload-images-item.add-image {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 152px;
  color: #b6c4d5;
}
.modal.modal-member.products-services .modal-dialog .modal-body .upload-images-container .upload-images-list .upload-images-item.add-image i {
  margin-right: 5px;
}
.modal.modal-member.products-services .modal-dialog .modal-body .upload-images-container .upload-images-list .upload-images-item .img-box {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  background-size: cover;
  background-position: center;
}
.modal.modal-member.products-services .modal-dialog .modal-body .upload-images-container .upload-images-list .upload-images-item .img-box:after {
  font-family: "fontAwesome";
  content: "\f1f8";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #a1b3c9;
  opacity: 0;
  border-radius: 3px;
  transition: 0.2s;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  color: #fff;
  font-size: 17px;
}
.modal.modal-member.products-services .modal-dialog .modal-body .upload-images-container .upload-images-list .upload-images-item .img-box:hover:after {
  opacity: 0.88;
}
.modal.modal-member.products-services .modal-dialog .modal-body .upload-images-container .upload-images-list .upload-images-item.active {
  border: solid 2px #199ada;
}
.modal.modal-member.qrcode-how-works .modal-dialog .modal-content {
  background-color: #f3f5f8;
}
.modal.modal-member.qrcode-how-works .modal-dialog .modal-content img {
  margin-bottom: 35px;
}
.modal.modal-member.qrcode-how-works .modal-dialog .modal-content h4 {
  margin-bottom: 30px;
  font-weight: 600;
  color: #4a5168;
}
.modal.modal-member.qrcode-how-works .modal-dialog .modal-content p {
  margin: 0 0 20px;
}
.modal.modal-member.modal-ai .modal-dialog {
  width: 890px;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content {
  position: relative;
  background-color: #fff;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-header {
  border: none;
  -ms-flex-direction: column;
      flex-direction: column;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-header .close {
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
  top: 12px;
  right: 15px;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-header .modal-title {
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-header .modal-title h4 {
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 500;
  color: #4a4a4a;
  margin: 0;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-header .modal-title .ai-icon {
  margin-top: -1px;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-header .modal-title .ai-icon img {
  width: 100%;
  height: auto;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-header .modal-subtitle {
  max-width: 450px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  text-align: left;
  color: #707070;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-header .checkbox-group {
  display: inline-block;
  margin-top: 24px;
  padding: 6px 8px;
  background-color: #f3f5f8;
  border-radius: 4px;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-header .checkbox-group input[type=checkbox] {
  -ms-transform: translateY(2px);
      transform: translateY(2px);
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-header .checkbox-group label {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #636465;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body {
  background-color: #fff;
  border: none;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .form-group {
  margin-bottom: 24px;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .form-group label {
  font-family: "Roboto";
  font-size: 12px;
  font-weight: 500;
  color: #4a4a4a;
  margin-bottom: 8px;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .form-group input {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  width: 100%;
  height: 34px;
  padding: 8px;
  border-radius: 3px;
  border: solid 1px #a1b3c9;
  background-color: #fff;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .form-group input:focus {
  outline: none;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .own-message-input {
  width: 100%;
  height: 436px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #4a4a4a;
  resize: none;
  overflow: hidden;
  font-weight: 400;
  border-radius: 3px;
  border: solid 1px #a1b3c9;
  padding: 8px;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .own-message-input:focus {
  outline: none;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-prompt {
  height: 490px;
  padding: 24px 12px;
  border-radius: 3px 3px 0 0;
  border: solid 1px #a1b3c9;
  border-bottom: none;
  background-color: #fff;
  overflow: auto;
  margin-bottom: 36px;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-prompt::-webkit-scrollbar-track {
  background-color: #d5e1e8;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-prompt::-webkit-scrollbar {
  height: 6px;
  width: 8px;
  background-color: #becfd7;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-prompt::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background-color: #becfd7;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-prompt.small {
  height: 220px;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-prompt.small .ai-prompt-header {
  -ms-flex-align: start;
      align-items: flex-start;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-prompt.small .ai-prompt-header .ai-prompt-question {
  height: 20px;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-prompt .ai-prompt-header {
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  padding-bottom: 24px;
  position: relative;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-prompt .ai-prompt-header:after {
  content: "";
  display: block;
  width: calc(100% - 36px);
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: rgba(160, 179, 201, 0.4);
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-prompt .ai-prompt-header .avatar-img {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 3px;
  overflow: hidden;
  background-color: #BDE5FA;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-prompt .ai-prompt-header .avatar-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-prompt .ai-prompt-header .ai-prompt-question {
  width: 100%;
  padding: 0;
  border: none;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #4a4a4a;
  resize: none;
  margin-top: -4px;
  font-weight: 400;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-prompt .ai-prompt-header .ai-prompt-question:focus {
  outline: none;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-prompt .ai-prompt-header .ai-prompt-question:disabled {
  background-color: #fff;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-prompt .ai-prompt-header .ai-prompt-question::-webkit-scrollbar-track {
  background-color: #d5e1e8;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-prompt .ai-prompt-header .ai-prompt-question::-webkit-scrollbar {
  height: 6px;
  width: 8px;
  background-color: #becfd7;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-prompt .ai-prompt-header .ai-prompt-question::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background-color: #becfd7;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-prompt .ai-prompt-header .ai-edit-question {
  padding: 4px 24px;
  border: solid 1px #646566;
  height: fit-content;
  font-size: 12px;
  color: #646566;
  line-height: 12px;
  -ms-transform: translateX(-10px);
      transform: translateX(-10px);
  margin-top: -2px;
  border-radius: 3px;
  transition: 0.1s;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-prompt .ai-prompt-header .ai-edit-question.active {
  background-color: #1a9ad9;
  border-color: #1a9ad9;
  color: #fff;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-prompt .ai-prompt-header .ai-edit-question.active:hover {
  text-decoration: none;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-prompt .ai-prompt-header .ai-edit-question.active:visited {
  text-decoration: none;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-prompt .ai-prompt-header .ai-edit-question:hover {
  text-decoration: none;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-prompt .ai-prompt-header .ai-edit-question:hover .fa {
  color: #1a9ad9;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-prompt .ai-prompt-body {
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  padding: 24px 12px 64px 0;
  white-space: pre-line;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-prompt .ai-prompt-body:last-of-type {
  padding-bottom: 24px;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-prompt .ai-prompt-body::-webkit-scrollbar-track {
  background-color: #d5e1e8;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-prompt .ai-prompt-body::-webkit-scrollbar {
  height: 6px;
  width: 8px;
  background-color: #becfd7;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-prompt .ai-prompt-body::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background-color: #becfd7;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-prompt .ai-prompt-body .avatar-img {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 24px;
  min-width: 24px;
  height: 24px;
  border-radius: 3px;
  background-color: #ebebeb;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-prompt .ai-prompt-body .ai-answer {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.71;
  color: #4a4a4a;
  font-weight: 400;
  margin-top: -3px;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-prompt .ai-prompt-body .ai-keywords-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: start;
      align-items: flex-start;
  gap: 6px;
  height: fit-content;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-prompt .ai-prompt-body .ai-keywords-list .keyword-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  height: 28px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  gap: 8px;
  padding: 6px 10px;
  background-color: #738dad;
  cursor: pointer;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-prompt .ai-prompt-body .ai-keywords-list .keyword-item .fa {
  font-size: 14px;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body [id^=first-step-assistant-] .ai-input-group, .modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body #first-step-name .ai-input-group {
  height: 34px;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body [id^=first-step-assistant-] .ai-input-group .ai-input, .modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body #first-step-name .ai-input-group .ai-input {
  height: 34px;
  padding-left: 42px;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body [id^=first-step-assistant-] .ai-input-group .avatar-img, .modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body #first-step-name .ai-input-group .avatar-img {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 3px;
  overflow: hidden;
  background-color: #BDE5FA;
  position: absolute;
  z-index: 1;
  left: 8px;
  top: 5px;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body [id^=first-step-assistant-] .ai-input-group .avatar-img img, .modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body #first-step-name .ai-input-group .avatar-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body [id^=first-step-assistant-] .ai-input-group .ai-send, .modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body #first-step-name .ai-input-group .ai-send {
  height: 26px;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-input-group {
  position: relative;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-input-group .ai-input {
  padding: 6px 44px 0 8px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #4a4a4a;
  border-radius: 0 0 3px 3px;
  border: solid 1px #a1b3c9;
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  -ms-transform-origin: bottom right;
      transform-origin: bottom right;
  height: 56px;
  resize: none;
  overflow-y: scroll;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-input-group .ai-input::-webkit-scrollbar-track {
  background-color: #d5e1e8;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-input-group .ai-input::-webkit-scrollbar {
  height: 6px;
  width: 8px;
  background-color: #becfd7;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-input-group .ai-input::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background-color: #becfd7;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-input-group .ai-input:focus {
  outline: 0;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-input-group .ai-send {
  background-color: #1a9ad9;
  padding: 2px 6px;
  border-radius: 3px;
  border: none;
  outline: 0;
  height: 48px;
  position: absolute;
  right: 15px;
  bottom: 4px;
  cursor: pointer;
  transition: 0.2s;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-input-group .ai-send .fa {
  font-size: 13px;
  color: #fff;
  transition: 0.2s;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-input-group .ai-send[disabled] {
  cursor: default;
  background-color: #fff;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-body .ai-input-group .ai-send[disabled] .fa {
  color: #a0b3c9;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-footer {
  border: none;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-footer .btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: ease all 0.5s 0s;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 3px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #4a4a4a;
  background-color: transparent;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-footer .btn-primary, .modal.modal-member.modal-ai .modal-dialog .modal-content .modal-footer .btn-secondary {
  padding: 8px 16px;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-footer .btn-secondary {
  border: none;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-footer .btn-secondary:active, .modal.modal-member.modal-ai .modal-dialog .modal-content .modal-footer .btn-secondary:focus, .modal.modal-member.modal-ai .modal-dialog .modal-content .modal-footer .btn-secondary:visited {
  border: none;
  outline: 0;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .modal-footer .btn-primary {
  color: #fff;
  background-color: #199adb;
  border-color: #199adb;
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .ai-loader-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.88);
}
.modal.modal-member.modal-ai .modal-dialog .modal-content .ai-loader-bg .ai-loader {
  top: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
}
@media screen and (max-width: 992px) {
  .modal.modal-member.bundling-options .modal-dialog {
    width: 100%;
    padding: 12px;
  }
}
.modal.modal-member.bundling-options.modal-pick-subscription .modal-content .modal-body {
  text-align: left;
}
.modal.modal-member.bundling-options.modal-pick-subscription .modal-content .modal-body p {
  font-size: 15px;
}
.modal.modal-member.bundling-options.modal-pick-subscription .modal-content .modal-body .select2-container {
  width: 400px !important;
  height: 40px;
}
@media screen and (max-width: 768px) {
  .modal.modal-member.bundling-options.modal-pick-subscription .modal-content .modal-body .select2-container {
    width: 100% !important;
  }
}
.modal.modal-member.bundling-options.modal-pick-subscription .modal-content .modal-body .select2-container .select2-selection {
  height: 40px;
}
.modal.modal-member.bundling-options.modal-pick-subscription .modal-content .modal-body .select2-container .select2-selection.select2-selection--single .select2-selection__arrow {
  top: 6px;
}
.modal.modal-member.bundling-options.modal-pick-subscription .modal-content .modal-body .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 38px;
}
.modal.modal-member.bundling-options.modal-pick-subscription .modal-content .modal-body img {
  margin-bottom: 80px;
}
.modal.modal-member.bundling-options .modal-content .modal-body {
  background-color: #F7F8FB;
  padding: 24px 40px;
}
.modal.modal-member.bundling-options .modal-content .modal-body h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 24px;
}
.modal.modal-member.bundling-options .modal-content .modal-body .form-group select.form-control.mt-modal {
  margin-top: 48px;
}
.modal.modal-member.bundling-options .modal-content .modal-body .listing-templates-list {
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 48px;
  margin-bottom: 88px;
}
.modal.modal-member.bundling-options .modal-content .modal-body .listing-templates-list .listing-templates-item {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  height: 50px;
  font-size: 14px;
  width: calc((100% - 32px) / 3);
  border: solid 1px #CBD5E1;
  background-color: #fff;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.1s;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 992px) {
  .modal.modal-member.bundling-options .modal-content .modal-body .listing-templates-list .listing-templates-item {
    width: calc((100% - 32px) / 2);
  }
}
@media screen and (max-width: 640px) {
  .modal.modal-member.bundling-options .modal-content .modal-body .listing-templates-list .listing-templates-item {
    width: calc(100% - 32px);
  }
}
.modal.modal-member.bundling-options .modal-content .modal-body .listing-templates-list .listing-templates-item.selected {
  color: var(--highlight-base, #137df7);
  border: solid 2px var(--highlight-base, #137df7);
}
.modal.modal-member.bundling-options .modal-content .modal-body .listing-templates-list .listing-templates-item .template-select-btn {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: none;
  border: none;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  padding: 0 40px 0 12px;
  text-align: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.modal.modal-member.bundling-options .modal-content .modal-body .listing-templates-list .listing-templates-item .template-select-btn:focus {
  outline: none;
}
.modal.modal-member.bundling-options .modal-content .modal-body .listing-templates-list .listing-templates-item .preview-link {
  position: absolute;
  right: 12px;
  top: 8px;
  font-size: 20px;
  z-index: 10;
}
.modal.modal-member.bundling-options .modal-content .modal-body .listing-templates-list .listing-templates-item .preview-link .fa {
  color: #CBD5E1;
  transition: 0.2s;
}
.modal.modal-member.bundling-options .modal-content .modal-body .listing-templates-list .listing-templates-item .preview-link:hover {
  color: #CBD5E1;
  text-decoration: none;
}
.modal.modal-member.bundling-options .modal-content .modal-body .listing-templates-list .listing-templates-item .preview-link:hover .fa {
  color: var(--highlight-base, #137df7);
}
.modal.modal-member.bundling-options .modal-content .modal-body .listing-templates-list .listing-templates-item .eye-icon {
  position: absolute;
  right: 12px;
  top: 8px;
  font-size: 20px;
}
.modal.modal-member.bundling-options .modal-content .modal-body .listing-templates-list .listing-templates-item .eye-icon .fa {
  color: #CBD5E1;
  transition: 0.2s;
}
.modal.modal-member.bundling-options .modal-content .modal-footer .is-secondary {
  background-color: transparent;
}
.modal.modal-member.bundling-options .modal-content .modal-footer .is-secondary:hover {
  background-color: transparent;
  opacity: 0.8;
}
.modal.modal-member.bundling-options .modal-content .modal-footer {
  padding: 24px 0 0 0;
}
@media screen and (max-width: 992px) {
  .modal.modal-member.modal-print-invoice-instructions .modal-dialog.modal-lg {
    width: 100%;
    padding: 0 24px;
  }
}
.modal.modal-member.modal-print-invoice-instructions .invoice-instructions {
  display: -ms-flexbox;
  display: flex;
  margin-top: 56px;
  gap: 24px;
}
@media screen and (max-width: 992px) {
  .modal.modal-member.modal-print-invoice-instructions .invoice-instructions {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.modal.modal-member.modal-print-invoice-instructions .invoice-instructions .invoice-instructions-item {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  background-color: var(--neutral-transp-5, rgba(62, 69, 94, 0.05));
  padding: 32px 28px;
  border-radius: var(--border-radius, 3px);
  gap: 20px;
  width: 33%;
}
@media screen and (max-width: 992px) {
  .modal.modal-member.modal-print-invoice-instructions .invoice-instructions .invoice-instructions-item {
    width: 100%;
  }
}
.modal.modal-member.modal-print-invoice-instructions .invoice-instructions .invoice-instructions-item h1 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  position: absolute;
  top: -42px;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  border-radius: 50px;
  font-size: 32px;
  font-weight: 700;
  background-color: var(--highlight-base, #137df7);
  color: #fff;
  border: solid 8px #fff;
  width: 72px;
  height: 72px;
}
.modal.modal-member.modal-print-invoice-instructions .invoice-instructions .invoice-instructions-item img {
  max-height: 96px;
  max-width: 100%;
  margin: 24px auto 0 auto;
}
.modal.modal-member.modal-print-invoice-instructions .invoice-instructions .invoice-instructions-item .content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 8px;
}
.modal.modal-member.modal-print-invoice-instructions .invoice-instructions .invoice-instructions-item .content h3 {
  font-size: 20px;
  color: var(--neutral-base, #3e455e);
  text-align: center;
  margin-bottom: 0;
}
.modal.modal-member.modal-print-invoice-instructions .invoice-instructions .invoice-instructions-item .content p {
  font-size: 14px;
  color: var(--neutral-base, #3e455e);
  text-align: center;
  margin-bottom: 0;
}

body.modal-open {
  padding-right: 0 !important;
}

/* ARQUIVOS DE MEMBERS */
/* ARQUIVOS DE MODSTORES */
.article-offered {
  margin-top: 8px;
  color: white;
}

.forum-bar {
  background: var(--brand-base, #022e69);
  padding: 24px 0;
}
.forum-bar .heading {
  color: white;
}
.forum-bar .heading .bar-link {
  color: var(--link-base, #3ebaf6);
}
.forum-bar .topic-content {
  max-width: 80%;
  margin: 24px auto 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
}
@media screen and (min-width: 768px) {
  .forum-bar .topic-content {
    max-width: 60%;
  }
}
@media screen and (min-width: 992px) {
  .forum-bar .topic-content {
    max-width: 40%;
  }
}
.forum-bar .topic-content .input {
  display: block;
  width: 100%;
}
.forum-bar .topic-content .select2 {
  width: 100% !important;
  margin-top: 8px;
}
.forum-bar .topic-content .select2 .select2-selection {
  width: 100%;
  height: 50px;
}
.forum-bar .topic-content .select2 .select2-selection__rendered {
  line-height: 50px;
}
.forum-bar .topic-content .select2 .select2-selection__arrow {
  height: 50px;
}
.forum-bar .topic-content .topic-detail select.input {
  background-color: white;
}
.forum-bar .topic-content .topic-detail.all-disabled * {
  pointer-events: none;
}
.forum-bar .topic-content .topic-detail {
  display: none;
  margin-top: 8px;
}
.forum-bar .topic-content .topic-detail .input {
  width: 100%;
  padding: 8px 16px;
  max-width: 100%;
}
.forum-bar .topic-content .topic-detail .topic-description {
  margin-top: 8px;
}
.forum-bar .topic-content .topic-action {
  margin-top: 16px;
  text-align: center;
}

.forum-answere {
  margin-top: 24px;
}
.forum-answere .answere-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
}
.forum-answere .answere-item:not(:last-child) {
  border-bottom: 1px solid #ccc;
  margin-bottom: 24px;
}
.forum-answere .answere-author {
  width: 80px;
}
.forum-answere .answere-author a {
  display: block;
}
.forum-answere .answere-author img {
  display: block;
  max-width: 80px;
  height: 80px;
  border-radius: 9999px;
}
.forum-answere .answere-author .author-name {
  font-size: 12px;
  display: block;
  word-break: break-word;
  text-align: center;
  margin-top: 8px;
}
.forum-answere .answere-author .answere-date {
  font-size: 12px;
  text-align: center;
  border-top: 1px solid #ccc;
  margin-top: 8px;
  padding-top: 8px;
}
.forum-answere .answere-author .author-picture {
  border: 1px solid #eee;
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 80px;
}
.forum-answere .answere-description {
  width: calc(100% - 104px);
}

.question-author-date {
  margin-top: 4px;
}

.results-body .results-content .summary-list .summary-item[data-type=forum] .summary-content {
  width: 100%;
  border-right: none;
  padding-right: 0;
}
.results-body .results-content .summary-list .summary-item[data-type=forum] .summary-content .summary-info {
  width: 100%;
  max-width: 100%;
}
.results-body .results-content .summary-list .summary-item[data-type=forum] .summary-content .summary-info .summary-title {
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.results-body .results-content .summary-list .summary-item[data-type=forum] .summary-content .summary-categories {
  display: block;
}
.results-body .results-content .summary-list[list-type=grid-view] .summary-item[data-type=forum] .summary-content .summary-categories-grid {
  position: absolute;
  right: 16px;
}
.results-body .results-content .summary-list[list-type=grid-view] .summary-item[data-type=forum] .summary-content .summary-info {
  margin-top: 0;
}
.results-body .results-content .summary-list[list-type=grid-view] .summary-item[data-type=forum] .summary-content .summary-title {
  max-width: calc(100% - 44px);
}
.results-body .results-content .summary-list[list-type=grid-view] .summary-item[data-type=forum] .summary-content .summary-categories {
  display: none;
}

.question-horizontal-bar {
  background-color: var(--highlight-base, #137df7);
  text-align: center;
  padding: 40px 0;
  background-size: cover;
}
.question-horizontal-bar h2 {
  color: white;
  margin-bottom: 20px;
  margin-top: 0;
  font-size: 30px;
}
.question-horizontal-bar .input-group {
  margin-bottom: 20px;
}
.question-horizontal-bar .input-group input {
  font-size: 16px;
  padding: 0 16px;
  height: 44px;
}
.question-horizontal-bar .input-group input:focus {
  border: none;
  outline: 0;
}
.question-horizontal-bar .input-group .input-group-btn .fa {
  padding-right: 5px;
}
.question-horizontal-bar .input-group .input-group-btn button {
  font-size: 16px;
  padding-right: 15px;
  background: white;
  height: 44px;
  border: 1px solid var(--neutral-base, #3e455e);
  border-left: none;
  margin-left: -1px;
  z-index: 100;
  position: relative;
  color: var(--brand-base, #022e69);
  -webkit-appearance: none;
  border-radius: 0px;
}
.question-horizontal-bar .input-group .input-group-btn button[aria-expanded=true] .t-fade {
  display: none;
}
.question-horizontal-bar .input-group .input-group-btn button:focus {
  outline: 0;
}
.question-horizontal-bar select {
  font-size: 16px;
  padding-right: 15px;
  background: white;
  height: 44px;
  border: 1px solid var(--neutral-base, #3e455e);
  border-left: none;
  margin-left: -1px;
  -webkit-appearance: none;
  border-radius: 0px;
}
.question-horizontal-bar textarea {
  font-size: 16px;
  padding: 10px 16px;
  resize: none;
}
.question-horizontal-bar .btn-rounded {
  background: var(--brand-base, #022e69);
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  padding: 0 65px;
  font-weight: 300;
}
.question-horizontal-bar.add-question-sm {
  padding: 30px 0;
}
.question-horizontal-bar.add-question-sm h2 {
  font-size: 20px;
}
.question-horizontal-bar.add-question-sm input {
  height: 40px;
  width: 500px;
  margin-right: 20px;
}
@media (max-width: 992px) {
  .question-horizontal-bar.add-question-sm input {
    width: 400px;
  }
}
@media (max-width: 458px) {
  .question-horizontal-bar.add-question-sm input {
    width: 100%;
  }
}

.question.detail section {
  padding: 0 0 21px 0;
  margin-bottom: 21px;
}
.question.detail .answers #write-an-answer {
  margin-bottom: 60px;
}
.question.detail .answers .item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}
.question.detail .answers .item.reply {
  background: var(--neutral-transp-80, rgba(62, 69, 94, 0.8));
  margin: 0 0 15px;
  padding: 15px;
}
.question.detail .review-box .review-top .media-left {
  padding-bottom: 10px;
}
.question.details-sidebar .user .img-profile {
  max-width: 35px;
  height: 35px;
}
.question.details-sidebar .search #button-search-qamod {
  padding: 0;
}
.question.details-sidebar .search #button-search-qamod i {
  width: 50px;
  height: 48px;
  padding: 0;
  margin: 0;
  line-height: 50px;
}
.question.details-sidebar .list-group .list-group-item {
  padding: 10px 0;
  background-color: white;
  border: none;
  border-bottom: 1px solid #ddd;
}
.question.details-sidebar .list-group .list-group-item:first-child {
  border-top: 1px solid #ddd;
}
.question.details-sidebar .list-group .list-group-item a {
  text-decoration: none;
}
.question.details-sidebar .list-group .list-group-item a span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
}
.question.details-sidebar .list-group .list-group-item a small {
  color: var(--neutral-base, #3e455e);
  display: block;
}
.question.sidebar .search #button-search-qamod {
  padding: 0;
}
.question.sidebar .search #button-search-qamod i {
  width: 50px;
  height: 48px;
  padding: 0;
  margin: 0;
  line-height: 50px;
}
.question.sidebar .list-group {
  border: 1px solid #ddd;
  background: #FFF;
}
.question.sidebar .list-group .list-group-item {
  padding: 10px 0;
  margin: 0 10px;
  border: none;
  border-bottom: 1px solid #ddd;
}
.question.sidebar .list-group .list-group-item:last-child {
  border: none;
}
.question.sidebar .list-group .list-group-item a {
  text-decoration: none;
}
.question.sidebar .list-group .list-group-item a span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
}
.question.sidebar .list-group .list-group-item a small {
  color: var(--neutral-base, #3e455e);
  display: block;
}
.question.results-page .summary-box {
  padding: 5px;
}
.question.results-page .summary-box .label {
  border-radius: 0;
  font-size: 50%;
  vertical-align: middle;
  display: inline-block;
}
.question.results-page .summary-box a:hover .label {
  text-decoration: none;
  display: inline-block;
}
.question.results-page .summary-box .review-box {
  border: none;
  margin-bottom: 0;
}
.question.results-page .summary-box .review-box .review-top p {
  color: unset;
}
.question.results-page .summary-box .review-box .review-top .media-left {
  width: 12%;
  padding-bottom: 10px;
}
.question.results-page .summary-box .review-box .review-bottom {
  text-align: left;
  padding: 10px 0 0 0;
  margin-top: 10px;
  border-top: 1px solid #d5d8dc;
}

.base-categories .categories-list-header .input-group {
  display: -ms-flexbox;
  display: flex;
  background-color: #ccc;
  border-radius: var(--border-radius-input, 3px);
}
.base-categories .categories-list-header .input-group .input {
  border-top-right-radius: 0;
}
.base-categories .categories-list-header .input-group .input-group-addon {
  padding: 0 16px;
  border: 1px solid var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  border-left: none;
  line-height: 48px;
  border-top-right-radius: var(--border-radius-input, 3px);
}
.base-categories .categories-list-header .input-group .input-categories-list {
  -ms-flex-positive: 1;
      flex-grow: 1;
  background: white;
  -ms-flex-align: center;
      align-items: center;
  border-top-left-radius: var(--border-radius-input, 3px);
  border-bottom-left-radius: var(--border-radius-input, 3px);
}

.cards-default.cards-question .cards-list .card .content .question-title {
  font-weight: 700;
}
.cards-default.cards-question .cards-list .card .content .question-title-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.cards-default.cards-question .cards-list .card .content .question-title-header .categories {
  margin-top: 0;
}
.cards-default.cards-question .cards-list .card .content .question-title-header .categories a.link {
  margin-top: 0;
}
@media screen and (min-width: 992px) {
  .cards-default.cards-question[data-type=articles] .cards-list .card-horizontal-full .content {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .cards-default.cards-question[data-type=articles] .cards-list .card-horizontal-full .content {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .cards-default.cards-question[data-type=articles] .cards-list .card-horizontal-full.list-horizontal {
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .cards-default.cards-question[data-type=articles] .cards-list .card-horizontal-full.list-horizontal {
    padding: 12px 0;
    border-top: 1px solid var(--neutral-transp-10, rgba(62, 69, 94, 0.1));
  }
  .cards-default.cards-question[data-type=articles] .cards-list .card-horizontal-full.list-horizontal:last-child {
    border-bottom: 1px solid var(--neutral-transp-10, rgba(62, 69, 94, 0.1));
  }
}
.cards-default.cards-question[data-type=articles] .cards-list .card-horizontal-full.list-horizontal .content .question-title {
  font-weight: 400;
}
.cards-default.cards-question[data-type=articles] .cards-list .card-horizontal-full.list-horizontal .content .question-title-header .paragraph.blog-category {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}
@media screen and (min-width: 992px) {
  .cards-default.cards-question[data-type=articles] .cards-list .card-horizontal-full.list-horizontal .content {
    width: 100%;
  }
}

.header .header-navbar .plugin-navbar-dropdown.plugin-dropdown-menu {
  display: block;
  position: relative;
  margin-left: 32px;
  z-index: 4000;
}
.header .header-navbar .plugin-navbar-dropdown.plugin-dropdown-menu .dropdown-content {
  position: absolute;
  width: 215px;
  background: white;
  border: 1px solid #eee;
  border-radius: 3px;
  display: none;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  -ms-flex-align: start;
      align-items: flex-start;
  padding: 24px;
  margin-top: 16px;
  left: calc(100% - 113.5px);
  transition: 0.2s ease-in-out;
  opacity: 0;
}
.header .header-navbar .plugin-navbar-dropdown.plugin-dropdown-menu .dropdown-content.dropdown-content-shown {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column;
      flex-flow: column;
  opacity: 1;
}
.header .header-navbar .plugin-navbar-dropdown.plugin-dropdown-menu .dropdown-content:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: -3px;
  left: 50%;
  background: white;
  border-top: 1px solid #eee;
  border-left: 1px solid #eee;
  -ms-transform: rotate(45deg) translateX(-50%);
      transform: rotate(45deg) translateX(-50%);
}
.header .header-navbar .plugin-navbar-dropdown.plugin-dropdown-menu .dropdown-label {
  font-size: var(--font-size-16, 1em);
  cursor: pointer;
  transition: 0.2s ease-in-out;
  color: var(--color-white-base, white);
}
.header .header-navbar .plugin-navbar-dropdown.plugin-dropdown-menu .dropdown-label:before {
  border-color: var(--color-white-base, white);
}
.header .header-navbar .plugin-navbar-dropdown.plugin-dropdown-menu .dropdown-label:hover {
  color: var(--highlight-base, #137df7);
}
.header .header-navbar .plugin-navbar-dropdown.plugin-dropdown-menu .dropdown-label:hover .fa {
  color: var(--highlight-base, #137df7);
}
.header .header-navbar .plugin-navbar-dropdown.plugin-dropdown-menu .dropdown-label .fa {
  transition: 0.2s ease-in-out;
}
.header .header-navbar .plugin-navbar-dropdown.plugin-dropdown-menu .dropdown-label.is-open .fa {
  -ms-transform: rotate(180deg);
      transform: rotate(180deg);
}
.header .header-navbar .plugin-navbar-dropdown.plugin-dropdown-menu .more-link {
  font-size: var(--font-size-16, 1em);
  color: var(--neutral-base, #3e455e);
  text-decoration: none;
  margin-top: 8px;
  transition: 0.2s ease-in-out;
  word-break: break-word;
}
.header .header-navbar .plugin-navbar-dropdown.plugin-dropdown-menu .more-link:first-child {
  margin-top: 0;
}
.header .header-navbar .plugin-navbar-dropdown.plugin-dropdown-menu .more-link:hover {
  color: var(--highlight-base, #137df7);
}
.header .header-navbar .navbar-link.plugin-dropdown-menu {
  font-size: var(--font-size-16, 1em);
  color: var(--color-white-base, white);
  text-decoration: none;
  margin-left: 32px;
  position: relative;
  transition: 0.2s ease-in-out;
  word-break: break-word;
}
.header .header-navbar .navbar-link.plugin-dropdown-menu:first-child {
  margin-left: 0;
}
.header .header-navbar .navbar-link.plugin-dropdown-menu:hover {
  color: var(--highlight-base, #137df7) !important;
}
.header .header-navbar .navbar-link.plugin-dropdown-menu.is-active {
  font-weight: bold;
}
.header .header-navbar .navbar-more .more-content .plugin-navbar-dropdown.plugin-dropdown-menu {
  display: block;
  position: relative;
  margin-left: 0;
  margin-top: 12px;
  z-index: 5000;
}
.header .header-navbar .navbar-more .more-content .plugin-navbar-dropdown.plugin-dropdown-menu:first-child {
  margin-top: 0;
}
.header .header-navbar .navbar-more .more-content .plugin-navbar-dropdown.plugin-dropdown-menu .dropdown-content {
  position: absolute;
  width: 215px;
  background: white;
  border: 1px solid #eee;
  border-radius: 3px;
  display: none;
  opacity: 0;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  -ms-flex-align: start;
      align-items: flex-start;
  padding: 24px;
  margin-top: 0;
  margin-right: 12px;
  left: -232px;
  transition: 0.2s ease-in-out;
}
.header .header-navbar .navbar-more .more-content .plugin-navbar-dropdown.plugin-dropdown-menu .dropdown-content.dropdown-content-shown {
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}
.header .header-navbar .navbar-more .more-content .plugin-navbar-dropdown.plugin-dropdown-menu .dropdown-content:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: 50%;
  right: -3px;
  left: unset;
  background: white;
  border-top: 1px solid #eee;
  border-left: 1px solid #eee;
  -ms-transform: rotate(135deg) translateX(-50%);
      transform: rotate(135deg) translateX(-50%);
}
.header .header-navbar .navbar-more .more-content .plugin-navbar-dropdown.plugin-dropdown-menu .dropdown-label {
  padding-left: 12px;
}
.header .header-navbar .navbar-more .more-content .plugin-navbar-dropdown.plugin-dropdown-menu .dropdown-label.is-open:before {
  -ms-transform: rotate(135deg) translateY(-50%);
      transform: rotate(135deg) translateY(-50%);
  left: -4px;
}
.header .header-navbar .navbar-more .more-content .plugin-navbar-dropdown.plugin-dropdown-menu .dropdown-label:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: calc(50% - 6px);
  left: 4px;
  background: transparent;
  border-top-width: 1px;
  border-top-style: solid;
  border-left-width: 1px;
  border-left-style: solid;
  transition: 0.2s ease-in-out;
  -ms-transform: rotate(315deg) translateX(-50%);
      transform: rotate(315deg) translateX(-50%);
}
.header .header-navbar .navbar-more .more-content .navbar-link.plugin-dropdown-menu {
  margin-left: 0;
  margin-top: 12px;
  color: var(--neutral-base, #3e455e);
}
.header .header-navbar .navbar-more .more-content .navbar-link.plugin-dropdown-menu:first-child {
  margin-top: 0;
}
.header .header-navbar .navbar-more .more-link.plugin-dropdown-menu {
  font-size: var(--font-size-16, 1em);
  color: var(--neutral-base, #3e455e);
  text-decoration: none;
  margin-top: 8px;
  transition: 0.2s ease-in-out;
  word-break: break-word;
}
.header .header-navbar .navbar-more .more-link.plugin-dropdown-menu:first-child {
  margin-top: 0;
}
.header .header-navbar .navbar-more .more-link.plugin-dropdown-menu:hover {
  color: var(--highlight-base, #137df7);
}
.header[data-type="1"] > .header-content .header-navbar, .header[data-type="2"] > .header-content .header-navbar, .header[data-type="3"] > .header-content .header-navbar, .header[data-type="4"] > .header-content .header-navbar {
  width: calc(100% - 224px);
}
.header[data-type="1"][is-inverse=true] > .header-content .header-navbar .navbar-link.plugin-dropdown-menu {
  color: var(--neutral-base, #3e455e);
}
.header[data-type="1"][is-inverse=true] > .header-content .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label {
  color: var(--neutral-base, #3e455e);
}
.header[data-type="1"][is-inverse=true] > .header-content .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label:before {
  border-color: var(--neutral-base, #3e455e);
}
.header[data-type="1"][is-inverse=true] > .header-content .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label:hover {
  color: var(--highlight-base, #137df7);
}
.header[data-type="1"][is-inverse=true] > .header-content .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label:hover .fa {
  color: var(--highlight-base, #137df7);
}
.header[data-type="1"][is-inverse=true] > .header-content .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label:hover:before {
  border-color: var(--highlight-base, #137df7);
}
.header[data-type="2"] > .header-content .header-navbar .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label {
  color: var(--color-white-base, white);
}
.header[data-type="2"] > .header-content .header-navbar .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label:before {
  border-color: var(--color-white-base, white);
}
.header[data-type="2"] > .header-content .header-navbar .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label:hover {
  color: var(--neutral-base, #3e455e);
}
.header[data-type="2"] > .header-content .header-navbar .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label:hover .fa {
  color: var(--neutral-base, #3e455e);
}
.header[data-type="2"] > .header-content .header-navbar .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label:hover:before {
  border-color: var(--neutral-base, #3e455e);
}
.header[data-type="2"] > .header-content .header-navbar .navbar-more .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label {
  color: var(--neutral-base, #3e455e);
}
.header[data-type="2"] > .header-content .header-navbar .navbar-more .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label:before {
  border-color: var(--neutral-base, #3e455e);
}
.header[data-type="2"][is-inverse=true] > .header-content .header-navbar .navbar-link.plugin-dropdown-menu {
  color: var(--neutral-base, #3e455e);
}
.header[data-type="2"][is-inverse=true] > .header-content .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label {
  color: var(--neutral-base, #3e455e);
}
.header[data-type="2"][is-inverse=true] > .header-content .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label:before {
  border-color: var(--neutral-base, #3e455e);
}
.header[data-type="2"][is-inverse=true] > .header-content .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label:hover {
  color: var(--highlight-base, #137df7);
}
.header[data-type="2"][is-inverse=true] > .header-content .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label:hover .fa {
  color: var(--highlight-base, #137df7);
}
.header[data-type="2"][is-inverse=true] > .header-content .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label:hover:before {
  border-color: var(--highlight-base, #137df7);
}
.header[data-type="3"][is-inverse=true] > .navbar-outside .header-navbar .navbar-link.plugin-dropdown-menu {
  color: var(--neutral-base, #3e455e);
}
.header[data-type="3"][is-inverse=true] > .navbar-outside .header-navbar .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label {
  color: var(--neutral-base, #3e455e);
}
.header[data-type="3"][is-inverse=true] > .navbar-outside .header-navbar .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label:before {
  border-color: var(--neutral-base, #3e455e);
}
.header[data-type="3"][is-inverse=true] > .navbar-outside .header-navbar .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label:hover {
  color: var(--highlight-base, #137df7);
}
.header[data-type="3"][is-inverse=true] > .navbar-outside .header-navbar .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label:hover .fa {
  color: var(--highlight-base, #137df7);
}
.header[data-type="3"][is-inverse=true] > .navbar-outside .header-navbar .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label:hover:before {
  border-color: var(--highlight-base, #137df7);
}
.header[data-type="3"][is-inverse=true][is-sticky=true][has-opacity=false] > .navbar-outside .header-navbar .navbar-link.plugin-dropdown-menu {
  color: var(--color-white-base, white);
}
.header[data-type="3"][is-inverse=true][is-sticky=true][has-opacity=false] > .navbar-outside .header-navbar .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label {
  color: var(--color-white-base, white);
}
.header[data-type="3"][is-inverse=true][is-sticky=true][has-opacity=false] > .navbar-outside .header-navbar .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label:before {
  border-color: var(--color-white-base, white);
}
.header[data-type="3"][is-inverse=true][is-sticky=true][has-opacity=false] > .navbar-outside .header-navbar .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label:hover {
  color: var(--neutral-base, #3e455e);
}
.header[data-type="3"][is-inverse=true][is-sticky=true][has-opacity=false] > .navbar-outside .header-navbar .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label:hover .fa {
  color: var(--neutral-base, #3e455e);
}
.header[data-type="3"][is-inverse=true][is-sticky=true][has-opacity=false] > .navbar-outside .header-navbar .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label:hover:before {
  border-color: var(--neutral-base, #3e455e);
}
.header[data-type="4"][is-inverse=true] > .navbar-outside .header-navbar .navbar-link.plugin-dropdown-menu {
  color: var(--neutral-base, #3e455e);
}
.header[data-type="4"][is-inverse=true] > .navbar-outside .header-navbar .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label {
  color: var(--neutral-base, #3e455e);
}
.header[data-type="4"][is-inverse=true] > .navbar-outside .header-navbar .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label:before {
  border-color: var(--neutral-base, #3e455e);
}
.header[data-type="4"][is-inverse=true] > .navbar-outside .header-navbar .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label:hover {
  color: var(--highlight-base, #137df7);
}
.header[data-type="4"][is-inverse=true] > .navbar-outside .header-navbar .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label:hover .fa {
  color: var(--highlight-base, #137df7);
}
.header[data-type="4"][is-inverse=true] > .navbar-outside .header-navbar .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label:hover:before {
  border-color: var(--highlight-base, #137df7);
}
.header[data-type="4"][is-inverse=true][is-sticky=true][has-opacity=false] > .navbar-outside .header-navbar .navbar-link.plugin-dropdown-menu {
  color: var(--color-white-base, white);
}
.header[data-type="4"][is-inverse=true][is-sticky=true][has-opacity=false] > .navbar-outside .header-navbar .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label {
  color: var(--color-white-base, white);
}
.header[data-type="4"][is-inverse=true][is-sticky=true][has-opacity=false] > .navbar-outside .header-navbar .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label:before {
  border-color: var(--color-white-base, white);
}
.header[data-type="4"][is-inverse=true][is-sticky=true][has-opacity=false] > .navbar-outside .header-navbar .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label:hover {
  color: var(--neutral-base, #3e455e);
}
.header[data-type="4"][is-inverse=true][is-sticky=true][has-opacity=false] > .navbar-outside .header-navbar .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label:hover .fa {
  color: var(--neutral-base, #3e455e);
}
.header[data-type="4"][is-inverse=true][is-sticky=true][has-opacity=false] > .navbar-outside .header-navbar .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label:hover:before {
  border-color: var(--neutral-base, #3e455e);
}
.header > .navbar-mobile .navbar-links .navbar-link.plugin-dropdown-menu {
  font-weight: 500;
  font-size: var(--font-size-18, 1.125em);
  color: var(--neutral-base, #3e455e);
  text-decoration: none;
  position: relative;
  word-break: break-word;
}
.header > .navbar-mobile .navbar-links .navbar-link.plugin-dropdown-menu:not(:first-child) {
  margin-top: 16px;
}
.header > .navbar-mobile .navbar-links .navbar-link.plugin-dropdown-menu.is-active {
  color: var(--highlight-base, #137df7);
}
.header > .navbar-mobile .navbar-links .plugin-dropdown-menu.plugin-navbar-dropdown:not(:first-child) {
  margin-top: 16px;
}
.header > .navbar-mobile .navbar-links .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-content {
  display: none;
  opacity: 0;
  padding-top: 16px;
  padding-left: 16px;
  transition: 0.2s ease-in-out;
}
.header > .navbar-mobile .navbar-links .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-content.dropdown-content-shown {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column;
      flex-flow: column;
  opacity: 1;
}
.header > .navbar-mobile .navbar-links .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label {
  font-weight: 500;
  font-size: var(--font-size-18, 1.125em);
  transition: 0.2s ease-in-out;
  color: var(--neutral-base, #3e455e);
  text-decoration: none;
  position: relative;
}
.header > .navbar-mobile .navbar-links .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label.is-open .fa {
  -ms-transform: rotate(180deg);
      transform: rotate(180deg);
}
.header > .navbar-mobile .navbar-links .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label .fa {
  transition: 0.2s ease-in-out;
}
.header > .navbar-mobile .navbar-links .plugin-dropdown-menu.plugin-navbar-dropdown .dropdown-label:not(:first-child) {
  margin-top: 16px;
}
.header > .navbar-mobile .navbar-links .plugin-dropdown-menu.plugin-navbar-dropdown .more-link {
  font-size: var(--font-size-18, 1.125em);
  color: var(--neutral-base, #3e455e);
  font-weight: 500;
  text-decoration: none;
  display: block;
  word-break: break-word;
  position: relative;
}
.header > .navbar-mobile .navbar-links .plugin-dropdown-menu.plugin-navbar-dropdown .more-link:not(:first-child) {
  margin-top: 16px;
}
.header > .navbar-mobile .navbar-links .plugin-dropdown-menu.plugin-navbar-dropdown .more-link.is-active {
  color: var(--highlight-base, #137df7);
}

.detail section .theme-box .theme-box-content .date.float-date {
  font-size: 1em;
  width: 50px;
}

#events .col-sm-4:nth-child(4n+4) {
  clear: left;
}

.header[has-translatebar=true] .translate {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.header[has-translatebar=true] .translate .goog-logo-link {
  display: none !important;
}
.header[has-translatebar=true] .translate .goog-te-gadget {
  color: transparent !important;
}
.header[has-translatebar=true] .translate .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.header[has-translatebar=true] .translate #google_translate_element {
  max-width: 150px;
}
.header[has-translatebar=true] .translate #google_translate_element .goog-te-gadget {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.header[has-translatebar=true] .translate #google_translate_element .goog-te-gadget.skiptranslate span {
  display: none;
}
.header[has-translatebar=true] .translate #google_translate_element .goog-te-gadget .goog-te-combo {
  background-color: transparent;
  border: none;
  font-family: "Roboto", sans-serif;
  font-size: 0.875rem;
  color: var(--neutral-base, #3e455e);
  font-weight: 400;
}
@media (max-width: 992px) {
  .header[has-translatebar=true] .translate #google_translate_element .goog-te-gadget .goog-te-combo {
    margin: 8px 0;
  }
}
.header[has-translatebar=true] .translate #google_translate_element .goog-te-gadget .goog-te-combo:focus-visible {
  border: 1px solid var(--highlight-base, #137df7);
}
.header[has-translatebar=true][data-type="1"] .header-bar {
  display: block;
}
.header[has-translatebar=true][data-type="1"] .header-bar .container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media (max-width: 992px) {
  .header[has-translatebar=true][data-type="1"] .header-bar .container .translate {
    margin-left: auto;
  }
}
@media (max-width: 992px) {
  .header[has-translatebar=true][data-type="1"] .header-bar .container .wrapper {
    display: none;
  }
}
.header[has-translatebar=true][data-type="2"] .translate-bar {
  background: var(--brand-dark, rgb(1.4, 32.2, 73.5));
  padding: 12px 0;
}
.header[has-translatebar=true][data-type="2"] .translate-bar .translate {
  width: 100%;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
@media (max-width: 992px) {
  .header[has-translatebar=true][data-type="2"] .translate-bar .translate {
    -ms-flex-pack: end;
        justify-content: flex-end;
  }
}
.header[has-translatebar=true][data-type="2"][is-inverse=true] .translate-bar {
  background: var(--neutral-transp-10, rgba(62, 69, 94, 0.1));
}
@media (max-width: 992px) {
  .header[has-translatebar=true][data-type="3"] > .header-content .wrapper {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }
}
@media (min-width: 992px) {
  .header[has-translatebar=true][data-type="3"] > .header-content .content-left {
    max-width: calc(100% - 500px);
  }
}
.header[has-translatebar=true][data-type="3"] > .header-content .content-right {
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  -ms-transform: translateX(11px);
      transform: translateX(11px);
}
@media (max-width: 992px) {
  .header[has-translatebar=true][data-type="3"] > .header-content .content-right:after {
    content: "";
    height: 100%;
    width: 110vh;
    position: absolute;
    background-color: var(--neutral-transp-5, rgba(62, 69, 94, 0.05));
    z-index: -1;
    right: -130px;
  }
}
.header[has-translatebar=true][data-type="3"] > .header-content .content-right .translate {
  margin-left: 0;
  -ms-flex-align: center;
      align-items: center;
  max-width: 190px;
}
.header[has-translatebar=true][data-type="3"] > .header-content .content-right .translate #google_translate_element .goog-te-gadget .goog-te-combo {
  margin: 0;
  min-height: 42px;
}
.header[has-translatebar=true][data-type="3"] > .header-content .content-right .button {
  white-space: nowrap;
}
@media (max-width: 992px) {
  .header[has-translatebar=true][data-type="3"] > .header-content .content-right .button {
    display: none;
  }
}
.header[has-translatebar=true][data-type="3"] .translate #google_translate_element .goog-te-gadget .goog-te-combo, .header[has-translatebar=true][data-type="4"] .translate #google_translate_element .goog-te-gadget .goog-te-combo {
  text-align: right;
}
.header[has-translatebar=true][data-type="4"] .translate-bar {
  background: var(--brand-dark, rgb(1.4, 32.2, 73.5));
  padding: 12px 0;
}
.header[has-translatebar=true][data-type="4"] .translate-bar .container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.header[has-translatebar=true][data-type="4"] .translate-bar .translate {
  -ms-flex-pack: start;
      justify-content: flex-start;
}
@media (max-width: 992px) {
  .header[has-translatebar=true][data-type="4"] .translate-bar .translate {
    -ms-flex-pack: end;
        justify-content: flex-end;
  }
}
.header[has-translatebar=true][data-type="4"][is-inverse=true] .translate-bar {
  background: var(--neutral-transp-10, rgba(62, 69, 94, 0.1));
}
.header[has-translatebar=true][is-inverse=false] .translate #google_translate_element .goog-te-combo {
  color: var(--color-white-base, white);
}
.header[has-translatebar=true][is-inverse=false] .translate #google_translate_element .goog-te-combo option {
  color: var(--neutral-base, #3e455e);
}
@media (max-width: 992px) {
  .header[has-translatebar=true][is-inverse=false][data-type="3"] > .header-content .content-right:after {
    background-color: var(--brand-dark, rgb(1.4, 32.2, 73.5));
  }
}
.header[has-translatebar=true][is-inverse=false][data-type="4"] > .navbar-outside .wrapper .content-right .button.is-inverse {
  border-color: var(--color-white-base, white);
  color: var(--color-white-base, white);
  margin-left: 16px;
}

.custom-content.ckeditor-content {
  line-height: 1.5;
  color: var(--neutral-base, #3e455e);
  font-family: var(--paragraph-font, "Roboto");
  font-weight: normal;
  font-size: 0.9em;
}
.custom-content.ckeditor-content table, .custom-content.ckeditor-content table > thead, .custom-content.ckeditor-content table > caption, .custom-content.ckeditor-content table > tbody, .custom-content.ckeditor-content table > thead > tr, .custom-content.ckeditor-content table > tbody > tr {
  line-height: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  margin-bottom: revert;
}
.custom-content.ckeditor-content p, .custom-content.ckeditor-content th, .custom-content.ckeditor-content td {
  line-height: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  margin-bottom: revert;
}
.custom-content.ckeditor-content p span, .custom-content.ckeditor-content p strong, .custom-content.ckeditor-content p em, .custom-content.ckeditor-content p u, .custom-content.ckeditor-content p s, .custom-content.ckeditor-content th span, .custom-content.ckeditor-content th strong, .custom-content.ckeditor-content th em, .custom-content.ckeditor-content th u, .custom-content.ckeditor-content th s, .custom-content.ckeditor-content td span, .custom-content.ckeditor-content td strong, .custom-content.ckeditor-content td em, .custom-content.ckeditor-content td u, .custom-content.ckeditor-content td s {
  line-height: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
}
.custom-content.ckeditor-content p span, .custom-content.ckeditor-content th span, .custom-content.ckeditor-content td span {
  margin-bottom: revert;
}
.custom-content.ckeditor-content p strong, .custom-content.ckeditor-content th strong, .custom-content.ckeditor-content td strong {
  font-weight: revert;
}
.custom-content.ckeditor-content table caption {
  caption-side: revert;
  text-align: revert;
}

.header-contact > .im-integration.header-contact-item, .navbar-content > .phone-contact > .im-integration.header-contact-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.header-contact > .im-integration.header-contact-item:not(:last-child), .navbar-content > .phone-contact > .im-integration.header-contact-item:not(:last-child) {
  margin-right: 8px;
}
.header-contact > .im-integration.header-contact-item:not(:last-child):after, .navbar-content > .phone-contact > .im-integration.header-contact-item:not(:last-child):after {
  content: "|";
  padding-left: 12px;
}

.instant-messenger-icon svg {
  fill: var(--color-white-base, white);
  display: block;
  height: 100%;
}
.instant-messenger-icon[imtype=messenger] svg {
  height: 88%;
}
.instant-messenger-icon[imtype=telegram] svg {
  height: 72%;
}

.summary-contact .summary-instant-messenger-link, .summary-content .summary-instant-messenger-link, .summary-contact-grid .summary-instant-messenger-link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.summary-contact .summary-instant-messenger-link a, .summary-content .summary-instant-messenger-link a, .summary-contact-grid .summary-instant-messenger-link a {
  color: var(--neutral-base, #3e455e);
}
.summary-contact .summary-instant-messenger-link .instant-messenger-icon svg, .summary-content .summary-instant-messenger-link .instant-messenger-icon svg, .summary-contact-grid .summary-instant-messenger-link .instant-messenger-icon svg {
  fill: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
  -ms-transform: translateX(-2px);
      transform: translateX(-2px);
}

.item-phone svg {
  fill: var(--neutral-base, #3e455e);
}
@media screen and (min-width: 992px) {
  .item-phone svg {
    fill: var(--color-white-base, white);
  }
  [data-type=gallery-header] .item-phone svg, [data-type=slider-header] .item-phone svg {
    fill: var(--neutral-base, #3e455e);
  }
}

.contactus-content .contactus-info > .im-integration.info-item a {
  color: var(--neutral-base, #3e455e);
}
.contactus-content .contactus-info > .im-integration.info-item .instant-messenger-icon svg {
  fill: var(--brand-base, #022e69);
}

.header .header-contact > .im-integration.header-contact-item a {
  color: var(--color-white-base, white);
}
.header .header-contact > .im-integration.header-contact-item .instant-messenger-icon svg {
  fill: var(--color-white-base, white);
}
.header[data-type="3"][is-inverse=true] .header-contact > .im-integration.header-contact-item .instant-messenger-icon svg {
  fill: var(--neutral-base, #3e455e);
}
.header .navbar-mobile > .navbar-content > .phone-contact > .im-integration.header-contact-item a {
  color: var(--neutral-base, #3e455e);
}
.header .navbar-mobile > .navbar-content > .phone-contact > .im-integration.header-contact-item .instant-messenger-icon svg {
  fill: var(--neutral-base, #3e455e);
}

.footer .footer-item-content > .im-integration.footer-info a, .footer .footer-contact > .im-integration.footer-info a {
  color: var(--color-white-base, white);
}
.footer .footer-item-content > .im-integration.footer-info .instant-messenger-icon svg, .footer .footer-contact > .im-integration.footer-info .instant-messenger-icon svg {
  fill: var(--color-white-base, white);
}
.footer[is-inverse=true] .footer-item-content > .im-integration.footer-info a, .footer[is-inverse=true] .footer-contact > .im-integration.footer-info a {
  color: var(--neutral-base, #3e455e);
}
.footer[is-inverse=true] .footer-item-content > .im-integration.footer-info .instant-messenger-icon svg, .footer[is-inverse=true] .footer-contact > .im-integration.footer-info .instant-messenger-icon svg {
  fill: var(--neutral-base, #3e455e);
}
.footer[data-type="3"] .footer-contact > .im-integration.footer-info.line-break {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  height: 0;
}
.footer[data-type="3"] .footer-contact > .im-integration.footer-info {
  display: -ms-flexbox;
  display: flex;
  margin: 0 8px;
}

[data-bg=brand] .instant-messenger-icon svg {
  fill: var(--brand-base, #022e69);
}

[data-bg=neutral] .instant-messenger-icon svg {
  fill: var(--neutral-transp-5, rgba(62, 69, 94, 0.05));
}

[data-bg=base] .instant-messenger-icon svg {
  fill: var(--color-white-base, white);
}

.instant-messenger-button {
  width: 50px;
  height: 50px;
  border-radius: 9999px;
  background: #7c7c7c;
  fill: white;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  text-align: center;
  position: fixed;
  transition: 0.2s ease-in-out;
  cursor: pointer;
  z-index: 500;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.instant-messenger-button[imtype=whatsapp] {
  background: #4dc247;
}
.instant-messenger-button[imtype=messenger] {
  background: #0078FF;
}
.instant-messenger-button[imtype=messenger] svg {
  width: 34px;
}
.instant-messenger-button[imtype=telegram] {
  background: #0088cc;
}
.instant-messenger-button[imtype=telegram] svg {
  width: 30px;
}
.instant-messenger-button[data-position=top-left] {
  top: 20px;
  left: 20px;
}
.instant-messenger-button[data-position=top-right] {
  top: 20px;
  right: 20px;
}
.instant-messenger-button[data-position=bottom-left] {
  bottom: 20px;
  left: 20px;
}
.instant-messenger-button[data-position=bottom-right] {
  bottom: 20px;
  right: 20px;
}
.instant-messenger-button:hover {
  box-shadow: 0 0 6px 4px rgba(0, 0, 0, 0.4);
}
.instant-messenger-button svg {
  width: 40px;
  height: 40px;
  display: block;
}

.pd-t .instant-messenger-button[data-position=top-left] {
  top: 60px;
}
.pd-t .instant-messenger-button[data-position=top-right] {
  top: 60px;
}

.summary-list:not([list-type=grid-view]) .summary-instant-messenger-link {
  margin-right: 18px;
}
.summary-list[list-type=grid-view] .summary-contact .summary-instant-messenger-link {
  -ms-flex-direction: column;
      flex-direction: column;
}
.summary-list[list-type=grid-view] .summary-contact .summary-instant-messenger-link .instant-messenger-icon {
  margin-right: 0;
}
.summary-list[list-type=grid-view] .summary-contact .summary-instant-messenger-link .instant-messenger-icon svg {
  -ms-transform: translateX(0);
      transform: translateX(0);
}
.summary-list[list-type=grid-view] .summary-content .summary-instant-messenger-link {
  -ms-flex-direction: column;
      flex-direction: column;
}
.summary-list[list-type=grid-view] .summary-content .summary-instant-messenger-link .instant-messenger-icon {
  margin-right: 0;
}
.summary-list[list-type=grid-view] .summary-content .summary-instant-messenger-link .instant-messenger-icon svg {
  -ms-transform: translateX(0);
      transform: translateX(0);
}
.summary-list[list-type=grid-view] .summary-contact-grid .summary-instant-messenger-link {
  -ms-flex-direction: column;
      flex-direction: column;
}
.summary-list[list-type=grid-view] .summary-contact-grid .summary-instant-messenger-link .instant-messenger-icon {
  margin-right: 0;
}
.summary-list[list-type=grid-view] .summary-contact-grid .summary-instant-messenger-link .instant-messenger-icon svg {
  -ms-transform: translateX(0);
      transform: translateX(0);
}

.property-details {
  margin-top: 48px;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  gap: 32px;
}
.property-details .property-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.property-details .property-item .property-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: baseline;
      align-items: baseline;
  gap: 2px;
  font-size: 14px;
}
.property-details .property-item .property-content .icon {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
  width: 20px;
  height: 20px;
  font-size: 14px;
}

.details-default > .details-header .details-general {
  width: 65%;
}
.details-default > .details-header.details-header-desktop .property-details, .details-default > .details-header.details-header-mobile .property-details, .details-default > .details-header[data-type=vertical-header] .property-details {
  margin-top: 16px;
  margin-bottom: 12px;
  color: white;
  z-index: 10;
  position: relative;
}
.details-default > .details-header.details-header-desktop .property-details .icon, .details-default > .details-header.details-header-mobile .property-details .icon, .details-default > .details-header[data-type=vertical-header] .property-details .icon {
  color: white;
}
.details-default > .details-header[data-type=simple-header] .details-general {
  width: 60%;
}
.details-default > .details-header.details-header-mobile .property-details {
  margin: 0;
  padding: 24px;
  -ms-flex-pack: center;
      justify-content: center;
}
.details-default > .details-header.details-header-mobile .property-details .property-prices {
  margin-bottom: 0;
}
.details-default > .details-header.details-header-mobile .property-details .property-prices .property-item {
  margin-bottom: 0;
}
.details-default > .details-header[data-type=vertical-header] .container .details-header-content .property-details {
  margin-top: 54px;
  margin-bottom: 0;
  -ms-flex-pack: center;
      justify-content: center;
}
.details-default > .details-header[data-type=profile-header] .container .details-header-content .property-details {
  z-index: 10;
  position: relative;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: -16px;
}
.details-default > .details-header[data-type=gallery-header] .details-header-content .property-details, .details-default > .details-header[data-type=slider-header] .details-header-content .property-details, .details-default > .details-header[data-type=vertical-header] .details-header-content .property-details, .details-default > .details-header[data-type=profile-header] .details-header-content .property-details {
  display: none;
}
@media (min-width: 992px) {
  .details-default > .details-header[data-type=gallery-header] .details-header-content .property-details, .details-default > .details-header[data-type=slider-header] .details-header-content .property-details, .details-default > .details-header[data-type=vertical-header] .details-header-content .property-details, .details-default > .details-header[data-type=profile-header] .details-header-content .property-details {
    display: -ms-flexbox;
    display: flex;
  }
}
.details-default > .details-header[data-type=gallery-header] .details-header-content .details-general .property-details, .details-default > .details-header[data-type=slider-header] .details-header-content .details-general .property-details, .details-default > .details-header[data-type=vertical-header] .details-header-content .details-general .property-details, .details-default > .details-header[data-type=profile-header] .details-header-content .details-general .property-details {
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 992px) {
  .details-default > .details-header[data-type=gallery-header] .details-header-content .details-general .property-details, .details-default > .details-header[data-type=slider-header] .details-header-content .details-general .property-details, .details-default > .details-header[data-type=vertical-header] .details-header-content .details-general .property-details, .details-default > .details-header[data-type=profile-header] .details-header-content .details-general .property-details {
    display: none;
  }
}
.details-default > .details-header[data-type=gallery-header] .details-header-content .details-contact .contact-item .icon .fa, .details-default > .details-header[data-type=slider-header] .details-header-content .details-contact .contact-item .icon .fa, .details-default > .details-header[data-type=vertical-header] .details-header-content .details-contact .contact-item .icon .fa, .details-default > .details-header[data-type=profile-header] .details-header-content .details-contact .contact-item .icon .fa {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}
.details-default > .details-header[data-type=gallery-header] .details-header-content .details-contact .contact-item.item-phone, .details-default > .details-header[data-type=slider-header] .details-header-content .details-contact .contact-item.item-phone, .details-default > .details-header[data-type=vertical-header] .details-header-content .details-contact .contact-item.item-phone, .details-default > .details-header[data-type=profile-header] .details-header-content .details-contact .contact-item.item-phone {
  -ms-flex-order: 2;
      order: 2;
}
@media (min-width: 992px) {
  .details-default > .details-header[data-type=gallery-header] .details-header-content .property-details, .details-default > .details-header[data-type=slider-header] .details-header-content .property-details, .details-default > .details-header[data-type=vertical-header] .details-header-content .property-details, .details-default > .details-header[data-type=profile-header] .details-header-content .property-details {
    margin-top: 0;
  }
}
.details-default > .details-header[data-type=gallery-header] .details-header-content .property-details, .details-default > .details-header[data-type=slider-header] .details-header-content .property-details, .details-default > .details-header[data-type=vertical-header] .details-header-content .property-details, .details-default > .details-header[data-type=profile-header] .details-header-content .property-details {
  margin-bottom: 48px;
}
@media (min-width: 992px) {
  .details-default > .details-header[data-type=gallery-header] .details-header-content .property-details .property-prices, .details-default > .details-header[data-type=slider-header] .details-header-content .property-details .property-prices, .details-default > .details-header[data-type=vertical-header] .details-header-content .property-details .property-prices, .details-default > .details-header[data-type=profile-header] .details-header-content .property-details .property-prices {
    width: auto;
  }
}
@media (max-width: 992px) {
  .details-default > .details-header[data-type=gallery-header] .details-header-content .property-details .property-prices, .details-default > .details-header[data-type=slider-header] .details-header-content .property-details .property-prices, .details-default > .details-header[data-type=vertical-header] .details-header-content .property-details .property-prices, .details-default > .details-header[data-type=profile-header] .details-header-content .property-details .property-prices {
    margin-bottom: 0;
  }
}
@media (max-width: 992px) {
  .details-default > .details-header[data-type=gallery-header] .details-header-content .property-details .property-prices .property-item, .details-default > .details-header[data-type=slider-header] .details-header-content .property-details .property-prices .property-item, .details-default > .details-header[data-type=vertical-header] .details-header-content .property-details .property-prices .property-item, .details-default > .details-header[data-type=profile-header] .details-header-content .property-details .property-prices .property-item {
    margin-bottom: 0;
  }
}
.details-default > .details-header[data-type=gallery-header] .details-header-content .property-details .property-prices .property-item .property-content, .details-default > .details-header[data-type=slider-header] .details-header-content .property-details .property-prices .property-item .property-content, .details-default > .details-header[data-type=vertical-header] .details-header-content .property-details .property-prices .property-item .property-content, .details-default > .details-header[data-type=profile-header] .details-header-content .property-details .property-prices .property-item .property-content {
  font-size: 24px;
}
@media (min-width: 992px) {
  .details-default > .details-header[data-type=gallery-header] .details-header-content .property-details .property-prices .property-item .property-content, .details-default > .details-header[data-type=slider-header] .details-header-content .property-details .property-prices .property-item .property-content, .details-default > .details-header[data-type=vertical-header] .details-header-content .property-details .property-prices .property-item .property-content, .details-default > .details-header[data-type=profile-header] .details-header-content .property-details .property-prices .property-item .property-content {
    font-size: 16px;
  }
}
.details-default > .details-header[data-type=gallery-header] .details-header-content .property-details .property-prices .property-item .property-content, .details-default > .details-header[data-type=slider-header] .details-header-content .property-details .property-prices .property-item .property-content, .details-default > .details-header[data-type=vertical-header] .details-header-content .property-details .property-prices .property-item .property-content, .details-default > .details-header[data-type=profile-header] .details-header-content .property-details .property-prices .property-item .property-content {
  font-weight: 800;
}
.details-default > .details-header[data-type=gallery-header] .details-header-content .property-details .property-item, .details-default > .details-header[data-type=slider-header] .details-header-content .property-details .property-item, .details-default > .details-header[data-type=vertical-header] .details-header-content .property-details .property-item, .details-default > .details-header[data-type=profile-header] .details-header-content .property-details .property-item {
  min-width: 80px;
}
@media (min-width: 992px) {
  .details-default > .details-header[data-type=gallery-header] .details-header-content .property-details .property-item, .details-default > .details-header[data-type=slider-header] .details-header-content .property-details .property-item, .details-default > .details-header[data-type=vertical-header] .details-header-content .property-details .property-item, .details-default > .details-header[data-type=profile-header] .details-header-content .property-details .property-item {
    min-width: 0;
  }
}
.details-default > .details-header[data-type=gallery-header] .details-header-content .property-details .property-item .property-content, .details-default > .details-header[data-type=slider-header] .details-header-content .property-details .property-item .property-content, .details-default > .details-header[data-type=vertical-header] .details-header-content .property-details .property-item .property-content, .details-default > .details-header[data-type=profile-header] .details-header-content .property-details .property-item .property-content {
  font-size: 16px;
}
.details-default > .details-header[data-type=gallery-header] .details-header-content .property-details .property-item .property-content .icon, .details-default > .details-header[data-type=slider-header] .details-header-content .property-details .property-item .property-content .icon, .details-default > .details-header[data-type=vertical-header] .details-header-content .property-details .property-item .property-content .icon, .details-default > .details-header[data-type=profile-header] .details-header-content .property-details .property-item .property-content .icon {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}
.details-default > .details-header[data-type=gallery-header] .details-header-content .property-details .property-label, .details-default > .details-header[data-type=slider-header] .details-header-content .property-details .property-label, .details-default > .details-header[data-type=vertical-header] .details-header-content .property-details .property-label, .details-default > .details-header[data-type=profile-header] .details-header-content .property-details .property-label {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}
@media (max-width: 992px) {
  .details-default > .details-header[data-type=gallery-header] .property-details, .details-default > .details-header[data-type=slider-header] .property-details, .details-default > .details-header[data-type=vertical-header] .property-details, .details-default > .details-header[data-type=profile-header] .property-details {
    -ms-flex-pack: center;
        justify-content: center;
  }
}
.details-default > .details-header[data-type=profile-header] .details-header-content .property-details {
  display: -ms-flexbox;
  display: flex;
}
.details-default > .details-header[data-type=profile-header] .details-header-content .details-general .property-details {
  display: -ms-flexbox;
  display: flex;
}
.details-default > .details-header[data-type=vertical-header] .details-header-content .details-contact .contact-item .icon .fa {
  color: var(--color-white-base, white);
}
.details-default > .details-header[data-type=vertical-header] .details-header-content .property-details .property-item .property-content .icon {
  color: var(--color-white-base, white);
}
.details-default > .details-header[data-type=vertical-header] .details-header-content .property-details .property-label {
  color: var(--color-white-base, white);
}

.details-header .property-details {
  gap: 0 32px;
}
.details-header .property-details .property-prices {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -ms-flex-pack: center;
      justify-content: center;
  margin-bottom: 18px;
}
@media (min-width: 992px) {
  .details-header .property-details .property-prices {
    -ms-flex-pack: start;
        justify-content: flex-start;
    margin-bottom: 8px;
  }
}
.details-header .property-details .property-prices .property-item {
  font-size: 16px;
}
.details-header .property-details .property-prices .property-item .property-content {
  font-size: 24px;
}
.details-header .property-details .property-item {
  font-weight: 400;
  margin-bottom: 16px;
}
.details-header .property-details .property-item .property-content {
  font-size: 16px;
  gap: 4px;
}
.details-header .property-details .property-item .property-content .icon {
  font-size: 18px;
}

.results-body .results-sidebar .sidebar-item .item-body .category-item.custom-item-datepicker .select2-container .select2-selection--single {
  height: 40px;
}
.results-body .results-sidebar .sidebar-item .item-body .category-item.custom-item-datepicker .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 38px;
}
.results-body .results-sidebar .sidebar-item .item-body .category-item.custom-item-datepicker .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 38px;
}
.results-body .results-sidebar .sidebar-item .item-body .category-item.custom-item-datepicker .attr {
  margin-left: -2px;
  margin-right: -2px;
  z-index: 100;
  position: relative;
}
.results-body .results-content .property-prices {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.results-body .results-content .summary-list[list-type=list-view] .property-details {
  margin-top: 24px;
  gap: 12px 24px;
}
.results-body .results-content .summary-list[list-type=list-view] .property-details .property-prices .property-item.price .property-content {
  font-size: 16px;
  font-weight: 500;
}
.results-body .results-content .summary-list[list-type=list-view] .property-details .property-prices .property-item.price .property-label {
  font-size: 12px;
  font-weight: 400;
}
.results-body .results-content .summary-list[list-type=list-view] .summary-card[summary-type="5"] .property-details {
  margin: 24px 0;
}
.results-body .results-content .summary-list[list-type=list-view] .summary-card[summary-type="6"] .property-details {
  -ms-flex-order: 5;
      order: 5;
}
.results-body .results-content .summary-list[list-type=list-view] .summary-card[summary-type="7"] .summary-footer.hidden-grid-view {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 40%;
}
.results-body .results-content .summary-list[list-type=grid-view] .property-details {
  max-width: 200px;
  margin: 24px auto 0 auto;
  gap: 8px 16px;
  -ms-flex-pack: center;
      justify-content: center;
}
.results-body .results-content .summary-list[list-type=grid-view] .property-details .property-prices {
  gap: 8px;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.results-body .results-content .summary-list[list-type=grid-view] .property-details .property-prices .property-item.price {
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-align: center;
      align-items: center;
  gap: 4px;
}
.results-body .results-content .summary-list[list-type=grid-view] .property-details .property-prices .property-item.price .property-content {
  font-size: 16px;
  font-weight: 500;
  -ms-flex-order: 2;
      order: 2;
}
.results-body .results-content .summary-list[list-type=grid-view] .property-details .property-prices .property-item.price .property-label {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
  font-size: 14px;
  font-weight: 400;
  -ms-flex-order: 1;
      order: 1;
}
.results-body .results-content .summary-list .summary-card .summary-content .summary-info .fa,
.results-body .results-content .summary-list .summary-card .summary-content .summary-address .fa {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}
.results-body .results-content .summary-list .summary-card .summary-content .property-details .property-content {
  font-size: 14px;
  font-weight: 500;
}
.results-body .results-content .summary-list .summary-card[summary-type="2"] .summary-picture img {
  height: 150px;
}
.results-body .results-content .summary-list .summary-card[summary-type="4"] .summary-picture img {
  height: 216px;
}
.results-body .results-content .summary-list .summary-card[summary-type="10"] .summary-picture img {
  height: 150px;
  min-height: 150px;
}

.cards-default .cards-list .card .content .property-details {
  gap: 8px;
  margin: 16px 0;
}
.cards-default .cards-list .card .content .property-details .property-item.price {
  margin: 0;
  width: 100%;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-align: center;
      align-items: center;
  gap: 4px;
}
.cards-default .cards-list .card .content .property-details .property-item.price .property-label {
  font-weight: 400;
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
  font-size: 16px;
}
.cards-default .cards-list .card .content .property-details .property-item.price .property-label:before {
  display: none;
}
.cards-default .cards-list .card .content .property-details .property-item.price .property-content {
  font-size: 20px;
  color: var(--neutral-base, #3e455e);
}
.cards-default .cards-list .card .content .property-details .property-item:before {
  display: none;
}
.cards-default[card-type=centralized-highlighted-card] .cards-list .card-centralized .content .property-details {
  margin-top: 20px;
  -ms-flex-align: center;
      align-items: center;
}
.cards-default[card-type=centralized-highlighted-card] .cards-list .card-centralized .content .property-details .property-item .property-label, .cards-default[card-type=centralized-highlighted-card] .cards-list .card-centralized .content .property-details.price .property-label {
  color: var(--color-white-base, white);
}
.cards-default[card-type=centralized-highlighted-card] .cards-list .card-centralized .content .property-details .property-item .property-content, .cards-default[card-type=centralized-highlighted-card] .cards-list .card-centralized .content .property-details.price .property-content {
  color: var(--color-white-base, white);
}
.cards-default[card-type=centralized-highlighted-card] .cards-list .card-centralized .content .property-details .property-item .property-content .icon, .cards-default[card-type=centralized-highlighted-card] .cards-list .card-centralized .content .property-details.price .property-content .icon {
  color: var(--color-white-base, white);
}
.cards-default[data-bg=brand] .cards-list .card .content .property-details .property-item .property-label, .cards-default[data-bg=brand] .cards-list .card .content .property-details.price .property-label {
  color: var(--color-white-base, white);
}
.cards-default[data-bg=brand] .cards-list .card .content .property-details .property-item .property-content, .cards-default[data-bg=brand] .cards-list .card .content .property-details.price .property-content {
  color: var(--color-white-base, white);
}
.cards-default[data-bg=brand] .cards-list .card .content .property-details .property-item .property-content .icon, .cards-default[data-bg=brand] .cards-list .card .content .property-details.price .property-content .icon {
  color: var(--color-white-base, white);
}

.hero-wrapper [data-type="4"] .wrapper {
  text-align: left;
}
.hero-wrapper [data-type="4"] .wrapper .hero-header {
  text-align: center;
}
.hero-wrapper [data-type="4"].hero-default[data-align=left] .wrapper .hero-header {
  text-align: left;
}
.hero-wrapper [data-type="4"].hero-default[data-align=right] .wrapper .hero-header {
  text-align: right;
}
@media screen and (min-width: 992px) {
  .hero-wrapper [data-type="4"] {
    top: 49%;
  }
}
.hero-wrapper [data-type="4"] .thin-strip-base#thin-strip-search {
  width: 100%;
}
.hero-wrapper [data-type="4"] .thin-strip-base#thin-strip-search .advanced-search .toogle-advanced-search {
  color: var(--color-white-base, white);
}
.hero-wrapper [data-type="4"] .thin-strip-base#thin-strip-search .advanced-search .filters-box-wrapper {
  position: absolute;
}

.thin-strip-base#thin-strip-search .content-form#realEstateHeaderSearchForm {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 992px) {
  .thin-strip-base#thin-strip-search .content-form#realEstateHeaderSearchForm .input-group {
    width: calc(50% - 95px);
  }
}
.thin-strip-base#thin-strip-search .content-form#realEstateHeaderSearchForm .input-group.status {
  width: 100%;
}
@media (min-width: 992px) {
  .thin-strip-base#thin-strip-search .content-form#realEstateHeaderSearchForm .input-group.status {
    margin-bottom: 18px;
  }
}
.thin-strip-base#thin-strip-search .content-form#realEstateHeaderSearchForm .input-group.status .option {
  position: relative;
  border-right: solid 1px var(--neutral-transp-5, rgba(62, 69, 94, 0.05));
}
.thin-strip-base#thin-strip-search .content-form#realEstateHeaderSearchForm .input-group.status .option:last-of-type {
  border-right: none;
}
.thin-strip-base#thin-strip-search .content-form#realEstateHeaderSearchForm .input-group.status .option:nth-of-type(1) label {
  border-radius: var(--border-radius-button, 3px) 0 0 var(--border-radius-button, 3px);
}
.thin-strip-base#thin-strip-search .content-form#realEstateHeaderSearchForm .input-group.status .option:nth-of-type(2) label {
  border-radius: 0;
}
.thin-strip-base#thin-strip-search .content-form#realEstateHeaderSearchForm .input-group.status .option:nth-of-type(3) label {
  border-radius: 0 var(--border-radius-button, 3px) var(--border-radius-button, 3px) 0;
}
.thin-strip-base#thin-strip-search .content-form#realEstateHeaderSearchForm .input-group.status input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: pointer;
}
.thin-strip-base#thin-strip-search .content-form#realEstateHeaderSearchForm .input-group.status input + label {
  background: var(--color-white-base, white);
}
.thin-strip-base#thin-strip-search .content-form#realEstateHeaderSearchForm .input-group.status input:checked + label {
  background: var(--highlight-base, #137df7);
  color: white;
}
.thin-strip-base#thin-strip-search .content-form#realEstateHeaderSearchForm .input-group.status label {
  position: relative;
  margin: 0;
}
.thin-strip-base#thin-strip-search .content-form#realEstateHeaderSearchForm .input-group.status + .input-group {
  margin-left: 0;
  border-left: none;
}
.thin-strip-base#thin-strip-search .content-form#realEstateHeaderSearchForm .input-group.category {
  position: relative;
}
.thin-strip-base#thin-strip-search .content-form#realEstateHeaderSearchForm .input-group.category .input-group-icon {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  height: 50px;
}
@media (max-width: 991px) and (min-width: 769px) {
  .thin-strip-base#thin-strip-search .content-form#realEstateHeaderSearchForm .input-group.category + .input-group {
    margin-left: 18px;
  }
}
.thin-strip-base#thin-strip-search .content-form#realEstateHeaderSearchForm .input-group .input {
  border-right: 1px solid var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  border-top: 1px solid var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  border-bottom: 1px solid var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
}
.thin-strip-base#thin-strip-search .content-form#realEstateHeaderSearchForm .input-group .select2-container {
  padding-left: 42px;
  width: 100% !important;
}
.thin-strip-base#thin-strip-search .content-form#realEstateHeaderSearchForm .input-group .input-group-icon {
  border-left: 1px solid var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  border-bottom: 1px solid var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  border-top: 1px solid var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
}
.thin-strip-base#thin-strip-search .content-form#realEstateHeaderSearchForm .input-group .select2-container--default .select2-selection--single {
  height: 50px;
  border-color: var(--neutral-transp-25, rgba(62, 69, 94, 0.25));
  border-radius: 0 var(--border-radius-button, 3px) var(--border-radius-button, 3px) 0;
}
.thin-strip-base#thin-strip-search .content-form#realEstateHeaderSearchForm .input-group .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 48px;
  padding-left: 24px;
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}
.thin-strip-base#thin-strip-search .content-form#realEstateHeaderSearchForm .input-group .select2-container--default .select2-selection--single .select2-selection__rendered.changed {
  color: var(--neutral-base, #3e455e);
}
.thin-strip-base#thin-strip-search .content-form#realEstateHeaderSearchForm .input-group .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 48px;
}
.thin-strip-base#thin-strip-search[data-bg=base] .content-form#realEstateHeaderSearchForm .input-group.status .option {
  border: solid 1px var(--neutral-transp-15, rgba(62, 69, 94, 0.15));
}
.thin-strip-base#thin-strip-search[data-bg=brand] .content-form#realEstateHeaderSearchForm .input-group.status label {
  color: var(--neutral-transp-75, rgba(62, 69, 94, 0.75));
}
.thin-strip-base#thin-strip-search[data-bg=brand] .content-form#realEstateHeaderSearchForm .input-group.status label:checked + label {
  border: 1px solid white;
  color: white;
}
.thin-strip-base#thin-strip-search[data-bg=brand] .content-form#realEstateHeaderSearchForm .input-group.status label:checked {
  color: var(--color-white-base, white);
}
.thin-strip-base#thin-strip-search[data-bg=brand] .advanced-search .toogle-advanced-search {
  color: var(--color-white-base, white);
}
.thin-strip-base#thin-strip-search .advanced-search {
  width: 100%;
  margin-top: 12px;
}
.thin-strip-base#thin-strip-search .advanced-search .toogle-advanced-search {
  font-size: 14px;
  font-weight: 500;
  color: var(--neutral-base, #3e455e);
  text-decoration: underline;
  transition: 0.2s;
}
.thin-strip-base#thin-strip-search .advanced-search .toogle-advanced-search:hover {
  opacity: 0.75;
}
.thin-strip-base#thin-strip-search .advanced-search .filters-box-wrapper {
  display: none;
}
.thin-strip-base#thin-strip-search .advanced-search .filters-box-wrapper .filters-box {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 54px;
  padding: 24px 24px 0 24px;
  border-radius: var(--border-radius-input, 3px);
  border: solid 1px #cfd0d7;
  background-color: #fff;
  gap: 0;
}
@media (min-width: 992px) {
  .thin-strip-base#thin-strip-search .advanced-search .filters-box-wrapper .filters-box {
    gap: 0 16px;
  }
}
.thin-strip-base#thin-strip-search .advanced-search .filters-box-wrapper .filters-box .fa-arrows-h {
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
}
.thin-strip-base#thin-strip-search .advanced-search .filters-box-wrapper .filters-box .form-group {
  position: relative;
  width: 100%;
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .thin-strip-base#thin-strip-search .advanced-search .filters-box-wrapper .filters-box .form-group {
    width: calc(33% - 16px);
  }
}
.thin-strip-base#thin-strip-search .advanced-search .filters-box-wrapper .filters-box .form-group.double-input {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.thin-strip-base#thin-strip-search .advanced-search .filters-box-wrapper .filters-box .form-group.double-input input:not([type=range]) {
  width: calc(50% - 8px);
  margin: 14px 8px 0 0;
}
.thin-strip-base#thin-strip-search .advanced-search .filters-box-wrapper .filters-box .form-group input:not([type=range]) {
  height: 48px;
  margin: 0;
  padding: 12px 16px;
  border-radius: 3px;
  border: solid 1px #cfd0d7;
  width: 100%;
}
@media (min-width: 992px) {
  .thin-strip-base#thin-strip-search .advanced-search .filters-box-wrapper .filters-box .form-group input:not([type=range]) {
    margin: 14px 8px 0 0;
  }
}
.thin-strip-base#thin-strip-search .advanced-search .filters-box-wrapper .filters-box .form-group input:not([type=range]):-ms-input-placeholder {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}
.thin-strip-base#thin-strip-search .advanced-search .filters-box-wrapper .filters-box .form-group input:not([type=range])::placeholder {
  color: var(--neutral-transp-50, rgba(62, 69, 94, 0.5));
}
.thin-strip-base#thin-strip-search .advanced-search .filters-box-wrapper .filters-box .form-group input.wicon {
  margin-top: 0;
  padding: 16px 12px 16px 50px;
}
.thin-strip-base#thin-strip-search .advanced-search .filters-box-wrapper .filters-box .form-group .fa.input-icon {
  color: var(--highlight-base, #137df7);
  position: absolute;
  left: 17px;
  bottom: 16px;
}
.thin-strip-base#thin-strip-search .advanced-search .filters-box-wrapper .filters-box .form-group .fa.input-icon.fa-bed {
  font-size: 18px;
}
.thin-strip-base#thin-strip-search .advanced-search .filters-box-wrapper .filters-box .form-group .fa.input-icon.fa-shower {
  font-size: 16px;
}
.thin-strip-base#thin-strip-search .advanced-search .filters-box-wrapper .filters-box .form-group .fa.input-icon.fa-car {
  font-size: 17px;
}
.thin-strip-base#thin-strip-search .advanced-search .filters-box-wrapper .filters-box .form-group .label-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 12px;
  width: 100%;
}
.thin-strip-base#thin-strip-search .advanced-search .filters-box-wrapper .filters-box .form-group .label-title label {
  font-size: 16px;
  margin-bottom: 0;
}
.thin-strip-base#thin-strip-search .advanced-search .filters-box-wrapper .filters-box .form-group .label-title .fa {
  color: var(--highlight-base, #137df7);
}
.thin-strip-base#thin-strip-search .advanced-search .filters-box-wrapper .filters-box .form-group .label-title.centralized {
  -ms-flex-pack: center;
      justify-content: center;
}
.thin-strip-base#thin-strip-search .advanced-search .filters-box-wrapper .filters-box .form-group .multi-range-value {
  margin-top: 8px;
  width: 100%;
  text-align: center;
}

.multi-range-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
}
.multi-range-wrapper .multi-range {
  position: relative;
  height: 20px;
  display: block;
  margin-top: 12px;
  padding-top: 12px;
  width: 100%;
}
.multi-range-wrapper input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 16px;
  height: 16px;
  background-color: #4a4a4a;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  position: relative;
  transition: 0.2s;
}
.multi-range-wrapper input[type=range] {
  appearance: none;
  height: 2px;
  width: 100%;
  position: absolute;
  background-color: #C6C6C6;
  pointer-events: none;
}
.multi-range-wrapper #fromSlider {
  height: 0;
  z-index: 1;
}

.tailored-map #map_canvas {
  height: 470px !important;
  width: 100% !important;
  margin: 0;
  display: block;
}
@media (max-width: 458px) {
  .tailored-map #map_canvas {
    height: 350px;
  }
}

/* ARQUIVOS DE MODSTORES */
/* ARQUIVOS DE PLUGINS */
/*!
 * Datetimepicker for Bootstrap 3
 * version : 4.17.47
 * https://github.com/Eonasdan/bootstrap-datetimepicker/
 */
.bootstrap-datetimepicker-widget {
  list-style: none;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
  display: block;
  margin: 2px 0;
  padding: 4px;
  width: 19em;
}

@media (min-width: 768px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
@media (min-width: 992px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
@media (min-width: 1200px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
.bootstrap-datetimepicker-widget.dropdown-menu:before,
.bootstrap-datetimepicker-widget.dropdown-menu:after {
  content: "";
  display: inline-block;
  position: absolute;
}

.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  top: -7px;
  left: 7px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  top: -6px;
  left: 8px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.top:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #ccc;
  border-top-color: rgba(0, 0, 0, 0.2);
  bottom: -7px;
  left: 6px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.top:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid white;
  bottom: -6px;
  left: 7px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before {
  left: auto;
  right: 6px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after {
  left: auto;
  right: 7px;
}

.bootstrap-datetimepicker-widget .list-unstyled {
  margin: 0;
}

.bootstrap-datetimepicker-widget a[data-action] {
  padding: 6px 0;
}

.bootstrap-datetimepicker-widget a[data-action]:active {
  box-shadow: none;
}

.bootstrap-datetimepicker-widget .timepicker-hour,
.bootstrap-datetimepicker-widget .timepicker-minute,
.bootstrap-datetimepicker-widget .timepicker-second {
  width: 54px;
  font-weight: bold;
  font-size: 1.2em;
  margin: 0;
}

.bootstrap-datetimepicker-widget button[data-action] {
  padding: 6px;
}

.bootstrap-datetimepicker-widget .btn[data-action=incrementHours]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Increment Hours";
}

.bootstrap-datetimepicker-widget .btn[data-action=incrementMinutes]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Increment Minutes";
}

.bootstrap-datetimepicker-widget .btn[data-action=decrementHours]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Decrement Hours";
}

.bootstrap-datetimepicker-widget .btn[data-action=decrementMinutes]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Decrement Minutes";
}

.bootstrap-datetimepicker-widget .btn[data-action=showHours]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Show Hours";
}

.bootstrap-datetimepicker-widget .btn[data-action=showMinutes]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Show Minutes";
}

.bootstrap-datetimepicker-widget .btn[data-action=togglePeriod]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Toggle AM/PM";
}

.bootstrap-datetimepicker-widget .btn[data-action=clear]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Clear the picker";
}

.bootstrap-datetimepicker-widget .btn[data-action=today]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Set the date to today";
}

.bootstrap-datetimepicker-widget .picker-switch {
  text-align: center;
}

.bootstrap-datetimepicker-widget .picker-switch::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Toggle Date and Time Screens";
}

.bootstrap-datetimepicker-widget .picker-switch td {
  padding: 0;
  margin: 0;
  height: auto;
  width: auto;
  line-height: inherit;
}

.bootstrap-datetimepicker-widget .picker-switch td span {
  line-height: 2.5;
  height: 2.5em;
  width: 100%;
}

.bootstrap-datetimepicker-widget table {
  width: 100%;
  margin: 0;
}

.bootstrap-datetimepicker-widget table td,
.bootstrap-datetimepicker-widget table th {
  text-align: center;
  border-radius: 4px;
}

.bootstrap-datetimepicker-widget table th {
  height: 20px;
  line-height: 20px;
  width: 20px;
}

.bootstrap-datetimepicker-widget table th.picker-switch {
  width: 145px;
}

.bootstrap-datetimepicker-widget table th.disabled,
.bootstrap-datetimepicker-widget table th.disabled:hover {
  background: none;
  color: #777777;
  cursor: not-allowed;
}

.bootstrap-datetimepicker-widget table th.prev::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Previous Month";
}

.bootstrap-datetimepicker-widget table th.next::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Next Month";
}

.bootstrap-datetimepicker-widget table thead tr:first-child th {
  cursor: pointer;
}

.bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
  background: #eeeeee;
}

.bootstrap-datetimepicker-widget table td {
  height: 54px;
  line-height: 54px;
  width: 54px;
}

.bootstrap-datetimepicker-widget table td.cw {
  font-size: 0.8em;
  height: 20px;
  line-height: 20px;
  color: #777777;
}

.bootstrap-datetimepicker-widget table td.day {
  height: 20px;
  line-height: 20px;
  width: 20px;
}

.bootstrap-datetimepicker-widget table td.day:hover,
.bootstrap-datetimepicker-widget table td.hour:hover,
.bootstrap-datetimepicker-widget table td.minute:hover,
.bootstrap-datetimepicker-widget table td.second:hover {
  background: #eeeeee;
  cursor: pointer;
}

.bootstrap-datetimepicker-widget table td.old,
.bootstrap-datetimepicker-widget table td.new {
  color: #777777;
}

.bootstrap-datetimepicker-widget table td.today {
  position: relative;
}

.bootstrap-datetimepicker-widget table td.today:before {
  content: "";
  display: inline-block;
  border: solid transparent;
  border-width: 0 0 7px 7px;
  border-bottom-color: #337ab7;
  border-top-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 4px;
  right: 4px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
  background-color: #337ab7;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.bootstrap-datetimepicker-widget table td.active.today:before {
  border-bottom-color: #fff;
}

.bootstrap-datetimepicker-widget table td.disabled,
.bootstrap-datetimepicker-widget table td.disabled:hover {
  background: none;
  color: #777777;
  cursor: not-allowed;
}

.bootstrap-datetimepicker-widget table td span {
  display: inline-block;
  width: 54px;
  height: 54px;
  line-height: 54px;
  margin: 2px 1.5px;
  cursor: pointer;
  border-radius: 4px;
}

.bootstrap-datetimepicker-widget table td span:hover {
  background: #eeeeee;
}

.bootstrap-datetimepicker-widget table td span.active {
  background-color: #337ab7;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.bootstrap-datetimepicker-widget table td span.old {
  color: #777777;
}

.bootstrap-datetimepicker-widget table td span.disabled,
.bootstrap-datetimepicker-widget table td span.disabled:hover {
  background: none;
  color: #777777;
  cursor: not-allowed;
}

.bootstrap-datetimepicker-widget.usetwentyfour td.hour {
  height: 27px;
  line-height: 27px;
}

.bootstrap-datetimepicker-widget.wider {
  width: 21em;
}

.bootstrap-datetimepicker-widget .datepicker-decades .decade {
  line-height: 1.8em !important;
}

.input-group.date .input-group-addon {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ARQUIVOS DE PLUGINS */
/* Custom */
.cards-default .cards-list .card .content .card-operation-type,
.cards-default .cards-list .card .content .card-ticket .ticket-quantity:first-child,
.results-body .results-content .summary-list .summary-item .summary-additional .summary-operation-type,
.results-body .results-content .summary-list .summary-item .summary-additional .summary-ticket .ticket-quantity:first-child {
  margin: 16px 0 0;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 8px;
}

.results-body .results-content .summary-list .summary-item .summary-additional .summary-ticket .ticket-quantity:first-child {
  display: -ms-flexbox;
  display: flex;
}

.results-body .results-content .summary-list .summary-item .summary-additional .summary-operation-type,
.details-default > .detail-body .detail-body-content .tab-content .tab-item .summary-ticket {
  margin: 0 0 16px;
}

.cards-default .cards-list .card .content .card-operation-type .button,
.cards-default .cards-list .card .content .card-ticket .button,
.results-body .results-content .summary-list .summary-item .summary-additional .summary-operation-type .button,
.results-body .results-content .summary-list .summary-item .summary-additional .summary-ticket .ticket-quantity .button {
  text-align: center;
  padding: 8px 24px;
  font-size: 0.875em;
}

.cards-default .cards-list .card .content .card-operation-type .paragraph,
.cards-default .cards-list .card .content .card-ticket .ticket-quantity .ticket-quantity,
.results-body .results-content .summary-list .summary-item .summary-additional .summary-operation-type .paragraph,
.details-default > .detail-body .detail-body-content .tab-content .tab-item .summary-ticket .ticket-quantity,
.results-body .results-content .summary-list .summary-item .summary-additional .summary-ticket .ticket-quantity .ticket-quantity {
  font-size: 0.75em;
  background: rgba(0, 0, 0, 0.1);
  padding: 3px 12px;
  border-radius: 3px;
}

.results-body .results-content .summary-list .summary-item .summary-additional .summary-operation-type .paragraph,
.details-default > .detail-body .detail-body-content .tab-content .tab-item .summary-ticket .ticket-quantity,
.cards-list .card .content .card-ticket .ticket-quantity .ticket-quantity,
.results-body .results-content .summary-list .summary-item .summary-additional .summary-ticket .ticket-quantity .ticket-quantity {
  text-align: center;
}

.cards-default[data-bg=brand] .cards-list .card .content .card-operation-type .paragraph,
.cards-default[data-bg=brand] .cards-list .card .content .card-ticket .ticket-quantity .ticket-quantity,
.cards-default[data-bg=brand] .cards-list .card .content .card-ticket .ticket-quantity .ticket-sales-end-date {
  color: white;
}

.details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-offer-time .tab-item-content:first-child,
.details-default > .detail-body .detail-body-content .tab-content .tab-item .summary-ticket {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 16px;
}

.details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-offer-time .tab-item-content:first-child .button {
  text-align: center;
}

.details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-offer-time .tab-item-content:first-child .paragraph {
  font-size: 0.75em;
  background: rgba(0, 0, 0, 0.1);
  padding: 3px 12px;
  border-radius: 3px;
  text-align: center;
}

.details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-offer-time .tab-item-content:first-child .deal-disclaimer,
.details-default > .detail-body .detail-body-content .tab-content .tab-item .summary-ticket .ticket-disclaimer,
.details-default > .detail-body .detail-body-content .tab-content .tab-item .summary-ticket .ticket-disclaimer-2 {
  font-size: 0.75em;
}

.details-default.details-events > .details-header .details-general .details-info .details-actions .button {
  max-width: inherit;
}

.details-default.details-events > .details-header .details-general .details-info .details-actions {
  -ms-flex-align: start;
      align-items: flex-start;
  gap: 16px;
  -ms-flex-pack: start;
      justify-content: flex-start;
}

.details-default > .detail-body .detail-body-content .tab-content .tab-item .summary-ticket .tickets-sales-finished,
.details-default > .detail-body .detail-body-content .tab-content .tab-item .summary-ticket .tickets-sold-out,
.results-body .results-content .summary-list .summary-item .summary-additional .summary-ticket .tickets-sold-out,
.results-body .results-content .summary-list .summary-item .summary-additional .summary-ticket .tickets-sales-finished,
.cards-default .cards-list .card .content .card-ticket .tickets-sold-out,
.cards-default .cards-list .card .content .card-ticket .tickets-sales-finished {
  line-height: 1;
  padding: 12px;
  border-radius: var(--border-radius, 3px);
  border: 1px solid transparent;
  margin-bottom: 16px;
  background: var(--warning-dark, rgb(176.4, 58.1, 58.1));
  color: white;
  text-align: center;
  text-transform: capitalize;
  font-size: 0.875em;
  font-weight: 300;
}

.results-body .results-content .summary-list .summary-item .summary-additional .summary-ticket .tickets-sold-out,
.results-body .results-content .summary-list .summary-item .summary-additional .summary-ticket .tickets-sales-finished,
.cards-default .cards-list .card .content .card-ticket .tickets-sold-out,
.cards-default .cards-list .card .content .card-ticket .tickets-sales-finished {
  font-size: 0.75em;
  padding: 6px;
}

.cards-default .cards-list .card .content .card-ticket .tickets-sold-out,
.cards-default .cards-list .card .content .card-ticket .tickets-sales-finished {
  margin-top: 9px;
}

.cards-default .cards-list .card .content .card-ticket {
  display: -ms-flexbox;
  display: flex;
}

.cards-list .card .content .card-ticket .ticket-quantity .ticket-sales-end-date,
.results-body .results-content .summary-list .summary-item .summary-additional .summary-ticket .ticket-quantity .ticket-sales-end-date {
  font-size: 0.75em;
  border-bottom: 1px solid rgba(151, 151, 151, 0.62);
  padding-bottom: 18px;
  margin: 9px 0 18px 0;
  text-align: center;
}

.cards-list .card .content .card-ticket .ticket-quantity .ticket-sales-end-date {
  border: none;
  padding: 0;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .details-default.details-events > .details-header.details-header-mobile .details-actions .button {
    padding: 8px 24px;
    font-size: 0.875em;
  }
}
.ticket-selection-form .button,
.deal-selection-form .button {
  padding: 10px;
}

.ticket-selection-table,
.deal-selection-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.ticket-selection-table th, .deal-selection-table th,
.ticket-selection-table td, .deal-selection-table td {
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: top;
}

.ticket-selection-table th, .deal-selection-table th {
  text-align: left;
  font-weight: 600;
}

.ticket-selection-table .ticket-type,
.deal-selection-table .deal-name {
  font-weight: 500;
  font-size: 1.1rem;
}

.ticket-selection-table .ticket-disclaimer p,
.deal-selection-table .deal-disclaimer p {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
}

.ticket-selection-table .ticket-sales-start-date {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  color: #888;
}

.ticket-selection-table .ticket-sales-end-date {
  font-size: 0.85rem;
  color: #888;
}

.ticket-selection-table .ticket-quantity select,
.deal-selection-table .ticket-quantity select {
  width: 60px;
  padding: 0.3rem;
  font-size: 1rem;
}

.ticket-selection-table .ticket-price,
.deal-selection-table .ticket-price,
.ticket-selection-table .total-price-value,
.deal-selection-table .total-price-value {
  font-weight: bold;
}

.ticket-selection-table .total-price-label,
.deal-selection-table .total-price-label {
  text-align: right;
  font-weight: 600;
  white-space: nowrap;
}

.ticket-selection-table .select2-container,
.deal-selection-table .select2-container {
  min-width: 60px;
}

.purchase-disclaimer {
  font-size: 0.85rem;
  color: #999;
  margin: 1rem 0;
}

.checkout-wrapper .order-info .order-info-body .table td {
  text-align: right;
}

.checkout-wrapper .order-info .order-info-body table {
  font-size: 0.875rem;
}

.profile-page .profile-user-description .purchases {
  margin: 32px 0 0;
}

.profile-page .profile-user-description .purchases .action-buttons .button {
  margin: 9px 0 0;
  width: 100%;
  text-align: center;
}

.profile-page .orders-wrapper,
.sponsor-page .orders-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1.5rem;
}

.profile-page .order-card,
.sponsor-page .order-card {
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 1rem;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.profile-page .order-info,
.sponsor-page .order-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.profile-page .order-items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1rem;
}

.profile-page .order-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  border: 1px solid #eee;
  padding: 0.75rem;
  border-radius: 8px;
  background-color: #f9f9f9;
}

.profile-page .item-details {
  -ms-flex: 2;
      flex: 2;
}

.profile-page .item-actions {
  -ms-flex: 2;
      flex: 2;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -ms-flex-pack: end;
      justify-content: flex-end;
}

.sponsor-page .order-items-card,
.sponsor-page .order-transaction-card,
.profile-page .order-items-card,
.profile-page .order-transaction-card {
  margin-top: 16px;
}

.sponsor-page .order-details {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1rem;
}

.profile-page .item-line,
.sponsor-page .item-line {
  font-size: 0.9rem;
}

.profile-page .pagination-wrapper,
.sponsor-page .pagination-wrapper {
  text-align: center;
  margin-top: 30px;
}

.profile-page .pagination,
.sponsor-page .pagination {
  display: inline-block;
  list-style: none;
  padding: 0;
}

.profile-page .pagination li,
.sponsor-page .pagination li {
  display: inline;
  margin: 0 5px;
}

.profile-page .pagination a,
.sponsor-page .pagination a {
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  color: #333;
}

.profile-page .pagination .active a,
.sponsor-page .pagination .active a {
  background-color: var(--highlight-base, #f15a25);
  color: white;
  border-color: var(--highlight-base, #f15a25);
}

.profile-page .profile-header h2,
.sponsor-page .sponsor-header h2 {
  margin-left: 16px;
}

.members-page .members-panel .panel-body {
  padding-left: 16px;
}

.ticket-selection-table.responsive-table,
.deal-selection-table.responsive-table {
  width: 100%;
  border-collapse: collapse;
}

.ticket-selection-table.responsive-table thead,
.deal-selection-table.responsive-table thead {
  display: none;
}

.ticket-selection-table.responsive-table tr,
.deal-selection-table.responsive-table tr {
  display: block;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px;
}

.ticket-selection-table.responsive-table td,
.deal-selection-table.responsive-table td {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 8px 10px;
  border-bottom: 1px solid #eee;
  -ms-flex-direction: column;
      flex-direction: column;
}

.ticket-selection-table.responsive-table td:last-child,
.deal-selection-table.responsive-table td:last-child {
  border-bottom: none;
}

.ticket-selection-table.responsive-table td::before,
.deal-selection-table.responsive-table td::before {
  content: attr(data-label);
  font-weight: bold;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

@media (min-width: 768px) {
  .ticket-selection-table.responsive-table,
  .deal-selection-table.responsive-table {
    display: table;
  }
  .ticket-selection-table.responsive-table thead,
  .deal-selection-table.responsive-table thead {
    display: table-header-group;
  }
  .ticket-selection-table.responsive-table tr,
  .deal-selection-table.responsive-table tr {
    display: table-row;
    border: none;
    padding: 0;
  }
  .ticket-selection-table.responsive-table td,
  .deal-selection-table.responsive-table td {
    display: table-cell;
    border-bottom: none;
    padding: 12px;
  }
  .ticket-selection-table.responsive-table td::before,
  .deal-selection-table.responsive-table td::before {
    content: none;
  }
}