﻿/*! Flickity v2.2.1
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;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  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;
  -webkit-box-shadow: 0 0 0 5px #19F;
          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 */
  -webkit-transform: translateY(-50%);
      -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 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle; }
  .select2-container .select2-selection--single {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 28px;
    -moz-user-select: none;
     -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 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    -moz-user-select: none;
     -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 {
      -webkit-box-sizing: border-box;
              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;
  -webkit-box-sizing: border-box;
          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;
  -moz-user-select: none;
   -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%;
    -webkit-box-sizing: border-box;
            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;
  -webkit-clip-path: inset(50%) !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 {
    -webkit-box-sizing: border-box;
            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;
  -webkit-box-shadow: none;
          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: -webkit-gradient(linear, left top, left bottom, color-stop(50%, white), to(#eeeeee));
  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: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eeeeee), to(#cccccc));
    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: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(50%, #eeeeee));
  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: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eeeeee), to(white));
  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;
  -webkit-box-shadow: none;
          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.9.0 (https://github.com/uxsolutions/bootstrap-datepicker)
 *
 * Licensed under the Apache License v2.0 (http://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;
  -moz-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;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  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;
}
body.compensate-for-scrollbar {
    overflow: hidden;
}

.fancybox-active {
    height: auto;
}

.fancybox-is-hidden {
    left: -9999px;
    margin: 0;
    position: absolute !important;
    top: -9999px;
    visibility: hidden;
}

.fancybox-container {
    -webkit-backface-visibility: hidden;
    height: 100%;
    left: 0;
    outline: none;
    position: fixed;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    width: 100%;
    z-index: 99992;
}

.fancybox-container * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.fancybox-outer {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
}

.fancybox-bg {
    background: rgb(30, 30, 30);
    opacity: 0;
    -webkit-transition-duration: inherit;
            transition-duration: inherit;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-timing-function: cubic-bezier(.47, 0, .74, .71);
            transition-timing-function: cubic-bezier(.47, 0, .74, .71);
}

.fancybox-is-open .fancybox-bg {
    opacity: .9;
    -webkit-transition-timing-function: cubic-bezier(.22, .61, .36, 1);
            transition-timing-function: cubic-bezier(.22, .61, .36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
    direction: ltr;
    opacity: 0;
    position: absolute;
    -webkit-transition: opacity .25s ease, visibility 0s ease .25s;
    transition: opacity .25s ease, visibility 0s ease .25s;
    visibility: hidden;
    z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
    opacity: 1;
    -webkit-transition: opacity .25s ease 0s, visibility 0s ease 0s;
    transition: opacity .25s ease 0s, visibility 0s ease 0s;
    visibility: visible;
}

.fancybox-infobar {
    color: #ccc;
    font-size: 13px;
    -webkit-font-smoothing: subpixel-antialiased;
    height: 44px;
    left: 0;
    line-height: 44px;
    min-width: 44px;
    mix-blend-mode: difference;
    padding: 0 10px;
    pointer-events: none;
    top: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.fancybox-toolbar {
    right: 0;
    top: 0;
}

.fancybox-stage {
    direction: ltr;
    overflow: visible;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
    overflow: hidden;
}

.fancybox-slide {
    -webkit-backface-visibility: hidden;
    /* Using without prefix would break IE11 */
    display: none;
    height: 100%;
    left: 0;
    outline: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: absolute;
    text-align: center;
    top: 0;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    white-space: normal;
    width: 100%;
    z-index: 99994;
}

.fancybox-slide::before {
    content: '';
    display: inline-block;
    font-size: 0;
    height: 100%;
    vertical-align: middle;
    width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
    display: block;
}

.fancybox-slide--image {
    overflow: hidden;
    padding: 44px 0;
}

.fancybox-slide--image::before {
    display: none;
}

.fancybox-slide--html {
    padding: 6px;
}

.fancybox-content {
    background: #fff;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: relative;
    text-align: left;
    vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
    -webkit-animation-timing-function: cubic-bezier(.5, 0, .14, 1);
            animation-timing-function: cubic-bezier(.5, 0, .14, 1);
    -webkit-backface-visibility: hidden;
    background: transparent;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    left: 0;
    max-width: none;
    overflow: visible;
    padding: 0;
    position: absolute;
    top: 0;
    -ms-transform-origin: top left;
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
    cursor: -webkit-grab;
    cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.fancybox-container [data-selectable='true'] {
    cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
    background: transparent;
    border: 0;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
}

.fancybox-spaceball {
    z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
    height: 100%;
    overflow: visible;
    padding: 0;
    width: 100%;
}

.fancybox-slide--video .fancybox-content {
    background: #000;
}

.fancybox-slide--map .fancybox-content {
    background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
    background: #fff;
}

.fancybox-video,
.fancybox-iframe {
    background: transparent;
    border: 0;
    display: block;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
    left: 0;
    position: absolute;
    top: 0;
}

.fancybox-error {
    background: #fff;
    cursor: default;
    max-width: 400px;
    padding: 40px;
    width: 100%;
}

.fancybox-error p {
    color: #444;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding: 0;
}

/* Buttons */

.fancybox-button {
    background: rgba(30, 30, 30, .6);
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    cursor: pointer;
    display: inline-block;
    height: 44px;
    margin: 0;
    padding: 10px;
    position: relative;
    -webkit-transition: color .2s;
    transition: color .2s;
    vertical-align: top;
    visibility: inherit;
    width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
    color: #ccc;
}

.fancybox-button:hover {
    color: #fff;
}

.fancybox-button:focus {
    outline: none;
}

.fancybox-button.fancybox-focus {
    outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
    color: #888;
    cursor: default;
    outline: none;
}

/* Fix IE11 */
.fancybox-button div {
    height: 100%;
}

.fancybox-button svg {
    display: block;
    height: 100%;
    overflow: visible;
    position: relative;
    width: 100%;
}

.fancybox-button svg path {
    fill: currentColor;
    stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
    display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
    display: none;
}

.fancybox-progress {
    background: #ff5268;
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -ms-transform: scaleX(0);
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -ms-transform-origin: 0;
    -webkit-transform-origin: 0;
            transform-origin: 0;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-timing-function: linear;
            transition-timing-function: linear;
    z-index: 99998;
}

/* Close button on the top right corner of html content */

.fancybox-close-small {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #ccc;
    cursor: pointer;
    opacity: .8;
    padding: 8px;
    position: absolute;
    right: -12px;
    top: -44px;
    z-index: 401;
}

.fancybox-close-small:hover {
    color: #fff;
    opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
    color: currentColor;
    padding: 10px;
    right: 0;
    top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
    overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
    display: none;
}

/* Navigation arrows */

.fancybox-navigation .fancybox-button {
    background-clip: content-box;
    height: 100px;
    opacity: 0;
    position: absolute;
    top: -webkit-calc(50% - 50px);
    top: calc(50% - 50px);
    width: 70px;
}

.fancybox-navigation .fancybox-button div {
    padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
    left: 0;
    left: env(safe-area-inset-left);
    padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
    padding: 31px 6px 31px 26px;
    right: 0;
    right: env(safe-area-inset-right);
}

/* Caption */

.fancybox-caption {
    background: -webkit-gradient(linear,
        left bottom, left top,
        from(rgba(0, 0, 0, .85)),
        color-stop(50%, rgba(0, 0, 0, .3)),
        color-stop(65%, rgba(0, 0, 0, .15)),
        color-stop(75.5%, rgba(0, 0, 0, .075)),
        color-stop(82.85%, rgba(0, 0, 0, .037)),
        color-stop(88%, rgba(0, 0, 0, .019)),
        to(rgba(0, 0, 0, 0)));
    background: linear-gradient(to top,
        rgba(0, 0, 0, .85) 0%,
        rgba(0, 0, 0, .3) 50%,
        rgba(0, 0, 0, .15) 65%,
        rgba(0, 0, 0, .075) 75.5%,
        rgba(0, 0, 0, .037) 82.85%,
        rgba(0, 0, 0, .019) 88%,
        rgba(0, 0, 0, 0) 100%);
    bottom: 0;
    color: #eee;
    font-size: 14px;
    font-weight: 400;
    left: 0;
    line-height: 1.5;
    padding: 75px 44px 25px 44px;
    pointer-events: none;
    right: 0;
    text-align: center;
    z-index: 99996;
}

@supports (padding: max(0px)) {
    .fancybox-caption {
        padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
    }
}

.fancybox-caption--separate {
    margin-top: -50px;
}

.fancybox-caption__body {
    max-height: 50vh;
    overflow: auto;
    pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
    color: #ccc;
    text-decoration: none;
}

.fancybox-caption a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Loading indicator */

.fancybox-loading {
    -webkit-animation: fancybox-rotate 1s linear infinite;
            animation: fancybox-rotate 1s linear infinite;
    background: transparent;
    border: 4px solid #888;
    border-bottom-color: #fff;
    border-radius: 50%;
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 99999;
}

@-webkit-keyframes fancybox-rotate {
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes fancybox-rotate {
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

/* Transition effects */

.fancybox-animated {
    -webkit-transition-timing-function: cubic-bezier(0, 0, .25, 1);
            transition-timing-function: cubic-bezier(0, 0, .25, 1);
}

/* transitionEffect: slide */

.fancybox-fx-slide.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */

.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
            transition-timing-function: cubic-bezier(.19, 1, .22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
    opacity: 1;
}

/* transitionEffect: zoom-in-out */

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
            transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: scale3d(.5, .5, .5);
            transform: scale3d(.5, .5, .5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */

.fancybox-fx-rotate.fancybox-slide--previous {
    opacity: 0;
    -ms-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
    opacity: 0;
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
    opacity: 1;
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}

/* transitionEffect: circular */

.fancybox-fx-circular.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
            transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
            transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
            transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */

.fancybox-fx-tube.fancybox-slide--previous {
    -webkit-transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg);
            transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
    -webkit-transform: translate3d(100%, 0, 0) scale(.1) skew(10deg);
            transform: translate3d(100%, 0, 0) scale(.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
    .fancybox-slide {
        padding-left: 6px;
        padding-right: 6px;
    }

    .fancybox-slide--image {
        padding: 6px 0;
    }

    .fancybox-close-small {
        right: -6px;
    }

    .fancybox-slide--image .fancybox-close-small {
        background: #4e4e4e;
        color: #f2f4f6;
        height: 36px;
        opacity: 1;
        padding: 6px;
        right: 0;
        top: 0;
        width: 36px;
    }

    .fancybox-caption {
        padding-left: 12px;
        padding-right: 12px;
    }

    @supports (padding: max(0px)) {
        .fancybox-caption {
            padding-left: max(12px, env(safe-area-inset-left));
            padding-right: max(12px, env(safe-area-inset-right));
        }
    }
}
/* Share */

.fancybox-share {
    background: #f4f4f4;
    border-radius: 3px;
    max-width: 90%;
    padding: 30px;
    text-align: center;
}

.fancybox-share h1 {
    color: #222;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.fancybox-share p {
    margin: 0;
    padding: 0;
}

.fancybox-share__button {
    border: 0;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 5px 10px 5px;
    min-width: 130px;
    padding: 0 15px;
    text-decoration: none;
    -webkit-transition: all .2s;
    transition: all .2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
    color: #fff;
}

.fancybox-share__button:hover {
    text-decoration: none;
}

.fancybox-share__button--fb {
    background: #3b5998;
}

.fancybox-share__button--fb:hover {
    background: #344e86;
}

.fancybox-share__button--pt {
    background: #bd081d;
}

.fancybox-share__button--pt:hover {
    background: #aa0719;
}

.fancybox-share__button--tw {
    background: #1da1f2;
}

.fancybox-share__button--tw:hover {
    background: #0d95e8;
}

.fancybox-share__button svg {
    height: 25px;
    margin-right: 7px;
    position: relative;
    top: -1px;
    vertical-align: middle;
    width: 25px;
}

.fancybox-share__button svg path {
    fill: #fff;
}

.fancybox-share__input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #d7d7d7;
    border-radius: 0;
    color: #5d5b5b;
    font-size: 14px;
    margin: 10px 0 0 0;
    outline: none;
    padding: 10px 15px;
    width: 100%;
}
/* Thumbs */

.fancybox-thumbs {
    background: #ddd;
    bottom: 0;
    display: none;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    padding: 2px 2px 4px 2px;
    position: absolute;
    right: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    top: 0;
    width: 212px;
    z-index: 99995;
}

.fancybox-thumbs-x {
    overflow-x: auto;
    overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
    display: block;
}

.fancybox-show-thumbs .fancybox-inner {
    right: 212px;
}

.fancybox-thumbs__list {
    font-size: 0;
    height: 100%;
    list-style: none;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    position: absolute;
    position: relative;
    white-space: nowrap;
    width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
    overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
    width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
            box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px;
}

.fancybox-thumbs__list a {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, .1);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    float: left;
    height: 75px;
    margin: 2px;
    max-height: -webkit-calc(100% - 8px);
    max-height: calc(100% - 8px);
    max-width: -webkit-calc(50% - 4px);
    max-width: calc(50% - 4px);
    outline: none;
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    width: 100px;
}

.fancybox-thumbs__list a::before {
    border: 6px solid #ff5268;
    bottom: 0;
    content: '';
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all .2s cubic-bezier(.25, .46, .45, .94);
    transition: all .2s cubic-bezier(.25, .46, .45, .94);
    z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
    opacity: .5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
    opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
    .fancybox-thumbs {
        width: 110px;
    }

    .fancybox-show-thumbs .fancybox-inner {
        right: 110px;
    }

    .fancybox-thumbs__list a {
        max-width: -webkit-calc(100% - 10px);
        max-width: calc(100% - 10px);
    }
}
/*! 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;-webkit-transition: opacity .1s ease-in;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;-moz-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;-webkit-transition: visibility 0s .11s,opacity .1s ease-in;transition:visibility 0s .11s,opacity .1s ease-in;-webkit-backface-visibility:hidden;backface-visibility:hidden}.social-likes_single.social-likes_opened{visibility:visible;opacity:1;-webkit-transition: opacity .15s ease-out;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==)}
@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)
 */
@import url("../../../../external.html?link=https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800&amp;display=swap");
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          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, "Open Sans");
  font-size: var(--font-size-base, 18px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-base, #404f57);
  text-align: left;
  background-color: white;
  overflow-x: hidden; }

[tabindex="-1"]:focus {
  outline: 0 !important; }

hr {
  -webkit-box-sizing: content-box;
          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: .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: -.25em; }

sup {
  top: -.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; }

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"] {
  -webkit-box-sizing: border-box;
          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: .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;
  -o-object-fit: cover;
     object-fit: cover; }

.hide {
  display: none !important; }

.text-center {
  text-align: center; }

[data-bg="neutral"] {
  background: var(--neutral-transp-5, rgba(64, 79, 87, 0.05)); }

[data-bg="brand"] {
  background: var(--brand-base, #006699); }

/* 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: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -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-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px; }

.col {
  -webkit-flex-basis: 0;
      -ms-flex-preferred-size: 0;
          flex-basis: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 100%; }

.col-auto {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: none; }

.col-1 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 8.33333%;
      -ms-flex: 0 0 8.33333%;
          flex: 0 0 8.33333%;
  max-width: 8.33333%; }

.col-2 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 16.66667%;
      -ms-flex: 0 0 16.66667%;
          flex: 0 0 16.66667%;
  max-width: 16.66667%; }

.col-3 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%; }

.col-4 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.33333%;
      -ms-flex: 0 0 33.33333%;
          flex: 0 0 33.33333%;
  max-width: 33.33333%; }

.col-5 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 41.66667%;
      -ms-flex: 0 0 41.66667%;
          flex: 0 0 41.66667%;
  max-width: 41.66667%; }

.col-6 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%; }

.col-7 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 58.33333%;
      -ms-flex: 0 0 58.33333%;
          flex: 0 0 58.33333%;
  max-width: 58.33333%; }

.col-8 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 66.66667%;
      -ms-flex: 0 0 66.66667%;
          flex: 0 0 66.66667%;
  max-width: 66.66667%; }

.col-9 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 75%;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%; }

.col-10 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 83.33333%;
      -ms-flex: 0 0 83.33333%;
          flex: 0 0 83.33333%;
  max-width: 83.33333%; }

.col-11 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 91.66667%;
      -ms-flex: 0 0 91.66667%;
          flex: 0 0 91.66667%;
  max-width: 91.66667%; }

.col-12 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%; }

.order-first {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
      -ms-flex-order: -1;
          order: -1; }

.order-last {
  -webkit-box-ordinal-group: 14;
  -webkit-order: 13;
      -ms-flex-order: 13;
          order: 13; }

.order-0 {
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
      -ms-flex-order: 0;
          order: 0; }

.order-1 {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1; }

.order-2 {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2; }

.order-3 {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
      -ms-flex-order: 3;
          order: 3; }

.order-4 {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
      -ms-flex-order: 4;
          order: 4; }

.order-5 {
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
      -ms-flex-order: 5;
          order: 5; }

.order-6 {
  -webkit-box-ordinal-group: 7;
  -webkit-order: 6;
      -ms-flex-order: 6;
          order: 6; }

.order-7 {
  -webkit-box-ordinal-group: 8;
  -webkit-order: 7;
      -ms-flex-order: 7;
          order: 7; }

.order-8 {
  -webkit-box-ordinal-group: 9;
  -webkit-order: 8;
      -ms-flex-order: 8;
          order: 8; }

.order-9 {
  -webkit-box-ordinal-group: 10;
  -webkit-order: 9;
      -ms-flex-order: 9;
          order: 9; }

.order-10 {
  -webkit-box-ordinal-group: 11;
  -webkit-order: 10;
      -ms-flex-order: 10;
          order: 10; }

.order-11 {
  -webkit-box-ordinal-group: 12;
  -webkit-order: 11;
      -ms-flex-order: 11;
          order: 11; }

.order-12 {
  -webkit-box-ordinal-group: 13;
  -webkit-order: 12;
      -ms-flex-order: 12;
          order: 12; }

.offset-1 {
  margin-left: 8.33333%; }

.offset-2 {
  margin-left: 16.66667%; }

.offset-3 {
  margin-left: 25%; }

.offset-4 {
  margin-left: 33.33333%; }

.offset-5 {
  margin-left: 41.66667%; }

.offset-6 {
  margin-left: 50%; }

.offset-7 {
  margin-left: 58.33333%; }

.offset-8 {
  margin-left: 66.66667%; }

.offset-9 {
  margin-left: 75%; }

.offset-10 {
  margin-left: 83.33333%; }

.offset-11 {
  margin-left: 91.66667%; }

@media (min-width: 576px) {
  .col-sm {
    -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
            flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%; }
  .col-sm-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none; }
  .col-sm-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%; }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%; }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%; }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%; }
  .order-sm-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1; }
  .order-sm-last {
    -webkit-box-ordinal-group: 14;
    -webkit-order: 13;
        -ms-flex-order: 13;
            order: 13; }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0; }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1; }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2; }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3; }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4; }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5; }
  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
        -ms-flex-order: 6;
            order: 6; }
  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
        -ms-flex-order: 7;
            order: 7; }
  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
        -ms-flex-order: 8;
            order: 8; }
  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
        -ms-flex-order: 9;
            order: 9; }
  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
        -ms-flex-order: 10;
            order: 10; }
  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
        -ms-flex-order: 11;
            order: 11; }
  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
        -ms-flex-order: 12;
            order: 12; }
  .offset-sm-0 {
    margin-left: 0; }
  .offset-sm-1 {
    margin-left: 8.33333%; }
  .offset-sm-2 {
    margin-left: 16.66667%; }
  .offset-sm-3 {
    margin-left: 25%; }
  .offset-sm-4 {
    margin-left: 33.33333%; }
  .offset-sm-5 {
    margin-left: 41.66667%; }
  .offset-sm-6 {
    margin-left: 50%; }
  .offset-sm-7 {
    margin-left: 58.33333%; }
  .offset-sm-8 {
    margin-left: 66.66667%; }
  .offset-sm-9 {
    margin-left: 75%; }
  .offset-sm-10 {
    margin-left: 83.33333%; }
  .offset-sm-11 {
    margin-left: 91.66667%; } }

@media (min-width: 768px) {
  .col-md {
    -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
            flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%; }
  .col-md-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none; }
  .col-md-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-md-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-md-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%; }
  .col-md-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-md-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-md-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%; }
  .col-md-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-md-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-md-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%; }
  .col-md-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-md-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-md-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%; }
  .order-md-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1; }
  .order-md-last {
    -webkit-box-ordinal-group: 14;
    -webkit-order: 13;
        -ms-flex-order: 13;
            order: 13; }
  .order-md-0 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0; }
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1; }
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2; }
  .order-md-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3; }
  .order-md-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4; }
  .order-md-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5; }
  .order-md-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
        -ms-flex-order: 6;
            order: 6; }
  .order-md-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
        -ms-flex-order: 7;
            order: 7; }
  .order-md-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
        -ms-flex-order: 8;
            order: 8; }
  .order-md-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
        -ms-flex-order: 9;
            order: 9; }
  .order-md-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
        -ms-flex-order: 10;
            order: 10; }
  .order-md-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
        -ms-flex-order: 11;
            order: 11; }
  .order-md-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
        -ms-flex-order: 12;
            order: 12; }
  .offset-md-0 {
    margin-left: 0; }
  .offset-md-1 {
    margin-left: 8.33333%; }
  .offset-md-2 {
    margin-left: 16.66667%; }
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
    margin-left: 33.33333%; }
  .offset-md-5 {
    margin-left: 41.66667%; }
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
    margin-left: 58.33333%; }
  .offset-md-8 {
    margin-left: 66.66667%; }
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
    margin-left: 83.33333%; }
  .offset-md-11 {
    margin-left: 91.66667%; } }

@media (min-width: 992px) {
  .col-lg {
    -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
            flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%; }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none; }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%; }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%; }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%; }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%; }
  .order-lg-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1; }
  .order-lg-last {
    -webkit-box-ordinal-group: 14;
    -webkit-order: 13;
        -ms-flex-order: 13;
            order: 13; }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0; }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1; }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2; }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3; }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4; }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5; }
  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
        -ms-flex-order: 6;
            order: 6; }
  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
        -ms-flex-order: 7;
            order: 7; }
  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
        -ms-flex-order: 8;
            order: 8; }
  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
        -ms-flex-order: 9;
            order: 9; }
  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
        -ms-flex-order: 10;
            order: 10; }
  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
        -ms-flex-order: 11;
            order: 11; }
  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
        -ms-flex-order: 12;
            order: 12; }
  .offset-lg-0 {
    margin-left: 0; }
  .offset-lg-1 {
    margin-left: 8.33333%; }
  .offset-lg-2 {
    margin-left: 16.66667%; }
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
    margin-left: 33.33333%; }
  .offset-lg-5 {
    margin-left: 41.66667%; }
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
    margin-left: 58.33333%; }
  .offset-lg-8 {
    margin-left: 66.66667%; }
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
    margin-left: 83.33333%; }
  .offset-lg-11 {
    margin-left: 91.66667%; } }

@media (min-width: 1200px) {
  .col-xl {
    -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
            flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%; }
  .col-xl-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none; }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%; }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%; }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%; }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%; }
  .order-xl-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1; }
  .order-xl-last {
    -webkit-box-ordinal-group: 14;
    -webkit-order: 13;
        -ms-flex-order: 13;
            order: 13; }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0; }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1; }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2; }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3; }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4; }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5; }
  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
        -ms-flex-order: 6;
            order: 6; }
  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
        -ms-flex-order: 7;
            order: 7; }
  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
        -ms-flex-order: 8;
            order: 8; }
  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
        -ms-flex-order: 9;
            order: 9; }
  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
        -ms-flex-order: 10;
            order: 10; }
  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
        -ms-flex-order: 11;
            order: 11; }
  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
        -ms-flex-order: 12;
            order: 12; }
  .offset-xl-0 {
    margin-left: 0; }
  .offset-xl-1 {
    margin-left: 8.33333%; }
  .offset-xl-2 {
    margin-left: 16.66667%; }
  .offset-xl-3 {
    margin-left: 25%; }
  .offset-xl-4 {
    margin-left: 33.33333%; }
  .offset-xl-5 {
    margin-left: 41.66667%; }
  .offset-xl-6 {
    margin-left: 50%; }
  .offset-xl-7 {
    margin-left: 58.33333%; }
  .offset-xl-8 {
    margin-left: 66.66667%; }
  .offset-xl-9 {
    margin-left: 75%; }
  .offset-xl-10 {
    margin-left: 83.33333%; }
  .offset-xl-11 {
    margin-left: 91.66667%; } }

.button {
  padding: 0;
  line-height: 1.15;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  -webkit-transition: 0.2s ease-in-out;
  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: 32px;
    padding-right: 32px;
    border-radius: var(--border-radius-button, 5px);
    font-size: 1em; }
  .button.button-bg {
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 24px;
    padding-right: 24px;
    border-radius: var(--border-radius-button, 5px);
    font-size: 0.875em; }
  .button.button-md {
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 24px;
    padding-right: 24px;
    border-radius: var(--border-radius-button, 5px);
    font-size: 0.875em; }
  .button.button-sm {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: var(--border-radius-button, 5px);
    font-size: 0.75em; }
  .button.is-primary {
    background: var(--highlight-base, #006699);
    color: #80d5ff; }
    .button.is-primary:focus, .button.is-primary:visited, .button.is-primary:active {
      background: var(--highlight-dark, #005782); }
    .button.is-primary:hover {
      background: var(--highlight-light-2, #4d94b8); }
    .button.is-primary.disabled {
      opacity: .50;
      background: var(--highlight-base, #006699);
      cursor: not-allowed; }
  .button.is-secondary {
    background: var(--neutral-transp-10, rgba(64, 79, 87, 0.1));
    color: var(--neutral-base, #404f57); }
    .button.is-secondary:focus, .button.is-secondary:visited, .button.is-secondary:active {
      background: var(--neutral-transp-25, rgba(64, 79, 87, 0.25)); }
    .button.is-secondary:hover {
      background: var(--neutral-transp-15, rgba(64, 79, 87, 0.15)); }
    .button.is-secondary.is-loading {
      background: var(--neutral-transp-15, rgba(64, 79, 87, 0.15)); }
    .button.is-secondary.disabled {
      opacity: .50;
      background: var(--neutral-transp-10, rgba(64, 79, 87, 0.1));
      cursor: not-allowed; }
  .button.is-success {
    background: var(--success-base, #2ba264);
    color: var(--color-white-base, white); }
    .button.is-success:focus, .button.is-success:visited, .button.is-success:active {
      background: var(--success-transp-25, rgba(43, 162, 100, 0.75)); }
    .button.is-success:hover {
      background: var(--success-transp-15, rgba(43, 162, 100, 0.85)); }
    .button.is-success.is-loading {
      background: var(--success-transp-15, rgba(43, 162, 100, 0.85)); }
    .button.is-success.disabled {
      opacity: .50;
      background: var(--success-transp-10, rgba(43, 162, 100, 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: .50;
      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: .50;
      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, #404f57);
    color: var(--neutral-base, #404f57);
    opacity: .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(64, 79, 87, 0.5));
      opacity: .5; }
    .button.is-outline:hover {
      border-color: var(--neutral-base, #404f57);
      opacity: 1; }
    .button.is-outline.disabled {
      opacity: .25;
      border-color: var(--neutral-transp-75, #404f57);
      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: .5; }
    .button.is-inverse:hover {
      border-color: var(--color-white-base, white);
      opacity: 1; }
    .button.is-inverse.disabled {
      opacity: .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%; }

.icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  color: var(--highlight-base, #006699); }
  .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, #006699);
  -webkit-transform: rotate(-45deg);
      -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;
    -webkit-transform: rotate(45deg);
        -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(64, 79, 87, 0.25)); }
  :not(html).placeholder img {
    max-width: 100%;
    height: auto;
    display: block;
    -o-object-fit: cover;
       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, 5px);
    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: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      z-index: 5; }

.input, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .form-group .form-control, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .selectize-control .selectize-input, .members-page .members-panel .panel-form-media.custom-file-upload .bootstrap-filestyle .form-control {
  padding: 0 16px;
  border-radius: var(--border-radius-input, 5px);
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid var(--neutral-transp-25, rgba(64, 79, 87, 0.25));
  color: var(--neutral-base, #404f57);
  outline: none;
  min-height: 50px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: var(--font-size-16, 0.88889em); }
  .input::-webkit-input-placeholder, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .form-group .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 .panel-form-media.custom-file-upload .bootstrap-filestyle .form-control::-webkit-input-placeholder {
    color: var(--neutral-transp-50, rgba(64, 79, 87, 0.5)); }
  .input::-moz-placeholder, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .form-group .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 .panel-form-media.custom-file-upload .bootstrap-filestyle .form-control::-moz-placeholder {
    color: var(--neutral-transp-50, rgba(64, 79, 87, 0.5)); }
  .input:-ms-input-placeholder, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .form-group .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 .panel-form-media.custom-file-upload .bootstrap-filestyle .form-control:-ms-input-placeholder {
    color: var(--neutral-transp-50, rgba(64, 79, 87, 0.5)); }
  .input:-moz-placeholder, .members-page .members-panel.edit-panel .panel-body .custom-edit-content .form-group .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 .panel-form-media.custom-file-upload .bootstrap-filestyle .form-control:-moz-placeholder {
    color: var(--neutral-transp-50, rgba(64, 79, 87, 0.5)); }

[placeholder] {
  text-overflow: ellipsis; }

select.input {
  height: 50px;
  -webkit-appearance: none;
  background: transparent;
  padding: 0 32px;
  color: var(--neutral-base, #404f57); }

.link {
  line-height: 1.25;
  color: var(--link-base, #006699);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  font-size: var(--font-size-14, 0.77778em); }
  .link:hover {
    color: var(--link-base, #006699);
    border-color: var(--link-base, #006699);
    text-decoration: none; }
  .link:focus, .link:active {
    color: var(--link-dark, #00476b);
    border-color: var(--link-dark, #00476b);
    text-decoration: none; }

.content-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: 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, 0.88889em); }
  .content-form .input-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -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, 5px);
      border-bottom-right-radius: var(--border-radius-input, 5px); }
      .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: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      background: white;
      border-top-left-radius: var(--border-radius-input, 5px);
      border-bottom-left-radius: var(--border-radius-input, 5px);
      border: 1px solid var(--neutral-transp-25, rgba(64, 79, 87, 0.25));
      border-right: none;
      margin-right: -1px; }
    .content-form .input-group .twitter-typeahead {
      -webkit-box-flex: 1;
      -webkit-flex-grow: 1;
          -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 {
      -webkit-box-flex: 1;
      -webkit-flex-grow: 1;
          -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(64, 79, 87, 0.25));
      margin-top: -2px;
      -webkit-box-sizing: content-box;
              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 {
          -webkit-box-pack: start;
          -webkit-justify-content: flex-start;
              -ms-flex-pack: start;
                  justify-content: flex-start; }
      .content-form .input-group .tt-menu .tt-suggestion {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding: 8px;
        cursor: pointer;
        -webkit-transition: 0.2s ease-in-out;
        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(64, 79, 87, 0.1)); }
        .content-form .input-group .tt-menu .tt-suggestion:hover {
          background: var(--neutral-transp-10, rgba(64, 79, 87, 0.1)); }
        .content-form .input-group .tt-menu .tt-suggestion span:nth-child(1) {
          -webkit-box-ordinal-group: 3;
          -webkit-order: 2;
              -ms-flex-order: 2;
                  order: 2;
          float: none;
          font-size: var(--font-size-14, 0.77778em); }
          .content-form .input-group .tt-menu .tt-suggestion span:nth-child(1) .fa {
            color: var(--highlight-base, #006699); }
        .content-form .input-group .tt-menu .tt-suggestion span:nth-child(2) {
          text-align: left;
          max-width: -webkit-calc(100% - 100px);
          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; } }

.cards-default {
  padding-top: 10px;
  padding-bottom: 10px; }
  @media only screen and (min-width: 992px) {
    .cards-default {
      padding-top: 20px;
      padding-bottom: 20px; } }
  .cards-default[data-bg="brand"] .cards-header > .heading {
    color: var(--color-white-base, white); }
  @media screen and (max-width: 768px) {
    .cards-default[scrollable="true"] .cards-list:not(.has-slider) {
      -webkit-flex-flow: nowrap;
          -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: -webkit-calc(100% - (16px * 2));
    min-width: calc(100% - (16px * 2));
    margin-right: 16px; }
    @media screen and (min-width: 768px) {
      .cards-default[scrollable="true"] .cards-list .card:not(.card-horizontal)[data-columns="2"] {
        min-width: -webkit-calc(calc(100% / 2) - (16px * 2));
        min-width: calc(calc(100% / 2) - (16px * 2));
        margin-right: 0;
        margin-left: 16px; }
        @supports (-ms-ime-align: auto) {
          .cards-default[scrollable="true"] .cards-list .card:not(.card-horizontal)[data-columns="2"] {
            min-width: -webkit-calc((100% / 2) - (16px * 2) - 1px);
            min-width: calc((100% / 2) - (16px * 2) - 1px); } } }
    @media screen and (min-width: 992px) {
      .cards-default[scrollable="true"] .cards-list .card:not(.card-horizontal)[data-columns="2"] {
        width: -webkit-calc(calc(100% / 2) - (16px * 2));
        width: calc(calc(100% / 2) - (16px * 2));
        min-width: auto;
        margin-right: 16px; }
        @supports (-ms-ime-align: auto) {
          .cards-default[scrollable="true"] .cards-list .card:not(.card-horizontal)[data-columns="2"] {
            width: -webkit-calc((100% / 2) - (16px * 2) - 1px);
            width: calc((100% / 2) - (16px * 2) - 1px); } } }
    @media screen and (min-width: 1200px) {
      .cards-default[scrollable="true"] .cards-list .card:not(.card-horizontal)[data-columns="2"] {
        width: -webkit-calc((100% / 2) - (16px * 2));
        width: calc((100% / 2) - (16px * 2)); }
        @supports (-ms-ime-align: auto) {
          .cards-default[scrollable="true"] .cards-list .card:not(.card-horizontal)[data-columns="2"] {
            width: -webkit-calc((100% / 2) - (16px * 2) - 1px);
            width: calc((100% / 2) - (16px * 2) - 1px); } } }
  .cards-default[scrollable="true"] .cards-list .card:not(.card-horizontal)[data-columns="3"] {
    min-width: -webkit-calc(100% - (16px * 2));
    min-width: calc(100% - (16px * 2));
    margin-right: 16px; }
    @media screen and (min-width: 768px) {
      .cards-default[scrollable="true"] .cards-list .card:not(.card-horizontal)[data-columns="3"] {
        min-width: -webkit-calc(calc(100% / 2) - (16px * 2));
        min-width: calc(calc(100% / 2) - (16px * 2));
        margin-right: 0;
        margin-left: 16px; }
        @supports (-ms-ime-align: auto) {
          .cards-default[scrollable="true"] .cards-list .card:not(.card-horizontal)[data-columns="3"] {
            min-width: -webkit-calc((100% / 2) - (16px * 2) - 1px);
            min-width: calc((100% / 2) - (16px * 2) - 1px); } } }
    @media screen and (min-width: 992px) {
      .cards-default[scrollable="true"] .cards-list .card:not(.card-horizontal)[data-columns="3"] {
        width: -webkit-calc(calc(100% / 3) - (16px * 2));
        width: calc(calc(100% / 3) - (16px * 2));
        min-width: auto;
        margin-right: 16px; }
        @supports (-ms-ime-align: auto) {
          .cards-default[scrollable="true"] .cards-list .card:not(.card-horizontal)[data-columns="3"] {
            width: -webkit-calc((100% / 3) - (16px * 2) - 1px);
            width: calc((100% / 3) - (16px * 2) - 1px); } } }
    @media screen and (min-width: 1200px) {
      .cards-default[scrollable="true"] .cards-list .card:not(.card-horizontal)[data-columns="3"] {
        width: -webkit-calc((100% / 3) - (16px * 2));
        width: calc((100% / 3) - (16px * 2)); }
        @supports (-ms-ime-align: auto) {
          .cards-default[scrollable="true"] .cards-list .card:not(.card-horizontal)[data-columns="3"] {
            width: -webkit-calc((100% / 3) - (16px * 2) - 1px);
            width: calc((100% / 3) - (16px * 2) - 1px); } } }
  .cards-default[scrollable="true"] .cards-list .card:not(.card-horizontal)[data-columns="4"] {
    min-width: -webkit-calc(100% - (16px * 2));
    min-width: calc(100% - (16px * 2));
    margin-right: 16px; }
    @media screen and (min-width: 768px) {
      .cards-default[scrollable="true"] .cards-list .card:not(.card-horizontal)[data-columns="4"] {
        min-width: -webkit-calc(calc(100% / 2) - (16px * 2));
        min-width: calc(calc(100% / 2) - (16px * 2));
        margin-right: 0;
        margin-left: 16px; }
        @supports (-ms-ime-align: auto) {
          .cards-default[scrollable="true"] .cards-list .card:not(.card-horizontal)[data-columns="4"] {
            min-width: -webkit-calc((100% / 2) - (16px * 2) - 1px);
            min-width: calc((100% / 2) - (16px * 2) - 1px); } } }
    @media screen and (min-width: 992px) {
      .cards-default[scrollable="true"] .cards-list .card:not(.card-horizontal)[data-columns="4"] {
        width: -webkit-calc(calc(100% / 3) - (16px * 2));
        width: calc(calc(100% / 3) - (16px * 2));
        min-width: auto;
        margin-right: 16px; }
        @supports (-ms-ime-align: auto) {
          .cards-default[scrollable="true"] .cards-list .card:not(.card-horizontal)[data-columns="4"] {
            width: -webkit-calc((100% / 3) - (16px * 2) - 1px);
            width: calc((100% / 3) - (16px * 2) - 1px); } } }
    @media screen and (min-width: 1200px) {
      .cards-default[scrollable="true"] .cards-list .card:not(.card-horizontal)[data-columns="4"] {
        width: -webkit-calc((100% / 4) - (16px * 2));
        width: calc((100% / 4) - (16px * 2)); }
        @supports (-ms-ime-align: auto) {
          .cards-default[scrollable="true"] .cards-list .card:not(.card-horizontal)[data-columns="4"] {
            width: -webkit-calc((100% / 4) - (16px * 2) - 1px);
            width: calc((100% / 4) - (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: -webkit-calc(calc(100% / 2) - (16px / 2));
    width: calc(calc(100% / 2) - (16px / 2));
    margin-right: 4px;
    margin-left: 4px; }
    @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: -webkit-calc((100% / 2) - (16px / 2) - 1px);
        width: calc((100% / 2) - (16px / 2) - 1px); } }
    @media screen and (min-width: 768px) {
      .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: -webkit-calc(calc(100% / 2) - (16px * 2));
        width: calc(calc(100% / 2) - (16px * 2));
        margin-right: 16px;
        margin-left: 16px; }
        @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: -webkit-calc((100% / 2) - (16px * 2) - 1px);
            width: calc((100% / 2) - (16px * 2) - 1px); } } }
    @media screen and (min-width: 992px) {
      .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: -webkit-calc(calc(100% / 2) - (16px * 2));
        width: calc(calc(100% / 2) - (16px * 2));
        min-width: auto;
        margin-right: 16px; }
        @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: -webkit-calc((100% / 2) - (16px * 2) - 1px);
            width: calc((100% / 2) - (16px * 2) - 1px); } } }
    @media screen and (min-width: 1200px) {
      .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: -webkit-calc((100% / 2) - (16px * 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="2"], .cards-default[scrollable="false"][mobile-columns="true"] .cards-list .card:not(.card-horizontal)[data-columns="2"] {
            width: -webkit-calc((100% / 2) - (16px * 2) - 1px);
            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: -webkit-calc(calc(100% / 2) - (16px / 2));
    width: calc(calc(100% / 2) - (16px / 2));
    margin-right: 4px;
    margin-left: 4px; }
    @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: -webkit-calc((100% / 2) - (16px / 2) - 1px);
        width: calc((100% / 2) - (16px / 2) - 1px); } }
    @media screen and (min-width: 768px) {
      .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: -webkit-calc(calc(100% / 2) - (16px * 2));
        width: calc(calc(100% / 2) - (16px * 2));
        margin-right: 16px;
        margin-left: 16px; }
        @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: -webkit-calc((100% / 2) - (16px * 2) - 1px);
            width: calc((100% / 2) - (16px * 2) - 1px); } } }
    @media screen and (min-width: 992px) {
      .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: -webkit-calc(calc(100% / 3) - (16px * 2));
        width: calc(calc(100% / 3) - (16px * 2));
        min-width: auto;
        margin-right: 16px; }
        @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: -webkit-calc((100% / 3) - (16px * 2) - 1px);
            width: calc((100% / 3) - (16px * 2) - 1px); } } }
    @media screen and (min-width: 1200px) {
      .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: -webkit-calc((100% / 3) - (16px * 2));
        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="3"], .cards-default[scrollable="false"][mobile-columns="true"] .cards-list .card:not(.card-horizontal)[data-columns="3"] {
            width: -webkit-calc((100% / 3) - (16px * 2) - 1px);
            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: -webkit-calc(calc(100% / 2) - (16px / 2));
    width: calc(calc(100% / 2) - (16px / 2));
    margin-right: 4px;
    margin-left: 4px; }
    @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: -webkit-calc((100% / 2) - (16px / 2) - 1px);
        width: calc((100% / 2) - (16px / 2) - 1px); } }
    @media screen and (min-width: 768px) {
      .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: -webkit-calc(calc(100% / 2) - (16px * 2));
        width: calc(calc(100% / 2) - (16px * 2));
        margin-right: 16px;
        margin-left: 16px; }
        @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: -webkit-calc((100% / 2) - (16px * 2) - 1px);
            width: calc((100% / 2) - (16px * 2) - 1px); } } }
    @media screen and (min-width: 992px) {
      .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: -webkit-calc(calc(100% / 3) - (16px * 2));
        width: calc(calc(100% / 3) - (16px * 2));
        min-width: auto;
        margin-right: 16px; }
        @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: -webkit-calc((100% / 3) - (16px * 2) - 1px);
            width: calc((100% / 3) - (16px * 2) - 1px); } } }
    @media screen and (min-width: 1200px) {
      .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: -webkit-calc((100% / 4) - (16px * 2));
        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="4"], .cards-default[scrollable="false"][mobile-columns="true"] .cards-list .card:not(.card-horizontal)[data-columns="4"] {
            width: -webkit-calc((100% / 4) - (16px * 2) - 1px);
            width: calc((100% / 4) - (16px * 2) - 1px); } } }
  @media screen and (max-width: 991px) {
    .cards-default[card-type="horizontal-cards"][scrollable="true"] .cards-list .card.card-horizontal {
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -ms-flex-align: start;
              align-items: flex-start;
      -webkit-flex-shrink: 0;
          -ms-flex-negative: 0;
              flex-shrink: 0;
      width: 170px;
      margin-right: 24px;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
          -ms-flex-pack: start;
              justify-content: flex-start; }
    .cards-default[card-type="horizontal-cards"][scrollable="true"] .cards-list .card .content .description {
      display: none; } }
  .cards-default .cards-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 24px; }
    .cards-default .cards-header > .heading {
      color: var(--neutral-transp-75, #404f57); }
    .cards-default .cards-header > .link {
      font-size: var(--font-size-16, 0.88889em); }
  .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, #404f57);
      border-radius: 9999px;
      width: 40px;
      height: 40px;
      color: var(--neutral-base, #404f57);
      text-decoration: none;
      outline: none;
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-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: .5;
        cursor: not-allowed; }
    .cards-default .cards-upcoming .selected-date {
      position: absolute;
      width: 10px;
      height: 10px;
      left: 0;
      bottom: -36px;
      -webkit-transition: 0.2s ease-in-out;
      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, 5px);
      -webkit-transform: translateX(83px) rotate(-45deg);
          -ms-transform: translateX(83px) rotate(-45deg);
              transform: translateX(83px) rotate(-45deg);
      z-index: 5; }
    .cards-default .cards-upcoming .cards-upcoming-wrapper {
      display: -webkit-box;
      display: -webkit-flex;
      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, #006699); }
      .cards-default .cards-upcoming .calendar-sm .month {
        background: var(--brand-base, #006699);
        -webkit-transition: 0.2s ease-in-out;
        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: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start; }
    .cards-default .cards-wrapper[has-ads="true"] .cards-ads {
      max-width: 250px; }
      .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 .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: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -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: none; }
      @media screen and (min-width: 992px) {
        .cards-default .cards-wrapper[has-ads="true"][banner-type="skyscraper"] .cards-ads {
          display: block; } }
  .cards-default .cards-list:not(.has-slider) {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -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, #404f57);
    border-radius: 9999px;
    width: 40px;
    height: 40px; }
    .cards-default .cards-list.has-slider .flickity-button .flickity-button-icon {
      fill: var(--neutral-base, #404f57); }
  .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: #cccccc;
          background: -webkit-gradient(linear, left top, right top, from(#cccccc), to(rgba(255, 255, 255, 0)));
          background: linear-gradient(to right, #cccccc 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: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(#cccccc));
          background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #cccccc 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, #404f57);
      -webkit-transition: 0.2s ease-in-out;
      transition: 0.2s ease-in-out; }
      .cards-default .cards-list.has-slider .flickity-page-dots .dot:hover {
        background: var(--neutral-base, #404f57);
        border-color: var(--neutral-base, #404f57);
        opacity: .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) {
        .cards-default .cards-list .card[data-columns="2"] {
          width: -webkit-calc(calc(100% / 2) - (16px * 2));
          width: calc(calc(100% / 2) - (16px * 2));
          margin-right: 16px;
          margin-left: 16px; }
          @supports (-ms-ime-align: auto) {
            .cards-default .cards-list .card[data-columns="2"] {
              width: -webkit-calc((100% / 2) - (16px * 2) - 1px);
              width: calc((100% / 2) - (16px * 2) - 1px); } } }
      @media screen and (min-width: 992px) {
        .cards-default .cards-list .card[data-columns="2"] {
          width: -webkit-calc(calc(100% / 2) - (16px * 2));
          width: calc(calc(100% / 2) - (16px * 2));
          min-width: auto;
          margin-right: 16px; }
          @supports (-ms-ime-align: auto) {
            .cards-default .cards-list .card[data-columns="2"] {
              width: -webkit-calc((100% / 2) - (16px * 2) - 1px);
              width: calc((100% / 2) - (16px * 2) - 1px); } } }
      @media screen and (min-width: 1200px) {
        .cards-default .cards-list .card[data-columns="2"] {
          width: -webkit-calc((100% / 2) - (16px * 2));
          width: calc((100% / 2) - (16px * 2)); }
          @supports (-ms-ime-align: auto) {
            .cards-default .cards-list .card[data-columns="2"] {
              width: -webkit-calc((100% / 2) - (16px * 2) - 1px);
              width: calc((100% / 2) - (16px * 2) - 1px); } } }
    .cards-default .cards-list .card[data-columns="3"] {
      width: 100%; }
      @media screen and (min-width: 768px) {
        .cards-default .cards-list .card[data-columns="3"] {
          width: -webkit-calc(calc(100% / 2) - (16px * 2));
          width: calc(calc(100% / 2) - (16px * 2));
          margin-right: 16px;
          margin-left: 16px; }
          @supports (-ms-ime-align: auto) {
            .cards-default .cards-list .card[data-columns="3"] {
              width: -webkit-calc((100% / 2) - (16px * 2) - 1px);
              width: calc((100% / 2) - (16px * 2) - 1px); } } }
      @media screen and (min-width: 992px) {
        .cards-default .cards-list .card[data-columns="3"] {
          width: -webkit-calc(calc(100% / 3) - (16px * 2));
          width: calc(calc(100% / 3) - (16px * 2));
          min-width: auto;
          margin-right: 16px; }
          @supports (-ms-ime-align: auto) {
            .cards-default .cards-list .card[data-columns="3"] {
              width: -webkit-calc((100% / 3) - (16px * 2) - 1px);
              width: calc((100% / 3) - (16px * 2) - 1px); } } }
      @media screen and (min-width: 1200px) {
        .cards-default .cards-list .card[data-columns="3"] {
          width: -webkit-calc((100% / 3) - (16px * 2));
          width: calc((100% / 3) - (16px * 2)); }
          @supports (-ms-ime-align: auto) {
            .cards-default .cards-list .card[data-columns="3"] {
              width: -webkit-calc((100% / 3) - (16px * 2) - 1px);
              width: calc((100% / 3) - (16px * 2) - 1px); } } }
    .cards-default .cards-list .card[data-columns="4"] {
      width: 100%; }
      @media screen and (min-width: 768px) {
        .cards-default .cards-list .card[data-columns="4"] {
          width: -webkit-calc(calc(100% / 2) - (16px * 2));
          width: calc(calc(100% / 2) - (16px * 2));
          margin-right: 16px;
          margin-left: 16px; }
          @supports (-ms-ime-align: auto) {
            .cards-default .cards-list .card[data-columns="4"] {
              width: -webkit-calc((100% / 2) - (16px * 2) - 1px);
              width: calc((100% / 2) - (16px * 2) - 1px); } } }
      @media screen and (min-width: 992px) {
        .cards-default .cards-list .card[data-columns="4"] {
          width: -webkit-calc(calc(100% / 3) - (16px * 2));
          width: calc(calc(100% / 3) - (16px * 2));
          min-width: auto;
          margin-right: 16px; }
          @supports (-ms-ime-align: auto) {
            .cards-default .cards-list .card[data-columns="4"] {
              width: -webkit-calc((100% / 3) - (16px * 2) - 1px);
              width: calc((100% / 3) - (16px * 2) - 1px); } } }
      @media screen and (min-width: 1200px) {
        .cards-default .cards-list .card[data-columns="4"] {
          width: -webkit-calc((100% / 4) - (16px * 2));
          width: calc((100% / 4) - (16px * 2)); }
          @supports (-ms-ime-align: auto) {
            .cards-default .cards-list .card[data-columns="4"] {
              width: -webkit-calc((100% / 4) - (16px * 2) - 1px);
              width: calc((100% / 4) - (16px * 2) - 1px); } } }
    .cards-default .cards-list .card:not(.card-horizontal) .content {
      margin-top: 24px; }
    .cards-default .cards-list .card.card-horizontal {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -ms-flex-align: start;
              align-items: flex-start; }
      @media screen and (min-width: 992px) {
        .cards-default .cards-list .card.card-horizontal {
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -webkit-flex-direction: row;
              -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="3"] .picture, .cards-default .cards-list .card.card-horizontal[data-columns="2"] .picture {
          width: 170px; } }
      @media screen and (min-width: 1200px) {
        .cards-default .cards-list .card.card-horizontal[data-columns="3"] .picture, .cards-default .cards-list .card.card-horizontal[data-columns="2"] .picture {
          width: 170px; } }
      .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: -webkit-calc(100% - 224px);
            width: calc(100% - 224px);
            margin-top: 0; } }
        @media screen and (min-width: 1200px) {
          .cards-default .cards-list .card.card-horizontal .content {
            width: -webkit-calc(100% - 294px);
            width: calc(100% - 294px); } }
      @media screen and (min-width: 992px) {
        .cards-default .cards-list .card.card-horizontal[data-columns="3"] .content, .cards-default .cards-list .card.card-horizontal[data-columns="2"] .content {
          width: -webkit-calc(100% - 194px);
          width: calc(100% - 194px); } }
      @media screen and (min-width: 1200px) {
        .cards-default .cards-list .card.card-horizontal[data-columns="3"] .content, .cards-default .cards-list .card.card-horizontal[data-columns="2"] .content {
          width: -webkit-calc(100% - 194px);
          width: calc(100% - 194px); } }
    .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: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000000));
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000000);
        -webkit-transition: 0.2s ease-in-out;
        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, #006699);
      min-height: 154px;
      -webkit-transition: 0.2s ease-in-out;
      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, #00476b); }
    .cards-default .cards-list .card.has-bg, .cards-default .cards-list .card.no-image {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: end;
      -webkit-align-items: flex-end;
          -ms-flex-align: end;
              align-items: flex-end;
      border-radius: var(--border-radius, 5px);
      padding: 0 16px 16px; }
      .cards-default .cards-list .card.has-bg:hover .picture img, .cards-default .cards-list .card.no-image:hover .picture img {
        -webkit-transform: scale(1);
            -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 {
      -webkit-transform: scale(1.05);
          -ms-transform: scale(1.05);
              transform: scale(1.05); }
    .cards-default .cards-list .card:hover .content .title {
      color: var(--highlight-base, #006699); }
    .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: white;
        padding: 8px;
        border-radius: 3px;
        left: 50%;
        -webkit-transform: translateX(-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: white;
          top: -5px;
          left: 50%;
          -webkit-transform: translateX(-50%) rotate(45deg);
              -ms-transform: translateX(-50%) rotate(45deg);
                  transform: translateX(-50%) rotate(45deg); }
    .cards-default .cards-list .card .picture {
      display: block;
      border-radius: var(--border-radius, 5px);
      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, 5px);
        top: 16px;
        left: 16px;
        line-height: 1;
        padding: 8px;
        color: var(--neutral-base, #404f57);
        z-index: 5;
        font-weight: bold;
        text-decoration: none;
        font-size: var(--font-size-14, 0.77778em); }
      .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;
        -o-object-fit: cover;
           object-fit: cover;
        -webkit-transition: 0.2s ease-in-out;
        transition: 0.2s ease-in-out;
        border-radius: var(--border-radius, 5px); }
      .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 .title {
      color: var(--neutral-base, #404f57);
      font-weight: 500;
      line-height: 1.3;
      text-decoration: none;
      -webkit-transition: 0.2s ease-in-out;
      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(64, 79, 87, 0.5));
      margin-top: 8px;
      font-size: var(--font-size-14, 0.77778em); }
    .cards-default .cards-list .card .content .description {
      margin-top: 8px; }
      .cards-default .cards-list .card .content .description .paragraph {
        color: var(--neutral-transp-75, #404f57);
        font-weight: 300;
        word-break: break-word; }
    .cards-default .cards-list .card .content .location {
      color: var(--neutral-transp-75, #404f57);
      margin-top: 8px; }
    .cards-default .cards-list .card .content .recurring-event {
      color: var(--neutral-transp-75, #404f57);
      margin-top: 8px; }
    .cards-default .cards-list .card .content .reviews {
      margin-top: 16px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -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(64, 79, 87, 0.5)); }
      .cards-default .cards-list .card .content .reviews .reviews-count {
        color: var(--neutral-transp-75, #404f57);
        margin-left: 16px;
        font-size: var(--font-size-14, 0.77778em); }
    .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: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      margin-top: 16px; }
      .cards-default .cards-list .card .content .author .author-picture {
        width: 48px;
        height: 48px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        border-radius: 9999px;
        overflow: hidden;
        border: 1px solid var(--neutral-transp-25, rgba(64, 79, 87, 0.25)); }
        .cards-default .cards-list .card .content .author .author-picture .fa {
          color: var(--neutral-transp-25, rgba(64, 79, 87, 0.25)); }
        .cards-default .cards-list .card .content .author .author-picture img {
          max-width: 100%;
          height: auto;
          display: block;
          -o-object-fit: cover;
             object-fit: cover; }
      .cards-default .cards-list .card .content .author .author-name {
        color: var(--neutral-transp-75, #404f57);
        font-weight: 300;
        margin-left: 16px;
        font-size: var(--font-size-14, 0.77778em);
        max-width: -webkit-calc(100% - 64px);
        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, "PT Serif");
          color: var(--neutral-base, #404f57);
          font-weight: bold;
          margin-left: 0;
          font-size: var(--font-size-16, 0.88889em); }
        .cards-default .cards-list .card .content .author .author-info .author-days {
          line-height: 1;
          font-family: var(--paragraph-font, "Open Sans");
          color: var(--neutral-transp-50, rgba(64, 79, 87, 0.5));
          margin-top: 2px;
          font-size: var(--font-size-12, 0.66667em); }
    .cards-default .cards-list .card .content .price-off {
      color: var(--neutral-transp-50, rgba(64, 79, 87, 0.5));
      margin-top: 16px;
      text-decoration: line-through;
      font-size: var(--font-size-14, 0.77778em); }
      .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(64, 79, 87, 0.5));
      margin-top: 16px;
      font-size: var(--font-size-16, 0.88889em); }
    .cards-default .cards-list .card .calendar-sm + .content-info {
      width: -webkit-calc(100% - 64px);
      width: calc(100% - 64px); }
  .cards-default .card-wrapper.card-vertical-plus-horizontal {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -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: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row wrap;
            -ms-flex-flow: row wrap;
                flex-flow: row wrap;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between; }
      .cards-default .card-wrapper.card-vertical-plus-horizontal > .card-wrapper-horizontal .card-horizontal {
        margin-left: 0;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
            -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: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -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;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -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: -webkit-calc(100% - 304px);
          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: -webkit-calc(100% - 424px);
          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: -webkit-calc(100% - 174px);
          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: -webkit-calc(100% - 214px);
          width: calc(100% - 214px); } }

.calendar-sm {
  width: 50px;
  min-width: 50px;
  border-radius: 3px;
  border: 1px solid var(--neutral-transp-25, rgba(64, 79, 87, 0.25));
  background: white;
  overflow: hidden;
  z-index: 5; }
  .calendar-sm .month {
    background: var(--highlight-base, #006699);
    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.77778em); }
  .calendar-sm .day {
    line-height: 1;
    text-align: center;
    padding: 3px 0;
    font-size: var(--font-size-24, 1.33333em); }
  .calendar-sm .day-abbr {
    line-height: 1;
    color: var(--neutral-transp-75, #404f57);
    text-align: center;
    padding-bottom: 3px;
    font-size: var(--font-size-12, 0.66667em); }

.heading {
  line-height: 1.3;
  margin: 0;
  color: var(--neutral-base, #404f57);
  font-family: var(--heading-font, "PT Serif");
  font-weight: 500; }
  .heading.h-1 {
    font-size: var(--font-size-40, 2.22222em); }
  .heading.h-2 {
    font-size: var(--font-size-32, 1.77778em); }
  .heading.h-3 {
    font-size: var(--font-size-24, 1.33333em); }
  .heading.h-4 {
    font-size: var(--font-size-20, 1.11111em); }
  .heading.h-5 {
    font-size: var(--font-size-16, 0.88889em); }

.paragraph {
  line-height: 1.5;
  color: var(--neutral-base, #404f57);
  font-family: var(--paragraph-font, "Open Sans");
  font-weight: normal;
  margin-bottom: 0; }
  .paragraph.p-1 {
    font-size: var(--font-size-18, 1em); }
  .paragraph.p-2 {
    font-size: var(--font-size-16, 0.88889em); }
  .paragraph.p-3 {
    font-size: var(--font-size-14, 0.77778em); }
  .paragraph.p-4 {
    font-size: var(--font-size-12, 0.66667em); }

.pd-t {
  padding-top: 40px; }

.admin-bar {
  background: #333;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 5500;
  min-height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 15px; }
  .admin-bar .admin-bar-link {
    font-size: .875em;
    font-weight: 100;
    color: white;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    text-decoration: none;
    line-height: 1;
    display: none; }
    @media screen and (min-width: 768px) {
      .admin-bar .admin-bar-link {
        display: inline-block; } }
    .admin-bar .admin-bar-link:hover, .admin-bar .admin-bar-link:focus {
      opacity: .6; }
    .admin-bar .admin-bar-link .fa {
      margin-right: 8px; }
    .admin-bar .admin-bar-link span {
      display: none; }
      @media screen and (min-width: 992px) {
        .admin-bar .admin-bar-link span {
          display: inline-block; } }
  .admin-bar > .content-left img {
    width: 30px;
    height: 30px;
    -o-object-fit: cover;
       object-fit: cover;
    opacity: .2; }
  .admin-bar > .content-left .admin-bar-link {
    margin-left: 32px; }
  .admin-bar > .content-right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap; }
    .admin-bar > .content-right .maintenance-message {
      display: inline-block;
      color: var(--attention-base, #ffae00);
      font-size: .75em; }
      @media screen and (min-width: 768px) {
        .admin-bar > .content-right .maintenance-message {
          font-size: .875em; } }
    .admin-bar > .content-right form {
      margin-left: 16px; }
    .admin-bar > .content-right .admin-bar-link {
      margin-left: 32px; }
    .admin-bar > .content-right .button {
      display: none; }
      @media screen and (min-width: 768px) {
        .admin-bar > .content-right .button {
          display: inline-block; } }

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  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;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  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.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; }

.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -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 #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  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 {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    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: .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; } }

.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: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }
  #smartbanner .sb-close {
    font-size: 34px;
    font-weight: 300;
    color: var(--brand-base, #006699);
    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: -webkit-calc(100% - 98px);
    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, #404f57);
      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, #006699);
    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, 5px);
  border: 1px solid transparent;
  margin-bottom: 16px;
  display: block;
  font-size: var(--font-size-16, 0.88889em);
  position: relative;
  width: 100%; }
  .alert-message[data-type="success"] {
    border-color: var(--success-base, #2ba264);
    background: var(--success-light, #aadac1);
    color: var(--success-dark, #1e7146); }
  .alert-message[data-type="error"] {
    border-color: var(--warning-base, #fc5353);
    background: var(--warning-light, #febaba);
    color: var(--warning-dark, #b03a3a); }
  .alert-message[data-type="attention"] {
    border-color: var(--attention-base, #ffae00);
    background: var(--attention-light, #ffdf99);
    color: var(--attention-dark, #b37a00); }
  .alert-message[data-type="information"] {
    border-color: var(--highlight-base, #006699);
    background: var(--highlight-light, #267da8);
    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;
      -webkit-transform: translateY(-50%);
          -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][data-bg="base"] + [has-gap][data-bg="base"][data-bg="base"] {
  padding-top: 0; }

[has-gap][data-bg="neural"] + [has-gap][data-bg="neural"][data-bg="neural"] {
  padding-top: 0; }

[has-gap][data-bg="brand"] + [has-gap][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; }

/* 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: 10px;
  padding-bottom: 10px; }
  @media only screen and (min-width: 992px) {
    .categories-base {
      padding-top: 20px;
      padding-bottom: 20px; } }
  .categories-base .categories-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 24px; }
    .categories-base .categories-header > .heading {
      color: var(--neutral-transp-75, #404f57); }
  .categories-base .categories-content > .categories-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .categories-base .categories-content > .categories-list.categories-icon {
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
          -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, #006699); }
        .categories-base .categories-content > .categories-list .categories-item:hover .title .count {
          color: var(--highlight-light, #267da8); }
      .categories-base .categories-content > .categories-list .categories-item .picture {
        overflow: hidden;
        border-radius: var(--border-radius, 5px); }
        .categories-base .categories-content > .categories-list .categories-item .picture img {
          max-width: 100%;
          height: auto;
          display: block;
          -o-object-fit: cover;
             object-fit: cover;
          margin: 0 auto; }
    .categories-base .categories-content > .categories-list .info .title {
      -webkit-transition: 0.2s ease-in-out;
      transition: 0.2s ease-in-out; }
      .categories-base .categories-content > .categories-list .info .title .count {
        color: var(--neutral-transp-50, rgba(64, 79, 87, 0.5));
        margin-left: 3px;
        -webkit-transition: 0.2s ease-in-out;
        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: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -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: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -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 .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; } }
  @media screen and (max-width: 768px) {
    .categories-base[data-type="1"][scrollable="true"] .categories-content > .categories-list {
      overflow: auto;
      -webkit-flex-wrap: nowrap;
          -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 {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -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;
      -webkit-transition: 0.2s ease-in-out;
      transition: 0.2s ease-in-out;
      width: -webkit-calc((100% / 2) - 32px);
      width: calc((100% / 2) - 32px);
      min-width: -webkit-calc((90% / 2) - 32px);
      min-width: calc((90% / 2) - 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: -webkit-calc((100% / 4) - 32px);
          width: calc((100% / 4) - 32px);
          min-width: -webkit-calc((90% / 4) - 32px);
          min-width: calc((90% / 4) - 32px); } }
      @media screen and (min-width: 1200px) {
        .categories-base[data-type="1"] .categories-content > .categories-list .categories-item {
          width: -webkit-calc((100% / 5) - 32px);
          width: calc((100% / 5) - 32px);
          min-width: -webkit-calc((90% / 5) - 32px);
          min-width: calc((90% / 5) - 32px); } }
      .categories-base[data-type="1"] .categories-content > .categories-list .categories-item:hover {
        -webkit-transform: scale(1.05);
            -ms-transform: scale(1.05);
                transform: scale(1.05); }
    .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;
      -webkit-flex-wrap: nowrap;
          -ms-flex-wrap: nowrap;
              flex-wrap: nowrap;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
          -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: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    background: var(--neutral-transp-5, rgba(64, 79, 87, 0.05));
    padding: 16px;
    margin-right: 32px;
    margin-bottom: 16px;
    border-radius: var(--border-radius, 5px);
    -webkit-transition: 0.2s ease-in-out;
    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%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -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%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -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 {
      -webkit-transform: scale(1.05);
          -ms-transform: scale(1.05);
              transform: scale(1.05); }
    .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: -webkit-calc(100% - 63px);
    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, #404f57); }
      .categories-base[data-type="2"][data-bg="brand"] .categories-content > .categories-list .categories-item .info .title .count {
        color: var(--neutral-transp-50, rgba(64, 79, 87, 0.5)); }
  .categories-base[data-type="3"] .categories-content {
    max-height: 244px;
    overflow: hidden;
    -webkit-transition: .2s ease-in-out;
    transition: .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;
      -webkit-column-count: 2;
              column-count: 2; }
      @media screen and (min-width: 768px) {
        .categories-base[data-type="3"] .categories-content > .categories-list {
          -webkit-column-count: 3;
                  column-count: 3; } }
      @media screen and (min-width: 992px) {
        .categories-base[data-type="3"] .categories-content > .categories-list {
          -webkit-column-count: 4;
                  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, 5px); }
    .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: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -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 {
        -webkit-transform: rotate(90deg);
            -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, #006699); }
      .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(64, 79, 87, 0.5));
        -webkit-transition: 0.2s ease-in-out;
        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;
        -webkit-box-shadow: none;
                box-shadow: none;
        font-size: 22px;
        -webkit-transition: 0.2s ease-in-out;
        transition: 0.2s ease-in-out;
        color: var(--brand-base, #006699); }
    .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: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row wrap;
            -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 {
            width: 0 !important; }
          @media screen and (min-width: 768px) {
            .categories-base[data-type="4"] .categories-content .toggle-item .toggle-content .nav-wrapper .toggle-nav {
              width: -webkit-calc(100% / 2);
              width: calc(100% / 2); } }
          @media screen and (min-width: 992px) {
            .categories-base[data-type="4"] .categories-content .toggle-item .toggle-content .nav-wrapper .toggle-nav {
              width: -webkit-calc(100% / 3);
              width: calc(100% / 3); } }
          @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: -webkit-calc(100% / 4);
              width: calc(100% / 4); } }
          .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: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -webkit-flex-flow: row nowrap;
                -ms-flex-flow: row nowrap;
                    flex-flow: row nowrap;
            -webkit-box-pack: justify;
            -webkit-justify-content: space-between;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            -webkit-box-align: center;
            -webkit-align-items: center;
                -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, #006699); }
              .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, #006699); }
            .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, #006699); }
            .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, #404f57);
              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, #006699); }
                .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, #006699); }
              .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(64, 79, 87, 0.5));
                -webkit-transition: 0.2s ease-in-out;
                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;
              -webkit-box-shadow: none;
                      box-shadow: none;
              font-size: 18px;
              color: var(--brand-base, #006699); }
  .categories-base[data-type="4"][data-bg="base"] .categories-content .toggle-item {
    background: var(--neutral-transp-5, rgba(64, 79, 87, 0.05)); }
  .categories-base[data-type="6"] {
    padding: 32px 0; }
    .categories-base[data-type="6"] .categories-content {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      padding: 32px 16px;
      border-top: 1px solid var(--neutral-transp-75, #404f57);
      border-bottom: 1px solid var(--neutral-transp-75, #404f57);
      position: relative; }
      @media screen and (min-width: 768px) {
        .categories-base[data-type="6"] .categories-content {
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -webkit-flex-direction: row;
              -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: -webkit-calc(50% + 24px);
        top: calc(50% + 24px);
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        border: 1px solid var(--neutral-transp-50, rgba(64, 79, 87, 0.5));
        border-radius: 9999px;
        background: none;
        color: var(--neutral-transp-50, rgba(64, 79, 87, 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(0, 102, 153, 0.8));
        font-weight: 600;
        font-size: var(--font-size-18, 1em); }
      .categories-base[data-type="6"] .categories-content .trending-list {
        width: -webkit-calc(100% - 56px);
        width: calc(100% - 56px);
        overflow: auto;
        display: -webkit-box;
        display: -webkit-flex;
        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: -webkit-calc(75% - 16px);
            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, #404f57);
        text-transform: uppercase;
        font-weight: bold;
        font-size: var(--font-size-16, 0.88889em);
        text-decoration: none;
        -webkit-transition: 0.2s ease-in-out;
        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, #404f57); }
        .categories-base[data-type="6"] .categories-content .trending-item .count {
          margin-left: 3px;
          color: var(--neutral-transp-50, rgba(64, 79, 87, 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: 10px;
  padding-bottom: 10px; }
  @media only screen and (min-width: 992px) {
    .thin-strip-base {
      padding-top: 20px;
      padding-bottom: 20px; } }
  .thin-strip-base#thin-strip-search .content-form {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
    @media screen and (min-width: 992px) {
      .thin-strip-base#thin-strip-search .content-form {
        -webkit-flex-wrap: nowrap;
            -ms-flex-wrap: nowrap;
                flex-wrap: nowrap; } }
  .thin-strip-base .wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .thin-strip-base .wrapper > .content-social {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap; }
      .thin-strip-base .wrapper > .content-social .social-icon {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        margin-right: 16px;
        text-decoration: none;
        -webkit-transition: 0.2s ease-in-out;
        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, #006699); }
        .thin-strip-base .wrapper > .content-social .social-icon:hover .icon {
          color: var(--highlight-base, #006699); }
        .thin-strip-base .wrapper > .content-social .social-icon .icon {
          font-size: 16px;
          color: var(--color-white-base, white);
          -webkit-transition: 0.2s ease-in-out;
          transition: 0.2s ease-in-out; }
    @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: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: 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; } }
  .thin-strip-base[data-type="1"] .wrapper > .content-location {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-flex-wrap: wrap;
        -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, #006699); }
  .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, #404f57); }
    .thin-strip-base[data-type="1"][is-inverse="true"] .wrapper > .content-location .paragraph {
      color: var(--neutral-base, #404f57); }
  .thin-strip-base[data-type="2"] .wrapper {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -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 {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -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 {
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -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="4"] .wrapper > .content-form .input-group:nth-child(3) {
                width: 280px; } }
  .thin-strip-base[data-type="5"] .wrapper > .content-contact {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
    .thin-strip-base[data-type="5"] .wrapper > .content-contact .paragraph {
      color: var(--color-white-base, white);
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -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); }
      .thin-strip-base[data-type="6"] .wrapper > .content-download .paragraph {
        color: var(--color-white-base, white);
        opacity: .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: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -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: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        width: 100%;
        background: black;
        border: 1px solid white;
        border-radius: var(--border-radius-button, 5px);
        color: white;
        padding: 8px 16px;
        text-decoration: none;
        max-width: 100%;
        width: 100%; }
        @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 .app-icon {
          font-size: 24px;
          line-height: 1; }
          @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: -webkit-calc(100% - 16px);
          max-width: calc(100% - 16px);
          margin-left: 16px; }
          .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"] .wrapper > .content-contact .icon, .thin-strip-base[data-bg="base"] .wrapper > .content-contact .icon {
    color: var(--brand-base, #006699); }
  .thin-strip-base[data-bg="neutral"] .wrapper > .content-contact .paragraph, .thin-strip-base[data-bg="base"] .wrapper > .content-contact .paragraph {
    color: var(--brand-base, #006699); }
    .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, #006699); }
    .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, #006699); }
  .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(0, 102, 153, 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(0, 102, 153, 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, #006699); }
  .thin-strip-base[data-bg="neutral"] .wrapper > .content-download .paragraph, .thin-strip-base[data-bg="base"] .wrapper > .content-download .paragraph {
    color: var(--brand-base, #006699); }
  .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, #006699); }

.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, 1.77778em); }
      @media screen and (min-width: 768px) {
        .hero-default .wrapper > .hero-header .heading {
          font-size: var(--font-size-40, 2.22222em); } }
    .hero-default .wrapper > .hero-header .paragraph {
      color: var(--color-white-base, white);
      line-height: 1.33;
      margin-top: 16px;
      display: none; }
      @media screen and (min-width: 768px) {
        .hero-default .wrapper > .hero-header .paragraph {
          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: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      margin-top: 24px;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -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, #006699); }
    .hero-default .wrapper > .hero-tabs {
      display: -webkit-box;
      display: -webkit-flex;
      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;
          -webkit-flex-wrap: wrap;
              -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 {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        border-radius: 0;
        background: var(--brand-base, #006699);
        color: white; }
        .hero-default .wrapper > .hero-tabs .button:first-child {
          border-top-left-radius: var(--border-radius-button, 5px); }
        .hero-default .wrapper > .hero-tabs .button:last-child {
          border-top-right-radius: var(--border-radius-button, 5px); }
        .hero-default .wrapper > .hero-tabs .button:hover {
          background: var(--brand-light, #267da8); }
        .hero-default .wrapper > .hero-tabs .button.is-active {
          background: var(--brand-dark, #00476b); }
  .hero-default[data-type="1"] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: var(--brand-base, #006699); }
    .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"].empty-hero {
      background-color: var(--brand-base, #006699); }
    @media only screen and (min-width: 768px) {
      .hero-default[data-type="2"] {
        padding: 96px 0; } }
    .hero-default[data-type="2"] .wrapper {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-flow: column wrap;
          -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, 1.77778em);
          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.22222em); } }
      .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: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -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"] .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 {
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -ms-flex-align: start;
              align-items: flex-start;
      text-align: left; }
    .hero-default[data-type="2"][data-align="center"] .wrapper {
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      text-align: center; }
    .hero-default[data-type="2"][data-align="right"] .wrapper {
      -webkit-box-align: end;
      -webkit-align-items: flex-end;
          -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, #006699); }
      .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;
      -webkit-transition: 0.2s ease-in-out;
      transition: 0.2s ease-in-out; }
      .hero-default[data-type="3"] .hero-slider .flickity-button:hover {
        background: var(--highlight-base, #006699); }
    .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, #006699); }
    .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);
        -webkit-transition: 0.2s ease-in-out;
        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: .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: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -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; }
  .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, 5px);
    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 {
      -webkit-box-flex: 1;
      -webkit-flex-grow: 1;
          -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: 14px;
        padding-bottom: 14px;
        padding-left: 24px;
        padding-right: 24px;
        border-radius: var(--border-radius-button, 5px);
        font-size: 0.875em; } }

[active-slider="false"] .flickity-button,
[active-slider="false"] .flickity-page-dots {
  display: none; }

.header[has-opacity="true"] + .hero-wrapper [data-type="4"], .header[is-sticky="true"] + .hero-wrapper [data-type="4"] {
  top: 100px; }
  @media screen and (min-width: 768px) {
    .header[has-opacity="true"] + .hero-wrapper [data-type="4"], .header[is-sticky="true"] + .hero-wrapper [data-type="4"] {
      top: 42%; } }

.hero-wrapper {
  position: relative; }
  .hero-wrapper [data-type="4"] {
    position: absolute;
    width: 90%;
    top: 24px;
    left: 50%;
    background: none;
    z-index: 5;
    padding: 0;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%); }
    @media screen and (min-width: 768px) {
      .hero-wrapper [data-type="4"] {
        top: 34%;
        -webkit-transform: translate(-50%, -48%);
            -ms-transform: translate(-50%, -48%);
                transform: translate(-50%, -48%); } }
    @media screen and (min-width: 992px) {
      .hero-wrapper [data-type="4"] {
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
            -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, #006699); }

.hero-leadgen {
  position: relative; }
  .hero-leadgen .leadgen-content {
    position: absolute;
    z-index: 5;
    width: 300px;
    top: 50%;
    right: 50%;
    -webkit-transform: translateY(-50%) translateX(50%);
        -ms-transform: translateY(-50%) translateX(50%);
            transform: translateY(-50%) translateX(50%); }
    @media screen and (min-width: 992px) {
      .hero-leadgen .leadgen-content {
        right: 90px;
        -webkit-transform: translateY(-50%) translateX(0);
            -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 .leadgen-form {
      margin-top: 8px; }
      .hero-leadgen .leadgen-content .leadgen-form .input {
        width: 100%;
        margin-top: 8px; }
        .hero-leadgen .leadgen-content .leadgen-form .input:first-child {
          margin-top: 0; }
      .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 .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-align="right"] .leadgen-content {
      right: auto;
      left: 120px; }
    .hero-leadgen[data-align="right"] [data-type="3"] .hero-slider .carousel-cell {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
      -webkit-justify-content: flex-end;
          -ms-flex-pack: end;
              justify-content: flex-end; }
      .hero-leadgen[data-align="right"] [data-type="3"] .hero-slider .carousel-cell .slider-content {
        text-align: right;
        margin: 0 120px 0 0; }
      .hero-leadgen[data-align="right"] [data-type="3"] .hero-slider .carousel-cell.empty-hero {
        background-color: var(--brand-base, #006699); } }

.footer > .footer-content {
  padding-top: 10px;
  padding-bottom: 10px;
  background: var(--brand-base, #006699); }
  @media only screen and (min-width: 992px) {
    .footer > .footer-content {
      padding-top: 20px;
      padding-bottom: 20px; } }
  .footer > .footer-content .wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    z-index: 5; }
    @media screen and (min-width: 768px) {
      .footer > .footer-content .wrapper {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between; } }
  .footer > .footer-content .footer-wrapper {
    position: relative;
    padding-bottom: 24px;
    width: 100%; }
    @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: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(white));
      background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 100%); }
    .footer > .footer-content .footer-wrapper:after {
      right: 0;
      background: -webkit-gradient(linear, left top, right top, from(white), to(rgba(255, 255, 255, 0)));
      background: linear-gradient(to right, white 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: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column wrap;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -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 {
      -webkit-column-count: 2;
              column-count: 2; }
    .footer > .footer-content .footer-item[data-content="site-content"] .link-footer:hover {
      color: var(--highlight-base, #006699); }
  @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 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
    @media screen and (min-width: 768px) {
      .footer > .footer-content .footer-item[data-content="social-content"] .footer-item-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-flow: column wrap;
            -ms-flex-flow: column wrap;
                flex-flow: column wrap; } }
    .footer > .footer-content .footer-item[data-content="social-content"] .footer-item-content .link-footer {
      margin-top: 0; }
      @media screen and (min-width: 768px) {
        .footer > .footer-content .footer-item[data-content="social-content"] .footer-item-content .link-footer {
          margin-top: 8px; }
          .footer > .footer-content .footer-item[data-content="social-content"] .footer-item-content .link-footer:first-child {
            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: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -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;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-flow: column wrap;
            -ms-flex-flow: column wrap;
                flex-flow: column wrap;
        margin-top: 0; } }
    .footer > .footer-content .footer-item[data-content="apps-content"] .link-store {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: 100%;
      background: black;
      border: 1px solid white;
      border-radius: var(--border-radius-button, 5px);
      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 {
          -webkit-box-pack: start;
          -webkit-justify-content: flex-start;
              -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: -webkit-calc(100% - 16px);
        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"] * {
        -webkit-flex-shrink: 0;
            -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: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-flex-wrap: wrap;
          -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 {
          -webkit-flex-wrap: nowrap;
              -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 .footer-item-content .link-footer {
    color: var(--color-white-base, white);
    margin-top: 8px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-decoration: none;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out; }
    .footer > .footer-content .footer-item .footer-item-content .link-footer .icon {
      margin-right: 16px; }
    .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: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: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -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: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    margin-top: 24px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%; }
    @media screen and (min-width: 768px) {
      .footer > .footer-content .footer-actions {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -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 {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
            -ms-flex-positive: 1;
                flex-grow: 1; } }
  .footer > .footer-content .footer-contact {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -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: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -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: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex; } }
  .footer > .footer-content .footer-social {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 24px; }
    @media screen and (min-width: 768px) {
      .footer > .footer-content .footer-social {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
            -ms-flex-pack: start;
                justify-content: flex-start; } }
    .footer > .footer-content .footer-social .social-link {
      width: 36px;
      height: 36px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      color: var(--color-white-base, white);
      border: 1px solid;
      border-radius: 9999px;
      margin-left: 16px;
      text-decoration: none; }
      .footer > .footer-content .footer-social .social-link:first-child {
        margin-left: 0; }

.footer > .footer-bar {
  background: var(--brand-dark, #00476b);
  padding: 16px 0; }
  .footer > .footer-bar .wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    @media screen and (min-width: 768px) {
      .footer > .footer-bar .wrapper {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -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: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -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; }
  .footer[data-type="2"] > .footer-content .footer-wrapper .footer-logo .logo-link {
    display: block; }

.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 {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -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 {
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; } }

@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 {
        -webkit-box-align: center;
        -webkit-align-items: center;
            -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: 14px;
        padding-bottom: 14px;
        padding-left: 24px;
        padding-right: 24px;
        border-radius: var(--border-radius-button, 5px);
        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: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  @media screen and (min-width: 768px) {
    .footer[data-type="4"] > .footer-content .footer-bar {
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -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-bar {
    border-top-color: var(--neutral-transp-50, rgba(64, 79, 87, 0.5)); }
    .footer[is-inverse="true"] > .footer-content .footer-bar .footer-copyright {
      color: var(--neutral-base, #404f57); }
    .footer[is-inverse="true"] > .footer-content .footer-bar .footer-powered {
      color: var(--neutral-base, #404f57); }
      .footer[is-inverse="true"] > .footer-content .footer-bar .footer-powered .edirectory-link {
        color: var(--neutral-base, #404f57); }
  @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, #404f57); } }

.footer[is-inverse="true"] .footer-item .footer-item-title {
  color: var(--neutral-base, #404f57); }

.footer[is-inverse="true"] .footer-item .footer-item-content .link-footer {
  color: var(--neutral-base, #404f57); }
  .footer[is-inverse="true"] .footer-item .footer-item-content .link-footer .fa {
    color: var(--neutral-base, #404f57); }

.footer[is-inverse="true"] .footer-item .footer-item-content .footer-info {
  color: var(--neutral-base, #404f57); }
  .footer[is-inverse="true"] .footer-item .footer-item-content .footer-info .fa {
    color: var(--neutral-base, #404f57); }
  .footer[is-inverse="true"] .footer-item .footer-item-content .footer-info a {
    color: var(--neutral-base, #404f57); }

.footer[is-inverse="true"] .footer-contact .contact-item {
  color: var(--neutral-base, #404f57); }
  .footer[is-inverse="true"] .footer-contact .contact-item .icon {
    color: var(--neutral-base, #404f57); }
  .footer[is-inverse="true"] .footer-contact .contact-item a {
    color: var(--neutral-base, #404f57); }

.footer[is-inverse="true"] .footer-social .social-link {
  color: var(--neutral-base, #404f57); }

.footer[is-inverse="true"] .footer-actions [data-content="newsletter-content"] .footer-item-content .footer-item-subtitle {
  color: var(--neutral-base, #404f57); }

.footer[is-inverse="true"] .footer-actions [data-content="newsletter-content"] .footer-item-content .privacy-text-footer {
  color: var(--neutral-base, #404f57); }
  .footer[is-inverse="true"] .footer-actions [data-content="newsletter-content"] .footer-item-content .privacy-text-footer .link {
    color: var(--neutral-base, #404f57); }

.footer[is-inverse="true"] > .footer-bar {
  background: var(--neutral-transp-10, rgba(64, 79, 87, 0.1)); }
  .footer[is-inverse="true"] > .footer-bar .wrapper .footer-copyright {
    color: var(--neutral-base, #404f57); }
  .footer[is-inverse="true"] > .footer-bar .wrapper .footer-powered {
    color: var(--neutral-base, #404f57); }
    .footer[is-inverse="true"] > .footer-bar .wrapper .footer-powered .edirectory-link {
      color: var(--neutral-base, #404f57); }

.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, #e6e6e6); }
  .cards-default[data-type="business"][data-bg="brand"] .cards-list .card.no-image .content .title {
    color: var(--neutral-base, #404f57); }
  .cards-default[data-type="business"][data-bg="brand"] .cards-list .card.no-image .content .categories {
    color: var(--neutral-transp-75, #404f57); }
    .cards-default[data-type="business"][data-bg="brand"] .cards-list .card.no-image .content .categories .share {
      color: var(--neutral-transp-75, #404f57); }
  .cards-default[data-type="business"][data-bg="brand"] .cards-list .card.no-image .content .description .paragraph {
    color: var(--neutral-transp-75, #404f57); }
  .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, #404f57); }
  .cards-default[data-type="business"][data-bg="brand"] .cards-list .card.no-image .content .reviews .reviews-count {
    color: var(--neutral-transp-75, #404f57); }

@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, 0.88889em); }
    .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 {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -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: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -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: -webkit-box;
  display: -webkit-flex;
  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: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  [data-type="events"] .calendar-wrapper .calendar-block {
    border: 1px solid var(--neutral-transp-25, rgba(64, 79, 87, 0.25));
    border-radius: var(--border-radius, 5px);
    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: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -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, #404f57);
            font-family: var(--heading-font, "PT Serif");
            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, #404f57);
              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: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -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(64, 79, 87, 0.5));
          font-weight: bold;
          font-size: var(--font-size-14, 0.77778em);
          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: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-flow: column wrap;
            -ms-flex-flow: column wrap;
                flex-flow: column wrap;
        margin-top: 16px; }
        [data-type="events"] .calendar-wrapper .calendar-block .datepicker tbody tr {
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
          -webkit-justify-content: space-between;
              -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: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
                -ms-flex-pack: center;
                    justify-content: center;
            -webkit-box-align: center;
            -webkit-align-items: center;
                -ms-flex-align: center;
                    align-items: center;
            margin-top: 8px;
            color: var(--neutral-base, #404f57);
            border-radius: 9999px;
            border: 1px solid transparent;
            font-family: var(--paragraph-font, "Open Sans");
            -webkit-transition: 0.2s ease-in-out;
            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(64, 79, 87, 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, #006699);
              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, #006699);
                color: var(--color-white-base, white); }
              [data-type="events"] .calendar-wrapper .calendar-block .datepicker tbody tr .day.active:hover {
                background: var(--highlight-base, #006699);
                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, #006699);
              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(64, 79, 87, 0.1)); }
            [data-type="events"] .calendar-wrapper .calendar-block .datepicker tbody tr .day:hover:not(.disabled) {
              background: white;
              border-color: var(--highlight-base, #006699);
              -webkit-box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.15);
                      box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.15);
              color: var(--highlight-base, #006699); }
          [data-type="events"] .calendar-wrapper .calendar-block .datepicker tbody tr td:not(.day) {
            width: 100%;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -webkit-flex-flow: row wrap;
                -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: -webkit-calc((100% / 4) - 16px);
              width: calc((100% / 4) - 16px);
              height: 45px;
              padding: 0;
              display: -webkit-box;
              display: -webkit-flex;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-pack: center;
              -webkit-justify-content: center;
                  -ms-flex-pack: center;
                      justify-content: center;
              -webkit-box-align: center;
              -webkit-align-items: 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, #404f57);
              border: 1px solid transparent;
              font-family: var(--paragraph-font, "Open Sans");
              font-size: var(--font-size-20, 1.11111em);
              -webkit-transition: 0.2s ease-in-out;
              transition: 0.2s ease-in-out;
              cursor: pointer;
              border-radius: var(--border-radius-icon, 5px); }
              @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.55556em); } }
              [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, #006699);
                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, #006699);
                  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, #006699);
                -webkit-box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.15);
                        box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.15);
                color: var(--highlight-base, #006699); }
  [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: -webkit-calc(350px - 32px);
        width: calc(350px - 32px);
        max-height: 436px;
        margin-top: 0; } }
    @media screen and (min-width: 992px) {
      [data-type="events"] .calendar-wrapper .calendar-events {
        width: -webkit-calc(470px - 32px);
        width: calc(470px - 32px);
        max-height: 460px; } }
    @media screen and (min-width: 1200px) {
      [data-type="events"] .calendar-wrapper .calendar-events {
        width: -webkit-calc(570px - 32px);
        width: calc(570px - 32px);
        max-height: 548px; } }
    [data-type="events"] .calendar-wrapper .calendar-events.is-loading {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: 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(64, 79, 87, 0.25));
      border-radius: var(--border-radius, 5px);
      padding: 16px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -ms-flex-align: start;
              align-items: flex-start;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -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: -webkit-calc(100% - 64px);
        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: 10px; } }

[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, #006699); }

[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, #e6e6e6); }
  [data-type="events"][data-bg="brand"] .cards-list .card.no-image .content .title {
    color: var(--neutral-base, #404f57); }
  [data-type="events"][data-bg="brand"] .cards-list .card.no-image .content .categories {
    color: var(--neutral-transp-75, #404f57); }
  [data-type="events"][data-bg="brand"] .cards-list .card.no-image .content .calendar-sm {
    background: var(--neutral-transp-50, rgba(64, 79, 87, 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, 0.88889em); }
      [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, 0.88889em); }
    .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.11111em); } }

.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%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    background: var(--color-white-dark-5, #f2f2f2);
    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%;
      -webkit-transform: translateX(-50%) rotate(45deg);
          -ms-transform: translateX(-50%) rotate(45deg);
              transform: translateX(-50%) rotate(45deg);
      background: var(--color-white-dark-5, #f2f2f2); }
    .cards-default[data-type="articles"] .share-icon .share-dropdown .social-likes__widget {
      margin: 0;
      -webkit-transition: 0.2s ease-in-out;
      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: -webkit-box;
    display: -webkit-flex;
    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 {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -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 {
      -webkit-box-ordinal-group: 3;
      -webkit-order: 2;
          -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 {
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
          -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 {
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
          -ms-flex-order: 1;
              order: 1; }
    .cards-default[data-type="articles"] .cards-list.cards-betweens[data-align="right"] .card-horizontal-full .picture {
      -webkit-box-ordinal-group: 3;
      -webkit-order: 2;
          -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 {
      -webkit-box-ordinal-group: 3;
      -webkit-order: 2;
          -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 {
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
          -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 {
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
          -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 {
      -webkit-box-ordinal-group: 3;
      -webkit-order: 2;
          -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 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -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 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -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 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2; }
  .cards-default[data-type="articles"] .cards-list[data-align="right"] .card-horizontal-full .picture {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -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 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1; }
  .cards-default[data-type="articles"] .cards-list[data-align="alternade"] .card-horizontal-full:nth-child(odd) .picture {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2; }
  .cards-default[data-type="articles"] .cards-list[data-align="alternade"] .card-horizontal-full:nth-child(Even) .content {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2; }
  .cards-default[data-type="articles"] .cards-list[data-align="alternade"] .card-horizontal-full:nth-child(Even) .picture {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1; } }

.cards-default[data-type="articles"] .cards-list .categories {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -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, #404f57); }

.cards-default[data-type="articles"] .cards-list .card-horizontal-full {
  width: 100%;
  margin-left: 0;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 48px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start; }
  @media screen and (min-width: 992px) {
    .cards-default[data-type="articles"] .cards-list .card-horizontal-full {
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -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 {
      -webkit-box-ordinal-group: 3;
      -webkit-order: 2;
          -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 {
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
          -ms-flex-order: 1;
              order: 1; } }
  .cards-default[data-type="articles"] .cards-list .card-horizontal-full .content {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2; }
    @media screen and (min-width: 992px) {
      .cards-default[data-type="articles"] .cards-list .card-horizontal-full .content {
        width: -webkit-calc(100% - 496px);
        width: calc(100% - 496px); } }
    @media screen and (min-width: 1200px) {
      .cards-default[data-type="articles"] .cards-list .card-horizontal-full .content {
        width: -webkit-calc(100% - 696px);
        width: calc(100% - 696px); } }
    .cards-default[data-type="articles"] .cards-list .card-horizontal-full .content .title {
      font-weight: 600;
      line-height: 1.15;
      margin-top: 16px; }
    .cards-default[data-type="articles"] .cards-list .card-horizontal-full .content .categories {
      margin-top: 0;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
          -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, #404f57); }
  .cards-default[data-type="articles"] .cards-list .card-horizontal-full .picture {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    max-height: 340px; }
    @media screen and (min-width: 992px) {
      .cards-default[data-type="articles"] .cards-list .card-horizontal-full .picture {
        width: 472px; } }
    @media screen and (min-width: 1200px) {
      .cards-default[data-type="articles"] .cards-list .card-horizontal-full .picture {
        width: 672px; } }
    .cards-default[data-type="articles"] .cards-list .card-horizontal-full .picture img {
      width: 100%;
      max-height: 340px;
      -o-object-fit: fill;
         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%;
        border-top: 1px solid var(--neutral-transp-75, #404f57);
        padding: 24px 0; }
        .cards-default[data-type="articles"] .cards-list .card-horizontal-full.list-horizontal:last-child {
          border-bottom: 1px solid var(--neutral-transp-75, #404f57); } }
    .cards-default[data-type="articles"] .cards-list .card-horizontal-full.list-horizontal .content {
      width: 100%; }
      @media screen and (min-width: 992px) {
        .cards-default[data-type="articles"] .cards-list .card-horizontal-full.list-horizontal .content {
          width: -webkit-calc(100% - 324px);
          width: calc(100% - 324px); } }
      .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: 300px; } }

.cards-default[data-type="articles"] .card-wrapper-quarter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -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 {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
            -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 {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
            -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 {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
            -ms-flex-order: 1;
                order: 1; }
      .cards-default[data-type="articles"] .card-wrapper-quarter .cards-list-quarter[data-align="right"] .card-horizontal-full .picture {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
            -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 {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
            -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 {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
            -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 {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
            -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 {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
            -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: -webkit-calc(100% - 294px);
          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: 270px;
          max-height: 170px; } }
  .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(64, 79, 87, 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: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row wrap;
            -ms-flex-flow: row wrap;
                flex-flow: row wrap;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -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(64, 79, 87, 0.25)); }
        .cards-default[data-type="articles"] .card-wrapper-quarter .cards-popular > .list-popular-articles .item-popular-articles .content-right {
          width: -webkit-calc(100% - 42px);
          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; }
          .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, #404f57); }

@media screen and (min-width: 768px) {
  .cards-default[data-type="articles"] .cards-list-half .card[data-columns="2"] {
    width: -webkit-calc(calc(100% / 2) - (16px * 2));
    width: calc(calc(100% / 2) - (16px * 2)); } }
  @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: -webkit-calc((100% / 2) - (16px * 2));
      width: calc((100% / 2) - (16px * 2)); } }

@media screen and (min-width: 992px) {
  .cards-default[data-type="articles"] .cards-list-half .card[data-columns="2"] {
    width: -webkit-calc(calc(100% / 3) - (16px * 2));
    width: calc(calc(100% / 3) - (16px * 2)); } }
  @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: -webkit-calc((100% / 3) - (16px * 2));
      width: calc((100% / 3) - (16px * 2)); } }

@media screen and (min-width: 1200px) {
  .cards-default[data-type="articles"] .cards-list-half .card[data-columns="2"] {
    width: -webkit-calc(calc(100% / 2) - (16px * 2));
    width: calc(calc(100% / 2) - (16px * 2)); } }
  @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: -webkit-calc((100% / 2) - (16px * 2));
      width: calc((100% / 2) - (16px * 2)); } }

.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 .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, 0.88889em); }
    .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; } }

[data-type="recent-reviews"] .cards-list .card:hover .picture {
  -webkit-transform: scale(1);
      -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: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000000));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000000);
    -webkit-transition: 0.2s ease-in-out;
    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: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: -webkit-calc(100% - 32px);
    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, 5px);
      overflow: hidden; }
    [data-type="recent-reviews"] .cards-list .card .picture .picture-info .icon {
      width: 48px;
      height: 48px;
      border-radius: var(--border-radius-icon, 5px);
      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: -webkit-calc(100% - 64px);
      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, 0.88889em); }
  [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: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin: -48px -16px 0;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -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 {
      -webkit-transform: scale(1.1);
          -ms-transform: scale(1.1);
              transform: scale(1.1); }
    [data-type="latest-members"] .members-list .members-item:hover .content .heading {
      color: var(--highlight-base, #006699); }
    [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(64, 79, 87, 0.25));
      margin: 0 auto;
      font-size: var(--font-size-24, 1.33333em);
      color: var(--brand-base, #006699);
      line-height: 96px; }
      [data-type="latest-members"] .members-list .members-item .picture img {
        max-width: 100%;
        height: auto;
        display: block;
        -o-object-fit: cover;
           object-fit: cover;
        -webkit-transition: 0.2s ease-in-out;
        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;
        -webkit-transition: 0.2s ease-in-out;
        transition: 0.2s ease-in-out; }
      [data-type="latest-members"] .members-list .members-item .content .joined-time {
        color: var(--neutral-transp-75, #404f57); }

[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: -webkit-calc(calc(100% / 2) - 32px);
      width: calc(calc(100% / 2) - 32px);
      margin-left: 16px;
      margin-right: 16px; } }
  @media screen and (min-width: 992px) {
    .horizontal-deal .cards-list .card-deals {
      width: 100%;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      background: white;
      border: 1px solid var(--neutral-transp-25, rgba(64, 79, 87, 0.25));
      border-radius: var(--border-radius, 5px); } }
  .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: -webkit-calc(100% - 285px);
      width: calc(100% - 285px);
      margin-top: 0 !important;
      padding-right: 32px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -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, 0.88889em); }
    .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.11111em); } }

.banner:not([type="large-mobile"]) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }

.banner[is-wide="false"], .banner[is-wide=""] {
  padding-top: 10px;
  padding-bottom: 10px; }
  @media only screen and (min-width: 992px) {
    .banner[is-wide="false"], .banner[is-wide=""] {
      padding-top: 20px;
      padding-bottom: 20px; } }

.banner[type="leaderboard"] {
  display: none; }
  @media screen and (min-width: 768px) {
    .banner[type="leaderboard"] {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; } }
  .banner[type="leaderboard"] .banner-link {
    max-width: 728px;
    max-height: 90px; }

.banner[type="large-mobile"][data-count="3"] .container {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; }
  @media screen and (min-width: 768px) {
    .banner[type="large-mobile"][data-count="3"] .container {
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; } }

.banner[type="large-mobile"] .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  @media screen and (min-width: 768px) {
    .banner[type="large-mobile"] .container {
      -webkit-flex-flow: nowrap;
          -ms-flex-flow: nowrap;
              flex-flow: nowrap;
      overflow: auto; }
      .banner[type="large-mobile"] .container::-webkit-scrollbar {
        width: 0px;
        background: transparent; } }

.banner[type="large-mobile"] .banner-link {
  max-width: 320px;
  min-width: 320px;
  max-height: 100px;
  margin-top: 16px; }
  @media screen and (min-width: 768px) {
    .banner[type="large-mobile"] .banner-link {
      max-width: -webkit-calc((100% / 2) - 16px);
      max-width: calc((100% / 2) - 16px);
      min-width: -webkit-calc((100% / 2) - 16px);
      min-width: calc((100% / 2) - 16px);
      margin-top: 0; }
      .banner[type="large-mobile"] .banner-link:not(:first-child) {
        margin-left: 16px; } }
  @media screen and (min-width: 992px) {
    .banner[type="large-mobile"] .banner-link {
      max-width: -webkit-calc((100% / 3) - 16px);
      max-width: calc((100% / 3) - 16px);
      min-width: -webkit-calc((100% / 3) - 16px);
      min-width: calc((100% / 3) - 16px); } }

.banner[type="square"] {
  margin-top: -16px; }
  .banner[type="square"] .banner-link {
    max-width: 250px;
    max-height: 250px;
    margin-top: 16px; }
    @media screen and (min-width: 768px) {
      .banner[type="square"] .banner-link:not(:first-child) {
        margin-left: 16px; } }

.banner[type="skyscraper"] {
  display: none; }
  @media screen and (min-width: 768px) {
    .banner[type="skyscraper"] {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; } }
  .banner[type="skyscraper"] .banner-link {
    max-width: 160px;
    max-height: 600px; }

.banner .banner-link {
  display: block;
  overflow: hidden; }
  .banner .banner-link .banner-image {
    max-width: 100%;
    height: auto;
    display: block;
    -o-object-fit: cover;
       object-fit: cover; }

.banner .banner-sponsored-link {
  width: 320px;
  min-height: 100px;
  font-size: var(--font-size-14, 0.77778em);
  border: 1px solid var(--color-white-transp-50, rgba(255, 255, 255, 0.5));
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column wrap;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none; }
  .banner .banner-sponsored-link span {
    display: block; }
  .banner .banner-sponsored-link .text {
    color: var(--color-white-transp-50, rgba(255, 255, 255, 0.5)); }

.banner[data-bg="base"] .banner-sponsored-link, .banner[data-bg="neutral"] .banner-sponsored-link {
  border-color: var(--neutral-transp-50, rgba(64, 79, 87, 0.5)); }
  .banner[data-bg="base"] .banner-sponsored-link .text, .banner[data-bg="neutral"] .banner-sponsored-link .text {
    color: var(--neutral-transp-50, rgba(64, 79, 87, 0.5)); }

.pricing-plans {
  padding-top: 10px;
  padding-bottom: 10px; }
  @media only screen and (min-width: 992px) {
    .pricing-plans {
      padding-top: 20px;
      padding-bottom: 20px; } }
  .pricing-plans .pricing-header {
    text-align: center; }
    .pricing-plans .pricing-header .paragraph {
      margin-top: 16px;
      display: block;
      opacity: .75; }
  .pricing-plans .pricing-table {
    margin-top: 48px; }
    .pricing-plans .pricing-table .pricing-nav {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .pricing-plans .pricing-table .pricing-nav.multiple-navs {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row nowrap;
            -ms-flex-flow: row nowrap;
                flex-flow: row nowrap;
        overflow: auto;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
            -ms-flex-pack: start;
                justify-content: flex-start; }
        @media screen and (min-width: 992px) {
          .pricing-plans .pricing-table .pricing-nav.multiple-navs {
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -webkit-flex-flow: row wrap;
                -ms-flex-flow: row wrap;
                    flex-flow: row wrap;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
                -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, #006699);
        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, #005782); }
        .pricing-plans .pricing-table .pricing-nav .button.is-active:hover {
          background: var(--highlight-light-2, #4d94b8); }
    .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 {
              -webkit-box-pack: start;
              -webkit-justify-content: flex-start;
                  -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: -webkit-calc(50% + 16px);
              top: calc(50% + 16px);
              left: 0;
              -webkit-transform: translateY(-webkit-calc(-50% + 16px));
                  -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: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row wrap;
            -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 {
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -webkit-flex-flow: row nowrap;
                -ms-flex-flow: row nowrap;
                    flex-flow: row nowrap;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
                -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 {
          -webkit-box-pack: center;
          -webkit-justify-content: center;
              -ms-flex-pack: center;
                  justify-content: center; }
        .pricing-plans .pricing-table .pricing-wrapper .pricing-list.no-margin + .pricing-buttons {
          top: -webkit-calc(50% + 4px);
          top: calc(50% + 4px);
          -webkit-transform: translateY(-webkit-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, 5px);
          border: 1px solid var(--neutral-transp-25, rgba(64, 79, 87, 0.25));
          position: relative;
          -webkit-box-flex: 1;
          -webkit-flex-grow: 1;
              -ms-flex-positive: 1;
                  flex-grow: 1;
          -webkit-flex-shrink: 0;
              -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: -webkit-calc(calc(100% / 2) - 16px);
              max-width: calc(calc(100% / 2) - 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: -webkit-calc((100% / 2) - 16px);
      max-width: calc((100% / 2) - 16px); } }
          @media screen and (min-width: 992px) {
            .pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item {
              max-width: -webkit-calc(calc(100% / 3) - 16px);
              max-width: calc(calc(100% / 3) - 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: -webkit-calc((100% / 3) - 16px);
      max-width: calc((100% / 3) - 16px); } }
          @media screen and (min-width: 1200px) {
            .pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item {
              max-width: -webkit-calc(calc(100% / 4) - 16px);
              max-width: calc(calc(100% / 4) - 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: -webkit-calc((100% / 4) - 16px);
      max-width: calc((100% / 4) - 16px); } }
          .pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item.is-highlighted {
            margin-bottom: 16px;
            border-top: 8px solid var(--highlight-base, #006699);
            border-bottom: 8px solid var(--highlight-base, #006699); }
            @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%;
              -webkit-transform: translateX(-50%);
                  -ms-transform: translateX(-50%);
                      transform: translateX(-50%);
              width: 100%;
              text-align: center;
              transform: translateX(-50%);
              font-family: var(--heading-font, "PT Serif");
              text-transform: uppercase;
              font-weight: bold;
              opacity: .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: .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: .75; }
          .pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-size {
            text-align: center;
            opacity: .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: .75; }
          .pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-action {
            margin-top: 24px;
            text-align: center;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-flow: column wrap;
                -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: -webkit-box;
              display: -webkit-flex;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-orient: vertical;
              -webkit-box-direction: normal;
              -webkit-flex-flow: column wrap;
                  -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 {
                -webkit-box-ordinal-group: 3;
                -webkit-order: 2;
                    -ms-flex-order: 2;
                        order: 2;
                height: 100%;
                margin-top: 32px;
                padding-top: 24px;
                border-top: 1px solid var(--neutral-transp-25, rgba(64, 79, 87, 0.25)); }
              .pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-collapse.is-open .price-toggler {
                -webkit-box-ordinal-group: 4;
                -webkit-order: 3;
                    -ms-flex-order: 3;
                        order: 3; }
                .pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-collapse.is-open .price-toggler .icon {
                  -webkit-transform: rotate(180deg);
                      -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, #404f57); }
              .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, #006699);
              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, #006699);
                font-size: 16px; }
            .pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-collapse .price-advantages {
              margin: 0;
              padding: 0;
              list-style: none;
              -webkit-transition: 0.2s ease-in-out;
              transition: 0.2s ease-in-out; }
              .pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-collapse .price-advantages .price-advantages-item {
                display: -webkit-box;
                display: -webkit-flex;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-orient: horizontal;
                -webkit-box-direction: normal;
                -webkit-flex-flow: row wrap;
                    -ms-flex-flow: row wrap;
                        flex-flow: row wrap;
                -webkit-box-align: center;
                -webkit-align-items: center;
                    -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: .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, #006699);
                  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: -webkit-calc(100% - 32px);
                  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, #404f57); }
  .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, #404f57); }
    @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); } }

.header {
  position: relative; }
  .header > .header-bar {
    background: var(--brand-dark, #00476b);
    line-height: 1;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    display: none; }
    @media screen and (min-width: 992px) {
      .header > .header-bar {
        display: block; } }
    .header > .header-bar .wrapper {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: end;
      -webkit-justify-content: flex-end;
          -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, #006699);
        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 {
        -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
                transform: rotate(180deg); }
      .header > .header-bar .user-button .fa {
        -webkit-transition: 0.2s ease-in-out;
        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;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-flow: column wrap;
            -ms-flex-flow: column wrap;
                flex-flow: column wrap;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
            -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;
          -webkit-transform: rotate(45deg) translateX(-50%);
              -ms-transform: rotate(45deg) translateX(-50%);
                  transform: rotate(45deg) translateX(-50%); }
        .header > .header-bar .user-button .user-content .user-link {
          color: var(--neutral-base, #404f57);
          text-decoration: none;
          margin-top: 16px;
          -webkit-transition: 0.2s ease-in-out;
          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 {
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out; }
    .header > .header-content .wrapper {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; }
    .header > .header-content .header-logo {
      width: 200px;
      height: 80px;
      display: block;
      overflow: hidden;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center; }
    .header > .header-content .content-left {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -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(64, 79, 87, 0.5)); }
      .header > .header-content .content-left .input-group {
        width: 260px; }
    .header > .header-content .content-right {
      display: none;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row;
          -ms-flex-flow: row;
              flex-flow: row;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: end;
      -webkit-justify-content: flex-end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      -webkit-box-align: stretch;
      -webkit-align-items: stretch;
          -ms-flex-align: stretch;
              align-items: stretch;
      margin-left: 16px; }
      @media screen and (min-width: 992px) {
        .header > .header-content .content-right {
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex; } }
      .header > .header-content .content-right .header-form .fa {
        color: var(--neutral-transp-50, rgba(64, 79, 87, 0.5)); }
      .header > .header-content .content-right .button {
        margin-left: 8px;
        padding: 16px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: 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 {
          -webkit-transition: 0.2s ease-in-out;
          transition: 0.2s ease-in-out; }
        .header > .header-content .content-right .user-button.is-open .fa {
          -webkit-transform: rotate(180deg);
              -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;
            -webkit-transform: rotate(45deg) translateX(-50%);
                -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, #404f57);
            text-decoration: none;
            margin-top: 16px;
            -webkit-transition: 0.2s ease-in-out;
            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: -webkit-box;
      display: -webkit-flex;
      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;
        -webkit-box-shadow: 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;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out; }
    @media screen and (min-width: 992px) {
      .header .header-navbar {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex; } }
    .header .header-navbar .navbar-link {
      color: var(--color-white-base, white);
      text-decoration: none;
      margin-left: 32px;
      position: relative;
      -webkit-transition: 0.2s ease-in-out;
      transition: 0.2s ease-in-out; }
      .header .header-navbar .navbar-link:first-child {
        margin-left: 0; }
      .header .header-navbar .navbar-link:hover {
        color: var(--highlight-base, #006699) !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;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-flow: column wrap;
            -ms-flex-flow: column wrap;
                flex-flow: column wrap;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
            -ms-flex-align: start;
                align-items: flex-start;
        padding: 24px;
        margin-top: 16px;
        left: -webkit-calc(100% - 113.5px);
        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;
          -webkit-transform: rotate(45deg) translateX(-50%);
              -ms-transform: rotate(45deg) translateX(-50%);
                  transform: rotate(45deg) translateX(-50%); }
      .header .header-navbar .navbar-link.navbar-dropdown .more-label {
        cursor: pointer;
        -webkit-transition: 0.2s ease-in-out;
        transition: 0.2s ease-in-out; }
        .header .header-navbar .navbar-link.navbar-dropdown .more-label:hover {
          color: var(--highlight-base, #006699); }
          .header .header-navbar .navbar-link.navbar-dropdown .more-label:hover .fa {
            color: var(--highlight-base, #006699); }
        .header .header-navbar .navbar-link.navbar-dropdown .more-label .fa {
          -webkit-transition: 0.2s ease-in-out;
          transition: 0.2s ease-in-out; }
        .header .header-navbar .navbar-link.navbar-dropdown .more-label.is-open .fa {
          -webkit-transform: rotate(180deg);
              -ms-transform: rotate(180deg);
                  transform: rotate(180deg); }
      .header .header-navbar .navbar-link.navbar-dropdown .more-link {
        color: var(--neutral-base, #404f57);
        text-decoration: none;
        margin-top: 8px;
        -webkit-transition: 0.2s ease-in-out;
        transition: 0.2s ease-in-out;
        display: block; }
        .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, #006699); }
    .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: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-flow: column wrap;
            -ms-flex-flow: column wrap;
                flex-flow: column wrap;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
            -ms-flex-align: start;
                align-items: flex-start;
        padding: 24px;
        margin-top: 16px;
        left: -webkit-calc(100% - 113.5px);
        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;
          -webkit-transform: rotate(45deg) translateX(-50%);
              -ms-transform: rotate(45deg) translateX(-50%);
                  transform: rotate(45deg) translateX(-50%); }
      .header .header-navbar .navbar-more .more-label {
        cursor: pointer;
        -webkit-transition: 0.2s ease-in-out;
        transition: 0.2s ease-in-out;
        color: var(--color-white-base, white); }
        .header .header-navbar .navbar-more .more-label:hover {
          color: var(--highlight-base, #006699); }
          .header .header-navbar .navbar-more .more-label:hover .fa {
            color: var(--highlight-base, #006699); }
        .header .header-navbar .navbar-more .more-label .fa {
          -webkit-transition: 0.2s ease-in-out;
          transition: 0.2s ease-in-out; }
        .header .header-navbar .navbar-more .more-label.is-open .fa {
          -webkit-transform: rotate(180deg);
              -ms-transform: rotate(180deg);
                  transform: rotate(180deg); }
      .header .header-navbar .navbar-more .more-link {
        color: var(--neutral-base, #404f57);
        text-decoration: none;
        margin-top: 8px;
        -webkit-transition: 0.2s ease-in-out;
        transition: 0.2s ease-in-out; }
        .header .header-navbar .navbar-more .more-link:first-child {
          margin-top: 0; }
        .header .header-navbar .navbar-more .more-link:hover {
          color: var(--highlight-base, #006699); }
  .header > .navbar-outside {
    background: var(--brand-dark, #00476b);
    padding: 16px 0;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out; }
    .header > .navbar-outside .wrapper {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
    .header > .navbar-outside .header-navbar .navbar-more .more-label {
      color: var(--color-white-base, white); }
    .header > .navbar-outside .header-contact {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      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, #006699);
    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, #006699);
    margin-top: -1px; }
    .header[data-type="1"] > .header-content .header-navbar {
      max-width: -webkit-calc(100% - 224px);
      max-width: calc(100% - 224px); }
  .header[data-type="1"][is-inverse="true"] > .header-bar {
    background: var(--color-white-dark-5, #f2f2f2); }
    .header[data-type="1"][is-inverse="true"] > .header-bar .bar-link:not(.bar-button) {
      color: var(--neutral-base, #404f57); }
  .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, #404f57); }
    .header[data-type="1"][is-inverse="true"] > .header-content .header-navbar .navbar-more .more-label {
      color: var(--neutral-base, #404f57); }
  .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, #006699); }
    .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%;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      @media screen and (min-width: 992px) {
        .header[data-type="2"] > .header-content .content-left {
          width: auto;
          -webkit-box-pack: justify;
          -webkit-justify-content: space-between;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          max-width: -webkit-calc(60% - 32px);
          max-width: calc(60% - 32px); } }
      @media screen and (min-width: 1200px) {
        .header[data-type="2"] > .header-content .content-left {
          max-width: -webkit-calc(80% - 32px);
          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: -webkit-calc(100% - 232px);
          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, #404f57); }
        .header[data-type="2"][is-inverse="true"] > .header-content .header-navbar .navbar-more .more-label {
          color: var(--neutral-base, #404f57); }
      .header[data-type="2"][is-inverse="true"] .content-right .button.is-inverse {
        border-color: var(--neutral-transp-75, #404f57);
        color: var(--neutral-transp-75, #404f57); }
        .header[data-type="2"][is-inverse="true"] .content-right .button.is-inverse:hover {
          border-color: var(--neutral-base, #404f57);
          color: var(--neutral-base, #404f57); }
      .header[data-type="2"][is-inverse="true"] .content-right .user-button {
        color: var(--neutral-base, #404f57); }
    .header[data-type="2"][has-opacity="true"] {
      background: none; }
  .header[data-type="3"] > .header-content {
    background: var(--brand-base, #006699); }
    .header[data-type="3"] > .header-content .content-left {
      width: 100%;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      @media screen and (min-width: 992px) {
        .header[data-type="3"] > .header-content .content-left {
          width: auto;
          -webkit-box-pack: center;
          -webkit-justify-content: center;
              -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 {
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -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, #404f57);
      color: var(--neutral-transp-75, #404f57); }
      .header[data-type="3"][is-inverse="true"] > .header-content .content-right .button.is-inverse:hover {
        border-color: var(--neutral-base, #404f57);
        color: var(--neutral-base, #404f57); }
  .header[data-type="3"][is-inverse="true"] > .navbar-outside {
    background: var(--neutral-transp-10, rgba(64, 79, 87, 0.1)); }
    .header[data-type="3"][is-inverse="true"] > .navbar-outside .header-navbar .navbar-link {
      color: var(--neutral-base, #404f57); }
    .header[data-type="3"][is-inverse="true"] > .navbar-outside .header-navbar .navbar-more .more-label {
      color: var(--neutral-base, #404f57); }
    .header[data-type="3"][is-inverse="true"] > .navbar-outside .header-contact {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      color: var(--neutral-base, #404f57); }
      .header[data-type="3"][is-inverse="true"] > .navbar-outside .header-contact .fa {
        color: var(--neutral-base, #404f57); }
  .header[data-type="3"][is-inverse="true"][is-sticky="true"][has-opacity="false"] .header-content .content-right .user-button {
    color: var(--neutral-base, #404f57); }
  .header[data-type="3"][is-inverse="true"][is-sticky="true"][has-opacity="false"] > .navbar-outside {
    background: var(--neutral-base, #404f57); }
    .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 .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, #006699); }
    .header[data-type="4"] > .header-content .wrapper {
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -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: -webkit-calc(50% - 132px);
        max-width: calc(50% - 132px); } }
    .header[data-type="4"] > .header-content .content-mobile {
      margin-left: 24px; }
  .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 {
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -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, #404f57);
      color: var(--neutral-transp-75, #404f57); }
      .header[data-type="4"][is-inverse="true"] > .header-content .content-right .button.is-inverse:hover {
        border-color: var(--neutral-base, #404f57);
        color: var(--neutral-base, #404f57); }
  .header[data-type="4"][is-inverse="true"] > .navbar-outside {
    background: var(--neutral-transp-10, rgba(64, 79, 87, 0.1)); }
    .header[data-type="4"][is-inverse="true"] > .navbar-outside .header-navbar .navbar-link {
      color: var(--neutral-base, #404f57); }
    .header[data-type="4"][is-inverse="true"] > .navbar-outside .header-navbar .navbar-more .more-label {
      color: var(--neutral-base, #404f57); }
    .header[data-type="4"][is-inverse="true"] > .navbar-outside .header-contact {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      color: var(--neutral-base, #404f57); }
      .header[data-type="4"][is-inverse="true"] > .navbar-outside .header-contact .fa {
        color: var(--neutral-base, #404f57); }
  .header[data-type="4"][is-inverse="true"][is-sticky="true"][has-opacity="false"] .header-content .content-right .user-button {
    color: var(--neutral-base, #404f57); }
  .header[data-type="4"][is-inverse="true"][is-sticky="true"][has-opacity="false"] > .navbar-outside {
    background: var(--neutral-base, #404f57); }
    .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; }
  .header[is-inverse="true"] > .header-content .content-mobile .toggler-button {
    color: var(--brand-base, #006699); }
  @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));
    -webkit-box-shadow: 0 4px 2px -1px 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;
      -webkit-transform: rotate(45deg) translateX(-50%);
          -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: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -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(64, 79, 87, 0.5)); }
      .header > .search-mobile .search-mobile-form .form-group .mobile-search-input {
        margin-left: 12px;
        padding-right: 12px;
        background: none;
        -webkit-box-shadow: none;
                box-shadow: none;
        background-image: none;
        border: none;
        height: 40px;
        outline: none;
        width: 100%;
        font-size: 22px;
        color: var(--neutral-base, #404f57); }
        .header > .search-mobile .search-mobile-form .form-group .mobile-search-input::-webkit-input-placeholder {
          color: var(--neutral-transp-50, rgba(64, 79, 87, 0.5)); }
        .header > .search-mobile .search-mobile-form .form-group .mobile-search-input::-moz-placeholder {
          color: var(--neutral-transp-50, rgba(64, 79, 87, 0.5)); }
        .header > .search-mobile .search-mobile-form .form-group .mobile-search-input:-ms-input-placeholder {
          color: var(--neutral-transp-50, rgba(64, 79, 87, 0.5)); }
        .header > .search-mobile .search-mobile-form .form-group .mobile-search-input:-moz-placeholder {
          color: var(--neutral-transp-50, rgba(64, 79, 87, 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: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -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.77778em);
      color: var(--neutral-transp-50, rgba(64, 79, 87, 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: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -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, 1em);
            font-weight: bold;
            color: var(--neutral-base, #404f57);
            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.83333em);
            color: var(--neutral-transp-75, #404f57); }
        .header > .search-mobile .search-results .results-list .results-item .item-categorie {
          font-size: var(--font-size-16, 0.88889em);
          color: var(--neutral-transp-75, #404f57); }
  .header > .navbar-mobile {
    display: none;
    position: relative;
    border-top: 1px solid var(--color-black-transp-25, rgba(0, 0, 0, 0.25));
    -webkit-box-shadow: 0 4px 2px -1px 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;
      -webkit-transform: rotate(45deg) translateX(-50%);
          -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: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -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;
          -o-object-fit: cover;
             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, 1em);
          font-weight: bold; }
        .header > .navbar-mobile .navbar-user .user-info .user-date {
          font-size: var(--font-size-12, 0.66667em);
          color: var(--neutral-transp-50, rgba(64, 79, 87, 0.5)); }
    .header > .navbar-mobile .navbar-links {
      padding: 24px 12px 24px 40px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-flow: column wrap;
          -ms-flex-flow: column wrap;
              flex-flow: column wrap; }
      .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, 1em);
        color: var(--neutral-base, #404f57);
        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, #006699); }
      .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 {
        -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
                transform: rotate(180deg); }
      .header > .navbar-mobile .navbar-links .navbar-dropdown .more-label .fa {
        -webkit-transition: 0.2s ease-in-out;
        transition: 0.2s ease-in-out; }
      .header > .navbar-mobile .navbar-links .navbar-dropdown .more-link {
        font-size: var(--font-size-15, 0.83333em);
        color: var(--neutral-base, #404f57);
        text-decoration: none;
        display: block; }
        .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, #006699); }
    .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: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        color: var(--neutral-base, #404f57); }
        .header > .navbar-mobile .navbar-content .phone-contact .fa {
          color: var(--neutral-base, #404f57);
          margin-right: 16px; }

.video-gallery {
  padding-top: 10px;
  padding-bottom: 10px; }
  @media only screen and (min-width: 992px) {
    .video-gallery {
      padding-top: 20px;
      padding-bottom: 20px; } }
  .video-gallery .video-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 24px; }
    .video-gallery .video-header > .heading {
      color: var(--neutral-transp-75, #404f57); }
  .video-gallery .video-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -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, 5px);
        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 {
          -webkit-transition: 0.2s ease-in-out;
          transition: 0.2s ease-in-out; }
        .video-gallery .video-list .video-item .video-picture:before {
          content: "";
          position: absolute;
          width: 100px;
          height: 60px;
          top: -webkit-calc(50% - 30px);
          top: calc(50% - 30px);
          left: 50%;
          -webkit-transform: translate(-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: -webkit-calc(50% - 16px);
          top: calc(50% - 16px);
          left: -webkit-calc(50% + 5px);
          left: calc(50% + 5px);
          -webkit-transform: translate(-50%);
              -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(0, 102, 153, 0.8)); }
      .video-gallery .video-list .video-item .video-description {
        margin-top: 16px;
        color: var(--neutral-transp-75, #404f57);
        font-weight: bold; }
  .video-gallery[data-columns="4"] .video-list .video-item {
    width: 100%; }
    @media screen and (min-width: 768px) {
      .video-gallery[data-columns="4"] .video-list .video-item {
        width: -webkit-calc(calc(100% / 2) - (16px * 2));
        width: calc(calc(100% / 2) - (16px * 2));
        margin-right: 16px;
        margin-left: 16px; }
        @supports (-ms-ime-align: auto) {
          .video-gallery[data-columns="4"] .video-list .video-item {
            width: -webkit-calc((100% / 2) - (16px * 2) - 1px);
            width: calc((100% / 2) - (16px * 2) - 1px); } } }
    @media screen and (min-width: 992px) {
      .video-gallery[data-columns="4"] .video-list .video-item {
        width: -webkit-calc(calc(100% / 3) - (16px * 2));
        width: calc(calc(100% / 3) - (16px * 2));
        min-width: auto;
        margin-right: 16px; }
        @supports (-ms-ime-align: auto) {
          .video-gallery[data-columns="4"] .video-list .video-item {
            width: -webkit-calc((100% / 3) - (16px * 2) - 1px);
            width: calc((100% / 3) - (16px * 2) - 1px); } } }
    @media screen and (min-width: 1200px) {
      .video-gallery[data-columns="4"] .video-list .video-item {
        width: -webkit-calc((100% / 4) - (16px * 2));
        width: calc((100% / 4) - (16px * 2)); }
        @supports (-ms-ime-align: auto) {
          .video-gallery[data-columns="4"] .video-list .video-item {
            width: -webkit-calc((100% / 4) - (16px * 2) - 1px);
            width: calc((100% / 4) - (16px * 2) - 1px); } } }
  .video-gallery[data-columns="3"] .video-list .video-item {
    width: 100%; }
    @media screen and (min-width: 768px) {
      .video-gallery[data-columns="3"] .video-list .video-item {
        width: -webkit-calc(calc(100% / 2) - (16px * 2));
        width: calc(calc(100% / 2) - (16px * 2));
        margin-right: 16px;
        margin-left: 16px; }
        @supports (-ms-ime-align: auto) {
          .video-gallery[data-columns="3"] .video-list .video-item {
            width: -webkit-calc((100% / 2) - (16px * 2) - 1px);
            width: calc((100% / 2) - (16px * 2) - 1px); } } }
    @media screen and (min-width: 992px) {
      .video-gallery[data-columns="3"] .video-list .video-item {
        width: -webkit-calc(calc(100% / 3) - (16px * 2));
        width: calc(calc(100% / 3) - (16px * 2));
        min-width: auto;
        margin-right: 16px; }
        @supports (-ms-ime-align: auto) {
          .video-gallery[data-columns="3"] .video-list .video-item {
            width: -webkit-calc((100% / 3) - (16px * 2) - 1px);
            width: calc((100% / 3) - (16px * 2) - 1px); } } }
    @media screen and (min-width: 1200px) {
      .video-gallery[data-columns="3"] .video-list .video-item {
        width: -webkit-calc((100% / 3) - (16px * 2));
        width: calc((100% / 3) - (16px * 2)); }
        @supports (-ms-ime-align: auto) {
          .video-gallery[data-columns="3"] .video-list .video-item {
            width: -webkit-calc((100% / 3) - (16px * 2) - 1px);
            width: calc((100% / 3) - (16px * 2) - 1px); } } }
  .video-gallery[data-columns="2"] .video-list .video-item {
    width: 100%; }
    @media screen and (min-width: 768px) {
      .video-gallery[data-columns="2"] .video-list .video-item {
        width: -webkit-calc(calc(100% / 2) - (16px * 2));
        width: calc(calc(100% / 2) - (16px * 2));
        margin-right: 16px;
        margin-left: 16px; }
        @supports (-ms-ime-align: auto) {
          .video-gallery[data-columns="2"] .video-list .video-item {
            width: -webkit-calc((100% / 2) - (16px * 2) - 1px);
            width: calc((100% / 2) - (16px * 2) - 1px); } } }
    @media screen and (min-width: 992px) {
      .video-gallery[data-columns="2"] .video-list .video-item {
        width: -webkit-calc(calc(100% / 2) - (16px * 2));
        width: calc(calc(100% / 2) - (16px * 2));
        min-width: auto;
        margin-right: 16px; }
        @supports (-ms-ime-align: auto) {
          .video-gallery[data-columns="2"] .video-list .video-item {
            width: -webkit-calc((100% / 2) - (16px * 2) - 1px);
            width: calc((100% / 2) - (16px * 2) - 1px); } } }
    @media screen and (min-width: 1200px) {
      .video-gallery[data-columns="2"] .video-list .video-item {
        width: -webkit-calc((100% / 2) - (16px * 2));
        width: calc((100% / 2) - (16px * 2)); }
        @supports (-ms-ime-align: auto) {
          .video-gallery[data-columns="2"] .video-list .video-item {
            width: -webkit-calc((100% / 2) - (16px * 2) - 1px);
            width: calc((100% / 2) - (16px * 2) - 1px); } } }
    @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)); }

.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: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -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) {
      -webkit-box-ordinal-group: 3;
      -webkit-order: 2;
          -ms-flex-order: 2;
              order: 2; }
      @media screen and (min-width: 992px) {
        .cards-default .centralized-highglighted-card > .card-wrapper:nth-child(1) {
          -webkit-box-ordinal-group: 2;
          -webkit-order: 1;
              -ms-flex-order: 1;
                  order: 1; } }
    .cards-default .centralized-highglighted-card > .card-wrapper:nth-child(2) {
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
          -ms-flex-order: 1;
              order: 1; }
      @media screen and (min-width: 992px) {
        .cards-default .centralized-highglighted-card > .card-wrapper:nth-child(2) {
          -webkit-box-ordinal-group: 3;
          -webkit-order: 2;
              -ms-flex-order: 2;
                  order: 2; } }
    .cards-default .centralized-highglighted-card > .card-wrapper:nth-child(3) {
      -webkit-box-ordinal-group: 4;
      -webkit-order: 3;
          -ms-flex-order: 3;
              order: 3; }
      @media screen and (min-width: 992px) {
        .cards-default .centralized-highglighted-card > .card-wrapper:nth-child(3) {
          -webkit-box-ordinal-group: 4;
          -webkit-order: 3;
              -ms-flex-order: 3;
                  order: 3; } }
    .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, 5px); }
      @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;
        -webkit-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out; }
      .cards-default .centralized-highglighted-card > .card-wrapper .card-centralized:hover:before {
        opacity: .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(0, 102, 153, 0.5));
        -webkit-transition: .2s ease-in-out;
        transition: .2s ease-in-out; }
        .cards-default .centralized-highglighted-card > .card-wrapper .card-centralized .content .title {
          color: var(--color-white-base, white);
          text-decoration: none;
          margin-bottom: 8px;
          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: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-flex-wrap: wrap;
              -ms-flex-wrap: wrap;
                  flex-wrap: wrap;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center;
          margin-top: 16px; }
          .cards-default .centralized-highglighted-card > .card-wrapper .card-centralized .content .author .author-picture {
            width: 48px;
            height: 48px;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
                -ms-flex-pack: center;
                    justify-content: center;
            -webkit-box-align: center;
            -webkit-align-items: 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;
              -o-object-fit: cover;
                 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: -webkit-calc(100% - 64px);
            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, 5px);
        top: 16px;
        left: 16px;
        line-height: 1;
        padding: 8px;
        color: var(--neutral-base, #404f57);
        z-index: 5;
        font-weight: bold;
        text-decoration: none; }

.section-headers {
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center; }
  @media only screen and (min-width: 992px) {
    .section-headers {
      padding-top: 20px;
      padding-bottom: 20px; } }
  .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, #006699); }
  .section-headers[data-bg="neutral"] {
    background: var(--neutral-transp-5, rgba(64, 79, 87, 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, #404f57); }

.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, #006699);
      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, 5px);
        position: absolute;
        top: 48px;
        left: 50%;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
        z-index: 5; }
    .details-default > .details-modal .modal-close {
      position: absolute;
      color: var(--neutral-base, #404f57);
      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.55556em); }
      .details-default > .details-modal .modal-rate .select-rating {
        -ms-touch-action: manipulation;
            touch-action: manipulation;
        cursor: pointer;
        -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
                transform: rotate(180deg); }
        .details-default > .details-modal .modal-rate .select-rating span {
          display: inline-block;
          font-size: 30px;
          cursor: pointer;
          -webkit-transform: rotate(180deg);
              -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, #404f57);
        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 {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
            -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: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap; }
        @media screen and (min-width: 992px) {
          .details-default > .details-modal .modal-form .form-actions {
            -webkit-flex-wrap: nowrap;
                -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 {
        -webkit-flex-wrap: nowrap;
            -ms-flex-wrap: nowrap;
                flex-wrap: nowrap;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
            -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;
            -o-object-fit: cover;
               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-preview .modal-close {
      color: var(--highlight-base, #006699); }
    .details-default > .details-modal.modal-preview img {
      max-width: 100%;
      height: auto;
      display: block;
      -o-object-fit: cover;
         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: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
          -webkit-justify-content: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: center;
          -webkit-align-items: 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: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
          -webkit-justify-content: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: center;
          -webkit-align-items: 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, 5px);
      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(../../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: -webkit-calc(100% - 15px);
          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: -webkit-calc(100% - 40px);
          width: calc(100% - 40px);
          border-bottom: 2px dashed var(--neutral-transp-25, rgba(64, 79, 87, 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: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -webkit-flex-flow: row wrap;
              -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(64, 79, 87, 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(64, 79, 87, 0.05)); }
        .details-default > .details-modal .modal-default.deals-coupon .deals-code strong {
          font-weight: bold;
          color: var(--neutral-transp-75, #404f57); }
        .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, #006699); }
    .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 .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%;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
        margin-top: 16px;
        text-align: center;
        display: none;
        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%;
          -webkit-transform: translateX(-50%) rotate(45deg);
              -ms-transform: translateX(-50%) rotate(45deg);
                  transform: translateX(-50%) rotate(45deg); }
    .details-default > .details-header .details-picture {
      overflow: hidden;
      border-radius: var(--border-radius-icon, 5px); }
    .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: -webkit-box;
      display: -webkit-flex;
      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.66667em); }
        .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: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-flow: column wrap;
          -ms-flex-flow: column wrap;
              flex-flow: column wrap;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 32px 0;
      position: relative;
      background-color: var(--brand-base, #006699);
      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 .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: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-flow: column wrap;
          -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; }
    .details-default > .details-header.details-header-mobile .details-header-navbar-mobile {
      position: relative;
      z-index: 5;
      width: 100%;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row nowrap;
          -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; }
      .details-default > .details-header.details-header-mobile .details-header-navbar-mobile .tab-navbar {
        color: var(--neutral-base, #404f57);
        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, #006699); }
    .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;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -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: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex; } }
      .details-default > .details-header.details-header-mobile .detail-info-mobile .details-categories {
        color: var(--neutral-transp-50, rgba(64, 79, 87, 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: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -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: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -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;
              -o-object-fit: cover;
                 object-fit: cover; }
          .details-default > .details-header.details-header-mobile .detail-info-mobile .details-certified .item-certified .title {
            color: var(--neutral-base, #404f57);
            width: -webkit-calc(100% - 56px);
            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: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: start;
          -webkit-align-items: flex-start;
              -ms-flex-align: start;
                  align-items: flex-start;
          color: var(--neutral-base, #404f57);
          margin-top: 8px;
          word-break: break-word; }
          .details-default > .details-header.details-header-mobile .detail-info-mobile .details-contact .contact-item.contact-open-time {
            -webkit-box-align: start;
            -webkit-align-items: flex-start;
                -ms-flex-align: start;
                    align-items: flex-start; }
          .details-default > .details-header.details-header-mobile .detail-info-mobile .details-contact .contact-item-name {
            -webkit-box-align: center;
            -webkit-align-items: center;
                -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 {
            -webkit-box-align: center;
            -webkit-align-items: center;
                -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, #404f57); }
          .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: -webkit-box;
        display: -webkit-flex;
        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, #404f57);
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
          -webkit-justify-content: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: center;
          -webkit-align-items: 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: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; }
    .details-default > .details-header .details-general {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -ms-flex-align: start;
              align-items: flex-start;
      width: 45%; }
      .details-default > .details-header .details-general .details-info {
        width: 100%; }
        .details-default > .details-header .details-general .details-info .details-title {
          display: -webkit-box;
          display: -webkit-flex;
          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: -webkit-box;
          display: -webkit-flex;
          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 .tooltip {
          position: relative;
          z-index: 10; }
          .details-default > .details-header .details-general .details-info .tooltip:before, .details-default > .details-header .details-general .details-info .tooltip:after {
            position: absolute;
            visibility: hidden;
            opacity: 0;
            left: 50%;
            top: -webkit-calc(100% + 10px);
            top: calc(100% + 10px);
            pointer-events: none;
            -webkit-transition: 0.2s;
            transition: 0.2s;
            will-change: transform; }
          .details-default > .details-header .details-general .details-info .tooltip:before {
            content: attr(data-tooltip);
            padding: 10px 18px;
            min-width: 50px;
            max-width: 300px;
            width: -webkit-max-content;
            width: max-content;
            width: -moz-max-content;
            border-radius: 6px;
            font-size: 14px;
            background-color: rgba(59, 72, 80, 0.9);
            background-image: linear-gradient(30deg, rgba(59, 72, 80, 0.44), rgba(59, 68, 75, 0.44), rgba(60, 82, 88, 0.44));
            -webkit-box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
                    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
            color: #fff;
            text-align: center;
            white-space: pre-wrap;
            -webkit-transform: translate(-50%, -5px) scale(0.5);
                -ms-transform: translate(-50%, -5px) scale(0.5);
                    transform: translate(-50%, -5px) scale(0.5); }
          .details-default > .details-header .details-general .details-info .tooltip:hover:before {
            visibility: visible;
            opacity: 1;
            -webkit-transition-delay: 0.1s;
                    transition-delay: 0.1s;
            -webkit-transform: translate(-50%, -5px) scale(1);
                -ms-transform: translate(-50%, -5px) scale(1);
                    transform: translate(-50%, -5px) scale(1); }
        .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: 8px; }
        .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: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center;
          margin-top: 8px; }
          .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; }
        .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: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center;
          color: var(--color-white-transp-75, rgba(255, 255, 255, 0.75));
          margin-top: 8px; }
          .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 .fa {
            color: var(--badge-base, #ffc800); }
          .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.66667em); }
            .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: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -webkit-flex-flow: row;
              -ms-flex-flow: row;
                  flex-flow: row;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -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: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -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: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -webkit-flex-flow: row wrap;
              -ms-flex-flow: row wrap;
                  flex-flow: row wrap;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -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: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -webkit-justify-content: space-between;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            -webkit-box-align: center;
            -webkit-align-items: center;
                -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;
                -o-object-fit: cover;
                   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: -webkit-calc(100% - 44px);
              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 {
        width: 96px;
        height: 96px;
        margin: 0 auto; }
      .details-default > .details-header .details-general-mobile .details-info {
        margin-top: 24px; }
      .details-default > .details-header .details-general-mobile .details-title {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center; }
        .details-default > .details-header .details-general-mobile .details-title .heading {
          max-width: -webkit-calc(100% - 72px);
          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: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: 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: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      background: rgba(0, 0, 0, 0.8);
      padding: 8px;
      -webkit-transition: .4s ease-in-out;
      transition: .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;
        -webkit-transition: 0.2s ease-in-out;
        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 .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: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -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 {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
            -ms-flex-align: start;
                align-items: flex-start; }
      .details-default > .details-header .details-contact .contact-item-name {
        -webkit-box-align: center;
        -webkit-align-items: center;
            -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 {
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center; }
      .details-default > .details-header .details-contact .contact-item.item-phone a {
        color: var(--highlight-base, #006699); }
        @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;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -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: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: 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: 5;
      padding-bottom: 1px;
      width: 100%;
      -webkit-transition: 0.2s ease-in-out;
      transition: 0.2s ease-in-out; }
      .details-default > .details-header .details-header-navbar:not(.is-fixed) .container {
        max-width: 100%;
        padding: 0; }
      .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;
        -webkit-transition: 0.2s ease-in-out;
        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: 10px;
    padding-bottom: 10px; }
    @media only screen and (min-width: 992px) {
      .details-default > .detail-body:not(.no-padding) {
        padding-top: 20px;
        padding-bottom: 20px; } }
  .details-default > .detail-body .description {
    width: 100%; }
  .details-default > .detail-body .description-picture {
    border-radius: var(--border-radius, 5px);
    overflow: hidden; }
  .details-default > .detail-body .details-slider {
    border-radius: var(--border-radius, 5px);
    overflow: hidden;
    width: 100%; }
    .details-default > .detail-body .details-slider .carousel-cell {
      width: 100%;
      display: block; }
      .details-default > .detail-body .details-slider .carousel-cell img {
        width: 100%; }
  .details-default > .detail-body .details-slider-nav {
    margin-top: 8px;
    border-radius: var(--border-radius, 5px);
    overflow: hidden;
    width: 100%; }
    .details-default > .detail-body .details-slider-nav .carousel-cell {
      margin-left: 8px;
      border-radius: var(--border-radius, 5px);
      overflow: hidden;
      width: -webkit-calc(100% / 3);
      width: calc(100% / 3);
      display: block; }
      .details-default > .detail-body .details-slider-nav .carousel-cell img {
        max-width: 100%;
        height: auto;
        display: block;
        -o-object-fit: cover;
           object-fit: cover; }
    .details-default > .detail-body .details-slider-nav .flickity-button {
      background: var(--color-white-transp-50, rgba(255, 255, 255, 0.5));
      -webkit-transition: 0.2s ease-in-out;
      transition: 0.2s ease-in-out; }
      .details-default > .detail-body .details-slider-nav .flickity-button:hover {
        background: var(--color-white-transp-75, rgba(255, 255, 255, 0.75)); }
        .details-default > .detail-body .details-slider-nav .flickity-button:hover .flickity-button-icon {
          fill: var(--highlight-base, #006699); }
      .details-default > .detail-body .details-slider-nav .flickity-button.flickity-prev-next-button {
        width: 40px;
        height: 100%;
        border-radius: 0; }
      .details-default > .detail-body .details-slider-nav .flickity-button.previous {
        left: 0; }
      .details-default > .detail-body .details-slider-nav .flickity-button.next {
        right: 0; }
      .details-default > .detail-body .details-slider-nav .flickity-button .flickity-button-icon {
        fill: var(--neutral-base, #404f57);
        -webkit-transition: 0.2s ease-in-out;
        transition: 0.2s ease-in-out; }
  .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 .tab-item {
    margin-top: 32px; }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item:first-child {
      margin-top: 0; }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item:not(:first-child) {
      border-top: 1px solid var(--neutral-transp-25, rgba(64, 79, 87, 0.25));
      padding-top: 24px; }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item .tab-item-heading {
      margin-bottom: 24px; }
      .details-default > .detail-body .detail-body-content .tab-content .tab-item .tab-item-heading .heading {
        color: var(--neutral-transp-75, #404f57);
        font-weight: bold; }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item .tab-item-content#long-description:not(.display) {
      margin-top: 24px;
      display: none; }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item .tab-item-content#long-description img {
      max-width: 100%;
      height: auto;
      display: block;
      -o-object-fit: cover;
         object-fit: cover; }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item-about .tab-item-content {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -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 {
          overflow: hidden; } }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item-about .picture {
      border-radius: var(--border-radius, 5px);
      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 {
          width: 322px; } }
      .details-default > .detail-body .detail-body-content .tab-content .tab-item-about .picture img {
        max-width: 100%;
        height: auto;
        display: block;
        -o-object-fit: cover;
           object-fit: cover; }
      .details-default > .detail-body .detail-body-content .tab-content .tab-item-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 {
            margin-top: 0;
            width: -webkit-calc(100% - 346px);
            width: calc(100% - 346px); } }
      .details-default > .detail-body .detail-body-content .tab-content .tab-item-about .picture .button {
        position: absolute;
        bottom: 0;
        left: 0;
        background: var(--neutral-transp-80, #404f57);
        color: var(--color-white-base, white); }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item-about .description p {
      text-align: justify; }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item-about .description .summary-description {
      opacity: .75; }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item-features .tab-item-content {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
          -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 {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 8px 12px 8px 8px;
      margin-left: 16px;
      margin-bottom: 16px;
      border-radius: var(--border-radius-icon, 5px);
      font-weight: 300;
      color: var(--highlight-base, #006699);
      background: var(--highlight-transp-10, rgba(0, 102, 153, 0.1)); }
      .details-default > .detail-body .detail-body-content .tab-content .tab-item-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 {
      display: block; }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item-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 {
          height: 400px;
          max-width: 100%; } }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item-video .description {
      margin-top: 16px;
      color: var(--neutral-base, #404f57); }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item-others .tab-item-content {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
      .details-default > .detail-body .detail-body-content .tab-content .tab-item-others .tab-item-content .other-name {
        font-size: var(--font-size-14, 0.77778em);
        background: var(--neutral-transp-10, rgba(64, 79, 87, 0.1));
        padding: 8px 12px 8px 8px;
        border-radius: 3px;
        color: var(--highlight-base, #006699); }
        .details-default > .detail-body .detail-body-content .tab-content .tab-item-others .tab-item-content .other-name .fa {
          margin-right: 4px; }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
      .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .reviews-vote {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row wrap;
            -ms-flex-flow: row wrap;
                flex-flow: row wrap;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center; }
        .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .reviews-vote .reviews-rating {
          color: var(--neutral-transp-50, rgba(64, 79, 87, 0.5));
          font-weight: bold;
          font-size: var(--font-size-20, 1.11111em); }
        .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .reviews-vote .reviews-stars {
          color: var(--neutral-transp-50, rgba(64, 79, 87, 0.5));
          margin-left: 8px; }
          .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .reviews-vote .reviews-stars .fa-star, .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .reviews-vote .reviews-stars .fa-star-o, .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .reviews-vote .reviews-stars .fa-star-half-o {
            color: var(--badge-base, #ffc800); }
        .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .reviews-vote .reviews-value {
          margin-left: 4px;
          font-weight: 300;
          color: var(--badge-base, #ffc800);
          font-size: var(--font-size-12, 0.66667em); }
          .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .reviews-vote .reviews-value:before {
            content: "("; }
          .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .reviews-vote .reviews-value:after {
            content: ")"; }
        .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .reviews-vote .reviews-count {
          font-weight: 300;
          color: var(--neutral-transp-75, #404f57);
          margin-left: 24px; }
        .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .reviews-vote .button {
          margin-left: 24px; }
      .details-default > .detail-body .detail-body-content .tab-content .tab-item-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 {
          margin-left: 0; }
      .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-header .review-filter select {
        outline: none; }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list {
      margin-top: 24px; }
      .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row wrap;
            -ms-flex-flow: row wrap;
                flex-flow: row wrap;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
            -ms-flex-align: start;
                align-items: flex-start;
        margin-top: 24px; }
        .details-default > .detail-body .detail-body-content .tab-content .tab-item-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-picture {
          width: 48px;
          height: 48px;
          border-radius: 50%;
          overflow: hidden;
          text-align: center;
          line-height: 48px; }
          .details-default > .detail-body .detail-body-content .tab-content .tab-item-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 {
            max-width: 100%;
            height: auto;
            display: block;
            -o-object-fit: cover;
               object-fit: cover; }
        .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content {
          width: -webkit-calc(100% - 64px);
          width: calc(100% - 64px); }
          .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-author {
            color: var(--neutral-base, #404f57);
            font-weight: bold; }
          .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-date {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -webkit-flex-flow: row wrap;
                -ms-flex-flow: row wrap;
                    flex-flow: row wrap;
            color: var(--neutral-transp-50, rgba(64, 79, 87, 0.5)); }
            .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-date .reviews-stars {
              margin-left: 8px; }
              .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-date .reviews-stars .fa-star, .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-date .reviews-stars .fa-star-o, .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-date .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-date .reviews-value {
              margin-left: 4px;
              font-weight: 300;
              color: var(--badge-base, #ffc800);
              font-size: var(--font-size-12, 0.66667em); }
              .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-date .reviews-value:before {
                content: "("; }
              .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-date .reviews-value:after {
                content: ")"; }
          .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-description {
            color: var(--neutral-transp-75, #404f57);
            margin-top: 8px; }
          .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-helpfull {
            color: var(--neutral-transp-50, rgba(64, 79, 87, 0.5));
            margin-top: 8px; }
            .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-helpfull .review-helpfull-vote {
              display: -webkit-box;
              display: -webkit-flex;
              display: -ms-flexbox;
              display: flex;
              margin-top: 4px; }
              .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 {
                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 {
                  margin-right: 2px; }
              .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 {
                margin-left: 16px; }
          .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-reply {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -webkit-flex-flow: row wrap;
                -ms-flex-flow: row wrap;
                    flex-flow: row wrap;
            -webkit-box-pack: justify;
            -webkit-justify-content: space-between;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            -webkit-box-align: start;
            -webkit-align-items: flex-start;
                -ms-flex-align: start;
                    align-items: flex-start;
            border-left: 2px solid var(--neutral-transp-25, rgba(64, 79, 87, 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 {
              width: 48px;
              height: 48px;
              overflow: hidden;
              border-radius: var(--border-radius, 5px); }
            .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-reply .reply-content {
              width: -webkit-calc(100% - 64px);
              width: calc(100% - 64px); }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-pagination {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: 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 {
        width: 30px;
        height: 30px;
        background: var(--neutral-transp-10, rgba(64, 79, 87, 0.1));
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        border-radius: var(--border-radius-button, 5px);
        margin-left: 4px;
        color: var(--neutral-base, #404f57);
        border: 1px solid transparent;
        -webkit-transition: 0.2s ease-in-out;
        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 {
          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 {
          background: transparent;
          color: var(--highlight-base, #006699);
          border-color: var(--highlight-base, #006699); }
        .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-pagination .item-pagination.is-selected {
          background: var(--highlight-base, #006699);
          color: white; }
        .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-pagination .item-pagination.is-disabled {
          opacity: .6;
          cursor: not-allowed; }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item-additional .additional-item {
      margin-top: 16px;
      width: 100%; }
      .details-default > .detail-body .detail-body-content .tab-content .tab-item-additional .additional-item .additional-question {
        font-weight: bold;
        color: var(--neutral-base, #404f57); }
      .details-default > .detail-body .detail-body-content .tab-content .tab-item-additional .additional-item .additional-answer {
        color: var(--neutral-base, #404f57); }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item-photos .photos-list {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
          -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 {
        position: relative;
        display: block;
        width: -webkit-calc((100% / 2) - 24px);
        width: calc((100% / 2) - 24px);
        max-height: 172px;
        border-radius: var(--border-radius, 5px);
        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 {
            width: -webkit-calc((100% / 4) - 24px);
            width: calc((100% / 4) - 24px); } }
        .details-default > .detail-body .detail-body-content .tab-content .tab-item-photos .photos-list .photos-item img {
          max-width: 100%;
          height: auto;
          display: block;
          -o-object-fit: cover;
             object-fit: cover; }
        .details-default > .detail-body .detail-body-content .tab-content .tab-item-photos .photos-list .photos-item:hover .photos-caption {
          -webkit-transform: translateY(0);
              -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 {
          position: absolute;
          width: 100%;
          height: 100%;
          top: 0;
          left: 0;
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-flow: column wrap;
              -ms-flex-flow: column wrap;
                  flex-flow: column wrap;
          -webkit-box-pack: center;
          -webkit-justify-content: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center;
          color: white;
          background: var(--highlight-transp-50, rgba(0, 102, 153, 0.5));
          overflow: hidden;
          -webkit-transition: 0.2s ease-in-out;
          transition: 0.2s ease-in-out;
          -webkit-transform: translateY(100%);
              -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 {
            margin-bottom: 8px; }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item-location .location-address {
      margin-top: 16px; }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item-location .button {
      margin-top: 16px;
      padding: 12px;
      border-radius: var(--border-radius-button, 5px);
      width: 100%;
      text-align: center; }
      .details-default > .detail-body .detail-body-content .tab-content .tab-item-location .button .fa {
        margin-right: 8px; }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item-social .social-item {
      width: 50px;
      height: 50px;
      border-radius: 9999px;
      background: var(--brand-base, #006699);
      display: inline-block;
      font-size: 22px;
      color: var(--color-white-base, white);
      text-align: center;
      line-height: 50px;
      -webkit-transition: 0.2s ease-in-out;
      transition: 0.2s ease-in-out; }
      .details-default > .detail-body .detail-body-content .tab-content .tab-item-social .social-item:not(:first-child) {
        margin-left: 8px; }
      .details-default > .detail-body .detail-body-content .tab-content .tab-item-social .social-item:hover {
        background: var(--brand-transp-20, rgba(0, 102, 153, 0.8)); }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item-hours .hours-heading {
      font-weight: bold; }
      .details-default > .detail-body .detail-body-content .tab-content .tab-item-hours .hours-heading .fa {
        margin-right: 8px; }
      .details-default > .detail-body .detail-body-content .tab-content .tab-item-hours .hours-heading .fa-angle-down {
        font-size: var(--font-size-20, 1.11111em);
        color: var(--brand-base, #006699);
        margin-left: 8px;
        -webkit-transition: 0.2s ease-in-out;
        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 {
          -webkit-transform: rotate(180deg);
              -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"] {
        color: var(--success-base, #2ba264); }
      .details-default > .detail-body .detail-body-content .tab-content .tab-item-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 {
          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"] {
        color: var(--warning-base, #fc5353); }
      .details-default > .detail-body .detail-body-content .tab-content .tab-item-hours .hours-heading.first-hours {
        cursor: pointer; }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item-hours .hours-content {
      margin-top: 8px;
      padding-left: 23px; }
      .details-default > .detail-body .detail-body-content .tab-content .tab-item-hours .hours-content .hours-item {
        color: var(--neutral-transp-75, #404f57); }
      .details-default > .detail-body .detail-body-content .tab-content .tab-item-hours .hours-content .hours-more {
        display: none; }
        .details-default > .detail-body .detail-body-content .tab-content .tab-item-hours .hours-content .hours-more .hours-item:not(:first-child) {
          margin-top: 4px; }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item-ads {
      margin-top: 48px; }
      .details-default > .detail-body .detail-body-content .tab-content .tab-item-ads .ads-block {
        padding: 0; }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item-owner .tab-item-content {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -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 {
        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 {
        width: -webkit-calc(100% - 118px);
        width: calc(100% - 118px); }
        .details-default > .detail-body .detail-body-content .tab-content .tab-item-owner .tab-item-content .owner-content .owner-name {
          font-weight: bold;
          color: var(--neutral-base, #404f57);
          line-height: 1; }
        .details-default > .detail-body .detail-body-content .tab-content .tab-item-owner .tab-item-content .owner-content .owner-email {
          color: var(--neutral-transp-75, #404f57);
          margin-top: 8px;
          line-height: 1; }
        .details-default > .detail-body .detail-body-content .tab-content .tab-item-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 {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; }
      .details-default > .detail-body .detail-body-content .tab-content .tab-item-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 {
          margin-left: 0; }
      .details-default > .detail-body .detail-body-content .tab-content .tab-item-offer-time .tab-item-content .item-value {
        font-weight: bold;
        opacity: .75; }
      .details-default > .detail-body .detail-body-content .tab-content .tab-item-offer-time .tab-item-content .item-label {
        opacity: .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 {
        font-size: var(--font-size-24, 1.33333em);
        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 {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -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 {
        width: 48px;
        height: 48px;
        border-radius: var(--border-radius, 5px);
        overflow: hidden; }
      .details-default > .detail-body .detail-body-content .tab-content .tab-item-offer-owner .tab-item-content .owner-content {
        width: -webkit-calc(100% - 72px);
        width: calc(100% - 72px); }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item-offer-owner .owner-name {
      font-weight: bold;
      color: var(--neutral-base, #404f57); }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item-offer-owner .reviews-vote {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -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 {
        color: var(--neutral-transp-50, rgba(64, 79, 87, 0.5));
        font-weight: bold; }
      .details-default > .detail-body .detail-body-content .tab-content .tab-item-offer-owner .reviews-vote .reviews-stars {
        color: var(--neutral-transp-50, rgba(64, 79, 87, 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 {
          color: var(--badge-base, #ffc800); }
      .details-default > .detail-body .detail-body-content .tab-content .tab-item-offer-owner .reviews-vote .reviews-value {
        margin-left: 4px;
        font-weight: 300;
        color: var(--badge-base, #ffc800);
        font-size: var(--font-size-12, 0.66667em); }
        .details-default > .detail-body .detail-body-content .tab-content .tab-item-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 {
          content: ")"; }
      .details-default > .detail-body .detail-body-content .tab-content .tab-item-offer-owner .reviews-vote .reviews-count {
        font-weight: 300;
        color: var(--neutral-transp-75, #404f57);
        margin-left: 24px; }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item-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 * {
      max-width: 100%; }
  .details-default .share-icon {
    position: relative;
    cursor: pointer; }
    .details-default .share-icon .share-dropdown {
      position: absolute;
      top: 100%;
      left: 50%;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%);
      background: var(--color-white-dark-5, #f2f2f2);
      padding: 8px;
      line-height: 1;
      border-radius: 3px;
      margin: 8px 0 0 0;
      display: none;
      min-height: auto;
      min-width: 85px; }
      .details-default .share-icon .share-dropdown:before {
        content: "";
        position: absolute;
        width: 10px;
        height: 10px;
        top: -5px;
        left: 50%;
        -webkit-transform: translateX(-50%) rotate(45deg);
            -ms-transform: translateX(-50%) rotate(45deg);
                transform: translateX(-50%) rotate(45deg);
        background: var(--color-white-dark-5, #f2f2f2); }
      .details-default .share-icon .share-dropdown .social-likes__widget {
        margin: 0;
        -webkit-transition: 0.2s ease-in-out;
        transition: 0.2s ease-in-out;
        text-align: center;
        /*
                width: 100%;

                &:not(:first-child){
                    margin: 8px 0 0 0;
                }
                */ }
    .details-default .share-icon .social-likes__button {
      /*
            display: flex;
            padding: 2px 4px;
            */
      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 .social-likes__widget_whatsapp {
      display: block; }
      @media screen and (min-width: 992px) {
        .details-default .share-icon .social-likes__widget_whatsapp {
          display: none; } }
  .details-default.details-listing > .details-header .details-general .details-info {
    width: -webkit-calc(100% - 100px);
    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: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -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#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: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex; } }
  .details-default:not(.details-listing) > .detail-body .detail-body-content .tab-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -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"] .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), (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .details-default.details-events > .details-header .details-contact {
      width: 35%; } }
  @media screen and (min-width: 992px) {
    .details-default.details-events > .details-header .details-contact {
      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; }
  @media screen and (min-width: 992px), (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .details-default.details-classifieds > .details-header .details-contact {
      width: 45%; } }
  @media screen and (min-width: 992px) {
    .details-default.details-classifieds > .details-header .details-contact {
      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(64, 79, 87, 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, #404f57);
    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: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -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 .article-header .tooltip {
      position: relative;
      z-index: 10; }
      .details-default.details-articles .article-header .tooltip:before, .details-default.details-articles .article-header .tooltip:after {
        position: absolute;
        visibility: hidden;
        opacity: 0;
        left: 50%;
        top: -webkit-calc(100% + 10px);
        top: calc(100% + 10px);
        pointer-events: none;
        -webkit-transition: 0.2s;
        transition: 0.2s;
        will-change: transform; }
      .details-default.details-articles .article-header .tooltip:before {
        content: attr(data-tooltip);
        padding: 10px 18px;
        min-width: 50px;
        max-width: 300px;
        width: -webkit-max-content;
        width: max-content;
        width: -moz-max-content;
        border-radius: 6px;
        font-size: 14px;
        background-color: rgba(59, 72, 80, 0.9);
        background-image: linear-gradient(30deg, rgba(59, 72, 80, 0.44), rgba(59, 68, 75, 0.44), rgba(60, 82, 88, 0.44));
        -webkit-box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
                box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
        color: #fff;
        text-align: center;
        white-space: pre-wrap;
        -webkit-transform: translate(-50%, -5px) scale(0.5);
            -ms-transform: translate(-50%, -5px) scale(0.5);
                transform: translate(-50%, -5px) scale(0.5); }
      .details-default.details-articles .article-header .tooltip:hover:before {
        visibility: visible;
        opacity: 1;
        -webkit-transition-delay: 0.1s;
                transition-delay: 0.1s;
        -webkit-transform: translate(-50%, -5px) scale(1);
            -ms-transform: translate(-50%, -5px) scale(1);
                transform: translate(-50%, -5px) scale(1); }
  .details-default.details-articles .tab-content {
    max-width: 770px;
    margin: 0 auto;
    display: block !important; }
    .details-default.details-articles .tab-content .article-author {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; }
      .details-default.details-articles .tab-content .article-author .article-picture {
        width: 48px;
        height: 48px;
        overflow: hidden;
        border-radius: 9999px;
        text-align: center;
        line-height: 48px;
        border: 1px solid var(--neutral-transp-25, rgba(64, 79, 87, 0.25)); }
        .details-default.details-articles .tab-content .article-author .article-picture img {
          max-width: 100%;
          height: auto;
          display: block;
          -o-object-fit: cover;
             object-fit: cover; }
      .details-default.details-articles .tab-content .article-author .article-content {
        color: var(--neutral-transp-50, rgba(64, 79, 87, 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: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -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 {
        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 {
          max-width: 100%;
          height: auto;
          display: block;
          -o-object-fit: cover;
             object-fit: cover; }
      .details-default.details-articles .tab-content .article-author-full .author-full-about {
        max-width: -webkit-calc(100% - 83px);
        max-width: calc(100% - 83px);
        color: var(--neutral-transp-50, rgba(64, 79, 87, 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 p {
        color: var(--neutral-transp-75, #404f57);
        margin-bottom: 0;
        margin-top: 16px; }
        .details-default.details-articles .tab-content .article-description p:first-child {
          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-categories {
      margin-top: 32px;
      margin-left: -8px; }
      .details-default.details-articles .tab-content .article-categories .categorie-item {
        background: var(--neutral-transp-15, rgba(64, 79, 87, 0.15));
        border-radius: var(--border-radius-icon, 5px);
        padding: 4px 8px;
        font-weight: bold;
        color: var(--neutral-base, #404f57);
        margin-left: 8px;
        margin-bottom: 8px;
        font-size: .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;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -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: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -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(64, 79, 87, 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-picture {
          position: relative;
          margin-top: 24px; }
          .details-default.details-blog .detail-body-content .blog-content .blog-picture img {
            max-width: 100%;
            height: auto;
            display: block;
            -o-object-fit: cover;
               object-fit: cover;
            border-radius: var(--border-radius, 5px); }
          .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, #404f57);
          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-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(64, 79, 87, 0.15));
            border-radius: var(--border-radius-icon, 5px);
            padding: 4px 8px;
            font-weight: bold;
            color: var(--neutral-base, #404f57);
            margin-left: 8px;
            margin-bottom: 8px;
            font-size: .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: -webkit-box;
            display: -webkit-flex;
            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, 5px); }
          .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: -webkit-box;
              display: -webkit-flex;
              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 {
                -webkit-box-flex: 1;
                -webkit-flex-grow: 1;
                    -ms-flex-positive: 1;
                        flex-grow: 1; }
            .details-default.details-blog .detail-body-content .blog-sidebar .blog-card .card-content .input-group {
              display: -webkit-box;
              display: -webkit-flex;
              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, #404f57);
                border-right: none;
                border-top-left-radius: var(--border-radius-input, 5px);
                border-bottom-left-radius: var(--border-radius-input, 5px); }
              .details-default.details-blog .detail-body-content .blog-sidebar .blog-card .card-content .input-group .input {
                -webkit-box-flex: 1;
                -webkit-flex-grow: 1;
                    -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, #404f57);
              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: -webkit-box;
              display: -webkit-flex;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-orient: horizontal;
              -webkit-box-direction: normal;
              -webkit-flex-flow: row wrap;
                  -ms-flex-flow: row wrap;
                      flex-flow: row wrap;
              -webkit-box-align: start;
              -webkit-align-items: flex-start;
                  -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(64, 79, 87, 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(64, 79, 87, 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"] .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; } }

.modal-sign {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -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(64, 79, 87, 0.25));
    margin: 48px 0;
    -webkit-box-shadow: none;
            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, 5px);
    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 {
      padding: 24px;
      border-bottom: 1px solid rgba(151, 151, 151, 0.5);
      position: relative;
      min-height: 73.2px; }
      .modal-sign .modal-content .modal-nav .modal-nav-link {
        color: var(--neutral-transp-25, rgba(64, 79, 87, 0.25));
        font-weight: 600;
        margin-left: 32px;
        text-decoration: none;
        -webkit-transition: 0.2s ease-in-out;
        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, #404f57); }
      .modal-sign .modal-content .modal-nav .modal-close-button {
        position: absolute;
        color: var(--neutral-base, #404f57);
        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;
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg);
        position: absolute;
        bottom: -6px;
        -webkit-transition: .5s ease-in-out;
        transition: .5s ease-in-out; }
    .modal-sign .modal-content .modal-body {
      padding: 48px;
      overflow: hidden;
      position: relative;
      -webkit-transition: .5s ease-in-out;
      transition: .5s ease-in-out; }
      .modal-sign .modal-content .modal-body .content-tab {
        width: -webkit-calc(100% - 96px);
        width: calc(100% - 96px);
        position: absolute;
        top: 48px;
        -webkit-transition: .5s ease-in-out;
        transition: .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 .g-signin {
        margin-top: 8px; }
        .modal-sign .modal-content .modal-body .modal-social .g-signin + br {
          display: none; }
      .modal-sign .modal-content .modal-body .modal-social .social-modal-button {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        border-radius: var(--border-radius-button, 5px);
        padding: 16px;
        text-decoration: none;
        margin-top: 8px; }
        .modal-sign .modal-content .modal-body .modal-social .social-modal-button:first-child {
          margin-top: 0; }
        .modal-sign .modal-content .modal-body .modal-social .social-modal-button .fa {
          font-size: 24px;
          margin-right: 24px; }
        .modal-sign .modal-content .modal-body .modal-social .social-modal-button.facebook-button {
          background: #3b5998;
          color: white;
          -webkit-transition: 0.2s ease-in-out;
          transition: 0.2s ease-in-out; }
          .modal-sign .modal-content .modal-body .modal-social .social-modal-button.facebook-button:hover {
            background: #344e86; }
        .modal-sign .modal-content .modal-body .modal-social .social-modal-button.google-button {
          background: #eee;
          color: #6d6d6d;
          -webkit-transition: 0.2s ease-in-out;
          transition: 0.2s ease-in-out; }
          .modal-sign .modal-content .modal-body .modal-social .social-modal-button.google-button:hover {
            background: #e1e1e1; }
          .modal-sign .modal-content .modal-body .modal-social .social-modal-button.google-button img {
            margin-right: 24px; }
      .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 .form-actions {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
        margin-top: 8px; }
        @media screen and (min-width: 768px) {
          .modal-sign .modal-content .modal-body .form-actions {
            -webkit-box-pack: justify;
            -webkit-justify-content: space-between;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            -webkit-flex-wrap: nowrap;
                -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, #404f57);
          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; } }
      .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: var(--neutral-base, #404f57);
        text-align: center;
        display: block;
        margin-top: 8px; }
        .modal-sign .modal-content .modal-body .privacy-policy .link {
          font-size: inherit;
          color: inherit; }
      .modal-sign .modal-content .modal-body .not-member {
        display: block;
        line-height: 1;
        color: var(--neutral-transp-75, #404f57);
        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: 10px;
  padding-bottom: 10px; }
  @media only screen and (min-width: 992px) {
    .contactus-block {
      padding-top: 20px;
      padding-bottom: 20px; } }
  .contactus-block .wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -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, #404f57); }
      .contactus-block .wrapper .contactus-content .contactus-info {
        margin-top: 32px; }
        .contactus-block .wrapper .contactus-content .contactus-info .info-item {
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -webkit-flex-flow: row wrap;
              -ms-flex-flow: row wrap;
                  flex-flow: row wrap;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -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, #006699);
            font-size: 18px; }
          .contactus-block .wrapper .contactus-content .contactus-info .info-item a {
            color: var(--neutral-base, #404f57);
            text-decoration: none; }
      .contactus-block .wrapper .contactus-content .contactus-social {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        margin-top: 24px; }
        .contactus-block .wrapper .contactus-content .contactus-social .social-item {
          width: 36px;
          height: 36px;
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
          -webkit-justify-content: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center;
          color: var(--brand-base, #006699);
          border: 1px solid var(--brand-base, #006699);
          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-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 {
        -webkit-flex-wrap: nowrap;
            -ms-flex-wrap: nowrap;
                flex-wrap: nowrap;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
            -ms-flex-align: start;
                align-items: flex-start;
        margin-left: 0;
        display: -webkit-box;
        display: -webkit-flex;
        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 [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 .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: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -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, #006699); }
      .faq-page .faq-header .wrapper .faq-info .paragraph {
        color: var(--neutral-transp-75, #404f57);
        font-size: var(--font-size-14, 0.77778em); }
    .faq-page .faq-header .wrapper .faq-search {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      margin-top: 24px; }
      @media screen and (max-width: 364px) {
        .faq-page .faq-header .wrapper .faq-search {
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -webkit-flex-flow: row wrap;
              -ms-flex-flow: row wrap;
                  flex-flow: row wrap; } }
      @media screen and (min-width: 992px) {
        .faq-page .faq-header .wrapper .faq-search {
          width: -webkit-calc(100% - 600px);
          width: calc(100% - 600px);
          margin-top: 0; } }
      .faq-page .faq-header .wrapper .faq-search .input {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
            -ms-flex-positive: 1;
                flex-grow: 1; }
      .faq-page .faq-header .wrapper .faq-search .button {
        margin-left: 16px; }
        @media screen and (max-width: 364px) {
          .faq-page .faq-header .wrapper .faq-search .button {
            margin-left: 0;
            margin-top: 8px;
            width: 100%; } }

.faq-page .faq-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column wrap;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -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: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
      .faq-page .faq-content .toggle-item .toggle-header.is-open .button {
        -webkit-transform: rotate(0);
            -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: -webkit-calc(100% - 40px);
        max-width: calc(100% - 40px); }
      .faq-page .faq-content .toggle-item .toggle-header .button {
        background: none;
        -webkit-box-shadow: none;
                box-shadow: none;
        border: none;
        font-size: 22px;
        position: relative;
        -webkit-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
                transform: rotate(90deg);
        -webkit-transition: 0.2s ease-in-out;
        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;
          -webkit-transform: rotate(90deg);
              -ms-transform: rotate(90deg);
                  transform: rotate(90deg);
          -webkit-transition: 0.2s ease-in-out;
          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, #404f57); }
  .faq-page .faq-content .contact-us {
    margin-top: 32px;
    display: block;
    font-size: var(--font-size-14, 0.77778em); }

.custom-content {
  padding-top: 10px;
  padding-bottom: 10px; }
  @media only screen and (min-width: 992px) {
    .custom-content {
      padding-top: 20px;
      padding-bottom: 20px; } }
  .custom-content img {
    max-width: 100%;
    height: auto;
    display: block;
    -o-object-fit: cover;
       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, #404f57);
    font-family: var(--heading-font, "PT Serif");
    font-weight: 500;
    margin-top: 0;
    margin-bottom: .5rem; }
  .custom-content p, .custom-content span {
    line-height: 1.5;
    color: var(--neutral-base, #404f57);
    font-family: var(--paragraph-font, "Open Sans");
    font-weight: normal;
    margin-bottom: 1rem; }
  .custom-content h1 {
    font-size: var(--font-size-40, 2.22222em); }
  .custom-content h2 {
    font-size: var(--font-size-32, 1.77778em); }
  .custom-content h3 {
    font-size: var(--font-size-24, 1.33333em); }
  .custom-content h4 {
    font-size: var(--font-size-20, 1.11111em); }
  .custom-content h5 {
    font-size: var(--font-size-16, 0.88889em); }
  .custom-content h6 {
    font-size: var(--font-size-14, 0.77778em); }
  .custom-content a {
    line-height: 1.25;
    color: var(--link-base, #006699);
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    text-decoration: none;
    border-bottom: 1px solid transparent; }
    .custom-content a:hover {
      color: var(--link-base, #006699);
      border-color: var(--link-base, #006699);
      text-decoration: none; }
    .custom-content a:focus, .custom-content a:active {
      color: var(--link-dark, #00476b);
      border-color: var(--link-dark, #00476b);
      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; }

.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, #404f57);
    text-decoration: none;
    -webkit-transition: 0.2s ease-in-out;
    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, #404f57); }
  .results-header .results-title {
    margin-top: 16px; }

.results-body {
  padding-top: 32px;
  background: var(--neutral-transp-5, rgba(64, 79, 87, 0.05)); }
  .results-body .wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -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(64, 79, 87, 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: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex; } }
      .results-body .results-sidebar .sidebar-item .item-header {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -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, #404f57); }
          .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(64, 79, 87, 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(64, 79, 87, 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: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
          -webkit-justify-content: space-between;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center;
          padding: 8px 8px 8px 26px;
          position: relative;
          -webkit-transition: 0.2s ease-in-out;
          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, #006699); }
        .results-body .results-sidebar .sidebar-item .item-body .category-item .category-link {
          text-decoration: none;
          color: var(--neutral-base, #404f57);
          max-width: -webkit-calc(100% - 40px);
          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, #006699);
          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: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -webkit-justify-content: space-between;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            -webkit-box-align: center;
            -webkit-align-items: center;
                -ms-flex-align: center;
                    align-items: center;
            padding: 8px 8px 8px 38px;
            -webkit-transition: 0.2s ease-in-out;
            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: -webkit-box;
            display: -webkit-flex;
            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: -webkit-calc((230px / 2) - 22.5px);
                  width: calc((230px / 2) - 22.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: -webkit-calc((230px / 2) - 22.5px);
                      width: calc((230px / 2) - 22.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, #006699); }
  .results-body .results-content {
    width: 100%; }
    @media screen and (min-width: 1200px) {
      .results-body .results-content {
        width: -webkit-calc(75% - 32px);
        width: calc(75% - 32px); } }
    .results-body .results-content .results-actions {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -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: -webkit-box;
      display: -webkit-flex;
      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;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
            -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, #006699);
          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.list-button {
          display: inline-block; }
          @media screen and (min-width: 768px) {
            .results-body .results-content .results-type .button.list-button {
              display: none; } }
        .results-body .results-content .results-type .button[data-type="grid-view"] {
          display: none; }
          @media screen and (min-width: 768px) {
            .results-body .results-content .results-type .button[data-type="grid-view"] {
              display: inline-block; } }
        .results-body .results-content .results-type .button[data-type="list-view"]:not(.list-button) {
          display: none; }
          @media screen and (min-width: 768px) {
            .results-body .results-content .results-type .button[data-type="list-view"]:not(.list-button) {
              display: inline-block; } }
      .results-body .results-content .results-type .list-button {
        display: inline-block; }
        @media screen and (min-width: 1200px) {
          .results-body .results-content .results-type .list-button {
            display: none; } }
      .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: white;
        padding: 8px;
        border-radius: 3px;
        left: 50%;
        -webkit-transform: translateX(-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%;
          -webkit-transform: translateX(-50%) rotate(45deg);
              -ms-transform: translateX(-50%) rotate(45deg);
                  transform: translateX(-50%) rotate(45deg); }
    .results-body .results-content .summary-list {
      -webkit-transition: 0.2s ease-in-out;
      transition: 0.2s ease-in-out; }
      .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;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row wrap;
            -ms-flex-flow: row wrap;
                flex-flow: row wrap;
        margin-left: -16px; }
        .results-body .results-content .summary-list[list-type="grid-view"].is-active {
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex; }
        .results-body .results-content .summary-list[list-type="grid-view"] .summary-item {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-flow: column wrap;
              -ms-flex-flow: column wrap;
                  flex-flow: column wrap;
          -webkit-box-pack: start;
          -webkit-justify-content: flex-start;
              -ms-flex-pack: start;
                  justify-content: flex-start;
          margin-left: 16px;
          width: -webkit-calc((100% / 1) - 16px);
          width: calc((100% / 1) - 16px); }
          @supports (-ms-ime-align: auto) {
            .results-body .results-content .summary-list[list-type="grid-view"] .summary-item {
              width: -webkit-calc(((100% / 1) - 16px) - 0.1px);
              width: calc(((100% / 1) - 16px) - 0.1px); } }
          @media screen and (min-width: 768px) {
            .results-body .results-content .summary-list[list-type="grid-view"] .summary-item {
              width: -webkit-calc((100% / 2) - 16px);
              width: calc((100% / 2) - 16px); }
              @supports (-ms-ime-align: auto) {
                .results-body .results-content .summary-list[list-type="grid-view"] .summary-item {
                  width: -webkit-calc(((100% / 2) - 16px) - 0.1px);
                  width: calc(((100% / 2) - 16px) - 0.1px); } } }
          @media screen and (min-width: 992px) {
            .results-body .results-content .summary-list[list-type="grid-view"] .summary-item {
              width: -webkit-calc((100% / 3) - 16px);
              width: calc((100% / 3) - 16px); }
              @supports (-ms-ime-align: auto) {
                .results-body .results-content .summary-list[list-type="grid-view"] .summary-item {
                  width: -webkit-calc(((100% / 3) - 16px) - 0.1px);
                  width: calc(((100% / 3) - 16px) - 0.1px); } } }
          .results-body .results-content .summary-list[list-type="grid-view"] .summary-item .summary-content {
            width: 100%;
            border-right: none;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-flow: column wrap;
                -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: -webkit-box;
              display: -webkit-flex;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-pack: justify;
              -webkit-justify-content: space-between;
                  -ms-flex-pack: justify;
                      justify-content: space-between;
              -webkit-box-align: center;
              -webkit-align-items: center;
                  -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 {
                -webkit-box-pack: end;
                -webkit-justify-content: flex-end;
                    -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: -webkit-calc(100% - 104px);
                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, 5px); }
                .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;
                  -webkit-transition: 0.2s ease-in-out;
                  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 {
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -webkit-flex-flow: column wrap;
                    -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, #404f57); }
                .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, #404f57); }
          .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(64, 79, 87, 0.25)); }
            .results-body .results-content .summary-list[list-type="grid-view"] .summary-item .summary-additional .summary-contact {
              display: none; }
          .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: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-flow: column wrap;
            -ms-flex-flow: column wrap;
                flex-flow: column wrap;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -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(64, 79, 87, 0.25));
        -webkit-transition: 0.2s ease-in-out;
        transition: 0.2s ease-in-out;
        width: 100%;
        overflow: hidden;
        position: relative; }
        @media screen and (min-width: 768px) {
          .results-body .results-content .summary-list .summary-item {
            width: auto;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -webkit-flex-flow: row wrap;
                -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 {
          -webkit-transform: scale(1.05);
              -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%;
            -webkit-transform: translateX(-50%);
                -ms-transform: translateX(-50%);
                    transform: translateX(-50%);
            background: var(--color-white-dark-5, #f2f2f2);
            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%;
              -webkit-transform: translateX(-50%) rotate(45deg);
                  -ms-transform: translateX(-50%) rotate(45deg);
                      transform: translateX(-50%) rotate(45deg);
              background: var(--color-white-dark-5, #f2f2f2); }
            .results-body .results-content .summary-list .summary-item .share-icon .share-dropdown .social-likes__widget {
              margin: 0;
              -webkit-transition: 0.2s ease-in-out;
              transition: 0.2s ease-in-out;
              text-align: center;
              /*
                            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: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
          -webkit-justify-content: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center;
          background: rgba(0, 0, 0, 0.8);
          padding: 8px;
          -webkit-transition: .4s ease-in-out;
          transition: .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;
            -webkit-transition: 0.2s ease-in-out;
            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 .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 .tooltip {
          position: relative;
          z-index: 10; }
          .results-body .results-content .summary-list .summary-item .tooltip:before, .results-body .results-content .summary-list .summary-item .tooltip:after {
            position: absolute;
            visibility: hidden;
            opacity: 0;
            left: 50%;
            top: -webkit-calc(100% + 5px);
            top: calc(100% + 5px);
            pointer-events: none;
            -webkit-transition: 0.2s;
            transition: 0.2s;
            will-change: transform; }
          .results-body .results-content .summary-list .summary-item .tooltip:before {
            content: attr(data-tooltip);
            padding: 10px 18px;
            min-width: 50px;
            max-width: 300px;
            width: -webkit-max-content;
            width: max-content;
            width: -moz-max-content;
            border-radius: 6px;
            font-size: 14px;
            background-color: rgba(59, 72, 80, 0.9);
            background-image: linear-gradient(30deg, rgba(59, 72, 80, 0.44), rgba(59, 68, 75, 0.44), rgba(60, 82, 88, 0.44));
            -webkit-box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
                    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
            color: #fff;
            text-align: center;
            white-space: pre-wrap;
            -webkit-transform: translate(-50%, 10px) scale(0.5);
                -ms-transform: translate(-50%, 10px) scale(0.5);
                    transform: translate(-50%, 10px) scale(0.5); }
          @media screen and (min-width: 992px) {
            .results-body .results-content .summary-list .summary-item .tooltip:hover:before {
              visibility: visible;
              opacity: 1;
              -webkit-transition-delay: 0.1s;
                      transition-delay: 0.1s;
              -webkit-transform: translate(-50%, 10px) scale(1);
                  -ms-transform: translate(-50%, 10px) scale(1);
                      transform: translate(-50%, 10px) scale(1); } }
        .results-body .results-content .summary-list .summary-item .summary-content {
          width: 100%;
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-flow: column wrap;
              -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);
              -webkit-box-orient: horizontal;
              -webkit-box-direction: normal;
              -webkit-flex-flow: row wrap;
                  -ms-flex-flow: row wrap;
                      flex-flow: row wrap;
              -webkit-box-pack: justify;
              -webkit-justify-content: space-between;
                  -ms-flex-pack: justify;
                      justify-content: space-between; } }
          .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, 5px); }
              .results-body .results-content .summary-list .summary-item .summary-content .summary-attrs .summary-picture img {
                width: 100%;
                max-width: 100%;
                height: 100%;
                display: block;
                -o-object-fit: contain;
                   object-fit: contain;
                -webkit-transition: 0.2s ease-in-out;
                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, 5px); }
                .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;
                  -o-object-fit: cover;
                     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: -webkit-calc(100% - 216px);
                max-width: calc(100% - 216px);
                margin-top: 0; } }
            .results-body .results-content .summary-list .summary-item .summary-content .summary-info .summary-title {
              display: -webkit-box;
              display: -webkit-flex;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-pack: justify;
              -webkit-justify-content: space-between;
                  -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, #404f57);
                max-width: -webkit-calc(100% - 104px);
                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, #006699);
                  -webkit-transition: 0.2s ease-in-out;
                  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(64, 79, 87, 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.77778em);
              color: var(--neutral-base, #404f57); }
            .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: .875em;
              color: var(--neutral-transp-50, rgba(64, 79, 87, 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: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-flow: column wrap;
              -ms-flex-flow: column wrap;
                  flex-flow: column wrap;
          -webkit-box-pack: center;
          -webkit-justify-content: center;
              -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: -webkit-calc(25% - 24px);
              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(64, 79, 87, 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, #404f57);
            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, #404f57);
            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, #404f57); }
            .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, #404f57);
            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: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
                -ms-flex-pack: center;
                    justify-content: center;
            -webkit-box-align: end;
            -webkit-align-items: flex-end;
                -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.33333em); }
          .results-body .results-content .summary-list .summary-item .summary-additional .summary-off-price {
            font-size: var(--font-size-20, 1.11111em);
            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; }
          .results-body .results-content .summary-list .summary-item .summary-additional .summary-phone {
            text-decoration: none;
            color: var(--neutral-base, #404f57); }
          .results-body .results-content .summary-list .summary-item .summary-additional .summary-additional-phone a {
            text-decoration: none;
            color: var(--neutral-base, #404f57); }
          .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 {
              position: relative;
              z-index: 10;
              display: inline-block;
              margin-right: 8px;
              margin-top: 16px; }
              .results-body .results-content .summary-list .summary-item .summary-additional .summary-badges .item-badge:before, .results-body .results-content .summary-list .summary-item .summary-additional .summary-badges .item-badge:after {
                position: absolute;
                visibility: hidden;
                opacity: 0;
                left: 50%;
                bottom: -webkit-calc(100% + 5px);
                bottom: calc(100% + 5px);
                pointer-events: none;
                -webkit-transition: 0.2s;
                transition: 0.2s;
                will-change: transform; }
              .results-body .results-content .summary-list .summary-item .summary-additional .summary-badges .item-badge:before {
                content: attr(data-tooltip);
                padding: 10px 18px;
                min-width: 50px;
                max-width: 300px;
                width: -webkit-max-content;
                width: max-content;
                width: -moz-max-content;
                border-radius: 6px;
                font-size: 14px;
                background-color: rgba(59, 72, 80, 0.9);
                background-image: linear-gradient(30deg, rgba(59, 72, 80, 0.44), rgba(59, 68, 75, 0.44), rgba(60, 82, 88, 0.44));
                -webkit-box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
                        box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
                color: #fff;
                text-align: center;
                white-space: pre-wrap;
                -webkit-transform: translate(-50%, -5px) scale(0.5);
                    -ms-transform: translate(-50%, -5px) scale(0.5);
                        transform: translate(-50%, -5px) scale(0.5); }
              .results-body .results-content .summary-list .summary-item .summary-additional .summary-badges .item-badge:after {
                content: " ";
                border-style: solid;
                border-width: 5px 5px 0px 5px;
                border-color: rgba(55, 64, 70, 0.9) transparent transparent transparent;
                -webkit-transition-duration: 0s;
                        transition-duration: 0s;
                -webkit-transform-origin: top;
                    -ms-transform-origin: top;
                        transform-origin: top;
                -webkit-transform: translateX(-50%) scaleY(0);
                    -ms-transform: translateX(-50%) scaleY(0);
                        transform: translateX(-50%) scaleY(0); }
              .results-body .results-content .summary-list .summary-item .summary-additional .summary-badges .item-badge:hover:before, .results-body .results-content .summary-list .summary-item .summary-additional .summary-badges .item-badge:hover:after {
                visibility: visible;
                opacity: 1; }
              .results-body .results-content .summary-list .summary-item .summary-additional .summary-badges .item-badge:hover:before {
                -webkit-transition-delay: 0.1s;
                        transition-delay: 0.1s;
                -webkit-transform: translate(-50%, -5px) scale(1);
                    -ms-transform: translate(-50%, -5px) scale(1);
                        transform: translate(-50%, -5px) scale(1); }
              .results-body .results-content .summary-list .summary-item .summary-additional .summary-badges .item-badge:hover:after {
                -webkit-transition-delay: 0.2s;
                        transition-delay: 0.2s;
                -webkit-transition-duration: 0.2s;
                        transition-duration: 0.2s;
                -webkit-transform: translateX(-50%) scaleY(1);
                    -ms-transform: translateX(-50%) scaleY(1);
                        transform: translateX(-50%) scaleY(1); }
          .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; }
      .results-body .results-content .summary-list-map #map_canvas {
        width: 100% !important;
        height: 500px !important; }
    .results-body .results-content .results-pagination {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: 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(64, 79, 87, 0.1));
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        border-radius: var(--border-radius-icon, 5px);
        margin-left: 4px;
        color: var(--neutral-base, #404f57);
        border: 1px solid transparent;
        -webkit-transition: 0.2s ease-in-out;
        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, #006699);
          border-color: var(--highlight-base, #006699); }
        .results-body .results-content .results-pagination .item-pagination.is-selected {
          background: var(--highlight-base, #006699);
          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 {
      -webkit-box-ordinal-group: 3;
      -webkit-order: 2;
          -ms-flex-order: 2;
              order: 2; }
      .results-body[data-align="right"] .results-sidebar .banner {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex; }
    .results-body[data-align="right"] .results-content {
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
          -ms-flex-order: 1;
              order: 1; }
      .results-body[data-align="right"] .results-content .results-actions .relevance-filters {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
            -ms-flex-order: 2;
                order: 2; }
      .results-body[data-align="right"] .results-content .results-actions .results-type {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
            -ms-flex-order: 1;
                order: 1; } }

.gm-style-iw {
  max-width: 250px; }

.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.11111em);
  font-weight: bold; }
  .summary-map-info .map-info-open-time[data-status-time="open-now"] {
    color: var(--success-base, #2ba264); }
  .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, 1em); }

.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; }

/* ARQUIVOS DE BLOCOS */
/* CUSTOM FILES */
.cards-default[data-type="articles"] .cards-list .card-horizontal-full .content .title {
  font-size: var(--font-size-24, 1.33333em); }

.cards-default[data-type="articles"] .cards-list .card-horizontal-full .content .categories .link {
  font-size: var(--font-size-14, 0.77778em); }

.cards-default[data-type="articles"] .cards-list.list-horizontal .content .title {
  font-size: var(--font-size-24, 1.33333em); }

.cards-default[data-type="articles"] .card-wrapper-quarter .card-list-quarter .card-horizontal-full .content .title {
  font-size: var(--font-size-24, 1.33333em); }

.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.11111em); }

.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.77778em); }

.cards-default[data-type="articles"] .card .content .title {
  font-weight: bold;
  font-size: var(--font-size-20, 1.11111em); }

.categories-base .categories-header > .link {
  font-size: var(--font-size-16, 0.88889em); }

.categories-base .categories-content > .categories-list .info .title {
  font-size: var(--font-size-16, 0.88889em); }

.horizontal-deal .cards-list .card-deals .content .deals-price .valid-time {
  font-size: var(--font-size-14, 0.77778em); }

.details-default > .details-modal.is-sent .modal-default .modal-return {
  font-size: var(--font-size-18, 1em); }

.details-default > .details-modal.deals-coupon .deals-content .deals-content-item .content-title {
  font-size: var(--font-size-12, 0.66667em); }

.details-default > .details-header .details-general .details-info .details-categories {
  font-size: var(--font-size-14, 0.77778em); }

.details-default > .details-header .details-general .details-info .details-old-price {
  font-size: var(--font-size-14, 0.77778em); }

.details-default > .details-header .details-general .details-info .details-date {
  font-size: var(--font-size-16, 0.88889em); }

.details-default > .details-header .details-general .details-info .details-reviews .reviews-first {
  font-size: var(--font-size-14, 0.77778em); }

@media screen and (min-width: 992px) {
  .details-default > .details-header .details-general .details-info .details-actions .button {
    font-size: var(--font-size-14, 0.77778em); } }

@media screen and (min-width: 1200px) {
  .details-default > .details-header .details-general .details-info .details-actions .button {
    font-size: var(--font-size-16, 0.88889em); } }

.details-default > .details-header .details-general .details-info .details-claim {
  font-size: var(--font-size-14, 0.77778em); }

.details-default > .details-header .details-general .details-info .details-certified .item-certified .title {
  font-size: var(--font-size-14, 0.77778em); }

.details-default > .detail-body .detail-body-content .tab-item-features .item-features {
  font-size: var(--font-size-14, 0.77778em); }

.details-default > .detail-body .detail-body-content .tab-item-reviews .reviews-header .reviews-vote .reviews-rating {
  font-size: var(--font-size-16, 0.88889em); }

.details-default > .detail-body .detail-body-content .tab-item-reviews .reviews-header .reviews-vote .reviews-count {
  font-size: var(--font-size-14, 0.77778em); }

.details-default > .detail-body .detail-body-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-author {
  font-size: var(--font-size-16, 0.88889em); }

.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.66667em); }

.details-default > .detail-body .detail-body-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-description {
  font-size: var(--font-size-16, 0.88889em); }

.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.66667em); }

.details-default > .detail-body .detail-body-content .tab-item-reviews .reviews-pagination .item-pagination {
  font-size: var(--font-size-16, 0.88889em); }

.details-default > .detail-body .detail-body-content .tab-item-additional .additional-item .additional-question {
  font-size: var(--font-size-16, 0.88889em); }

.details-default > .detail-body .detail-body-content .tab-item-additional .additional-item .additional-answer {
  font-size: var(--font-size-16, 0.88889em); }

.details-default > .detail-body .detail-body-content .tab-item-photos .photos-list .photos-item .photos-caption {
  font-size: var(--font-size-16, 0.88889em); }

.details-default > .detail-body .detail-body-content .tab-item-location .button {
  font-size: var(--font-size-16, 0.88889em); }

.details-default > .detail-body .detail-body-content .tab-item-hours .hour-item .day {
  font-size: var(--font-size-16, 0.88889em); }

.details-default > .detail-body .detail-body-content .tab-item-hours .hour-item .time {
  font-size: var(--font-size-16, 0.88889em); }

.details-default > .detail-body .detail-body-content .tab-item-owner .tab-item-content .owner-content .owner-name {
  font-size: var(--font-size-16, 0.88889em); }

.details-default > .detail-body .detail-body-content .tab-item-owner .tab-item-content .owner-content .owner-email {
  font-size: var(--font-size-14, 0.77778em); }

.details-default > .detail-body .detail-body-content .tab-item-offer-time .tab-item-content .item-label {
  font-size: var(--font-size-14, 0.77778em); }

.details-default > .detail-body .detail-body-content .tab-item-offer-owner .owner-name {
  font-size: var(--font-size-16, 0.88889em); }

.details-default > .detail-body .detail-body-content .tab-item-offer-owner .reviews-vote .reviews-rating {
  font-size: var(--font-size-16, 0.88889em); }

.details-default > .detail-body .detail-body-content .tab-item-offer-owner .reviews-vote .reviews-count {
  font-size: var(--font-size-14, 0.77778em); }

.details-default.details-articles .article-header .article-date {
  font-size: var(--font-size-18, 1em); }

.details-default.details-articles .tab-content .article-author .article-content {
  font-size: var(--font-size-16, 0.88889em); }
  .details-default.details-articles .tab-content .article-author .article-content .author-name {
    font-size: var(--font-size-14, 0.77778em); }

.cards-events .calendar-wrapper .calendar-block .datepicker .datepicker--nav-title {
  font-size: var(--font-size-20, 1.11111em); }

.cards-events .calendar-wrapper .calendar-block .datepicker .datepicker--content .datepicker--days-names .datepicker--day-name {
  font-size: var(--font-size-14, 0.77778em); }

@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.77778em); } }

@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, 0.88889em); } }

.cards-events .calendar-wrapper .calendar-block .datepicker .datepicker--content .datepicker--days-names .datepicker--cells .datepicker--cell.-other-month- {
  font-size: var(--font-size-16, 0.88889em); }

.footer > .footer-content .wrapper .footer-item .footer-item-title {
  font-size: var(--font-size-18, 1em); }

.footer > .footer-content .wrapper .footer-item .footer-item-content .link-footer {
  font-size: var(--font-size-15, 0.83333em); }

.footer > .footer-content .wrapper .footer-item .footer-item-content .footer-info {
  font-size: var(--font-size-15, 0.83333em); }

.footer > .footer-bar .wrapper .footer-copyright {
  font-size: var(--font-size-16, 0.88889em); }

.footer > .footer-bar .wrapper .footer-powered {
  font-size: var(--font-size-16, 0.88889em); }

.footer[data-type="3"] > .footer-content .footer-contact .contact-item {
  font-size: var(--font-size-14, 0.77778em); }

.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.83333em); }

.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.77778em); }

.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.66667em); }

.footer[data-type="4"] > .footer-content .footer-bar .footer-copyright {
  font-size: var(--font-size-16, 0.88889em); }

.footer[data-type="4"] > .footer-content .footer-bar .footer-powered {
  font-size: var(--font-size-16, 0.88889em); }

.header > .header-bar .bar-link {
  font-size: var(--font-size-14, 0.77778em); }

.header .header-navbar .navbar-link {
  font-size: var(--font-size-16, 0.88889em); }

.header .header-navbar .navbar-more .more-label {
  font-size: var(--font-size-16, 0.88889em); }

.header .header-navbar .navbar-more .more-link {
  font-size: var(--font-size-16, 0.88889em); }

.hero-default .wrapper > .content-location .link {
  font-size: var(--font-size-14, 0.77778em); }

@media screen and (min-width: 320px) and (max-width: 767px) {
  .hero-default.type-1 .heading {
    font-size: var(--font-size-28, 1.55556em); } }

@media screen and (min-width: 320px) and (max-width: 767px) {
  .hero-default.type-1 .paragraph {
    font-size: var(--font-size-14, 0.77778em); } }

.hero-default.type-2.is-column .wrapper .heading {
  font-size: var(--font-size-32, 1.77778em); }
  @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.33333em); } }

.hero-default.type-2.is-column .wrapper .paragraph {
  font-size: var(--font-size-18, 1em); }
  @media screen and (min-width: 320px) and (max-width: 425px) {
    .hero-default.type-2.is-column .wrapper .paragraph {
      font-size: var(--font-size-16, 0.88889em); } }

@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.33333em); } }

@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, 0.88889em); } }

@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.33333em); } }

@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, 0.88889em); } }

.cards-latest-members .members-list .members-item .content .joined-time {
  font-size: var(--font-size-14, 0.77778em); }

.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item.is-highlighted:before {
  font-size: var(--font-size-24, 1.33333em); }
  @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, 0.88889em); } }

.pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-collapse .price-description p {
  font-size: var(--font-size-15, 0.83333em); }

.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, 0.88889em); }

.modal-default .modal-content .modal-nav .modal-nav-link {
  font-size: var(--font-size-18, 1em); }

.modal-default .modal-content .modal-body .form-actions .form-remember {
  font-size: var(--font-size-14, 0.77778em); }

.modal-default .modal-content .modal-body .privacy-policy {
  font-size: var(--font-size-12, 0.66667em); }

.modal-default .modal-content .modal-body .not-member .link {
  font-size: var(--font-size-16, 0.88889em); }

.thin-strip-base.type-1 .wrapper > .content-location .link {
  font-size: var(--font-size-14, 0.77778em); }

.thin-strip-base.type-6 .wrapper > .content-download .heading {
  font-size: var(--font-size-16, 0.88889em); }
  @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.33333em); } }
  @media screen and (min-width: 1024px) {
    .thin-strip-base.type-6 .wrapper > .content-download .heading {
      font-size: var(--font-size-32, 1.77778em); } }

.thin-strip-base.type-6 .wrapper > .content-download .paragraph {
  font-size: var(--font-size-14, 0.77778em); }
  @media screen and (min-width: 1024px) {
    .thin-strip-base.type-6 .wrapper > .content-download .paragraph {
      font-size: var(--font-size-18, 1em); } }

.video-gallery .video-header > .link {
  font-size: var(--font-size-16, 0.88889em); }

/* CUSTOM FILES */
/* ARQUIVOS DE PAGINAS */
.form-edit-alert {
  background: var(--attention-light, #ffdf99);
  line-height: 1;
  padding: 12px;
  border-radius: var(--border-radius, 5px);
  border: 1px solid var(--attention-base, #ffae00);
  margin-bottom: 16px; }
  .form-edit-alert.alert-success {
    background: var(--success-light, #aadac1);
    border-color: var(--success-base, #2ba264); }

.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, 5px);
  border: 1px solid transparent;
  margin-bottom: 16px; }
  .alert.alert-warning {
    border-color: var(--attention-base, #ffae00);
    background: var(--attention-light, #ffdf99);
    color: var(--attention-dark, #b37a00); }
  .alert.alert-danger {
    border-color: var(--warning-base, #fc5353);
    background: var(--warning-light, #febaba);
    color: var(--warning-dark, #b03a3a); }
  .alert.alert-success {
    border-color: var(--success-base, #2ba264);
    background: var(--success-light, #aadac1);
    color: var(--success-dark, #1e7146); }

.form-edit-alert-success {
  background: var(--success-light, #aadac1);
  line-height: 1;
  padding: 12px;
  border-radius: var(--border-radius, 5px);
  border: 1px solid var(--success-base, #2ba264);
  margin-bottom: 16px; }

.bootbox .modal-body .bootbox-close-button {
  display: none; }

.bootbox .modal-footer .btn {
  padding: 0;
  line-height: 1.15;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  text-decoration: none;
  display: inline-block;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: var(--border-radius-button, 5px);
  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(64, 79, 87, 0.1));
  color: var(--neutral-base, #404f57); }
  .bootbox .modal-footer .btn-default:focus, .bootbox .modal-footer .btn-default:visited, .bootbox .modal-footer .btn-default:active {
    background: var(--neutral-transp-25, rgba(64, 79, 87, 0.25)); }
  .bootbox .modal-footer .btn-default:hover {
    background: var(--neutral-transp-15, rgba(64, 79, 87, 0.15)); }
  .bootbox .modal-footer .btn-default.is-loading {
    background: var(--neutral-transp-15, rgba(64, 79, 87, 0.15)); }
  .bootbox .modal-footer .btn-default.disabled {
    opacity: .50;
    background: var(--neutral-transp-10, rgba(64, 79, 87, 0.1));
    cursor: not-allowed; }

.bootbox .modal-footer .btn-primary {
  background: var(--highlight-base, #006699);
  color: #80d5ff; }
  .bootbox .modal-footer .btn-primary:focus, .bootbox .modal-footer .btn-primary:visited, .bootbox .modal-footer .btn-primary:active {
    background: var(--highlight-dark, #005782); }
  .bootbox .modal-footer .btn-primary:hover {
    background: var(--highlight-light-2, #4d94b8); }
  .bootbox .modal-footer .btn-primary.disabled {
    opacity: .50;
    background: var(--highlight-base, #006699);
    cursor: not-allowed; }

.members-page {
  padding: 32px 0;
  background: #f4f8fa; }
  .members-page .members-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .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: -webkit-calc((100% / 3) - 16px);
          width: calc((100% / 3) - 16px); } }
    .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: -webkit-calc((100% / 2) - 16px);
          width: calc((100% / 2) - 16px); } }
    .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 .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, #404f57);
          text-decoration: none;
          display: block; }
          .members-page .members-wrapper .members-sidebar .new-content .new-content-list .new-content-item:not(:first-child) {
            margin-top: 8px; }
      .members-page .members-wrapper .members-sidebar .members-cards {
        margin-top: 16px;
        overflow: auto;
        -ms-overflow-style: none;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex; }
        .members-page .members-wrapper .members-sidebar .members-cards::-webkit-scrollbar {
          display: none; }
        @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, 5px);
          cursor: pointer;
          -webkit-transition: 0.2s ease-in-out;
          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, #006699); }
          .members-page .members-wrapper .members-sidebar .members-cards .members-item[is-active="true"] {
            border-left: 5px solid var(--highlight-base, #006699); }
            .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, #006699); }
          .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: .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, #2ba264); }
              .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-actions {
            background: var(--neutral-transp-95, );
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -webkit-flex-flow: row wrap;
                -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: .875em;
              padding: 8px;
              text-decoration: none;
              color: var(--neutral-base, #404f57);
              -webkit-transition: 0.2s ease-in-out;
              transition: 0.2s ease-in-out;
              -webkit-box-flex: 1;
              -webkit-flex-grow: 1;
                  -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, #006699);
                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: -webkit-calc(75% - 48px);
          width: calc(75% - 48px);
          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: -webkit-calc(70% - 48px);
          width: calc(70% - 48px);
          margin-top: 0; } }
  .members-page .dashboard-header {
    margin-bottom: 32px; }
    .members-page .dashboard-header .dashboard-title {
      line-height: 1;
      display: -webkit-inline-box;
      display: -webkit-inline-flex;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -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, #006699);
        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, #2ba264); }
      .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 .members-panel {
    border: 1px solid #e3ecf0;
    border-radius: var(--border-radius, 5px);
    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: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -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;
      -webkit-transition: 0.2s ease-in-out;
      transition: 0.2s ease-in-out;
      -webkit-box-ordinal-group: 4;
      -webkit-order: 3;
          -ms-flex-order: 3;
              order: 3;
      margin-top: 8px; }
      @media screen and (min-width: 768px) {
        .members-page .members-panel#chart-panel .chart-options {
          -webkit-box-ordinal-group: unset;
          -webkit-order: unset;
              -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, #404f57);
        text-decoration: none;
        font-size: .875em;
        display: inline-block;
        cursor: pointer; }
        .members-page .members-panel#chart-panel .chart-options .chart-item:not(.item-view-all) {
          opacity: .6;
          -webkit-transition: 0.2s ease-in-out;
          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: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row wrap;
            -ms-flex-flow: row wrap;
                flex-flow: row wrap;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center; }
    .members-page .members-panel .panel-body {
      padding: 16px; }
      .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: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row wrap;
            -ms-flex-flow: row wrap;
                flex-flow: row wrap;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -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: -webkit-calc(50% - 24px);
            right: calc(50% - 24px);
            top: 50%;
            -webkit-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                    transform: translateY(-50%);
            font-size: 20px;
            color: #199adb; }
          .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: -webkit-calc(50% - 6px) !important;
            left: calc(50% - 6px) !important;
            top: 50% !important;
            -webkit-transform: translate(-50%, -50%) !important;
                -ms-transform: translate(-50%, -50%) !important;
                    transform: translate(-50%, -50%) !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: .875em;
              display: inline-block; }
      .members-page .members-panel .panel-body .activity-content {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row wrap;
            -ms-flex-flow: row wrap;
                flex-flow: row wrap;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -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: -webkit-calc(60% - 16px);
          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: .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, #f2f2f2);
        padding: 16px;
        border-radius: var(--border-radius, 5px);
        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, #006699); }
        .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: .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: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -webkit-flex-flow: row wrap;
                -ms-flex-flow: row wrap;
                    flex-flow: row wrap;
            -webkit-box-align: start;
            -webkit-align-items: flex-start;
                -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) {
                -webkit-box-align: center;
                -webkit-align-items: center;
                    -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: .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;
            -o-object-fit: cover;
               object-fit: cover; }
        .members-page .members-panel .panel-body .content-list .content-item .content-info {
          margin-left: 24px;
          max-width: -webkit-calc(100% - 74px);
          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: -webkit-calc(100% - 184px);
              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: .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 #e7e7e7;
            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, 5px);
              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, #2ba264);
                border-color: var(--success-dark, #1e7146); }
              .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, #b03a3a); }
      .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: -webkit-calc(100% - 32px);
          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, #404f57);
            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(64, 79, 87, 0.5));
            margin-top: 8px; }
        .members-page .members-panel .panel-body .favorite-item .favorite-footer {
          padding: 8px 16px;
          background: #eee;
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -webkit-flex-flow: row wrap;
              -ms-flex-flow: row wrap;
                  flex-flow: row wrap;
          -webkit-box-pack: justify;
          -webkit-justify-content: space-between;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -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 #accordion .panel-header a {
      color: var(--neutral-base, #404f57);
      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.77778em); }
    .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%;
      -webkit-box-flex: 0;
      -webkit-flex: none;
          -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[has-sidebar="true"] {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -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: -webkit-calc(40% - 24px);
            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 {
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -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 {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -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: -webkit-calc((100% / 2) - 16px);
        width: calc((100% / 2) - 16px); }
      .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: -webkit-calc((100% / 3) - 16px);
        width: calc((100% / 3) - 16px); }
      .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: -webkit-calc(83.3% - 16px);
        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: -webkit-calc(75% - 16px);
        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: -webkit-calc(67.4% - 16px);
        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: -webkit-calc((100% / 4) - 16px);
        width: calc((100% / 4) - 16px); }
      .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: -webkit-calc((100% / 6) - 16px);
        width: calc((100% / 6) - 16px); }
      .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%;
        margin-top: 16px; }
        @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: -webkit-calc(65% - 24px);
            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: -webkit-calc(75% - 24px);
            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: -webkit-calc(80% - 24px);
            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 {
        -webkit-appearance: menulist !important;
           -moz-appearance: menulist !important;
                appearance: menulist !important;
        height: 50px !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(:first-child), .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-formgroup .radio-inline:not(:first-child), .members-page .members-panel.edit-panel .panel-body .custom-edit-content .account-custom-row .radio-inline:not(:first-child) {
          margin-left: 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: -webkit-box;
        display: -webkit-flex;
        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: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
          -webkit-justify-content: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center;
          width: 100px;
          background: rgba(62, 69, 94, 0.25);
          color: var(--brand-base, #006699); }
          .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: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        -webkit-box-align: baseline;
        -webkit-align-items: baseline;
            -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: -webkit-calc((100% / 2) - 16px);
              width: calc((100% / 2) - 16px); } }
        .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: -webkit-box;
      display: -webkit-flex;
      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: -webkit-box;
      display: -webkit-flex;
      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: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        background: rgba(62, 69, 94, 0.25);
        color: var(--brand-base, #006699);
        line-height: 1;
        width: 200px !important; }
    .members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-categories .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 .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 {
      padding: 0;
      line-height: 1.15;
      border: none;
      -webkit-box-shadow: none;
              box-shadow: none;
      cursor: pointer;
      -webkit-transition: 0.2s ease-in-out;
      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: .875em;
      margin-top: 4px;
      color: var(--neutral-transp-75, #404f57);
      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 .form-control {
        display: block;
        width: 100%; }
      .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 .custom-selectize .select2-selection {
      height: 50px; }
      .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-selectize .select2-selection .select2-selection__rendered {
        line-height: 50px; }
      .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-selectize .select2-selection .select2-selection__arrow {
        height: 50px; }
    .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-selectize .selectize-control .selectize-input {
      -webkit-appearance: menulist;
      height: 50px; }
      .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;
        margin-left: 8px; }
    .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;
        -webkit-transition: 0.2s ease-in-out;
        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, #006699);
          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;
      -webkit-box-shadow: none !important;
              box-shadow: none !important; }
      .members-page .members-panel.edit-panel .panel-body .custom-edit-content .selectize-control .selectize-input {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row wrap;
            -ms-flex-flow: row wrap;
                flex-flow: row wrap;
        padding: 0 8px 8px; }
        .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;
          -webkit-box-shadow: none;
                  box-shadow: none;
          outline: none; }
        .members-page .members-panel.edit-panel .panel-body .custom-edit-content .selectize-control .selectize-input .item {
          background: #eee;
          line-height: 1;
          padding: 8px;
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center;
          margin-top: 8px; }
          .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: black;
            font-size: 22px;
            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, #404f57);
      font-family: var(--heading-font, "PT Serif");
      font-weight: 500;
      font-size: var(--font-size-24, 1.33333em);
      margin-bottom: 16px; }
    .members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-categories {
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -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: -webkit-calc(20% - 24px);
            width: calc(20% - 24px); } }
      .members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-categories .btn {
        margin-top: 16px;
        display: block;
        width: 100%;
        height: 50px;
        padding-top: 14px;
        padding-bottom: 14px;
        padding-left: 24px;
        padding-right: 24px;
        border-radius: var(--border-radius-button, 5px);
        font-size: 0.875em;
        background: var(--highlight-base, #006699);
        color: #80d5ff; }
        @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: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, #005782); }
        .members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-categories .btn:hover {
          background: var(--highlight-light-2, #4d94b8); }
        .members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-categories .btn.disabled {
          opacity: .50;
          background: var(--highlight-base, #006699);
          cursor: not-allowed; }
    .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: -webkit-calc((100% / 2) - 16px);
          width: calc((100% / 2) - 16px);
          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: -webkit-calc((100% / 2) - 16px);
          width: calc((100% / 2) - 16px); } }
    .members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-features .col-md-4 {
      width: -webkit-calc((100% / 2) - 16px);
      width: calc((100% / 2) - 16px); }
      @media screen and (min-width: 768px) {
        .members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-features .col-md-4 {
          width: -webkit-calc((100% / 3) - 16px);
          width: calc((100% / 3) - 16px); } }
    .members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-features .col-md-2 {
      width: -webkit-calc((100% / 2) - 16px);
      width: calc((100% / 2) - 16px); }
      @media screen and (min-width: 768px) {
        .members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-features .col-md-2 {
          width: -webkit-calc((100% / 6) - 16px);
          width: calc((100% / 6) - 16px); } }
      .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: -webkit-calc((100% / 3) - 16px);
      width: calc((100% / 3) - 16px); }
      @media screen and (min-width: 768px) {
        .members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-hours .selectize {
          width: -webkit-calc((100% / 4) - 16px);
          width: calc((100% / 4) - 16px); } }
    .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: -webkit-calc((100% / 4) - 16px);
          width: calc((100% / 4) - 16px);
          margin-top: 0; } }
    .members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-hours .group-hours-work .col-md-3 {
      width: -webkit-calc((100% / 3) - 16px);
      width: calc((100% / 3) - 16px); }
      @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: -webkit-calc((100% / 4) - 16px);
          width: calc((100% / 4) - 16px); } }
      .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: -webkit-calc((100% / 4) - 16px);
            width: calc((100% / 4) - 16px); } }
    .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%;
        -o-object-fit: cover;
           object-fit: cover; }
    .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: -webkit-box;
      display: -webkit-flex;
      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;
      -o-object-fit: cover;
         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: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
          -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 {
      -webkit-appearance: menulist;
         -moz-appearance: menulist;
              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;
      -webkit-box-align: stretch;
      -webkit-align-items: stretch;
          -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: 50px; }
      .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;
        -webkit-appearance: menulist;
           -moz-appearance: menulist;
                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 .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 .panel-form-media:not(:first-child) {
      margin-top: 16px; }
    .members-page .members-panel .panel-form-media .panel-heading {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      background: var(--color-black-transp-10, rgba(0, 0, 0, 0.1));
      padding: 8px; }
      .members-page .members-panel .panel-form-media .panel-heading .panel-heading-action {
        display: -webkit-box;
        display: -webkit-flex;
        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, 5px);
          font-size: 0.875em;
          margin: 0;
          background: var(--highlight-base, #006699);
          color: #80d5ff; }
          .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, #005782); }
          .members-page .members-panel .panel-form-media .panel-heading .panel-heading-action .btn:hover {
            background: var(--highlight-light-2, #4d94b8); }
          .members-page .members-panel .panel-form-media .panel-heading .panel-heading-action .btn.disabled {
            opacity: .50;
            background: var(--highlight-base, #006699);
            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: var(--color-black-transp-5, rgba(0, 0, 0, 0.05));
      padding: 8px;
      position: relative;
      overflow: hidden; }
      .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 .custom-template-download {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row wrap;
            -ms-flex-flow: row wrap;
                flex-flow: row wrap;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -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%;
          -webkit-box-ordinal-group: 2;
          -webkit-order: 1;
              -ms-flex-order: 1;
                  order: 1;
          padding-left: 11px; }
          .members-page .members-panel .panel-form-media .panel-body .custom-template-download .photo-gallery-image:before {
            -webkit-transition: 0.2s ease-in-out;
            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.image-default:before {
            content: "";
            position: absolute;
            width: 3px;
            height: 100%;
            top: 0;
            left: 0;
            background: var(--highlight-base, #006699); }
        .members-page .members-panel .panel-form-media .panel-body .custom-template-download .photo-gallery-actions {
          width: auto;
          -webkit-box-ordinal-group: 4;
          -webkit-order: 3;
              -ms-flex-order: 3;
                  order: 3; }
        .members-page .members-panel .panel-form-media .panel-body .custom-template-download .photo-gallery-title {
          width: 30%;
          word-break: break-word;
          -webkit-box-ordinal-group: 3;
          -webkit-order: 2;
              -ms-flex-order: 2;
                  order: 2; }
          .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 {
      border-top: 1px solid var(--color-black-transp-10, rgba(0, 0, 0, 0.1));
      background: var(--color-black-transp-5, rgba(0, 0, 0, 0.05));
      padding: 8px; }
      .members-page .members-panel .panel-form-media .panel-footer .text-muted {
        font-size: .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: .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 {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row wrap;
            -ms-flex-flow: row wrap;
                flex-flow: row wrap;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -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 {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
            -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 {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
            -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: -webkit-box;
      display: -webkit-flex;
      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: 50px;
        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, 5px);
        -webkit-box-shadow: none;
                box-shadow: none;
        border: 1px solid var(--neutral-transp-25, rgba(64, 79, 87, 0.25));
        color: var(--neutral-base, #404f57);
        outline: none;
        min-height: 50px; }
      .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 {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
            -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: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        width: 100%;
        height: 50px;
        border-radius: var(--border-radius-button, 5px);
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        margin-bottom: 0;
        background: var(--highlight-base, #006699);
        color: #80d5ff; }
        .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, #005782); }
        .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, #4d94b8); }
        .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: .50;
          background: var(--highlight-base, #006699);
          cursor: not-allowed; }
    .members-page .members-panel .panel-form-media.custom-file-upload .bootstrap-filestyle .form-control {
      width: 70%; }
    .members-page .members-panel .panel-form-media#tour-badges .custom-content-badge {
      margin-bottom: 0;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -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: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-flow: column wrap;
            -ms-flex-flow: column wrap;
                flex-flow: column wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: 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#screenPackage .advertise-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
    @media screen and (min-width: 768px) {
      .members-page#screenPackage .advertise-wrapper {
        -webkit-flex-wrap: nowrap;
            -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;
        -o-object-fit: cover;
           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; } }

.selectize-customized .selectize-control {
  position: relative; }

.selectize-customized .selectize-dropdown {
  position: absolute;
  margin-top: 8px;
  z-index: 5000;
  background: white;
  padding: 8px !important;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px; }

.selectize-customized .option {
  cursor: pointer;
  padding: 0 8px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out; }
  .selectize-customized .option:not(:first-child) {
    margin-top: 4px; }
  .selectize-customized .option:hover {
    background: var(--highlight-base, #006699);
    color: white; }

.selectize-customized .selectize-input .item {
  background: none !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: .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: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    background: var(--highlight-base, #006699);
    color: #80d5ff; }
    .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: .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, #006699); }
        .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: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column wrap;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -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: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-flow: column wrap;
          -ms-flex-flow: column wrap;
              flex-flow: column wrap;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -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: .875rem; }
  .custom-members-modal .multiple-categories .no-child {
    display: inline-block;
    border-radius: var(--border-radius, 5px);
    text-transform: capitalize; }
    .custom-members-modal .multiple-categories .no-child .category-child {
      padding: 4px;
      background: var(--highlight-base, #006699);
      color: white;
      display: block;
      border-radius: var(--border-radius, 5px);
      -webkit-transition: 0.2s ease-in-out;
      transition: 0.2s ease-in-out; }
      .custom-members-modal .multiple-categories .no-child .category-child.selected {
        background: #d5d5d5;
        text-decoration: line-through;
        color: var(--neutral-base, #404f57); }
      .custom-members-modal .multiple-categories .no-child .category-child:hover {
        background: var(--highlight-dark, #005782); }
  .custom-members-modal .selectize-control {
    background: #eee; }
    .custom-members-modal .selectize-control + .max-categories {
      background: #eee;
      line-height: 1;
      padding: 8px;
      font-size: .75em;
      border-top: 1px solid #e1e1e1; }
    .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: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: start;
      -webkit-align-items: 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, #006699);
        color: white;
        border-radius: var(--border-radius, 5px);
        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 .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 {
  -webkit-appearance: menulist !important;
     -moz-appearance: menulist !important;
          appearance: menulist !important;
  height: 50px !important;
  background: white !important; }

.default-row-biling {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .default-row-biling .col-md-12 {
    width: 100%; }
  .default-row-biling .col-md-8 {
    width: -webkit-calc(67.4% - 16px);
    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: -webkit-calc((100% / 2) - 16px);
        width: calc((100% / 2) - 16px); } }
  .default-row-biling .col-md-4 {
    width: -webkit-calc((100% / 3) - 16px);
    width: calc((100% / 3) - 16px); }
  .default-row-biling .col-md-3 {
    width: -webkit-calc((100% / 4) - 16px);
    width: calc((100% / 4) - 16px); }
  .default-row-biling .col-md-2 {
    width: 100%; }
    @media screen and (min-width: 768px) {
      .default-row-biling .col-md-2 {
        width: -webkit-calc((100% / 6) - 16px);
        width: calc((100% / 6) - 16px); } }
  .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: .875rem;
      cursor: pointer; }
  .custom-tree-view .categoryBullet .categoryAdd {
    padding: 4px;
    background: var(--highlight-base, #006699);
    color: white;
    display: inline-block;
    border-radius: var(--border-radius, 5px);
    -webkit-transition: 0.2s ease-in-out;
    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, #404f57);
    text-decoration: none; }
  .custom-tree-view > ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column wrap;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -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, "Open Sans"); }
    .price-resume .orderTotalAmount strong {
      font-family: var(--heading-font, "PT Serif"); }
  .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 .profile-user-info {
  border-bottom: 1px solid #e3ecf0;
  padding-bottom: 16px;
  margin-bottom: 16px; }
  .profile-page .profile-user-info .user-picture {
    width: 100px;
    height: 100px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 9999px;
    display: block;
    margin: 0 auto; }
  .profile-page .profile-user-info .user-name, .profile-page .profile-user-info .user-since, .profile-page .profile-user-info .user-from {
    margin-top: 8px; }
  .profile-page .profile-user-info .user-from {
    margin-top: 4px; }

.profile-page .profile-user-description {
  text-align: center; }
  .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 {
    margin-top: 8px; }
  .profile-page .profile-user-description .facebook-link {
    margin-top: 16px; }

.profile-page .input-group-btn .button {
  height: 50px;
  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 {
  max-width: 100%;
  display: block;
  position: relative; }
  .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 {
      -o-object-fit: cover;
         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;
    -o-object-fit: cover;
       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; }
  .profile-page .profile-edit-picture .preview-picture #buttonfile {
    margin-top: 8px; }

.profile-page .profile-edit-picture .or {
  display: block;
  text-align: center;
  padding: 8px 0; }

.profile-page .profile-edit-picture .picture-actions {
  margin-top: 8px; }

.profile-page .personal-page-label {
  border-top: 1px solid #eee;
  padding-top: 16px;
  margin-top: 16px;
  font-size: .875em; }

.profile-page .personal-page {
  position: relative;
  height: 26px;
  margin: 8px auto 0;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
          box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1); }
  .profile-page .personal-page .switch-label {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: 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, #404f57);
    text-align: center;
    cursor: pointer; }
    .profile-page .personal-page .switch-label:active {
      font-weight: bold; }
  .profile-page .personal-page .switch-label-off {
    padding-left: 2px; }
  .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;
      -webkit-transition: 0.15s ease-out;
      transition: 0.15s ease-out;
      -webkit-transition-property: color, text-shadow;
      transition-property: color, text-shadow; }
    .profile-page .personal-page .switch-input:checked + .switch-label-on ~ .switch-selection {
      left: -webkit-calc(50% - 2px);
      left: calc(50% - 2px);
      background: var(--warning-base, #fc5353); }
  .profile-page .personal-page .switch-selection {
    position: absolute;
    z-index: 1;
    top: 2px;
    left: 2px;
    display: block;
    width: 50%;
    height: 22px;
    border-radius: 3px;
    background: var(--success-base, #2ba264);
    -webkit-transition: left 0.15s ease-out;
    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: 0 auto; }
  #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: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px; }

.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 label {
    font-size: .875em; }
  .section-unsplash .unsplash-header .input {
    width: 100%; }

.section-unsplash .unsplash-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: -16px; }
  .section-unsplash .unsplash-body .unsplash-item {
    width: -webkit-calc((100% / 3) - 16px);
    width: calc((100% / 3) - 16px);
    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;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      color: white;
      font-size: 32px; }
    .section-unsplash .unsplash-body .unsplash-item:hover .unsplash-author {
      -webkit-transform: translateY(0);
          -ms-transform: translateY(0);
              transform: translateY(0); }
    .section-unsplash .unsplash-body .unsplash-item.selected:before {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; }
    .section-unsplash .unsplash-body .unsplash-item.selected .unsplash-author {
      -webkit-transform: translateY(0);
          -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;
        -o-object-fit: cover;
           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;
      -webkit-transition: .2s ease-in-out;
      transition: .2s ease-in-out;
      -webkit-transform: translateY(100%);
          -ms-transform: translateY(100%);
              transform: translateY(100%); }

.section-unsplash .unsplash-loadmore {
  margin-top: 16px; }

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }

@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;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
          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;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
            box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    -webkit-transition: width 0.6s ease;
    transition: width 0.6s ease; }
    .progress .progress-bar.active {
      -webkit-animation: progress-bar-stripes 2s linear infinite;
              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 {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
            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, #2ba264); }
  .progress .progress-bar-info {
    background-color: var(--highlight-base, #006699); }
  .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: 12px; }

@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; } }

.hours-datepicker {
  position: absolute;
  z-index: 5;
  background: white;
  padding: 24px;
  border: 1px solid #ccc;
  margin-top: 14px;
  -webkit-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.35);
          box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.35);
  left: 50%;
  -webkit-transform: translateX(-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%;
    -webkit-transform: translateX(-50%) rotate(45deg);
        -ms-transform: translateX(-50%) rotate(45deg);
            transform: translateX(-50%) rotate(45deg); }
  .hours-datepicker .datepicker-content {
    display: -webkit-box;
    display: -webkit-flex;
    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;
        -webkit-box-shadow: 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; }

.claim-signup-breadcrumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 32px; }
  .claim-signup-breadcrumb.isVisible {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    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, #006699);
    color: var(--color-white-base, white);
    line-height: 1;
    padding: 16px 12px;
    position: relative;
    font-size: .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, #006699); }
    .claim-signup-breadcrumb .breadcrumb-item:not(:first-child):before {
      content: "";
      position: absolute;
      top: -5px;
      left: -4px;
      width: 6px;
      height: -webkit-calc(50% + 6px);
      height: calc(50% + 6px);
      background: white;
      -webkit-transform: rotate(-15deg);
          -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: -webkit-calc(50% + 6px);
      height: calc(50% + 6px);
      background: white;
      -webkit-transform: rotate(15deg);
          -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; } }

.error-page {
  height: 100vh; }
  .error-page.error-400 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column wrap;
        -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: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: 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;
        -o-object-fit: cover;
           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.33333em); }

/* ARQUIVOS DE PAGINAS */
/* ARQUIVOS DE MODSTORES */
/* 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 {
  -webkit-box-shadow: none;
          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: .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 */
body {
  background: #fcfcfd;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

a {
  color: #006699;
  text-decoration: underline;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out; }
  a:hover {
    color: var(--brand-dark, #00476b);
    text-decoration: underline; }

.link {
  color: #006699;
  text-decoration: underline;
  border: none;
  line-height: 1.5;
  font-size: 14px; }
  .link:hover {
    color: var(--brand-dark, #00476b);
    text-decoration: underline; }

.text-uppercase {
  text-transform: uppercase; }

.text-lowercase {
  text-transform: lowercase; }

.container {
  max-width: 1280px;
  padding-left: 24px;
  padding-right: 24px; }
  @media (min-width: 1300px) {
    .container {
      padding: 0; } }

.breadcrumb-content {
  padding: 16px 0; }
  .breadcrumb-content .container {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap; }
    .breadcrumb-content .container a, .breadcrumb-content .container span {
      font-size: 16px;
      margin: 0 6px 0 0;
      position: relative;
      padding: 0 0 0 6px; }
      .breadcrumb-content .container a:first-child, .breadcrumb-content .container span:first-child {
        padding: 0; }
    .breadcrumb-content .container a:before {
      content: "";
      background: var(--neutral-base, #404f57);
      margin: 0;
      position: absolute;
      bottom: 5px;
      right: -7px;
      height: 14px;
      width: 1px;
      -webkit-transform: rotate(18deg);
          -ms-transform: rotate(18deg);
              transform: rotate(18deg); }

[data-bg="brand"] {
  background: #7F898E; }
  [data-bg="brand"] .link {
    color: white; }

.visible-d {
  display: none; }
  @media (min-width: 768px) {
    .visible-d {
      display: block; } }

.hidden-d {
  display: block; }
  @media (min-width: 768px) {
    .hidden-d {
      display: none; } }

.mb-32 {
  margin-bottom: 32px; }

.mb-40 {
  margin-bottom: 40px !important; }

.mt-32 {
  margin-top: 32px; }

.header {
  z-index: 10; }
  .header[data-type="5"] > .header-bar .bar-link {
    font-weight: 600; }
  .header[data-type="5"] > .header-bar .user-button .user-content {
    -webkit-box-shadow: 0px 4px 16px 0px rgba(48, 49, 51, 0.15);
            box-shadow: 0px 4px 16px 0px rgba(48, 49, 51, 0.15); }
  .header[data-type="5"] > .header-content .header-logo {
    margin-top: 3px;
    height: 82px;
    width: 192px; }
    @media (max-width: 768px) {
      .header[data-type="5"] > .header-content .header-logo {
        width: 170px; } }
  @media (max-width: 992px) {
    .header[data-type="5"] > .header-content .content-mobile {
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
          -ms-flex-order: 1;
              order: 1; } }
  .header[data-type="5"] > .header-content .content-mobile .toggler-button {
    width: 25px;
    font-size: 32px; }
  @media (max-width: 992px) {
    .header[data-type="5"] > .header-content .content-left,
    .header[data-type="5"] > .header-content .content-search {
      -webkit-box-ordinal-group: 3;
      -webkit-order: 2;
          -ms-flex-order: 2;
              order: 2; } }
  .header[data-type="5"] > .header-content .content-search .button {
    font-size: 14px;
    line-height: 45px;
    padding-top: 0;
    padding-bottom: 0;
    width: 128px; }
    @media (min-width: 1280px) {
      .header[data-type="5"] > .header-content .content-search .button {
        margin-right: 10px; } }
    @media (max-width: 580px) {
      .header[data-type="5"] > .header-content .content-search .button {
        background: none;
        width: auto;
        padding: 0; } }
    .header[data-type="5"] > .header-content .content-search .button img {
      position: relative;
      width: 20px;
      height: 19px;
      left: 3px;
      top: -1px;
      margin-right: 8px;
      -webkit-transform: scaleX(-1);
          -ms-transform: scaleX(-1);
              transform: scaleX(-1); }
      @media (max-width: 580px) {
        .header[data-type="5"] > .header-content .content-search .button img {
          height: 32px;
          width: 32px; } }
  .header[data-type="5"] > .header-content .content-search .visible-d {
    display: none; }
    @media (min-width: 580px) {
      .header[data-type="5"] > .header-content .content-search .visible-d {
        display: block; } }
  .header[data-type="5"] > .header-content .content-search .visible-m {
    display: block; }
    @media (min-width: 580px) {
      .header[data-type="5"] > .header-content .content-search .visible-m {
        display: none; } }
  .header[data-type="5"] > .header-content .content-search.is-expandable {
    position: relative; }
    .header[data-type="5"] > .header-content .content-search.is-expandable form {
      min-width: inherit;
      max-width: inherit;
      border: 1px solid #e5e7e8;
      padding: 10px;
      background: #f8f8f8;
      position: absolute;
      right: 10px;
      top: 100%;
      display: block;
      margin-top: 10px;
      -webkit-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1);
              box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1);
      border-radius: 5px;
      opacity: 0; }
      .header[data-type="5"] > .header-content .content-search.is-expandable form input {
        min-height: 45px; }
        @media (min-width: 380px) {
          .header[data-type="5"] > .header-content .content-search.is-expandable form input {
            min-width: 300px; } }
      .header[data-type="5"] > .header-content .content-search.is-expandable form .button.is-brand {
        padding: 0;
        margin: 0;
        background: none;
        -webkit-transform: rotate(-90deg);
            -ms-transform: rotate(-90deg);
                transform: rotate(-90deg);
        position: absolute;
        top: 10px;
        right: 10px;
        width: 45px;
        height: 45px; }
        @media (max-width: 580px) {
          .header[data-type="5"] > .header-content .content-search.is-expandable form .button.is-brand {
            background: none;
            width: auto; } }
        @media (max-width: 580px) {
          .header[data-type="5"] > .header-content .content-search.is-expandable form .button.is-brand img {
            height: 32px;
            width: 32px; } }
      .header[data-type="5"] > .header-content .content-search.is-expandable form:before {
        content: "";
        position: absolute;
        width: 12px;
        height: 12px;
        top: -3px;
        right: 20px;
        background: #f8f8f8;
        border-top: 1px solid #e5e7e8;
        border-left: 1px solid #e5e7e8;
        -webkit-transform: rotate(45deg) translateX(-50%);
        -ms-transform: rotate(45deg) translateX(-50%);
        transform: rotate(45deg) translateX(-50%); }
    .header[data-type="5"] > .header-content .content-search.is-expandable .expandable-button.is-open + form {
      opacity: 1;
      -webkit-transition: 0.2s ease-in-out;
      transition: 0.2s ease-in-out; }
      .header[data-type="5"] > .header-content .content-search.is-expandable .expandable-button.is-open + form img {
        width: 21px;
        height: 21px;
        margin: 10px;
        left: inherit; }
  .header[data-type="5"] .header-navbar .navbar-link {
    font-family: var(--font-family-nav, "Crimson Text");
    font-size: var(--font-size-17, 0.94444em);
    font-weight: 400;
    letter-spacing: -0.6px;
    position: relative;
    text-transform: uppercase;
    font-size: 16px; }
    @media (min-width: 768px) {
      .header[data-type="5"] .header-navbar .navbar-link {
        margin: 0 10px 0 0;
        position: relative;
        padding: 0 0 0 10px;
        line-height: 1; } }
    .header[data-type="5"] .header-navbar .navbar-link:hover {
      color: #006699 !important; }
    @media (min-width: 768px) {
      .header[data-type="5"] .header-navbar .navbar-link + .navbar-link:before {
        content: "";
        background: white;
        margin: 0;
        position: absolute;
        top: 0;
        left: 0;
        height: 16px;
        width: 1px; } }
    .header[data-type="5"] .header-navbar .navbar-link.navbar-dropdown .more-content {
      -webkit-box-shadow: 0px 4px 16px 0px rgba(48, 49, 51, 0.15);
              box-shadow: 0px 4px 16px 0px rgba(48, 49, 51, 0.15); }
  .header[data-type="5"] .header-navbar .navbar-more .more-label,
  .header[data-type="5"] .header-navbar .navbar-more .more-link {
    font-family: var(--font-family-nav, "Crimson Text");
    font-size: var(--font-size-17, 0.94444em);
    font-weight: 400;
    letter-spacing: -0.6px;
    position: relative;
    text-transform: uppercase; }
  .header[data-type="5"] .header-navbar .navbar-more .more-label .fa {
    height: 12px;
    width: 12px;
    opacity: .5; }
  .header[data-type="5"] > .navbar-mobile {
    -webkit-box-shadow: 0px 2px 4px 0px rgba(48, 49, 51, 0.05);
            box-shadow: 0px 2px 4px 0px rgba(48, 49, 51, 0.05); }
    .header[data-type="5"] > .navbar-mobile:before {
      right: 51%; }
    .header[data-type="5"] > .navbar-mobile .navbar-links .navbar-link {
      font-family: var(--font-family-nav, "Crimson Text");
      font-size: var(--font-size-17, 0.94444em);
      font-weight: 400;
      letter-spacing: -0.6px;
      position: relative;
      text-transform: uppercase; }
  .header[data-type="5"]:not([is-inverse="false"]) > .header-content {
    background: white;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(48, 49, 51, 0.05);
            box-shadow: 0px 2px 4px 0px rgba(48, 49, 51, 0.05); }
  .header[data-type="5"]:not([is-inverse="false"]) .header-navbar .navbar-link {
    color: #999999; }
    @media (min-width: 768px) {
      .header[data-type="5"]:not([is-inverse="false"]) .header-navbar .navbar-link + .navbar-link:before {
        background: #999999; } }
  .header[data-type="5"]:not([is-inverse="false"]) .header-navbar .navbar-more .more-label,
  .header[data-type="5"]:not([is-inverse="false"]) .header-navbar .navbar-more .more-link {
    color: #999999; }
    .header[data-type="5"]:not([is-inverse="false"]) .header-navbar .navbar-more .more-label:hover,
    .header[data-type="5"]:not([is-inverse="false"]) .header-navbar .navbar-more .more-link:hover {
      color: #006699; }
  .header[data-type="5"]:not([is-inverse="false"]) > .navbar-mobile .navbar-links .navbar-link {
    color: #999999; }
    .header[data-type="5"]:not([is-inverse="false"]) > .navbar-mobile .navbar-links .navbar-link:hover {
      color: #006699; }

.footer > .footer-content,
.footer > .footer-bar {
  background: #222222; }

.footer > .footer-content {
  padding: 50px 0 30px; }
  .footer > .footer-content .wrapper {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .footer > .footer-content .wrapper + .wrapper {
      border-top: 1px dotted #a2a2a2;
      margin-top: 35px;
      padding-top: 30px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
      @media (min-width: 992px) {
        .footer > .footer-content .wrapper + .wrapper {
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -webkit-flex-direction: row;
              -ms-flex-direction: row;
                  flex-direction: row;
          -webkit-box-align: end;
          -webkit-align-items: flex-end;
              -ms-flex-align: end;
                  align-items: flex-end; } }
    .footer > .footer-content .wrapper .footer-item .footer-item-content .link-footer {
      text-transform: uppercase;
      font-weight: 400;
      font-size: var(--font-size-13, 0.72222em);
      color: white;
      opacity: .65; }
      .footer > .footer-content .wrapper .footer-item .footer-item-content .link-footer:hover {
        opacity: 1; }
      @media (max-width: 768px) {
        .footer > .footer-content .wrapper .footer-item .footer-item-content .link-footer {
          font-size: 12px; } }
    .footer > .footer-content .wrapper .footer-item[data-content="site-logo"] {
      margin-top: 40px;
      -webkit-box-ordinal-group: 3;
      -webkit-order: 2;
          -ms-flex-order: 2;
              order: 2; }
      @media (min-width: 992px) {
        .footer > .footer-content .wrapper .footer-item[data-content="site-logo"] {
          margin: 0;
          max-width: 250px;
          -webkit-box-ordinal-group: 2;
          -webkit-order: 1;
              -ms-flex-order: 1;
                  order: 1; } }
    .footer > .footer-content .wrapper .footer-item[data-content="site-content"] {
      max-width: 100%;
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
          -ms-flex-order: 1;
              order: 1; }
      @media (min-width: 992px) {
        .footer > .footer-content .wrapper .footer-item[data-content="site-content"] {
          max-width: initial;
          width: -webkit-calc(100% - 268px);
          width: calc(100% - 268px);
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-ordinal-group: 3;
          -webkit-order: 2;
              -ms-flex-order: 2;
                  order: 2; } }
      .footer > .footer-content .wrapper .footer-item[data-content="site-content"] .footer-item-content {
        margin: 18px 0 0;
        width: 100%;
        -webkit-column-count: inherit;
                column-count: inherit;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center; }
        @media (min-width: 992px) {
          .footer > .footer-content .wrapper .footer-item[data-content="site-content"] .footer-item-content {
            margin-top: auto;
            -webkit-box-pack: end;
            -webkit-justify-content: flex-end;
                -ms-flex-pack: end;
                    justify-content: flex-end; } }
        .footer > .footer-content .wrapper .footer-item[data-content="site-content"] .footer-item-content .link-footer {
          margin: 0 0 0 10px;
          position: relative;
          padding: 0 10px 0 0; }
          .footer > .footer-content .wrapper .footer-item[data-content="site-content"] .footer-item-content .link-footer:hover {
            color: white; }
          .footer > .footer-content .wrapper .footer-item[data-content="site-content"] .footer-item-content .link-footer:before {
            content: "";
            background: #858585;
            margin: 0;
            position: absolute;
            top: 3px;
            right: 0;
            height: 12px;
            width: 1px; }
          .footer > .footer-content .wrapper .footer-item[data-content="site-content"] .footer-item-content .link-footer:last-child:before {
            display: none; }
  .footer > .footer-content .footer-search {
    position: relative;
    width: 100%;
    max-width: 400px; }
    .footer > .footer-content .footer-search input {
      background: none;
      border: none;
      min-height: 45px;
      width: 100%;
      border-radius: 4px; }
      @media (max-width: 768px) {
        .footer > .footer-content .footer-search input {
          font-size: 16px; } }
    .footer > .footer-content .footer-search button {
      height: 28px;
      width: 28px;
      display: inline-block;
      background: url(../../../../external.html?link=https://d1ore3n0z2tnb3.cloudfront.net/assets/images/structure/icon-search-blue.svg) no-repeat center;
      background-size: cover;
      -webkit-box-shadow: none;
              box-shadow: none;
      padding: 0;
      font-size: 0; }
    @media (min-width: 768px) {
      .footer > .footer-content .footer-search {
        width: -webkit-calc(100% / 2);
        width: calc(100% / 2); } }
    @media (min-width: 992px) {
      .footer > .footer-content .footer-search {
        width: -webkit-calc(100% / 3);
        width: calc(100% / 3); } }
    @media (max-width: 768px) {
      .footer > .footer-content .footer-search {
        border-bottom: 1px solid #999;
        padding-bottom: 35px; } }
    .footer > .footer-content .footer-search .content-form .input-group-action {
      margin: 0;
      position: absolute;
      right: 0;
      top: 0;
      height: 45px;
      width: 50px;
      line-height: 32px;
      text-align: center; }
    .footer > .footer-content .footer-search .content-form .input-group {
      background: white;
      padding-right: 45px;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      -webkit-flex-direction: row-reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse;
      border-radius: 4px; }
      .footer > .footer-content .footer-search .content-form .input-group .input-group-icon {
        border: none;
        background: none;
        padding: 0 16px 0 0;
        display: none; }
  .footer > .footer-content .footer-social {
    margin: 18px 0 0;
    width: 100%;
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly; }
    @media (min-width: 768px) {
      .footer > .footer-content .footer-social {
        margin: 0;
        width: -webkit-calc(100% / 2);
        width: calc(100% / 2); } }
    @media (min-width: 992px) {
      .footer > .footer-content .footer-social {
        width: -webkit-calc(100% / 3);
        width: calc(100% / 3); } }
    @media (max-width: 768px) {
      .footer > .footer-content .footer-social {
        border-bottom: 1px solid #999;
        padding: 35px 0;
        margin: 0; } }
    .footer > .footer-content .footer-social .social-link {
      border: none;
      font-size: var(--font-size-36, 2em);
      color: #d3d3d3; }
      .footer > .footer-content .footer-social .social-link:hover {
        color: white; }
  .footer > .footer-content .footer-signup {
    margin: 35px 0 0;
    text-align: center;
    width: 100%; }
    @media (min-width: 992px) {
      .footer > .footer-content .footer-signup {
        margin: 0;
        width: -webkit-calc(100% / 3);
        width: calc(100% / 3); } }
    .footer > .footer-content .footer-signup .button {
      font-size: 15px; }
      @media (min-width: 992px) {
        .footer > .footer-content .footer-signup .button {
          font-size: 16px;
          max-width: 400px;
          margin-left: auto; } }

.footer .footer-logo img {
  max-height: 46px;
  -webkit-filter: grayscale(1) invert(1) brightness(1);
          filter: grayscale(1) invert(1) brightness(1); }
  @media (max-width: 992px) {
    .footer .footer-logo img {
      margin: 0 auto;
      display: block; } }
  @media (max-width: 768px) {
    .footer .footer-logo img {
      max-height: 36px; } }

.footer .footer-bar {
  font-size: var(--font-size-13, 0.72222em);
  color: #858585;
  margin: 12px 0 0;
  font-weight: 400; }
  .footer .footer-bar .container {
    padding: 0; }
    .footer .footer-bar .container .wrapper {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
      @media (min-width: 992px) {
        .footer .footer-bar .container .wrapper {
          -webkit-box-align: start;
          -webkit-align-items: flex-start;
              -ms-flex-align: start;
                  align-items: flex-start; } }

.heading.highlight {
  color: #00141e;
  font-weight: bold;
  text-align: center;
  font-size: 24px; }
  @media (min-width: 580px) {
    .heading.highlight {
      font-size: 32px; } }
  .heading.highlight small {
    display: block;
    font-weight: bold;
    color: #b49561;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2.25px;
    font-family: var(--font-family-base, "Open Sans");
    margin-bottom: 9px; }
    @media (min-width: 580px) {
      .heading.highlight small {
        font-size: 18px; } }

.button {
  font-weight: 600;
  position: relative; }
  .button.is-primary {
    color: white; }
    .button.is-primary:focus, .button.is-primary:visited, .button.is-primary:active {
      background: var(--highlight-base, #006699); }
    .button.is-primary:hover {
      background: var(--highlight-base, #006699);
      opacity: 0.9; }
  .button.is-secondary {
    background: #009dc9;
    color: var(--color-white-base, white); }
    .button.is-secondary:focus, .button.is-secondary:visited, .button.is-secondary:active {
      background: #009dc9; }
    .button.is-secondary:hover {
      background: #006699; }
    .button.is-secondary.is-loading {
      background: #006699; }
    .button.is-secondary.disabled {
      opacity: .50;
      background: #006699;
      cursor: not-allowed;
      pointer-events: none; }
  .button.is-default {
    background-color: #f2f3f4;
    border: 0.5px solid #ccd0d2;
    color: var(--neutral-base, #404f57);
    font-size: 16px;
    font-weight: 700; }
    .button.is-default:focus, .button.is-default:visited, .button.is-default:active {
      background-color: #f2f3f4; }
    .button.is-default:hover {
      background-color: #f2f3f4;
      border: solid 0.5px #ccd0d2;
      color: #00141e;
      -webkit-box-shadow: 0 4px 8px 0 rgba(48, 49, 51, 0.15);
              box-shadow: 0 4px 8px 0 rgba(48, 49, 51, 0.15); }
    .button.is-default.is-loading {
      background-color: #f2f3f4; }
    .button.is-default.disabled {
      opacity: .50;
      background-color: #f2f3f4;
      cursor: not-allowed;
      pointer-events: none; }
  .button.has-shadow {
    -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
            box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1); }
    .button.has-shadow:hover {
      -webkit-box-shadow: 0 4px 8px 0 rgba(48, 49, 51, 0.15);
              box-shadow: 0 4px 8px 0 rgba(48, 49, 51, 0.15); }
  .button.button-sm {
    font-size: 16px; }
  .button.button-md, .button.button-bg {
    font-size: 18px; }
  .button.button-long {
    font-size: 18px;
    padding: 14px 24px; }

.input, select, textarea {
  font-size: 18px;
  border-color: var(--neutral-transp-15, rgba(64, 79, 87, 0.15));
  border-radius: var(--border-radius, 5px); }

.multiple-select select {
  padding: 12px;
  font-size: 16px; }

.select2-container--default .select2-selection--single {
  border-color: var(--neutral-transp-25, rgba(64, 79, 87, 0.25)); }

/* Advertise  *************************************************************************************************************************/
.pricing-plans {
  padding: 24px 0; }
  @media (min-width: 992px) {
    .pricing-plans {
      padding: 48px 0; } }
  .pricing-plans .pricing-table .pricing-wrapper .pricing-list .pricing-item .pricing-price .pricing-value {
    font-family: var(--font-family-base, "Open Sans"); }
  .pricing-plans[data-bg="neutral"] .comparison-table .blank:before {
    background: #f2f3f4;
    top: -2px;
    height: 102%; }
  .pricing-plans[data-bg="brand"] .comparison-table {
    background: var(--neutral-base, #404f57); }
    .pricing-plans[data-bg="brand"] .comparison-table .blank:before {
      background: var(--neutral-base, #404f57);
      top: -2px;
      height: 102%; }
    .pricing-plans[data-bg="brand"] .comparison-table > thead > tr:first-child {
      background: #00141e; }
      .pricing-plans[data-bg="brand"] .comparison-table > thead > tr:first-child th {
        color: white; }
    .pricing-plans[data-bg="brand"] .comparison-table > tbody > tr > th, .pricing-plans[data-bg="brand"] .comparison-table > tbody > tr > td {
      color: white; }
    .pricing-plans[data-bg="brand"] .comparison-table > tbody > tr .features-title {
      background: #00141e; }
    .pricing-plans[data-bg="brand"] .comparison-table.table-bordered {
      border-color: #00141e; }
      .pricing-plans[data-bg="brand"] .comparison-table.table-bordered > thead > tr > th,
      .pricing-plans[data-bg="brand"] .comparison-table.table-bordered > thead > tr > td,
      .pricing-plans[data-bg="brand"] .comparison-table.table-bordered > tbody > tr > th,
      .pricing-plans[data-bg="brand"] .comparison-table.table-bordered > tbody > tr > td,
      .pricing-plans[data-bg="brand"] .comparison-table.table-bordered > tfoot > tr > th,
      .pricing-plans[data-bg="brand"] .comparison-table.table-bordered > tfoot > tr > td {
        border-color: #00141e; }

.advertise-item {
  font-size: 14px; }

.pricing-plans + .hero-default[data-type="1"] {
  padding-top: 48px;
  padding-bottom: 48px; }
  .pricing-plans + .hero-default[data-type="1"] .button {
    margin-top: 8px; }

.custom-content .pricing-plans {
  padding: 24px 0 8px; }

/* FAQ **********************************************************************************************************************************/
.faq-page {
  padding: 0; }
  .faq-page .faq-content {
    padding: 48px 24px; }
    @media (min-width: 768px) {
      .faq-page .faq-content {
        padding: 48px 15px; } }
    .faq-page .faq-content .heading.highlight + .toggle-item {
      margin-top: 48px; }
    .faq-page .faq-content .toggle-item {
      background: #f7f4ef; }
      .faq-page .faq-content .toggle-item .toggle-header {
        padding: 24px; }
        .faq-page .faq-content .toggle-item .toggle-header .button:before {
          top: 0px; }
        .faq-page .faq-content .toggle-item .toggle-header .toggle-title {
          font-size: 18px;
          font-weight: bold;
          color: #00141e; }
      .faq-page .faq-content .toggle-item .toggle-content {
        padding: 32px; }
        .faq-page .faq-content .toggle-item .toggle-content .paragraph {
          font-size: 16px;
          color: var(--neutral-base, #404f57); }
          .faq-page .faq-content .toggle-item .toggle-content .paragraph + .paragraph {
            margin-top: 12px; }
    .faq-page .faq-content .link {
      font-size: 14px; }

.details-default > .details-header .details-contact .contact-item {
  color: var(--neutral-base, #404f57);
  max-width: inherit;
  margin-top: 16px; }
  .details-default > .details-header .details-contact .contact-item .icon .fa {
    color: #7f898e;
    font-size: 0;
    height: 16px;
    width: 16px; }
  .details-default > .details-header .details-contact .contact-item a {
    color: #006699;
    text-decoration: underline; }
    .details-default > .details-header .details-contact .contact-item a.link {
      font-size: 18px;
      text-decoration: underline;
      border: none;
      margin: 0;
      line-height: 1.5; }
    .details-default > .details-header .details-contact .contact-item a:hover {
      color: var(--brand-dark, #00476b); }
  .details-default > .details-header .details-contact .contact-item.item-email .icon .fa {
    background: url(../../../../external.html?link=https://d1ore3n0z2tnb3.cloudfront.net/assets/images/structure/icon-comment.svg) no-repeat 0 0;
    background-size: contain; }
  .details-default > .details-header .details-contact .contact-item.item-website .icon .fa {
    background: url(../../../../external.html?link=https://d1ore3n0z2tnb3.cloudfront.net/assets/images/structure/icon-link.svg) no-repeat 0 0;
    background-size: contain; }
  .details-default > .details-header .details-contact .contact-item.item-phone a {
    color: var(--highlight-base, #006699); }
  .details-default > .details-header .details-contact .contact-item.item-phone .icon .fa {
    background: url(../../../../external.html?link=https://d1ore3n0z2tnb3.cloudfront.net/assets/images/structure/icon-phone.svg) no-repeat 0 0;
    background-size: contain;
    position: relative;
    top: 4px; }
  .details-default > .details-header .details-contact .contact-item.item-location {
    max-width: 250px; }
    .details-default > .details-header .details-contact .contact-item.item-location .icon .fa {
      background: url(../../../../external.html?link=https://d1ore3n0z2tnb3.cloudfront.net/assets/images/structure/icon-map-marker.svg) no-repeat 0 0;
      background-size: contain; }
    .details-default > .details-header .details-contact .contact-item.item-location .comma {
      margin-left: -5px; }
    .details-default > .details-header .details-contact .contact-item.item-location .item-country {
      display: none; }
  .details-default > .details-header .details-contact .contact-item.item-claim .icon .fa {
    background: url(../../../../external.html?link=https://d1ore3n0z2tnb3.cloudfront.net/assets/images/structure/icon-flag.svg) no-repeat 0 0;
    background-size: contain; }
  .details-default > .details-header .details-contact .contact-item.item-claim .link {
    margin-left: 8px; }
  @media (max-width: 580px) {
    .details-default > .details-header .details-contact .contact-item.item-claim {
      white-space: nowrap; } }
  .details-default > .details-header .details-contact .contact-item .details-share .fa {
    color: #b49561; }

.details-default > .details-header .details-header-navbar {
  padding: 0; }
  .details-default > .details-header .details-header-navbar:before {
    background: #ccd0d2; }
  .details-default > .details-header .details-header-navbar .tab-navbar {
    color: var(--neutral-base, #404f57); }
    .details-default > .details-header .details-header-navbar .tab-navbar.is-selected {
      border-bottom-color: #b49561;
      color: #b49561;
      font-weight: bold; }
      .details-default > .details-header .details-header-navbar .tab-navbar.is-selected:hover {
        border-bottom-color: #b49561; }
    .details-default > .details-header .details-header-navbar .tab-navbar:hover {
      border-color: transparent;
      color: #b49561; }

@media (max-width: 992px) {
  .details-default > .details-header.details-header-mobile {
    background: none;
    margin-bottom: 24px; } }

.details-default > .details-header.details-header-mobile .details-header-navbar-mobile-bg {
  background: #f7f4ef;
  border-top: 1px solid #ccd0d2;
  height: 53px;
  z-index: 5;
  position: relative;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(48, 49, 51, 0.15);
          box-shadow: 0px 4px 8px 0px rgba(48, 49, 51, 0.15); }

.details-default > .details-header.details-header-mobile .details-header-navbar-mobile {
  background: none;
  border: none;
  margin-top: -53px;
  height: auto; }
  .details-default > .details-header.details-header-mobile .details-header-navbar-mobile .tab-navbar {
    border-bottom: 4px solid transparent;
    padding: 14px 5px 8px; }
    .details-default > .details-header.details-header-mobile .details-header-navbar-mobile .tab-navbar.is-selected {
      color: #b49561;
      border-bottom-color: #b49561;
      font-weight: 600; }
    .details-default > .details-header.details-header-mobile .details-header-navbar-mobile .tab-navbar:hover {
      color: #b49561; }
    .details-default > .details-header.details-header-mobile .details-header-navbar-mobile .tab-navbar:last-child {
      padding-right: 32px;
      position: relative; }
      .details-default > .details-header.details-header-mobile .details-header-navbar-mobile .tab-navbar:last-child:after {
        content: "";
        position: absolute;
        top: 1px;
        right: 0;
        width: 32px;
        height: 52px;
        background: #f7f4ef; }

.details-default > .details-header .details-picture {
  width: 280px;
  margin-bottom: 24px;
  background: white;
  padding: 9px;
  -webkit-box-shadow: 0px 4px 16px 0px rgba(48, 49, 51, 0.15);
          box-shadow: 0px 4px 16px 0px rgba(48, 49, 51, 0.15);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .details-default > .details-header .details-picture img {
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain; }

.details-default > .details-header .details-info .details-title .heading {
  color: #00141e;
  font-size: var(--font-size-32, 1.77778em);
  font-weight: bold; }
  @media (min-width: 992px) {
    .details-default > .details-header .details-info .details-title .heading {
      font-size: var(--font-size-42, 2.33333em); } }
  @media (max-width: 992px) {
    .details-default > .details-header .details-info .details-title .heading {
      max-width: 100%; } }
  .details-default > .details-header .details-info .details-title .heading span {
    margin-right: 16px; }
  .details-default > .details-header .details-info .details-title .heading .unclaimed {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: #069;
    font-weight: normal;
    font-family: var(--font-family-base, "Open Sans");
    cursor: pointer;
    width: 100%; }
    @media (min-width: 1153px) {
      .details-default > .details-header .details-info .details-title .heading .unclaimed {
        width: auto; } }
    .details-default > .details-header .details-info .details-title .heading .unclaimed .fa {
      color: var(--neutral-base, #404f57);
      opacity: .5; }
    .details-default > .details-header .details-info .details-title .heading .unclaimed .unclaimed-text {
      background-color: white;
      color: #000;
      position: absolute;
      font-size: 15px;
      border: 1px solid #e5e7e8;
      padding: 16px;
      position: absolute;
      z-index: 1;
      text-align: left;
      border-radius: var(--border-radius, 5px);
      -webkit-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1);
              box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1);
      opacity: 0;
      -webkit-transition: opacity 0.3s;
      transition: opacity 0.3s; }
      .details-default > .details-header .details-info .details-title .heading .unclaimed .unclaimed-text strong {
        display: block;
        margin-bottom: 6px;
        font-size: 16px; }
    .details-default > .details-header .details-info .details-title .heading .unclaimed:hover .unclaimed-text {
      opacity: 1; }
    .details-default > .details-header .details-info .details-title .heading .unclaimed .unclaimed-text {
      width: 400px;
      top: 100%;
      left: 50%;
      -webkit-transform: translate(-50%);
          -ms-transform: translate(-50%);
              transform: translate(-50%); }
      @media (min-width: 993px) {
        .details-default > .details-header .details-info .details-title .heading .unclaimed .unclaimed-text {
          left: 0;
          -webkit-transform: translate(0);
              -ms-transform: translate(0);
                  transform: translate(0); } }
      @media (max-width: 480px) {
        .details-default > .details-header .details-info .details-title .heading .unclaimed .unclaimed-text {
          max-width: 90%; } }

.details-default > .details-header .details-reviews .reviews-value {
  color: var(--neutral-base, #404f57);
  font-size: 16px;
  margin-left: 8px;
  font-weight: normal; }

.details-default > .details-header .details-reviews .reviews-first .link {
  font-size: 16px;
  text-decoration: underline; }

.details-default > .details-header .details-actions .button {
  font-size: 18px;
  font-weight: bold;
  color: white;
  max-width: inherit;
  padding-left: 75px;
  padding-right: 75px; }
  @media (max-width: 768px) {
    .details-default > .details-header .details-actions .button {
      padding-left: 24px;
      padding-right: 24px; } }

.details-default > .details-header .details-header-content {
  padding: 48px 0;
  z-index: 6;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start; }
  .details-default > .details-header .details-header-content .details-general {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column; }
    @media (min-width: 992px) {
      .details-default > .details-header .details-header-content .details-general {
        width: 75%; } }
    .details-default > .details-header .details-header-content .details-general .details-info .details-title .heading {
      color: #00141e; }
    .details-default > .details-header .details-header-content .details-general .details-actions {
      margin-top: 32px; }
      .details-default > .details-header .details-header-content .details-general .details-actions .button {
        font-size: 18px;
        max-width: inherit; }
    .details-default > .details-header .details-header-content .details-general .details-reviews .reviews-value {
      color: var(--neutral-base, #404f57);
      font-size: 16px; }

.details-default > .details-header.details-header-desktop {
  background: #F2E5D4;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(48, 49, 51, 0.15);
          box-shadow: 0px 4px 8px 0px rgba(48, 49, 51, 0.15); }
  .details-default > .details-header.details-header-desktop:before {
    opacity: 0; }

.details-default > .details-header.details-header-mobile .detail-info-mobile .details-contact .contact-item .link {
  margin: 0; }

.details-default > .details-header.details-header-mobile .detail-info-mobile .details-contact .contact-item.item-claim .link {
  margin-left: 8px; }

@media (max-width: 992px) {
  .details-default > .details-header.details-header-mobile .detail-info-mobile .details-contact .contact-item {
    margin-top: 16px; } }

.details-default > .details-header.details-header-mobile .detail-header-content-mobile {
  background: #f7f4ef;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(48, 49, 51, 0.15);
          box-shadow: 0px 4px 8px 0px rgba(48, 49, 51, 0.15); }
  .details-default > .details-header.details-header-mobile .detail-header-content-mobile:before {
    opacity: 0; }

.details-default > .details-header.details-header-mobile .details-general-mobile {
  z-index: 6; }
  .details-default > .details-header.details-header-mobile .details-general-mobile .details-picture {
    max-width: 100%;
    width: 280px;
    padding: 9px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .details-default > .details-header.details-header-mobile .details-general-mobile .details-picture img {
      max-width: 100%;
      -o-object-fit: contain;
         object-fit: contain; }

.details-default > .detail-body:not(.no-padding) {
  padding-top: 24px;
  padding-bottom: 24px; }
  @media (min-width: 992px) {
    .details-default > .detail-body:not(.no-padding) {
      padding-top: 48px; } }

.details-default > .detail-body .detail-body-content .detail-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .details-default > .detail-body .detail-body-content .detail-wrapper .detail-left {
    width: 100%; }
    @media (min-width: 992px) {
      .details-default > .detail-body .detail-body-content .detail-wrapper .detail-left {
        width: 65%; } }
  .details-default > .detail-body .detail-body-content .detail-wrapper .detail-right {
    margin-top: 24px;
    width: 100%; }
    @media (min-width: 992px) {
      .details-default > .detail-body .detail-body-content .detail-wrapper .detail-right {
        margin-top: 0;
        width: 28%; } }
    .details-default > .detail-body .detail-body-content .detail-wrapper .detail-right .banner[is-wide="true"] img {
      width: 310px; }
    .details-default > .detail-body .detail-body-content .detail-wrapper .detail-right .banner[type="square"] {
      padding: 0;
      margin-left: auto;
      margin-right: auto; }
      .details-default > .detail-body .detail-body-content .detail-wrapper .detail-right .banner[type="square"] img {
        max-width: 100%; }
      .details-default > .detail-body .detail-body-content .detail-wrapper .detail-right .banner[type="square"] .banner-link {
        margin-left: 0; }
        .details-default > .detail-body .detail-body-content .detail-wrapper .detail-right .banner[type="square"] .banner-link + .banner-link {
          display: none; }

.details-default > .detail-body .detail-body-content .tab-content .tab-item, .details-default > .detail-body .detail-body-content .tab-content .tab-item:not(:first-child) {
  border: none;
  padding: 0;
  margin: 0; }

.details-default > .detail-body .detail-body-content .tab-content .tab-item .tab-item-heading .heading {
  font-weight: bold;
  color: #b49561;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2.25px;
  font-family: var(--font-family-base, "Open Sans"); }

.details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-about {
  border-bottom: 1px solid var(--neutral-transp-25, rgba(64, 79, 87, 0.25));
  padding-bottom: 40px;
  margin-bottom: 40px; }
  .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-about .tab-item-heading {
    margin-bottom: 12px; }
  .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-about .description .summary-description {
    opacity: 1;
    text-align: left; }
  .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-about p {
    opacity: 1;
    color: var(--neutral-base, #404f57);
    font-size: 18px;
    font-family: var(--heading-font, "PT Serif"); }
  .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-about + .banner-content {
    margin: 0 auto 36px;
    display: block; }
    @media (min-width: 768px) {
      .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-about + .banner-content {
        display: none; } }

.details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-flowers {
  padding-bottom: 16px; }
  @media (max-width: 580px) {
    .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-flowers {
      padding-bottom: 0; } }
  .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-flowers .tab-item-heading {
    margin: 24px 0 18px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media (min-width: 992px) {
      .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-flowers .tab-item-heading {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center; } }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-flowers .tab-item-heading .link {
      font-size: 16px; }

.details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-obituaries .tab-item-heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media (min-width: 992px) {
    .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-obituaries .tab-item-heading {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; } }
  .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-obituaries .tab-item-heading .link {
    font-size: 16px; }

.details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-obituaries form {
  background: #f7f4ef;
  padding: 16px;
  margin-bottom: 16px;
  border-radius: var(--border-radius, 5px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media (min-width: 768px) {
    .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-obituaries form {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row; } }
  .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-obituaries form .input-group {
    position: relative;
    width: 100%; }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-obituaries form .input-group .input-group-icon {
      position: absolute;
      top: 12px;
      left: 12px; }
      .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-obituaries form .input-group .input-group-icon .icon {
        color: var(--neutral-base, #404f57); }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-obituaries form .input-group input {
      padding-left: 48px;
      width: 100%; }
      @media (max-width: 768px) {
        .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-obituaries form .input-group input {
          font-size: 16px; } }
  .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-obituaries form .input-group-action {
    margin: 8px 0 0; }
    @media (min-width: 768px) {
      .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-obituaries form .input-group-action {
        margin: 0 0 0 8px; } }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-obituaries form .input-group-action .button {
      font-size: 18px;
      font-weight: bold;
      padding-top: 15px;
      padding-bottom: 15px;
      width: 100%; }
      @media (min-width: 768px) {
        .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-obituaries form .input-group-action .button {
          width: 120px; } }

.details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-obituaries .tab-item.tab-item-flowers .card-list .card .picture {
  height: auto;
  width: auto; }
  @media (max-width: 580px) {
    .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-obituaries .tab-item.tab-item-flowers .card-list .card .picture img {
      height: 155px; } }

.details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-obituaries .tab-item.tab-item-flowers .card-list .card .content {
  width: 100%; }

.details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-photos {
  margin-bottom: 16px; }
  .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-photos .photos-list {
    margin-top: -8px;
    margin-left: -8px; }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-photos .photos-list .photos-item {
      margin-top: 8px;
      margin-left: 8px;
      width: 100%;
      border-radius: 0;
      width: -webkit-calc((100% / 2) - 8px);
      width: calc((100% / 2) - 8px); }
      @media (min-width: 580px) {
        .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-photos .photos-list .photos-item {
          width: -webkit-calc((100% / 3) - 8px);
          width: calc((100% / 3) - 8px); } }
      @media (max-width: 768px) {
        .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-photos .photos-list .photos-item img {
          width: 100%; } }
      .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-photos .photos-list .photos-item .photos-caption {
        background-color: rgba(0, 20, 30, 0.5); }

.details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-communities .tab-item-content {
  margin-left: -8px;
  margin-bottom: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap; }
  .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-communities .tab-item-content .item-communities {
    padding: 4px 16px;
    margin-left: 8px;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: normal;
    color: var(--neutral-base, #404f57);
    background: #f2f3f4;
    text-decoration: none;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 50px; }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-communities .tab-item-content .item-communities:hover {
      background: var(--neutral-base, #404f57);
      color: white; }

@media (min-width: 768px) {
  .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-additional-info {
    margin-bottom: 40px; } }

@media (min-width: 768px) {
  .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-additional-info .tab-item-content {
    -webkit-column-count: 2;
            column-count: 2; } }

.details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-additional-info .tab-item-content .item-additional-info {
  margin-bottom: 16px; }
  .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-additional-info .tab-item-content .item-additional-info strong {
    display: block; }

@media (max-width: 580px) {
  .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-reviews {
    margin-bottom: 48px; } }

.details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-reviews .reviews-distribution {
  background: #f8f5f0;
  padding: 16px 27px 24px; }
  .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-reviews .reviews-distribution .distribution-title {
    margin-bottom: 24px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-reviews .reviews-distribution .distribution-title span {
      background: #404f56;
      color: white;
      padding: 12px;
      display: inline-block;
      margin-right: 16px;
      font-weight: bold;
      border-radius: 3px; }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-reviews .reviews-distribution .distribution-title strong {
      font-family: var(--heading-font, "PT Serif");
      font-size: var(--font-size-20, 1.11111em); }
  .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-reviews .reviews-distribution .distribution-bars .item-bar {
    font-size: 16px;
    line-height: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-reviews .reviews-distribution .distribution-bars .item-bar:not(:first-child) {
      margin-top: 8px; }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-reviews .reviews-distribution .distribution-bars .item-bar .bar {
      background: #f1ebe1;
      margin: 0 16px;
      height: 16px;
      margin-left: auto;
      width: -webkit-calc(100% - 115px);
      width: calc(100% - 115px);
      border-radius: 2px; }
      .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-reviews .reviews-distribution .distribution-bars .item-bar .bar .porcentage {
        background: #ffbf0d;
        width: 100%;
        height: 100%;
        border-radius: 2px 0 0 2px; }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-reviews .reviews-distribution .distribution-bars .item-bar .quantity {
      color: #7f898e; }

.details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-reviews .reviews-vote {
  margin: 24px 0 12px; }
  .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-reviews .reviews-vote .button {
    margin: 0; }

.details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-reviews .reviews-list .reviews-item:not(:first-child) {
  margin-top: 24px;
  border-top: 1px solid #e2e2e2;
  padding-top: 32px; }

@media (max-width: 768px) {
  .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-reviews .reviews-list .reviews-item .review-content {
    width: 100%; } }

.details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-reviews .reviews-list .reviews-item .review-content .heading {
  font-weight: bold; }

.details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-reviews .reviews-list .reviews-item .review-content .review-description {
  color: var(--neutral-base, #404f57); }

.details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-reviews .reviews-list .reviews-item .review-content .review-flag {
  margin-top: 18px; }
  .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-reviews .reviews-list .reviews-item .review-content .review-flag .link {
    color: var(--neutral-base, #404f57);
    font-size: 16px; }

.details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-reviews .reviews-list .reviews-item .review-content .reviews-stars {
  margin: 0 0 6px; }

.details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-reviews .reviews-list .reviews-item .review-content .review-info {
  color: var(--neutral-base, #404f57);
  font-size: 14px;
  font-weight: normal;
  text-decoration: none;
  margin: 12px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-reviews .reviews-list .reviews-item .review-content .review-info .review-date {
    color: var(--neutral-base, #404f57);
    font-size: 14px; }
  .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-reviews .reviews-list .reviews-item .review-content .review-info .review-author {
    font-weight: normal;
    margin-left: 12px;
    font-size: 14px;
    text-transform: capitalize; }
    .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-reviews .reviews-list .reviews-item .review-content .review-info .review-author a {
      color: var(--neutral-base, #404f57);
      font-size: 14px;
      text-decoration: none;
      font-weight: normal; }

.details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-video .embed-responsive-item {
  border: none; }

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden; }
  .embed-responsive:before {
    display: block;
    content: ""; }
  .embed-responsive.embed-responsive-16by9:before {
    padding-top: 56.25%; }
  .embed-responsive .embed-responsive-item,
  .embed-responsive embed,
  .embed-responsive iframe,
  .embed-responsive object,
  .embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; }

.carousel-detail:not(.carousel-detail-true) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; }
  @media (max-width: 992px) {
    .carousel-detail:not(.carousel-detail-true) {
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap; } }
  .carousel-detail:not(.carousel-detail-true) .item {
    width: 100%; }
    .carousel-detail:not(.carousel-detail-true) .item img {
      opacity: 1; }
    @media (max-width: 992px) {
      .carousel-detail:not(.carousel-detail-true) .item {
        display: none; } }
    @media (max-width: 992px) {
      .carousel-detail:not(.carousel-detail-true) .item:first-child {
        display: block; } }

.carousel-detail .item {
  width: 100%; }
  @media (min-width: 768px) {
    .carousel-detail .item {
      width: -webkit-calc(100% / 2);
      width: calc(100% / 2); } }
  @media (min-width: 992px) {
    .carousel-detail .item {
      width: -webkit-calc(100% / 3);
      width: calc(100% / 3); } }
  .carousel-detail .item img {
    height: 288px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out; }
  .carousel-detail .item.is-selected img {
    opacity: 1; }

@media (min-width: 992px) {
  .carousel-detail .flickity-page-dots {
    z-index: 10; } }

.carousel-detail .flickity-page-dots .dot {
  width: 8px;
  height: 8px;
  margin: 0 4px;
  background: #ccd0d2;
  opacity: 1; }
  .carousel-detail .flickity-page-dots .dot.is-selected {
    background: #b49561; }

.carousel-detail .flickity-prev-next-button {
  color: white;
  height: 100%;
  width: 14%;
  min-width: 160px;
  opacity: 1;
  border-radius: 0; }
  .carousel-detail .flickity-prev-next-button .flickity-button-icon {
    top: 50%;
    width: 30px;
    height: 30px; }
  .carousel-detail .flickity-prev-next-button.previous {
    left: 0;
    background: rgba(0, 20, 30, 0.8);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0, 20, 30, 0.8)), color-stop(40%, rgba(0, 20, 30, 0.4)), color-stop(80%, rgba(0, 20, 30, 0)));
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 20, 30, 0.8)), color-stop(40%, rgba(0, 20, 30, 0.4)), color-stop(80%, rgba(0, 20, 30, 0)));
    background: linear-gradient(to right, rgba(0, 20, 30, 0.8) 0%, rgba(0, 20, 30, 0.4) 40%, rgba(0, 20, 30, 0) 80%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$color-black', endColorstr='$color-black', GradientType=1 ); }
  .carousel-detail .flickity-prev-next-button.next {
    right: 0;
    background: rgba(0, 20, 30, 0);
    background: -webkit-gradient(left top, right top, color-stop(20%, rgba(0, 20, 30, 0)), color-stop(60%, rgba(0, 20, 30, 0.4)), color-stop(100%, rgba(0, 20, 30, 0.8)));
    background: -webkit-gradient(linear, left top, right top, color-stop(20%, rgba(0, 20, 30, 0)), color-stop(60%, rgba(0, 20, 30, 0.4)), to(rgba(0, 20, 30, 0.8)));
    background: linear-gradient(to right, rgba(0, 20, 30, 0) 20%, rgba(0, 20, 30, 0.4) 60%, rgba(0, 20, 30, 0.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$color-black', endColorstr='$color-black', GradientType=1 ); }
    .carousel-detail .flickity-prev-next-button.next .flickity-button-icon {
      left: initial;
      right: 20%; }

.carousel-detail + .details-default {
  overflow: visible; }
  .carousel-detail + .details-default > .details-header .details-header-content {
    padding-top: 48px; }
  .carousel-detail + .details-default > .details-header .details-picture {
    margin-top: -100px; }

.fancybox-navigation .fancybox-button--arrow_left {
  left: 16px; }

.fancybox-navigation .fancybox-button--arrow_right {
  right: 16px; }

.details-default > .details-header .details-general .details-info .details-reviews .reviews-stars,
.details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-date .reviews-stars,
.details-default > .details-header.details-header-mobile .details-reviews .reviews-stars,
.cards-default .cards-list .card .content .reviews .reviews-stars {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  .details-default > .details-header .details-general .details-info .details-reviews .reviews-stars .fa-star,
  .details-default > .details-header .details-general .details-info .details-reviews .reviews-stars .fa-star-o,
  .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-date .reviews-stars .fa-star,
  .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-date .reviews-stars .fa-star-o,
  .details-default > .details-header.details-header-mobile .details-reviews .reviews-stars .fa-star,
  .details-default > .details-header.details-header-mobile .details-reviews .reviews-stars .fa-star-o,
  .cards-default .cards-list .card .content .reviews .reviews-stars .fa-star,
  .cards-default .cards-list .card .content .reviews .reviews-stars .fa-star-o {
    height: 18px;
    width: 18px;
    display: block;
    margin-right: 2px; }
    .details-default > .details-header .details-general .details-info .details-reviews .reviews-stars .fa-star:before,
    .details-default > .details-header .details-general .details-info .details-reviews .reviews-stars .fa-star-o:before,
    .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-date .reviews-stars .fa-star:before,
    .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-date .reviews-stars .fa-star-o:before,
    .details-default > .details-header.details-header-mobile .details-reviews .reviews-stars .fa-star:before,
    .details-default > .details-header.details-header-mobile .details-reviews .reviews-stars .fa-star-o:before,
    .cards-default .cards-list .card .content .reviews .reviews-stars .fa-star:before,
    .cards-default .cards-list .card .content .reviews .reviews-stars .fa-star-o:before {
      content: "";
      height: 18px;
      width: 18px; }
  .details-default > .details-header .details-general .details-info .details-reviews .reviews-stars .fa-star,
  .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-date .reviews-stars .fa-star,
  .details-default > .details-header.details-header-mobile .details-reviews .reviews-stars .fa-star,
  .cards-default .cards-list .card .content .reviews .reviews-stars .fa-star {
    background: url(../../../../external.html?link=https://d1ore3n0z2tnb3.cloudfront.net/assets/images/structure/icon-stars-1.svg) no-repeat 0 center; }
  .details-default > .details-header .details-general .details-info .details-reviews .reviews-stars .fa-star-o,
  .details-default > .detail-body .detail-body-content .tab-content .tab-item-reviews .reviews-list .reviews-item .review-content .review-date .reviews-stars .fa-star-o,
  .details-default > .details-header.details-header-mobile .details-reviews .reviews-stars .fa-star-o,
  .cards-default .cards-list .card .content .reviews .reviews-stars .fa-star-o {
    background: url(../../../../external.html?link=https://d1ore3n0z2tnb3.cloudfront.net/assets/images/structure/icon-stars-0.svg) no-repeat 0 center; }

.details-default > .details-modal .modal-rate .select-rating span:after {
  color: white;
  padding: 2px;
  font-size: var(--font-size-22, 1.22222em);
  background: #ccc;
  content: "\f005"; }

.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 {
  background: var(--badge-base, #ffc800); }

.results-body .results-content .summary-list .summary-item[data-type="listing"] .summary-content .summary-rating .rate,
.members-page .members-panel .stars-rating .rate {
  height: 18px;
  width: 96px;
  display: block;
  background: url(../../../../external.html?link=https://d1ore3n0z2tnb3.cloudfront.net/assets/images/structure/icon-stars-0.svg) no-repeat 0 center; }
  .results-body .results-content .summary-list .summary-item[data-type="listing"] .summary-content .summary-rating .rate:after,
  .members-page .members-panel .stars-rating .rate:after {
    background: url(../../../../external.html?link=https://d1ore3n0z2tnb3.cloudfront.net/assets/images/structure/icon-stars-5.svg) no-repeat 0 center;
    display: block;
    content: "";
    height: 18px;
    width: 0; }
  .results-body .results-content .summary-list .summary-item[data-type="listing"] .summary-content .summary-rating .rate.rate-1:after,
  .members-page .members-panel .stars-rating .rate.rate-1:after {
    width: 18px; }
  .results-body .results-content .summary-list .summary-item[data-type="listing"] .summary-content .summary-rating .rate.rate-2:after,
  .members-page .members-panel .stars-rating .rate.rate-2:after {
    width: 36px; }
  .results-body .results-content .summary-list .summary-item[data-type="listing"] .summary-content .summary-rating .rate.rate-3:after,
  .members-page .members-panel .stars-rating .rate.rate-3:after {
    width: 56px; }
  .results-body .results-content .summary-list .summary-item[data-type="listing"] .summary-content .summary-rating .rate.rate-4:after,
  .members-page .members-panel .stars-rating .rate.rate-4:after {
    width: 76px; }
  .results-body .results-content .summary-list .summary-item[data-type="listing"] .summary-content .summary-rating .rate.rate-5:after,
  .members-page .members-panel .stars-rating .rate.rate-5:after {
    width: 96px; }

.details-default > .details-modal .modal-header .modal-picture {
  width: 250px;
  max-width: 100%;
  height: 100px;
  border: none;
  background: white;
  padding: 12px;
  -webkit-box-shadow: 0px 4px 16px 0px rgba(48, 49, 51, 0.15);
          box-shadow: 0px 4px 16px 0px rgba(48, 49, 51, 0.15); }
  .details-default > .details-modal .modal-header .modal-picture img {
    max-width: 100%;
    height: 100%;
    width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain; }

.details-default > .details-modal .modal-info .heading {
  color: #00141e;
  font-size: 18px; }

.details-default > .details-modal .modal-info span {
  font-size: 16px; }

.details-default > .details-modal .modal-form .form-actions .button {
  text-transform: capitalize; }

.details-default > .details-modal .modal-rate .paragraph {
  font-size: 18px; }

.modal-sign .modal-content .modal-nav .modal-nav-link {
  font-family: var(--font-family-base, "Open Sans"); }

.modal-sign .modal-content .modal-body {
  padding: 24px;
  overflow-y: auto; }
  .modal-sign .modal-content .modal-body .modal-form {
    margin-top: 0; }
    .modal-sign .modal-content .modal-body .modal-form .input {
      margin-top: 16px; }
      .modal-sign .modal-content .modal-body .modal-form .input:first-child {
        margin-top: 0; }
    .modal-sign .modal-content .modal-body .modal-form .form-actions {
      margin-top: 16px; }
    .modal-sign .modal-content .modal-body .modal-form .form-button .button {
      text-transform: capitalize; }
    .modal-sign .modal-content .modal-body .modal-form .privacy-policy {
      margin-top: 24px; }
  .modal-sign .modal-content .modal-body .content-tab.active.content-sign-up {
    padding-bottom: 48px; }
  .modal-sign .modal-content .modal-body .form-actions .form-remember {
    color: #00141e; }
  .modal-sign .modal-content .modal-body .privacy-policy {
    color: #00141e; }
  .modal-sign .modal-content .modal-body .form-button {
    text-align: center; }
    .modal-sign .modal-content .modal-body .form-button .button {
      width: auto;
      margin-left: auto;
      margin-right: auto; }

.modal-sign[is-page="true"] .modal-content .modal-body {
  min-height: auto;
  padding: 40px; }

.modal-sign:not([is-page="true"]),
.modal-agree:not([is-page="true"]) {
  max-height: 100vh; }

.modal.custom-members-modal .modal-header {
  background: white;
  color: #222222; }
  .modal.custom-members-modal .modal-header .button {
    background: none;
    font-size: 40px;
    color: black;
    padding: 0;
    line-height: 1; }

.modal.custom-members-modal .multiple-categories ul li {
  font-size: 14px; }

.modal.custom-members-modal .multiple-categories .no-child .category-child {
  padding: 12px;
  font-size: 14px; }

.modal.custom-members-modal .selectize-control .items.has-options .item {
  background: rgba(0, 0, 0, 0.05);
  line-height: 1;
  padding: 8px;
  margin-top: 8px;
  color: var(--neutral-base, var(--neutral-base, #404f57));
  font-size: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  .modal.custom-members-modal .selectize-control .items.has-options .item .remove {
    color: black;
    font-size: 22px;
    line-height: 1;
    display: inline-block;
    padding: 0;
    margin-left: 8px;
    text-decoration: none;
    position: relative; }

.modal .modal-body {
  padding: 32px; }

.banner[type="square"] {
  max-width: 300px; }
  .banner[type="square"] img {
    border-radius: var(--border-radius, 5px); }

.banner-content {
  background: var(--neutral-transp-5, rgba(64, 79, 87, 0.05));
  padding-top: 12px;
  padding-bottom: 36px;
  text-align: center;
  margin-top: 24px; }
  .banner-content h6 {
    color: #8c959a;
    font-size: var(--font-size-12, 0.66667em);
    font-weight: 500;
    margin-bottom: 12px; }
  .banner-content .banner[type="square"] {
    margin: 0 auto;
    padding: 0; }
    .banner-content .banner[type="square"] .banner-link {
      margin: 0; }
      .banner-content .banner[type="square"] .banner-link img {
        border-radius: 0; }

.cards-default {
  padding-top: 24px;
  padding-bottom: 24px; }
  @media (min-width: 992px) {
    .cards-default {
      padding-top: 48px;
      padding-bottom: 48px; } }
  .cards-default .cards-header > .heading {
    font-family: var(--font-family-base, "Open Sans");
    font-size: var(--font-size-24, 1.33333em);
    font-weight: bold;
    color: #b49561;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2.25px; }
  .cards-default .cards-header > .link {
    text-transform: capitalize; }
  .cards-default .cards-list .card {
    margin: 0; }
    .cards-default .cards-list .card[data-columns="2"]:not(:nth-child(-n+2)) {
      margin-top: 36px; }
    .cards-default .cards-list .card[data-columns="3"]:not(:nth-child(-n+3)) {
      margin-top: 36px; }
    .cards-default .cards-list .card[data-columns="4"]:not(:nth-child(-n+4)) {
      margin-top: 36px; }
    .cards-default .cards-list .card[data-columns="5"]:not(:nth-child(-n+5)) {
      margin-top: 36px; }
    .cards-default .cards-list .card .content .title {
      color: #00141e;
      font-weight: bold;
      font-size: 1.2em; }
    .cards-default .cards-list .card .content .description .paragraph {
      color: #00141e;
      font-weight: 400;
      font-size: .9em; }
    .cards-default .cards-list .card .content .reviews {
      margin: 0 0 8px; }
    .cards-default .cards-list .card:not(.card-horizontal) .content {
      margin-top: 18px; }
  .cards-default .cards-list + .card {
    margin: 48px 0 0; }
    @media (min-width: 992px) {
      .cards-default .cards-list + .card {
        margin: 0; } }
  .cards-default[data-type="business"] .cards-list .card .content .categories,
  .cards-default[data-type="business"] .cards-list .card .content .description {
    display: none; }
  .cards-default[data-type="business"] .cards-list .card[data-columns="4"] {
    width: -webkit-calc((100% / 4) - (16px * 2));
    width: calc((100% / 4) - (16px * 2)); }
    @media (max-width: 992px) {
      .cards-default[data-type="business"] .cards-list .card[data-columns="4"] {
        width: -webkit-calc((100% / 2) - (16px * 2));
        width: calc((100% / 2) - (16px * 2)); } }
    @media (max-width: 768px) {
      .cards-default[data-type="business"] .cards-list .card[data-columns="4"] {
        margin-top: 24px;
        width: 100%; } }
    @media (max-width: 768px) {
      .cards-default[data-type="business"] .cards-list .card[data-columns="4"]:first-child {
        margin-top: 0; } }
    @media (max-width: 992px) and (min-width: 768px) {
      .cards-default[data-type="business"] .cards-list .card[data-columns="4"]:nth-child(-n+2) {
        margin-bottom: 32px; } }

.categories-base .categories-header > .heading {
  font-family: var(--heading-font, "PT Serif");
  font-size: var(--font-size-24, 1.33333em);
  font-weight: bold;
  color: #00141e; }

.categories-base .categories-header > .link {
  text-transform: capitalize; }

.categories-base[has-multiple-locations="true"] hr {
  border-top: none;
  opacity: .5;
  margin: 12px 0 24px 0; }
  @media (min-width: 992px) {
    .categories-base[has-multiple-locations="true"] hr {
      margin: 48px 0; } }

.categories-base[has-multiple-locations="true"][data-bg="base"] hr, .categories-base[has-multiple-locations="true"][data-bg="neutral"] hr {
  opacity: 1;
  border-color: var(--neutral-transp-15, rgba(64, 79, 87, 0.15)); }

.card {
  margin-bottom: 16px;
  text-decoration: none; }
  .card[data-columns="2"] {
    width: 100%; }
    @media screen and (min-width: 768px) {
      .card[data-columns="2"] {
        width: -webkit-calc(calc(100% / 2) - (16px * 2));
        width: calc(calc(100% / 2) - (16px * 2));
        margin-right: 16px;
        margin-left: 16px; }
        @supports (-ms-ime-align: auto) {
          .card[data-columns="2"] {
            width: -webkit-calc((100% / 2) - (16px * 2) - 1px);
            width: calc((100% / 2) - (16px * 2) - 1px); } } }
    @media screen and (min-width: 992px) {
      .card[data-columns="2"] {
        width: -webkit-calc(calc(100% / 2) - (16px * 2));
        width: calc(calc(100% / 2) - (16px * 2));
        min-width: auto;
        margin-right: 16px; }
        @supports (-ms-ime-align: auto) {
          .card[data-columns="2"] {
            width: -webkit-calc((100% / 2) - (16px * 2) - 1px);
            width: calc((100% / 2) - (16px * 2) - 1px); } } }
    @media screen and (min-width: 1200px) {
      .card[data-columns="2"] {
        width: -webkit-calc((100% / 2) - (16px * 2));
        width: calc((100% / 2) - (16px * 2)); }
        @supports (-ms-ime-align: auto) {
          .card[data-columns="2"] {
            width: -webkit-calc((100% / 2) - (16px * 2) - 1px);
            width: calc((100% / 2) - (16px * 2) - 1px); } } }
  .card[data-columns="3"] {
    width: 100%; }
    @media screen and (min-width: 768px) {
      .card[data-columns="3"] {
        width: -webkit-calc(calc(100% / 2) - (16px * 2));
        width: calc(calc(100% / 2) - (16px * 2));
        margin-right: 16px;
        margin-left: 16px; }
        @supports (-ms-ime-align: auto) {
          .card[data-columns="3"] {
            width: -webkit-calc((100% / 2) - (16px * 2) - 1px);
            width: calc((100% / 2) - (16px * 2) - 1px); } } }
    @media screen and (min-width: 992px) {
      .card[data-columns="3"] {
        width: -webkit-calc(calc(100% / 3) - (16px * 2));
        width: calc(calc(100% / 3) - (16px * 2));
        min-width: auto;
        margin-right: 16px; }
        @supports (-ms-ime-align: auto) {
          .card[data-columns="3"] {
            width: -webkit-calc((100% / 3) - (16px * 2) - 1px);
            width: calc((100% / 3) - (16px * 2) - 1px); } } }
    @media screen and (min-width: 1200px) {
      .card[data-columns="3"] {
        width: -webkit-calc((100% / 3) - (16px * 2));
        width: calc((100% / 3) - (16px * 2)); }
        @supports (-ms-ime-align: auto) {
          .card[data-columns="3"] {
            width: -webkit-calc((100% / 3) - (16px * 2) - 1px);
            width: calc((100% / 3) - (16px * 2) - 1px); } } }
  .card[data-columns="4"] {
    width: 100%; }
    @media screen and (min-width: 768px) {
      .card[data-columns="4"] {
        width: -webkit-calc(calc(100% / 2) - (16px * 2));
        width: calc(calc(100% / 2) - (16px * 2));
        margin-right: 16px;
        margin-left: 16px; }
        @supports (-ms-ime-align: auto) {
          .card[data-columns="4"] {
            width: -webkit-calc((100% / 2) - (16px * 2) - 1px);
            width: calc((100% / 2) - (16px * 2) - 1px); } } }
    @media screen and (min-width: 992px) {
      .card[data-columns="4"] {
        width: -webkit-calc(calc(100% / 3) - (16px * 2));
        width: calc(calc(100% / 3) - (16px * 2));
        min-width: auto;
        margin-right: 16px; }
        @supports (-ms-ime-align: auto) {
          .card[data-columns="4"] {
            width: -webkit-calc((100% / 3) - (16px * 2) - 1px);
            width: calc((100% / 3) - (16px * 2) - 1px); } } }
    @media screen and (min-width: 1200px) {
      .card[data-columns="4"] {
        width: -webkit-calc((100% / 4) - (16px * 2));
        width: calc((100% / 4) - (16px * 2)); }
        @supports (-ms-ime-align: auto) {
          .card[data-columns="4"] {
            width: -webkit-calc((100% / 4) - (16px * 2) - 1px);
            width: calc((100% / 4) - (16px * 2) - 1px); } } }
  .card.card-horizontal {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
    @media screen and (min-width: 992px) {
      .card.card-horizontal {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row; } }
    .card.card-horizontal .picture {
      width: 100%;
      height: 100%;
      display: block;
      -o-object-fit: cover;
         object-fit: cover;
      -webkit-transition: 0.2s ease-in-out;
      transition: 0.2s ease-in-out; }
      @media screen and (min-width: 992px) {
        .card.card-horizontal .picture {
          width: 200px; } }
      @media screen and (min-width: 1200px) {
        .card.card-horizontal .picture {
          width: 270px; } }
    .card.card-horizontal .content .title {
      color: var(--neutral-base, #404f57);
      line-height: 1.3;
      text-decoration: none;
      -webkit-transition: 0.2s ease-in-out;
      transition: 0.2s ease-in-out;
      display: block;
      font-weight: bold; }
      .card.card-horizontal .content .title:hover {
        color: #006699; }
    @media screen and (min-width: 992px) {
      .card.card-horizontal[data-columns="3"] .picture, .card.card-horizontal[data-columns="2"] .picture {
        width: 170px; } }
    @media screen and (min-width: 1200px) {
      .card.card-horizontal[data-columns="3"] .picture, .card.card-horizontal[data-columns="2"] .picture {
        width: 170px; } }
    .card.card-horizontal .content {
      margin-top: 8px; }
      @media screen and (min-width: 992px) {
        .card.card-horizontal .content {
          width: -webkit-calc(100% - 224px);
          width: calc(100% - 224px);
          margin-top: 0; } }
      @media screen and (min-width: 1200px) {
        .card.card-horizontal .content {
          width: -webkit-calc(100% - 294px);
          width: calc(100% - 294px); } }
    @media screen and (min-width: 992px) {
      .card.card-horizontal[data-columns="3"] .content, .card.card-horizontal[data-columns="2"] .content {
        width: -webkit-calc(100% - 194px);
        width: calc(100% - 194px); } }
    @media screen and (min-width: 1200px) {
      .card.card-horizontal[data-columns="3"] .content, .card.card-horizontal[data-columns="2"] .content {
        width: -webkit-calc(100% - 194px);
        width: calc(100% - 194px); } }
  .card.card-shadow {
    background: white;
    border: 1px solid #e5e7e8;
    padding: 16px 16px;
    position: relative;
    border-radius: var(--border-radius, 5px);
    -webkit-box-shadow: 0px 15px 40px -15px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 15px 40px -15px rgba(0, 0, 0, 0.2);
    -webkit-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out; }
    .card.card-shadow:hover {
      -webkit-box-shadow: 0px 8px 25px -15px rgba(0, 0, 0, 0.2);
              box-shadow: 0px 8px 25px -15px rgba(0, 0, 0, 0.2); }
    .card.card-shadow.card-horizontal {
      -webkit-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1);
              box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1); }
      .card.card-shadow.card-horizontal .title:hover {
        color: #006699; }
      .card.card-shadow.card-horizontal:hover {
        -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.1);
                box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.1); }

.card-flush {
  background: white;
  border: 1px solid rgba(0, 20, 30, 0.15);
  margin-top: 24px;
  border-radius: 4px; }
  .card-flush .card-header {
    font-family: var(--heading-font, "PT Serif");
    font-size: var(--font-size-24, 1.33333em);
    font-weight: bold;
    color: #00141e;
    padding: 8px 16px 0; }
  .card-flush .card {
    padding: 16px 0;
    margin: 0 16px; }
    .card-flush .card .heading {
      color: var(--neutral-base, #404f57);
      text-decoration: none; }
    .card-flush .card .picture img {
      height: 64px;
      width: 64px;
      -o-object-fit: cover;
         object-fit: cover; }
    .card-flush .card .content .title {
      font-size: 18px;
      line-height: 1.2; }
    @media (max-width: 580px) {
      .card-flush .card .content {
        margin-top: 0;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center; } }
    .card-flush .card + .card {
      border-top: 1px solid rgba(0, 20, 30, 0.15); }
    .card-flush .card.card-horizontal {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row; }
      .card-flush .card.card-horizontal .picture {
        width: 64px;
        border-radius: 0; }
      .card-flush .card.card-horizontal .content {
        width: -webkit-calc(100% - 82px);
        width: calc(100% - 82px); }

.card-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media (min-width: 992px) {
    .card-list {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row; } }

@media (min-width: 992px) {
  .details-default > .detail-body .detail-body-content .detail-wrapper {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start; } }

@media (min-width: 992px) {
  .details-default > .detail-body .detail-body-content .detail-wrapper .detail-right {
    position: -webkit-sticky;
    position: sticky;
    top: 24px; } }

@media (min-width: 580px) {
  .obituaries-list .card,
  .services-list .card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row; } }

.obituaries-list .card .picture,
.services-list .card .picture {
  width: 112px;
  height: 112px; }
  @media (max-width: 580px) {
    .obituaries-list .card .picture,
    .services-list .card .picture {
      width: 56px;
      height: 56px;
      display: none; } }
  .obituaries-list .card .picture img,
  .services-list .card .picture img {
    max-width: 100%;
    border-radius: var(--border-radius, 5px);
    -o-object-fit: cover;
       object-fit: cover; }
    @media (max-width: 580px) {
      .obituaries-list .card .picture img,
      .services-list .card .picture img {
        width: 56px;
        min-width: 56px;
        height: 56px;
        min-height: 56px; } }

@media (min-width: 580px) {
  .obituaries-list .card .content,
  .services-list .card .content {
    width: -webkit-calc(100% - 128px);
    width: calc(100% - 128px); } }

.obituaries-list .card .content .title,
.services-list .card .content .title {
  font-size: var(--font-size-30, 1.66667em);
  color: #00141e;
  font-weight: normal;
  margin-top: -5px; }
  @media (max-width: 580px) {
    .obituaries-list .card .content .title,
    .services-list .card .content .title {
      font-size: 20px; } }

.obituaries-list .card .content .date,
.obituaries-list .card .content .value,
.services-list .card .content .date,
.services-list .card .content .value {
  color: var(--neutral-base, #404f57);
  font-size: 18px;
  margin-bottom: 18px; }
  @media (max-width: 580px) {
    .obituaries-list .card .content .date,
    .obituaries-list .card .content .value,
    .services-list .card .content .date,
    .services-list .card .content .value {
      font-size: 16px; } }

.obituaries-list .card .content .card-actions .button .fa,
.services-list .card .content .card-actions .button .fa {
  margin-right: 6px; }

.obituaries-list .card .content .card-actions .button + .button,
.services-list .card .content .card-actions .button + .button {
  margin: 12px 0 0; }
  @media (min-width: 580px) {
    .obituaries-list .card .content .card-actions .button + .button,
    .services-list .card .content .card-actions .button + .button {
      margin: 0 0 0 12px; } }

.obituaries-list .card .content .paragraph,
.services-list .card .content .paragraph {
  font-size: 16px;
  margin-top: 18px; }
  @media (min-width: 580px) {
    .obituaries-list .card .content .paragraph,
    .services-list .card .content .paragraph {
      font-size: 18px;
      line-height: 30px; } }

.obituaries-list .card .content .author,
.obituaries-list .card .content .categories,
.services-list .card .content .author,
.services-list .card .content .categories {
  font-size: var(--font-size-12, 0.66667em);
  color: #00141e;
  line-height: 16px;
  margin-top: 18px; }
  .obituaries-list .card .content .author img,
  .obituaries-list .card .content .categories img,
  .services-list .card .content .author img,
  .services-list .card .content .categories img {
    margin-right: 12px;
    height: 22px;
    -o-object-fit: contain;
       object-fit: contain; }
    @media (max-width: 580px) {
      .obituaries-list .card .content .author img,
      .obituaries-list .card .content .categories img,
      .services-list .card .content .author img,
      .services-list .card .content .categories img {
        margin: 0 0 12px;
        display: block; } }

@media (max-width: 580px) {
  .obituaries-list .card .content .content-info,
  .services-list .card .content .content-info {
    margin-bottom: 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; } }

.obituaries-list .card .content .content-info .picture,
.services-list .card .content .content-info .picture {
  display: block;
  margin-right: 16px; }
  @media (min-width: 580px) {
    .obituaries-list .card .content .content-info .picture,
    .services-list .card .content .content-info .picture {
      display: none;
      margin: 0; } }

@media (max-width: 580px) {
  .obituaries-list .card .content .content-info .date,
  .services-list .card .content .content-info .date {
    margin: 0; } }

.obituaries-list .card .content .card-info,
.services-list .card .content .card-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row; }
  .obituaries-list .card .content .card-info .calendar-sm,
  .services-list .card .content .card-info .calendar-sm {
    border: none;
    margin: 0 12px 0  0; }
    .obituaries-list .card .content .card-info .calendar-sm .month,
    .services-list .card .content .card-info .calendar-sm .month {
      background: none;
      color: #e06363;
      font-size: 18px; }
    .obituaries-list .card .content .card-info .calendar-sm .day,
    .services-list .card .content .card-info .calendar-sm .day {
      font-size: var(--font-size-30, 1.66667em);
      color: var(--neutral-base, #404f57);
      font-weight: 700;
      font-family: var(--font-family-base, "Open Sans"); }

.obituaries-list .gpt-ads,
.services-list .gpt-ads {
  margin-bottom: 16px; }

@media (max-width: 992px) {
  .obituaries-list .card .content .card-actions .button {
    margin-left: 0 !important; } }

@media (max-width: 580px) {
  .obituaries-list .card .content .card-actions .button {
    margin-left: 0 !important;
    text-align: center;
    width: 100%; } }

@media (max-width: 580px) {
  .obituaries-list .card .content .card-actions .button.button-guestbook {
    display: none; } }

.services-list .card {
  padding: 16px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row; }
  @media (max-width: 580px) {
    .services-list .card {
      padding-bottom: 52px; } }
  @media (max-width: 480px) {
    .services-list .card {
      padding-bottom: 82px; } }
  .services-list .card .picture {
    display: block;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2; }
    @media (max-width: 580px) {
      .services-list .card .picture {
        margin-left: 24px; } }
  .services-list .card .content {
    margin-top: 0;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1; }
    @media (max-width: 580px) {
      .services-list .card .content .card-info .calendar-sm {
        margin: 0 12px 6px -6px; } }
    @media (max-width: 580px) {
      .services-list .card .content .card-info .calendar-sm .month {
        padding: 0; } }
    @media (max-width: 580px) {
      .services-list .card .content .card-actions {
        position: absolute;
        bottom: 16px;
        left: 16px;
        right: 16px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row wrap;
            -ms-flex-flow: row wrap;
                flex-flow: row wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center; } }
    .services-list .card .content .card-actions .button, .services-list .card .content .card-actions .button + .button {
      margin: 6px 6px 0 0; }
      @media (min-width: 580px) {
        .services-list .card .content .card-actions .button, .services-list .card .content .card-actions .button + .button {
          margin: 0 0 0 12px; } }

.details-default > .detail-body .detail-body-content .tab-content .services-list + .tab-item.tab-item-flowers {
  padding: 18px 0 0; }

.flowers-list .card-list {
  margin: 0 -8px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row; }
  @media (max-width: 768px) {
    .flowers-list .card-list {
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap; } }
  .flowers-list .card-list .card {
    width: auto;
    padding: 0;
    margin-right: 8px;
    margin-left: 8px; }
    .flowers-list .card-list .card .picture {
      display: block;
      overflow: hidden; }
      .flowers-list .card-list .card .picture img {
        width: 100%;
        max-width: 100%;
        height: 185px;
        -o-object-fit: cover;
           object-fit: cover;
        border-radius: 4px 4px 0 0;
        -webkit-transition: 0.2s ease-in-out;
        transition: 0.2s ease-in-out; }
        @media (max-width: 580px) {
          .flowers-list .card-list .card .picture img {
            height: 155px; } }
    .flowers-list .card-list .card .content {
      padding: 12px; }
      .flowers-list .card-list .card .content .title {
        color: var(--neutral-base, #404f57);
        font-size: 16px;
        font-family: var(--font-family-base, "Open Sans");
        font-weight: normal;
        text-decoration: none;
        display: block;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis; }
      .flowers-list .card-list .card .content .price {
        color: var(--neutral-base, #404f57);
        font-weight: 700;
        font-size: 18px;
        margin-top: 8px;
        line-height: 30px; }
    .flowers-list .card-list .card[data-columns="3"] {
      width: -webkit-calc((100% / 2) - (8px * 2));
      width: calc((100% / 2) - (8px * 2)); }
      @media (min-width: 768px) {
        .flowers-list .card-list .card[data-columns="3"] {
          width: -webkit-calc((100% / 3) - (8px * 2));
          width: calc((100% / 3) - (8px * 2)); } }
    .flowers-list .card-list .card[data-columns="4"] {
      width: -webkit-calc((100% / 2) - (8px * 2));
      width: calc((100% / 2) - (8px * 2)); }
      @media (min-width: 768px) {
        .flowers-list .card-list .card[data-columns="4"] {
          width: -webkit-calc((100% / 4) - (8px * 2));
          width: calc((100% / 4) - (8px * 2)); } }
    .flowers-list .card-list .card:hover .picture img {
      -webkit-transform: scale(1.05);
          -ms-transform: scale(1.05);
              transform: scale(1.05); }
    .flowers-list .card-list .card:hover .title {
      color: #006699; }

.claim-signup-breadcrumb {
  margin-top: 16px; }
  .claim-signup-breadcrumb .breadcrumb-item {
    background: #f8f5f0;
    color: var(--neutral-base, #404f57); }
    .claim-signup-breadcrumb .breadcrumb-item[is-active="true"] {
      background: #B19140;
      color: white; }
  .claim-signup-breadcrumb + .modal-sign .modal-content {
    margin: 32px 0 48px; }
  .claim-signup-breadcrumb + .members-wrapper {
    margin-top: 16px; }

.members-page {
  background: var(--background-base, #fcfcfd); }
  .members-page .members-panel {
    background: white;
    border: 1px solid rgba(0, 20, 30, 0.15);
    margin-top: 24px;
    border-radius: 4px; }
    .members-page .members-panel > .panel-header {
      padding: 32px 32px 0;
      border: none;
      line-height: 1.1;
      font-weight: bold;
      color: #b49561;
      font-size: 18px;
      text-transform: uppercase;
      letter-spacing: 2.25px;
      font-family: var(--font-family-base, "Open Sans"); }
      .members-page .members-panel > .panel-header.header-spaced {
        font-size: var(--font-size-22, 1.22222em);
        color: var(--neutral-base, #404f57);
        padding: 8px 16px;
        text-transform: none;
        letter-spacing: 0; }
        .members-page .members-panel > .panel-header.header-spaced .panel-toggler {
          background: none;
          padding: 0;
          color: var(--neutral-base, #404f57); }
    .members-page .members-panel .panel-body {
      padding: 16px 32px 32px; }
      .members-page .members-panel .panel-body .panel-description {
        padding-bottom: 9px; }
        .members-page .members-panel .panel-body .panel-description p {
          font-size: 16px; }
      .members-page .members-panel .panel-body .form-group label {
        font-size: 18px;
        font-weight: bold; }
    .members-page .members-panel#chart-panel .chart-options {
      font-size: 18px;
      clear: both;
      display: block;
      width: 90%;
      padding: 16px 0 0; }
    .members-page .members-panel.edit-panel .panel-body .custom-edit-content .panel-form hr {
      opacity: .25;
      margin: 32px 0; }
      @media (max-width: 580px) {
        .members-page .members-panel.edit-panel .panel-body .custom-edit-content .panel-form hr + .form-group .col-xs-6:last-child {
          padding-top: 32px; } }
    .members-page .members-panel.edit-panel .panel-body .custom-edit-content .panel-form .panel-heading {
      font-family: var(--font-family-base, "Open Sans");
      font-weight: bold;
      margin-top: 56px;
      font-size: 22px;
      font-weight: bold;
      color: #b49561;
      font-size: 18px;
      text-transform: uppercase;
      letter-spacing: 2.25px;
      font-family: var(--font-family-base, "Open Sans"); }
    .members-page .members-panel.edit-panel .panel-body .custom-edit-content .form-group {
      margin-bottom: 40px; }
      .members-page .members-panel.edit-panel .panel-body .custom-edit-content .form-group label.radio-inline {
        font-weight: normal; }
        .members-page .members-panel.edit-panel .panel-body .custom-edit-content .form-group label.radio-inline + .radio-inline {
          margin-left: 24px;
          margin-bottom: 0; }
      .members-page .members-panel.edit-panel .panel-body .custom-edit-content .form-group:last-child {
        margin-bottom: 0; }
      .members-page .members-panel.edit-panel .panel-body .custom-edit-content .form-group .form-control#discount_id {
        max-width: 360px;
        margin-bottom: 40px; }
      .members-page .members-panel.edit-panel .panel-body .custom-edit-content .form-group .field a {
        font-size: 16px; }
    .members-page .members-panel.edit-panel .panel-body .custom-edit-content .col-xs-6 {
      padding-top: 0; }
      @media (min-width: 580px) {
        .members-page .members-panel.edit-panel .panel-body .custom-edit-content .col-xs-6 {
          width: 50%; } }
      @media (max-width: 580px) {
        .members-page .members-panel.edit-panel .panel-body .custom-edit-content .col-xs-6 + .col-xs-6 {
          padding-top: 32px; } }
    .members-page .members-panel.edit-panel .panel-body .custom-edit-content .selectize-control .selectize-input .item {
      border-radius: var(--border-radius-input, 5px); }
    @media (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: -webkit-calc(20% - 16px);
        width: calc(20% - 16px); } }
    .members-page .members-panel.edit-panel .panel-body .custom-edit-content .legal-terms .checkbox label {
      margin: 0; }
    .members-page .members-panel.edit-panel .panel-body .custom-edit-content #change-email .heading,
    .members-page .members-panel.edit-panel .panel-body .custom-edit-content #change-password .heading {
      font-family: var(--font-family-base, "Open Sans");
      font-weight: bold;
      font-size: 18px; }
    .members-page .members-panel.edit-panel .panel-body .custom-edit-content #change-email + div,
    .members-page .members-panel.edit-panel .panel-body .custom-edit-content #change-password + div {
      margin-top: 40px; }
    .members-page .members-panel.edit-panel .panel-body .custom-edit-content #change-email .col-md-8,
    .members-page .members-panel.edit-panel .panel-body .custom-edit-content #change-password .col-md-8 {
      width: 100%; }
      @media (min-width: 768px) {
        .members-page .members-panel.edit-panel .panel-body .custom-edit-content #change-email .col-md-8,
        .members-page .members-panel.edit-panel .panel-body .custom-edit-content #change-password .col-md-8 {
          width: 66.66667%; } }
    .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row .input-group .input-group-addon span {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
    .members-page .members-panel.edit-panel .panel-body .custom-edit-content .custom-content-row .input-group.checking .input-group-btn .button {
      margin-left: 16px;
      white-space: nowrap;
      border-radius: var(--border-radius-button, 5px); }
    .members-page .members-panel.edit-panel .panel-body .custom-edit-content.custom-biling #contact-info .default-row-biling .col-md-8 {
      width: 100%; }
      @media (min-width: 768px) {
        .members-page .members-panel.edit-panel .panel-body .custom-edit-content.custom-biling #contact-info .default-row-biling .col-md-8 {
          width: 66.66667%; } }
    .members-page .members-panel.edit-panel .panel-body .form-action-sponsors {
      margin-top: 24px;
      text-align: center; }
  .members-page .members-wrapper .members-sidebar .members-cards .members-item .cards-content .card-title {
    font-size: 18px; }
  .members-page .members-wrapper .members-sidebar .members-cards .members-item .cards-actions .action-link {
    font-size: 14px; }
  .members-page .members-wrapper .members-content .content-dashboard .members-panel > .panel-header,
  .members-page .members-wrapper .members-content .content-dashboard .members-panel > .panel-body {
    padding: 16px; }
  .members-page .members-wrapper .members-content .content-dashboard .row-stretch > div {
    margin-bottom: 0; }
  .members-page .members-wrapper .members-content .content-dashboard .row-stretch .members-panel {
    height: 100%; }
  .members-page .members-panel .paragraph.underClaim {
    padding: 8px 32px; }
  .members-page .dashboard-header .dashboard-title {
    -webkit-box-align: self-start;
    -webkit-align-items: self-start;
        -ms-flex-align: self-start;
            align-items: self-start;
    width: 100%; }
    .members-page .dashboard-header .dashboard-title .button {
      font-family: var(--font-family-base, "Open Sans");
      white-space: nowrap; }

.price-resume .orderTotalAmount strong {
  font-size: 1.2em;
  color: #00141e;
  font-family: var(--font-family-base, "Open Sans"); }

.price-resume .price-action {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .price-resume .price-action .button {
    margin-right: 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
    .price-resume .price-action .button .icon.icon-md {
      margin-right: 8px;
      height: 18px;
      width: 18px; }

.custom-tree-view {
  height: 100%; }
  .custom-tree-view .categoryBullet {
    font-weight: bold; }
    .custom-tree-view .categoryBullet .categoryAdd {
      font-weight: bold;
      padding: 4px 8px;
      margin-left: 8px;
      border-radius: 25px; }
  .custom-tree-view .categorySuccessMessage {
    color: #2ba264;
    text-transform: none;
    margin-left: 8px; }

.hero-default[data-type="1"] {
  background: var(--neutral-base, #404f57);
  background-size: cover; }
  .hero-default[data-type="1"]:before {
    background: transparent; }
  .hero-default[data-type="1"] .wrapper > .hero-header {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto; }
    .hero-default[data-type="1"] .wrapper > .hero-header h1.heading {
      font-size: 32px;
      font-weight: bold; }
      @media (min-width: 768px) {
        .hero-default[data-type="1"] .wrapper > .hero-header h1.heading {
          font-size: 42px; } }
    .hero-default[data-type="1"] .wrapper > .hero-header h2.heading {
      font-size: 22px;
      font-weight: bold; }
      @media (min-width: 768px) {
        .hero-default[data-type="1"] .wrapper > .hero-header h2.heading {
          font-size: 32px; } }
      .hero-default[data-type="1"] .wrapper > .hero-header h2.heading + .button {
        margin-bottom: 0; }
    .hero-default[data-type="1"] .wrapper > .hero-header .paragraph {
      display: block; }

.hero-default[data-type="3"] .hero-slider .carousel-cell {
  min-height: 350px; }

.hero-default[data-type="3"] .hero-slider .slider-content .heading.link {
  color: white;
  text-decoration: none; }

[data-bg="brand"] {
  background: var(--neutral-base, #404f57); }

.categories-base {
  padding: 24px 0; }
  @media (min-width: 992px) {
    .categories-base {
      padding: 48px 0; } }
  .categories-base .categories-header > .heading {
    font-family: var(--font-family-base, "Open Sans");
    font-weight: bold;
    color: #b49561;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2.25px; }
  .categories-base .categories-content > .categories-list .categories-item .picture {
    -webkit-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out; }
    .categories-base .categories-content > .categories-list .categories-item .picture:hover {
      -webkit-box-shadow: 0px 15px 40px -15px rgba(0, 0, 0, 0.2);
              box-shadow: 0px 15px 40px -15px rgba(0, 0, 0, 0.2); }
  .categories-base[data-bg="brand"] .categories-header > .heading {
    color: white; }
  .categories-base[data-type="3"] .categories-content {
    max-height: inherit; }
    .categories-base[data-type="3"] .categories-content > .categories-list.location-list .categories-item {
      color: white; }
      .categories-base[data-type="3"] .categories-content > .categories-list.location-list .categories-item .name {
        border-bottom: 1px solid transparent;
        -webkit-transition: 0.2s ease-in-out;
        transition: 0.2s ease-in-out; }
        .categories-base[data-type="3"] .categories-content > .categories-list.location-list .categories-item .name:hover {
          border-color: white; }

.section-headers[data-bg="brand"] {
  background: var(--neutral-base, #404f57);
  padding: 48px 0; }
  @media (min-width: 992px) {
    .section-headers[data-bg="brand"] {
      padding-top: 96px;
      padding-bottom: 96px; } }

.section-headers .wrapper > .heading,
.section-headers .wrapper > .paragraph {
  font-weight: normal; }

.section-headers .wrapper > .heading {
  font-weight: bold;
  line-height: 1.3;
  font-size: 42px; }
  @media (max-width: 768px) {
    .section-headers .wrapper > .heading {
      font-size: 32px; } }
  .section-headers .wrapper > .heading + .paragraph {
    margin-top: 24px; }

.hero-wrapper.hero-with-slider [data-type="4"] {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }
  @media (max-width: 992px) {
    .hero-wrapper.hero-with-slider [data-type="4"] {
      width: 100%; } }
  .hero-wrapper.hero-with-slider [data-type="4"] .hero-header .heading-mobile {
    margin: 0; }
  @media (max-width: 992px) {
    .hero-wrapper.hero-with-slider [data-type="4"] .content-form {
      margin-top: 24px; } }

.results-header {
  background: var(--neutral-base, #404f57);
  border: none;
  position: relative;
  z-index: 1;
  padding: 24px 0; }
  @media (min-width: 992px) {
    .results-header {
      padding: 48px 0; } }
  .results-header .results-title {
    margin: 0;
    color: white;
    font-weight: bold;
    font-size: 32px; }
  .results-header .paragraph {
    color: white; }

.results-body {
  background: #fcfcfd;
  padding: 24px 0; }
  @media (min-width: 992px) {
    .results-body {
      padding: 48px 0; } }
  .results-body .results-sidebar .sidebar-item {
    background: white;
    border: 1px solid rgba(0, 20, 30, 0.15);
    border-radius: 4px; }
    .results-body .results-sidebar .sidebar-item .item-header {
      padding: 8px 16px; }
      .results-body .results-sidebar .sidebar-item .item-header .item-title {
        font-family: var(--heading-font, "PT Serif");
        font-size: 24px;
        font-weight: bold;
        color: #00141e;
        padding: 0; }
    .results-body .results-sidebar .sidebar-item .item-body {
      border: none; }
      .results-body .results-sidebar .sidebar-item .item-body .category-item .category-header {
        padding: 8px 16px; }
        .results-body .results-sidebar .sidebar-item .item-body .category-item .category-header .category-link:before {
          height: 20px;
          width: 20px;
          display: inline-block;
          background: url(../../../../external.html?link=https://d1ore3n0z2tnb3.cloudfront.net/assets/images/structure/icon-checkbox.svg) no-repeat center;
          background-size: cover;
          content: "";
          position: relative;
          top: 4px;
          margin-right: 16px; }
        .results-body .results-sidebar .sidebar-item .item-body .category-item .category-header .category-link:hover:before {
          background: url(../../../../external.html?link=https://d1ore3n0z2tnb3.cloudfront.net/assets/images/structure/icon-checkbox-hover.svg) no-repeat center;
          background-size: cover; }
        .results-body .results-sidebar .sidebar-item .item-body .category-item .category-header .subcategory-toggler {
          position: relative;
          left: inherit;
          margin-right: auto;
          margin-left: 8px; }
          .results-body .results-sidebar .sidebar-item .item-body .category-item .category-header .subcategory-toggler .fa {
            position: relative; }
            .results-body .results-sidebar .sidebar-item .item-body .category-item .category-header .subcategory-toggler .fa:before {
              content: ""; }
            .results-body .results-sidebar .sidebar-item .item-body .category-item .category-header .subcategory-toggler .fa:after {
              content: "";
              height: 17px;
              width: 18px;
              display: inline-block;
              margin-right: auto;
              margin-left: auto;
              background: url(../../../../external.html?link=https://d1ore3n0z2tnb3.cloudfront.net/assets/images/structure/icon-arrow-up.svg) no-repeat center;
              background-size: cover; }
            .results-body .results-sidebar .sidebar-item .item-body .category-item .category-header .subcategory-toggler .fa.fa-plus:after {
              background: url(../../../../external.html?link=https://d1ore3n0z2tnb3.cloudfront.net/assets/images/structure/icon-arrow-down.svg) no-repeat center;
              background-size: cover; }
      .results-body .results-sidebar .sidebar-item .item-body .category-item[is-selected="true"] .category-header .category-link:before {
        background: url(../../../../external.html?link=https://d1ore3n0z2tnb3.cloudfront.net/assets/images/structure/icon-checkbox-checked.svg) no-repeat center;
        background-size: cover; }
      .results-body .results-sidebar .sidebar-item .item-body .category-item[is-selected="true"] .category-header .category-link:after {
        content: ""; }
      .results-body .results-sidebar .sidebar-item .item-body .category-item .category-subcategory .category-item .category-header {
        padding: 8px 16px; }
  @media (min-width: 768px) {
    .results-body .results-content .results-type .button {
      height: auto; } }
  .results-body .results-content .results-actions {
    border-color: rgba(0, 20, 30, 0.15); }
  .results-body .results-content .summary-list .summary-item {
    -webkit-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7e8;
    padding: 16px 16px; }
    @media (min-width: 768px) {
      .results-body .results-content .summary-list .summary-item .summary-additional {
        width: -webkit-calc(20% - 16px);
        width: calc(20% - 16px); } }
    .results-body .results-content .summary-list .summary-item .summary-additional .summary-rating .button {
      width: auto;
      display: inline-block; }
    @media (min-width: 768px) {
      .results-body .results-content .summary-list .summary-item .summary-content {
        border-color: rgba(0, 20, 30, 0.15);
        width: 80%;
        padding-right: 16px; } }
    .results-body .results-content .summary-list .summary-item .summary-content .summary-info {
      margin: 0 0 24px; }
      @media (min-width: 768px) {
        .results-body .results-content .summary-list .summary-item .summary-content .summary-info {
          margin: 0;
          max-width: -webkit-calc(100% - 201px);
          max-width: calc(100% - 201px); } }
      .results-body .results-content .summary-list .summary-item .summary-content .summary-info .summary-title .title {
        color: #00141e;
        font-size: 28px;
        font-weight: bold;
        max-width: -webkit-calc(100% - 116px);
        max-width: calc(100% - 116px); }
      .results-body .results-content .summary-list .summary-item .summary-content .summary-info .summary-address,
      .results-body .results-content .summary-list .summary-item .summary-content .summary-info .summary-phone {
        font-size: 16px;
        color: var(--neutral-base, #404f57); }
      .results-body .results-content .summary-list .summary-item .summary-content .summary-info .summary-address .comma {
        margin-left: -5px; }
      .results-body .results-content .summary-list .summary-item .summary-content .summary-info .summary-description {
        font-size: 16px;
        color: var(--neutral-base, #404f57); }
    .results-body .results-content .summary-list .summary-item .summary-content .summary-claim,
    .results-body .results-content .summary-list .summary-item .summary-content .summary-claim-noimage {
      margin-top: 8px;
      text-align: center;
      font-size: .8em;
      width: auto;
      display: inline-block; }
    .results-body .results-content .summary-list .summary-item .summary-claim-noimage {
      margin-top: 16px; }
    .results-body .results-content .summary-list .summary-item .summary-title .actions .share-icon .share-dropdown {
      min-width: 130px;
      text-align: center; }
      @media (max-width: 992px) {
        .results-body .results-content .summary-list .summary-item .summary-title .actions .share-icon .share-dropdown {
          padding-top: 0;
          min-width: 90px;
          left: initial;
          right: 0;
          -webkit-transform: translateX(0);
              -ms-transform: translateX(0);
                  transform: translateX(0); } }
      @media (max-width: 992px) {
        .results-body .results-content .summary-list .summary-item .summary-title .actions .share-icon .share-dropdown:before {
          left: 85%; } }
      .results-body .results-content .summary-list .summary-item .summary-title .actions .share-icon .share-dropdown .title-actions {
        color: #000;
        background: #fff;
        border: 1px solid #ccc;
        border-radius: 3px;
        line-height: 28px;
        height: 32px;
        width: 32px;
        position: relative;
        top: 6px;
        -webkit-transition: 0.2s ease-in-out;
        transition: 0.2s ease-in-out; }
        @media (min-width: 992px) {
          .results-body .results-content .summary-list .summary-item .summary-title .actions .share-icon .share-dropdown .title-actions {
            top: 2px; } }
        .results-body .results-content .summary-list .summary-item .summary-title .actions .share-icon .share-dropdown .title-actions:hover {
          background: var(--brand-base, #006699);
          color: white;
          border-color: var(--brand-base, #006699); }
      @media (max-width: 992px) {
        .results-body .results-content .summary-list .summary-item .summary-title .actions .share-icon .share-dropdown .social-likes__widget {
          margin-top: 8px; } }
      @media (max-width: 992px) {
        .results-body .results-content .summary-list .summary-item .summary-title .actions .share-icon .share-dropdown .social-likes__widget_whatsapp {
          display: inline-block; } }
    .results-body .results-content .summary-list .summary-item:hover {
      -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.1);
              box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.1); }
      .results-body .results-content .summary-list .summary-item:hover .summary-content .summary-info .summary-title .title {
        color: #006699; }
    @media (min-width: 768px) {
      .results-body .results-content .summary-list .summary-item[data-type="listing"] .summary-content {
        border: none;
        width: 100%;
        padding: 0; } }
    .results-body .results-content .summary-list .summary-item[data-type="listing"] .summary-content .summary-categories {
      margin-top: 6px; }
    .results-body .results-content .summary-list .summary-item[data-type="listing"] .summary-content .summary-rating {
      text-align: left; }
      .results-body .results-content .summary-list .summary-item[data-type="listing"] .summary-content .summary-rating .rate {
        margin-bottom: 6px; }
        .results-body .results-content .summary-list .summary-item[data-type="listing"] .summary-content .summary-rating .rate:after {
          font-size: 18px; }
  .results-body .results-content .results-pagination .item-pagination.is-previous, .results-body .results-content .results-pagination .item-pagination.is-next {
    background: none;
    border: none; }

/* Icons **********************************************************************************************************************************/
.fa.fa-check {
  height: 24px;
  width: 24px;
  display: inline-block;
  margin-right: auto;
  margin-left: auto;
  background: url(../../../../external.html?link=https://d1ore3n0z2tnb3.cloudfront.net/assets/images/structure/icon-check.svg) no-repeat center;
  background-size: cover; }
  .fa.fa-check:before {
    content: ""; }

.fa.fa-angle-up {
  height: 24px;
  width: 24px;
  display: inline-block;
  margin-right: auto;
  margin-left: auto;
  background: url(../../../../external.html?link=https://d1ore3n0z2tnb3.cloudfront.net/assets/images/structure/icon-arrow-up.svg) no-repeat center;
  background-size: cover; }
  .fa.fa-angle-up:before {
    content: ""; }

.fa.fa-angle-left {
  height: 24px;
  width: 24px;
  display: inline-block;
  margin-right: auto;
  margin-left: auto;
  background: url(../../../../external.html?link=https://d1ore3n0z2tnb3.cloudfront.net/assets/images/structure/icon-arrow-left.svg) no-repeat center;
  background-size: cover; }
  .fa.fa-angle-left:before {
    content: ""; }

.fa.fa-angle-right {
  height: 24px;
  width: 24px;
  display: inline-block;
  margin-right: auto;
  margin-left: auto;
  background: url(../../../../external.html?link=https://d1ore3n0z2tnb3.cloudfront.net/assets/images/structure/icon-arrow-right.svg) no-repeat center;
  background-size: cover; }
  .fa.fa-angle-right:before {
    content: ""; }

.fa.fa-angle-down {
  height: 24px;
  width: 24px;
  display: inline-block;
  margin-right: auto;
  margin-left: auto;
  background: url(../../../../external.html?link=https://d1ore3n0z2tnb3.cloudfront.net/assets/images/structure/icon-arrow-down.svg) no-repeat center;
  background-size: cover; }
  .fa.fa-angle-down:before {
    content: ""; }

.fa.fa-times {
  height: 24px;
  width: 24px;
  display: inline-block;
  margin-right: auto;
  margin-left: auto;
  background: url(../../../../external.html?link=https://d1ore3n0z2tnb3.cloudfront.net/assets/images/structure/icon-close.svg) no-repeat center;
  background-size: cover; }
  .fa.fa-times:before {
    content: ""; }

.header > .header-bar .user-button .fa {
  height: 12px;
  width: 12px;
  -webkit-filter: invert(1) grayscale(1);
          filter: invert(1) grayscale(1); }

.header .header-navbar .navbar-link.navbar-dropdown .more-label .fa {
  height: 12px;
  width: 12px;
  opacity: .5; }

.faq-page .faq-content .toggle-item .toggle-header {
  position: relative; }
  .faq-page .faq-content .toggle-item .toggle-header .button {
    position: absolute;
    right: 20px;
    top: 22px;
    font-size: 0; }
    .faq-page .faq-content .toggle-item .toggle-header .button:before {
      display: none; }
    .faq-page .faq-content .toggle-item .toggle-header .button .fa:before {
      content: "";
      font-size: 0;
      display: block;
      height: 24px;
      width: 24px;
      background: url(../../../../external.html?link=https://d1ore3n0z2tnb3.cloudfront.net/assets/images/structure/icon-plus.svg) no-repeat center;
      background-size: cover; }
  .faq-page .faq-content .toggle-item .toggle-header.is-open .button {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none; }
    .faq-page .faq-content .toggle-item .toggle-header.is-open .button .fa:before {
      background: url(../../../../external.html?link=https://d1ore3n0z2tnb3.cloudfront.net/assets/images/structure/icon-minus.svg) no-repeat center;
      background-size: cover;
      height: 20px;
      width: 20px;
      top: 2px;
      position: relative; }

.details-default > .details-modal .has-coverimage .modal-close, .details-default > .details-modal .custom-close-color .modal-close {
  top: 12px;
  right: 12px;
  -webkit-filter: invert(1) grayscale(1);
          filter: invert(1) grayscale(1); }

.cards-default .cards-header > .link {
  position: relative; }
  .cards-default .cards-header > .link:after {
    content: "";
    height: 12px;
    width: 12px;
    display: inline-block;
    margin-right: auto;
    margin-left: auto;
    background: url(../../../../external.html?link=https://d1ore3n0z2tnb3.cloudfront.net/assets/images/structure/icon-arrow-right-blue.svg) no-repeat center;
    background-size: cover; }

.cards-default[data-bg="brand"] .cards-header > .link:after {
  background: url(../../../../external.html?link=https://d1ore3n0z2tnb3.cloudfront.net/assets/images/structure/icon-arrow-right-white.svg) no-repeat center;
  background-size: cover; }

.categories-base .categories-header > .link {
  position: relative; }
  .categories-base .categories-header > .link:after {
    content: "";
    height: 12px;
    width: 12px;
    display: inline-block;
    margin-right: auto;
    margin-left: auto;
    background: url(../../../../external.html?link=https://d1ore3n0z2tnb3.cloudfront.net/assets/images/structure/icon-arrow-right-blue.svg) no-repeat center;
    background-size: cover; }

.categories-base[data-bg="brand"] .categories-header > .link:after {
  background: url(../../../../external.html?link=https://d1ore3n0z2tnb3.cloudfront.net/assets/images/structure/icon-arrow-right-white.svg) no-repeat center;
  background-size: cover; }

.results-body .results-sidebar .sidebar-item .item-header .fa-minus {
  font-size: 0;
  position: relative; }
  .results-body .results-sidebar .sidebar-item .item-header .fa-minus:after {
    content: "";
    height: 20px;
    width: 20px;
    display: inline-block;
    margin-right: auto;
    margin-left: auto;
    background: url(../../../../external.html?link=https://d1ore3n0z2tnb3.cloudfront.net/assets/images/structure/icon-arrow-up.svg) no-repeat center;
    background-size: cover; }

.results-body .results-sidebar .sidebar-item .item-header .fa-plus {
  font-size: 0;
  position: relative; }
  .results-body .results-sidebar .sidebar-item .item-header .fa-plus:after {
    content: "";
    height: 20px;
    width: 20px;
    display: inline-block;
    margin-right: auto;
    margin-left: auto;
    background: url(../../../../external.html?link=https://d1ore3n0z2tnb3.cloudfront.net/assets/images/structure/icon-arrow-down.svg) no-repeat center;
    background-size: cover; }

.sticky-footer {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  z-index: 10;
  -webkit-box-shadow: 0px 0px 4px 2px rgba(48, 49, 51, 0.05);
          box-shadow: 0px 0px 4px 2px rgba(48, 49, 51, 0.05); }
  .sticky-footer .close {
    position: absolute;
    right: 12px;
    top: 12px;
    background-color: white;
    padding: 4px;
    border-radius: 50px; }
    .sticky-footer .close .fa-close {
      font-size: 0;
      position: relative; }
      .sticky-footer .close .fa-close:after {
        content: "";
        height: 20px;
        width: 20px;
        display: inline-block;
        margin-right: auto;
        margin-left: auto;
        background: url(../../../../external.html?link=https://d1ore3n0z2tnb3.cloudfront.net/assets/images/structure/icon-close.svg) no-repeat center;
        background-size: cover; }

.comparison-table {
  background: white;
  position: relative; }
  .comparison-table > thead > tr:first-child {
    background: #f7f4ef; }
    .comparison-table > thead > tr:first-child th {
      text-align: center;
      font-weight: bold;
      line-height: 1.25;
      color: var(--neutral-base, #404f57);
      font-size: 22px;
      font-family: var(--heading-font, "PT Serif");
      border-bottom: none; }
  .comparison-table > tbody > tr.monthly-price td {
    color: #00141e;
    font-size: 28px; }
    @media (max-width: 768px) {
      .comparison-table > tbody > tr.monthly-price td {
        padding-bottom: 18px; } }
  @media (max-width: 1200px) {
    .comparison-table > tbody > tr.monthly-price .button {
      padding-right: 30px;
      padding-left: 30px; } }
  .comparison-table > tbody > tr.monthly-price .plan-price {
    display: block;
    margin-bottom: 9px; }
    .comparison-table > tbody > tr.monthly-price .plan-price.premium {
      line-height: 1; }
      .comparison-table > tbody > tr.monthly-price .plan-price.premium strong {
        font-size: 42px; }
      .comparison-table > tbody > tr.monthly-price .plan-price.premium span {
        font-size: 18px; }
        .comparison-table > tbody > tr.monthly-price .plan-price.premium span:first-child {
          position: relative;
          top: -7px; }
  .comparison-table > tbody > tr .features-title {
    background: #f7f4ef;
    font-family: var(--heading-font, "PT Serif");
    font-size: 18px;
    line-height: 1.2;
    color: var(--neutral-base, #404f57);
    font-weight: bold;
    padding: 10px 15px; }
    @media (max-width: 768px) {
      .comparison-table > tbody > tr .features-title {
        background: var(--neutral-base, #404f57);
        color: white;
        text-align: center; } }
  .comparison-table > tbody > tr > th, .comparison-table > tbody > tr > td {
    font-weight: normal;
    font-size: 14px;
    color: #00141e;
    padding: 10px 15px; }
    @media (min-width: 768px) {
      .comparison-table > tbody > tr > th, .comparison-table > tbody > tr > td {
        font-size: 18px; } }
  .comparison-table > tbody > tr > td {
    text-align: center; }
    @media (max-width: 768px) {
      .comparison-table > tbody > tr > td {
        width: 50%; } }
    .comparison-table > tbody > tr > td.unchecked span {
      display: block;
      -webkit-transform: translateY(-25%);
          -ms-transform: translateY(-25%);
              transform: translateY(-25%); }
  .comparison-table .blank {
    background: #fcfcfd;
    position: relative; }
    .comparison-table .blank:before {
      content: "";
      background: #fcfcfd;
      position: absolute;
      left: -1px;
      top: -1px;
      height: 100.5%;
      width: 100.25%; }

.comparison-navbar {
  margin-bottom: 24px; }
  .comparison-navbar .button.tab-navbar {
    display: block;
    text-align: center;
    font-weight: normal;
    font-size: 14px;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none; }
    .comparison-navbar .button.tab-navbar + .button {
      margin-top: -1px; }
    .comparison-navbar .button.tab-navbar:hover {
      -webkit-box-shadow: none;
              box-shadow: none; }
    .comparison-navbar .button.tab-navbar.is-selected {
      font-weight: bold;
      -webkit-box-shadow: none;
              box-shadow: none; }

.comparison-wrapper .tab-content {
  display: none; }
  .comparison-wrapper .tab-content.is-active {
    display: block; }

.comparison-basic-plan {
  text-align: center;
  padding: 28px 0 0; }
  .comparison-basic-plan h2 {
    color: #00141e;
    font-weight: bold;
    font-size: 1.2em;
    font-family: var(--heading-font, "PT Serif");
    margin: 0; }
  .comparison-basic-plan p {
    font-size: 16px;
    margin: 0; }
    .comparison-basic-plan p .link {
      font-size: 14px; }

.gpt-ads {
  text-align: center;
  margin: 0 auto; }

.breadcrumb-content + .gpt-ads {
  display: none; }
  .breadcrumb-content + .gpt-ads div[id*="google_ads_iframe"] {
    margin-top: 0;
    margin-bottom: 24px; }
  @media (min-width: 992px) {
    .breadcrumb-content + .gpt-ads {
      display: block; } }

.details-default > .details-header.details-header-mobile .detail-header-content-mobile + .gpt-ads div[id*="google_ads_iframe"] {
  margin-top: 24px;
  margin-bottom: 24px; }

.details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-about + .gpt-ads div[id*="google_ads_iframe"] {
  margin-bottom: 48px; }

.details-default > .detail-body .detail-body-content .detail-wrapper .detail-right .card-flush + .gpt-ads div[id*="google_ads_iframe"] {
  margin-top: 24px; }

.results-body > .gpt-ads {
  display: none; }
  .results-body > .gpt-ads div[id*="google_ads_iframe"] {
    margin-bottom: 48px; }
  @media (min-width: 992px) {
    .results-body > .gpt-ads {
      display: block; } }

.results-body .results-content .gpt-ads {
  display: none; }
  .results-body .results-content .gpt-ads div[id*="google_ads_iframe"] {
    margin-bottom: 24px; }
  @media (max-width: 992px) {
    .results-body .results-content .gpt-ads {
      display: block; } }

.cards-default + .custom-content .container .gpt-ads div[id*="div-gpt-ad"] {
  margin-bottom: 24px; }

.header .sponsor-notify-billing {
  background-color: #B19140;
  z-index: 10; }

.members-page .members-panel .panel-header .panel-share {
  font-size: 1em; }

.members-page .members-panel .panel-body .activity-content .activity-list .activicty-item {
  font-size: 1em; }

.members-page .members-panel .panel-body .activity-content .total-views .views-count {
  font-family: var(--font-family-base, "Open Sans"); }

.members-page .members-panel .panel-body .completion-content .completion-chart:after {
  color: #cb4e00; }

.members-page .members-panel .panel-body .completion-content .completion-steps .steps-title {
  font-size: 1em; }

.members-page .members-panel.edit-panel .panel-body .custom-edit-content #tour-categories .btn {
  color: white;
  font-weight: 600; }

.members-page .members-panel.edit-panel .panel-body .custom-edit-content .panel-form-media .panel-heading .panel-heading-action .btn {
  color: white;
  font-weight: 600;
  font-size: 14px; }

.members-page .members-panel.edit-panel .panel-body .custom-edit-content .panel-form-media .panel-body {
  padding: 16px; }
  .members-page .members-panel.edit-panel .panel-body .custom-edit-content .panel-form-media .panel-body .custom-template-download {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .members-page .members-panel.edit-panel .panel-body .custom-edit-content .panel-form-media .panel-body .custom-template-download .photo-gallery-image,
    .members-page .members-panel.edit-panel .panel-body .custom-edit-content .panel-form-media .panel-body .custom-template-download .photo-gallery-title,
    .members-page .members-panel.edit-panel .panel-body .custom-edit-content .panel-form-media .panel-body .custom-template-download .photo-gallery-actions {
      width: auto;
      margin: 0;
      padding-top: 0 !important;
      font-size: 16px; }
    .members-page .members-panel.edit-panel .panel-body .custom-edit-content .panel-form-media .panel-body .custom-template-download .photo-gallery-actions {
      margin-left: auto; }
    .members-page .members-panel.edit-panel .panel-body .custom-edit-content .panel-form-media .panel-body .custom-template-download .photo-gallery-image {
      padding: 0 0 0 8px;
      text-align: right;
      width: 120px;
      margin-left: 16px; }
      .members-page .members-panel.edit-panel .panel-body .custom-edit-content .panel-form-media .panel-body .custom-template-download .photo-gallery-image img {
        max-height: 100px;
        width: 100px;
        -o-object-fit: contain;
           object-fit: contain; }
    .members-page .members-panel.edit-panel .panel-body .custom-edit-content .panel-form-media .panel-body .custom-template-download + .custom-template-download {
      border-top: 1px solid #ddd;
      padding-top: 32px;
      margin-top: 32px; }

.members-page .members-panel.edit-panel .panel-body .custom-edit-content .panel-form-media#tour-file .bootstrap-filestyle .btn {
  color: white;
  font-weight: 600;
  font-size: 14px; }

body.is-sponsor .panel.panel-seo {
  display: none; }

body.is-sponsor .section-headers[data-bg="brand"] {
  padding-top: 48px;
  padding-bottom: 48px; }
  body.is-sponsor .section-headers[data-bg="brand"] .wrapper .heading {
    font-size: 36px; }

.claim-signup-breadcrumb .breadcrumb-item:not(:first-child):before, .claim-signup-breadcrumb .breadcrumb-item:not(:first-child):after {
  background: #fcfcfd; }

.modal-sign .modal-content .modal-body .form-button {
  text-align: center; }
  .modal-sign .modal-content .modal-body .form-button .button {
    text-transform: capitalize; }

.modal-sign[is-page="true"] .modal-content .modal-body {
  min-height: 440px; }
  .modal-sign[is-page="true"] .modal-content .modal-body .content-tab {
    top: 48px; }

.content-form .input-group-action .button.is-gold {
  opacity: 1; }

@media (min-width: 1200px) {
  .header .header-navbar {
    min-width: 755px; } }

.header[data-type="5"] > .header-content .content-search.is-expandable form .tt-menu {
  position: absolute;
  top: 100%;
  left: 0px;
  z-index: 100;
  display: block;
  background: #f8f8f8;
  padding: 16px 0;
  margin: 0 -11px;
  border-radius: 0 0 5px 5px;
  border: 1px solid #e5e7e8;
  border-top: none; }
  .header[data-type="5"] > .header-content .content-search.is-expandable form .tt-menu .tt-suggestion {
    padding: 4px 16px; }
    .header[data-type="5"] > .header-content .content-search.is-expandable form .tt-menu .tt-suggestion:hover {
      background: #eee;
      cursor: pointer; }

.custom-level-price {
  background: #fcfcfd;
  padding-bottom: 0; }
  .custom-level-price .comparison-table th.blank {
    max-width: -webkit-calc(calc(100% / 3) - 16px);
    max-width: calc(calc(100% / 3) - 16px); }
  .custom-level-price .comparison-table .plan-price span {
    font-size: 18px; }
    .custom-level-price .comparison-table .plan-price span.symbol {
      position: relative;
      top: -7px; }
  .custom-level-price .comparison-table .button {
    padding-left: 60px;
    padding-right: 60px; }
    @media (max-width: 992px) {
      .custom-level-price .comparison-table .button {
        padding-left: 30px;
        padding-right: 30px; } }

@media (min-width: 1200px) {
  .details-default > .detail-body .detail-body-content .detail-wrapper {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start; }
  .details-default > .detail-body .detail-body-content .detail-wrapper .detail-right {
    position: -webkit-sticky;
    position: sticky;
    top: 24px; }
  .details-default > .detail-body .detail-body-content .detail-wrapper .detail-right .card-flush + .gpt-ads div[id*="google_ads_iframe"] {
    margin-top: 24px; } }

@media (min-width: 992px) {
  .details-default > .details-header .details-info .details-title .heading .unclaimed:hover .unclaimed-text {
    left: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none; } }

.results-sorter {
  position: relative;
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: none;
  border-color: var(--neutral-transp-25, rgba(64, 79, 87, 0.25));
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 40px;
  line-height: 40px;
  color: #444;
  min-width: 200px; }
  .results-sorter .fa {
    height: 12px;
    width: 12px;
    position: absolute;
    right: 10px;
    top: 15px;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out; }
  .results-sorter .sorter-content {
    width: 198px;
    position: absolute;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 3px;
    padding: 0;
    z-index: 5000;
    right: 0;
    display: none; }
    .results-sorter .sorter-content a {
      display: block;
      padding: 0 12px;
      text-decoration: none;
      color: #444; }
      .results-sorter .sorter-content a.selected {
        background: #ddd; }
      .results-sorter .sorter-content a:hover {
        background-color: #5897fb;
        color: white; }
  .results-sorter.is-open .fa {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg); }

.details-default {
  overflow: visible; }

@media (max-width: 992px) {
  .details-default > .details-header .details-info .details-title .heading {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; } }

.details-default > .details-header .details-info .details-title .heading .unclaimed {
  width: auto; }
  .details-default > .details-header .details-info .details-title .heading .unclaimed .unclaimed-text {
    display: none; }
  .details-default > .details-header .details-info .details-title .heading .unclaimed:hover .unclaimed-text {
    display: block; }

.header[data-type="5"] > .header-content .content-search.is-expandable form {
  display: none; }

.header[data-type="5"] > .header-content .content-search.is-expandable .expandable-button.is-open + form {
  display: block; }

.header[data-type="5"] > .header-content .content-search.is-expandable form input {
  padding-right: 40px; }

.sticky-footer {
  z-index: 1000; }
  .sticky-footer + .cookie-settings button#ot-sdk-btn {
    bottom: 90px; }
  .sticky-footer.closed {
    display: none; }
    .sticky-footer.closed + .cookie-settings button#ot-sdk-btn {
      bottom: 0; }

body {
  min-height: 100vh; }

body,
.modal-sign .modal-content .modal-nav .modal-nav-link {
  font-family: 'Open Sans', sans-serif; }

.claim-signup-breadcrumb {
  margin: 0;
  padding: 72px 0 0; }

.claim-signup-breadcrumb + .modal-sign[is-page="true"] .modal-content {
  margin-bottom: 72px; }

.modal-sign[is-page="true"] .modal-content {
  max-width: 550px;
  width: 90%; }
  .modal-sign[is-page="true"] .modal-content .modal-body {
    padding: 32px; }
    .modal-sign[is-page="true"] .modal-content .modal-body .content-tab {
      top: 32px;
      width: -webkit-calc(100% - 64px);
      width: calc(100% - 64px); }
      .modal-sign[is-page="true"] .modal-content .modal-body .content-tab.active.content-sign-up {
        right: 32px; }
      .modal-sign[is-page="true"] .modal-content .modal-body .content-tab.active.content-sign-in {
        left: 32px; }

.flowers-list .card-list .card .content .price {
  display: none; }

@media (min-width: 992px) {
  .details-default > .detail-body .detail-body-content .detail-wrapper .detail-right {
    top: 0; } }

.sticky-footer .close {
  height: 32px;
  width: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; }

@media (max-width: 680px) {
  .sticky-footer + .cookie-settings button#ot-sdk-btn {
    bottom: 50px; } }

@media (min-width: 992px) {
  .categories-base[data-type="4"] {
    min-height: -webkit-calc(100vh - 343px);
    min-height: calc(100vh - 343px); } }

.results-body .results-sidebar .sidebar-item .item-body .category-item .category-header {
  border-top: 1px solid rgba(0, 0, 0, 0.1); }
  .results-body .results-sidebar .sidebar-item .item-body .category-item .category-header .category-link {
    max-width: -webkit-calc(100% - 30px);
    max-width: calc(100% - 30px); }
  .results-body .results-sidebar .sidebar-item .item-body .category-item .category-header .subcategory-toggler {
    margin: 0;
    margin-left: auto; }
  .results-body .results-sidebar .sidebar-item .item-body .category-item .category-header .category-count {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    background: none;
    border: none;
    padding: 0;
    position: relative;
    color: #069; }
    .results-body .results-sidebar .sidebar-item .item-body .category-item .category-header .category-count:before {
      content: "(";
      position: relative; }
    .results-body .results-sidebar .sidebar-item .item-body .category-item .category-header .category-count:after {
      content: ")";
      position: relative; }

.results-body .results-sidebar .sidebar-item .item-body .category-item .category-subcategory .category-item .category-header {
  border: none;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start; }

.read-more-state {
  display: none; }
  .read-more-state:checked ~ .read-more-wrap > .category-item:not(:nth-child(-n+8)) {
    opacity: 1;
    max-height: 999em; }
  .read-more-state:checked ~ .read-more-trigger:before {
    content: 'Show less'; }
  .read-more-state ~ .read-more-trigger:before {
    content: 'Show more'; }

.read-more-wrap > .category-item:not(:nth-child(-n+8)) {
  opacity: 0;
  max-height: 0;
  -webkit-transition: .25s ease;
  transition: .25s ease; }

.read-more-trigger.button.is-default {
  cursor: pointer;
  display: block;
  padding: 8px 12px;
  border-radius: .25em;
  z-index: 1000;
  margin: 16px;
  text-align: center;
  font-size: 14px; }

.hero-wrapper[has-video="true"] {
  background-color: #f0faff; }
  .hero-wrapper[has-video="true"] .hero-default[data-type="4"] {
    top: 47%; }
    .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .hero-header {
      text-align: center;
      text-shadow: rgba(0, 0, 0, 0.33) 0px 2px 4px; }
      .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .hero-header .heading {
        font-style: normal;
        font-weight: 700;
        font-size: 56px;
        letter-spacing: -0.5px; }
        @media (max-width: 992px) {
          .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .hero-header .heading {
            font-size: 48px; } }
        @media (max-width: 768px) {
          .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .hero-header .heading {
            font-size: 32px; } }
      .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .hero-header .paragraph {
        font-style: normal;
        font-weight: 400;
        font-size: 20px;
        letter-spacing: -0.5px;
        margin: 13px 0 0;
        display: block; }
        @media (max-width: 992px) {
          .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .hero-header .paragraph {
            font-size: 18px; } }
    .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-flow: column nowrap;
          -ms-flex-flow: column nowrap;
              flex-flow: column nowrap;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      position: relative;
      background-color: white;
      border-radius: 15px;
      -webkit-box-shadow: rgba(0, 0, 0, 0.18) 0px 0.71189px 0.71189px -0.75px, rgba(0, 0, 0, 0.18) 0px 1.93769px 1.93769px -1.5px, rgba(0, 0, 0, 0.17) 0px 4.25286px 4.25286px -2.25px, rgba(0, 0, 0, 0.14) 0px 9.43828px 9.43828px -3px, rgba(0, 0, 0, 0.06) 0px 24px 24px -3.75px;
              box-shadow: rgba(0, 0, 0, 0.18) 0px 0.71189px 0.71189px -0.75px, rgba(0, 0, 0, 0.18) 0px 1.93769px 1.93769px -1.5px, rgba(0, 0, 0, 0.17) 0px 4.25286px 4.25286px -2.25px, rgba(0, 0, 0, 0.14) 0px 9.43828px 9.43828px -3px, rgba(0, 0, 0, 0.06) 0px 24px 24px -3.75px;
      gap: 24px;
      overflow: visible;
      padding: 24px 32px;
      z-index: 1;
      margin-top: 36px;
      max-width: 100%;
      width: 636px;
      min-width: inherit;
      margin-top: 32px;
      margin-bottom: -315px; }
      @media (max-width: 768px) {
        .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form {
          padding: 16px 24px; } }
      .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form:before {
        content: "";
        background: #ccd0d2;
        height: 1px;
        position: absolute;
        top: 102px;
        width: 100%;
        z-index: -1; }
        @media (max-width: 768px) {
          .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form:before {
            top: 97px; } }
      .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-tabs {
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row nowrap;
            -ms-flex-flow: row nowrap;
                flex-flow: row nowrap;
        position: relative;
        width: 100%;
        z-index: 1;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between; }
        @media (max-width: 768px) {
          .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-tabs {
            -webkit-justify-content: space-around;
                -ms-flex-pack: distribute;
                    justify-content: space-around;
            max-width: 310px; } }
        .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-tabs .tab {
          height: auto;
          position: relative;
          width: auto;
          border-bottom: 4px solid transparent; }
          .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-tabs .tab a {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-flow: column nowrap;
                -ms-flex-flow: column nowrap;
                    flex-flow: column nowrap;
            padding: 0px;
            position: relative;
            text-decoration: none;
            gap: 8px;
            -webkit-box-align: center;
            -webkit-align-items: center;
                -ms-flex-align: center;
                    align-items: center; }
            @media (max-width: 768px) {
              .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-tabs .tab a {
                gap: 4px; } }
            .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-tabs .tab a .icon {
              height: 32px;
              width: 32px; }
              .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-tabs .tab a .icon.icon-funeral-homes {
                background: url(../../../../external.html?link=https://staging-legacy.s3.amazonaws.com/assets/images/tab-icon-funeral-home.svg) no-repeat center; }
              .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-tabs .tab a .icon.icon-cremation-services {
                background: url(../../../../external.html?link=https://staging-legacy.s3.amazonaws.com/assets/images/tab-icon-cremation-service.svg) no-repeat center; }
              .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-tabs .tab a .icon.icon-funeral-planning {
                background: url(../../../../external.html?link=https://staging-legacy.s3.amazonaws.com/assets/images/tab-icon-funeral-planning.svg) no-repeat center; }
            .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-tabs .tab a label {
              font-style: normal;
              font-weight: 600;
              color: var(--neutral-base, #404f57);
              font-size: 18px;
              cursor: pointer; }
              @media (max-width: 768px) {
                .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-tabs .tab a label {
                  font-size: 14px;
                  line-height: 1.2;
                  text-align: center; } }
          @media (min-width: 768px) {
            .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-tabs .tab:hover {
              border-color: var(--neutral-base, #404f57); } }
          .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-tabs .tab.active {
            border-color: #b49561; }
            .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-tabs .tab.active a .icon.icon-funeral-homes {
              background: url(../../../../external.html?link=https://staging-legacy.s3.amazonaws.com/assets/images/tab-icon-funeral-home-active.svg) no-repeat center; }
            .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-tabs .tab.active a .icon.icon-cremation-services {
              background: url(../../../../external.html?link=https://staging-legacy.s3.amazonaws.com/assets/images/tab-icon-cremation-service-active.svg) no-repeat center; }
            .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-tabs .tab.active a label {
              color: #b49561; }
            @media (min-width: 768px) {
              .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-tabs .tab.active:hover {
                border-color: #b49561; } }
      .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-fields {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        color: #333333;
        background-color: #f3f3f3;
        border-radius: 5px;
        text-align: left;
        line-height: 1.4;
        display: flex;
        height: 100%;
        direction: ltr;
        text-overflow: ellipsis;
        -webkit-box-shadow: #ccd0d2 0px 0px 0px 1px inset;
                box-shadow: #ccd0d2 0px 0px 0px 1px inset;
        font-size: 16px;
        font-weight: 400;
        position: relative;
        min-width: 475px; }
        @media (max-width: 768px) {
          .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-fields {
            min-width: 100%; } }
        .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-fields input {
          border: 1px solid transparent;
          background: none;
          min-height: inherit;
          font-size: 16px;
          padding: 0;
          padding: 16px 40px 16px 16px;
          height: 57px;
          border-radius: 5px; }
          .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-fields input:focus {
            border-color: #b49561; }
        .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-fields .input-group-action {
          margin: 0; }
          .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-fields .input-group-action .button {
            background: none;
            padding: 0;
            margin: 0;
            position: absolute;
            top: 50%;
            right: 4px;
            height: 48px;
            width: 48px;
            -webkit-transform: translateY(-24px);
                -ms-transform: translateY(-24px);
                    transform: translateY(-24px);
            z-index: 10;
            cursor: pointer; }
            .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-fields .input-group-action .button svg {
              -webkit-user-select: none;
                 -moz-user-select: none;
                  -ms-user-select: none;
                      user-select: none;
              width: 28px;
              height: 28px;
              display: inline-block;
              fill: #7f898e;
              -webkit-flex-shrink: 0;
                  -ms-flex-negative: 0;
                      flex-shrink: 0;
              cursor: pointer; }
        .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-fields .tt-menu {
          border-bottom-width: 1px;
          border-color: #ccd0d2;
          border-left-width: 1px;
          border-right-width: 1px;
          border-style: solid;
          border-top-width: 1px;
          background-color: white;
          border-radius: 5px;
          -webkit-box-shadow: rgba(0, 0, 0, 0) 0px 0.80319px 0.80319px 0px, rgba(0, 0, 0, 0.01) 0px 1.91242px 1.91242px 0px, rgba(0, 0, 0, 0.02) 0px 3.48447px 3.48447px 0px, rgba(0, 0, 0, 0.03) 0px 5.79283px 5.79283px 0px, rgba(0, 0, 0, 0.05) 0px 9.36024px 9.36024px 0px, rgba(0, 0, 0, 0.08) 0px 15.3127px 15.3127px 0px, rgba(0, 0, 0, 0.014) 0px 26.381px 26.381px 0px, rgba(0, 0, 0, 0.25) 0px 48px 48px 0px;
                  box-shadow: rgba(0, 0, 0, 0) 0px 0.80319px 0.80319px 0px, rgba(0, 0, 0, 0.01) 0px 1.91242px 1.91242px 0px, rgba(0, 0, 0, 0.02) 0px 3.48447px 3.48447px 0px, rgba(0, 0, 0, 0.03) 0px 5.79283px 5.79283px 0px, rgba(0, 0, 0, 0.05) 0px 9.36024px 9.36024px 0px, rgba(0, 0, 0, 0.08) 0px 15.3127px 15.3127px 0px, rgba(0, 0, 0, 0.014) 0px 26.381px 26.381px 0px, rgba(0, 0, 0, 0.25) 0px 48px 48px 0px;
          opacity: 1;
          left: 0;
          right: 0;
          width: auto;
          top: 62px !important;
          padding: 16px; }
          .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-fields .tt-menu .tt-suggestion {
            padding-top: 12px;
            padding-bottom: 12px; }
            .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-fields .tt-menu .tt-suggestion:hover {
              background: none; }
        @media (max-width: 768px) {
          .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-fields .input-group {
            min-width: 100%; } }
        .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-fields .input-group.has-itens + .input-group-action .button {
          background-color: #00141e;
          border-radius: 5px; }
          .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-fields .input-group.has-itens + .input-group-action .button svg {
            fill: white !important; }
      .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-locate {
        font-size: 16px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center; }
        .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-locate svg {
          height: 19px;
          width: 19px; }
        .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-locate span {
          margin-left: 6px; }
        .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-locate a, .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-locate button {
          background: none;
          border: none;
          font-size: 16px;
          font-weight: 600;
          margin-left: 6px;
          text-decoration: underline;
          text-transform: capitalize;
          cursor: pointer; }
          .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-locate a, .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-locate a:visited, .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-locate button, .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form .content-form-locate button:visited {
            color: var(--brand-base, #006699); }
  .hero-wrapper[has-video="true"] .hero-default[data-type="3"] .hero-slider .carousel-cell {
    min-height: 435px; }
    .hero-wrapper[has-video="true"] .hero-default[data-type="3"] .hero-slider .carousel-cell:before {
      background: rgba(0, 102, 153, 0.5);
      z-index: 1; }
    .hero-wrapper[has-video="true"] .hero-default[data-type="3"] .hero-slider .carousel-cell video,
    .hero-wrapper[has-video="true"] .hero-default[data-type="3"] .hero-slider .carousel-cell .video-gallery {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      padding: 0; }
      .hero-wrapper[has-video="true"] .hero-default[data-type="3"] .hero-slider .carousel-cell video .video-list,
      .hero-wrapper[has-video="true"] .hero-default[data-type="3"] .hero-slider .carousel-cell .video-gallery .video-list {
        margin: 0;
        height: 100%; }
        .hero-wrapper[has-video="true"] .hero-default[data-type="3"] .hero-slider .carousel-cell video .video-list .video-item,
        .hero-wrapper[has-video="true"] .hero-default[data-type="3"] .hero-slider .carousel-cell .video-gallery .video-list .video-item {
          margin: 0;
          height: 100%;
          width: 100%; }
          .hero-wrapper[has-video="true"] .hero-default[data-type="3"] .hero-slider .carousel-cell video .video-list .video-item .video-picture,
          .hero-wrapper[has-video="true"] .hero-default[data-type="3"] .hero-slider .carousel-cell .video-gallery .video-list .video-item .video-picture {
            height: 100%; }
            .hero-wrapper[has-video="true"] .hero-default[data-type="3"] .hero-slider .carousel-cell video .video-list .video-item .video-picture:before, .hero-wrapper[has-video="true"] .hero-default[data-type="3"] .hero-slider .carousel-cell video .video-list .video-item .video-picture:after,
            .hero-wrapper[has-video="true"] .hero-default[data-type="3"] .hero-slider .carousel-cell .video-gallery .video-list .video-item .video-picture:before,
            .hero-wrapper[has-video="true"] .hero-default[data-type="3"] .hero-slider .carousel-cell .video-gallery .video-list .video-item .video-picture:after {
              display: none; }
  .hero-wrapper[has-video="true"] + iframe + .cards-default,
  .hero-wrapper[has-video="true"] + .cards-default {
    padding-top: 172px; }
    @media (max-width: 1200px) {
      .hero-wrapper[has-video="true"] + iframe + .cards-default,
      .hero-wrapper[has-video="true"] + .cards-default {
        padding-top: 158px; } }
    @media (max-width: 992px) {
      .hero-wrapper[has-video="true"] + iframe + .cards-default,
      .hero-wrapper[has-video="true"] + .cards-default {
        padding-top: 172px; } }

.default-modal {
  z-index: 10;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 20, 30, 0.7);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: visibility 0s linear 0.25s, opacity 0.25s 0s, -webkit-transform 0.25s;
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, -webkit-transform 0.25s;
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s, -webkit-transform 0.25s; }
  .default-modal .default-modal-content {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background-color: white;
    padding: 16px;
    width: 432px;
    border-radius: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column nowrap;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    gap: 16px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.18) 0px 0.71189px 0.71189px -0.75px, rgba(0, 0, 0, 0.18) 0px 1.93769px 1.93769px -1.5px, rgba(0, 0, 0, 0.17) 0px 4.25286px 4.25286px -2.25px, rgba(0, 0, 0, 0.14) 0px 9.43828px 9.43828px -3px, rgba(0, 0, 0, 0.06) 0px 24px 24px -3.75px;
            box-shadow: rgba(0, 0, 0, 0.18) 0px 0.71189px 0.71189px -0.75px, rgba(0, 0, 0, 0.18) 0px 1.93769px 1.93769px -1.5px, rgba(0, 0, 0, 0.17) 0px 4.25286px 4.25286px -2.25px, rgba(0, 0, 0, 0.14) 0px 9.43828px 9.43828px -3px, rgba(0, 0, 0, 0.06) 0px 24px 24px -3.75px; }
    .default-modal .default-modal-content h3 {
      font-size: 20px;
      color: black;
      font-weight: 800;
      margin: 32px 0 0; }
    .default-modal .default-modal-content .input-group .input {
      padding: 16px;
      height: 54px;
      color: #333333;
      background-color: #f3f3f3;
      border-radius: 5px;
      text-align: left;
      line-height: 1.4;
      font-size: 16px;
      font-weight: 400; }
      .default-modal .default-modal-content .input-group .input:focus {
        border-color: #b49561; }
    .default-modal .default-modal-content button {
      width: auto;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin: 0 auto;
      background: #00141e;
      gap: 8px;
      padding-left: 32px;
      font-size: 18px;
      padding-right: 32px;
      min-width: 170px; }
      .default-modal .default-modal-content button:hover {
        background: #b49561; }
    .default-modal .default-modal-content .remove-location a {
      font-size: 16px;
      line-height: 1;
      color: var(--brand-base, #006699);
      font-weight: 400;
      text-decoration: none; }
      .default-modal .default-modal-content .remove-location a:hover {
        text-decoration: underline; }
  .default-modal .default-close-button {
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
    font-weight: 800;
    font-size: 24px;
    line-height: 1;
    height: 24px;
    width: 24px; }
  .default-modal.default-show-modal {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    -webkit-transition: visibility 0s linear 0s, opacity 0.25s 0s, -webkit-transform 0.25s;
    transition: visibility 0s linear 0s, opacity 0.25s 0s, -webkit-transform 0.25s;
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s, -webkit-transform 0.25s; }

.cards-default[is-carousel="true"] {
  background-color: #f0faff;
  padding-bottom: 64px; }
  .cards-default[is-carousel="true"] .cards-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    margin-bottom: 48px; }
    .cards-default[is-carousel="true"] .cards-header > .heading {
      font-weight: 800;
      font-size: 36px;
      color: #016599;
      text-transform: none;
      letter-spacing: 0;
      line-height: 1.2; }
      @media (max-width: 1200px) {
        .cards-default[is-carousel="true"] .cards-header > .heading {
          font-size: 32px; } }
      @media (max-width: 992px) {
        .cards-default[is-carousel="true"] .cards-header > .heading {
          text-align: center; } }
    .cards-default[is-carousel="true"] .cards-header:after {
      content: "";
      background-color: #b49561;
      height: 4px;
      overflow: hidden;
      position: absolute;
      width: 56px;
      margin: 0 auto;
      bottom: -20px;
      left: 50%;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%); }
  .cards-default[is-carousel="true"] .cards-list {
    margin: 0 auto;
    display: block !important;
    width: 100%;
    padding: 0 16px;
    overflow: hidden;
    max-width: 1200px; }
    .cards-default[is-carousel="true"] .cards-list .cards-flickity {
      padding: 0;
      min-height: 298px; }
      .cards-default[is-carousel="true"] .cards-list .cards-flickity .flickity-viewport {
        padding-bottom: 24px; }
      .cards-default[is-carousel="true"] .cards-list .cards-flickity .flickity-prev-next-button {
        background: none;
        height: 100%;
        width: 120px;
        border-radius: 0;
        right: 0;
        padding: 0;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        top: 49%;
        outline: none;
        /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,f0faff+100&0+0,1+100 */
        /* FF3.6-15 */
        /* Chrome10-25,Safari5.1-6 */
        background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(#f0faff));
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #f0faff 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#f0faff',GradientType=1 );
        /* IE6-9 */ }
        @media (max-width: 580px) {
          .cards-default[is-carousel="true"] .cards-list .cards-flickity .flickity-prev-next-button {
            width: 40px; } }
        .cards-default[is-carousel="true"] .cards-list .cards-flickity .flickity-prev-next-button .flickity-button-icon {
          background: url(../../../../external.html?link=https://d1ore3n0z2tnb3.cloudfront.net/assets/images/cards-flickity-arrow-right.svg) no-repeat center #07334c;
          height: 40px;
          width: 40px;
          border-radius: 50%;
          outline: none;
          left: inherit;
          right: 0;
          top: 40%; }
          .cards-default[is-carousel="true"] .cards-list .cards-flickity .flickity-prev-next-button .flickity-button-icon path {
            display: none; }
        .cards-default[is-carousel="true"] .cards-list .cards-flickity .flickity-prev-next-button.previous {
          right: inherit;
          left: 0;
          /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f0faff+0,ffffff+100&1+0,0+100 */
          /* FF3.6-15 */
          /* Chrome10-25,Safari5.1-6 */
          background: -webkit-gradient(linear, left top, right top, from(#f0faff), to(rgba(255, 255, 255, 0)));
          background: linear-gradient(to right, #f0faff 0%, rgba(255, 255, 255, 0) 100%);
          /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
          filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0faff', endColorstr='#00ffffff',GradientType=1 );
          /* IE6-9 */ }
          .cards-default[is-carousel="true"] .cards-list .cards-flickity .flickity-prev-next-button.previous .flickity-button-icon {
            background: url(../../../../external.html?link=https://d1ore3n0z2tnb3.cloudfront.net/assets/images/cards-flickity-arrow-left.svg) no-repeat center #07334c;
            left: 0;
            right: inherit; }
      .cards-default[is-carousel="true"] .cards-list .cards-flickity .flickity-button:disabled {
        opacity: 0; }
      .cards-default[is-carousel="true"] .cards-list .cards-flickity .flickity-page-dots {
        bottom: 0; }
        .cards-default[is-carousel="true"] .cards-list .cards-flickity .flickity-page-dots .dot {
          width: 12px;
          height: 12px;
          margin: 0 4px;
          background: #bb973e;
          opacity: 0.5; }
          .cards-default[is-carousel="true"] .cards-list .cards-flickity .flickity-page-dots .dot.is-selected {
            opacity: 1; }
    .cards-default[is-carousel="true"] .cards-list .card {
      position: relative;
      background-color: white;
      -webkit-filter: none;
              filter: none;
      will-change: transform;
      padding: 0;
      border-radius: 10px;
      -webkit-box-shadow: rgba(0, 0, 0, 0.18) 0px 0.71189px 0.71189px -0.75px, rgba(0, 0, 0, 0.18) 0px 1.93769px 1.93769px -1.5px, rgba(0, 0, 0, 0.17) 0px 4.25286px 4.25286px -2.25px, rgba(0, 0, 0, 0.14) 0px 9.43828px 9.43828px -3px, rgba(0, 0, 0, 0.06) 0px 24px 24px -3.75px;
              box-shadow: rgba(0, 0, 0, 0.18) 0px 0.71189px 0.71189px -0.75px, rgba(0, 0, 0, 0.18) 0px 1.93769px 1.93769px -1.5px, rgba(0, 0, 0, 0.17) 0px 4.25286px 4.25286px -2.25px, rgba(0, 0, 0, 0.14) 0px 9.43828px 9.43828px -3px, rgba(0, 0, 0, 0.06) 0px 24px 24px -3.75px;
      opacity: 1;
      -webkit-transition: border-width 0.6s linear;
      transition: border-width 0.6s linear;
      width: 244px;
      margin-left: 8px;
      margin-right: 8px;
      margin-bottom: 48px; }
      .cards-default[is-carousel="true"] .cards-list .card .picture {
        max-height: 177px;
        will-change: transform;
        border-radius: 10px 10px 0 0; }
        .cards-default[is-carousel="true"] .cards-list .card .picture .picture-link img {
          height: 177px;
          bottom: 0;
          position: relative;
          -webkit-transform: none;
              -ms-transform: none;
                  transform: none;
          border-radius: 10px 10px 0 0;
          -webkit-transition: .3s ease-in-out;
          transition: .3s ease-in-out; }
        .cards-default[is-carousel="true"] .cards-list .card .picture .badge {
          display: none; }
      .cards-default[is-carousel="true"] .cards-list .card .content {
        margin: 0;
        padding: 8px 16px 16px;
        min-height: 86px; }
        .cards-default[is-carousel="true"] .cards-list .card .content .title {
          font-family: var(--paragraph-font, "Open Sans");
          color: black;
          font-weight: 700;
          font-size: 16px; }
      .cards-default[is-carousel="true"] .cards-list .card .fhd-link:after {
        content: "";
        outline-offset: -2px;
        -webkit-transition: outline-width 200ms ease, outline-offset 200ms ease;
        transition: outline-width 200ms ease, outline-offset 200ms ease;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        border-radius: 10px; }
      .cards-default[is-carousel="true"] .cards-list .card:hover {
        -webkit-box-shadow: rgba(0, 0, 0, 0.18) 0px 0.60323px 0 0.60323px -1.25px, rgba(0, 0, 0, 0.16) 0px 2.29021px 2.29021px -2.5px, rgba(0, 0, 0, 0.06) 0px 10px 10px -3.75px;
                box-shadow: rgba(0, 0, 0, 0.18) 0px 0.60323px 0 0.60323px -1.25px, rgba(0, 0, 0, 0.16) 0px 2.29021px 2.29021px -2.5px, rgba(0, 0, 0, 0.06) 0px 10px 10px -3.75px; }
        .cards-default[is-carousel="true"] .cards-list .card:hover .fhd-link:after {
          outline: 3px solid #b49561;
          outline-width: 3px;
          outline-offset: -3px; }
        .cards-default[is-carousel="true"] .cards-list .card:hover .picture .picture-link img {
          height: 197px;
          bottom: 20px;
          -webkit-transform: none;
              -ms-transform: none;
                  transform: none; }
        .cards-default[is-carousel="true"] .cards-list .card:hover .content .title {
          color: #b49561; }
      .cards-default[is-carousel="true"] .cards-list .card.more {
        height: 263px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center; }
        .cards-default[is-carousel="true"] .cards-list .card.more .content {
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
          -webkit-justify-content: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-direction: column;
              -ms-flex-direction: column;
                  flex-direction: column;
          height: 100%; }
        .cards-default[is-carousel="true"] .cards-list .card.more svg {
          fill: #00141e;
          height: 60px;
          width: 60px;
          margin-bottom: 24px;
          -webkit-transition: .3s ease-in-out;
          transition: .3s ease-in-out;
          cursor: pointer !important; }
        .cards-default[is-carousel="true"] .cards-list .card.more:hover svg {
          fill: #b49561;
          height: 68px;
          width: 68px;
          margin-bottom: 16px; }
      .cards-default[is-carousel="true"] .cards-list .card[is-trustedpartner="true"] .fhd-link {
        display: block;
        height: 100%;
        width: 100%;
        position: relative;
        z-index: 10000;
        text-decoration: none; }
      .cards-default[is-carousel="true"] .cards-list .card[is-trustedpartner="true"] .picture:before {
        content: "";
        background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(black));
        background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, black 100%);
        border-radius: 9px 9px 0px 0px;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        height: 56px; }
      .cards-default[is-carousel="true"] .cards-list .card[is-trustedpartner="true"] .picture .badge {
        background: none;
        display: block;
        padding: 0;
        z-index: 100;
        color: white;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        position: absolute;
        top: -2px;
        left: 8px; }
        .cards-default[is-carousel="true"] .cards-list .card[is-trustedpartner="true"] .picture .badge img {
          height: 36px;
          width: 36px;
          -o-object-fit: fill;
             object-fit: fill;
          -webkit-transform: none;
              -ms-transform: none;
                  transform: none; }
        .cards-default[is-carousel="true"] .cards-list .card[is-trustedpartner="true"] .picture .badge span {
          font-size: 10px;
          text-transform: uppercase;
          font-weight: 800;
          margin-left: 6px; }

.cards-default[all-one-place="true"] {
  background-color: #006699;
  padding-bottom: 64px; }
  .cards-default[all-one-place="true"] .cards-header {
    margin-bottom: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px; }
    .cards-default[all-one-place="true"] .cards-header > .heading {
      font-size: 32px;
      color: white;
      text-transform: none;
      letter-spacing: 0; }
      @media (max-width: 992px) {
        .cards-default[all-one-place="true"] .cards-header > .heading {
          text-align: center; } }
    .cards-default[all-one-place="true"] .cards-header .paragraph {
      margin: 0;
      color: white;
      line-height: 1.4em;
      max-width: 530px;
      font-size: 18px;
      text-align: center; }
  @media (max-width: 1200px) {
    .cards-default[all-one-place="true"] .cards-list {
      max-width: 640px;
      margin: 0 auto;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 48px; } }
  @media (max-width: 992px) {
    .cards-default[all-one-place="true"] .cards-list {
      max-width: 480px; } }
  @media (max-width: 1200px) {
    .cards-default[all-one-place="true"] .cards-list .card {
      width: 100%;
      margin-left: 0;
      margin-right: 0; } }
  .cards-default[all-one-place="true"] .cards-list .card .picture img {
    width: 100%;
    border-radius: 20px;
    display: block;
    height: 231px;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none; }
  .cards-default[all-one-place="true"] .cards-list .card .content {
    text-align: center; }
    .cards-default[all-one-place="true"] .cards-list .card .content .title {
      font-family: var(--font-family-base, "Open Sans");
      color: white;
      font-size: 20px;
      font-weight: 700; }
  .cards-default[all-one-place="true"] .cards-list .card:hover .picture img {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none; }
  .cards-default[all-one-place="true"] .text-center a {
    color: white;
    font-size: 24px;
    text-decoration: underline;
    font-weight: 700; }

.cards-default[is-carousel="true"] .cards-list .card .content .title {
  position: relative;
  z-index: 1000; }

.categories-base[data-bg="brand"] {
  background-color: #b49561;
  padding: 32px 0; }
  .categories-base[data-bg="brand"] .container {
    max-width: inherit;
    padding-left: 62px;
    padding-right: 62px; }
  .categories-base[data-bg="brand"] .categories-header {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0; }
    .categories-base[data-bg="brand"] .categories-header .heading.h-3 {
      color: white;
      font-size: 20px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0;
      cursor: pointer;
      gap: 8px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
      .categories-base[data-bg="brand"] .categories-header .heading.h-3 svg {
        height: 40px;
        width: 40px;
        cursor: pointer;
        -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
                transform: rotate(180deg); }
    .categories-base[data-bg="brand"] .categories-header.browse-collapsible.active .heading.h-3 svg {
      -webkit-transform: rotate(0deg);
          -ms-transform: rotate(0deg);
              transform: rotate(0deg); }
  .categories-base[data-bg="brand"] .heading.h-4 {
    color: #00141e;
    opacity: .5;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
    position: relative;
    text-align: center;
    margin: 24px 0;
    text-transform: uppercase;
    line-height: 1.2em;
    font-family: var(--font-family-base, "Open Sans"); }
    .categories-base[data-bg="brand"] .heading.h-4 span {
      background-color: #b49561;
      padding: 0 8px;
      position: relative; }
    .categories-base[data-bg="brand"] .heading.h-4:before {
      content: "";
      background: rgba(0, 20, 30, 0.25);
      position: absolute;
      top: 50%;
      right: 0;
      width: 100%;
      height: 1px; }
    @media (max-width: 768px) {
      .categories-base[data-bg="brand"] .heading.h-4 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .categories-base[data-bg="brand"] .categories-content {
    padding: 16px; }
    .categories-base[data-bg="brand"] .categories-content > .categories-list {
      gap: 16px;
      -webkit-column-count: inherit;
              column-count: inherit;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -ms-flex-align: start;
              align-items: flex-start; }
      .categories-base[data-bg="brand"] .categories-content > .categories-list .categories-item {
        margin: 0;
        width: -webkit-calc((100%/4) - 32px);
        width: calc((100%/4) - 32px); }
        @media (max-width: 992px) {
          .categories-base[data-bg="brand"] .categories-content > .categories-list .categories-item {
            width: -webkit-calc((100%/2) - 32px);
            width: calc((100%/2) - 32px); } }
        @media (max-width: 768px) {
          .categories-base[data-bg="brand"] .categories-content > .categories-list .categories-item {
            width: 100%; } }
    .categories-base[data-bg="brand"] .categories-content:last-child {
      margin-bottom: 16px; }

.header[data-type="5"] > .header-content {
  -webkit-box-shadow: rgba(0, 0, 0, 0.018) 0px 0.60323px 0.60323px -1.25px, rgba(0, 0, 0, 0.016) 0px 2.29021px 2.29021px -2.5px, rgba(0, 0, 0, 0.06) 0px 10px 10px -3.75px;
          box-shadow: rgba(0, 0, 0, 0.018) 0px 0.60323px 0.60323px -1.25px, rgba(0, 0, 0, 0.016) 0px 2.29021px 2.29021px -2.5px, rgba(0, 0, 0, 0.06) 0px 10px 10px -3.75px; }
  .header[data-type="5"] > .header-content .container {
    padding: 0 24px 0 32px;
    max-width: inherit; }
    @media (max-width: 768px) {
      .header[data-type="5"] > .header-content .container {
        padding: 0 24px; } }
  @media (max-width: 1200px) {
    .header[data-type="5"] > .header-content .wrapper {
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      gap: 24px; } }
  .header[data-type="5"] > .header-content .header-logo {
    height: 77px; }
  .header[data-type="5"] > .header-content .header-navbar {
    gap: 36px;
    min-width: inherit; }
    @media (max-width: 1200px) {
      .header[data-type="5"] > .header-content .header-navbar {
        display: none; } }
    .header[data-type="5"] > .header-content .header-navbar .navbar-link {
      color: #404f57;
      padding: 0;
      margin: 0;
      letter-spacing: 0; }
      .header[data-type="5"] > .header-content .header-navbar .navbar-link:before {
        display: none; }
  @media (max-width: 992px) {
    .header[data-type="5"] > .header-content .content-left {
      margin: 0 auto;
      -webkit-transform: translateX(-36px);
          -ms-transform: translateX(-36px);
              transform: translateX(-36px); } }
  @media (max-width: 768px) {
    .header[data-type="5"] > .header-content .content-left {
      -webkit-transform: translateX(-24px);
          -ms-transform: translateX(-24px);
              transform: translateX(-24px); } }
  @media (max-width: 1200px) {
    .header[data-type="5"] > .header-content .header-obituary {
      margin-left: auto; } }
  @media (max-width: 992px) {
    .header[data-type="5"] > .header-content .header-obituary {
      display: none; } }
  .header[data-type="5"] > .header-content .header-obituary .button {
    background: #00141e;
    padding: 13px 20px;
    min-width: 212px;
    text-align: center;
    font-weight: 700;
    line-height: 1.2em;
    border-radius: 33px; }
    .header[data-type="5"] > .header-content .header-obituary .button:hover {
      background: #b49561; }
  .header[data-type="5"] > .header-content .content-mobile {
    display: none; }
    @media (max-width: 1200px) {
      .header[data-type="5"] > .header-content .content-mobile {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex; } }
    .header[data-type="5"] > .header-content .content-mobile .toggler-button {
      width: 32px;
      height: 32px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; }
  .header[data-type="5"] > .header-content [class*="content"],
  .header[data-type="5"] > .header-content [class*="header"] {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1; }

.footer[data-type="5"] .footer-content {
  background-color: #002233;
  padding-bottom: 64px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column wrap;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  gap: 32px; }
  .footer[data-type="5"] .footer-content .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column nowrap;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap; }
    .footer[data-type="5"] .footer-content .wrapper [class*="footer"] {
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
          -ms-flex-order: 1;
              order: 1;
      width: 100%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; }
      .footer[data-type="5"] .footer-content .wrapper [class*="footer"] .footer-item-content {
        margin: 0;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap; }
        .footer[data-type="5"] .footer-content .wrapper [class*="footer"] .footer-item-content .link-footer {
          font-family: var(--heading-font, "PT Serif");
          color: white;
          font-size: 16px;
          font-weight: 400;
          margin: 0;
          padding: 0;
          opacity: 1;
          width: auto; }
          .footer[data-type="5"] .footer-content .wrapper [class*="footer"] .footer-item-content .link-footer:before {
            display: none; }
      .footer[data-type="5"] .footer-content .wrapper [class*="footer"] + [class*="footer"] {
        margin-top: 32px;
        width: 100%;
        max-width: inherit; }
    .footer[data-type="5"] .footer-content .wrapper .footer-social {
      gap: 24px;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .footer[data-type="5"] .footer-content .wrapper .footer-social .social-link {
        margin: 0;
        cursor: pointer;
        width: 32px;
        height: 32px; }
    .footer[data-type="5"] .footer-content .wrapper .footer-copyright {
      color: #bbbbbb;
      font-size: 16px;
      line-height: 1.2em;
      text-align: center; }
    .footer[data-type="5"] .footer-content .wrapper .footer-logo img {
      max-height: inherit;
      -webkit-filter: grayscale(1) invert(1) brightness(2);
              filter: grayscale(1) invert(1) brightness(2);
      margin: 0 auto;
      max-width: 213px; }
    .footer[data-type="5"] .footer-content .wrapper .footer-search {
      border: none;
      padding: 0; }
      @media (max-width: 768px) {
        .footer[data-type="5"] .footer-content .wrapper .footer-search {
          width: 100%; } }
      .footer[data-type="5"] .footer-content .wrapper .footer-search .content-form .input-group {
        padding: 0;
        border-radius: 5px;
        background-color: #f3f3f3; }
        .footer[data-type="5"] .footer-content .wrapper .footer-search .content-form .input-group input {
          background-color: #f3f3f3;
          border-radius: 5px;
          text-align: left;
          line-height: 1.4;
          color: #333333;
          padding: 16px 40px 16px 16px;
          width: 475px;
          max-width: 100%; }
          @media (max-width: 768px) {
            .footer[data-type="5"] .footer-content .wrapper .footer-search .content-form .input-group input {
              width: 100%; } }
        .footer[data-type="5"] .footer-content .wrapper .footer-search .content-form .input-group button {
          -webkit-box-flex: 0;
          -webkit-flex: 0 0 auto;
              -ms-flex: 0 0 auto;
                  flex: 0 0 auto;
          height: 28px;
          overflow: visible;
          position: absolute;
          right: 16px;
          top: -webkit-calc(50.9091% - 14px);
          top: calc(50.9091% - 14px);
          width: 28px;
          cursor: pointer;
          background: none; }
    .footer[data-type="5"] .footer-content .wrapper [data-content="site-content"] .heading.footer-item-title {
      display: none; }
    .footer[data-type="5"] .footer-content .wrapper [data-content="site-content"] .footer-item-content {
      margin: 0;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      gap: 24px;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
      @media (max-width: 768px) {
        .footer[data-type="5"] .footer-content .wrapper [data-content="site-content"] .footer-item-content {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-flow: column;
              -ms-flex-flow: column;
                  flex-flow: column; } }
    .footer[data-type="5"] .footer-content .wrapper + .wrapper {
      border-top: 1px solid rgba(255, 255, 255, 0.25);
      margin-top: 32px;
      padding-top: 32px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; }

.custom-content[is-partner-program="true"] {
  background-color: #f0faff;
  padding-top: 0;
  padding-bottom: 0; }
  .custom-content[is-partner-program="true"] .container .custom-card {
    padding: 64px;
    gap: 24px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row; }
    @media (max-width: 768px) {
      .custom-content[is-partner-program="true"] .container .custom-card {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        padding-left: 0;
        padding-right: 0; } }
    .custom-content[is-partner-program="true"] .container .custom-card .card-image,
    .custom-content[is-partner-program="true"] .container .custom-card .card-content {
      -webkit-box-flex: 1;
      -webkit-flex: 1 0 0px;
          -ms-flex: 1 0 0px;
              flex: 1 0 0px; }
    .custom-content[is-partner-program="true"] .container .custom-card .card-content {
      gap: 24px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      max-width: 1200px; }
      @media (max-width: 768px) {
        .custom-content[is-partner-program="true"] .container .custom-card .card-content {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-direction: column;
              -ms-flex-direction: column;
                  flex-direction: column;
          padding-left: 0;
          padding-right: 0; } }
      .custom-content[is-partner-program="true"] .container .custom-card .card-content .heading {
        font-weight: 800;
        font-size: 36px;
        color: #016599;
        text-transform: none;
        letter-spacing: 0;
        line-height: 1.2em;
        margin: 0;
        position: relative;
        font-family: var(--font-family-base, "Open Sans"); }
        @media (max-width: 1200px) {
          .custom-content[is-partner-program="true"] .container .custom-card .card-content .heading {
            font-size: 32px; } }
        .custom-content[is-partner-program="true"] .container .custom-card .card-content .heading:after {
          content: "";
          background-color: #b49561;
          height: 4px;
          overflow: hidden;
          position: absolute;
          width: 56px;
          margin: 0 auto;
          bottom: -20px;
          left: 0; }
        .custom-content[is-partner-program="true"] .container .custom-card .card-content .heading + .paragraph {
          margin-top: 12px; }
    .custom-content[is-partner-program="true"] .container .custom-card.w-75 {
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .custom-content[is-partner-program="true"] .container .custom-card.w-75 .card-content {
        padding: 0;
        gap: 24px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto; }
        @media (max-width: 992px) {
          .custom-content[is-partner-program="true"] .container .custom-card.w-75 .card-content {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
                -ms-flex-direction: column;
                    flex-direction: column; } }
        .custom-content[is-partner-program="true"] .container .custom-card.w-75 .card-content .paragraph {
          max-width: 443px;
          margin: 0; }
        .custom-content[is-partner-program="true"] .container .custom-card.w-75 .card-content .card-buttons {
          gap: 16px;
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -webkit-flex-direction: row;
              -ms-flex-direction: row;
                  flex-direction: row;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center; }
          @media (max-width: 768px) {
            .custom-content[is-partner-program="true"] .container .custom-card.w-75 .card-content .card-buttons {
              -webkit-box-orient: vertical;
              -webkit-box-direction: normal;
              -webkit-flex-direction: column;
                  -ms-flex-direction: column;
                      flex-direction: column;
              width: 100%; } }
          .custom-content[is-partner-program="true"] .container .custom-card.w-75 .card-content .card-buttons a.button {
            border: 2px solid transparent;
            border-radius: 33px; }
            @media (max-width: 768px) {
              .custom-content[is-partner-program="true"] .container .custom-card.w-75 .card-content .card-buttons a.button {
                width: 100%; } }
            .custom-content[is-partner-program="true"] .container .custom-card.w-75 .card-content .card-buttons a.button.is-brand-dark {
              color: white;
              border-color: #00141e; }
              .custom-content[is-partner-program="true"] .container .custom-card.w-75 .card-content .card-buttons a.button.is-brand-dark:hover {
                background: #b49561;
                border-color: #b49561; }
            .custom-content[is-partner-program="true"] .container .custom-card.w-75 .card-content .card-buttons a.button.is-outline {
              color: #00141e;
              border-color: #00141e; }
              .custom-content[is-partner-program="true"] .container .custom-card.w-75 .card-content .card-buttons a.button.is-outline:hover {
                background: none;
                color: #b49561;
                border-color: #b49561; }
  .custom-content[is-partner-program="true"] .container .img-hero {
    height: auto; }
    @media (min-width: 1200px) {
      .custom-content[is-partner-program="true"] .container .img-hero {
        height: 468px; } }
  .custom-content[is-partner-program="true"] .container .img-logo {
    width: 212px; }
  .custom-content[is-partner-program="true"] hr {
    border: none;
    border-top: 1px solid rgba(0, 102, 153, 0.5);
    width: 92%;
    margin: 0 auto; }

.is-brand-dark {
  padding-right: 30px;
  padding-left: 30px;
  color: white;
  background: #00141e;
  text-align: center;
  font-weight: 700;
  line-height: 1.2em; }
  .is-brand-dark:hover {
    background: #b49561; }
  .is-brand-dark.is-outline {
    color: #00141e;
    border: 2px solid #00141e;
    opacity: 1; }
    .is-brand-dark.is-outline:hover {
      color: #b49561;
      border-color: #b49561; }

.default-modal#defaultModalZipCode .default-modal-content {
  max-width: 95%; }

.hero-wrapper[has-video="true"] .hero-default[data-type="4"] .hero-header .heading {
  display: block; }

@media (max-width: 580px) {
  .hero-wrapper[has-video="true"] .hero-default[data-type="4"] .content-form:before {
    top: 95px; } }

@media (max-width: 580px) {
  .cards-default[is-carousel="true"] .cards-list {
    padding: 0; } }

.cards-default[is-carousel="true"] .cards-list .card {
  background: none;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: none;
  transition: none; }
  .cards-default[is-carousel="true"] .cards-list .card:first-child {
    padding-left: 12px;
    width: 256px; }
  .cards-default[is-carousel="true"] .cards-list .card:last-child {
    padding-right: 12px;
    width: 256px; }
  .cards-default[is-carousel="true"] .cards-list .card .fhd-link {
    position: relative;
    background-color: white;
    -webkit-filter: none;
    filter: none;
    will-change: transform;
    padding: 0;
    border-radius: 10px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.18) 0px 0.71189px 0.71189px -0.75px, rgba(0, 0, 0, 0.18) 0px 1.93769px 1.93769px -1.5px, rgba(0, 0, 0, 0.17) 0px 4.25286px 4.25286px -2.25px, rgba(0, 0, 0, 0.14) 0px 9.43828px 9.43828px -3px, rgba(0, 0, 0, 0.06) 0px 24px 24px -3.75px;
            box-shadow: rgba(0, 0, 0, 0.18) 0px 0.71189px 0.71189px -0.75px, rgba(0, 0, 0, 0.18) 0px 1.93769px 1.93769px -1.5px, rgba(0, 0, 0, 0.17) 0px 4.25286px 4.25286px -2.25px, rgba(0, 0, 0, 0.14) 0px 9.43828px 9.43828px -3px, rgba(0, 0, 0, 0.06) 0px 24px 24px -3.75px;
    opacity: 1;
    -webkit-transition: border-width 0.6s linear;
    transition: border-width 0.6s linear; }

.cards-default[is-carousel="true"] .cards-flickity .flickity-prev-next-button.next {
  right: -16px; }
  @media (max-width: 580px) {
    .cards-default[is-carousel="true"] .cards-flickity .flickity-prev-next-button.next {
      right: 0; } }
  @media (max-width: 580px) {
    .cards-default[is-carousel="true"] .cards-flickity .flickity-prev-next-button.next svg {
      right: 1px; } }

.cards-default[is-carousel="true"] .cards-flickity .flickity-prev-next-button.previous {
  left: -16px; }
  @media (max-width: 580px) {
    .cards-default[is-carousel="true"] .cards-flickity .flickity-prev-next-button.previous {
      left: 0; } }
  @media (max-width: 580px) {
    .cards-default[is-carousel="true"] .cards-flickity .flickity-prev-next-button.previous svg {
      left: 1px; } }

.fh-ads {
  text-align: center;
  padding: 24px 0; }
  .fh-ads img {
    display: block;
    margin: 0 auto;
    max-width: 100%; }
  .fh-ads + .fh-ads {
    padding-top: 0; }

.details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-about + .fh-ads {
  padding-top: 0; }

.fh-ads.display-overlay-1 {
  padding: 0; }

.button.is-brand {
  background: var(--brand-base, #006699);
  color: var(--color-white-base, white); }
  .button.is-brand:focus, .button.is-brand:visited, .button.is-brand:active {
    background: var(--brand-base, #006699); }
  .button.is-brand:hover {
    background: var(--brand-base, #006699);
    opacity: .9; }
  .button.is-brand.is-loading {
    background: var(--brand-base, #006699); }
  .button.is-brand.disabled {
    opacity: .50;
    background: var(--brand-base, #006699);
    cursor: not-allowed;
    pointer-events: none; }

.button.is-orange {
  background: #cb4e00;
  color: var(--color-white-base, white);
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1); }
  .button.is-orange:focus, .button.is-orange:visited, .button.is-orange:active {
    background: #cb4e00; }
  .button.is-orange:hover {
    background: #cb4e00;
    opacity: .9;
    -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.2); }
  .button.is-orange.is-loading {
    background: #cb4e00;
    opacity: .5; }
  .button.is-orange.disabled {
    opacity: .50;
    background: #cb4e00;
    cursor: not-allowed;
    pointer-events: none; }

.button.is-inverted {
  background: white;
  color: #404f57;
  font-size: 18px;
  font-weight: bold;
  border: 1px solid #cbd0d2;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(48, 49, 51, 0.15);
          box-shadow: 0px 1px 3px 0px rgba(48, 49, 51, 0.15); }
  .button.is-inverted:focus, .button.is-inverted:visited, .button.is-inverted:active {
    background: white; }
  .button.is-inverted:hover {
    background: white;
    color: #00141E;
    -webkit-box-shadow: 0 4px 8px 0 rgba(48, 49, 51, 0.15);
            box-shadow: 0 4px 8px 0 rgba(48, 49, 51, 0.15); }
  .button.is-inverted.disabled {
    opacity: .50;
    background: white;
    cursor: not-allowed;
    pointer-events: none; }

.button.is-gold {
  background: #b49561;
  color: var(--color-white-base, white);
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1); }
  .button.is-gold:focus, .button.is-gold:visited, .button.is-gold:active {
    background: #b49561; }
  .button.is-gold:hover {
    background: #b49561;
    opacity: .9;
    -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.2); }
  .button.is-gold.is-loading {
    background: #b49561;
    opacity: .5; }
  .button.is-gold.disabled {
    opacity: .50;
    background: #b49561;
    cursor: not-allowed;
    pointer-events: none; }

.button.button-long {
  padding-left: 60px;
  padding-right: 60px; }

@media (max-width: 580px) {
  .m-none {
    display: none !important; } }

.cookie-settings button#ot-sdk-btn {
  text-align: right;
  text-decoration: none;
  cursor: pointer;
  font-family: var(--font-family-base, "Open Sans");
  color: #999;
  font-size: 11px;
  padding: 5px;
  border: none;
  background: #333;
  width: auto;
  z-index: 999;
  position: fixed;
  bottom: 0;
  right: 0;
  height: 25px;
  border-radius: 3px;
  -webkit-transition: none;
  transition: none; }
  .cookie-settings button#ot-sdk-btn:hover {
    background: #333; }

.carousel-detail .embed-responsive,
.carousel-detail .embed-responsive .embed-responsive-item {
  height: 288px;
  max-height: 288px;
  background: black; }

.carousel-detail .embed-responsive.embed-responsive-16by9:before {
  padding-top: 47.25%; }

.details-default > .details-header .details-header-content .details-general .details-actions .button.is-white {
  color: var(--neutral-base, #404f57);
  background: white; }

.details-default > .details-header .details-header-content .details-general .details-actions .button.is-legacy-default {
  color: white;
  background: #C0A57E; }

@media (min-width: 992px) {
  .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-obituaries .tab-item-heading .link {
    margin-left: auto; }
  .details-default > .detail-body .detail-body-content .tab-content .tab-item.tab-item-obituaries .tab-item-heading .link + .link {
    margin-left: 8px;
    border-left: 1px solid var(--neutral-transp-25, rgba(64, 79, 87, 0.25));
    padding-left: 8px; } }

.card-flush.card-submit-obtuary {
  background: rgba(0, 20, 30, 0.05);
  border: none; }

.card-flush.card-submit-obtuary .card-header {
  padding: 0; }

.card-flush.card-submit-obtuary .card-content {
  text-align: center; }

.card-flush.card-submit-obtuary .btn-white {
  background: white;
  margin: 16px 0 0;
  color: var(--color-base, #404f57);
  width: 100%; }

.details-default > .details-header .details-contact .contact-item.item-obtuaries .icon .fa {
  font-size: 16px;
  color: #b49561; }

.details-default.details-listing .detail-body-content .price-funeral {
  min-height: 300px;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(0, 20, 30, 0.15);
  border-radius: 8px;
  text-align: center; }
  .details-default.details-listing .detail-body-content .price-funeral .white-box {
    padding: 16px; }
    .details-default.details-listing .detail-body-content .price-funeral .white-box .picture .top-image {
      width: 100%;
      height: auto;
      margin: 0 auto; }
    .details-default.details-listing .detail-body-content .price-funeral .white-box .content .h-2 {
      font-size: 25px;
      color: #04141D;
      font-weight: 800;
      margin: 16px 0; }
    .details-default.details-listing .detail-body-content .price-funeral .white-box .content .paragraph {
      font-size: 16px;
      color: #04141D;
      font-weight: 600; }
    .details-default.details-listing .detail-body-content .price-funeral .white-box .footer .btn {
      display: block;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 8px;
      font-size: 16px;
      background: #beb08e;
      background: -webkit-gradient(linear, left top, left bottom, color-stop(33%, #beb08e), to(#8d7c58));
      background: linear-gradient(180deg, #beb08e 33%, #8d7c58 100%);
      min-height: 50px;
      text-decoration: none;
      text-align: center;
      line-height: 50px;
      border-radius: 0px 0px 8px 8px;
      margin-top: 22px;
      -webkit-transition: 0.2s all ease;
      transition: 0.2s all ease; }
      .details-default.details-listing .detail-body-content .price-funeral .white-box .footer .btn:hover {
        -webkit-transform: scale(1.03);
            -ms-transform: scale(1.03);
                transform: scale(1.03);
        -webkit-box-shadow: 0px 10px 20px #00000020;
                box-shadow: 0px 10px 20px #00000020; }

.details-default.details-listing .detail-body-content .price-funeral.mobile {
  margin-bottom: 48px; }
  @media (min-width: 992px) {
    .details-default.details-listing .detail-body-content .price-funeral.mobile {
      display: none; } }

@media (max-width: 992px) {
  .details-default.details-listing .detail-body-content .price-funeral:not(.mobile) {
    display: none; } }

.details-default.details-listing .detail-body-content .price-funeral .content .heading, .details-default.details-listing .detail-body-content .price-funeral .content .paragraph, .details-default.details-listing .detail-body-content .price-funeral .content p {
  word-break: break-word; }

.header .header-navbar .navbar-link.navbar-dropdown .more-link {
  color: #999999;
  text-decoration: none;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  display: block;
  line-height: 20px;
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
  border-bottom: 1px solid transparent;
  width: 100%;
  padding-bottom: 4px;
  margin-bottom: 12px; }
  .header .header-navbar .navbar-link.navbar-dropdown .more-link:hover {
    color: var(--highlight-base, #006699); }

.header .header-navbar .navbar-link.navbar-dropdown .more-content .billing-options {
  color: #404f57;
  font-weight: 600;
  border: none;
  font-size: 18px;
  width: 100%;
  padding-bottom: 16px; }

.results-body .container-fluid {
  padding: 0 70px; }
  @media (max-width: 992px) {
    .results-body .container-fluid {
      padding-left: 15px;
      padding-right: 15px; } }

.results-body .breadcrumb-content .container {
  margin-left: 70px;
  margin: 0;
  padding: 0 70px; }
  @media (max-width: 992px) {
    .results-body .breadcrumb-content .container {
      padding-left: 15px;
      padding-right: 15px; } }

@media (max-width: 1024px) {
  .results-body .results-sidebar {
    margin-bottom: 16px; } }

@media (max-width: 992px) {
  .results-body .results-sidebar .sidebar-wrapper {
    display: initial; } }

.results-body .results-sidebar .sidebar-item {
  background: #f6f3ee33;
  border: 1px solid #00669933;
  padding: 30px 16px; }
  .results-body .results-sidebar .sidebar-item .item-header {
    padding: 0; }
    .results-body .results-sidebar .sidebar-item .item-header .item-title {
      color: #B49561;
      position: relative;
      font-size: 34px; }
      @media (max-width: 992px) {
        .results-body .results-sidebar .sidebar-item .item-header .item-title {
          font-size: 22px; } }
      .results-body .results-sidebar .sidebar-item .item-header .item-title:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        display: block;
        width: 50px;
        height: 3px;
        background-color: var(--brand-base, #006699); }
  .results-body .results-sidebar .sidebar-item .item-search {
    margin-top: 30px; }
    .results-body .results-sidebar .sidebar-item .item-search .input-group {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
      -webkit-flex-grow: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      position: relative;
      width: 100%; }
      .results-body .results-sidebar .sidebar-item .item-search .input-group:not(.typeahead) .input {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        border: 1px solid #70707099;
        border-left: none; }
      .results-body .results-sidebar .sidebar-item .item-search .input-group .input-group-icon {
        width: auto;
        padding-left: 16px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        background: white;
        border-radius: 8px 0px 0px 8px;
        border: 1px solid #70707099;
        border-right: none;
        margin-right: -1px; }
      .results-body .results-sidebar .sidebar-item .item-search .input-group .typeahead {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        position: static !important; }
        .results-body .results-sidebar .sidebar-item .item-search .input-group .typeahead .input {
          padding: 16px 32px;
          width: 100%;
          border-radius: 0px 8px 8px 0px;
          border-left: none; }
  @media (max-width: 768px) {
    .results-body .results-sidebar .sidebar-item .item-body .button.is-brand {
      width: 100%;
      font-size: 16px; } }
  @media (max-width: 1024px) {
    .results-body .results-sidebar .sidebar-item .item-body {
      display: initial; } }
  .results-body .results-sidebar .sidebar-item .item-body .selector-header .h-2 {
    color: #4E5C63;
    opacity: 80%;
    font-size: 24px;
    margin-top: 30px;
    font-weight: 600; }
    @media (max-width: 992px) {
      .results-body .results-sidebar .sidebar-item .item-body .selector-header .h-2 {
        font-size: 20px;
        margin-top: 16px; } }
  .results-body .results-sidebar .sidebar-item .item-body .category-item .category-header {
    background: #B49561;
    border-radius: 8px;
    border: 1px solid transparent; }
    .results-body .results-sidebar .sidebar-item .item-body .category-item .category-header .category-link {
      color: #fff; }
      .results-body .results-sidebar .sidebar-item .item-body .category-item .category-header .category-link:before {
        display: none; }
    .results-body .results-sidebar .sidebar-item .item-body .category-item .category-header:hover {
      border: 1px solid #B49561;
      background: none; }
      .results-body .results-sidebar .sidebar-item .item-body .category-item .category-header:hover .category-link {
        color: #B49561; }
      .results-body .results-sidebar .sidebar-item .item-body .category-item .category-header:hover .subcategory-toggler .a {
        fill: #B49561; }
  .results-body .results-sidebar .sidebar-item .item-body .category-item .category-subcategory {
    overflow: scroll;
    max-height: 300px;
    margin: 16px 0;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #B49561 #4e5c6326; }
    .results-body .results-sidebar .sidebar-item .item-body .category-item .category-subcategory::-webkit-scrollbar {
      width: 6px; }
    .results-body .results-sidebar .sidebar-item .item-body .category-item .category-subcategory::-webkit-scrollbar-track {
      background: #4e5c6326; }
    .results-body .results-sidebar .sidebar-item .item-body .category-item .category-subcategory::-webkit-scrollbar-thumb {
      background: #B49561;
      border-radius: 20px; }
    .results-body .results-sidebar .sidebar-item .item-body .category-item .category-subcategory .category-item:first-child .category-header {
      margin-top: 0; }
    .results-body .results-sidebar .sidebar-item .item-body .category-item .category-subcategory .category-item:last-child .category-header {
      margin-bottom: 0; }
    .results-body .results-sidebar .sidebar-item .item-body .category-item .category-subcategory .category-item .category-header {
      background: none;
      border: 1px solid #B49561;
      margin: 16px 0;
      width: 95%;
      padding: 0; }
      .results-body .results-sidebar .sidebar-item .item-body .category-item .category-subcategory .category-item .category-header .category-link {
        display: block;
        width: 100%;
        padding: 8px 16px;
        color: #B49561; }
      .results-body .results-sidebar .sidebar-item .item-body .category-item .category-subcategory .category-item .category-header:hover {
        background: #B49561;
        width: 98%; }
        .results-body .results-sidebar .sidebar-item .item-body .category-item .category-subcategory .category-item .category-header:hover .category-link {
          color: #fff; }

.details-default.details-listing .details-header .container .details-header-content .details-contact .contact-item.item-trusted-partner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 12px 0; }
  .details-default.details-listing .details-header .container .details-header-content .details-contact .contact-item.item-trusted-partner span svg {
    width: 14px;
    height: auto; }
  .details-default.details-listing .details-header .container .details-header-content .details-contact .contact-item.item-trusted-partner .h-4 {
    font-weight: 500;
    margin: 0;
    font-size: 18px; }

.details-default.details-listing .details-header .container .details-header-content .details-contact .details-reviews {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 24px 0; }
  .details-default.details-listing .details-header .container .details-header-content .details-contact .details-reviews .reviews-stars {
    padding-right: 8px; }
    .details-default.details-listing .details-header .container .details-header-content .details-contact .details-reviews .reviews-stars .fa {
      background: #4e5c63;
      padding: 6px;
      border-radius: 4px;
      color: var(--color-white-base, white);
      font-size: 14px; }
  .details-default.details-listing .details-header .container .details-header-content .details-contact .details-reviews .reviews-rating {
    padding-right: 8px; }

.details-default.details-listing .details-header.details-header-mobile .detail-info-mobile .contact-item.item-trusted-partner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 12px 0; }
  .details-default.details-listing .details-header.details-header-mobile .detail-info-mobile .contact-item.item-trusted-partner span svg {
    width: 14px;
    height: auto; }
  .details-default.details-listing .details-header.details-header-mobile .detail-info-mobile .contact-item.item-trusted-partner .h-4 {
    padding-left: 4px;
    font-weight: 500;
    margin: 0;
    font-size: 18px; }

@media (max-width: 992px) {
  .details-default.details-listing .detail-body {
    padding-bottom: 0; } }

.details-default.details-listing .detail-body .detail-body-content .detail-left .card-submit-obtuary.mobile {
  margin: 0px 0px 40px 0px; }
  @media (min-width: 992px) {
    .details-default.details-listing .detail-body .detail-body-content .detail-left .card-submit-obtuary.mobile {
      display: none; } }

@media (max-width: 992px) {
  .details-default.details-listing .detail-body .detail-body-content .detail-right .card-submit-obtuary {
    display: none; } }

@media (min-width: 992px) {
  .details-default.details-listing .detail-body .sticky-footer {
    display: none; } }

.details-default.details-listing .detail-body .sticky-footer .footer-actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 30px 0;
  -webkit-box-shadow: 0px -11px 30px #918baf36;
          box-shadow: 0px -11px 30px #918baf36;
  margin-top: 40px; }
  .details-default.details-listing .detail-body .sticky-footer .footer-actions a {
    background: #b49561;
    padding: 16px;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    height: auto;
    width: 40%;
    margin: 0 8px; }
    .details-default.details-listing .detail-body .sticky-footer .footer-actions a:nth-child(2) {
      background: #CCD0D2;
      color: #00141e; }

.results-body .results-content .summary-list .summary-item .summary-content .summary-info .contact-item.item-trusted-partner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 12px 0; }
  .results-body .results-content .summary-list .summary-item .summary-content .summary-info .contact-item.item-trusted-partner .icon svg {
    width: 14px;
    height: auto; }
  .results-body .results-content .summary-list .summary-item .summary-content .summary-info .contact-item.item-trusted-partner .h-4 {
    padding-left: 4px;
    font-weight: 500;
    margin: 0;
    font-size: 16px; }

.cards-default .cards-list .card .picture img {
  width: 100%; }

.custom-text-publish-obituary {
  margin-top: 5px;
  margin-left: 286px; }

#btnSubmitObituaryMobile {
  color: white;
  background: #C0A57E; }
  @media (max-width: 768px) {
    #btnSubmitObituaryMobile {
      width: 240px;
      padding-left: 18px;
      padding-right: 18px; } }

.details-default > .details-header .details-contact .contact-item .contact-item-link-website {
  max-width: 275px; }

.details-default.details-listing .detail-body .sticky-footer .footer-actions a {
  font-size: 15px;
  height: auto;
  width: 45%;
  margin: 0 4px; }

.details-default.details-listing > .details-header .details-header-navbar:not(.is-fixed) .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap; }

.details-default.details-listing > .details-header .details-header-navbar:not(.is-fixed) .container h3 {
  margin-bottom: 0;
  font-weight: normal;
  font-size: var(--font-size-base, 18px);
  margin-left: 32px; }

.details-default.details-listing > .details-header .details-header-navbar:not(.is-fixed) .container h3:first-child {
  margin-left: 0; }

.details-default.details-listing > .details-header.details-header-mobile .details-header-navbar-mobile h3 {
  font-weight: normal;
  font-size: var(--font-size-base, 18px); }

.details-default.details-listing > .details-header.details-header-mobile .details-header-navbar-mobile h3 a.tab-navbar {
  margin-left: 0; }

.details-default.details-listing > .details-header.details-header-mobile .details-header-navbar-mobile h3:first-child a.tab-navbar {
  margin-left: 32px; }

.business-reviews-container h2{font-size:1.2rem;font-weight:600;margin-bottom:40px; }
.review-rating{margin-bottom:10px; }
.review-text{font-size:1.3125rem;letter-spacing:.22px;line-height:31.5px; }
.review-rating{margin-bottom:10px; }
.fw-semibold{font-weight:600!important; }
.body-text-large{font-size:1.025rem; }@media(min-width:992px; ){.body-text-large{font-size:1.3125rem; }}
.expandable{word-wrap:break-word;word-break:break-word; }
.text-note{font-size:.925rem;text-transform:none;font-weight:500; }
.business-reviews-container 
.business-review 
.review-text{font-size:1.0125rem;letter-spacing:.22px;line-height:31.5px; }
.business-reviews-container 
.business-review .user-post-container{margin-top:20px; }
.read-more{color:#7f465c;font-weight:600; }
.d-none{display:none!important; }