@font-face {
  font-family: "Open Sans";
  src: url("../fonts/opensans/OpenSans-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/opensans/OpenSans-LightItalic.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/opensans/OpenSans-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/opensans/OpenSans-Italic.woff2") format("woff2");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/opensans/OpenSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/opensans/OpenSans-MediumItalic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/opensans/OpenSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/opensans/OpenSans-SemiBoldItalic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/opensans/OpenSans-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/opensans/OpenSans-BoldItalic.woff2") format("woff2");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  background-color: #fff;
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 140%;
  color: #171a1f;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body.overflow-hidden {
  overflow: hidden;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

video {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style: none;
}

.container {
  max-width: 1020px;
  padding: 0 30px;
  margin: 0 auto;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.col {
  padding: 0 15px;
}

.section-title {
  padding-bottom: 8px;
  font-weight: 600;
  font-size: 28px;
  line-height: 130%;
  margin-bottom: 32px;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  background: linear-gradient(67deg, #d789d7 0%, #e23e57 100%);
  border-radius: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.section-title-label {
  padding: 1px 8px;
  background-color: #3431dc;
  border-radius: 20px;
  font-weight: bold;
  font-size: 13px;
  line-height: 100%;
  color: #fff;
  text-transform: uppercase;
  vertical-align: super;
}

.page-title {
  padding-bottom: 8px;
  font-weight: 600;
  font-size: 28px;
  line-height: 130%;
  margin-bottom: 32px;
  position: relative;
}
.page-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  background: linear-gradient(67deg, #d789d7 0%, #e23e57 100%);
  border-radius: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.to-top-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 72px;
  height: 72px;
  background-color: rgba(215, 137, 215, 0.5);
  border-radius: 50%;
  position: fixed;
  right: 36px;
  bottom: 36px;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.to-top-button::before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background: url("../img/to-top-button-icon.svg") no-repeat center/contain;
}
.to-top-button.active {
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 100%;
    padding: 0 16px;
  }
  .section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .page-title {
    font-size: 24px;
  }
  .to-top-button {
    width: 64px;
    height: 64px;
    right: 16px;
    bottom: 16px;
  }
  .to-top-button::before {
    width: 32px;
    height: 32px;
  }
}
.button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  padding: 9px 18px;
  background: linear-gradient(62deg, #d789d7 0%, #e23e57 100%);
  border: none;
  border-radius: 30px;
  font-family: inherit;
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
}
.button.button-small {
  padding: 8px 16px;
  font-size: 13px;
  line-height: 20px;
  border-radius: 20px;
}
.button.button-medium {
  padding: 12px 25px;
}
.button.button-big {
  padding: 15px 25px;
  border-radius: 40px;
}
.button:hover {
  background: #e23e57;
}

.border-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  padding: 1px;
  background-color: #171a1f;
  border-radius: 20px;
  cursor: pointer;
}
.border-button.active, .border-button:hover {
  background: linear-gradient(67deg, #d789d7 0%, #e23e57 100%);
}
.border-button.active .border-button-text, .border-button:hover .border-button-text {
  background: linear-gradient(67deg, #d789d7 0%, #e23e57 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.border-button.active .border-button-icon::before, .border-button:hover .border-button-icon::before {
  opacity: 0;
}
.border-button.active .border-button-icon::after, .border-button:hover .border-button-icon::after {
  opacity: 1;
}

.border-button-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 7px 14px;
  background-color: #fff;
  border-radius: 20px;
}

.border-button-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  position: relative;
}
.border-button-icon::before, .border-button-icon::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.border-button-icon::before {
  opacity: 1;
}
.border-button-icon::after {
  opacity: 0;
}
.border-button-icon.favorite-icon::before {
  background: url("../img/button-favorite-icon.svg") no-repeat;
}
.border-button-icon.favorite-icon::after {
  background: url("../img/button-favorite-active-icon.svg") no-repeat;
}
.border-button-icon.cross-icon::before {
  background: url("../img/button-cross-icon.svg") no-repeat;
}
.border-button-icon.cross-icon::after {
  background: url("../img/button-cross-active-icon.svg") no-repeat;
}
.border-button-icon.share-icon::before {
  background: url("../img/button-share-icon.svg") no-repeat;
}
.border-button-icon.share-icon::after {
  background: url("../img/button-share-active-icon.svg") no-repeat;
}
.border-button-icon.search-icon::before {
  background: url("../img/button-search-icon.svg") no-repeat;
}
.border-button-icon.search-icon::after {
  background: url("../img/button-search-active-icon.svg") no-repeat;
}
.border-button-icon.upload-icon::before {
  background: url("../img/button-upload-file-icon.svg") no-repeat;
}
.border-button-icon.upload-icon::after {
  background: url("../img/button-upload-file-active-icon.svg") no-repeat;
}
.border-button-icon.plus-icon::before {
  background: url("../img/button-plus-icon.svg") no-repeat;
}
.border-button-icon.plus-icon::after {
  background: url("../img/button-plus-active-icon.svg") no-repeat;
}
.border-button-icon.check-icon::before {
  background: url("../img/button-check-icon.svg") no-repeat;
}
.border-button-icon.check-icon::after {
  background: url("../img/button-check-active-icon.svg") no-repeat;
}

.border-button-text {
  font-weight: bold;
  font-size: 13px;
  line-height: 20px;
  color: #171a1f;
  text-transform: uppercase;
}

input[type=text], input[type=email], input[type=tel], input[type=search], input[type=password], input[type=number], input[type=date], select, textarea {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 16px;
  background-color: #fff;
  border: 1px solid #babbbc;
  border-radius: 4px;
  font-family: inherit;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #171a1f;
  outline: none;
}
input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=search]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder, input[type=date]::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #6f7174;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=date]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #6f7174;
}
input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=search]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, input[type=date]:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #6f7174;
}
input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, input[type=search]::-ms-input-placeholder, input[type=password]::-ms-input-placeholder, input[type=number]::-ms-input-placeholder, input[type=date]::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #6f7174;
}
input[type=text]::placeholder, input[type=email]::placeholder, input[type=tel]::placeholder, input[type=search]::placeholder, input[type=password]::placeholder, input[type=number]::placeholder, input[type=date]::placeholder, select::placeholder, textarea::placeholder {
  color: #6f7174;
}

textarea {
  height: 140px;
  padding-top: 16px;
  resize: none;
}

.select2-container .select2-selection--single {
  height: 40px;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #d1d1d2;
  border-radius: 4px;
}

/*.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #f2f2f2;
}*/

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 16px;
  padding-right: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-weight: 500;
  font-size: 16px;
  color: #171a1f;
  line-height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 20px;
  height: 40px;
  background: url("../img/select-arrow-icon.svg") no-repeat center;
  right: 10px;
  top: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}

.select2-dropdown {
  background-color: #fff;
  border: none;
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 20px 3px rgba(23, 26, 31, 0.15);
          box-shadow: 0 6px 20px 3px rgba(23, 26, 31, 0.15);
  overflow: hidden;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 284px;
}

.select2-results__option {
  padding: 9px 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #171a1f;
}

.select2-container--default .select2-results__option--selected {
  background-color: #f2f2f2;
  color: #e23e57;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #f2f2f2;
  color: #e23e57;
}

.countries-select .countries-select-option {
  height: 38px;
}
.countries-select .countries-select-option span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.countries-select-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.countries-select-option::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.countries-select-option.country-netherlands::before {
  background: url("../img/flags/netherlands.svg") no-repeat;
}
.countries-select-option.country-france::before {
  background: url("../img/flags/france.svg") no-repeat;
}
.countries-select-option.country-italy::before {
  background: url("../img/flags/italy.svg") no-repeat;
}
.countries-select-option.country-spain::before {
  background: url("../img/flags/spain.svg") no-repeat;
}
.countries-select-option.country-uk::before {
  background: url("../img/flags/uk.svg") no-repeat;
}
.countries-select-option.country-austria::before {
  background: url("../img/flags/austria.svg") no-repeat;
}
.countries-select-option.country-germany::before {
  background: url("../img/flags/germany.svg") no-repeat;
}
.countries-select-option.country-greece::before {
  background: url("../img/flags/greece.svg") no-repeat;
}
.countries-select-option.country-missing::before {
  background: url("../img/warning-icon.svg") no-repeat;
}

.Zebra_DatePicker {
  border: none;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #171a1f;
}

.Zebra_DatePicker .dp_daypicker th {
  font-weight: 500;
  color: #2f3136;
}

.Zebra_DatePicker .dp_body .dp_selected {
  background-color: #e23e57;
}

.range-slider-block {
  margin-top: 20px;
}
.range-slider-block .irs--flat {
  height: 28px;
}
.range-slider-block .irs--flat .irs-line {
  height: 4px;
  background-color: #d1d1d2;
  top: 12px;
}
.range-slider-block .irs--flat .irs-bar {
  height: 4px;
  background-color: #e23e57;
  top: 12px;
}
.range-slider-block .irs--flat .irs-handle {
  width: 28px;
  height: 28px;
  background-color: #fff;
  border: 1px solid #d1d1d2;
  border-radius: 50%;
  top: 0;
}
.range-slider-block .irs--flat .irs-handle::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-color: #e23e57;
  border-radius: 50%;
  position: absolute;
  left: 4px;
  top: 4px;
}
.range-slider-block .irs--flat .irs-handle i {
  display: none;
}

.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.checkbox input {
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
}
.checkbox input:checked + .checkbox-checkmark {
  background-color: #f2f2f2;
}
.checkbox input:checked + .checkbox-checkmark::after {
  opacity: 1;
}
.checkbox .checkbox-checkmark {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #d1d1d2;
  border-radius: 2px;
  margin-right: 12px;
  margin-top: 1px;
  position: relative;
}
.checkbox .checkbox-checkmark::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/checkbox-icon.svg") no-repeat center;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.checkbox .checkbox-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #171a1f;
}
.checkbox .checkbox-text a {
  display: inline;
  color: #3431dc;
  text-decoration: underline;
}
.checkbox .checkbox-text strong {
  font-weight: 600;
}
.checkbox .checkbox-count {
  color: #828386;
}
.checkbox.disabled {
  pointer-events: none;
}
.checkbox.disabled .checkbox-text {
  opacity: 0.4;
}

.checkbox-switcher input {
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
}

.checkbox-switcher input:checked + .checkbox-switcher-checkmark {
  background: linear-gradient(67deg, #d789d7 0%, #e23e57 100%);
}

.checkbox-switcher input:checked + .checkbox-switcher-checkmark::after {
  transform: translateX(24px);
  -webkit-transform: translate(24px);
}

.checkbox-switcher .checkbox-switcher-checkmark {
  display: block;
  width: 52px;
  height: 28px;
  padding: 2px;
  background-color: #d1d1d2;
  border-radius: 40px;
  cursor: pointer;
}

.checkbox-switcher .checkbox-switcher-checkmark::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}

.radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.radio input {
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
}
.radio input:checked + .radio-checkmark {
  border-color: #e23e57;
}
.radio input:checked + .radio-checkmark::after {
  opacity: 1;
}
.radio .radio-checkmark {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border: 1px solid #d1d1d2;
  border-radius: 50%;
  margin-right: 12px;
  margin-top: 2px;
  position: relative;
}
.radio .radio-checkmark::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-color: #e23e57;
  border-radius: 12px;
  position: absolute;
  left: 2px;
  top: 2px;
  opacity: 0;
}
.radio .radio-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #171a1f;
}
.radio .radio-text a {
  display: inline;
  color: #3431dc;
  text-decoration: underline;
}
.radio.disabled {
  pointer-events: none;
}
.radio.disabled .radio-text {
  opacity: 0.4;
}

.switcher {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f2f2f2;
  border: 2px solid #f2f2f2;
  border-radius: 40px;
  position: relative;
  margin-top: 12px;
}
.switcher:first-child {
  margin-top: 0;
}
.switcher input {
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
}
.switcher input:checked + .switcher-text {
  background: linear-gradient(67deg, #d789d7 0%, #e23e57 100%);
  color: #fff;
}

.switcher-button {
  width: 50%;
  cursor: pointer;
}

.switcher-text {
  display: block;
  width: 100%;
  padding: 7px;
  background-color: #f2f2f2;
  border-radius: 40px;
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  color: #171a1f;
  text-transform: uppercase;
  text-align: center;
}

.upload-file {
  display: block;
  padding: 50px 28px;
  background-color: #f2f2f2;
  border: 1px solid #d1d1d2;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}
.upload-file input {
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
}

.upload-file-button {
  display: block;
  width: 180px;
  margin: 0 auto;
}
.upload-file-button .border-button {
  width: 100%;
}
.upload-file-button .border-button .border-button-inner {
  background-color: #f2f2f2;
}

.upload-file-text {
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #6f7174;
  text-align: center;
  margin-top: 12px;
}

.form-item {
  margin-bottom: 20px;
}
.form-item .select2-container {
  width: 100% !important;
}

.form-item-label {
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #43454a;
  margin-bottom: 6px;
}
.form-item-label .required {
  color: #e23e57;
}

.form-item-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.form-item-header .form-item-label {
  margin-bottom: 0;
}

.form-item-header .emoji {
  margin-left: auto;
}

.form-item-header .emoji__btn {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: url('../img/emoji-open-icon.svg') no-repeat;
  font-size: 0;
  color: transparent;
  cursor: pointer;
}

.form-item-header .emoji__list button {
  font-size: 23px;
}

.form-password-input {
  position: relative;
}
.form-password-input input[type=password] {
  padding-right: 52px;
}

.form-password-show {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}
.form-password-show::before, .form-password-show::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.form-password-show::before {
  background: url("../img/password-eye-icon.svg") no-repeat;
  opacity: 1;
}
.form-password-show::after {
  background: url("../img/password-eye-active-icon.svg") no-repeat;
  opacity: 0;
}
.form-password-show.active::before {
  opacity: 0;
}
.form-password-show.active::after {
  opacity: 1;
}

.form-acceptance-item {
  margin-bottom: 20px;
}

.form-submit-item {
  text-align: center;
  margin-top: 32px;
}
.form-submit-item .button {
  width: 100%;
  max-width: 280px;
}

@media (max-width: 767px) {
  .form-item {
    margin-bottom: 16px;
  }
  .form-acceptance-item {
    margin-bottom: 16px;
  }
  .form-submit-item {
    margin-top: 24px;
  }
}
.pagination-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 32px;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: -6px;
  margin-right: -6px;
}
.pagination li {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0 3px;
}
.pagination a, .pagination span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border: 1px solid #d1d1d2;
  border-radius: 2px;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: #2f3136;
  text-align: center;
}
.pagination a:hover {
  background: linear-gradient(158deg, #d789d7 0%, #e23e57 100%);
  border: none;
  color: #fff;
}
.pagination .prev a, .pagination .prev span, .pagination .next a, .pagination .next span {
  position: relative;
}
.pagination .prev a::before, .pagination .prev a::after, .pagination .prev span::before, .pagination .prev span::after, .pagination .next a::before, .pagination .next a::after, .pagination .next span::before, .pagination .next span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.pagination .prev a::before, .pagination .prev span::before, .pagination .next a::before, .pagination .next span::before {
  background: url("../img/pagination-arrow-icon.svg") no-repeat center;
  opacity: 1;
}
.pagination .prev a::after, .pagination .prev span::after, .pagination .next a::after, .pagination .next span::after {
  background: url("../img/pagination-arrow-active-icon.svg") no-repeat center;
  opacity: 0;
}
.pagination .prev a:hover, .pagination .next a:hover {
  background: linear-gradient(158deg, #d789d7 0%, #e23e57 100%);
  border: none;
}
.pagination .prev a:hover::before, .pagination .next a:hover::before {
  opacity: 0;
}
.pagination .prev a:hover::after, .pagination .next a:hover::after {
  opacity: 1;
}
.pagination .prev {
  margin-right: 14px;
}
.pagination .next {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  margin-left: 14px;
}
.pagination .dots span {
  border: none;
}
.pagination .current span {
  background: linear-gradient(158deg, #d789d7 0%, #e23e57 100%);
  border: none;
  color: #fff;
}

@media (max-width: 767px) {
  .pagination {
    margin-left: -5px;
    margin-right: -5px;
  }
  .pagination li {
    margin: 0 3px;
  }
  .pagination .prev {
    margin-right: 7px;
  }
  .pagination .next {
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
    margin-left: 7px;
  }
}
.slider-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider-controls-link a {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: #3431dc;
  text-decoration: underline;
}

.slider-controls-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.slider-controls-navigation .swiper-button-prev, .slider-controls-navigation .swiper-button-next {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 36px;
  height: 36px;
  background-color: #fff;
  border: 1px solid #d1d1d2;
  border-radius: 2px;
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  margin: 0;
}
.slider-controls-navigation .swiper-button-prev::before, .slider-controls-navigation .swiper-button-prev::after, .slider-controls-navigation .swiper-button-next::before, .slider-controls-navigation .swiper-button-next::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.slider-controls-navigation .swiper-button-prev::before, .slider-controls-navigation .swiper-button-next::before {
  background: url("../img/pagination-arrow-icon.svg") no-repeat center;
  opacity: 1;
}
.slider-controls-navigation .swiper-button-prev::after, .slider-controls-navigation .swiper-button-next::after {
  background: url("../img/pagination-arrow-active-icon.svg") no-repeat center;
  opacity: 0;
}
.slider-controls-navigation .swiper-button-prev:hover, .slider-controls-navigation .swiper-button-next:hover {
  background: linear-gradient(158deg, #d789d7 0%, #e23e57 100%);
  border: none;
}
.slider-controls-navigation .swiper-button-prev:hover::before, .slider-controls-navigation .swiper-button-next:hover::before {
  opacity: 0;
}
.slider-controls-navigation .swiper-button-prev:hover::after, .slider-controls-navigation .swiper-button-next:hover::after {
  opacity: 1;
}
.slider-controls-navigation .swiper-button-prev.swiper-button-disabled, .slider-controls-navigation .swiper-button-next.swiper-button-disabled {
  opacity: 1;
}
.slider-controls-navigation .swiper-button-prev {
  margin-right: 20px;
}
.slider-controls-navigation .swiper-button-next {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.rating-star {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 22px;
  height: 22px;
  cursor: pointer;
  position: relative;
  margin-right: 4px;
}
.rating-star::before, .rating-star::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.rating-star::before {
  background: url("../img/rating-star-icon.svg") no-repeat center/contain;
  opacity: 1;
}
.rating-star::after {
  background: url("../img/rating-star-active-icon.svg") no-repeat center/contain;
  opacity: 0;
}
.rating-star.active::before {
  opacity: 0;
}
.rating-star.active::after {
  opacity: 1;
}
.rating-star:hover::before {
  opacity: 0;
}
.rating-star:hover::after {
  opacity: 1;
}
.rating-star:hover ~ .rating-star::before {
  opacity: 0;
}
.rating-star:hover ~ .rating-star::after {
  opacity: 1;
}
.rating-star input {
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
}

.review-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.review-rating.rating-0 {
  display: none;
}
.review-rating.rating-1 .review-rating-star:nth-child(1)::before {
  opacity: 0;
}
.review-rating.rating-1 .review-rating-star:nth-child(1)::after {
  opacity: 1;
}
.review-rating.rating-2 .review-rating-star:nth-child(-n+2)::before {
  opacity: 0;
}
.review-rating.rating-2 .review-rating-star:nth-child(-n+2)::after {
  opacity: 1;
}
.review-rating.rating-3 .review-rating-star:nth-child(-n+3)::before {
  opacity: 0;
}
.review-rating.rating-3 .review-rating-star:nth-child(-n+3)::after {
  opacity: 1;
}
.review-rating.rating-4 .review-rating-star:nth-child(-n+4)::before {
  opacity: 0;
}
.review-rating.rating-4 .review-rating-star:nth-child(-n+4)::after {
  opacity: 1;
}
.review-rating.rating-5 .review-rating-star:nth-child(-n+5)::before {
  opacity: 0;
}
.review-rating.rating-5 .review-rating-star:nth-child(-n+5)::after {
  opacity: 1;
}

.review-rating-star {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 18px;
  height: 18px;
  position: relative;
  margin-right: 4px;
}
.review-rating-star::before, .review-rating-star::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.review-rating-star::before {
  background: url("../img/rating-star-icon.svg") no-repeat center/contain;
  opacity: 1;
}
.review-rating-star::after {
  background: url("../img/rating-star-active-icon.svg") no-repeat center/contain;
  opacity: 0;
}

.locations-list-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -6px;
  margin-right: -6px;
  margin-top: -12px;
}

.locations-list-col {
  width: 33.3333333333%;
  padding-left: 6px;
  padding-right: 6px;
  margin-top: 12px;
}

.location-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 46px;
  padding: 10px 15px;
  background-color: #fff;
  border: 1px solid #d1d1d2;
  border-radius: 2px;
}
.location-item:hover {
  background: linear-gradient(67deg, #d789d7 0%, #e23e57 100%);
}
.location-item:hover .location-item-name {
  color: #fff;
}
.location-item:hover .location-item-count {
  color: #fff;
}
.location-item.current {
  background: linear-gradient(67deg, #d789d7 0%, #e23e57 100%);
}
.location-item.current .location-item-name {
  color: #fff;
}
.location-item.current .location-item-count {
  color: #fff;
}

.location-item-flag {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 12px;
}

.location-item-name {
  font-weight: bold;
  font-size: 16px;
  line-height: 140%;
  color: #171a1f;
  margin-right: 12px;
}

.location-item-count {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #e23e57;
  margin-left: auto;
}

.popup-locations .locations-list-row {
  margin-top: -8px;
}
.popup-locations .locations-list-col {
  width: 100%;
  margin-top: 8px;
}

@media (max-width: 991px) {
  .locations-list-col {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .locations-list-row {
    margin-top: -8px;
  }
  .locations-list-col {
    width: 100%;
    margin-top: 8px;
  }
}
.advertise-banners-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #171a1f;
  margin-bottom: 20px;
}

.advertise-banner {
  margin-bottom: 24px;
}
.advertise-banner:last-child {
  margin-bottom: 0;
}

.advertise-banner-link {
  margin-bottom: 12px;
}
.advertise-banner-link textarea {
  display: block;
  width: 100%;
  height: 88px;
  padding: 20px;
  border: 1px solid #babbbc;
  border-radius: 4px;
  resize: none;
  font-family: inherit;
  font-size: 16px;
  line-height: 140%;
  color: #43454a;
  outline: none;
}

.custom-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #d1d1d2;
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #2f3136;
  overflow: hidden;
}
.custom-table table th, .custom-table table td {
  height: 44px;
  padding: 10px 20px;
}
.custom-table table th {
  background-color: #171a1f;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #fff;
  text-transform: uppercase;
  text-align: left;
}
.custom-table table th .checkbox input:checked + .checkbox-checkmark {
  background-color: #fff;
}
.custom-table table th .checkbox .checkbox-checkmark {
  background-color: transparent;
}
.custom-table table td {
  border-left: 1px solid #d1d1d2;
  border-top: 1px solid #d1d1d2;
}
.custom-table table td:first-child {
  border-left: none;
}
.custom-table table strong, .custom-table table b {
  font-weight: 600;
}
.custom-table table .checkbox {
  width: 20px;
  margin: 0 auto;
}
.custom-table table .checkbox .checkbox-checkmark {
  margin: 0;
}
.custom-table table .unread td {
  font-weight: bold;
}

.custom-table-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 10px 20px;
  border: 1px solid #d1d1d2;
  border-top: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.custom-table-controls-select {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 218px;
  margin-right: 20px;
}
.custom-table-controls-select .select2-container {
  width: 100% !important;
}
.custom-table-controls-select .select2-container .select2-selection--single {
  height: 36px;
}
.custom-table-controls-select .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 36px;
}
.custom-table-controls-select .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 36px;
}

.custom-table-controls-button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 128px;
}
.custom-table-controls-button .button {
  display: block;
  width: 100%;
}

@media (max-width: 680px) {
  .custom-table-controls {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 16px 10px;
  }
  .custom-table-controls-select {
    width: 100%;
    margin-right: 0;
    margin-bottom: 12px;
  }
  .custom-table-controls-button {
    width: 100%;
  }

.custom-table-controls .pagination {margin-right: auto; width: 100%; margin-bottom: 15px}
}
.mfp-bg {
  background-color: #171a1f;
  opacity: 0.6;
}

.mfp-close {
  width: 28px;
  height: 28px;
  background: url("../img/popup-close-icon.svg") no-repeat !important;
  font-size: 0;
  color: transparent !important;
  opacity: 1;
  right: 20px;
  top: 20px !important;
}

.popup {
  max-width: 542px;
  padding: 46px 56px;
  background-color: #fff;
  border-radius: 8px;
  position: relative;
  margin: 0 auto;
}

.popup-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: #171a1f;
  text-align: center;
  margin-bottom: 20px;
}

.popup-link {
  text-align: right;
  margin-bottom: 20px;
}

.popup-forgot-password-link {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #3431dc;
  text-decoration: underline;
}

.popup-bottom-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #171a1f;
  text-align: center;
  margin-top: 32px;
}
.popup-bottom-text a {
  display: inline;
  font-weight: 600;
  color: #e23e57;
  text-decoration: underline;
}

.popup-upload-file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px;
  background-color: #f2f2f2;
  border: 1px solid #d1d1d2;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}
.popup-upload-file input {
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
}

.popup-upload-file-text {
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #43454a;
  margin-right: 16px;
}

.popup-upload-file-button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 144px;
}
.popup-upload-file-button .border-button {
  width: 100%;
}
.popup-upload-file-button .border-button .border-button-inner {
  background-color: #f2f2f2;
}

.popup-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.popup-rating-label {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #43454a;
  margin-right: 20px;
}

.popup-rating-clear {
  display: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #3431dc;
  text-decoration: underline;
  cursor: pointer;
  margin-left: 10px;
}

.popup-warning {
  padding-left: 36px;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #171a1f;
  position: relative;
  margin-top: 12px;
}
.popup-warning::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 24px;
  height: 24px;
  background: url("../img/warning-icon.svg") no-repeat;
  position: absolute;
  left: 0;
  top: 0;
}

.authorization-popup .select2-container--default .select2-selection--single {
  background-color: #f2f2f2;
}
.authorization-popup .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #e23e57;
}
.authorization-popup .member-nickname-item {
  display: none;
}
.authorization-popup .member-nickname-item.active {
  display: block;
}

.select-location-popup {
  max-width: 424px;
  background-color: #f2f2f2;
}

.select-location-popup-link {
  text-align: center;
  margin-top: 24px;
}
.select-location-popup-link a {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: #3431dc;
  text-decoration: underline;
}

.confirm-popup {
  max-width: 428px;
  padding: 46px;
}

.confirm-popup .mfp-close {
  display: none;
}

.confirm-popup-title {
  font-weight: 600;
  font-size: 32px;
  line-height: 130%;
  color: #e23e57;
  text-align: center;
  margin-bottom: 20px;
}

.confirm-popup-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #43454a;
  text-align: center;
  margin-bottom: 32px;
}

.confirm-popup-buttons {
  margin-bottom: 32px;
}

.confirm-popup-buttons-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -8px;
}

.confirm-popup-buttons-col {
  width: 50%;
  padding: 0 8px;
}
.confirm-popup-buttons-col .border-button {
  width: 100%;
  border-radius: 40px;
}
.confirm-popup-buttons-col .border-button-inner {
  padding: 15px;
  border-radius: 40px;
}
.confirm-popup-buttons-col .border-button-text {
  font-size: 16px;
}
.confirm-popup-buttons-col .button {
  width: 100%;
}

.confirm-popup-link {
  text-align: center;
}

.confirm-popup-link a {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #3431dc;
  text-decoration: underline;
}

.confirm-scam-popup {
  max-width: 528px;
}

.confirm-scam-popup .confirm-popup-buttons {
  margin-bottom: 0;
}

/*.confirm-popup {
  max-width: 960px;
  padding: 53px 330px 53px 70px;
  overflow: hidden;
}

.confirm-popup .mfp-close {
  display: none;
}

.confirm-popup::before {
  content: '';
  display: block;
  width: 450px;
  background: url('../img/confirm-popup-image.jpg') no-repeat right top;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}

.confirm-popup .confirm-popup-content {
  position: relative;
}

.confirm-popup-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #43454a;
}

.confirm-popup-text p {
  margin-bottom: 12px;
}

.confirm-popup-text p:last-child {
  margin-bottom: 0;
}

.confirm-popup-text h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: #e23e57;
  margin-top: 30px;
  margin-bottom: 12px;
}

.confirm-popup-text h3:first-child {
  margin-top: 0;
}

.confirm-popup-text h3:last-child {
  margin-bottom: 0;
}

.confirm-popup-text ul {
  list-style: disc;
  padding-left: 28px;
  margin-bottom: 12px;
}

.confirm-popup-text ul:last-child {
  margin-bottom: 0;
}

.confirm-popup-text a {
  color: #e23e57;
}

.confirm-popup-buttons {
  margin-top: 20px;
}

.confirm-popup-buttons-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -15px;
}

.confirm-popup-buttons-col {
  width: 262px;
  padding: 0 15px;
}
.confirm-popup-buttons-col .border-button {
  width: 100%;
  border-radius: 40px;
}
.confirm-popup-buttons-col .border-button-inner {
  padding: 15px;
  border-radius: 40px;
}
.confirm-popup-buttons-col .border-button-text {
  font-size: 16px;
}
.confirm-popup-buttons-col .button {
  width: 100%;
}*/

.contacts-popup {
  padding: 0;
}

.contacts-popup-header {
  padding: 32px 56px 24px;
  background-color: #f2f2f2;
  border-bottom: 1px solid #d1d1d2;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.contacts-popup-info {
  max-width: 334px;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #2f3136;
  margin: 0 auto;
}
.contacts-popup-info h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  color: #171a1f;
  margin-bottom: 10px;
}
.contacts-popup-info p {
  margin-bottom: 6px;
}
.contacts-popup-info p:last-child {
  margin-bottom: 0;
}

.contacts-popup-body {
  padding: 32px 56px 46px;
}

.entry-popup {
  max-width: 1100px;
  background-color: #fff;
  position: relative;
  margin: 0 auto;
}

.entry-popup-nav {
  display: none;
}

.entry-popup-row {
  display: flex;
}

.entry-popup-col {
  width: 50%;
}

.entry-popup-block {
  height: 100%;
  padding: 80px 60px;
}

.entry-popup-reg {
  background-color: #fff;
}

.entry-popup-log {
  background-color: #171a1f;
}

.entry-popup-subtitle {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #6f7174;
  text-align: center;
  margin-bottom: 16px;
}

.entry-popup-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  margin-bottom: 20px;
}

.entry-popup-text {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #171a1f;
  margin-top: 64px;
}

.entry-popup-text h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 20px;
}

.entry-popup-text ul li {
  margin-bottom: 16px;
}

.entry-popup-text ul li:last-child {
  margin-bottom: 0;
}

.entry-popup-button {
  margin-top: 46px;
}

.entry-popup-button .button {
  width: 100%;
}

.entry-popup-reg .entry-popup-title {
  color: #171a1f;
}

.entry-popup-reg .entry-popup-block-inner {
  max-width: 282px;
  margin: 0 auto;
}

.entry-popup-log .entry-popup-title {
  color: #fff;
}

.entry-popup-log .popup-forgot-password-link {
  color: #d789d7;
}

.entry-popup-log .form-item-label {
  color: #f2f2f2;
}

.entry-popup-log input[type=text],
.entry-popup-log input[type=password] {
  background-color: transparent;
  color: #fff;
}

@media (max-width: 991px) {
  .entry-popup-block {
    padding: 60px 32px;
  }
  /* .confirm-popup {
    padding: 50px 70px;
  }
  .confirm-popup::before {
    width: 217px;
    height: 217px;
    background-image: none;
    background-color: #d789d7;
    border-radius: 50%;
    filter: blur(75px);
    -webkit-filter: blur(75px);
    opacity: 0.35;
    left: -47px;
    right: auto;
    top: -34px;
  }
  .confirm-popup::after {
    content: '';
    display: block;
    width: 208px;
    height: 208px;
    background-color: #3431dc;
    border-radius: 50%;
    filter: blur(75px);
    -webkit-filter: blur(75px);
    opacity: 0.2;
    position: absolute;
    right: -62px;
    top: 174px;
  } */
}

@media (max-width: 767px) {
  .mfp-container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .popup {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 36px;
  }
  .popup-title .review-popup-name {
    display: block;
  }
  .popup-link {
    margin-bottom: 16px;
  }
  .popup-bottom-text {
    margin-top: 24px;
  }
  .popup-upload-file {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .popup-upload-file-text {
    margin-right: 0;
    margin-bottom: 16px;
  }
  .confirm-popup {
    padding: 46px 24px 36px;
  }
  .confirm-popup-text {
    margin-bottom: 24px;
  }
  .confirm-popup-buttons {
    margin-bottom: 24px;
  }
  .confirm-popup-buttons-row {
    margin: 0 -6px;
  }
  .confirm-popup-buttons-col {
    padding: 0 6px;
  }
  .confirm-popup-buttons-col .button.button-big {
    padding: 15px;
  }
  .confirm-scam-popup .confirm-popup-buttons-row {
    flex-wrap: wrap;
  }
  .confirm-scam-popup .confirm-popup-buttons-col {
    width: 100%;
    margin-bottom: 16px;
  }
  .confirm-scam-popup .confirm-popup-buttons-col:last-child {
    margin-bottom: 0;
  }
  .contacts-popup {
    padding: 0;
  }
  .contacts-popup-header {
    padding: 20px 60px;
  }
  .contacts-popup-info {
    max-width: 100%;
    margin: 0;
  }
  .contacts-popup-body {
    padding: 24px 24px 36px;
  }
  .entry-popup .mfp-close {
    top: 54px !important; 
  }
  .entry-popup-nav {
    display: flex;
  }
  .entry-popup-nav-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 46px;
    background-color: #171a1f;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
  }
  .entry-popup-nav-item.active {
    background: linear-gradient(62deg, #d789d7 0%, #e23e57 100%);
  }
  .entry-popup-col {
    display: none;
    width: 100%;
  }
  .entry-popup-col.active {
    display: block;
  }
  .entry-popup-block {
    padding: 46px 24px;
  }
  .entry-popup-text {
    font-weight: 500;
    margin-top: 0;
  }
  .entry-popup-reg {
    background-color: #171a1f;
  }
  .entry-popup-reg .entry-popup-block-inner {
    max-width: 100%;
    margin: 0;
  }
  .entry-popup-reg .entry-popup-title,
  .entry-popup-reg .entry-popup-text {
    color: #fff;
  }
  .entry-popup-button {
    text-align: center;
    margin-top: 32px;
  }
  .entry-popup-button .button {
    max-width: 280px;
  }
}

.header {
  margin-bottom: 32px;
}

.header-top {
  padding: 16px 0;
  background-color: #171a1f;
}

.header-top-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-top-panel-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-hamburger {
  display: none;
}

.header-languages {
  margin-right: 24px;
}

.languages-menu {
  position: relative;
  cursor: pointer;
}
.languages-menu:hover .languages-menu-selected::after {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}
.languages-menu:hover .languages-menu-dropdown {
  display: block;
}

.languages-menu-selected {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.languages-menu-selected::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 18px;
  height: 18px;
  background: url("../img/dropdown-arrow-white-icon.svg") no-repeat;
  margin-left: 6px;
}
.languages-menu-selected img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
}
.languages-menu-selected span {
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  color: #fff;
}

.languages-menu-dropdown {
  display: none;
  width: 190px;
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 20px 3px rgba(23, 26, 31, 0.15);
          box-shadow: 0 6px 20px 3px rgba(23, 26, 31, 0.15);
  position: absolute;
  left: 0;
  top: calc(100% + 22px);
  z-index: 2;
}
.languages-menu-dropdown::before {
  content: "";
  width: 100%;
  height: 22px;
  position: absolute;
  left: 0;
  bottom: 100%;
}
.languages-menu-dropdown li {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #171a1f;
  overflow: hidden;
}
.languages-menu-dropdown li:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.languages-menu-dropdown li:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.languages-menu-dropdown li.active a {
  background-color: #f2f2f2;
  color: #e23e57;
}
.languages-menu-dropdown a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 9px 16px;
}
.languages-menu-dropdown a:hover {
  background-color: #f2f2f2;
  color: #e23e57;
}
.languages-menu-dropdown img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
}

.header-countries {
  margin-right: 24px;
}

.countries-menu {
  position: relative;
  cursor: pointer;
}
.countries-menu:hover .countries-menu-selected::after {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}
.countries-menu:hover .countries-menu-dropdown {
  display: block;
}

.countries-menu-selected {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.countries-menu-selected::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 18px;
  height: 18px;
  background: url("../img/dropdown-arrow-white-icon.svg") no-repeat;
  margin-left: 6px;
}
.countries-menu-selected img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
}
.countries-menu-selected span {
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  color: #fff;
}

.countries-menu-dropdown {
  display: none;
  width: 190px;
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 20px 3px rgba(23, 26, 31, 0.15);
          box-shadow: 0 6px 20px 3px rgba(23, 26, 31, 0.15);
  position: absolute;
  left: 0;
  top: calc(100% + 22px);
  z-index: 2;
}
.countries-menu-dropdown::before {
  content: "";
  width: 100%;
  height: 22px;
  position: absolute;
  left: 0;
  bottom: 100%;
}
.countries-menu-dropdown li {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #171a1f;
  overflow: hidden;
}
.countries-menu-dropdown li:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.countries-menu-dropdown li:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.countries-menu-dropdown li.active a {
  background-color: #f2f2f2;
  color: #e23e57;
}
.countries-menu-dropdown a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 9px 16px;
}
.countries-menu-dropdown a:hover {
  background-color: #f2f2f2;
  color: #e23e57;
}
.countries-menu-dropdown img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
}

.header-search-form {
  width: 246px;
  position: relative;
}
.header-search-form .header-search-field {
  display: block;
  width: 100%;
  height: 36px;
  padding-left: 16px;
  padding-right: 52px;
  background-color: #2f3136;
  border: none;
  border-radius: 20px;
  font-family: inherit;
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: #fff;
  outline: none;
}
.header-search-form .header-search-field::-webkit-input-placeholder {
  color: #97989a;
}
.header-search-form .header-search-field::-moz-placeholder {
  color: #97989a;
}
.header-search-form .header-search-field:-ms-input-placeholder {
  color: #97989a;
}
.header-search-form .header-search-field::-ms-input-placeholder {
  color: #97989a;
}
.header-search-form .header-search-field::placeholder {
  color: #97989a;
}
.header-search-form .header-search-submit {
  display: block;
  width: 20px;
  height: 20px;
  background: url("../img/header-search-icon.svg") no-repeat center;
  border: none;
  font-size: 0;
  color: transparent;
  outline: none;
  position: absolute;
  right: 16px;
  top: 8px;
  cursor: pointer;
}

.header-top-panel-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-favorite {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 24px;
  height: 24px;
  position: relative;
  margin-left: 20px;
}
.header-favorite::before, .header-favorite::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.header-favorite::before {
  background: url("../img/header-favorite-icon.svg") no-repeat;
  opacity: 1;
}
.header-favorite::after {
  background: url("../img/header-favorite-active-icon.svg") no-repeat;
  opacity: 0;
}
.header-favorite.current::before {
  opacity: 0;
}
.header-favorite.current::after {
  opacity: 1;
}
.header-favorite:hover::before {
  opacity: 0;
}
.header-favorite:hover::after {
  opacity: 1;
}

.header-login-link {
  font-weight: bold;
  font-size: 14px;
  line-height: 150%;
  color: #fff;
  text-transform: uppercase;
  margin-left: 20px;
}

.header-registration-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  padding: 8px 16px;
  background: #fff;
  border: none;
  border-radius: 20px;
  font-family: inherit;
  font-weight: bold;
  font-size: 13px;
  line-height: 20px;
  color: #171a1f;
  text-transform: uppercase;
  text-align: center;
  margin-left: 20px;
}
.header-registration-button:hover {
  background: linear-gradient(62deg, #d789d7 0%, #e23e57 100%);
  color: #fff;
}

.header-balance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  font-size: 14px;
  line-height: 150%;
  color: #fff;
  margin-left: 20px;
}
.header-balance::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 24px;
  height: 24px;
  background: url("../img/header-balance-icon.svg") no-repeat;
  margin-right: 10px;
}
.header-balance span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header-account {
  display: block;
  position: relative;
  margin-left: 20px;
}
.header-account:hover .header-account-row::after {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}
.header-account:hover .header-account-dropdown {
  display: block;
}

.header-account-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-account-row::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 18px;
  height: 18px;
  background: url("../img/dropdown-arrow-white-icon.svg") no-repeat;
  margin-left: 6px;
}

.header-account-avatar {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 36px;
  height: 36px;
  padding: 1px;
  background: linear-gradient(67deg, #d789d7 0%, #e23e57 100%);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin-right: 10px;
}
.header-account-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}

.header-account-name {
  max-width: 164px;
  font-weight: bold;
  font-size: 14px;
  line-height: 150%;
  color: #fff;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.header-account-dropdown {
  display: none;
  width: 224px;
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 20px 3px rgba(23, 26, 31, 0.15);
          box-shadow: 0 6px 20px 3px rgba(23, 26, 31, 0.15);
  position: absolute;
  right: 0;
  top: calc(100% + 16px);
  z-index: 1;
}
.header-account-dropdown::before {
  content: "";
  display: block;
  width: 100%;
  height: 16px;
  position: absolute;
  left: 0;
  bottom: 100%;
}
.header-account-dropdown li {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #171a1f;
  overflow: hidden;
}
.header-account-dropdown li:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.header-account-dropdown li:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.header-account-dropdown .sign-out-link {
  color: #3431dc;
}
.header-account-dropdown .current a {
  background-color: #f2f2f2;
  color: #e23e57;
}
.header-account-dropdown a {
  display: block;
  padding: 9px 16px;
}
.header-account-dropdown a span {
  color: #d789d7;
}
.header-account-dropdown a:hover {
  background-color: #f2f2f2;
  color: #e23e57;
}

.header-bottom {
  background-color: #2f3136;
}

.header-bottom-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 263px;
  height: 44px;
  background: linear-gradient(67deg, #d789d7 0%, #e23e57 100%);
}

.header-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-menu li {
  font-weight: bold;
  font-size: 14px;
  line-height: 100%;
  color: #fff;
  text-transform: uppercase;
  margin-left: 26px;
}
.header-menu a {
  height: 100%;
  padding: 15px 0;
  position: relative;
}
.header-menu a::after {
  content: "";
  height: 3px;
  background: linear-gradient(67deg, #d789d7 0%, #e23e57 100%);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
}
.header-menu a:hover {
  background: linear-gradient(60deg, #d789d7 0%, #e23e57 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header-menu a:hover::after {
  opacity: 1;
}
.header-menu .current a {
  background: linear-gradient(60deg, #d789d7 0%, #e23e57 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header-menu .current a::after {
  opacity: 1;
}

.mobile-menu-wrapper {
  display: none;
}

@media (max-width: 1199px) {
  .header-hamburger {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: block;
    width: 32px;
    height: 32px;
    background: linear-gradient(67deg, #d789d7 0%, #e23e57 100%);
    border-radius: 50%;
    margin-right: 24px;
    position: relative;
    cursor: pointer;
  }
  .header-hamburger::before, .header-hamburger::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
  .header-hamburger::before {
    background: url("../img/header-hamburger-open-icon.svg") no-repeat center;
    opacity: 1;
  }
  .header-hamburger::after {
    background: url("../img/header-hamburger-close-icon.svg") no-repeat center;
    opacity: 0;
  }
  .header-hamburger.active::before {
    opacity: 0;
  }
  .header-hamburger.active::after {
    opacity: 1;
  }
  .header-languages {
    display: none;
  }
  .header-countries {
    display: none;
  }
  .header-registration-button {
    display: none;
  }
  .header-balance {
    display: none;
  }
  .header-account {
    display: none;
  }
  .header-bottom-panel {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header-bottom-panel-right {
    display: none;
  }
  .mobile-menu-wrapper {
    display: none;
    width: 100%;
    height: calc(100% - 112px);
    position: fixed;
    left: 0;
    top: 112px;
    z-index: 11;
  }
  .mobile-menu-wrapper.active {
    display: block;
  }
  .mobile-menu {
    width: 100%;
    height: 100%;
    background-color: #171a1f;
    overflow-y: auto;
  }
  .mobile-menu-user {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 20px;
    padding-bottom: 24px;
    border-bottom: 1px solid #2f3136;
    position: relative;
  }
  .mobile-menu-user-edit {
    display: block;
    width: 24px;
    height: 24px;
    background: url("../img/mobile-menu-user-edit.svg") no-repeat;
    position: absolute;
    right: 16px;
    top: 12px;
  }
  .mobile-menu-user-avatar {
    width: 80px;
    height: 80px;
    padding: 2px;
    background: linear-gradient(67deg, #d789d7 0%, #e23e57 100%);
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
  }
  .mobile-menu-user-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -o-object-fit: cover;
       object-fit: cover;
    position: relative;
  }
  .mobile-menu-user-name {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #fff;
    text-align: center;
    margin-top: 10px;
  }
  .mobile-menu-user-balance {
    font-weight: bold;
    font-size: 18px;
    line-height: 140%;
    color: #fff;
    text-align: center;
    margin-top: 12px;
  }
  .mobile-menu-user-button {
    text-align: center;
    margin-top: 12px;
  }
  .mobile-menu-user-statistics {
    margin-top: 24px;
  }
  .mobile-menu-user-statistics li {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #fff;
    margin-bottom: 12px;
  }
  .mobile-menu-user-statistics li:last-child {
    margin-bottom: 0;
  }
  .mobile-menu-user-statistics li strong {
    font-weight: bold;
    color: #d789d7;
  }
  .mobile-menu-user-list {
    padding: 24px 30px;
    border-bottom: 1px solid #2f3136;
  }
  .mobile-menu-user-list li {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #fff;
    margin-bottom: 16px;
  }
  .mobile-menu-user-list li:last-child {
    margin-bottom: 0;
  }
  .mobile-menu-user-list li span {
    color: #d789d7;
  }
  .mobile-menu-list {
    padding: 32px 30px;
  }
  .mobile-menu-list ul {
    text-align: center;
  }
  .mobile-menu-list li {
    font-weight: bold;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 32px;
  }
  .mobile-menu-list li:last-child {
    margin-bottom: 0;
  }
  .mobile-menu-list li.current a {
    background: linear-gradient(60deg, #d789d7 0%, #e23e57 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .mobile-menu-list a:hover {
    background: linear-gradient(60deg, #d789d7 0%, #e23e57 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .mobile-menu-footer {
    padding: 20px 16px;
    background-color: #2f3136;
  }
  .mobile-menu-registration {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 24px;
  }
  .mobile-menu-registration .header-registration-button {
    display: block;
    margin-left: 0;
  }
  .mobile-menu-footer-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .mobile-menu-footer-row .header-languages {
    display: block;
  }
  .mobile-menu-footer-row .languages-menu-dropdown {
    top: auto;
    bottom: calc(100% + 8px);
  }
  .mobile-menu-footer-row .languages-menu-dropdown::before {
    height: 8px;
    bottom: auto;
    top: 100%;
  }
  .mobile-menu-footer-row .header-countries {
    display: block;
    margin-left: 20px;
    margin-right: 0;
  }
  .mobile-menu-footer-row .countries-menu-dropdown {
    left: auto;
    right: 0;
    top: auto;
    bottom: calc(100% + 8px);
  }
  .mobile-menu-footer-row .countries-menu-dropdown::before {
    height: 8px;
    bottom: auto;
    top: 100%;
  }
}
@media (max-width: 767px) {
  .header-top {
    padding: 12px 0;
  }
  .header-top-panel-left {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .header-search {
    width: 100%;
  }
  .header-search form {
    display: block;
    width: 100%;
  }
  .header-search-form {
    width: 100%;
  }
  .header-search-form .header-search-field {
    height: 32px;
  }
  .header-search-form .header-search-submit {
    top: 6px;
  }
  .header-top-panel-right {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .header-favorite {
    margin-left: 16px;
  }
  .header-login-link {
    margin-left: 16px;
  }
  .header-logo {
    width: 215px;
    height: 36px;
  }
  .header-logo img {
    width: 193px;
  }
  .mobile-menu-wrapper {
    height: calc(100% - 92px);
    top: 92px;
  }
}
.footer {
  background-color: #171a1f;
  margin-top: 80px;
}

.footer-line {
  height: 6px;
  background: linear-gradient(67deg, #d789d7 0%, #e23e57 100%);
}

.footer-main {
  padding-top: 28px;
  padding-bottom: 28px;
}

.footer-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-left {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 368px;
  padding-right: 50px;
}

.footer-right {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.footer-logo {
  display: block;
  margin-bottom: 12px;
}

.footer-copyright {
  font-size: 12px;
  line-height: 150%;
  color: #fff;
  margin-bottom: 4px;
}

.footer-info-text {
  font-size: 12px;
  line-height: 150%;
  color: #6f7174;
  margin-bottom: 20px;
}

.footer-email {
  font-size: 12px;
  line-height: 150%;
  color: #6f7174;
}
.footer-email a {
  color: #fff;
}

.footer-menus-row {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer-menu li {
  font-size: 12px;
  line-height: 150%;
  color: #fff;
  margin-bottom: 12px;
}

.footer-bottom {
  margin-top: 32px;
}

.footer-bottom-row {
  display: flex;
}

.footer-bottom-left {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 26px;
}

.footer-bottom-right {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-right: 26px;
}

.footer-bottom-links-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.footer-compliance {
  font-size: 12px;
  line-height: 150%;
  color: #fff;
  margin-right: 20px;
}

.footer-dmca {
  height: 18px;
}

.footer-bottom-text {
  font-weight: 500;
  font-size: 12px;
  line-height: 140%;
  color: #6f7174;
}

@media (max-width: 991px) {
  .footer-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer-left {
    width: 100%;
    padding-right: 0;
    margin-bottom: 24px;
  }
  .footer-right {
    width: 100%;
  }
  .footer-bottom-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer-bottom-left {
    width: 100%;
    padding-right: 0;
    margin-bottom: 10px;
  }
  .footer-bottom-right {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .footer-main {
    padding-top: 35px;
    padding-bottom: 32px;
  }
  .footer-menus-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .footer-menus-col {
    width: 40%;
  }
  .footer-menu li {
    margin-bottom: 14px;
  }
}
.mobile-filters-wrapper {
  display: none;
}

@media (max-width: 1199px) {
  .mobile-filters-wrapper {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 11;
    pointer-events: none;
  }
  .mobile-filters-wrapper::before {
    content: "";
    display: block;
    background-color: rgba(23, 26, 31, 0.6);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0;
    -webkit-transition: opacity 1s cubic-bezier(0.16, 1.08, 0.38, 0.98);
    transition: opacity 1s cubic-bezier(0.16, 1.08, 0.38, 0.98);
  }
  .mobile-filters-wrapper.opened {
    pointer-events: all;
  }
  .mobile-filters-wrapper.opened::before {
    opacity: 1;
  }
  .mobile-filters-wrapper.opened .mobile-filters {
    -webkit-box-shadow: 4px 0 12px 0 rgba(0, 0, 0, 0.2);
            box-shadow: 4px 0 12px 0 rgba(0, 0, 0, 0.2);
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .mobile-filters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 360px;
    max-width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    left: 0;
    z-index: 1;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .mobile-filters-header {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 56px;
    padding: 0 16px;
    background-color: #171a1f;
  }
  .mobile-filters-close {
    width: 32px;
    height: 32px;
    background: linear-gradient(67deg, #d789d7 0%, #e23e57 100%);
    border-radius: 50%;
    position: relative;
  }
  .mobile-filters-close::before {
    content: "";
    background: url("../img/mobile-filters-close-icon.svg") no-repeat center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
  .mobile-filters-header-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    color: #fff;
    margin: 0 auto;
  }
  .mobile-filters-header-title span {
    color: #d789d7;
  }
  .mobile-filters-reset {
    font-weight: bold;
    font-size: 14px;
    line-height: 150%;
    color: #fff;
    text-transform: uppercase;
  }
  .mobile-filters-body {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding-top: 10px;
    padding-bottom: 20px;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .mobile-filters-block {
    padding: 20px 16px 20px;
    border-bottom: 1px solid #d1d1d2;
  }
  .mobile-filters-block:last-child {
    border-bottom: none;
  }
  .mobile-filters-block-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
    color: #e23e57;
    margin-bottom: 16px;
  }
  .mobile-filters-list li {
    margin-bottom: 16px;
  }
  .mobile-filters-list li:last-child {
    margin-bottom: 0;
  }
  .mobile-filters-list.mobile-filters-list-truncated {
    overflow: hidden;
  }
  .mobile-filters-list-more {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: #3431dc;
    text-decoration: underline;
    text-align: center;
    margin-top: 8px;
  }
  .mobile-filters-footer {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 14px 16px;
    border-top: 1px solid #d1d1d2;
  }
  .mobile-filters-footer .button {
    width: 224px;
  }
}
@media (max-width: 767px) {
  .mobile-filters {
    width: 100%;
  }
}
.filters-section {
  padding-top: 32px;
  position: relative;
  margin-top: -32px;
}
.filters-section::before {
  content: "";
  display: block;
  background-color: #f2f2f2;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 116px;
  z-index: -1;
}

.filters-section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.filters-section-header .section-title {
  margin-bottom: 0;
}

.filters-section-button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 30px;
}
.filters-section-button .button {
  width: 190px;
}

.filters-section-locations {
  margin-bottom: 24px;
}

.filters-section-link {
  text-align: center;
  margin-top: 24px;
}
.filters-section-link a {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: #3431dc;
  text-decoration: underline;
}

.filters-block {
  padding: 25px;
  background-color: #171a1f;
  border-radius: 2px;
}

.filters-block-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: #fff;
  margin-bottom: 12px;
}
.filters-block-title span {
  color: #d789d7;
}

.filters-top-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
  margin-left: -5px;
}

.filters-top-col {
  padding-left: 5px;
}

.filters-top-col-left {
  width: 390px;
}

.filters-top-col-right {
  width: 525px;
}

.filters-locations-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -5px;
}

.filters-locations-col {
  width: 50%;
  padding-left: 5px;
}

.filter-locations-block {
  position: relative;
}

.filter-locations:hover .filter-locations-label {
  padding: 0 11px;
  background: linear-gradient(67deg, #d789d7 0%, #e23e57 100%);
  border: none;
  color: #fff;
}
.filter-locations:hover .filter-locations-label-arrow {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}
.filter-locations:hover .filter-locations-label-arrow::before {
  opacity: 0;
}
.filter-locations:hover .filter-locations-label-arrow::after {
  opacity: 1;
}
.filter-locations:hover .filter-locations-dropdown {
  display: block;
}

.filter-locations-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 46px;
  padding: 0 10px;
  background-color: #fff;
  border: 1px solid #d1d1d2;
  border-radius: 2px;
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: #171a1f;
  text-transform: uppercase;
}

.filter-locations-label-arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-left: 6px;
  position: relative;
}
.filter-locations-label-arrow::before, .filter-locations-label-arrow::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.filter-locations-label-arrow::before {
  background: url("../img/dropdown-arrow-red-icon.svg") no-repeat;
  opacity: 1;
}
.filter-locations-label-arrow::after {
  background: url("../img/dropdown-arrow-white-icon.svg") no-repeat;
  opacity: 0;
}

.filter-locations-dropdown {
  display: none;
  width: 100%;
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 20px 3px rgba(23, 26, 31, 0.25);
          box-shadow: 0 4px 20px 3px rgba(23, 26, 31, 0.25);
  position: absolute;
  left: 0;
  top: calc(100% + 4px);
  z-index: 2;
}
.filter-locations-dropdown::before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 100%;
}
.filter-locations-dropdown li {
  font-weight: bold;
  font-size: 16px;
  line-height: 140%;
  color: #171a1f;
  overflow: hidden;
}
.filter-locations-dropdown li:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.filter-locations-dropdown li:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.filter-locations-dropdown a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 11px 16px;
}
.filter-locations-dropdown a:hover {
  background-color: #f2f2f2;
  color: #e23e57;
}
.filter-locations-dropdown img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 12px;
}

.filter-locations-dropdown-count {
  font-weight: 500;
  color: #e23e57;
  margin-left: auto;
}

.filters-top-checkboxes {
  padding: 12px 10px;
  background-color: #fff;
  border: 1px solid #d1d1d2;
  border-radius: 2px;
}

.filters-top-checkboxes-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  margin-top: -10px;
}

.filters-top-checkboxes-col {
  padding: 0 10px;
  margin-top: 10px;
}

.filters-top-checkbox .checkbox .checkbox-checkmark {
  margin-right: 8px;
  margin-top: 0;
}
.filters-top-checkbox .checkbox .checkbox-text {
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
}

.filters-container {
  position: relative;
  margin-bottom: 8px;
}
.filters-container:last-child {
  margin-bottom: 0;
}

.filters-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -5px;
}

.filters-col {
  width: 20%;
  padding-left: 5px;
}

.filters-item:hover .filters-item-label {
  background: linear-gradient(67deg, #d789d7 0%, #e23e57 100%);
  border-color: #d1d1d2;
  color: #fff;
}
.filters-item:hover .filters-item-label-arrow {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}
.filters-item:hover .filters-item-label-arrow::before {
  opacity: 0;
}
.filters-item:hover .filters-item-label-arrow::after {
  opacity: 1;
}
.filters-item:hover .filters-item-dropdown {
  display: block;
}

.filters-item-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 36px;
  padding-left: 16px;
  padding-right: 12px;
  border: 1px solid #43454a;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: #fff;
}

.filters-item-label-arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
  margin-left: 6px;
}
.filters-item-label-arrow::before, .filters-item-label-arrow::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.filters-item-label-arrow::before {
  background: url("../img/dropdown-arrow-red-icon.svg") no-repeat;
  opacity: 1;
}
.filters-item-label-arrow::after {
  background: url("../img/dropdown-arrow-white-icon.svg") no-repeat;
  opacity: 0;
}

.filters-item-dropdown {
  display: none;
  width: 100%;
  padding: 20px 45px 32px;
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 20px 3px rgba(23, 26, 31, 0.25);
          box-shadow: 0 4px 20px 3px rgba(23, 26, 31, 0.25);
  position: absolute;
  left: 0;
  top: calc(100% + 4px);
  z-index: 2;
}
.filters-item-dropdown::before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 100%;
}

.filters-item-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: #e23e57;
  margin-bottom: 16px;
}

.filters-item-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -16px;
  margin-right: -16px;
  margin-top: -16px;
  margin-bottom: 32px;
}
.filters-item-row:last-child {
  margin-bottom: 0;
}
.filters-item-row.filters-item-row-2 .filters-item-col {
  width: 50%;
}
.filters-item-row.filters-item-row-3 .filters-item-col {
  width: 33.3333333333%;
}
.filters-item-row.filters-item-row-4 .filters-item-col {
  width: 25%;
}
.filters-item-row.filters-item-row-5 .filters-item-col {
  width: 20%;
}

.filters-item-col {
  width: 100%;
  padding: 0 16px;
  margin-top: 16px;
}

.filters-item-rate-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -16px;
  margin-right: -16px;
  margin-top: -16px;
}

.filters-item-rate-col {
  width: 25%;
  padding-left: 16px;
  padding-right: 16px;
  margin-top: 16px;
}

.filters-item-rate-label {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #171a1f;
}

@media (max-width: 1199px) {
  .filters-section {
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #f2f2f2;
  }
  .filters-section::before {
    display: none;
  }
  .filters-section-locations {
    margin-bottom: 0;
  }
  .filters-block {
    display: none;
  }
}
@media (max-width: 767px) {
  .filters-section-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .filters-section-button {
    margin-left: 0;
    margin-top: 20px;
  }
}
.stories-section {
  padding-top: 58px;
  padding-bottom: 40px;
}

.stories-slider .swiper-slide {
  width: 100px;
}

.story-card {
  display: block;
  width: 100px;
  cursor: pointer;
}
.story-card:hover .story-card-image {
  background: none;
  background-color: transparent;
}
.story-card:hover .story-card-image::before {
  opacity: 1;
  -webkit-animation: storyRotate 20s infinite linear;
          animation: storyRotate 20s infinite linear;
}

.story-card-image {
  width: 100px;
  height: 100px;
  padding: 2px;
  background: linear-gradient(62deg, #d789d7 0%, #e23e57 100%);
  border-radius: 50%;
  position: relative;
}
.story-card-image::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/story-card-dashed-ring.svg") no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.story-card-image-inner {
  width: 100%;
  height: 100%;
  padding: 6px;
  background-color: #fff;
  border-radius: 50%;
}
.story-card-image-inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.story-card-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 28px;
  height: 28px;
  background-color: #e23e57;
  border-radius: 50%;
  font-weight: bold;
  font-size: 13px;
  line-height: 100%;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  right: 3px;
  bottom: 7px;
}

.story-card-name {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #171a1f;
  text-align: center;
  margin-top: 8px;
}

.story-card-location {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: #828386;
  text-align: center;
}

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

@keyframes storyRotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@media (max-width: 767px) {
  .stories-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .stories-slider-block {
    margin-left: -16px;
    margin-right: -16px;
  }
  .stories-slider {
    padding-left: 16px;
    padding-right: 16px;
  }
  .stories-slider .swiper-slide {
    width: 90px;
  }
  .stories-slider .story-card {
    width: 90px;
  }
  .stories-slider .story-card-image {
    width: 90px;
    height: 90px;
  }
  .stories-slider .story-card-image-inner {
    padding: 5px;
  }
  .stories-slider .story-card-count {
    width: 25px;
    height: 25px;
    font-size: 12px;
    bottom: 6px;
  }
}
.stories-modal {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  background-color: rgba(23, 26, 31, 0.8);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.stories-modal.show-modal {
  -webkit-animation: stories-in 0.4s forwards;
          animation: stories-in 0.4s forwards;
  pointer-events: auto;
  -webkit-transform: translateZ(0) scale(1);
          transform: translateZ(0) scale(1);
  opacity: 1;
  visibility: visible;
}
.stories-modal.show-modal .stories-modal-sliders * {
  pointer-events: auto !important;
}

.stories-modal-content {
  height: 100%;
}

.stories-modal-sliders {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  height: 100%;
  width: 100%;
}
.stories-modal-sliders * {
  pointer-events: none !important;
}
.stories-modal-sliders .swiper {
  width: 100%;
  height: 100%;
}
.stories-modal-sliders .swiper-pagination-bullet:only-child {
  display: block !important;
}
.stories-modal-sliders .swiper-button-disabled {
  display: none;
}

.main-stories-slider {
  max-width: 400px;
}
.main-stories-slider > .swiper-wrapper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left bottom, left top, from(#382638), to(#5e485e));
  background: linear-gradient(0deg, #382638 0%, #5e485e 100%);
}
.main-stories-slider .main-stories-prev, .main-stories-slider .main-stories-next {
  height: auto;
  width: 25%;
  position: absolute;
  top: 70px;
  bottom: 144px;
  margin: 0;
  opacity: 0;
  z-index: 2;
  -webkit-transform: none;
          transform: none;
}
.main-stories-slider .main-stories-prev {
  left: 0;
}
.main-stories-slider .main-stories-next {
  right: 0;
  bottom: 338px;
}

.inner-stories-slider .swiper-slide.swiper-slide-active {
  z-index: 2;
}
.inner-stories-slider .swiper-slide img, .inner-stories-slider .swiper-slide video {
  display: block;
  width: 100%;
  height: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.inner-stories-slider .swiper-slide video {
  height: 100%;
}
.inner-stories-slider .inner-stories-prev, .inner-stories-slider .inner-stories-next {
  height: auto;
  width: 25%;
  position: absolute;
  top: 70px;
  bottom: 144px;
  margin: 0;
  opacity: 0;
  z-index: 2;
  -webkit-transform: none;
          transform: none;
}
.inner-stories-slider .inner-stories-prev {
  left: 0;
}
.inner-stories-slider .inner-stories-next {
  right: 0;
  bottom: 338px;
}
.inner-stories-slider .swiper-pagination {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 10px;
  bottom: unset;
  max-width: calc(100% - 22px);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 1;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.inner-stories-slider .swiper-pagination-bullet {
  width: 100%;
  -ms-flex-negative: 10;
      flex-shrink: 10;
  border-radius: 8px;
  height: 4px;
  background: rgba(23, 26, 31, 0.4);
  overflow: hidden;
  opacity: 1;
  position: relative;
  margin: 0 5px !important;
}
.inner-stories-slider .swiper-pagination-bullet .progress-bar {
  height: 100%;
  background: #fff;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 0;
}
.inner-stories-slider .swiper-pagination-bullet.viewed .progress-bar {
  width: 100%;
  background: #fff;
}

.stories-modal-close {
  display: block;
  width: 32px;
  height: 32px;
  background: url("../img/stories-modal-close.svg") no-repeat;
  position: absolute;
  left: 8px;
  top: 26px;
  cursor: pointer;
  z-index: 9999;
  pointer-events: none;
}

.stories-modal-date {
  display: block;
  padding: 5px 10px;
  background-color: rgba(23, 26, 31, 0.4);
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  color: #fff;
  position: absolute;
  right: 16px;
  top: 26px;
  z-index: 2;
}

.stories-modal-user {
  padding: 0 16px 16px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}

.stories-modal-user-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -10px;
}

.stories-modal-user-col {
  padding: 0 10px;
}
.stories-modal-user-col:first-child {
  width: 92px;
}
.stories-modal-user-col:last-child {
  width: calc(100% - 92px);
}

.stories-modal-user-image {
  width: 72px;
  height: 108px;
}
.stories-modal-user-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.stories-modal-user-name {
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 8px;
}

.stories-modal-user-meta {
  margin-bottom: 14px;
}
.stories-modal-user-meta ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -3px;
  margin-right: -3px;
}
.stories-modal-user-meta li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #fff;
  margin-left: 3px;
  margin-right: 3px;
}
.stories-modal-user-meta li::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 4px;
  height: 4px;
  background-color: #e23e57;
  border-radius: 50%;
  margin-left: 6px;
}
.stories-modal-user-meta li:last-child::after {
  display: none;
}

.stories-modal-user-link {
  display: block;
  width: 100%;
  padding: 9px;
  border: 1px solid #fff;
  border-radius: 20px;
  font-weight: bold;
  font-size: 13px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.stories-modal-actions {
  position: absolute;
  right: 16px;
  bottom: 174px;
}

.stories-modal-action {
  cursor: pointer;
  margin-bottom: 16px;
}
.stories-modal-action:last-child {
  margin-bottom: 0;
}
.stories-modal-action.active .stories-modal-action-icon::before {
  opacity: 0;
}
.stories-modal-action.active .stories-modal-action-icon::after {
  opacity: 1;
}

.stories-modal-action-icon {
  width: 24px;
  height: 24px;
  position: relative;
  margin: 0 auto;
}
.stories-modal-action-icon::before, .stories-modal-action-icon::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.stories-modal-action-icon::before {
  opacity: 1;
}
.stories-modal-action-icon::after {
  opacity: 0;
}

.stories-modal-action-sound .stories-modal-action-icon::before {
  background: url("../img/stories-modal-action-sound-icon.svg") no-repeat;
}
.stories-modal-action-sound .stories-modal-action-icon::after {
  background: url("../img/stories-modal-action-sound-active-icon.svg") no-repeat;
}

.stories-modal-action-views .stories-modal-action-icon::before {
  background: url("../img/stories-modal-action-views-icon.svg") no-repeat;
}
.stories-modal-action-views .stories-modal-action-icon::after {
  background: url("../img/stories-modal-action-views-icon.svg") no-repeat;
}

.stories-modal-action-likes .stories-modal-action-icon::before {
  background: url("../img/stories-modal-action-likes-icon.svg") no-repeat;
}
.stories-modal-action-likes .stories-modal-action-icon::after {
  background: url("../img/stories-modal-action-likes-active-icon.svg") no-repeat;
}

.stories-modal-action-value {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #fff;
  text-align: center;
  margin-top: 4px;
}

@-webkit-keyframes stories-in {
  0% {
    -webkit-transform: translateZ(0) scale(0.5);
            transform: translateZ(0) scale(0.5);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateZ(0) scale(1.05);
            transform: translateZ(0) scale(1.05);
    opacity: 1;
  }
  to {
    -webkit-transform: translateZ(0) scale(1);
            transform: translateZ(0) scale(1);
    opacity: 1;
  }
}

@keyframes stories-in {
  0% {
    -webkit-transform: translateZ(0) scale(0.5);
            transform: translateZ(0) scale(0.5);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateZ(0) scale(1.05);
            transform: translateZ(0) scale(1.05);
    opacity: 1;
  }
  to {
    -webkit-transform: translateZ(0) scale(1);
            transform: translateZ(0) scale(1);
    opacity: 1;
  }
}

.home-catalog-section {
  padding-top: 58px;
}

.catalog-panels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.catalog-panel-top {
  width: 100%;
}

.catalog-selected-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -6px;
  margin-right: -6px;
}
.catalog-selected-list li {
  padding-left: 6px;
  padding-right: 6px;
  margin-bottom: 12px;
}
.catalog-selected-list li:last-child {
  margin-bottom: 18px;
}
.catalog-selected-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 16px;
  background-color: rgba(215, 137, 215, 0.2);
  border: 1px solid #d1d1d2;
  border-radius: 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
}
.catalog-selected-list a::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: url("../img/catalog-selected-close-icon.svg") no-repeat center/contain;
  margin-left: 6px;
}
.catalog-selected-list .catalog-selected-reset {
  background-color: #e23e57;
  border-color: #e23e57;
  color: #fff;
}
.catalog-selected-list .catalog-selected-reset::after {
  display: none;
}

.catalog-panel-left .page-title {
  margin-bottom: 0;
}

.catalog-sort {
  width: 218px;
}
.catalog-sort select {
  display: block;
  width: 100%;
  height: 40px;
  border: 1px solid #d1d1d2;
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  line-height: 140%;
  outline: none;
}
.catalog-sort .select2-container {
  width: 100% !important;
}

.catalog-filters-button {
  display: none;
}

.profiles-counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  text-transform: uppercase;
}
.profiles-counter::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 18px;
  height: 16px;
  background: url("../img/profiles-counter-icon.svg") no-repeat;
  margin-right: 8px;
}

.profiles-counter-value {
  font-weight: bold;
  margin-right: 8px;
}

.catalog-layout-switcher {
  display: none;
}

.cards-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  margin-top: -15px;
}

.cards-col {
  width: 25%;
  margin-top: 15px;
}

.card {
  position: relative;
  z-index: 1;
}
.card:hover {
  z-index: 2;
}
.card:hover .card-main {
  -webkit-box-shadow: 0 6px 12px 3px rgba(23, 26, 31, 0.15);
          box-shadow: 0 6px 12px 3px rgba(23, 26, 31, 0.15);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  overflow: hidden;
}
.card:hover .card-main-inner {
  background-color: #fff;
}
.card:hover .card-main-body {
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.card:hover .card-extra {
  display: block;
  -webkit-box-shadow: 0 6px 12px 3px rgba(23, 26, 31, 0.15);
          box-shadow: 0 6px 12px 3px rgba(23, 26, 31, 0.15);
}

.card-main {
  position: relative;
}

.card-main-inner {
  padding: 15px 15px 0;
  position: relative;
  z-index: 1;
}

.card-main-body {
  -webkit-box-shadow: 0 6px 12px 3px rgba(23, 26, 31, 0.15);
          box-shadow: 0 6px 12px 3px rgba(23, 26, 31, 0.15);
  border-radius: 4px;
  overflow: hidden;
}

.card-top {
  position: relative;
}

.card-slider .swiper-slide {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.card-slider .swiper-button-prev, .card-slider .swiper-button-next {
  width: 24px;
  height: 24px;
  margin: 0;
}
.card-slider .swiper-button-prev::before, .card-slider .swiper-button-next::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("../img/card-slider-arrow.svg") no-repeat center/contain;
}
.card-slider .swiper-button-prev::after, .card-slider .swiper-button-next::after {
  display: none;
}
.card-slider .swiper-button-prev.swiper-button-disabled, .card-slider .swiper-button-next.swiper-button-disabled {
  opacity: 1;
}
.card-slider .swiper-button-prev.swiper-button-disabled::before, .card-slider .swiper-button-next.swiper-button-disabled::before {
  background: url("../img/card-slider-arrow-disabled.svg") no-repeat center/contain;
}
.card-slider .swiper-button-prev {
  left: 6px;
}
.card-slider .swiper-button-next {
  right: 6px;
}
.card-slider .swiper-button-next::before {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.card-slider-image {
  display: block;
  width: 100%;
  height: 340px;
}
.card-slider-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-status-top {
  width: 60px;
  height: 60px;
  background: url("../img/status-top-icon.svg") no-repeat center/contain;
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 1;
}

.card-status-vip {
  width: 60px;
  height: 60px;
  background: url("../img/status-vip-icon.svg") no-repeat center/contain;
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 1;
}

.card-statuses {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 1;
}

.card-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 8px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 13px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}
.card-status:last-child {
  margin-bottom: 0;
}
.card-status::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 4px;
}
.card-status.card-status-video {
  background-color: #e23e57;
}
.card-status.card-status-video::before {
  background: url("../img/card-status-video.svg") no-repeat center/contain;
}
.card-status.card-status-verified {
  background-color: #3431dc;
}
.card-status.card-status-verified::before {
  background: url("../img/card-status-verified.svg") no-repeat center/contain;
}
.card-status.card-status-indi {
  background-color: #d789d7;
}
.card-status.card-status-indi::before {
  background: url("../img/card-status-indi.svg") no-repeat center/contain;
}
.card-status.card-status-available {
  background-color: #2ebe1e;
}
.card-status.card-status-available::before {
  background: url("../img/card-status-available.svg") no-repeat center/contain;
}
.card-status.card-status-archived {
  background-color: #6f7174;
}
.card-status.card-status-archived::before {
  background: url("../img/card-status-archived.svg") no-repeat center/contain;
}
.card-status.card-status-disabled {
  background-color: #e23e3e;
}
.card-status.card-status-disabled::before {
  background: url("../img/card-status-disabled.svg") no-repeat center/contain;
}

.card-bottom-info {
  padding: 15px;
}

.card-name {
  display: block;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  color: #e23e57;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 4px;
}

.card-meta ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: -3px;
  margin-right: -3px;
}
.card-meta li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #828386;
  margin-left: 3px;
  margin-right: 3px;
}
.card-meta li::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 4px;
  height: 4px;
  background-color: #e23e57;
  border-radius: 50%;
  margin-left: 6px;
}
.card-meta li:last-child::after {
  display: none;
}

.card-extra {
  display: none;
  width: 100%;
  padding: 0 15px 15px;
  background-color: #fff;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  position: absolute;
}

.card-price {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: #2f3136;
  text-align: center;
  margin-bottom: 15px;
}

.card-phone {
  display: block;
  margin-bottom: 10px;
}

.card-favorite {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.card-favorite.active .card-favorite-icon::before {
  opacity: 0;
}
.card-favorite.active .card-favorite-icon::after {
  opacity: 1;
}

.card-favorite-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #2f3136;
}

.card-favorite-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  margin-right: 10px;
}
.card-favorite-icon::before, .card-favorite-icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.card-favorite-icon::before {
  background: url("../img/card-favorite-icon.svg") no-repeat center/contain;
  opacity: 1;
}
.card-favorite-icon::after {
  background: url("../img/card-favorite-active-icon.svg") no-repeat center/contain;
  opacity: 0;
}

@media (max-width: 1199px) {
  .catalog-panels {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .catalog-selected-list li:last-child {
    margin-bottom: 32px;
  }
  .catalog-panel-left {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-bottom: 32px;
  }
  .catalog-sort {
    width: 50%;
  }
  .catalog-sort .select2-container--default .select2-selection--single {
    background-color: #171a1f;
    border-color: #171a1f;
    border-top-left-radius: 30px !important;
    border-bottom-left-radius: 30px !important;
  }
  .catalog-sort .select2-container--default .select2-selection--single .select2-selection__rendered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 12px;
    padding-right: 12px;
    font-weight: 600;
    color: #fff;
  }
  .catalog-sort .select2-container--default .select2-selection--single .select2-selection__rendered::before {
    content: "";
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: block;
    width: 20px;
    height: 20px;
    background: url("../img/sort-icon.svg") no-repeat;
    margin-right: 6px;
  }
  .catalog-sort .select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
  }
  .catalog-filters-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 50%;
    background-color: #171a1f;
    border-left: 1px solid #fff;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    cursor: pointer;
  }
  .catalog-filters-button::before {
    content: "";
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: block;
    width: 20px;
    height: 20px;
    background: url("../img/filters-button-icon.svg") no-repeat;
    margin-right: 6px;
  }
  .catalog-filters-button-label {
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    color: #fff;
  }
  .catalog-filters-button-label span {
    color: #d789d7;
  }
  .cards-col {
    width: 33.3333333333%;
  }
}
@media (max-width: 991px) {
  .cards-col {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .home-catalog-section {
    padding-top: 40px;
  }

  .catalog-panel-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  .profiles-counter-label {
    display: none;
  }
  .profiles-counter-value {
    margin-right: 0;
  }
  .catalog-layout-switcher {
    display: block;
  }
  .catalog-layout-switcher-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .catalog-layout-switcher-item {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    margin-right: 20px;
  }
  .catalog-layout-switcher-item:last-child {
    margin-right: 0;
  }
  .catalog-layout-switcher-item::before, .catalog-layout-switcher-item::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
  .catalog-layout-switcher-item::before {
    opacity: 1;
  }
  .catalog-layout-switcher-item::after {
    opacity: 0;
  }
  .catalog-layout-switcher-item.layout-grid::before {
    background: url("../img/catalog-layout-grid-icon.svg") no-repeat;
  }
  .catalog-layout-switcher-item.layout-grid::after {
    background: url("../img/catalog-layout-grid-active-icon.svg") no-repeat;
  }
  .catalog-layout-switcher-item.layout-list::before {
    background: url("../img/catalog-layout-list-icon.svg") no-repeat;
  }
  .catalog-layout-switcher-item.layout-list::after {
    background: url("../img/catalog-layout-list-active-icon.svg") no-repeat;
  }
  .catalog-layout-switcher-item.active::before {
    opacity: 0;
  }
  .catalog-layout-switcher-item.active::after {
    opacity: 1;
  }
  .cards-row {
    margin-left: -12px;
    margin-right: -12px;
    margin-top: -8px;
  }
  .cards-col {
    padding-left: 4px;
    padding-right: 4px;
    margin-top: 8px;
  }
  .card {
    background-color: #fff;
    -webkit-box-shadow: 0 4px 9px 2px rgba(23, 26, 31, 0.15);
            box-shadow: 0 4px 9px 2px rgba(23, 26, 31, 0.15);
    border-radius: 3px;
    overflow: hidden;
  }
  .card:hover .card-main {
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0;
    overflow: initial;
  }
  .card:hover .card-main-body {
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .card:hover .card-extra {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .card-main-inner {
    padding: 0;
  }
  .card-main-body {
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0;
    overflow: initial;
  }
  .card-slider .swiper-button-prev, .card-slider .swiper-button-next {
    width: 20px;
    height: 20px;
  }
  .card-slider .swiper-button-prev::before, .card-slider .swiper-button-next::before {
    width: 20px;
    height: 20px;
  }
  .card-slider-image {
    height: 69vw;
  }
  .card-status-top {
    width: 44px;
    height: 44px;
    left: 5px;
    top: 5px;
  }
  .card-status-vip {
    width: 44px;
    height: 44px;
    left: 5px;
    top: 5px;
  }
  .card-statuses {
    left: 5px;
    bottom: 5px;
  }
  .card-status {
    padding: 3px 6px;
    font-size: 10px;
    margin-bottom: 4px;
  }
  .card-status::before {
    width: 12px;
    height: 12px;
  }
  .card-bottom-info {
    padding: 10px 10px 6px;
  }
  .card-name {
    font-size: 14px;
  }
  .card-meta li {
    font-size: 12px;
  }
  .card-extra {
    display: block;
    padding: 0 10px 10px;
    border-radius: 0;
    position: static;
  }
  .card-price {
    font-size: 12px;
    margin-bottom: 0;
  }
  .card-phone {
    display: none;
  }
  .card-favorite {
    position: absolute;
    right: 8px;
    top: 8px;
    z-index: 1;
  }
  .card-favorite-icon {
    margin-right: 0;
  }
  .card-favorite-text {
    display: none;
  }
  .cards-row.cards-layout-list {
    margin-top: -16px;
  }
  .cards-row.cards-layout-list .cards-col {
    width: 100%;
    margin-top: 16px;
  }
  .cards-row.cards-layout-list .card {
    -webkit-box-shadow: 0 6px 12px 3px rgba(23, 26, 31, 0.15);
            box-shadow: 0 6px 12px 3px rgba(23, 26, 31, 0.15);
    border-radius: 4px;
  }
  .cards-row.cards-layout-list .card-slider .swiper-button-prev, .cards-row.cards-layout-list .card-slider .swiper-button-next {
    width: 24px;
    height: 24px;
  }
  .cards-row.cards-layout-list .card-slider .swiper-button-prev::before, .cards-row.cards-layout-list .card-slider .swiper-button-next::before {
    width: 24px;
    height: 24px;
  }
  .cards-row.cards-layout-list .card-slider-image {
    height: 131.11vw;
  }
  .cards-row.cards-layout-list .card-status-top {
    width: 60px;
    height: 60px;
    left: 8px;
    top: 8px;
  }
  .cards-row.cards-layout-list .card-status-vip {
    width: 60px;
    height: 60px;
    left: 8px;
    top: 8px;
  }
  .cards-row.cards-layout-list .card-statuses {
    left: 8px;
    bottom: 8px;
  }
  .cards-row.cards-layout-list .card-status {
    padding: 4px 8px;
    font-size: 13px;
    margin-bottom: 6px;
  }
  .cards-row.cards-layout-list .card-status::before {
    width: 16px;
    height: 16px;
  }
  .cards-row.cards-layout-list .card-bottom-info {
    padding: 15px 15px 6px;
  }
  .cards-row.cards-layout-list .card-name {
    font-size: 18px;
  }
  .cards-row.cards-layout-list .card-meta li {
    font-size: 16px;
  }
  .cards-row.cards-layout-list .card-extra {
    padding: 0 15px 15px;
  }
  .cards-row.cards-layout-list .card-price {
    font-size: 16px;
  }
}
.reviews-slider-section {
  padding-top: 80px;
}

.reviews-slider-wrapper {
  margin-bottom: 20px;
}

.reviews-slider {
  padding-left: calc((100vw - 960px) / 2 - 7px);
  padding-right: 30px;
}
.reviews-slider .swiper-slide {
  width: 300px;
}

.review-slide {
  padding: 24px;
  background-color: #f2f2f2;
  border: 1px solid #d1d1d2;
  border-radius: 4px;
}

.review-slide-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.review-slide-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 60px;
  height: 60px;
  padding: 2px;
  background: linear-gradient(62deg, #d789d7 0%, #e23e57 100%);
  border-radius: 50%;
  margin-right: 12px;
}

.review-slide-image-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.review-slide-image-inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.review-slide-name {
  display: block;
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  color: #e23e57;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.review-slide-meta ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: -3px;
  margin-right: -3px;
}
.review-slide-meta li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #828386;
  margin-left: 3px;
  margin-right: 3px;
}
.review-slide-meta li::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 4px;
  height: 4px;
  background-color: #e23e57;
  border-radius: 50%;
  margin-left: 6px;
}
.review-slide-meta li:last-child::after {
  display: none;
}

.review-slide-body {
  margin-bottom: 20px;
}

.review-slide-rating {
  margin-bottom: 10px;
}

.review-slide-footer-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.review-slide-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 30px;
}

.review-slide-author-name {
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: #2f3136;
  margin-right: 12px;
}

.review-slide-author-flag {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.review-slide-date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #6f7174;
}

@media (max-width: 1199px) {
  .reviews-slider {
    padding-left: calc((100vw - 900px) / 2 - 7px);
  }
}
@media (max-width: 991px) {
  .reviews-slider {
    padding-left: calc((100vw - 660px) / 2);
  }
}
@media (max-width: 767px) {
  .reviews-slider-section .section-title {
    max-width: 318px;
  }
  .reviews-slider {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.about-section {
  padding-top: 80px;
}

.about-section-content {
  max-height: 202px;
  overflow: hidden;
  color: #2f3136;
  transition: max-height 0.5s ease-out;
}
.about-section-content.expanded {
  max-height: 1200px;
}
.about-section-content p {
  margin-bottom: 1.4em;
}
.about-section-content p:last-child {
  margin-bottom: 0;
}

.about-section-button {
  width: 100%;
  max-width: 248px;
  margin-top: 32px;
}

.reviews-section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 32px;
}
.reviews-section-header .page-title {
  margin-bottom: 0;
}

.reviews-sort-panel {
  margin-bottom: 32px;
}

.reviews-sort-col {
  width: 33.3333333333%;
}

.reviews-sort-select .select2-container {
  width: 100% !important;
}

.reviews-sort-select-rating {
  max-width: 166px;
  margin-left: auto;
}
.reviews-sort-select-rating .review-rating {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 38px;
}

.review-card {
  background-color: #fff;
  -webkit-box-shadow: 0 4px 15px 3px rgba(23, 26, 31, 0.15);
          box-shadow: 0 4px 15px 3px rgba(23, 26, 31, 0.15);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
}
.review-card:last-child {
  margin-bottom: 0;
}

.review-card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 11px 32px;
  background-color: #171a1f;
}

.review-card-body {
  padding: 32px;
}

.review-card-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.review-card-left {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-item-align: start;
      align-self: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 300px;
}

.review-card-image {
  display: block;
  width: 154px;
  height: 192px;
  border-radius: 4px;
  overflow: hidden;
  margin-right: 16px;
  position: relative;
}
.review-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.review-card-info {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.review-card-name {
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  color: #e23e57;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.review-card-price {
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  color: #2f3136;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.review-card-age {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #828386;
  margin-bottom: 6px;
}

.review-card-location .product-review-author-meta ul {
  justify-content: left;
}
.review-card-location {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #828386;
  margin-bottom: 6px;
}

.review-card-count {
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  color: #2f3136;
  margin-top: auto;
}

.review-card-right {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-left: 20px;
}

.review-card-comment-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -12px;
  margin-bottom: 16px;
}

.review-card-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 30px;
  margin-top: 12px;
}

.review-card-avatar {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 36px;
  height: 36px;
  padding: 1px;
  background: linear-gradient(67deg, #d789d7 0%, #e23e57 100%);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  margin-right: 12px;
}
.review-card-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}

.review-card-avatar-letter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  font-weight: 600;
  font-size: 22px;
  line-height: 100%;
  color: #fff;
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
}

.review-card-author-name {
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  color: #171a1f;
  text-transform: uppercase;
}

.review-card-date {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #6f7174;
  margin-top: 12px;
}
.review-card-date:first-child {
  margin-left: auto;
}

.review-card-comment-text {
  padding: 24px;
  background-color: #f2f2f2;
  border: 1px solid #d1d1d2;
  border-radius: 4px;
  font-size: 16px;
  line-height: 140%;
  color: #171a1f;
}

.review-card-answer {
  padding: 24px;
  border: 1px solid #d1d1d2;
  border-radius: 4px;
  background-color: rgba(215, 137, 215, 0.2);
  margin-left: 32px;
  margin-top: 10px;
  position: relative;
}
.review-card-answer::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url("../img/review-answer-icon.svg") no-repeat;
  position: absolute;
  left: -32px;
  top: -1px;
}

.review-card-answer-header {
  margin-bottom: 10px;
}

.review-card-answer-name {
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  color: #171a1f;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .review-card-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .review-card-left {
    width: 100%;
    margin-bottom: 20px;
  }
  .review-card-right {
    width: 100%;
    padding-left: 0;
  }
  .review-card-date:first-child {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .reviews-sort-col {
    width: 100%;
    margin-bottom: 16px;
  }
  .reviews-sort-col:last-child {
    margin-bottom: 0;
  }
  .reviews-sort-select-rating {
    max-width: 100%;
    margin-left: auto;
  }
  .review-card-header {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 11px 20px;
  }
  .review-card-body {
    padding: 20px;
  }
  .review-card-image {
    margin-right: 12px;
  }
  .review-card-comment-header {
    margin-bottom: 12px;
  }
  .review-card-author {
    width: 100%;
    margin-right: 0;
  }
  .review-card-comment-text {
    padding: 16px;
  }
  .review-card-answer {
    padding: 16px;
  }
  .review-card-answer-header {
    margin-bottom: 6px;
  }
}
.agencies-section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 32px;
}
.agencies-section-header .page-title {
  margin-bottom: 0;
}

.agencies-cards-row {
  margin-top: -30px;
}

.agencies-cards-col {
  width: 50%;
  margin-top: 30px;
}

.agency-card {
  height: 100%;
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px 3px rgba(23, 26, 31, 0.15);
          box-shadow: 0 6px 12px 3px rgba(23, 26, 31, 0.15);
  overflow: hidden;
}

.agency-card-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.agency-card-left {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 218px;
}

.agency-card-right {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.agency-card-info {
  padding: 20px;
}

.agency-card-name {
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  color: #e23e57;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.agency-card-meta ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -3px;
  margin-right: -3px;
}
.agency-card-meta li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #828386;
  margin-left: 3px;
  margin-right: 3px;
}
.agency-card-meta li::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 4px;
  height: 4px;
  background-color: #e23e57;
  border-radius: 50%;
  margin-left: 6px;
}
.agency-card-meta li:last-child::after {
  display: none;
}

.agency-card-statistics {
  margin-top: 6px;
}
.agency-card-statistics ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -8px;
}
.agency-card-statistics li {
  padding: 0 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #828386;
}
.agency-card-statistics li strong {
  font-weight: 600;
  color: #e23e57;
}

.agency-card-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #2f3136;
  margin-top: 12px;
}

@media (max-width: 1199px) {
  .agencies-cards-col {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .agencies-cards-row {
    margin-top: -24px;
  }
  .agencies-cards-col {
    margin-top: 24px;
  }
  .agency-card-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .agency-card-left {
    width: 100%;
  }
  .agency-card-left .card-slider-image {
    height: 131.11vw;
  }
  .agency-card-right {
    width: 100%;
  }
  .agency-card-name {
    width: 100%;
    text-align: center;
  }
  .agency-card-meta ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .agency-card-meta li {
    text-align: center;
  }
  .agency-card-statistics ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .agency-card-statistics li {
    text-align: center;
  }
}
.advertise-cards {
  margin-bottom: 32px;
}

.advertise-cards-row {
  margin-top: -30px;
}

.advertise-cards-col {
  width: 33.3333333333%;
  margin-top: 30px;
}

.advertise-card {
  position: relative;
}
.advertise-card.advertise-card-1 .advertise-card-list {
  max-width: 170px;
}
.advertise-card.advertise-card-2 .advertise-card-list {
  max-width: 160px;
}
.advertise-card.advertise-card-3 .advertise-card-list {
  max-width: 162px;
}

.advertise-card-image {
  position: absolute;
  right: 0;
  bottom: 0;
}

.advertise-card-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 328px;
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 20px 3px rgba(23, 26, 31, 0.15);
          box-shadow: 0 6px 20px 3px rgba(23, 26, 31, 0.15);
  overflow: hidden;
  position: relative;
}
.advertise-card-inner::before {
  content: "";
  display: block;
  width: 397px;
  height: 576px;
  background: url("../img/advertise-card-background.svg") no-repeat;
  position: absolute;
  right: -144px;
  top: -92px;
}

.advertise-card-header {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 10px;
  background-color: #171a1f;
  position: relative;
}

.advertise-card-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}

.advertise-card-body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px 16px;
  position: relative;
}

.advertise-card-list {
  margin-bottom: 20px;
}
.advertise-card-list li {
  padding-left: 22px;
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: #171a1f;
  position: relative;
  margin-bottom: 6px;
}
.advertise-card-list li:last-child {
  margin-bottom: 0;
}
.advertise-card-list li::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url("../img/advertise-card-list-icon.svg") no-repeat;
  position: absolute;
  left: 0;
  top: 2px;
}

.advertise-card-button {
  margin-top: auto;
}
.advertise-card-button .button {
  width: 128px;
}

.advertise-card-active {
  width: 110px;
  height: 110px;
  background: url("../img/advertise-card-active-status.svg") no-repeat center/contain;
  position: absolute;
  right: -6px;
  top: -6px;
}

@media (max-width: 1199px) {
  .advertise-cards-col {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .advertise-cards-row {
    margin-top: -24px;
  }
  .advertise-cards-col {
    width: 100%;
    margin-top: 24px;
  }
  .advertise-banner-link textarea {
    height: 200px;
  }
}
.product-section {
  margin-top: -32px;
}

.product-section-archive {
  margin-top: 0;
}

.product-hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 300px;
  position: relative;
  margin-bottom: 24px;
}

.product-hero-cover {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.product-hero-cover::after {
  content: "";
  display: block;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(23, 26, 31, 0.6)), to(rgba(23, 26, 31, 0.6)));
  background: linear-gradient(180deg, rgba(23, 26, 31, 0.6) 0%, rgba(23, 26, 31, 0.6) 100%);
  opacity: 0.6;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.product-hero-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-hero-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding: 30px;
  position: relative;
}

.product-hero-title {
  font-weight: bold;
  font-size: 40px;
  line-height: 100%;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
}

.product-status-top {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100px;
  height: 100px;
  background: url("../img/status-top-icon.svg") no-repeat center/contain;
  margin: 12px auto;
}

.product-status-vip {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100px;
  height: 100px;
  background: url("../img/status-vip-icon.svg") no-repeat center/contain;
  margin: 12px auto;
}

.product-hero-button {
  text-align: center;
  margin-top: 12px;
}
.product-hero-button .button {
  width: 184px;
}

.product-nav-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -10px;
}

.product-nav-col {
  padding: 0 10px;
}

.product-nav {
  position: absolute;
  right: 0;
  top: calc(100% + 20px);
}

.product-nav-link {
  display: block;
  width: 36px;
  height: 36px;
  background-color: #fff;
  border: 1px solid #d1d1d2;
  border-radius: 2px;
  position: relative;
}
.product-nav-link::before, .product-nav-link::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.product-nav-link::before {
  background: url("../img/pagination-arrow-icon.svg") no-repeat center;
  opacity: 1;
}
.product-nav-link::after {
  background: url("../img/pagination-arrow-active-icon.svg") no-repeat center;
  opacity: 0;
}
.product-nav-link:hover {
  background: linear-gradient(158deg, #d789d7 0%, #e23e57 100%);
  border: none;
}
.product-nav-link:hover::before {
  opacity: 0;
}
.product-nav-link:hover::after {
  opacity: 1;
}

.product-nav-link-next {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.product-col-top {
  width: 100%;
  min-height: 50px;
}

.product-col-left {
  width: 380px;
}

.product-col-right {
  width: calc(100% - 380px);
}

.product-statuses {
  padding-right: 122px;
}

.product-statuses-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -6px;
  margin-right: -6px;
}

.product-statuses-col {
  padding: 0 6px;
  margin-bottom: 12px;
}
.product-statuses-col:last-child {
  margin-bottom: 24px;
}

.product-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 13px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
}
.product-status::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 4px;
}
.product-status.product-status-video {
  background-color: #e23e57;
}
.product-status.product-status-video::before {
  background: url("../img/card-status-video.svg") no-repeat center/contain;
}
.product-status.product-status-indi {
  background-color: #d789d7;
}
.product-status.product-status-indi::before {
  background: url("../img/card-status-indi.svg") no-repeat center/contain;
}
.product-status.product-status-verified {
  background-color: #3431dc;
}
.product-status.product-status-verified::before {
  background: url("../img/card-status-verified.svg") no-repeat center/contain;
}
.product-status.product-status-available {
  background-color: #2ebe1e;
}
.product-status.product-status-available::before {
  background: url("../img/card-status-available.svg") no-repeat center/contain;
}
.product-status.product-status-archived {
  background-color: #6f7174;
}
.product-status.product-status-archived::before {
  background: url("../img/card-status-archived.svg") no-repeat center/contain;
}
.product-status.product-status-disabled {
  background-color: #e23e3e;
}
.product-status.product-status-disabled::before {
  background: url("../img/card-status-disabled.svg") no-repeat center/contain;
}

.product-gallery {
  padding: 15px;
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 15px 3px rgba(23, 26, 31, 0.15);
          box-shadow: 0 4px 15px 3px rgba(23, 26, 31, 0.15);
}

.product-gallery-slider {
  border-radius: 4px;
  overflow: hidden;
}
.product-gallery-slider .swiper-slide {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.product-gallery-slider .swiper-button-prev, .product-gallery-slider .swiper-button-next {
  width: 24px;
  height: 24px;
  margin: 0;
}
.product-gallery-slider .swiper-button-prev::before, .product-gallery-slider .swiper-button-next::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("../img/card-slider-arrow.svg") no-repeat center/contain;
}
.product-gallery-slider .swiper-button-prev::after, .product-gallery-slider .swiper-button-next::after {
  display: none;
}
.product-gallery-slider .swiper-button-prev.swiper-button-disabled, .product-gallery-slider .swiper-button-next.swiper-button-disabled {
  opacity: 1;
}
.product-gallery-slider .swiper-button-prev.swiper-button-disabled::before, .product-gallery-slider .swiper-button-next.swiper-button-disabled::before {
  background: url("../img/card-slider-arrow-disabled.svg") no-repeat center/contain;
}
.product-gallery-slider .swiper-button-prev {
  left: 8px;
}
.product-gallery-slider .swiper-button-next {
  right: 8px;
}
.product-gallery-slider .swiper-button-next::before {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.product-gallery-slider-image {
  display: block;
  height: 400px;
}
.product-gallery-slider-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-gallery-thumbs {
  margin-top: 10px;
}

.product-gallery-thumbs-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
  margin-top: -10px;
}

.product-gallery-thumbs-col {
  width: 33.3333333333%;
  padding: 0 5px;
  margin-top: 10px;
}

.product-gallery-thumb {
  display: block;
  height: 100px;
  border-radius: 4px;
  overflow: hidden;
}
.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-video {
  margin-top: 20px;
}

.product-video-wrapper video {
  width: 100%;
}

.product-title {
  padding-bottom: 8px;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  margin-bottom: 20px;
  position: relative;
}
.product-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  background: linear-gradient(67deg, #d789d7 0%, #e23e57 100%);
  border-radius: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.product-title span {
  color: #e23e57;
}

.product-parameters {
  margin-top: 40px;
}

.product-parameters-list {
  padding: 24px;
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 15px 3px rgba(23, 26, 31, 0.15);
          box-shadow: 0 4px 15px 3px rgba(23, 26, 31, 0.15);
}

.product-parameter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 12px;
}
.product-parameter:last-child {
  margin-bottom: 0;
}

.product-parameter-label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 116px;
  padding-right: 20px;
  color: #6f7174;
}

.product-parameter-value {
  color: #171a1f;
}

.product-parameter-language {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 6px;
}

.product-parameter-language:last-child {
  margin-bottom: 0;
}

.product-parameter-language-label {
  margin-right: 12px;
}

.product-parameter-language-rating .review-rating-star {
  width: 16px;
  height: 16px;
}

.product-activity {
  padding: 18px 10px;
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 15px 3px rgba(23, 26, 31, 0.15);
          box-shadow: 0 4px 15px 3px rgba(23, 26, 31, 0.15);
}

.product-activity-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-activity-col {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0 28px;
  border-right: 1px solid #d789d7;
}
.product-activity-col:last-child {
  -ms-flex-negative: initial;
      flex-shrink: initial;
  border-right: none;
}

.product-activity-item-label {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: #6f7174;
  margin-bottom: 4px;
}

.product-activity-item-value {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #171a1f;
}

.product-stories {
  margin-top: 20px;
}

.product-contacts {
  margin-top: 40px;
}

.product-contacts-block {
  padding: 24px;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 15px 3px rgba(23, 26, 31, 0.15);
          box-shadow: 0 4px 15px 3px rgba(23, 26, 31, 0.15);
  border-radius: 4px;
}

.product-contacts-phone-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-contacts-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  font-size: 20px;
  line-height: 140%;
  color: #171a1f;
  white-space: nowrap;
  margin-right: 30px;
}
.product-contacts-phone::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 32px;
  height: 32px;
  background: url("../img/product-phone-icon.svg") no-repeat center/contain;
  margin-right: 12px;
}

.product-contacts-messengers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-contacts-messenger {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin-right: 16px;
}
.product-contacts-messenger:last-child {
  margin-right: 0;
}
.product-contacts-messenger.messenger-whatsapp {
  background: url("../img/messenger-whatsapp-icon.svg") no-repeat center/contain;
}
.product-contacts-messenger.messenger-telegram {
  background: url("../img/messenger-telegram-icon.svg") no-repeat center/contain;
}
.product-contacts-messenger.messenger-viber {
  background: url("../img/messenger-viber-icon.svg") no-repeat center/contain;
}
.product-contacts-messenger.messenger-wechat {
  background: url("../img/messenger-wechat-icon.svg") no-repeat center/contain;
}

.product-contacts-socials {
  margin-top: 20px;
}
.product-contacts-socials li {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #171a1f;
  margin-bottom: 6px;
}
.product-contacts-socials li:last-child {
  margin-bottom: 0;
}
.product-contacts-socials a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-contacts-socials a::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 28px;
  height: 28px;
  margin-right: 12px;
}
.product-contacts-socials .social-onlyfans::before {
  background: url("../img/social-onlyfans-icon.svg") no-repeat center / contain;
}
.product-contacts-socials .social-instagram::before {
  background: url("../img/social-instagram-icon.svg") no-repeat center / contain;
}
.product-contacts-socials .social-username {
  text-decoration: underline;
}

.product-contacts-locations {
  margin-top: 20px;
}

.product-contacts-locations-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -24px;
  margin-right: -24px;
  margin-top: -16px;
}

.product-contacts-locations-col {
  padding: 0 24px;
  margin-top: 16px;
}

.product-contacts-location {
  display: flex;
  align-items: center;
}

.product-contacts-location::before {
  content: '';
  flex-shrink: 0;
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.product-contacts-location-country::before {
  background: url('../img/product-contacts-country-icon.svg') no-repeat;
}

.product-contacts-location-city::before {
  background: url('../img/product-contacts-city-icon.svg') no-repeat;
}

.product-contacts-location-value {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #6f7174;
}

.product-contacts-location-value strong {
  font-weight: 500;
  color: #171a1f;
}

.product-contacts-website {
  display: flex;
  align-items: center;
  margin-top: 24px;
}

.product-contacts-website::before {
  content: '';
  flex-shrink: 0;
  display: block;
  width: 24px;
  height: 24px;
  background: url('../img/product-contacts-website-icon.svg') no-repeat;
  margin-right: 10px;
}

.product-contacts-website-value {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #6f7174;
}

.product-contacts-website-value a {
  color: #171a1f;
  word-break: break-all;
}

.product-contacts-message {
  margin-top: 24px;
}

.product-contacts-message .button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 443px;
}

.product-contacts-message .button::before {
  content: '';
  flex-shrink: 0;
  display: block;
  width: 20px;
  height: 20px;
  background: url('../img/write-message-button-icon.svg') no-repeat;
  margin-right: 10px;
}

.product-contacts-buttons {
  margin-top: 20px;
}

.product-contacts-buttons-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
  margin-top: -16px;
}

.product-contacts-buttons-col {
  padding: 0 8px;
  margin-top: 16px;
}

.product-contacts-warning {
  margin-top: 24px;
}

.product-contacts-warning-inner {
  padding-left: 36px;
  padding-right: 8px;
  font-weight: 500;
  font-size: 12px;
  line-height: 140%;
  color: #2f3136;
  position: relative;
}

.product-contacts-warning-inner::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url('../img/warning-icon.svg') no-repeat;
  position: absolute;
  left: 0;
  top: calc(50% - 12px);
}

.product-about {
  margin-top: 40px;
}

.product-about-text {
  font-size: 16px;
  line-height: 140%;
  color: #2f3136;
}

.product-schedule {
  margin-top: 40px;
}

.product-schedule-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 20px;
}

.product-schedule-header .product-title {
  margin-right: 10px;
  margin-bottom: 0;
}

.product-schedule-header .product-schedule-available {
  margin-top: 3px;
}

.product-schedule-available {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  background-color: #2ebe1e;
  border-radius: 20px;
  font-weight: bold;
  font-size: 13px;
  line-height: 100%;
  color: #fff;
  text-transform: uppercase;
}

.product-schedule-available::before {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 16px;
  height: 16px;
  background: url('../img/card-status-available.svg') no-repeat center / contain;
  margin-right: 4px;
}

.product-schedule-table {
  border: 1px solid #d1d1d2;
  border-radius: 4px;
  overflow: hidden;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #2f3136;
}

.product-schedule-table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #d1d1d2;
}

.product-schedule-table-row:last-child {
  border-bottom: none;
}

.product-schedule-table-col {
  padding: 11px 24px;
}

.product-schedule-table-col:nth-child(1) {
  width: 34%;
}

.product-schedule-table-col:nth-child(2) {
  width: 66%;
  text-align: center;
}

.product-schedule-table-header {
  background-color: #f2f2f2;
  font-weight: bold;
  color: #171a1f;
  text-transform: uppercase;
}

.product-schedule-table-header .product-schedule-table-col {
  padding-top: 12px;
  padding-bottom: 12px;
}

.product-schedule-table-body .product-schedule-table-col:nth-child(2) {
  font-weight: 600;
  color: #2ebe1e;
}

.product-schedule-timezone {
  font-weight: 600;
  line-height: 130%;
  margin-top: 12px;
}

.product-schedule-timezone strong {
  font-weight: 600;
  color: #2ebe1e;
}

.product-schedule-block {
  padding: 24px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 15px 3px rgba(23, 26, 31, 0.15);
}

.product-schedule-block-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -10px;
  margin-right: -10px;
  margin-top: -16px;
}

.product-schedule-block-col {
  padding: 0 10px;
  margin-top: 16px;
}

.product-schedule-block-text {
  color: #2f3136;
}

.product-rates {
  margin-top: 40px;
}

.product-rates-table {
  background-color: #f2f2f2;
  border-radius: 4px;
  overflow: hidden;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #2f3136;
}

.product-rates-table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #fff;
}
.product-rates-table-row:last-child {
  border-bottom: none;
}

.product-rates-table-col {
  padding: 12px 24px;
  text-align: center;
}
.product-rates-table-col:nth-child(1) {
  width: 28%;
  text-align: left;
}
.product-rates-table-col:nth-child(2) {
  width: 36%;
}
.product-rates-table-col:nth-child(3) {
  width: 36%;
}

.product-rates-table-header {
  background: linear-gradient(182deg, #d789d7 0%, #e23e57 100%);
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
}

.product-rates-table-body .product-rates-table-col:nth-child(2), .product-rates-table-body .product-rates-table-col:nth-child(3) {
  font-weight: bold;
  color: #e23e57;
}

.product-warning {
  padding: 1px;
  background: linear-gradient(67deg, #d789d7 0%, #e23e57 100%);
  border-radius: 4px;
  margin-top: 16px;
}

.product-warning-inner {
  padding: 20px;
  padding-left: 60px;
  background-color: #f2f2f2;
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #171a1f;
  position: relative;
}
.product-warning-inner::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("../img/warning-icon.svg") no-repeat;
  position: absolute;
  left: 19px;
  top: 19px;
}

.product-services {
  margin-top: 40px;
}

.product-services-table {
  border: 1px solid #d1d1d2;
  border-radius: 4px;
  overflow: hidden;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #2f3136;
}
.product-services-table .yes {
  display: block;
  width: 24px;
  height: 24px;
  background: url("../img/services-table-yes-icon.svg") no-repeat center/contain;
  margin: 0 auto;
}
.product-services-table .no {
  display: block;
  width: 24px;
  height: 24px;
  background: url("../img/services-table-no-icon.svg") no-repeat center/contain;
  margin: 0 auto;
}

.product-services-table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #d1d1d2;
}
.product-services-table-row:last-child {
  border-bottom: none;
}

.product-services-table-col {
  padding: 11px 24px;
  text-align: center;
}
.product-services-table-col:nth-child(1) {
  width: 40%;
  text-align: left;
}
.product-services-table-col:nth-child(2) {
  width: 30%;
}
.product-services-table-col:nth-child(3) {
  width: 30%;
}

.product-services-table-header {
  background-color: #f2f2f2;
  font-weight: bold;
  color: #171a1f;
  text-transform: uppercase;
}
.product-services-table-header .product-services-table-col {
  padding-top: 12px;
  padding-bottom: 12px;
}

.product-services-table-body .product-services-table-col:nth-child(3) {
  font-weight: bold;
  color: #e23e57;
}

.product-reviews {
  margin-top: 40px;
}

.product-reviews-button .button {
  width: 184px;
}

.product-reviews-list {
  margin-top: 40px;
}

.product-review {
  margin-bottom: 32px;
}
.product-review:last-child {
  margin-bottom: 0;
}

.product-review-comment {
  padding: 24px;
  background-color: #f2f2f2;
  border: 1px solid #d1d1d2;
  border-radius: 4px;
}

.product-review-comment-header {
  margin-bottom: 20px;
}

.product-review-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-review-avatar {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 60px;
  height: 60px;
  padding: 2px;
  background: linear-gradient(67deg, #d789d7 0%, #e23e57 100%);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  margin-right: 12px;
}
.product-review-avatar a {
  display: inline;
}
.product-review-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}

.product-review-avatar-letter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  font-weight: 600;
  font-size: 35px;
  line-height: 100%;
  color: #fff;
  text-transform: uppercase;
  position: absolute;
  left: 2px;
  right: 2px;
  top: 2px;
  bottom: 2px;
}

.product-review-author-name {
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  color: #171a1f;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.product-review-author-meta ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: -3px;
  margin-right: -3px;
}
.product-review-author-meta li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #828386;
  margin-left: 3px;
  margin-right: 3px;
}
.product-review-author-meta li::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 4px;
  height: 4px;
  background-color: #e23e57;
  border-radius: 50%;
  margin-left: 6px;
}
.product-review-author-meta li:last-child::after {
  display: none;
}

.product-review-rating {
  margin-bottom: 10px;
}

.product-review-text {
  font-size: 16px;
  line-height: 140%;
  color: #171a1f;
}

.product-review-date {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #6f7174;
  margin-top: 20px;
}

.product-review-date .review-action {
  color: #3431dc;
  text-decoration: underline;
  margin-right: 16px;
}

.product-review-form {
  display: none;
  margin-top: 24px;
}

.product-review-form .form-submit-item {
  text-align: left;
}

.product-review-answer {
  padding: 24px;
  border: 1px solid #d1d1d2;
  border-radius: 4px;
  background-color: rgba(215, 137, 215, 0.2);
  margin-left: 32px;
  margin-top: 10px;
  position: relative;
}
.product-review-answer::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url("../img/review-answer-icon.svg") no-repeat;
  position: absolute;
  left: -32px;
  top: -1px;
}

.product-review-answer-header {
  margin-bottom: 10px;
}

.product-review-answer-name {
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  color: #171a1f;
  text-transform: uppercase;
}

.agency-products-section {
  padding-top: 60px;
}

@media (max-width: 991px) {
  .product-hero-content {
    padding: 30px 60px;
  }
  .product-nav {
    position: static;
  }
  .product-nav-link {
    position: absolute;
    top: calc(50% - 18px);
  }
  .product-nav-link-prev {
    left: 16px;
  }
  .product-nav-link-next {
    right: 16px;
  }
  .product-col-top {
    min-height: 0;
    margin-bottom: 20px;
  }
  .product-col-left {
    width: 100%;
  }
  .product-col-right {
    width: 100%;
  }
  .product-statuses {
    padding-right: 0;
  }
  .product-gallery-slider-image {
    height: 788px;
  }
  .product-gallery-thumbs-col {
    width: 25%;
  }
  .product-gallery-thumb {
    height: 150px;
  }
}
@media (max-width: 767px) {
  .product-hero {
    min-height: 62.22vw;
    margin-left: -16px;
    margin-right: -16px;
    margin-bottom: 20px;
  }
  .product-hero-content {
    padding: 20px 60px;
  }
  .product-hero-title {
    font-size: 32px;
    margin-bottom: 8px;
  }
  .product-status-top {
    width: 80px;
    height: 80px;
    margin: 8px auto;
  }
  .product-status-vip {
    width: 80px;
    height: 80px;
    margin: 8px auto;
  }
  .product-hero-button {
    margin-top: 8px;
  }
  .product-hero-button .button {
    padding: 9px 18px;
  }
  .product-statuses-col:last-child {
    margin-bottom: 20px;
  }
  .product-activity {
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .product-activity-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -4px;
    margin-right: -4px;
    margin-top: -8px;
  }
  .product-activity-col {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 50%;
    padding: 0 4px;
    border-right: none;
    margin-top: 8px;
  }
  .product-activity-item {
    padding: 14px;
    background-color: #fff;
    border-radius: 4px;
    -webkit-box-shadow: 0 3px 8px 2px rgba(23, 26, 31, 0.15);
            box-shadow: 0 3px 8px 2px rgba(23, 26, 31, 0.15);
    text-align: center;
  }
  .product-gallery-slider-image {
    height: 104.17vw;
  }
  .product-gallery-thumbs-row {
    margin-left: -4px;
    margin-right: -4px;
    margin-top: -8px;
  }
  .product-gallery-thumbs-col {
    width: 33.3333333333%;
    padding: 0 4px;
    margin-top: 8px;
  }
  .product-gallery-thumb {
    height: 26.11vw;
  }
  .product-parameters-list {
    padding: 20px 16px;
  }
  .product-parameter-label {
    width: 110px;
    padding-right: 14px;
  }
  .product-contacts {
    margin-top: 60px;
  }
  .product-contacts-block {
    padding: 20px;
  }
  .product-contacts-phone {
    font-size: 18px;
    margin-right: 18px;
  }
  .product-contacts-phone::before {
    width: 28px;
    height: 28px;
    margin-right: 8px;
  }
  .product-contacts-messenger {
    width: 28px;
    height: 28px;
    margin-right: 10px;
  }
  .product-contacts-locations-row {
    margin-left: -16px;
    margin-right: -16px;
    margin-top: -8px;
  }
  .product-contacts-locations-col {
    padding: 0 16px;
    margin-top: 8px;
  }
  .product-contacts-warning-inner::before {
    top: 0;
  }
  .product-about {
    margin-top: 60px;
  }
  .product-schedule-table-col {
    padding: 11px 16px;
  }
  .product-schedule-table-col:nth-child(1) {
    width: 48%;
  }
  .product-schedule-table-col:nth-child(2) {
    width: 52%;
  }
  .product-schedule-block {
    padding: 20px;
  }
  .product-rates {
    margin-top: 60px;
  }
  .product-rates-table-col {
    padding: 12px 16px;
  }
  .product-rates-table-col:nth-child(1) {
    width: 32%;
  }
  .product-rates-table-col:nth-child(2) {
    width: 34%;
  }
  .product-rates-table-col:nth-child(3) {
    width: 34%;
  }
  .product-warning-inner {
    padding: 16px;
    padding-left: 56px;
  }
  .product-warning-inner::before {
    top: 15px;
  }
  .product-services {
    margin-top: 60px;
  }
  .product-services-table {
    font-size: 14px;
  }
  .product-services-table .yes {
    width: 20px;
    height: 20px;
  }
  .product-services-table .no {
    width: 20px;
    height: 20px;
  }
  .product-services-table-col {
    padding: 13px 12px;
  }
  .product-services-table-col:nth-child(1) {
    width: 50%;
  }
  .product-services-table-col:nth-child(2) {
    width: 25%;
    padding-left: 0;
    padding-right: 0;
  }
  .product-services-table-col:nth-child(3) {
    width: 25%;
    padding-left: 8px;
    padding-right: 8px;
  }
  .product-services-table-header .product-services-table-col {
    padding-top: 13px;
    padding-bottom: 13px;
  }
  .product-services-table-header .product-services-table-col:nth-child(2) {
    padding-left: 0;
    padding-right: 0;
  }
  .product-services-table-header .product-services-table-col:nth-child(3) {
    padding-left: 8px;
    padding-right: 8px;
  }
  .product-reviews {
    margin-top: 60px;
  }
  .product-reviews-list {
    margin-top: 30px;
  }
  .product-review {
    margin-bottom: 24px;
  }
  .product-review-form .form-submit-item .button {
    max-width: 100%;
  }
  .product-review-comment {
    padding: 20px;
  }
  .product-review-answer {
    padding: 20px;
  }
}
.products-slider-section {
  padding-top: 80px;
}

.products-slider-wrapper {
  margin-bottom: 32px;
}

.products-slider {
  padding-left: calc((100vw - 960px) / 2 - 7px);
  padding-right: 30px;
  padding-bottom: 20px;
  margin-bottom: -20px;
}
.products-slider > .swiper-wrapper > .swiper-slide {
  width: 218px;
}
.products-slider .card:hover .card-main {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.products-slider .card:hover .card-extra {
  display: none;
}
.products-slider .card-main-inner {
  padding: 0;
}

@media (max-width: 1199px) {
  .products-slider {
    padding-left: calc((100vw - 900px) / 2 - 7px);
  }
}
@media (max-width: 991px) {
  .products-slider {
    padding-left: calc((100vw - 660px) / 2);
  }
}
@media (max-width: 767px) {
  .products-slider-wrapper {
    margin-bottom: 20px;
  }
  .products-slider {
    padding-left: 16px;
    padding-right: 16px;
  }
  .products-slider .card-slider .swiper-button-prev, .products-slider .card-slider .swiper-button-next {
    width: 24px;
    height: 24px;
  }
  .products-slider .card {
    border-radius: 4px;
  }
  .products-slider .card-slider-image {
    height: 312px;
  }
  .products-slider .card-status-top {
    width: 60px;
    height: 60px;
    left: 8px;
    top: 8px;
  }
  .products-slider .card-status-vip {
    width: 60px;
    height: 60px;
    left: 8px;
    top: 8px;
  }
  .products-slider .card-statuses {
    left: 8px;
    bottom: 8px;
  }
  .products-slider .card-status {
    padding: 4px 8px;
    font-size: 13px;
    margin-bottom: 6px;
  }
  .products-slider .card-status:last-child {
    margin-bottom: 0;
  }
  .products-slider .card-bottom-info {
    padding: 15px;
  }
  .products-slider .card-name {
    font-size: 18px;
  }
  .products-slider .card-meta li {
    font-size: 16px;
  }
  .products-slider .card-extra {
    display: none;
  }
}
.account-nav {
  padding: 9px;
  background-color: #f2f2f2;
  border-radius: 4px;
  margin-bottom: 40px;
}
.account-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -4px;
  margin-right: -4px;
}
.account-nav li {
  width: 20%;
  padding: 0 4px;
}
.account-nav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 160px;
  padding: 0 8px;
  border-radius: 4px;
}
.account-nav a:hover {
  background-color: #171a1f;
}
.account-nav a:hover .account-nav-icon img:nth-child(1) {
  display: none;
}
.account-nav a:hover .account-nav-icon img:nth-child(2) {
  display: block;
}
.account-nav a:hover .account-nav-text {
  color: #fff;
}
.account-nav .current a {
  background-color: #171a1f;
}
.account-nav .current .account-nav-icon img:nth-child(1) {
  display: none;
}
.account-nav .current .account-nav-icon img:nth-child(2) {
  display: block;
}
.account-nav .current .account-nav-text {
  color: #fff;
}

.account-nav-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 56px;
}
.account-nav-icon img:nth-child(1) {
  display: block;
}
.account-nav-icon img:nth-child(2) {
  display: none;
}

.account-nav-text {
  font-weight: bold;
  font-size: 16px;
  line-height: 140%;
  color: #828386;
  text-transform: uppercase;
  text-align: center;
  margin-top: 10px;
}
.account-nav-text span {
  color: #d789d7;
}

.account-section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 32px;
}
.account-section-header .page-title {
  margin-right: 30px;
  margin-bottom: 0;
}

.account-buttons-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
}

.account-buttons-col {
  padding: 0 15px;
}
.account-buttons-col .button {
  width: 218px;
  padding: 12px 20px;
}

.account-statistics {
  padding-top: 8px;
  margin-bottom: 40px;
}

.account-statistics-row {
  margin-top: -30px;
}

.account-statistics-col {
  width: 33.3333333333%;
  margin-top: 30px;
}

.account-statistics-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.account-statistics-card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 16px;
  background-color: #2f3136;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  color: #fff;
}
.account-statistics-card-header::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.account-statistics-card-header.icon-1::before {
  background: url("../img/account-statistics-card-icon-1.svg") no-repeat;
}
.account-statistics-card-header.icon-2::before {
  background: url("../img/account-statistics-card-icon-2.svg") no-repeat;
}
.account-statistics-card-header.icon-3::before {
  background: url("../img/account-statistics-card-icon-3.svg") no-repeat;
}

.account-statistics-card-list {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 18px;
  background-color: #fff;
  border: 1px solid #d1d1d2;
  border-top: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.account-statistics-card-list li {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #2f3136;
  margin-bottom: 16px;
}
.account-statistics-card-list li:last-child {
  margin-bottom: 0;
}
.account-statistics-card-list li strong {
  font-weight: 600;
  font-size: 20px;
  color: #e23e57;
}

.account-client-panel {
  padding: 32px 52px;
  background-color: #f2f2f2;
  border: 1px solid #d1d1d2;
  border-radius: 4px;
  margin-bottom: 60px;
}

.account-client-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -8px;
}

.account-client-col {
  padding: 0 8px;
}
.account-client-col:first-child {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.account-client-avatar {
  width: 60px;
  height: 60px;
  padding: 2px;
  background: linear-gradient(67deg, #d789d7 0%, #e23e57 100%);
  border-radius: 50%;
  position: relative;
}
.account-client-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}

.account-client-name-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 12px;
}

.account-client-name {
  font-weight: bold;
  font-size: 18px;
  line-height: 20px;
  color: #171a1f;
  margin-right: 16px;
}

.account-client-level {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 20px;
  height: 20px;
  position: relative;
  margin-top: -3px;
}
.account-client-level::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
}
.account-client-level.level-0::before {
  content: "";
  background: url("../img/level-0-icon.svg") no-repeat;
}
.account-client-level.level-1::before {
  content: "";
  background: url("../img/level-1-icon.svg") no-repeat;
}
.account-client-level.level-2::before {
  content: "";
  background: url("../img/level-2-icon.svg") no-repeat;
}
.account-client-level.level-3::before {
  content: "";
  background: url("../img/level-3-icon.svg") no-repeat;
}
.account-client-level.level-4::before {
  content: "";
  background: url("../img/level-4-icon.svg") no-repeat;
}

.account-client-link {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: #3431dc;
  text-decoration: underline;
}

.account-client-statistics {
  margin-top: 20px;
}
.account-client-statistics li {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #43454a;
  margin-bottom: 12px;
}
.account-client-statistics li:last-child {
  margin-bottom: 0;
}
.account-client-statistics li strong {
  font-weight: 500;
  color: #171a1f;
}

.account-info {
  padding: 1px;
  background: linear-gradient(67deg, #d789d7 0%, #e23e57 100%);
  border-radius: 4px;
}
.account-info.without-icon .account-info-inner {
  padding: 20px;
}
.account-info.without-icon .account-info-inner::before {
  display: none;
}

.account-info-inner {
  padding: 20px;
  padding-left: 60px;
  background-color: #f2f2f2;
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #171a1f;
  position: relative;
}
.account-info-inner::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("../img/warning-icon.svg") no-repeat;
  position: absolute;
  left: 19px;
  top: 19px;
}
.account-info-inner p {
  margin-bottom: 16px;
}
.account-info-inner p:last-child {
  margin-bottom: 0;
}
.account-info-inner a {
  display: inline;
  color: #3431dc;
  text-decoration: underline;
}
.account-info-inner strong {
  font-weight: bold;
  color: #e23e57;
}

.account-cards-controls {
  margin-top: 40px;
  margin-bottom: 40px;
}

.account-cards-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.account-cards-control {
  margin-right: 24px;
}

.account-cards-control-4 {
  margin-left: auto;
  margin-right: 0;
}

.account-cards-control-select .checkbox .checkbox-checkmark {
  width: 24px;
  height: 24px;
  margin-top: -1px;
}

.account-cards-control-actions {
  width: 232px;
}
.account-cards-control-actions .select2-container {
  width: 100% !important;
}

.account-cards-control-selected {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #2f3136;
}
.account-cards-control-selected strong {
  font-weight: 500;
  font-size: 20px;
  color: #e23e57;
}

.account-cards-control-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.account-cards-control-label {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #2f3136;
  margin-right: 16px;
}

.account-cards-control-sort {
  width: 232px;
}
.account-cards-control-sort .select2-container {
  width: 100% !important;
}

.account-cards-row {
  margin-top: -30px;
}

.account-cards-col {
  width: 33.3333333333%;
  margin-top: 30px;
}

.account-card {
  height: 100%;
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px 3px rgba(23, 26, 31, 0.15);
          box-shadow: 0 6px 12px 3px rgba(23, 26, 31, 0.15);
  overflow: hidden;
}

.account-card-header {
  padding: 16px;
  background: linear-gradient(67deg, #d789d7 0%, #e23e57 100%);
}

.account-card-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
}

.account-card-select {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.account-card-select .select2-container {
  width: 100% !important;
}

.account-card-checkbox {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 35px;
  margin-right: 6px;
}
.account-card-checkbox .checkbox input:checked + .checkbox-checkmark {
  background-color: #fff;
}
.account-card-checkbox .checkbox .checkbox-checkmark {
  width: 24px;
  height: 24px;
  background-color: transparent;
  border-color: #fff;
  margin-right: 0;
}

.account-card-functions ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -6px;
  margin-right: -6px;
  margin-top: -12px;
}
.account-card-functions li {
  padding: 0 6px;
  margin-top: 12px;
}
.account-card-functions li:nth-child(4) {
  margin-right: auto;
}
.account-card-functions a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 36px;
  height: 36px;
  padding: 8px;
  background-color: #fff;
  border-radius: 4px;
}
.account-card-functions a::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 20px;
  height: 20px;
}
.account-card-functions .account-card-edit::before {
  background: url("../img/account-card-functions-icon-1.svg") no-repeat;
}
.account-card-functions .account-card-photo::before {
  background: url("../img/account-card-functions-icon-2.svg") no-repeat;
}
.account-card-functions .account-card-verify::before {
  background: url("../img/account-card-functions-icon-3.svg") no-repeat;
}
.account-card-functions .account-card-views {
  width: auto;
  min-width: 36px;
}
.account-card-functions .account-card-views::before {
  background: url("../img/account-card-functions-icon-4.svg") no-repeat;
}
.account-card-functions .account-card-views span {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: #2f3136;
  margin-left: 6px;
}
.account-card-functions .account-card-delete::before {
  background: url("../img/account-card-functions-icon-5.svg") no-repeat;
}

.account-card-image {
  display: block;
  width: 100%;
  height: 386px;
  position: relative;
}
.account-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ac-card-statuses {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 1;
}
.ac-card-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 8px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 13px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}
.ac-card-status:last-child {
  margin-bottom: 0;
}
.ac-card-status::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 4px;
}
.ac-card-status.ac-card-status-video {
  background-color: #e23e57;
}
.ac-card-status.ac-card-status-video::before {
  background: url("../img/card-status-video.svg") no-repeat center/contain;
}
.ac-card-status.ac-card-status-verified {
  background-color: #3431dc;
}
.ac-card-status.ac-card-status-verified::before {
  background: url("../img/card-status-verified.svg") no-repeat center/contain;
}
.ac-card-status.ac-card-status-indi {
  background-color: #d789d7;
}
.ac-card-status.ac-card-status-indi::before {
  background: url("../img/card-status-indi.svg") no-repeat center/contain;
}
.ac-card-status.ac-card-status-views {
  background-color: #d97d20;
}
.ac-card-status.ac-card-status-views::before {
  background: url("../img/card-status-views.svg") no-repeat center/contain;
}

.account-card-body {
  padding: 16px;
}

.account-card-info {
  margin-bottom: 16px;
}
.account-card-info:last-child {
  margin-bottom: 0;
}

.account-card-name {
  display: block;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #e23e57;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 6px;
}

.account-card-meta {
  margin-bottom: 6px;
}
.account-card-meta ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: -3px;
  margin-right: -3px;
}
.account-card-meta li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #828386;
  margin-left: 3px;
  margin-right: 3px;
}
.account-card-meta li::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 4px;
  height: 4px;
  background-color: #e23e57;
  border-radius: 50%;
  margin-left: 6px;
}
.account-card-meta li:last-child::after {
  display: none;
}

.account-card-status {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #2f3136;
  text-align: center;
}
.account-card-status strong {
  font-weight: 600;
}
.text-not-allow {
  padding: 0px 15px 0;
}
.account-card-status.status-moderation strong {
  color: #3431dc;
}
.account-card-status.status-disabled strong {
  color: #e23e57;
}
.account-card-status.status-active strong {
  color: #2ebe1e;
}

.account-card-block {
  padding: 16px;
  background-color: #f2f2f2;
  border-radius: 4px;
  margin-top: 10px;
}

.account-card-message-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #171a1f;
  margin-bottom: 6px;
}

.account-card-message-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #6f7174;
}

.account-card-views-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #171a1f;
  margin-bottom: 6px;
}

.account-card-views-list li {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #2f3136;
  margin-bottom: 4px;
}
.account-card-views-list li:last-child {
  margin-bottom: 0;
}
.account-card-views-list li strong {
  font-weight: 600;
  color: #e23e57;
}

.account-card-disable-reviews {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: #3431dc;
  text-decoration: underline;
  margin-top: 12px;
}

.account-card-buttons-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -6px;
  margin-right: -6px;
}

.account-card-buttons-col {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 50%;
  padding: 0 6px;
  margin-top: 16px;
}
.account-card-buttons-col .button {
  width: 100%;
}
.account-card-buttons-col .border-button {
  width: 100%;
}

@media (max-width: 991px) {
  .account-nav-text {
    display: none;
  }
  .account-section-header {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .account-section-header .page-title {
    width: 100%;
    margin-right: 0;
  }
  .account-buttons {
    width: 100%;
    margin-top: 24px;
  }
  .account-statistics-col {
    width: 100%;
  }
  .account-cards-controls {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .account-cards-control {
    margin-right: 0;
  }
  .account-cards-control-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-right: 24px;
  }
  .account-cards-control-2 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
    margin-top: 20px;
  }
  .account-cards-control-3 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .account-cards-control-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
  .account-cards-control-actions {
    width: 100%;
  }
  .account-cards-control-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .account-cards-control-label {
    margin-right: 0;
    margin-bottom: 8px;
  }
  .account-cards-control-sort {
    width: 100%;
  }
  .account-cards-col {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .account-nav a {
    height: 96px;
  }
  .account-nav-icon {
    max-width: 32px;
  }
  .account-buttons-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .account-buttons-col {
    width: 100%;
    margin-bottom: 16px;
  }
  .account-buttons-col:last-child {
    margin-bottom: 0;
  }
  .account-buttons-col .button {
    width: 100%;
  }
  .account-statistics-row {
    margin-top: -20px;
  }
  .account-statistics-col {
    margin-top: 20px;
  }
  .account-client-panel {
    padding: 20px 20px 24px;
  }
  .account-client-row {
    margin: 0 -6px;
  }
  .account-client-col {
    padding: 0 6px;
  }
  .account-client-name {
    font-size: 16px;
    margin-right: 8px;
  }
  .account-info.without-icon .account-info-inner {
    padding: 16px;
  }
  .account-info-inner {
    padding: 16px;
    padding-left: 56px;
  }
  .account-info-inner::before {
    left: 15px;
    top: 15px;
  }
  .account-cards-control-1 {
    margin-right: auto;
  }
  .account-cards-col {
    width: 100%;
  }
}

.adding-content-nav {
  margin-bottom: 32px;
}
.adding-content-nav ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-top: -15px;
}
.adding-content-nav li {
  width: 180px;
  margin-left: 15px;
  margin-top: 15px;
}
.adding-content-nav a {
  display: block;
  padding: 10px;
  border: 1px solid #e23e57;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  line-height: 18px;
  color: #e23e57;
  text-transform: uppercase;
  text-align: center;
}
.adding-block {
  margin-top: 60px;
}
.adding-block:first-child {
  margin-top: 0;
}

.adding-block-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: #e23e57;
  margin-bottom: 20px;
}

.adding-row {
  margin-top: -20px;
}

.adding-col {
  width: 33.3333333333%;
  margin-top: 20px;
}
.adding-col.adding-col-wide {
  width: 100%;
}
.adding-col .form-item {
  margin-bottom: 0;
}

.adding-phone-block {
  margin-bottom: 32px;
}

.adding-phone-block .form-item {
  margin-bottom: 0;
}

.adding-phone-row {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.adding-phone-code {
  width: 165px;
}

.adding-phone-number {
  width: 300px;
}

.adding-schedule-block {
  padding: 24px;
  border: 1px solid #d1d1d2;
  border-radius: 4px;
}

.adding-schedule-block-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.adding-schedule-item {
  margin-bottom: 32px;
}

.adding-schedule-item:last-child {
  margin-bottom: 0;
}

.adding-schedule-item-header {
  margin-bottom: 20px;
}

.adding-schedule-item-header:last-child {
  margin-bottom: 0;
}

.adding-schedule-item-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: #2f3136;
  margin-bottom: 4px;
}

.adding-schedule-item-title:last-child {
  margin-bottom: 0;
}

.adding-schedule-item-description {
  font-weight: 500;
  font-size: 12px;
  line-height: 140%;
  color: #828386;
}

.adding-schedule-always {
  max-width: 336px;
}

.adding-schedule-always-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.adding-schedule-always-col {
  max-width: 224px;
}

.adding-schedule-quicktime-row {
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
}

.adding-schedule-quicktime-col {
  width: 100%;
  padding: 0 15px;
}

.adding-schedule-quicktime-col:last-child {
  flex-shrink: 0;
  width: 278px;
}

.adding-schedule-quicktime-col .form-item {
  margin-bottom: 0;
}

.adding-schedule-quicktime-col .form-item-label {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.adding-schedule-quicktime-button {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.adding-schedule-quicktime-button .border-button {
  width: 100%;
  margin-top: auto;
}

.adding-schedule-quicktime-button .border-button-inner {
  padding: 10px 20px;
}

.adding-schedule-bydays-rows {
  max-width: 772px;
  margin-bottom: 32px;
}

.adding-schedule-bydays-row {
  display: flex;
  align-items: center;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 20px;
}

.adding-schedule-bydays-row:last-child {
  margin-bottom: 0;
}

.adding-schedule-bydays-col {
  width: 100%;
  padding: 0 15px;
}

.adding-schedule-bydays-col:first-child {
  flex-shrink: 0;
  width: 142px;
}

.adding-schedule-bydays-col .form-item {
  margin-bottom: 0;
}

.adding-schedule-bydays-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  text-transform: uppercase;
  color: #43454a;
  text-align: center;
}

.adding-schedule-bydays-clear {
  max-width: 248px;
}

.adding-schedule-bydays-clear .border-button {
  width: 100%;
}

.adding-schedule-bydays-clear .border-button-inner {
  padding: 10px 20px;
}

.adding-schedule-timezone {
  max-width: 300px;
}

.adding-schedule-timezone .form-item {
  margin-bottom: 0;
}

.adding-social-row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -10px;
  margin-right: -10px;
  margin-top: -30px;
}

.adding-social-col {
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 30px;
}
.adding-social-col .form-item {
  margin-bottom: 0;
}

.adding-social-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.adding-social-item-icon {
  flex-shrink: 0;
  width: 32px;
  margin-right: 10px;
}

.adding-social-item-label {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #2f3136;
  margin-right: 10px;
}

.adding-social-item-whatsapp .adding-social-item-field {
  width: 172px;
}

.adding-social-item-viber .adding-social-item-field {
  width: 172px;
}

.adding-social-item-wechat .adding-social-item-field {
  width: 172px;
}

.adding-social-item-telegram .adding-social-item-field {
  width: 214px;
}

.adding-social-item-onlyfans .adding-social-item-field {
  width: 344px;
}

.adding-social-item-instagram .adding-social-item-field {
  width: 344px;
}

.adding-pornstars-block .switcher {
  max-width: 300px;
}
.adding-pornstars-block .verify-pornstar-item {
  display: none;
}
.adding-pornstars-block .verify-pornstar-item.active {
  display: block;
}

.adding-rates {
  display: none;
  margin-top: 40px;
}
.adding-rates.show {
  display: block;
}

.adding-rates-col {
  width: 50%;
}

.adding-rates-item {
  margin-bottom: 20px;
}
.adding-rates-item:last-child {
  margin-bottom: 0;
}

.adding-rates-item-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -13px;
  margin-right: -13px;
}

.adding-rates-item-col {
  width: 100%;
  padding: 0 13px;
}
.adding-rates-item-col:first-child {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 109px;
}

.adding-rates-item-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  text-transform: uppercase;
  color: #171a1f;
  text-align: center;
}

.adding-rates-item-label {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #171a1f;
}

.adding-services {
  margin-top: 40px;
}

.adding-services-col {
  width: 50%;
}

.adding-service-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.adding-service {
  margin-bottom: 16px;
}
.adding-service:last-child {
  margin-bottom: 0;
}

.adding-service-col:first-child {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.adding-service-col:last-child {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 165px;
}
.adding-service-col:last-child .form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.adding-service-col:last-child .form-item::before {
  content: "+";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #171a1f;
  margin-left: 10px;
  margin-right: 10px;
}
.adding-service-col:last-child .adding-service-title {
  padding-left: 30px;
}
.adding-service-col .form-item {
  margin-bottom: 0;
}

.adding-service-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #171a1f;
  text-transform: uppercase;
}

.adding-photos-row {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.adding-photos-col:nth-child(1) {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 330px;
}
.adding-photos-col:nth-child(2) {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.adding-photos-instruction ul {
  padding-left: 24px;
  list-style-type: disc;
}
.adding-photos-instruction li {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #2f3136;
}

.adding-photos-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #6f7174;
  margin-top: 20px;
}

.uploaded-photos {
  margin-top: 40px;
}

.uploaded-photos-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #171a1f;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.uploaded-photos-col:nth-child(1) {
  width: 66.6666666667%;
}
.uploaded-photos-col:nth-child(2) {
  width: 33.3333333333%;
}

.uploaded-cards-row {
  margin-top: -30px;
}

.uploaded-cards-col {
  width: 33.3333333333%;
  margin-top: 30px;
}

.uploaded-card {
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px 3px rgba(23, 26, 31, 0.15);
          box-shadow: 0 6px 12px 3px rgba(23, 26, 31, 0.15);
  overflow: hidden;
  position: relative;
}

.uploaded-card-image img {
  width: 100%;
}

.uploaded-card-buttons {
  padding: 16px;
}

.uploaded-card-delete {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 36px;
  height: 36px;
  background-color: #fff;
  border: 1px solid #171a1f;
  border-radius: 4px;
  position: absolute;
  right: 10px;
  top: 10px;
}
.uploaded-card-delete::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 20px;
  height: 20px;
  background: url("../img/account-card-functions-icon-5.svg") no-repeat;
}

.uploaded-card-button {
  display: block;
  width: 100%;
  margin-bottom: 8px;
}
.uploaded-card-button:last-child {
  margin-bottom: 0;
}
.uploaded-card-button.active .border-button-inner {
  background-color: transparent;
}
.uploaded-card-button.active .border-button-text {
  background: none;
  background-clip: unset;
  color: #fff;
  -webkit-text-fill-color: unset;
}

.selected-photos {
  padding: 24px;
  background-color: #f2f2f2;
  border: 1px solid #d1d1d2;
  border-radius: 4px;
}

.selected-photos-block {
  margin-bottom: 24px;
}
.selected-photos-block:last-child {
  margin-bottom: 0;
}

.selected-photos-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #171a1f;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.selected-photos-image {
  border-radius: 4px;
  overflow: hidden;
}
.selected-photos-image img {
  width: 100%;
}

.verification-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #2f3136;
  margin-bottom: 20px;
}

.verification-block {
  padding: 32px;
  background-color: #f2f2f2;
  border: 1px solid #d1d1d2;
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #2f3136;
  margin-top: 20px;
  margin-bottom: 40px;
}
.verification-block h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: #e23e57;
  margin-bottom: 16px;
}
.verification-block p {
  margin-bottom: 16px;
}
.verification-block p:last-child {
  margin-bottom: 0;
}
.verification-block strong {
  font-weight: 500;
  color: #3431dc;
}
.verification-block strong.strong-important {
  font-weight: 500;
  color: #2f3136;
}
.verification-block ul {
  margin-bottom: 20px;
}
.verification-block ul:last-child {
  margin-bottom: 0;
}
.verification-block li {
  padding-left: 36px;
  position: relative;
  margin-bottom: 16px;
}
.verification-block .li-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  background-image: linear-gradient(133deg, #d789d7 0%, #e23e57 100%);
  border-radius: 50%;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
}
.verification-block li:last-child {
  margin-bottom: 0;
}
.verification-block li .example-text {
  margin-top: 10px;
}
.verification-block .example-images {
  margin-top: 12px;
}
.verification-block .example-images-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -6px;
  margin-right: -6px;
  margin-top: -12px;
}
.verification-block .example-images-col {
  padding: 0 6px;
  margin-top: 12px;
}
.verification-block .example-image {
  height: 268px;
}
.verification-block .example-image img {
  width: auto;
  height: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}

.verification-examples {
  max-width: 630px;
  padding: 32px 50px 50px;
  background-color: #f2f2f2;
  border: 1px solid #d1d1d2;
  border-radius: 4px;
  margin-top: 40px;
}

.verification-examples-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.verification-examples-col {
  width: 217px;
  position: relative;
}
.verification-examples-col:first-child::before {
  content: "";
  display: block;
  width: 46px;
  height: 46px;
  background: url("../img/verification-example-arrow-icon.svg") no-repeat;
  position: absolute;
  left: calc(100% + 24px);
  top: calc(50% - 23px);
}

.verification-examples-col-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #171a1f;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.verification-example {
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px 3px rgba(23, 26, 31, 0.15);
          box-shadow: 0 6px 12px 3px rgba(23, 26, 31, 0.15);
  overflow: hidden;
}

.verification-example-top {
  position: relative;
}

.verification-example-image {
  width: 100%;
  height: 312px;
}
.verification-example-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.verification-example-statuses {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 1;
}

.verification-example-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 8px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 13px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}
.verification-example-status:last-child {
  margin-bottom: 0;
}
.verification-example-status::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 4px;
}
.verification-example-status.verification-example-status-verified {
  background-color: #3431dc;
}
.verification-example-status.verification-example-status-verified::before {
  background: url("../img/card-status-verified.svg") no-repeat center/contain;
}

.verification-example-info {
  padding: 15px;
}

.verification-example-name {
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  color: #e23e57;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 4px;
}

.verification-example-meta ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: -3px;
  margin-right: -3px;
}
.verification-example-meta li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #828386;
  margin-left: 3px;
  margin-right: 3px;
}
.verification-example-meta li::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 4px;
  height: 4px;
  background-color: #e23e57;
  border-radius: 50%;
  margin-left: 6px;
}
.verification-example-meta li:last-child::after {
  display: none;
}

.adding-videos-row {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.adding-videos-col:nth-child(1) {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 330px;
}
.adding-videos-col:nth-child(2) {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.uploaded-videos {
  margin-top: 40px;
}

.uploaded-videos-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #171a1f;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.uploaded-videos-row {
  margin-top: -30px;
}
.uploaded-videos-row.uploaded-videos-row-3 .uploaded-videos-col {
  width: 33.3333333333%;
}

.uploaded-videos-col {
  width: 50%;
  margin-top: 30px;
}

.uploaded-video-card-content {
  margin-bottom: 16px;
}
.uploaded-video-card-content video {
  width: 100%;
}
.uploaded-video-card-content img {
  width: 100%;
}

.uploaded-video-card-button .border-button {
  width: 180px;
}

.adding-submit-button {
  text-align: center;
  margin-top: 60px;
}
.adding-submit-button .button {
  width: 300px;
  max-width: 100%;
}

.adding-website-block .form-item {
  max-width: 300px;
}
.adding-website-block .website-url-item {
  display: none;
}
.adding-website-block .website-url-item.active {
  display: block;
}

.adding-languages-block {
  padding: 24px;
  border: 1px solid #d1d1d2;
  border-radius: 4px;
  margin: 20px 0;
}

.adding-languages-block-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.adding-languages-button .border-button-inner {
  padding-left: 22px;
  padding-right: 22px;
}

.adding-language {
  margin-bottom: 24px;
}

.adding-language:last-child {
  margin-bottom: 0;
}

.adding-language-row {
  display: flex;
  margin-left: -24px;
  margin-right: -24px;
}

.adding-language-col {
  padding: 0 24px;
}

.adding-language-select {
  width: 300px;
  max-width: 100%;
}

.adding-language-level {
  width: 194px;
  padding-top: 4px;
}

.adding-language-level-row {
  display: flex;
  align-items: center;
}

.adding-language-level-value {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: #43454a;
  margin-right: 12px;
}

.adding-language-level-badge {
  background-color: rgba(226, 62, 87, 0.1);
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: #e23e57;
}

.adding-language-level-badge.badge-1 {
  background-color: rgba(226, 62, 87, 0.1);
  color: #e23e57;
  padding: 4px 12px;
}

.adding-language-level-badge.badge-2 {
  background-color: rgba(217, 125, 32, 0.1);
  color: #d97d20;
  padding: 4px 12px;
}

.adding-language-level-badge.badge-3 {
  background-color: rgba(241, 191, 0, 0.15);
  color: #f1bf00;
  padding: 4px 12px;
}

.adding-language-level-badge.badge-4 {
  background-color: rgba(52, 49, 220, 0.1);
  color: #3431dc;
  padding: 4px 12px;
}

.adding-language-level-badge.badge-5 {
  background-color: rgba(46, 190, 30, 0.1);
  color: #2ebe1e;
  padding: 4px 12px;
}

.adding-language-level-description {
  font-weight: 500;
  font-size: 12px;
  line-height: 140%;
  color: #6f7174;
}

.adding-language-rating {
  display: flex;
  justify-content: flex-start;
  margin: 10px 0;
}

.adding-language-rating .rating-star {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.adding-language-delete-button {
  padding-top: 30px;
}

.adding-language-delete-button .border-button-inner {
  padding-left: 22px;
  padding-right: 22px;
}

.adding-languages-button {
  margin-top: 24px;
}

@media (max-width: 991px) {
  .adding-col {
    width: 50%;
  }
  .adding-social-col {
    width: 100%;
  }
  .adding-social-item-label {
    flex-shrink: 0;
    width: 78px;
  }
  .adding-social-item-field {
    flex-grow: 1;
  }
  .adding-rates-col {
    width: 100%;
    margin-bottom: 20px;
  }
  .adding-rates-col:last-child {
    margin-bottom: 0;
  }
  .adding-rates-col:last-child .adding-rates-item:first-child {
    display: none;
  }
  .adding-services-col {
    width: 100%;
    margin-bottom: 16px;
  }
  .adding-services-col:last-child {
    margin-bottom: 0;
  }
  .adding-services-col:last-child .adding-service:first-child {
    display: none;
  }
  .uploaded-photos-col {
    margin-bottom: 40px;
  }
  .uploaded-photos-col:nth-child(1) {
    width: 100%;
  }
  .uploaded-photos-col:nth-child(2) {
    width: 100%;
  }
  .uploaded-photos-col:last-child {
    margin-bottom: 0;
  }
  .selected-photos-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -15px;
  }
  .selected-photos-block {
    width: 50%;
    padding: 0 15px;
    margin-bottom: 0;
  }
  .adding-language-row {
    flex-direction: column;
  }
  .adding-language-row {
    margin-left: 0;
    margin-right: 0;
  }
  .adding-language-col {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 24px;
  }
  .adding-language-col:last-child {
    margin-bottom: 0;
  }
  .adding-language-select {
    width: 100%;
  }
  .adding-language-level {
    width: 100%;
    padding-top: 0;
  }
  .adding-language-delete-button {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .adding-content-nav ul {
    margin-left: 0;
  }
  .adding-content-nav li {
    width: 100%;
    margin-left: 0;
  }
  .adding-col {
    width: 100%;
  }
  .adding-phone-row {
    margin-left: -5px;
    margin-right: -5px;
  }
  .adding-phone-col {
    padding-left: 5px;
    padding-right: 5px;
  }
  .adding-phone-col:nth-child(1) {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 150px;
  }
  .adding-phone-col:nth-child(2) {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .adding-phone-code {
    width: 100%;
  }
  .adding-phone-number {
    width: 100%;
  }
  .adding-schedule-block {
    padding: 20px;
  }
  .adding-schedule-always-col {
    max-width: 204px;
  }
  .adding-schedule-quicktime-row {
    flex-wrap: wrap;
  }
  .adding-schedule-quicktime-col {
    width: 100%;
    margin-bottom: 16px;
  }
  .adding-schedule-quicktime-col:last-child {
    width: 100%;
    margin-top: 8px;
    margin-bottom: 0;
  }
  .adding-schedule-quicktime-button {
    max-width: 286px;
  }
  .adding-schedule-bydays-row {
    margin-left: -4px;
    margin-right: -4px;
  }
  .adding-schedule-bydays-col {
    padding: 0 4px;
  }
  .adding-schedule-bydays-col:first-child {
    width: 98px;
  }
  .adding-schedule-bydays-col .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 8px;
    padding-right: 30px;
  }
  .adding-schedule-bydays-clear {
    max-width: 286px;
  }
  .adding-schedule-timezone {
    max-width: 100%;
  }
  .adding-social-row {
    margin-top: -20px;
  }
  .adding-social-col {
    margin-top: 20px;
  }
  .adding-social-item-field input {
    padding: 0 10px;
  }
  .adding-rates-item-row {
    margin-left: -8px;
    margin-right: -8px;
  }
  .adding-rates-item-col {
    padding: 0 8px;
  }
  .adding-rates-item-col:first-child {
    width: 88px;
  }
  .adding-rates-item:first-child {
    margin-bottom: 16px;
  }
  .adding-rates-item-title {
    font-size: 14px;
  }
  .adding-service-col:last-child {
    width: 118px;
  }
  .adding-service-col:last-child .form-item::before {
    margin-left: 8px;
    margin-right: 8px;
  }
  .uploaded-photos-title {
    margin-bottom: 16px;
  }
  .adding-photos-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .adding-photos-col:nth-child(1) {
    width: 100%;
  }
  .adding-photos-col:nth-child(2) {
    width: 100%;
    margin-top: 20px;
  }
  .uploaded-cards-row {
    margin-left: -10px;
    margin-right: -10px;
    margin-top: -20px;
  }
  .uploaded-cards-col {
    width: 50%;
    padding: 0 10px;
    margin-top: 20px;
  }
  .uploaded-card-buttons {
    padding: 12px;
  }
  .selected-photos-block {
    width: 100%;
    margin-bottom: 24px;
  }
  .verification-block {
    padding: 20px;
  }
  .verification-block .example-image {
    height: 185px;
  }
  .verification-examples {
    max-width: 100%;
  }
  .verification-examples-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .verification-examples-col:first-child {
    margin-bottom: 86px;
  }
  .verification-examples-col:first-child::before {
    left: calc(50% - 23px);
    top: calc(100% + 20px);
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .adding-videos-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .adding-videos-row .adding-videos-col:nth-child(1) {
    width: 100%;
  }
  .adding-videos-row .adding-videos-col:nth-child(2) {
    width: 100%;
    margin-top: 20px;
  }
  .uploaded-videos-row.uploaded-videos-row-3 .uploaded-videos-col {
    width: 100%;
  }
  .uploaded-videos-col {
    width: 100%;
  }
  .adding-submit-button {
    margin-top: 40px;
  }

  .adding-languages-block {
    padding: 20px;
  }
  .adding-language-delete-button .border-button {
    width: 100%;
    max-width: 286px;
  }
  .adding-languages-button {
    margin-top: 16px;
  }
  .adding-languages-button .border-button {
    width: 100%;
    max-width: 286px;
  }
}

.payment-plan-block {
  margin-top: 40px;
}

.payment-plan-col-left {
  width: 41.6666666667%;
}

.payment-plan-col-right {
  width: 58.3333333333%;
}

.payment-plan-country {
  max-width: 300px;
  margin-bottom: 32px;
}
.payment-plan-country .form-item {
  margin-bottom: 0;
}

.payment-plan-list ul {
  padding-left: 24px;
  list-style-type: disc;
}
.payment-plan-list li {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #2f3136;
}

.recharge-block {
  margin-top: 60px;
}

.recharge-block-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: #e23e57;
  margin-bottom: 20px;
}

.recharge-methods {
  margin-bottom: 40px;
}

.recharge-method {
  margin-bottom: 40px;
}
.recharge-method:last-child {
  margin-bottom: 0;
}
.recharge-method .form-item {
  margin-bottom: 0;
}
.recharge-method .form-item.with-method-icon .radio {
  align-items: center;
}
.recharge-method .form-item.with-method-icon .radio .radio-checkmark {
  margin-right: 12px;
  margin-top: 0;
}
.recharge-method .form-item.with-method-icon .radio .radio-text {
  display: flex;
  align-items: center;
}
.recharge-method .form-item.with-method-icon .radio .radio-text-icon {
  flex-shrink: 0;
  margin-right: 8px;
}
.recharge-method .radio .radio-checkmark {
  margin-top: 4px;
}
.recharge-method .radio .radio-text {
  font-weight: 600;
  font-size: 18px;
}
.recharge-method .account-info {
  margin-bottom: 20px;
}

.recharge-method-description {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #2f3136;
  margin-left: 32px;
  margin-top: 12px;
}
.recharge-method-description .blue {
  color: #3431dc;
}
.recharge-method-description strong {
  font-weight: bold;
}

.recharge-method-cards {
  margin-left: 32px;
  margin-top: 24px;
}

.recharge-method-cards-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  margin-top: -20px;
}

.recharge-method-cards-col {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0 10px;
  margin-top: 20px;
}

.recharge-method-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 146px;
  height: 84px;
  padding: 9px;
  background-color: #f2f2f2;
  border: 1px solid #d1d1d2;
  border-radius: 3px;
}

.recharge-buy {
  margin-top: 40px;
}

.recharge-buy-row {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.recharge-buy-col:nth-child(1) {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.recharge-buy-col:nth-child(2) {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.recharge-buy-col .form-item {
  margin-bottom: 0;
}
.recharge-buy-col .button {
  width: 216px;
}

@media (max-width: 991px) {
  .payment-plan-col-left {
    width: 100%;
    margin-bottom: 40px;
  }
  .payment-plan-col-right {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .advertise-card-active {
    width: 86px;
    height: 86px;
    top: -5px;
    right: -5px;
  }
  .payment-plan-country {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .recharge-method-cards {
    margin-top: 20px;
  }
  .recharge-method-cards-row {
    margin-left: -6px;
    margin-right: -6px;
    margin-top: -12px;
  }
  .recharge-method-cards-col {
    padding: 0 6px;
    margin-top: 12px;
  }
  .recharge-method-card {
    width: 90px;
    height: 52px;
  }
  .recharge-method-card img {
    max-width: 62px;
    max-height: 32px;
  }
  .recharge-buy {
    margin-top: 32px;
  }
  .recharge-buy-row {
    margin-left: -6px;
    margin-right: -6px;
  }
  .recharge-buy-col {
    padding: 0 6px;
  }
  .recharge-buy-col .button {
    width: 96px;
  }
}
.finance-nav {
  margin-bottom: 32px;
}
.finance-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 2px solid #f2f2f2;
  border-radius: 4px;
}
.finance-nav li {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #828386;
  margin-left: 68px;
  margin-bottom: -2px;
}
.finance-nav li:first-child {
  margin-left: 0;
}
.finance-nav li.current {
  color: #171a1f;
}
.finance-nav li.current a::before {
  opacity: 1;
}
.finance-nav a {
  display: block;
  padding: 0 13px 11px;
  position: relative;
}
.finance-nav a::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #171a1f;
  border-radius: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
}

.finance-controls {
  margin-bottom: 32px;
}

.finance-controls-row {
  margin-top: -20px;
}

.finance-controls-col {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 20px;
}

.finance-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.finance-control-label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #171a1f;
  margin-right: 12px;
}

.finance-control-field {
  width: 238px;
}

.finance-control-submit .button {
  width: 218px;
}

.finance-table .custom-table table th:first-child {
  width: 494px;
}
.finance-table .custom-table table th:last-child {
  width: 464px;
}

@media (max-width: 991px) {
  .finance-control-field {
    width: 212px;
  }
}
@media (max-width: 767px) {
  .finance-controls-row {
    margin-left: -10px;
    margin-right: -10px;
  }
  .finance-controls-col {
    width: 50%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .finance-control {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .finance-control-label {
    margin-right: 0;
    margin-bottom: 8px;
  }
  .finance-control-field {
    width: 100%;
  }
  .finance-table .custom-table table th:first-child {
    width: 192px;
  }
  .finance-table .custom-table table th:last-child {
    width: 135px;
  }
}
.messages-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 32px;
}
.messages-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2px;
  background-color: #f2f2f2;
  border-radius: 40px;
}
.messages-nav li {
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  color: #171a1f;
  text-transform: uppercase;
}
.messages-nav li.current a {
  background: linear-gradient(67deg, #d789d7 0%, #e23e57 100%);
  color: #fff;
}
.messages-nav a {
  display: block;
  width: 162px;
  padding: 7px;
  background-color: #f2f2f2;
  border-radius: 40px;
  text-align: center;
  position: relative;
}

.messages-table .custom-table table {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.messages-table .custom-table table th:nth-child(1) {
  width: 330px;
}
.messages-table .custom-table table th:nth-child(2) {
  width: 300px;
}
.messages-table .custom-table table th:nth-child(3) {
  width: 246px;
  text-align: center;
}
.messages-table .custom-table table th:nth-child(4) {
  width: 82px;
}
.messages-table .custom-table table td:nth-child(3) {
  text-align: center;
}

.message-header {
  padding: 16px 32px;
  background-color: #f2f2f2;
  border: 1px solid #d1d1d2;
  border-radius: 4px;
  margin-bottom: 12px;
}

.message-header-row {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.message-header-col:last-child {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.message-header-info {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #43454a;
}
.message-header-info strong {
  font-weight: bold;
  color: #171a1f;
  margin-right: 20px;
}

.message-header-control {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #3431dc;
  text-decoration: underline;
  margin-right: 32px;
}
.message-header-control:last-child {
  margin-right: 0;
}

.message-body {
  padding: 32px;
  background-color: #f2f2f2;
  border: 1px solid #d1d1d2;
  border-radius: 4px;
}

.message-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: #e23e57;
  margin-bottom: 12px;
}

.message-text {
  font-size: 16px;
  line-height: 140%;
  color: #171a1f;
}

.create-message {
  padding: 32px 52px;
  background-color: #f2f2f2;
  border: 1px solid #d1d1d2;
  border-radius: 4px;
}
.create-message .upload-file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
}
.create-message .upload-file-text {
  color: #43454a;
  text-align: left;
  margin-top: 0;
  margin-right: 24px;
}
.create-message .upload-file-button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 144px;
  margin: 0;
}
.create-message .form-submit-item {
  text-align: left;
}
.create-message .form-submit-item .button {
  max-width: 218px;
}

.create-message-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: #e23e57;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .messages-table {
    position: relative;
  }
  .messages-table::before, .messages-table::after {
    content: "";
    width: 1px;
    background-color: #d1d1d2;
    position: absolute;
    top: 45px;
    bottom: 0;
  }
  .messages-table::before {
    left: 0;
  }
  .messages-table::after {
    right: 0;
  }
  .messages-table .custom-table {
    overflow-x: auto;
  }
  .messages-table .custom-table::-webkit-scrollbar {
    height: 4px;
  }
  .messages-table .custom-table::-webkit-scrollbar-track {
    background-color: #f2f2f2;
    border-radius: 100px;
  }
  .messages-table .custom-table::-webkit-scrollbar-thumb {
    background-color: #e23e57;
    border-radius: 100px;
  }
  .messages-table .custom-table table {
    width: 735px;
  }
  .message-header {
    padding: 20px;
  }
  .message-header-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .message-header-col {
    width: 100%;
    margin-bottom: 16px;
  }
  .message-header-col:last-child {
    margin-bottom: 0;
  }
  .message-header-info strong {
    display: block;
    margin-right: 0;
    margin-bottom: 8px;
  }
  .message-body {
    padding: 20px;
  }
  .create-message {
    padding: 20px 20px 24px;
  }
  .create-message .upload-file {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 16px;
  }
  .create-message .upload-file-text {
    font-size: 14px;
    margin-right: 0;
    margin-bottom: 16px;
  }
  .create-message .form-submit-item .button {
    max-width: 100%;
  }
  .create-message-title {
    margin-bottom: 20px;
  }
}
.settings-block {
  margin-top: 40px;
}

.settings-row {
  margin-top: -40px;
}

.settings-col {
  width: 33.3333333333%;
  margin-top: 40px;
}
.settings-col .form-item:last-child {
  margin-bottom: 0;
}
.settings-col .upload-file-text {
  margin-top: 0;
  margin-bottom: 12px;
}

.settings-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: #e23e57;
  margin-bottom: 20px;
}

.settings-delete-avatar {
  text-align: center;
}
.settings-delete-avatar .border-button {
  width: 180px;
}

.settings-delete-account .border-button {
  width: 218px;
}

.settings-submit-button {
  text-align: center;
  margin-top: 60px;
}
.settings-submit-button .button {
  width: 300px;
  max-width: 100%;
}

@media (max-width: 991px) {
  .settings-col {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .settings-col {
    width: 100%;
  }
  .settings-col .switcher {
    max-width: 300px;
  }
}
.page-content {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #2f3136;
}
.page-content h2 {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: #171a1f;
  margin-top: 40px;
  margin-bottom: 16px;
}
.page-content h2:first-child {
  margin-top: 0;
}
.page-content h2:last-child {
  margin-bottom: 0;
}
.page-content h3 {
  font-weight: bold;
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 1.4em;
}
.page-content p {
  margin-bottom: 1em;
}
.page-content p:last-child {
  margin-bottom: 0;
}
.page-content ul {
  padding-left: 24px;
  list-style-type: disc;
  margin-bottom: 1.4em;
}
.page-content ul:last-child {
  margin-bottom: 0;
}
.page-content ul li {
  margin-bottom: 8px;
}
.page-content ul li:last-child {
  margin-bottom: 0;
}
.page-content ol {
  padding-left: 24px;
  list-style-type: decimal;
}
.page-content ol li {
  margin-bottom: 8px;
}
.page-content ol li:last-child {
  margin-bottom: 0;
}
.page-content a {
  text-decoration: underline;
}
.page-content strong {
  font-weight: bold;
}
.page-content .blue {
  color: #3431dc;
}

.business-info {
  max-width: 400px;
  padding: 32px;
  background-color: #f2f2f2;
  border: 1px solid #d1d1d2;
  border-radius: 4px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.business-info:first-child {
  margin-top: 0;
}
.business-info:last-child {
  margin-bottom: 0;
}
.business-info h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  color: #171a1f;
  margin-bottom: 12px;
}
.business-info p {
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .business-info {
    padding: 20px;
  }
}

.reviews-block-text{margin-bottom: 15px;}


/* Blacklist */
.blacklist-search-panel {
  margin-bottom: 40px;
}

.blacklist-search-panel-row {
  margin-top: -16px;
}

.blacklist-search-panel-col {
  margin-top: 16px;
}

.blacklist-search-panel-col:first-child {
  flex-grow: 1;
}

.blacklist-search-submit {
  width: 218px;
}

.blacklist-search-submit .border-button {
  width: 100%;
}

.blacklist-search-submit .border-button-inner {
  padding: 9px 14px;
}

.blacklist-search-add {
  width: 218px;
}

.blacklist-search-add .button {
  width: 100%;
}

.blacklist-sort-panel {
  margin-bottom: 24px;
}

.blacklist-sort-panel-row {
  align-items: center;
  margin-top: -16px;
}

.blacklist-sort-panel-col {
  width: calc(100% / 3);
  margin-top: 16px;
}

.blacklist-sort-total {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #6f7174;
}

.blacklist-sort-total strong {
  font-weight: 600;
  color: #e23e57;
}

.blacklist-sort-select .select2-container {
  width: 100% !important;
}

.blacklist-popup-phone-row {
  display: flex;
  align-items: center;
}

.blacklist-popup-phone-row .blacklist-popup-phone-code {
  width: 80px;
  margin-right: 16px;
}

.blacklist-popup-phone-add {
  flex-shrink: 0;
  display: block;
  width: 32px;
  height: 32px;
  border: 1px solid #171a1f;
  border-radius: 50%;
  margin-left: 16px;
  cursor: pointer;
  position: relative;
}

.blacklist-popup-phone-add::before,
.blacklist-popup-phone-add::after {
  content: '';
  display: block;
  width: 14px;
  height: 2px;
  background-color: #171a1f;
  border-radius: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.blacklist-popup-phone-add::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.blacklist-popup-phone-remove {
  flex-shrink: 0;
  display: block;
  width: 32px;
  height: 32px;
  border: 1px solid #171a1f;
  border-radius: 50%;
  margin-left: 16px;
  cursor: pointer;
  position: relative;
}

.blacklist-popup-phone-remove::before {
  content: '';
  display: block;
  width: 14px;
  height: 2px;
  background-color: #171a1f;
  border-radius: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.blacklist-table .custom-table table th:nth-child(1) {
  width: 168px;
}

.blacklist-table .custom-table table th:nth-child(2) {
  width: 180px;
}

.blacklist-table .custom-table table td {
  padding-top: 20px;
  padding-bottom: 20px;
  vertical-align: top;
}

.blacklist-comment-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 16px;
}

.blacklist-comment-author {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #e23e57;
}

.blacklist-comment-location ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: -3px;
  margin-right: -3px;
}

.blacklist-comment-location li {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #828386;
  margin-left: 3px;
  margin-right: 3px;
}

.blacklist-comment-location li::after {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 4px;
  height: 4px;
  background-color: #e23e57;
  border-radius: 50%;
  margin-left: 6px;
}

.blacklist-comment-location li:last-child::after {
  display: none;
}

.blacklist-comment-body {
  margin-bottom: 20px;
}

.blacklist-comment-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #2f3136;
}

.blacklist-comment-answer-link {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #3431dc;
  text-decoration: underline;
}

.blacklist-comment-answer-link::before {
  content: '';
  flex-shrink: 0;
  display: block;
  width: 24px;
  height: 24px;
  background: url('../img/comment-answer-link-icon.svg') no-repeat;
  margin-right: 8px;
}

.comment-gallery {
  margin-top: 20px;
}

.comment-gallery-thumbs-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -6px;
  margin-right: -6px;
  margin-top: -12px;
}

.comment-gallery-thumbs-col {
  display: none;
  width: 76px;
  padding: 0 6px;
  margin-top: 12px;
}

.comment-gallery-thumbs-col:nth-child(-n + 6) {
  display: block;
}

.comment-gallery-thumb {
  display: block;
  height: 64px;
  border-radius: 2px;
  overflow: hidden;
}

.comment-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comment-gallery-more {
  display: none;
  padding: 0 6px;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: #3431dc;
  text-decoration: underline;
  cursor: pointer;
  margin-top: 12px;
}

.comment-card {
  padding: 32px;
  background-color: #f2f2f2;
  border: 1px solid #d1d1d2;
  border-radius: 4px;
  margin-bottom: 20px;
}

.comment-card:last-child {
  margin-bottom: 0;
}

.comment-header {
  margin-bottom: 16px;
}

.comment-header-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.comment-header-left {
  display: flex;
  margin-right: 16px;
}

.comment-author {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #e23e57;
  margin-right: 12px;
}

.comment-date {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #6f7174;
}

.comment-location ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: -3px;
  margin-right: -3px;
}

.comment-location li {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #828386;
  margin-left: 3px;
  margin-right: 3px;
}

.comment-location li::after {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 4px;
  height: 4px;
  background-color: #e23e57;
  border-radius: 50%;
  margin-left: 6px;
}

.comment-location li:last-child::after {
  display: none;
}

.comment-body {
  margin-bottom: 20px;
}

.comment-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #2f3136;
}

.comment-footer {
  display: flex;
  align-items: center;
}

.comment-counter {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #6f7174;
  margin-right: 32px;
}

.comment-counter::before {
  content: '';
  flex-shrink: 0;
  display: block;
  width: 24px;
  height: 24px;
  background: url('../img/comment-counter-icon.svg') no-repeat;
  margin-right: 8px;
}

.comment-answer-link {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #3431dc;
  text-decoration: underline;
  cursor: pointer;
}

.comment-answer-link::before {
  content: '';
  flex-shrink: 0;
  display: block;
  width: 24px;
  height: 24px;
  background: url('../img/comment-answer-link-icon.svg') no-repeat;
  margin-right: 8px;
}

.comment-answers {
  margin-left: 46px;
}

.comment-answer-card {
  padding: 24px;
  border: 1px solid #d1d1d2;
  border-radius: 4px;
  position: relative;
  margin-top: 20px;
}

.comment-answer-card::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url("../img/review-answer-icon.svg") no-repeat;
  position: absolute;
  left: -47px;
  top: -1px;
}

.comment-answer-reply {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.comment-answer-reply .comment-author {
  margin-right: 0;
}

.comment-answer-reply-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: url('../img/comment-reply-icon.svg') no-repeat;
  margin: 0 16px;
}

.comment-form {
  display: none;
  margin-top: 24px;
}

.comment-form .form-item {
  margin-bottom: 16px;
}

.comment-form .form-item textarea {
  height: 100px;
}

.comment-form .upload-file {
  display: flex;
  align-items: center;
  padding: 20px;
}

.comment-form .upload-file-text {
  color: #43454a;
  text-align: left;
  margin-top: 0;
  margin-right: 24px;
}

.comment-form .upload-file-button {
  flex-shrink: 0;
  width: 144px;
  margin: 0;
}

.comment-form .form-submit-item {
  text-align: left;
  margin-top: 16px;
}

.comment-form .form-submit-item .button {
  max-width: 218px;
}


@media (max-width: 991px) {
  .blacklist-table .custom-table table {
    display: block;
    border: none;
    border-radius: 0;
  }
  .blacklist-table .custom-table table thead {
    display: none;
  }
  .blacklist-table .custom-table table tbody {
    display: block;
  }
  .blacklist-table .custom-table table tr {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #d1d1d2;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 24px;
  }
  .blacklist-table .custom-table table tr:last-child {
    margin-bottom: 0;
  }
  .blacklist-table .custom-table table td {
    display: block;
    height: auto;
    padding: 16px;
    border: none;
  }
  .blacklist-table .custom-table table td::before {
    content: attr(data-title);
    display: block;
    padding: 18px 16px;
    background-color: #171a1f;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    text-transform: uppercase;
    margin-left: -12px;
    margin-right: -13px;
    margin-top: -16px;
    margin-bottom: 16px;
  }
  .blacklist-table .custom-table table td:nth-child(1) {
    width: 50%;
    padding-left: 12px;
    padding-right: 12px;
    border-right: 1px solid #d1d1d2;
  }
  .blacklist-table .custom-table table td:nth-child(2) {
    width: 50%;
    padding-left: 12px;
    padding-right: 12px;
  }
  .blacklist-table .custom-table table td:nth-child(3) {
    width: 100%;
    padding-bottom: 20px;
    border-top: 1px solid #d1d1d2;
  }
  .blacklist-table .custom-table table td:nth-child(3)::before {
    display: none;
  }
  .blacklist-comment-author {
    width: 100%;
    margin-bottom: 6px;
  }
  .blacklist-comment-location {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .blacklist-search-panel-col {
    width: 100%;
  }
  .blacklist-search-panel-col:first-child {
    width: 100%;
  }
  .blacklist-search-submit {
    width: 100%;
  }
  .blacklist-search-add {
    width: 100%;
  }
  .blacklist-sort-panel {
    margin-bottom: 16px;
  }
  .blacklist-sort-panel-col {
    width: 100%;
  }
  .blacklist-sort-panel-col:first-child {
    order: 1;
    margin-top: 24px;
  }
  .comment-gallery-thumbs-col:nth-child(-n + 6) {
    display: none;
  }
  .comment-gallery-thumbs-col:nth-child(-n + 4) {
    display: block;
  }
  .comment-card {
    padding: 16px;
  }
  .comment-header-left {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .comment-answers {
    margin-left: 32px;
  }
  .comment-answer-card {
    padding: 16px;
  }
  .comment-answer-card::before {
    left: -33px;
  }
  .comment-form .form-item textarea {
    height: 180px;
  }
  .comment-form .upload-file {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }
  .comment-form .upload-file-text {
    font-size: 14px;
    margin-right: 0;
    margin-bottom: 16px;
  }
  .comment-form .form-submit-item .button {
    max-width: 100%;
  }
}

.emoji button {
  border:0;
}
.emoji {
  border: none;
  vertical-align: middle;
  width: 22px;
  height: 22px;
  position: relative;
}


.emoji__btn {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: none
}

.emoji__btn svg {
  display: block;
  width: 100%;
  height: 100%;
  stroke: #bc4a88;
  -webkit-transition: .25s ease-out;
  transition: .25s ease-out;
  -webkit-transition-property: stroke;
  transition-property: stroke
}

.emoji__btn:hover svg {
  stroke: #dd629f
}

.emoji__list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  padding: 12px 6px;
  display: none;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 270px;
  border-radius: 4px;
  background-color: #fafafa;
  -webkit-box-shadow: 0 1px 2px #dadada;
  box-shadow: 0 1px 2px #dadada;
  z-index: 1
}

.emoji__list>* {
  cursor: pointer;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 32px;
  height: 34px;
  background: none
}


/* User New Girls */
.extended-card {
  background-color: #fff;
  box-shadow: 0 4px 15px 3px rgba(23, 26, 31, 0.15);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
}

.extended-card:last-child {
  margin-bottom: 0;
}

.extended-card-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
  padding: 8px 32px;
  background-color: #171a1f;
  position: relative;
}

.extended-card-location ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: -3px;
  margin-right: -3px;
}

.extended-card-location li {
  display: flex;
  align-items: center;
  font-weight: 500;
  color: #fff;
  margin-left: 3px;
  margin-right: 3px;
}

.extended-card-location li::after {
  content: '';
  flex-shrink: 0;
  display: block;
  width: 4px;
  height: 4px;
  background-color: #e23e57;
  border-radius: 50%;
  margin-left: 6px;
}

.extended-card-location li:last-child::after {
  display: none;
}

.extended-card-statuses-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -6px;
  margin-right: -6px;
  margin-top: -12px;
}

.extended-card-statuses-col {
  padding: 0 6px;
  margin-top: 12px;
}

.extended-card-status {
  display: flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 13px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
}

.extended-card-status::before {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

.extended-card-status.extended-card-status-video {
  background-color: #e23e57;
}
.extended-card-status.extended-card-status-video::before {
  background: url("../img/card-status-video.svg") no-repeat center/contain;
}
.extended-card-status.extended-card-status-verified {
  background-color: #3431dc;
}
.extended-card-status.extended-card-status-verified::before {
  background: url("../img/card-status-verified.svg") no-repeat center/contain;
}
.extended-card-status.extended-card-status-indi {
  background-color: #d789d7;
}
.extended-card-status.extended-card-status-indi::before {
  background: url("../img/card-status-indi.svg") no-repeat center/contain;
}
.extended-card-status.extended-card-status-available {
  background-color: #2ebe1e;
}
.extended-card-status.extended-card-status-available::before {
  background: url("../img/card-status-available.svg") no-repeat center/contain;
}
.extended-card-status.extended-card-status-archived {
  background-color: #6f7174;
}
.extended-card-status.extended-card-status-archived::before {
  background: url("../img/card-status-archived.svg") no-repeat center/contain;
}
.extended-card-status.extended-card-status-disabled {
  background-color: #e23e3e;
}
.extended-card-status.extended-card-status-disabled::before {
  background: url("../img/card-status-disabled.svg") no-repeat center/contain;
}

.extended-card-status-top {
  width: 60px;
  height: 60px;
  background: url("../img/status-top-icon.svg") no-repeat center/contain;
  position: absolute;
  right: 32px;
  top: calc(100% + 14px);
  z-index: 1;
}

.extended-card-status-vip {
  width: 60px;
  height: 60px;
  background: url("../img/status-vip-icon.svg") no-repeat center/contain;
  position: absolute;
  right: 32px;
  top: calc(100% + 14px);
  z-index: 1;
}

.extended-card-body {
  padding: 24px 32px 32px;
}

.extended-card-row {
  display: flex;
}

.extended-card-left {
  flex-shrink: 0;
  align-self: flex-start;
  display: flex;
  width: 316px;
  padding-right: 16px;
}

.extended-card-image {
  display: block;
  width: 154px;
  height: 192px;
  border-radius: 4px;
  overflow: hidden;
  margin-right: 16px;
}

.extended-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.extended-card-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.extended-card-name {
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  color: #e23e57;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.extended-card-price {
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  color: #2f3136;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.extended-card-age {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #828386;
  margin-bottom: 6px;
}

.extended-card-count {
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  color: #2f3136;
  margin-top: auto;
}

.extended-card-right {
  flex-grow: 1;
  padding-left: 36px;
  border-left: 1px solid #d1d1d2;
}

.extended-card-phone-row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.extended-card-phone {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 20px;
  line-height: 140%;
  color: #171a1f;
  white-space: nowrap;
  margin-right: 30px;
}

.extended-card-phone::before {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 32px;
  height: 32px;
  background: url("../img/product-phone-icon.svg") no-repeat center/contain;
  margin-right: 12px;
}

.extended-card-messengers {
  display: flex;
}

.extended-card-messenger {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin-right: 16px;
}

.extended-card-messenger:last-child {
  margin-right: 0;
}

.extended-card-messenger.messenger-whatsapp {
  background: url("../img/messenger-whatsapp-icon.svg") no-repeat center/contain;
}
.extended-card-messenger.messenger-telegram {
  background: url("../img/messenger-telegram-icon.svg") no-repeat center/contain;
}
.extended-card-messenger.messenger-viber {
  background: url("../img/messenger-viber-icon.svg") no-repeat center/contain;
}
.extended-card-messenger.messenger-wechat {
  background: url("../img/messenger-wechat-icon.svg") no-repeat center/contain;
}

.extended-card-parameters-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-left: -16px;
  margin-right: -16px;
  margin-top: -8px;
}

.extended-card-parameters-col {
  max-width: 334px;
  padding: 0 16px;
  margin-top: 8px;
}

.extended-card-parameter {
  display: flex;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 8px;
}

.extended-card-parameter:last-child {
  margin-bottom: 0;
}

.extended-card-parameter.in-one-col {
  flex-direction: column;
}

.extended-card-parameter.in-one-col .extended-card-parameter-label {
  margin-bottom: 8px;
}

.extended-card-parameter-label {
  flex-shrink: 0;
  width: 116px;
  padding-right: 20px;
  color: #6f7174;
}

.extended-card-parameter-language {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 6px;
}

.extended-card-parameter-language:last-child {
  margin-bottom: 0;
}

.extended-card-parameter-language-label {
  margin-right: 12px;
}

.extended-card-parameter-language-rating .review-rating-star {
  width: 16px;
  height: 16px;
}

@media (max-width: 991px) {
  .extended-card-row {
    flex-wrap: wrap;
  }
  .extended-card-left {
    width: 100%;
    padding-right: 0;
    margin-bottom: 24px;
  }
  .extended-card-right {
    width: 100%;
    padding-left: 0;
    border-left: none;
  }
}

@media (max-width: 767px) {
  .extended-card-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    background-color: transparent;
  }
  .extended-card-location {
    width: 100%;
    padding: 9px 20px;
    background-color: #171a1f;
    margin-bottom: 12px;
  }
  .extended-card-statuses {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
  }
  .extended-card-statuses-row {
    margin-left: -4px;
    margin-right: -4px;
    margin-top: -8px;
  }
  .extended-card-statuses-col {
    padding: 0 4px;
    margin-top: 8px;
  }
  .extended-card-status-top {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    position: static;
    margin-left: 16px;
  }
  .extended-card-status-vip {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    position: static;
    margin-left: 16px;
  }
  .extended-card-body {
    padding: 16px 20px 20px;
  }
  .extended-card-image {
    margin-right: 12px;
  }
  .extended-card-phone {
    font-size: 18px;
    margin-right: 18px;
  }
  .extended-card-phone::before {
    width: 28px;
    height: 28px;
    margin-right: 8px;
  }
  .extended-card-messenger {
    width: 28px;
    height: 28px;
    margin-right: 10px;
  }
  .extended-card-parameters-row {
    margin-top: -12px;
  }
  .extended-card-parameters-col {
    margin-top: 12px;
  }
  .extended-card-parameters-col {
    width: 100%;
    max-width: 100%;
  }
  .extended-card-parameter {
    margin-bottom: 12px;
  }
  .extended-card-parameter.in-one-col {
    flex-direction: row;
  }
  .extended-card-parameter.in-one-col .extended-card-parameter-label {
    margin-bottom: 0;
  }
}

.text-box.text-center {
  margin-top: 20px;
}

.custom-table-controls .pagination {margin-right: auto;}
.reviews-slider-wrapper .text-not-allow {padding: 0;}

.blacklist-comment-footer {
  display: flex;
}

.blacklist-comment-footer a {
  margin-right: 15px;
  color:#dc4f77;
}

.link_pm {
  text-decoration: underline;
  font-weight: bold;
}

.link_pm:hover {
  text-decoration: none;
  font-weight: none;
}