@font-face {
  font-family: "Lato";
  src: url("../fonts/lato/Lato-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/lato/Lato-Italic.woff2") format("woff2");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/lato/Lato-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/lato/Lato-MediumItalic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/lato/Lato-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/lato/Lato-SemiboldItalic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/lato/Lato-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/lato/Lato-BoldItalic.woff2") format("woff2");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Prosto One";
  src: url("../fonts/prostoone/ProstoOne-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  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: "Lato", sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  color: #2b2b28;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body.overflow-hidden {
  overflow: hidden;
}

a {
  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;
}

table {
  border-collapse: collapse;
}

.container {
  width: 100%;
  max-width: 1504px;
  padding: 0 16px;
  margin: 0 auto;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -16px;
}

.col {
  padding: 0 16px;
}

.section-title {
  font-family: "Prosto One", sans-serif;
  font-weight: normal;
  font-size: 36px;
  line-height: 130%;
  margin-bottom: 24px;
}

.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: #fef1dc;
  position: fixed;
  right: 40px;
  bottom: 40px;
  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: 40px;
  height: 40px;
  background: url("../img/to-top-button-icon.svg") no-repeat center/contain;
}
.to-top-button.active {
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 1599px) {
  .container {
    max-width: 1320px;
  }
  .to-top-button {
    width: 50px;
    height: 50px;
    right: 16px;
    bottom: 16px;
  }
  .to-top-button::before {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 1399px) {
  .container {
    max-width: 1140px;
  }
}
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 100%;
  }
  .section-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
.button {
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 12px 24px;
  background-color: #f89d13;
  border: none;
  font-family: inherit;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #2b2b28;
  text-align: center;
  cursor: pointer;
}
.button:hover {
  background-color: #ffae32;
}
.button.button-small {
  padding: 8px 16px;
  line-height: 16px;
}
.button.button-big {
  padding: 18px 36px;
}
.button.button-dark {
  background-color: #2b2b28;
  color: #fff;
}
.button.button-dark:hover {
  background-color: #555553;
}
.button.button-with-icon {
  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;
}
.button.button-with-icon .button-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.button.button-with-icon .button-icon.plus-icon {
  background: url("../img/button-plus-icon.svg") no-repeat;
}
.button.button-with-icon .button-icon.plus-black-icon {
  background: url("../img/button-plus-black-icon.svg") no-repeat;
}
.button.button-with-icon .button-icon.plus-white-icon {
  background: url("../img/button-plus-white-icon.svg") no-repeat;
}
.button.button-with-icon .button-icon.key-icon {
  background: url("../img/button-key-icon.svg") no-repeat;
}
.button.button-with-icon .button-icon.review-icon {
  background: url("../img/button-review-icon.svg") no-repeat;
}
.button.button-with-icon .button-icon.agency-icon {
  background: url("../img/button-agency-icon.svg") no-repeat;
}
.button.button-with-icon .button-icon.search-icon {
  background: url("../img/button-search-icon.svg") no-repeat;
}
.button.button-with-icon .button-icon.topup-balance-icon {
  background: url("../img/button-topup-balance-icon.svg") no-repeat;
}
.button.button-with-icon .button-icon.statistics-icon {
  background: url("../img/button-statistics-icon.svg") no-repeat;
}
.button.button-with-icon .button-icon.envelope-icon {
  background: url("../img/button-envelope-icon.svg") no-repeat;
}
.button.border-button {
  padding: 11px 23px;
  background-color: transparent;
  border: 1px solid #2b2b28;
}
.button.border-button:hover {
  background-color: #2b2b28;
  color: #fff;
}
.button.border-button.button-small {
  padding: 7px 15px;
}
.button.border-button.button-big {
  padding: 17px 35px;
}

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: 44px;
  padding: 0 16px;
  background-color: #fff;
  border: 1px solid #cacaca;
  font-family: inherit;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  color: #2b2b28;
  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: #80807e;
}
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: #80807e;
}
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: #80807e;
}
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: #80807e;
}
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: #80807e;
}
input[type=text]:disabled, input[type=email]:disabled, input[type=tel]:disabled, input[type=search]:disabled, input[type=password]:disabled, input[type=number]:disabled, input[type=date]:disabled, select:disabled, textarea:disabled {
  background-color: #f4f4f4;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

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

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

.select2-container--default .select2-selection--single {
  border: 1px solid #cacaca;
  border-radius: 0;
}

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

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #2b2b28;
  line-height: 44px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #2b2b28;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 20px;
  height: 44px;
  background: url("../img/select-arrow-icon.svg") no-repeat center;
  right: 16px;
  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 {
  border: 1px solid #cacaca;
  border-radius: 0;
}

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

.select2-results__option {
  padding: 7px 16px;
}

.select2-container--default .select2-results__option--selected {
  background-color: #555553;
  color: #f89d13;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #555553;
  color: #f89d13;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #f4f4f4;
}

button.Zebra_DatePicker_Icon {
  width: 20px;
  height: 20px;
  background: url("../img/calendar-icon.svg") no-repeat center;
  right: 16px !important;
  top: 12px !important;
}

.Zebra_DatePicker {
  border: none;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: #2b2b28;
}

.Zebra_DatePicker .dp_daypicker th {
  font-weight: 500;
  color: #41413e;
}

.Zebra_DatePicker .dp_body .dp_selected {
  background-color: #f89d13;
  color: #2b2b28;
}

.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;
  clip-path: inset(50%) !important;
}
.checkbox input:checked + .checkbox-checkmark {
  background-color: #f89d13;
  border-color: #f89d13;
}
.checkbox input:checked + .checkbox-checkmark::after {
  opacity: 1;
}
.checkbox input:disabled ~ .checkbox-text {
  color: #80807e;
}
.checkbox .checkbox-checkmark {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #cacaca;
  margin-right: 10px;
  margin-top: 2px;
  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-size: 16px;
  line-height: 150%;
  color: #2b2b28;
}
.checkbox .checkbox-text a {
  color: #f89d13;
  text-decoration: underline;
}
.checkbox .checkbox-count {
  color: #80807e;
}
.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;
  clip-path: inset(50%) !important;
}
.checkbox-switcher input:checked + .checkbox-switcher-checkmark {
  background-color: #f89d13;
}
.checkbox-switcher input:checked + .checkbox-switcher-checkmark::after {
  -webkit-transform: translateX(24px);
          transform: translateX(24px);
}
.checkbox-switcher .checkbox-switcher-checkmark {
  display: block;
  width: 52px;
  height: 28px;
  padding: 2px;
  background-color: #cacaca;
  border-radius: 40px;
  cursor: pointer;
}
.checkbox-switcher .checkbox-switcher-checkmark::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
}

.upload-file {
  display: block;
  padding: 40px 24px;
  background-color: #eee;
  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;
  clip-path: inset(50%) !important;
}

.upload-file-title {
  display: block;
  font-weight: bold;
  font-size: 16px;
  line-height: 100%;
  color: #41413e;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}

.upload-file-button {
  display: block;
  width: 216px;
  margin: 0 auto;
}
.upload-file-button .border-button {
  width: 100%;
}

.upload-file-text {
  display: block;
  font-size: 16px;
  line-height: 150%;
  color: #555553;
  text-align: center;
  margin-top: 12px;
}

.upload-file-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: -20px -20px 0;
}

.upload-file-col {
  padding: 0 20px;
  margin-top: 20px;
}

.upload-file-image {
  display: block;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  overflow: hidden;
}
.upload-file-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.form-item-label {
  display: block;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 8px;
}
.form-item-label .required {
  color: #f89d13;
}

.form-item-description {
  color: #80807e;
  margin-bottom: 10px;
}
.form-item-description:last-child {
  margin-top: 10px;
  margin-bottom: 0;
}

.form-item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
}
.form-item-header .form-item-label {
  margin-bottom: 0;
}
.form-item-header .emoji {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
}
.form-item-header .emoji__btn {
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 24px;
  height: 24px;
  background: url("../img/emoji-open-icon.svg") no-repeat;
  border: none;
  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 {
  margin-top: 32px;
}
.form-submit-item .button {
  width: 100%;
}

@media (max-width: 1399px) {
  .upload-file-row {
    margin: -20px -10px 0;
  }
  .upload-file-col {
    padding: 0 10px;
  }
  .upload-file-image {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 1199px) {
  .upload-file-row {
    margin: -20px -20px 0;
  }
  .upload-file-col {
    padding: 0 20px;
  }
  .upload-file-image {
    width: 86px;
    height: 86px;
  }
}
@media (max-width: 767px) {
  .checkbox-switcher input:checked + .checkbox-switcher-checkmark::after {
    -webkit-transform: translateX(18px);
            transform: translateX(18px);
  }
  .checkbox-switcher .checkbox-switcher-checkmark {
    width: 40px;
    height: 22px;
  }
  .checkbox-switcher .checkbox-switcher-checkmark::after {
    width: 18px;
    height: 18px;
  }
  .upload-file {
    padding: 28px 56px;
  }
  .upload-file-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;
  }
  .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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -5px;
}
.pagination li {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0 5px;
}
.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: 40px;
  height: 40px;
  background-color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
}
.pagination a:hover {
  background-color: #fef1dc;
}
.pagination .prev a, .pagination .prev span, .pagination .next a, .pagination .next span {
  position: relative;
}
.pagination .prev a::before, .pagination .prev span::before, .pagination .next a::before, .pagination .next span::before {
  content: "";
  display: block;
  background: url("../img/pagination-arrow-icon.svg") no-repeat center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.pagination .next {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.pagination .current span {
  background-color: #2b2b28;
  color: #fff;
}

@media (max-width: 767px) {
  .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 {
    margin: 0 -1px;
  }
  .pagination li {
    padding: 0 1px;
  }
  .pagination a, .pagination span {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .pagination .prev a::before, .pagination .prev span::before, .pagination .next a::before, .pagination .next span::before {
    background-size: 16px 16px;
  }
}
.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: 24px;
  height: 24px;
  cursor: pointer;
  position: relative;
  margin-right: 10px;
}
.rating-star:first-child {
  margin-right: 0;
}
.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;
  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: 8px;
}
.review-rating-star:last-child {
  margin-right: 0;
}
.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;
}

.mfp-bg {
  background-color: #2b2b28;
  opacity: 0.9;
  position: fixed !important;
}

.mfp-wrap {
  position: fixed !important;
  top: 0 !important;
  overflow: hidden auto;
}

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

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

.popup-title {
  font-family: "Prosto One", sans-serif;
  font-weight: normal;
  font-size: 26px;
  line-height: 130%;
  text-align: center;
  margin-bottom: 32px;
}

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

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

.popup-bottom-text {
  text-align: center;
  margin-top: 32px;
}
.popup-bottom-text a {
  color: #f89d13;
  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: 20px;
  background-color: #eee;
  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;
  clip-path: inset(50%) !important;
}

.popup-upload-file-text {
  display: block;
  font-size: 16px;
  line-height: 150%;
  color: #555553;
  margin-right: 20px;
}

.popup-upload-file-button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 194px;
}
.popup-upload-file-button .border-button {
  width: 100%;
}

.popup-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 24px;
  margin-bottom: 24px;
}
.popup-rating .form-item-label {
  margin-right: 24px;
  margin-bottom: 0;
}

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

.authorization-popup .member-nickname-item {
  display: none;
}
.authorization-popup .member-nickname-item.active {
  display: block;
}
.authorization-popup .member-nickname-check {
  display: inline-block;
  color: #3431dc;
  margin-top: 4px;
}

.confirm-popup {
  padding-top: 44px;
}
.confirm-popup .mfp-close {
  display: none;
}

.confirm-popup-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 32px;
}
.confirm-popup-image img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.confirm-popup-text {
  color: #555553;
  text-align: center;
  margin-bottom: 32px;
}

.confirm-popup-button .button {
  display: block;
  width: 100%;
}

.blacklist-popup-phone-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blacklist-popup-phone-add {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 44px;
  height: 44px;
  background-color: #2b2b28;
  position: relative;
  margin-left: 16px;
  cursor: pointer;
}
.blacklist-popup-phone-add::before, .blacklist-popup-phone-add::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.blacklist-popup-phone-add::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.blacklist-popup-phone-add:hover {
  background-color: #555553;
}

.blacklist-popup-phone-remove {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 44px;
  height: 44px;
  background-color: #2b2b28;
  position: relative;
  margin-left: 16px;
  cursor: pointer;
}
.blacklist-popup-phone-remove::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.blacklist-popup-phone-remove:hover {
  background-color: #555553;
}

@media (max-width: 767px) {
  .mfp-container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .mfp-close {
    right: 16px;
    top: 16px !important;
  }
  .popup {
    padding: 56px 24px 24px;
  }
  .popup-title {
    margin-bottom: 24px;
  }
  .popup-bottom-text {
    margin-top: 20px;
  }
  .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: 20px;
  }
  .popup-upload-file-button {
    width: 100%;
  }
  .popup-rating .form-item-label {
    margin-right: 16px;
  }
  .popup-rating .rating {
    margin-right: 8px;
  }
  .popup-rating-clear {
    margin-left: 0;
  }
  .confirm-popup {
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .confirm-popup-image img {
    max-width: 215px;
  }
  .confirm-popup-text {
    margin-bottom: 20px;
  }
}
.custom-table table {
  width: 100%;
}
.custom-table table th, .custom-table table td {
  height: 56px;
  padding: 16px 20px;
}
.custom-table table th {
  background-color: #2b2b28;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #fff;
  text-transform: uppercase;
  text-align: left;
}
.custom-table table td {
  background-color: #f4f4f4;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
}
.custom-table table td:first-child {
  border-left: none;
}
.custom-table table .unread {
  font-weight: bold;
}
.custom-table .checkbox {
  width: 20px;
  margin: 0 auto;
}
.custom-table .checkbox .checkbox-checkmark {
  margin: 0;
}

.custom-table-controls {
  padding: 12px 24px;
  background-color: #f4f4f4;
  border-top: 2px solid #fff;
}

.custom-table-controls-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: -12px -6px 0;
}

.custom-table-controls-col {
  padding: 0 6px;
  margin-top: 12px;
}

.custom-table-controls-select {
  width: 252px;
}
.custom-table-controls-select .select2-container {
  width: 100% !important;
}

.custom-table-controls-button {
  width: 186px;
}
.custom-table-controls-button .button {
  width: 100%;
}

@media (max-width: 767px) {
  .custom-table::-webkit-scrollbar {
    height: 4px;
  }
  .custom-table::-webkit-scrollbar-track {
    background-color: #eee;
  }
  .custom-table::-webkit-scrollbar-thumb {
    background-color: #f89d13;
  }
  .custom-table table th, .custom-table table td {
    padding: 12px;
  }
  .custom-table-controls {
    padding: 12px;
  }
  .custom-table-controls-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .custom-table-controls-select {
    width: 100%;
  }
  .custom-table-controls-button {
    width: 100%;
  }
}
.header {
  margin-bottom: 32px;
}

.header-top {
  background-color: #fef5e7;
}

.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;
  height: 76px;
}

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

.header-logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  margin-right: 70px;
}

.header-locations ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -16px;
}
.header-locations li {
  padding: 0 16px;
}
.header-locations a {
  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: 20px;
  text-decoration: underline;
}
.header-locations a::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.header-locations-districts a::before {
  background: url("../img/header-locations-districts-icon.svg") no-repeat;
}

.header-locations-metro a::before {
  background: url("../img/header-locations-metro-icon.svg") no-repeat;
}

.header-top-panel-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-top-panel-right .button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 24px;
}

.header-search {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  margin-right: 40px;
}

.header-search-button {
  width: 24px;
  height: 24px;
  position: relative;
  cursor: pointer;
}
.header-search-button::before, .header-search-button::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.header-search-button::before {
  background: url("../img/header-search-open-icon.svg") no-repeat;
  opacity: 1;
}
.header-search-button::after {
  background: url("../img/header-search-close-icon.svg") no-repeat;
  opacity: 0;
}
.header-search-button.active::before {
  opacity: 0;
}
.header-search-button.active::after {
  opacity: 1;
}

.header-search-dropdown {
  display: none;
  width: 500px;
  padding: 20px;
  background-color: #2b2b28;
  border: 1px solid #555553;
  position: absolute;
  right: -10px;
  top: calc(100% + 16px);
  z-index: 2;
}
.header-search-dropdown.active {
  display: block;
}

.header-search-form {
  position: relative;
}
.header-search-form .header-search-field {
  padding-right: 52px;
  background-color: #41413e;
  border: none;
  color: #fff;
}
.header-search-form .header-search-field::-webkit-input-placeholder {
  color: #aaaaa9;
}
.header-search-form .header-search-field::-moz-placeholder {
  color: #aaaaa9;
}
.header-search-form .header-search-field:-ms-input-placeholder {
  color: #aaaaa9;
}
.header-search-form .header-search-field::-ms-input-placeholder {
  color: #aaaaa9;
}
.header-search-form .header-search-field::placeholder {
  color: #aaaaa9;
}
.header-search-form .header-search-submit {
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 52px;
  height: 100%;
  background: url("../img/search-submit-icon.svg") no-repeat center;
  border: none;
  font-size: 0;
  color: transparent;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}

.header-favorite {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 24px;
  height: 24px;
  background: url("../img/header-favorite-icon.svg") no-repeat;
  position: relative;
  margin-right: 16px;
}
.header-favorite span {
  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: 20px;
  height: 20px;
  background-color: #f89d13;
  border-radius: 50%;
  font-weight: bold;
  font-size: 12px;
  line-height: 100%;
  position: absolute;
  right: -13px;
  top: -10px;
}

.header-balance {
  -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;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  margin-left: 40px;
}
.header-balance::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 20px;
  height: 20px;
  background: url("../img/header-balance-icon.svg") no-repeat;
  margin-right: 8px;
}

.header-account {
  position: relative;
  margin-left: 40px;
  cursor: pointer;
}
.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: 12px;
  height: 12px;
  background: url("../img/header-dropdown-icon.svg") no-repeat;
  margin-left: 8px;
}

.header-account-avatar {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 8px;
}
.header-account-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.header-account-name {
  max-width: 184px;
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.header-account-dropdown {
  display: none;
  width: 246px;
  background-color: #fff;
  border: 1px solid #cacaca;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 1;
}
.header-account-dropdown::before {
  content: "";
  display: block;
  width: 100%;
  height: 11px;
  position: absolute;
  left: 0;
  bottom: 100%;
}
.header-account-dropdown li {
  font-size: 16px;
  line-height: 150%;
}
.header-account-dropdown a {
  display: block;
  padding: 7px 16px;
}
.header-account-dropdown a span {
  color: #f89d13;
}
.header-account-dropdown a:hover {
  background-color: #41413e;
  color: #fff;
}
.header-account-dropdown a:hover span {
  color: #fff;
}
.header-account-dropdown .sign-out-link {
  color: #3431dc;
}

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

.header-hamburger {
  display: none;
}

.header-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -30px;
}
.header-menu li {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #fff;
  text-transform: uppercase;
  padding: 0 30px;
}
.header-menu a {
  display: block;
  padding: 16px 0;
}
.header-menu a:hover {
  color: #f89d13;
}
.header-menu .current a {
  color: #f89d13;
}

.header-icons-menu {
  display: none;
}

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

@media (max-width: 1599px) {
  .header-logo {
    margin-right: 48px;
  }
  .header-locations ul {
    margin: 0 -12px;
  }
  .header-locations li {
    padding: 0 12px;
  }
  .header-search {
    margin-right: 24px;
  }
  .header-favorite {
    margin-right: 0;
  }
  .header-balance {
    margin-left: 24px;
  }
  .header-account {
    margin-left: 24px;
  }
}
@media (max-width: 1399px) {
  .header-logo {
    margin-right: 16px;
  }
  .header-locations ul {
    margin: 0 -8px;
  }
  .header-locations li {
    padding: 0 8px;
  }
  .header-top-panel-right .button {
    margin-left: 16px;
  }
  .header-search {
    margin-right: 16px;
  }
  .header-favorite {
    margin-right: 8px;
  }
  .header-balance {
    margin-left: 16px;
  }
  .header-account {
    margin-left: 16px;
  }
  .header-account-name {
    max-width: 112px;
  }
}
@media (max-width: 1199px) {
  .header-top-panel {
    height: 56px;
  }
  .header-logo {
    max-width: 131px;
  }
  .header-locations {
    display: none;
  }
  .header-top-panel-right .button {
    display: none;
  }
  .header-search {
    margin-right: 32px;
  }
  .header-favorite {
    margin-right: 0;
  }
  .header-balance {
    display: none;
  }
  .header-account {
    display: none;
  }
  .header-bottom-panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 50px;
  }
  .header-hamburger {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: block;
    width: 24px;
    height: 24px;
    position: relative;
    cursor: pointer;
    margin-right: auto;
  }
  .header-hamburger::before, .header-hamburger::after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
  .header-hamburger::before {
    background: url("../img/hamburger-open-icon.svg") no-repeat;
    opacity: 1;
  }
  .header-hamburger::after {
    background: url("../img/hamburger-close-icon.svg") no-repeat;
    opacity: 0;
  }
  .header-hamburger.active::before {
    opacity: 0;
  }
  .header-hamburger.active::after {
    opacity: 1;
  }
  .header-menu {
    display: none;
  }
  .header-icons-menu {
    display: block;
  }
  .header-icons-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -14px;
  }
  .header-icons-menu li {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding: 0 14px;
  }
  .mobile-menu-wrapper {
    width: 100%;
    height: calc(100% - 106px);
    position: fixed;
    left: 0;
    top: 106px;
    z-index: 2;
  }
  .mobile-menu-wrapper.active {
    display: block;
  }
  .mobile-menu {
    width: 100%;
    height: 100%;
    padding: 32px 4px 40px;
    background-color: #2b2b28;
    overflow-y: auto;
  }
  .mobile-menu-list li {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 32px;
  }
  .mobile-menu-list li:last-child {
    margin-bottom: 0;
  }
  .mobile-menu-list a:hover {
    color: #f89d13;
  }
  .mobile-menu-list .current a {
    color: #f89d13;
  }
  .mobile-menu-user-list {
    padding-bottom: 32px;
    border-bottom: 1px solid #555553;
    margin-bottom: 32px;
  }
  .mobile-menu-user-list li {
    margin-bottom: 16px;
  }
  .mobile-menu-user-list li:last-child {
    margin-bottom: 0;
  }
  .mobile-menu-user-list a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
  }
  .mobile-menu-user-list a:hover {
    color: #f89d13;
  }
  .mobile-menu-user-list a:hover .list-icon img:nth-child(1) {
    display: none;
  }
  .mobile-menu-user-list a:hover .list-icon img:nth-child(2) {
    display: block;
  }
  .mobile-menu-user-list .list-icon {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-right: 24px;
  }
  .mobile-menu-user-list .list-icon img:nth-child(1) {
    display: block;
  }
  .mobile-menu-user-list .list-icon img:nth-child(2) {
    display: none;
  }
  .mobile-menu-user-list .list-text span {
    color: #f89d13;
  }
  .mobile-menu-user-list .current a {
    color: #f89d13;
  }
  .mobile-menu-user-list .current a img:nth-child(1) {
    display: none;
  }
  .mobile-menu-user-list .current a img:nth-child(2) {
    display: block;
  }
  .mobile-menu-user {
    padding-top: 8px;
    position: relative;
    margin-bottom: 32px;
  }
  .mobile-menu-user-edit {
    display: block;
    width: 24px;
    height: 24px;
    background: url("../img/mobile-menu-user-edit-icon.svg") no-repeat;
    position: absolute;
    right: 0;
    top: -12px;
  }
  .mobile-menu-user-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
  }
  .mobile-menu-user-avatar img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .mobile-menu-user-name {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #eee;
    text-align: center;
    margin-top: 20px;
  }
  .mobile-menu-user-balance {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #eee;
    text-align: center;
    margin-top: 12px;
  }
  .mobile-menu-user-balance strong {
    font-weight: inherit;
    color: #f89d13;
  }
  .mobile-menu-user-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 24px;
  }
  .mobile-menu-user-button .button {
    width: 216px;
  }
  .mobile-menu-user-statistics {
    margin-top: 24px;
  }
  .mobile-menu-user-statistics li {
    font-size: 16px;
    line-height: 150%;
    color: #eee;
    margin-bottom: 8px;
  }
  .mobile-menu-user-statistics li:last-child {
    margin-bottom: 0;
  }
  .mobile-menu-user-statistics li strong {
    font-weight: inherit;
    color: #f89d13;
    margin-left: 2px;
  }
}
@media (max-width: 767px) {
  .header {
    margin-bottom: 20px;
  }
  .header-top-panel {
    padding: 0 4px;
  }
  .header-favorite {
    margin-right: 14px;
  }
  .header-search {
    position: static;
  }
  .header-search-dropdown {
    width: auto;
    left: 0;
    right: 0;
    top: 56px;
  }
  .header-bottom-panel {
    padding: 0 4px;
  }
}
.footer {
  padding: 54px 0 40px;
  background-color: #2b2b28;
  margin-top: 120px;
}

.footer-panel {
  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: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  margin-bottom: 20px;
}

.footer-menu {
  margin-bottom: 16px;
}
.footer-menu 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: 0 -20px;
}
.footer-menu li {
  padding: 0 20px;
  color: #fff;
  position: relative;
}
.footer-menu li::after {
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  background-color: #cacaca;
  position: absolute;
  right: 0;
  top: 3px;
}
.footer-menu li:last-child::after {
  display: none;
}
.footer-menu a {
  text-decoration: underline;
}
.footer-menu a[href*=mailto] {
  text-decoration: none;
}

.footer-text {
  max-width: 466px;
  color: #fff;
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .footer {
    padding: 46px 0 30px;
    margin-top: 100px;
  }
  .footer-logo {
    max-width: 131px;
    margin-bottom: 16px;
  }
  .footer-text {
    width: 90%;
    max-width: 438px;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
  }
}
.filters-section {
  margin-bottom: 72px;
}

.filters-nav-row {
  margin-top: -32px;
}

.filters-nav-col {
  width: 16.6666666667%;
  margin-top: 32px;
}

.filters-nav-item {
  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: 100%;
  height: 100px;
  padding: 14px;
  position: relative;
  cursor: pointer;
}
.filters-nav-item.filters-nav-item-all .filters-nav-item-image {
  background-color: #f89d13;
}
.filters-nav-item.filters-nav-item-all .filters-nav-item-image::before, .filters-nav-item.filters-nav-item-all .filters-nav-item-image::after {
  display: none;
}
.filters-nav-item.filters-nav-item-all .filters-nav-item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  color: #2b2b28;
}
.filters-nav-item.filters-nav-item-all .filters-nav-item-text::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 24px;
  height: 24px;
  background: url("../img/filters-nav-item-icon.svg") no-repeat center/contain;
  margin-right: 12px;
}
.filters-nav-item.filters-nav-item-all:hover .filters-nav-item-text {
  color: #2b2b28;
}
.filters-nav-item.filters-nav-item-all.active .filters-nav-item-text {
  color: #2b2b28;
}
.filters-nav-item:hover .filters-nav-item-image::before {
  opacity: 0;
}
.filters-nav-item:hover .filters-nav-item-image::after {
  opacity: 1;
}
.filters-nav-item:hover .filters-nav-item-text {
  color: #f89d13;
}
.filters-nav-item.active .filters-nav-item-image::before {
  opacity: 0;
}
.filters-nav-item.active .filters-nav-item-image::after {
  opacity: 1;
}
.filters-nav-item.active .filters-nav-item-text {
  color: #f89d13;
}

.filters-nav-item-image {
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.filters-nav-item-image::before, .filters-nav-item-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.filters-nav-item-image::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(26, 26, 26, 0.1)), to(rgba(26, 26, 26, 0.7)));
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.1) 0%, rgba(26, 26, 26, 0.7) 100%);
  opacity: 1;
}
.filters-nav-item-image::after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(248, 157, 19, 0.05)), to(rgba(248, 157, 19, 0.3)));
  background: linear-gradient(180deg, rgba(248, 157, 19, 0.05) 0%, rgba(248, 157, 19, 0.3) 100%);
  opacity: 0;
}
.filters-nav-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.filters-nav-item-text {
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  color: #fff;
  text-align: center;
  position: relative;
}

.filters-wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2;
  pointer-events: none;
}
.filters-wrapper::before {
  content: "";
  display: block;
  background-color: rgba(43, 43, 40, 0.5);
  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);
}
.filters-wrapper.opened {
  pointer-events: all;
}
.filters-wrapper.opened::before {
  opacity: 1;
}
.filters-wrapper.opened .filters {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.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: 480px;
  max-width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  right: 0;
  z-index: 1;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.filters-header {
  -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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 64px;
  border-bottom: 1px solid #cacaca;
  position: relative;
}

.filters-header-title {
  font-family: "Prosto One", sans-serif;
  font-weight: normal;
  font-size: 22px;
  line-height: 130%;
}

.filters-close {
  display: block;
  width: 20px;
  height: 20px;
  background: url("../img/filters-close-icon.svg") no-repeat;
  position: absolute;
  right: 24px;
  top: 22px;
  cursor: pointer;
}

.filters-body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow-x: hidden;
  overflow-y: auto;
}

.filters-body {
  padding: 24px 32px 20px;
}

.filters-block {
  border-bottom: 1px solid #cacaca;
}
.filters-block.active .filters-block-header::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.filters-block.active .filters-block-body {
  display: block;
}
.filters-block.hidden {
  display: none;
}

.filters-block-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 56px;
  cursor: pointer;
}
.filters-block-header::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 20px;
  height: 20px;
  background: url("../img/filters-block-header-arrow-icon.svg") no-repeat;
  margin-left: 12px;
}

.filters-block-header-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  margin-right: auto;
}

.filters-block-header-counter {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 12px;
}
.filters-block-header-counter span {
  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: 24px;
  height: 24px;
  background-color: #2b2b28;
  border-radius: 50%;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  color: #fff;
}

.filters-block-body {
  display: none;
  padding-bottom: 20px;
}

.filters-block-title {
  font-weight: bold;
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
  color: #f89d13;
  margin-bottom: 10px;
}

.filters-list {
  margin-bottom: 20px;
}
.filters-list li {
  margin-bottom: 16px;
}
.filters-list li:last-child {
  margin-bottom: 0;
}
.filters-list:last-child {
  margin-bottom: 0;
}

.filters-footer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 20px 32px 40px;
}

.filters-footer-buttons-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -10px;
}

.filters-footer-buttons-col {
  width: 50%;
  padding: 0 10px;
}
.filters-footer-buttons-col .button {
  width: 100%;
}

@media (max-width: 1599px) {
  .filters-nav-item-text {
    font-size: 22px;
  }
}
@media (max-width: 1399px) {
  .filters-nav-item.filters-nav-item-all .filters-nav-item-text {
    font-size: 16px;
  }
  .filters-nav-item.filters-nav-item-all .filters-nav-item-text::before {
    width: 20px;
    height: 20px;
  }
  .filters-nav-item-text {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .filters-nav-col {
    width: 33.3333333333%;
  }
}
@media (max-width: 767px) {
  .filters-section {
    margin-bottom: 40px;
  }
  .filters-nav-row {
    margin: -12px -6px 0;
  }
  .filters-nav-col {
    width: 50%;
    padding: 0 6px;
    margin-top: 12px;
  }
  .filters-nav-item {
    height: 72px;
  }
  .filters-header {
    height: 56px;
  }
  .filters-close {
    right: 16px;
    top: 18px;
  }
  .filters-body {
    padding: 16px 16px 20px;
  }
  .filters-footer {
    padding: 20px 16px 24px;
  }
  .filters-footer-buttons-col .button {
    padding: 18px;
  }
}
.catalog-selected-block {
  display: none;
}
.catalog-selected-block.active {
  display: block;
  margin-bottom: 32px;
}

.catalog-selected-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -12px -10px 0;
}
.catalog-selected-list li {
  padding: 0 10px;
  margin-top: 12px;
}
.catalog-selected-list a {
  display: block;
  padding: 6px 38px 6px 12px;
  background-color: #fef1dc;
  position: relative;
}
.catalog-selected-list a::before {
  content: "";
  display: block;
  width: 16px;
  height: 100%;
  background: url("../img/catalog-selected-close-icon.svg") no-repeat center;
  position: absolute;
  right: 12px;
  top: 0;
}
.catalog-selected-list a:hover {
  background-color: #f9e1b8;
}
.catalog-selected-list .catalog-selected-reset {
  padding: 5px 11px;
  background-color: transparent;
  border: 1px solid #2b2b28;
}
.catalog-selected-list .catalog-selected-reset::before {
  display: none;
}
.catalog-selected-list .catalog-selected-reset:hover {
  background-color: #2b2b28;
  color: #fff;
}

.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: 24px;
}

.catalog-sort-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: -20px -12px 0;
}

.catalog-sort-col {
  padding: 0 12px;
  margin-top: 20px;
}

.catalog-checkbox-sort {
  padding-right: 22px;
}
.catalog-checkbox-sort .checkbox .checkbox-text {
  font-weight: 600;
}

.catalog-general-sort {
  width: 252px;
}
.catalog-general-sort .select2-container {
  width: 100% !important;
}

.profiles-counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.profiles-counter::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 24px;
  height: 24px;
  background: url("../img/profiles-counter-icon.svg") no-repeat center/contain;
  margin-right: 12px;
}

.profiles-counter-value {
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
}

.cards-row {
  margin-top: -32px;
}

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

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

.card-col {
  width: 50%;
}

.card-left-content {
  background-color: #fff;
  position: relative;
}

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

.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: 0;
  bottom: 16px;
  z-index: 1;
}

.card-status {
  padding: 6px 8px;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  color: #fff;
  margin-bottom: 6px;
}
.card-status:last-child {
  margin-bottom: 0;
}
.card-status.card-status-top {
  background-color: #b43c76;
}
.card-status.card-status-video {
  background-color: #c0651b;
}
.card-status.card-status-indi {
  background-color: #264973;
}

.card-favorite {
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 16px;
  top: 16px;
  cursor: pointer;
}
.card-favorite::before, .card-favorite::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.card-favorite.active::before {
  opacity: 0;
}
.card-favorite.active::after {
  opacity: 1;
}

.card-favorite::before {
  background: url("../img/card-favorite-icon.svg") no-repeat center/contain;
  opacity: 1;
}

.card-favorite::after {
  background: url("../img/card-favorite-active-icon.svg") no-repeat center/contain;
  opacity: 0;
}

.card-right-content {
  height: 100%;
  padding: 15px;
  background-color: #fff;
  border: 1px solid #cacaca;
}

.card-name {
  display: block;
  font-family: "Prosto One", sans-serif;
  font-weight: normal;
  font-size: 22px;
  line-height: 130%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-location {
  display: block;
  padding-left: 30px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-decoration: underline;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  margin-top: 8px;
}
.card-location::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 20px;
  height: 20px;
  background: url("../img/card-location-icon.svg") no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0;
}

.card-count {
  display: block;
  padding-left: 30px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  margin-top: 20px;
}
.card-count::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 20px;
  height: 20px;
  background: url("../img/card-count-icon.svg") no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0;
}

.card-description {
  font-size: 16px;
  line-height: 150%;
  color: #5d5d5d;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  margin-top: 20px;
}

.card-button {
  margin-top: 20px;
}
.card-button .button {
  width: 100%;
}

.card-phone {
  background-color: #f89d13;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  cursor: pointer;
  margin-top: 14px;
  display: none;
}
.card-phone:hover {
  background-color: #ffae32;
}

.card-phone-text {
  padding: 8px;
}

.card-phone-number {
  display: none;
  padding: 8px;
}
.card-phone-number.active {
  display: block;
}

.card-parameters {
  margin-top: 20px;
}
.card-parameters li {
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: #5d5d5d;
  margin-bottom: 10px;
}
.card-parameters li strong {
  font-weight: bold;
  font-size: 16px;
  line-height: 100%;
  color: #2b2b28;
  margin-left: 4px;
}
.card-parameters li:last-child {
  margin-bottom: 0;
}

.card-prices {
  margin-top: 20px;
}

.card-prices-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -8px -4px 0;
}

.card-prices-col {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 50%;
  padding: 0 4px;
  margin-top: 8px;
}

.card-price {
  padding: 8px;
  background-color: #fef1dc;
}

.card-price-label {
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: #5d5d5d;
  margin-bottom: 6px;
}

.card-price-value {
  font-weight: bold;
  font-size: 16px;
  line-height: 100%;
}

.card-options {
  margin-top: 20px;
}

.card-options-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -8px;
}

.card-options-col {
  padding: 0 8px;
}

.card-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.card-option-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 32px;
  height: 32px;
  background-color: #f89d13;
  margin-right: 10px;
}
.card-option-icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.card-option-icon.apartments::before {
  background-image: url("../img/card-apartments-icon.svg");
}
.card-option-icon.departure::before {
  background-image: url("../img/card-departure-icon.svg");
}

.card-option-label {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
}

.card-reviews {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #5d5d5d;
  margin-top: 20px;
}
.card-reviews strong {
  font-weight: bold;
  color: #2b2b28;
}

@media (max-width: 1599px) {
  .card-price-value {
    font-size: 12px;
  }
  .card-option-label {
    font-size: 12px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .cards-row {
    margin-left: -12px;
    margin-right: -12px;
    margin-top: -24px;
  }
  .cards-col {
    padding: 0 12px;
    margin-top: 24px;
  }
  .cards-col .card-image {
    height: 304px;
  }
  .cards-col .card-right-content {
    padding: 10px;
  }
  .cards-col .card-name {
    font-size: 16px;
  }
  .cards-col .card-location {
    font-size: 12px;
  }
  .cards-col .card-count {
    font-size: 12px;
    margin-top: 16px;
  }
  .cards-col .card-description {
    font-size: 14px;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    margin-top: 16px;
  }
  .cards-col .card-button {
    margin-top: 16px;
  }
  .cards-col .card-parameters {
    margin-top: 16px;
  }
  .cards-col .card-parameters li {
    margin-bottom: 6px;
  }
  .cards-col .card-parameters li:last-child {
    margin-bottom: 0;
  }
  .cards-col .card-parameters li strong {
    font-size: 12px;
  }
  .cards-col .card-prices {
    margin-top: 16px;
  }
  .cards-col .card-prices-row {
    margin: -6px -3px 0;
  }
  .cards-col .card-prices-col {
    padding: 0 3px;
    margin-top: 6px;
  }
  .cards-col .card-price {
    padding: 5px;
  }
  .cards-col .card-price-label {
    font-size: 12px;
  }
  .cards-col .card-options {
    margin-top: 16px;
  }
  .cards-col .card-options-row {
    margin: 0 -6px;
  }
  .cards-col .card-options-col {
    padding: 0 6px;
  }
  .cards-col .card-option-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
  }
  .cards-col .card-option-icon::before {
    background-size: 15px 15px;
  }
  .cards-col .card-reviews {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .cards-col {
    width: 50%;
  }
  .card-price-value {
    font-size: 14px;
  }
  .card-option-label {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .catalog-panel-left {
    width: 100%;
    margin-bottom: 32px;
  }
  .catalog-sort-col {
    width: 50%;
  }
  .catalog-general-sort {
    width: 100%;
  }
  .cards-col {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .catalog-selected-block.active {
    margin-bottom: 40px;
  }
  .catalog-selected-list ul {
    margin: -12px -6px 0;
  }
  .catalog-selected-list li {
    padding: 0 6px;
  }
  .catalog-panels {
    margin-bottom: 20px;
  }
  .catalog-sort-col {
    width: 100%;
  }
  .profiles-counter::before {
    width: 20px;
    height: 20px;
  }
  .profiles-counter-value {
    font-size: 18px;
  }
  .cards-row {
    padding: 0 8px;
    margin-top: -24px;
  }
  .cards-col {
    padding: 0;
    margin-top: 24px;
  }
  .card-col-left {
    width: 53%;
  }
  .card-col-right {
    width: 47%;
  }
  .card-image {
    height: 292px;
  }
  .card-statuses {
    bottom: 12px;
  }
  .card-favorite {
    width: 20px;
    height: 20px;
    right: 12px;
    top: 12px;
  }
  .card-right-content {
    padding: 0 0 0 12px;
    border: none;
  }
  .card-name {
    font-size: 16px;
  }
  .card-location {
    padding-left: 24px;
    font-size: 14px;
    line-height: 16px;
  }
  .card-location::before {
    width: 16px;
    height: 16px;
  }
  .card-count {
    padding-left: 24px;
    font-size: 14px;
    line-height: 16px;
  }
  .card-count::before {
    width: 16px;
    height: 16px;
  }
  .card-description {
    -webkit-line-clamp: 4;
    line-clamp: 4;
  }
  .card-button .button {
    padding: 4px 8px;
    font-size: 14px;
  }
  .card-phone {
    font-size: 14px;
  }
  .card-phone-text {
    padding: 5px;
  }
  .card-phone-number {
    padding: 5px;
  }
  .card-parameters li {
    font-size: 12px;
  }
  .card-parameters li strong {
    font-size: 13px;
    margin-left: 2px;
  }
  .card-prices-row {
    margin: -4px -2px 0;
  }
  .card-prices-col {
    padding: 0 2px;
    margin-top: 4px;
  }
  .card-price {
    padding: 5px;
  }
  .card-price-label {
    font-size: 12px;
    margin-bottom: 4px;
  }
  .card-price-value {
    font-size: 12px;
  }
  .card-options-row {
    margin: 0 -4px;
  }
  .card-options-col {
    padding: 0 4px;
  }
  .card-option-icon {
    width: 24px;
    height: 24px;
    margin-right: 6px;
  }
  .card-option-icon::before {
    background-size: 14px 14px;
  }
  .card-option-label {
    font-size: 13px;
  }
  .card-reviews {
    font-size: 16px;
    margin-top: 18px;
  }
}
.bottom-section {
  margin-top: 120px;
}

.bottom-section-col {
  width: 50%;
}

.bottom-section-content .section-title {
  max-width: 480px;
}
.bottom-section-content .bottom-section-image {
  display: none;
}

.bottom-section-text {
  max-width: 674px;
  color: #555553;
}
.bottom-section-text p {
  margin-bottom: 1em;
}
.bottom-section-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .bottom-section-col {
    width: 100%;
  }
  .bottom-section-col:last-child {
    display: none;
  }
  .bottom-section-content .bottom-section-image {
    display: block;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .bottom-section-content .section-title {
    max-width: 100%;
  }
}
.product-nav {
  margin-bottom: 24px;
}

.product-nav-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 -16px;
}

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

.product-nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-nav-link:hover .product-nav-icon {
  background-color: #f9e1b8;
}

.product-nav-link-prev .product-nav-icon {
  margin-right: 20px;
}

.product-nav-link-next .product-nav-icon {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  margin-left: 20px;
}

.product-nav-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: #fef1dc;
  position: relative;
}
.product-nav-icon::before {
  content: "";
  display: block;
  background: url("../img/product-nav-icon.svg") no-repeat center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.product-nav-name {
  font-family: "Prosto One", sans-serif;
  font-size: 22px;
  line-height: 130%;
}

.product-col-left {
  width: 33.3333333333%;
}

.product-col-middle {
  width: 41.6666666667%;
}

.product-col-right {
  width: 25%;
}

.product-gallery .product-photo-checked {
  display: none;
}

.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: 40px;
  height: 40px;
  background-color: rgba(43, 43, 40, 0.5);
}
.product-gallery-slider .swiper-button-prev::before, .product-gallery-slider .swiper-button-next::before {
  display: none;
}
.product-gallery-slider .swiper-button-prev::after, .product-gallery-slider .swiper-button-next::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: url("../img/slider-arrow-white-icon.svg") no-repeat;
}
.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:hover, .product-gallery-slider .swiper-button-next:hover {
  background-color: #2b2b28;
}
.product-gallery-slider .swiper-button-prev {
  left: 12px;
}
.product-gallery-slider .swiper-button-next {
  right: 12px;
}
.product-gallery-slider .swiper-button-next::after {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.product-gallery-slider .swiper-pagination {
  display: none;
}
.product-gallery-slider .card-statuses {
  bottom: 20px;
}
.product-gallery-slider .card-status {
  padding: 8px 12px;
  font-size: 16px;
  margin-bottom: 10px;
}
.product-gallery-slider .card-status:last-child {
  margin-bottom: 0;
}

.product-gallery-slider-image {
  display: block;
  width: 100%;
  aspect-ratio: 469/648;
  overflow: hidden;
}
.product-gallery-slider-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-thumbs-slider {
  margin-top: 12px;
}
.product-thumbs-slider .swiper-slide {
  cursor: pointer;
}

.product-thumbs-slider-image {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.product-thumbs-slider-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

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

.product-info-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;
}

.product-name {
  font-family: "Prosto One", sans-serif;
  font-weight: normal;
  font-size: 36px;
  line-height: 130%;
}

.product-number {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #80807e;
  margin-top: 8px;
}
.product-number strong {
  font-weight: inherit;
  color: #555553;
}

.product-online-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  line-height: 150%;
  color: #555553;
  margin-top: 12px;
}
.product-online-status::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
}
.product-online-status.online::before {
  background-color: #2b823d;
}
.product-online-status.offline::before {
  background-color: #d40c0c;
}

.product-info-list {
  margin-top: 16px;
}
.product-info-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -12px -20px 0;
}
.product-info-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  position: relative;
  margin-top: 12px;
}
.product-info-list li::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.product-info-list li::after {
  content: "";
  display: block;
  width: 1px;
  height: 24px;
  background-color: #cacaca;
  position: absolute;
  right: 0;
  top: 0;
}
.product-info-list li.product-info-list-metro::before {
  background: url("../img/product-info-metro-icon.svg") no-repeat;
}
.product-info-list li.product-info-list-area::before {
  background: url("../img/product-info-location-icon.svg") no-repeat;
}
.product-info-list li.product-info-list-schedule::before {
  background: url("../img/product-info-schedule-icon.svg") no-repeat;
}
.product-info-list li:last-child::after {
  display: none;
}

.product-photo-checked {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 24px;
}

.product-photo-checked-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 12px;
  background-color: #2b823d;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #fff;
  margin-right: 16px;
}
.product-photo-checked-label::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 16px;
  height: 16px;
  background: url("../img/product-photo-checked-icon.svg") no-repeat;
  margin-right: 8px;
}

.product-photo-checked-date {
  color: #555553;
}

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

.product-actions ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -16px -20px 0;
}
.product-actions li {
  padding: 0 20px;
  margin-top: 16px;
}

.product-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-action:hover .product-action-icon::before {
  opacity: 0;
}
.product-action:hover .product-action-icon::after {
  opacity: 1;
}
.product-action.active .product-action-icon::before {
  opacity: 0;
}
.product-action.active .product-action-icon::after {
  opacity: 1;
}

.product-action-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  margin-right: 10px;
}
.product-action-icon::before, .product-action-icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.product-action-icon::before {
  opacity: 1;
}
.product-action-icon::after {
  opacity: 0;
}

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

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

.product-action-text {
  font-weight: 500;
  text-decoration: underline;
}

.product-phone-block {
  margin-top: 24px;
}

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

.product-phone-col {
  padding: 0 10px;
  margin-top: 20px;
}

.product-phone {
  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: 14px 24px;
  background-color: #f89d13;
  font-family: "Prosto One", sans-serif;
  font-size: 20px;
  line-height: 100%;
}
.product-phone::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 24px;
  height: 24px;
  background: url("../img/product-phone-icon.svg") no-repeat;
  margin-right: 12px;
}
.product-phone:hover {
  background-color: #ffae32;
}

.product-messengers ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -20px -10px 0;
}
.product-messengers li {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0 10px;
  margin-top: 20px;
}

.product-messenger {
  display: block;
  width: 52px;
  height: 52px;
}
.product-messenger.product-messenger-whatsapp {
  background: url("../img/messenger-whatsapp.svg") no-repeat center/contain;
}
.product-messenger.product-messenger-telegram {
  background: url("../img/messenger-telegram.svg") no-repeat center/contain;
}
.product-messenger.product-messenger-max {
  background: url("../img/messenger-max.svg") no-repeat center/contain;
}

.product-warning {
  padding: 20px;
  background-color: #f7e6cc;
  margin-top: 24px;
}
.product-warning p {
  margin-bottom: 1em;
}
.product-warning p:last-child {
  margin-bottom: 0;
}

.product-block-title {
  font-family: "Prosto One", sans-serif;
  font-weight: normal;
  font-size: 26px;
  line-height: 130%;
  margin-bottom: 24px;
}

.product-about {
  margin-top: 40px;
}
.product-about .product-block-title {
  margin-bottom: 12px;
}

.product-about-text {
  color: rgba(43, 43, 40, 0.8);
}

.product-services {
  margin-top: 60px;
}
.product-services .product-block-title {
  margin-bottom: 20px;
}

.product-services-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -40px -20px 0;
}

.product-services-col {
  width: 50%;
  padding: 0 20px;
  margin-top: 40px;
}

.product-services-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  margin-bottom: 16px;
}

.product-services-list li {
  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;
  padding-left: 30px;
  position: relative;
  margin-bottom: 14px;
}
.product-services-list li:last-child {
  margin-bottom: 0;
}
.product-services-list li::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("../img/product-services-list-icon.svg") no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 2px;
}

.product-services-price {
  font-weight: 600;
  color: #f89d13;
}

.product-services-comment {
  width: 100%;
  line-height: 120%;
  color: #80807e;
  margin-top: 4px;
}

.product-services-name {
  margin-right: 10px;
}

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

.product-schedule-table table {
  width: 100%;
}
.product-schedule-table table th {
  height: 52px;
  padding: 12px 24px;
  background-color: #2b2b28;
  font-family: "Prosto One", sans-serif;
  font-weight: normal;
  font-size: 20px;
  line-height: 130%;
  color: #fff;
  text-align: left;
}
.product-schedule-table table td {
  height: 44px;
  padding: 9px 24px;
  background-color: #f4f4f4;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  font-weight: 600;
}
.product-schedule-table table td:first-child {
  border-left: none;
}
.product-schedule-table table td:nth-child(1) {
  width: 218px;
}
.product-schedule-table table td:nth-child(2) {
  width: 376px;
  text-align: center;
}

.product-schedule-table-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -12px;
}
.product-schedule-table-header::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 26px;
  height: 26px;
  margin-right: 16px;
  margin-top: 12px;
}
.product-schedule-table-header.icon-clock::before {
  background: url("../img/product-schedule-clock-icon.svg") no-repeat;
}

.product-schedule-table-title {
  margin-right: 16px;
  margin-top: 12px;
}

.product-schedule-table-status {
  padding: 6px 10px;
  background-color: #2b823d;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  margin-top: 12px;
}

.product-map {
  margin-top: 60px;
}

.product-map-container {
  height: 360px;
  position: relative;
  overflow: hidden;
}

.product-map-placeholder {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-map-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.product-parameters {
  padding: 24px;
  background-color: #f4f4f4;
}
.product-parameters .product-block-title {
  margin-bottom: 16px;
}

.product-parameters-list li {
  margin-bottom: 12px;
}
.product-parameters-list li:last-child {
  margin-bottom: 0;
}

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

.product-parameter-label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  color: #555553;
}
.product-parameter-label::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: block;
  min-width: 12px;
  height: 2px;
  background: radial-gradient(circle, #555553 1px, transparent 1px) 0 0/4px 2px repeat-x;
  margin: 0 4px;
}

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

.product-prices-table {
  margin-top: 20px;
}
.product-prices-table:first-child {
  margin-top: 0;
}
.product-prices-table table {
  width: 100%;
}
.product-prices-table table th {
  height: 52px;
  padding: 12px 24px;
  background-color: #2b2b28;
  font-family: "Prosto One", sans-serif;
  font-weight: normal;
  font-size: 20px;
  line-height: 130%;
  color: #fff;
  text-align: left;
}
.product-prices-table table td {
  width: 50%;
  height: 44px;
  padding: 9px;
  background-color: #f4f4f4;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  font-weight: 600;
  text-align: center;
}
.product-prices-table table td:first-child {
  border-left: none;
}
.product-prices-table table .product-prices-table-extra td {
  height: 58px;
  border-top: 16px solid #fff;
}

.product-prices-table-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-prices-table-title::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 26px;
  height: 26px;
  margin-right: 16px;
}
.product-prices-table-title.icon-apartments::before {
  background: url("../img/prices-apartments-icon.svg") no-repeat;
}
.product-prices-table-title.icon-departure::before {
  background: url("../img/prices-departure-icon.svg") no-repeat;
}

.product-reviews {
  margin-top: 60px;
}
.product-reviews .product-block-title {
  margin-bottom: 24px;
}

.product-agency-section .product-reviews {
  margin-top: 0;
}

.product-reviews-button {
  max-width: 216px;
}

.product-reviews-block {
  margin-top: 32px;
}

.product-reviews-slider.has-navigation {
  padding-bottom: 60px;
}
.product-reviews-slider .swiper-button-prev, .product-reviews-slider .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: #fef1dc;
  margin: 0;
  top: auto;
  bottom: 0;
}
.product-reviews-slider .swiper-button-prev::before, .product-reviews-slider .swiper-button-next::before {
  display: none;
}
.product-reviews-slider .swiper-button-prev::after, .product-reviews-slider .swiper-button-next::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: url("../img/slider-arrow-black-icon.svg") no-repeat;
}
.product-reviews-slider .swiper-button-prev.swiper-button-disabled, .product-reviews-slider .swiper-button-next.swiper-button-disabled {
  background-color: #fff;
  opacity: 1;
}
.product-reviews-slider .swiper-button-prev:hover, .product-reviews-slider .swiper-button-next:hover {
  background-color: #f9e1b8;
}
.product-reviews-slider .swiper-button-prev {
  left: auto;
  right: 60px;
}
.product-reviews-slider .swiper-button-next {
  right: 0;
}
.product-reviews-slider .swiper-button-next::after {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.product-review {
  padding: 20px;
  background-color: #fff;
  border: 1px solid #cacaca;
  margin-bottom: 20px;
}
.product-review:last-child {
  margin-bottom: 0;
}

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

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

.product-review-avatar {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 16px;
}
.product-review-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-review-name {
  display: block;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
}

.product-review-date {
  font-size: 16px;
  line-height: 150%;
  color: #80807e;
  margin-top: 4px;
}

.product-review-rating {
  margin-top: 20px;
  margin-bottom: 12px;
}

.product-review-text {
  color: #555553;
}

.product-review-answer {
  padding-left: 16px;
  border-left: 4px solid #f89d13;
  margin-top: 24px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .product {
    font-size: 14px;
    line-height: 150%;
  }
  .product-row {
    margin: 0 -12px;
  }
  .product-col {
    padding: 0 12px;
  }
  .product-video {
    margin-top: 24px;
  }
  .product-name {
    font-size: 26px;
  }
  .product-online-status {
    margin-top: 5px;
  }
  .product-contacts {
    margin-top: 24px;
  }
  .product-actions ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: -16px -10px 0;
  }
  .product-actions li {
    padding: 0 10px;
  }
  .product-phone {
    padding: 7px 12px;
    font-size: 16px;
  }
  .product-messenger {
    width: 38px;
    height: 38px;
  }
  .product-warning {
    padding: 16px;
  }
  .product-block-title {
    font-size: 20px;
  }
  .product-about {
    margin-top: 24px;
  }
  .product-services {
    margin-top: 32px;
  }
  .product-services-row {
    margin: -32px -16px 0;
  }
  .product-services-col {
    padding: 0 16px;
    margin-top: 32px;
  }
  .product-services-title {
    font-size: 18px;
  }
  .product-services-list li {
    padding-left: 24px;
  }
  .product-services-list li::before {
    width: 16px;
    height: 16px;
    top: 3px;
  }
  .product-schedule-table table th {
    font-size: 18px;
  }
  .product-map {
    margin-top: 32px;
  }
  .product-map-container {
    height: 270px;
  }
  .product-parameters {
    padding: 16px;
  }
  .product-prices {
    margin-top: 24px;
  }
  .product-prices-table {
    margin-top: 16px;
  }
  .product-prices-table table th {
    font-size: 18px;
  }
  .product-reviews {
    margin-top: 32px;
  }
  .product-reviews-block {
    margin-top: 32px;
  }
  .product-review {
    padding: 16px;
  }
}
@media (max-width: 1199px) {
  .product-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .product-col {
    display: contents;
    width: 100%;
  }
  .product-col-left {
    width: 100%;
  }
  .product-col-middle {
    width: 100%;
  }
  .product-col-right {
    width: 100%;
  }
  .product-block {
    width: 100%;
    max-width: 100%;
  }
  .product-block.order-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .product-block.order-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .product-block.order-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .product-block.order-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .product-block.order-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .product-block.order-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .product-block.order-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .product-block.order-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .product-block.order-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .product-block.order-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .product-block.order-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .product-block.order-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .product-block.order-13 {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .product-block.order-14 {
    -webkit-box-ordinal-group: 15;
        -ms-flex-order: 14;
            order: 14;
  }
  .product-block.order-15 {
    -webkit-box-ordinal-group: 16;
        -ms-flex-order: 15;
            order: 15;
  }
  .product-block.order-16 {
    -webkit-box-ordinal-group: 17;
        -ms-flex-order: 16;
            order: 16;
  }
  .product-block.order-17 {
    -webkit-box-ordinal-group: 18;
        -ms-flex-order: 17;
            order: 17;
  }
  .product-block.order-18 {
    -webkit-box-ordinal-group: 19;
        -ms-flex-order: 18;
            order: 18;
  }
  .product-block.order-19 {
    -webkit-box-ordinal-group: 20;
        -ms-flex-order: 19;
            order: 19;
  }
  .product-block.order-20 {
    -webkit-box-ordinal-group: 21;
        -ms-flex-order: 20;
            order: 20;
  }
  .product-info .product-photo-checked {
    display: none;
  }
  .product-gallery {
    margin-top: 32px;
  }
  .product-gallery .product-photo-checked {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .product-contacts {
    margin-top: 40px;
  }
  .product-parameters {
    margin-top: 32px;
  }
  .product-agency-section .product-reviews {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .product-nav {
    margin-bottom: 20px;
  }
  .product-nav-link-prev .product-nav-icon {
    margin-right: 0;
  }
  .product-nav-link-prev .product-nav-name {
    display: none;
  }
  .product-nav-link-next .product-nav-icon {
    margin-left: 12px;
  }
  .product-nav-name {
    font-size: 18px;
  }
  .product-info-col {
    width: 100%;
  }
  .product-name {
    font-size: 32px;
  }
  .product-online-status {
    margin-top: 16px;
  }
  .product-info-list ul {
    margin: -12px -12px 0;
  }
  .product-info-list li {
    padding: 0 12px;
  }
  .product-info-list li::after {
    display: none;
  }
  .product-gallery {
    margin-top: 20px;
  }
  .product-gallery .product-photo-checked {
    margin-top: 16px;
  }
  .product-gallery-sliders {
    margin: 0 -16px;
  }
  .product-gallery-slider .swiper-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    bottom: 16px;
  }
  .product-gallery-slider .swiper-pagination .swiper-pagination-bullet {
    display: block;
    width: 8px;
    height: 8px;
    background-color: #80807e;
    opacity: 1;
    margin: 0 4px;
  }
  .product-gallery-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #fff;
  }
  .product-gallery-slider .card-statuses {
    margin-bottom: 44px;
  }
  .product-thumbs-slider {
    margin-top: 8px;
  }
  .product-thumbs-slider .swiper-slide {
    width: 148px;
  }
  .product-video {
    margin-top: 20px;
  }
  .product-contacts {
    margin-top: 32px;
  }
  .product-actions ul {
    margin: -16px -16px 0;
  }
  .product-actions li {
    padding: 0 16px;
  }
  .product-parameters {
    padding: 20px 16px;
    margin-top: 60px;
  }
  .product-prices-table table th {
    padding: 12px 20px;
  }
  .product-services-row {
    margin: -40px -16px 0;
  }
  .product-services-col {
    width: 100%;
    padding: 0 16px;
  }
  .product-services-list li {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .product-schedule-table table th {
    padding: 12px 20px;
  }
  .product-map-container {
    height: 460px;
  }
}
.related-products-section {
  margin-top: 120px;
}

.related-products-slider.has-navigation {
  padding-bottom: 72px;
}
.related-products-slider .swiper-button-prev, .related-products-slider .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: #fef1dc;
  margin: 0;
  top: auto;
  bottom: 0;
}
.related-products-slider .swiper-button-prev::before, .related-products-slider .swiper-button-next::before {
  display: none;
}
.related-products-slider .swiper-button-prev::after, .related-products-slider .swiper-button-next::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: url("../img/slider-arrow-black-icon.svg") no-repeat;
}
.related-products-slider .swiper-button-prev.swiper-button-disabled, .related-products-slider .swiper-button-next.swiper-button-disabled {
  background-color: #fff;
  opacity: 1;
}
.related-products-slider .swiper-button-prev:hover, .related-products-slider .swiper-button-next:hover {
  background-color: #f9e1b8;
}
.related-products-slider .swiper-button-prev {
  left: auto;
  right: 60px;
}
.related-products-slider .swiper-button-next {
  right: 0;
}
.related-products-slider .swiper-button-next::after {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.related-products-slider .cards-col {
  width: 100%;
  padding: 0;
  margin-top: 0;
}

@media (max-width: 1399px) {
  .related-products-section {
    margin-top: 100px;
  }
}
@media (max-width: 767px) {
  .related-products-section {
    margin-top: 60px;
  }
  .related-products-slider-wrapper {
    margin-left: -8px;
    margin-right: -8px;
  }
  .related-products-slider.has-navigation {
    padding-bottom: 64px;
  }
}
.review-card {
  margin-bottom: 32px;
}
.review-card:last-child {
  margin-bottom: 0;
}
.review-card .cards-col {
  width: 100%;
  padding: 0;
  margin: 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 20px;
  background-color: #2b2b28;
}

.review-card-body {
  padding: 24px;
  background-color: #fff;
  border: 1px solid #cacaca;
}

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

.review-card-left {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 470px;
}

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

.review-card-content {
  max-width: 820px;
  margin-left: auto;
}

.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-bottom: 24px;
}

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

.review-card-author-avatar {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 46px;
  height: 46px;
  overflow: hidden;
  margin-right: 16px;
}
.review-card-author-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.review-card-author-name {
  font-family: "Prosto One", sans-serif;
  font-weight: normal;
  font-size: 22px;
  line-height: 130%;
}

.review-card-date {
  color: #80807e;
}

.review-card-comment-text {
  padding: 24px;
  border: 1px solid #cacaca;
  color: #555553;
}

.review-card-answer {
  padding-left: 16px;
  border-left: 4px solid #f89d13;
  margin-top: 24px;
}

.review-card-answer-content {
  padding: 24px;
  border: 1px solid #cacaca;
}

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

.review-card-answer-name {
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  margin-bottom: 4px;
}

.review-card-answer-date {
  color: #80807e;
}

.review-card-answer-text {
  color: #555553;
}

@media (max-width: 1599px) {
  .review-card-left {
    width: 408px;
  }
  .review-card-content {
    max-width: 720px;
  }
}
@media (max-width: 1399px) {
  .review-card-left {
    width: 353px;
  }
  .review-card-content {
    max-width: 660px;
  }
}
@media (max-width: 1199px) {
  .review-card-left {
    width: 448px;
  }
  .review-card-content {
    max-width: 520px;
  }
}
@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-content {
    max-width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .reviews-cards {
    margin: 0 -8px;
  }
  .review-card-header {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 11px 12px;
    margin-bottom: 12px;
  }
  .review-card-body {
    padding: 0;
    border: none;
  }
  .review-card-right {
    padding: 0 8px;
  }
  .review-card-comment-header {
    margin-bottom: 20px;
  }
  .review-card-author {
    width: 100%;
    margin-bottom: 16px;
  }
  .review-card-author-avatar {
    width: 40px;
    height: 40px;
  }
  .review-card-author-name {
    font-size: 18px;
  }
  .review-card-date {
    width: 100%;
  }
  .review-card-comment-text {
    padding: 16px;
  }
  .review-card-answer {
    margin-top: 20px;
  }
  .review-card-answer-content {
    padding: 16px;
  }
}
.map-container {
  height: 800px;
  position: relative;
  overflow: hidden;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.map-marker-1 {
  position: absolute;
  left: 177px;
  top: 426px;
}

.map-marker-2 {
  position: absolute;
  left: 245px;
  top: 426px;
}
.map-marker-2 span {
  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: 100%;
  height: 100%;
  font-weight: 600;
  font-size: 16px;
  color: #2b2b28;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
}

.map-card-wrapper {
  padding: 16px 40px 16px 16px;
  border: 1px solid #cacaca;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 100px;
}
.map-card-wrapper::before {
  content: "";
  display: block;
  width: 54px;
  height: 25px;
  background: url("../img/map-card-decor-arrow-1.svg") no-repeat;
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.map-card-close {
  width: 24px;
  height: 24px;
  background: url("../img/map-card-close-icon.svg") no-repeat center/contain;
  position: absolute;
  right: 12px;
  top: 12px;
  cursor: pointer;
}

.map-card .card-col-left {
  width: 172px;
}
.map-card .card-col-right {
  width: 160px;
}
.map-card .card-image {
  height: 252px;
}
.map-card .card-statuses {
  bottom: 12px;
}
.map-card .card-favorite {
  width: 20px;
  height: 20px;
  right: 12px;
  top: 12px;
}
.map-card .card-right-content {
  padding: 0 0 0 12px;
  border: none;
}
.map-card .card-name {
  font-size: 18px;
}
.map-card .card-location {
  padding-left: 24px;
  font-size: 14px;
  line-height: 16px;
}
.map-card .card-location::before {
  width: 16px;
  height: 16px;
}
.map-card .card-phone {
  font-size: 14px;
}
.map-card .card-phone-text {
  padding: 5px;
}
.map-card .card-phone-number {
  padding: 5px;
}
.map-card .card-parameters li {
  font-size: 12px;
}
.map-card .card-parameters li strong {
  font-size: 13px;
  margin-left: 2px;
}
.map-card .card-price {
  padding: 5px 6px;
}
.map-card .card-price-label {
  font-size: 12px;
  margin-bottom: 4px;
}
.map-card .card-price-value {
  font-size: 12px;
}
.map-card .card-options-row {
  margin: 0 -4px;
}
.map-card .card-options-col {
  padding: 0 4px;
}
.map-card .card-option-icon {
  width: 24px;
  height: 24px;
  margin-right: 6px;
}
.map-card .card-option-icon::before {
  background-size: 14px 14px;
}
.map-card .card-option-label {
  font-size: 13px;
}

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

.map-card-nav {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 164px;
  padding-right: 16px;
}
.map-card-nav li {
  padding: 7px 10px;
  background-color: #fef1dc;
  font-family: "Prosto One", sans-serif;
  font-size: 14px;
  line-height: 130%;
  color: #2b2b28;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 10px;
  cursor: pointer;
}
.map-card-nav li:last-child {
  margin-bottom: 0;
}
.map-card-nav li.active {
  background-color: #f89d13;
}

@media (max-width: 991px) {
  .map-container {
    height: 600px;
  }
}
@media (max-width: 767px) {
  .map-container {
    height: 440px;
  }
  .map-marker-1 {
    left: 113px;
    top: 326px;
  }
  .map-marker-2 {
    left: 132px;
    top: 326px;
  }
  .map-card-wrapper {
    padding: 10px 26px 10px 10px;
  }
  .map-card-wrapper::before {
    width: 38px;
    height: 18px;
    background: url("../img/map-card-decor-arrow-2.svg") no-repeat;
  }
  .map-card-close {
    width: 16px;
    height: 16px;
    right: 8px;
    top: 8px;
  }
  .map-card .card-col-left {
    width: 116px;
  }
  .map-card .card-col-right {
    width: 108px;
  }
  .map-card .card-image {
    height: 156px;
  }
  .map-card .card-statuses {
    bottom: 8px;
  }
  .map-card .card-status {
    padding: 4px 5px;
    font-size: 10px;
    margin-bottom: 4px;
  }
  .map-card .card-status:last-child {
    margin-bottom: 0;
  }
  .map-card .card-favorite {
    width: 14px;
    height: 14px;
    right: 8px;
    top: 8px;
  }
  .map-card .card-right-content {
    padding-left: 8px;
  }
  .map-card .card-name {
    font-size: 12px;
  }
  .map-card .card-location {
    padding-left: 18px;
    font-size: 10px;
    line-height: 12px;
    margin-top: 6px;
  }
  .map-card .card-location::before {
    width: 12px;
    height: 12px;
  }
  .map-card .card-phone {
    font-size: 10px;
    margin-top: 9px;
  }
  .map-card .card-phone-text {
    padding: 3px;
  }
  .map-card .card-phone-number {
    padding: 3px;
  }
  .map-card .card-parameters {
    margin-top: 9px;
  }
  .map-card .card-parameters li {
    font-size: 8px;
    margin-bottom: 5px;
  }
  .map-card .card-parameters li strong {
    font-size: 9px;
    margin-left: 0;
  }
  .map-card .card-parameters li:last-child {
    margin-bottom: 0;
  }
  .map-card .card-prices {
    margin-top: 9px;
  }
  .map-card .card-price {
    padding: 4px;
  }
  .map-card .card-price-label {
    font-size: 8px;
    margin-bottom: 2px;
  }
  .map-card .card-price-value {
    font-size: 9px;
  }
  .map-card .card-options {
    margin-top: 9px;
  }
  .map-card .card-options-row {
    margin: 0 -3px;
  }
  .map-card .card-options-col {
    padding: 0 3px;
  }
  .map-card .card-option-icon {
    width: 16px;
    height: 16px;
    margin-right: 4px;
  }
  .map-card .card-option-icon::before {
    background-size: 9px 9px;
  }
  .map-card .card-option-label {
    font-size: 9px;
  }
  .map-card-nav {
    width: 66px;
    padding-right: 10px;
  }
  .map-card-nav li {
    padding: 4px 5px;
    font-size: 10px;
    margin-bottom: 5px;
  }
}
.locations-list-col-left {
  width: 25%;
}

.locations-list-col-right {
  width: 75%;
}

.locations-sidebar-nav {
  margin-bottom: 64px;
}
.locations-sidebar-nav li {
  margin-bottom: 32px;
}
.locations-sidebar-nav li:last-child {
  margin-bottom: 0;
}
.locations-sidebar-nav 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;
  height: 56px;
  border: 1px solid #2b2b28;
  font-weight: 500;
  text-align: center;
}
.locations-sidebar-nav a:hover {
  background-color: #2b2b28;
  color: #fff;
}
.locations-sidebar-nav .metro-map-link {
  background-color: #f89d13;
  border-color: #f89d13;
}
.locations-sidebar-nav .metro-map-link::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 20px;
  height: 20px;
  background: url("../img/metro-map-link-icon.svg") no-repeat;
  margin-right: 10px;
}
.locations-sidebar-nav .metro-map-link:hover {
  background-color: #fef1dc;
  border-color: #fef1dc;
  color: #2b2b28;
}
.locations-sidebar-nav .current a {
  background-color: #2b2b28;
  color: #fff;
}
.locations-sidebar-nav .current .metro-map-link {
  background-color: #f89d13;
  border-color: #f89d13;
  color: #2b2b28;
}

.locations-sidebar-list li {
  margin-bottom: 24px;
}
.locations-sidebar-list li:last-child {
  margin-bottom: 0;
}
.locations-sidebar-list a {
  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: 56px;
  padding: 0 16px;
  border: 1px solid #cacaca;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
}
.locations-sidebar-list a strong {
  font-weight: 500;
}
.locations-sidebar-list a:hover {
  border-color: #2b2b28;
}

.metro-list {
  -webkit-columns: 4;
     -moz-columns: 4;
          columns: 4;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
}

.metro-list-group {
  margin-bottom: 24px;
}
.metro-list-group li {
  margin-bottom: 8px;
}
.metro-list-group li:last-child {
  margin-bottom: 0;
}

.metro-list-group-inner {
  display: inline-block;
  width: 100%;
}

.metro-list-group-letter {
  font-family: "Prosto One", sans-serif;
  font-weight: normal;
  font-size: 26px;
  line-height: 130%;
  color: #f89d13;
  margin-bottom: 16px;
}

.metro-list-group-title {
  font-family: "Prosto One", sans-serif;
  font-weight: normal;
  font-size: 22px;
  line-height: 130%;
  color: #f89d13;
  margin-bottom: 16px;
}

.metro-list-button {
  display: none;
  width: 100%;
  text-align: center;
  margin-top: 32px;
  position: sticky;
  left: 50%;
  bottom: 16px;
  z-index: 11;
}
.metro-list-button.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.metro-list-button .button {
  width: 100%;
  max-width: 328px;
}

.metro-map-description {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #555553;
  margin-bottom: 32px;
}
.metro-map-description .mobile-only {
  display: none;
}

.metro-map-container {
  height: 868px;
  position: relative;
  overflow: hidden;
}
.metro-map-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.metro-map-panel {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.metro-map-panel-button {
  display: block;
  width: 46px;
  height: 46px;
  background-color: #fef1dc;
  position: relative;
  cursor: pointer;
  margin-bottom: 20px;
}
.metro-map-panel-button:last-child {
  margin-bottom: 0;
}
.metro-map-panel-button::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.metro-map-panel-button.plus::before {
  background: url("../img/metro-map-plus-icon.svg") no-repeat center;
}
.metro-map-panel-button.minus::before {
  background: url("../img/metro-map-minus-icon.svg") no-repeat center;
}
.metro-map-panel-button:hover {
  background-color: #f89d13;
}

.metro-map-button {
  text-align: center;
  margin-top: 32px;
}
.metro-map-button .button {
  width: 100%;
  max-width: 328px;
}

.districts-map-description {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #555553;
  margin-bottom: 32px;
}

.districts-map-container {
  height: 868px;
  position: relative;
  overflow: hidden;
}
.districts-map-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.districts-map-panel {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.districts-map-panel-button {
  display: block;
  width: 46px;
  height: 46px;
  background-color: #fef1dc;
  position: relative;
  cursor: pointer;
  margin-bottom: 20px;
}
.districts-map-panel-button:last-child {
  margin-bottom: 0;
}
.districts-map-panel-button::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.districts-map-panel-button.plus::before {
  background: url("../img/metro-map-plus-icon.svg") no-repeat center;
}
.districts-map-panel-button.minus::before {
  background: url("../img/metro-map-minus-icon.svg") no-repeat center;
}
.districts-map-panel-button:hover {
  background-color: #f89d13;
}

.districts-map-button {
  text-align: center;
  margin-top: 32px;
}
.districts-map-button .button {
  width: 100%;
  max-width: 328px;
}

.locations-catalog-section {
  margin-top: 56px;
}

@media (max-width: 1399px) {
  .metro-list-group-title {
    font-size: 18px;
    line-height: 150%;
  }
}
@media (max-width: 1199px) {
  .locations-list-col-left {
    width: 33.3333333333%;
  }
  .locations-list-col-right {
    width: 66.6666666667%;
  }
  .metro-list {
    -webkit-columns: 3;
       -moz-columns: 3;
            columns: 3;
  }
  .metro-map-description .mobile-only {
    display: block;
  }
}
@media (max-width: 991px) {
  .locations-list-col-left {
    width: 100%;
    margin-bottom: 40px;
  }
  .locations-list-col-right {
    width: 100%;
  }
  .locations-sidebar-nav {
    margin-bottom: 0;
  }
  .locations-sidebar-list {
    display: none;
  }
  .metro-list {
    -webkit-columns: 3;
       -moz-columns: 3;
            columns: 3;
  }
  .metro-map-container {
    height: 545px;
  }
  .districts-map-container {
    height: 545px;
  }
}
@media (max-width: 767px) {
  .locations-sidebar-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: -20px -10px 0;
  }
  .locations-sidebar-nav li {
    width: 50%;
    padding: 0 10px;
    margin-top: 20px;
    margin-bottom: 0;
  }
  .metro-list {
    -webkit-columns: 2;
       -moz-columns: 2;
            columns: 2;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
  .metro-list-group .checkbox .checkbox-checkmark {
    margin-top: 0;
  }
  .metro-list-group .checkbox .checkbox-text {
    font-weight: 500;
    font-size: 14px;
  }
  .metro-list-group-letter {
    font-size: 22px;
  }
  .metro-list-group-title {
    word-break: break-all;
  }
  .metro-map-description {
    font-weight: normal;
    font-size: 16px;
    margin-bottom: 24px;
  }
  .metro-map-container {
    height: 400px;
  }
  .metro-map-panel {
    right: 0;
  }
  .districts-map-description {
    font-weight: normal;
    font-size: 16px;
    margin-bottom: 24px;
  }
  .districts-map-container {
    height: 400px;
  }
  .districts-map-panel {
    right: 0;
  }
  .locations-catalog-section {
    margin-top: 46px;
  }
}
.account-nav {
  margin-bottom: 72px;
}
.account-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -15px;
}
.account-nav li {
  width: 20%;
  padding: 0 15px;
}
.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: 100px;
  padding: 0 8px;
  background-color: #eee;
}
.account-nav a:hover {
  background-color: #2b2b28;
}
.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 a:hover .account-nav-text span {
  color: inherit;
}
.account-nav .current a {
  background-color: #2b2b28;
}
.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 .current .account-nav-text span {
  color: inherit;
}

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

.account-nav-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  margin-top: 12px;
}
.account-nav-text span {
  color: #3431dc;
}

.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 .section-title {
  margin-bottom: 0;
}

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

.account-buttons-col {
  padding: 0 10px;
}
.account-buttons-col .button {
  min-width: 216px;
}

.account-statistics {
  margin-bottom: 60px;
}

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

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

.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: 13px 20px;
  background-color: #2b2b28;
  font-family: "Prosto One", sans-serif;
  font-size: 22px;
  line-height: 100%;
  color: #fff;
}

.account-statistics-card-list {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 24px 20px;
  background-color: #fff;
  border: 1px solid #cacaca;
  border-top: none;
}
.account-statistics-card-list li {
  color: #5d5d5d;
  margin-bottom: 8px;
}
.account-statistics-card-list li:last-child {
  margin-bottom: 0;
}
.account-statistics-card-list li strong {
  font-weight: inherit;
  color: #2b2b28;
}

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

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

.account-cards-control-1 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

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

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

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

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

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

.account-card-header {
  padding: 22px 20px;
  background-color: #fef1dc;
}

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

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

.account-card-status-label {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #5d5d5d;
  margin-right: 6px;
}

.account-card-status-value {
  font-weight: bold;
}
.account-card-status-value.status-moderation {
  color: #c0651b;
}
.account-card-status-value.status-active {
  color: #2b823d;
}
.account-card-status-value.status-inactive {
  color: #dd1e1e;
}

.account-card-edit {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 6px 12px;
  background-color: #fff;
  font-size: 16px;
  line-height: 150%;
  margin-left: auto;
}

.account-card-edit-photos {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 36px;
  height: 36px;
  background-color: #fff;
  position: relative;
  margin-left: 12px;
}
.account-card-edit-photos::before {
  content: "";
  background: url("../img/account-card-edit-photos-icon.svg") no-repeat center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.account-card-checkbox {
  margin-left: 28px;
}
.account-card-checkbox .checkbox input:checked + .checkbox-checkmark {
  background-color: #2b2b28;
  border-color: #2b2b28;
}
.account-card-checkbox .checkbox .checkbox-checkmark {
  background-color: transparent;
  border-color: #2b2b28;
  margin: 0;
}
.account-card-checkbox .checkbox .checkbox-checkmark::after {
  background: url("../img/checkbox-white-icon.svg") no-repeat center;
}

.account-card-body .card-right-content {
  border-top: none;
}

.account-card-message {
  padding: 20px;
  background-color: #f8e5ac;
  margin-top: 16px;
}

.account-card-message-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 12px;
}

.account-card-message-text {
  color: #41413e;
}

.account-card-info {
  padding: 20px;
  background-color: #eee;
  margin-top: 16px;
}

.account-card-views-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 12px;
}

.account-card-views-row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 350px;
  margin-top: -8px;
}

.account-card-views-col {
  margin-top: 8px;
}

.account-card-views-list li {
  color: #5d5d5d;
  margin-bottom: 8px;
}
.account-card-views-list li:last-child {
  margin-bottom: 0;
}
.account-card-views-list li strong {
  font-weight: inherit;
  color: #2b2b28;
}
.account-card-views-list li a {
  color: #3431dc;
  text-decoration: underline;
}

.account-card-totop {
  max-width: 226px;
  margin-top: 20px;
}

.account-card-totop-button .button {
  width: 100%;
}
.account-card-totop-button .button.disabled {
  background-color: #fec268;
  color: #555553;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.account-card-totop-text {
  color: #41413e;
  text-align: center;
  margin-top: 4px;
}

.account-card-buttons {
  margin-top: 16px;
}

.account-card-buttons-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -16px -8px 0;
}

.account-card-buttons-col {
  padding: 0 8px;
  width: 50%;
  margin-top: 16px;
}
.account-card-buttons-col .button {
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
}

.account-info {
  padding: 20px 24px;
  background-color: #fef1dc;
}
.account-info p {
  margin-bottom: 1em;
}
.account-info p:last-child {
  margin-bottom: 0;
}
.account-info strong {
  font-weight: bold;
}
.account-info a {
  text-decoration: underline;
}

.account-client-panel {
  padding: 32px;
  background-color: #eee;
  margin-bottom: 80px;
}

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

.account-client-col {
  padding: 0 10px;
}
.account-client-col:nth-child(1) {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.account-client-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
}
.account-client-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.account-client-name {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 4px;
}

.account-client-link {
  color: #3431dc;
  text-decoration: underline;
}

.account-client-statistics {
  margin-top: 20px;
}
.account-client-statistics li {
  color: #555553;
  margin-bottom: 10px;
}
.account-client-statistics li:last-child {
  margin-bottom: 0;
}
.account-client-statistics li strong {
  font-weight: inherit;
  color: #2b2b28;
  margin-left: 6px;
}

@media (max-width: 1399px) {
  .account-nav ul {
    margin: 0 -8px;
  }
  .account-nav li {
    padding: 0 8px;
  }
  .account-cards-col {
    width: 50%;
  }
}
@media (max-width: 1199px) {
  .account-nav-text {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .account-nav-text {
    display: none;
  }
  .account-section-header {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .account-section-header .section-title {
    width: 100%;
  }
  .account-buttons {
    width: 100%;
    margin-top: 24px;
  }
  .account-statistics-col {
    width: 100%;
  }
  .account-cards-controls {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 32px;
  }
  .account-cards-control {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .account-cards-control:last-child {
    margin-bottom: 0;
  }
  .account-cards-control-3 {
    margin-left: 0;
  }
  .account-cards-control-actions {
    width: 100%;
  }
  .account-cards-control-sort {
    width: 100%;
  }
  .account-cards-col {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .account-nav {
    margin-bottom: 40px;
  }
  .account-nav ul {
    margin: 0 -4px;
  }
  .account-nav li {
    padding: 0 4px;
  }
  .account-nav a {
    height: 72px;
  }
  .account-nav-icon {
    max-width: 20px;
  }
  .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: 20px;
  }
  .account-buttons-col:last-child {
    margin-bottom: 0;
  }
  .account-buttons-col .button {
    width: 100%;
  }
  .account-cards-row {
    padding: 0 8px;
  }
  .account-cards-col {
    padding: 0;
  }
  .account-card-header {
    padding: 15px 16px;
    margin-bottom: 10px;
  }
  .account-card-controls {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
  }
  .account-card-status {
    width: 100%;
    margin-right: 24px;
    margin-bottom: 10px;
  }
  .account-card-edit {
    margin-left: 0;
  }
  .account-card-checkbox {
    margin: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
  .account-card-buttons-col {
    width: 100%;
  }
  .account-info {
    padding: 20px;
  }
  .account-client-panel {
    padding: 24px;
    margin-bottom: 60px;
  }
}
.adding-content-nav {
  margin-bottom: 32px;
}
.adding-content-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -16px -16px 0;
}
.adding-content-nav li {
  width: 16.6666666667%;
  padding: 0 16px;
  margin-top: 16px;
}
.adding-content-nav li .button {
  width: 100%;
  padding: 11px;
}

.adding-block {
  margin-top: 80px;
}
.adding-block.adding-block-1 {
  margin-top: 0;
}

.adding-block-title {
  font-family: "Prosto One", sans-serif;
  font-weight: normal;
  font-size: 26px;
  line-height: 130%;
  margin-bottom: 24px;
}
.adding-block-title .required {
  color: #f89d13;
}

.adding-indi-block {
  padding: 20px 24px;
  background-color: #fef1dc;
  margin-bottom: 24px;
}

.adding-indi-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: -16px -23px 0;
}

.adding-indi-col {
  padding: 0 23px;
  margin-top: 16px;
}

.adding-indi-checkbox .checkbox .checkbox-checkmark {
  margin-right: 20px;
}
.adding-indi-checkbox .checkbox .checkbox-text {
  font-weight: 600;
}

.adding-indi-text {
  max-width: 1148px;
  color: #555553;
}

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

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

.adding-social-block {
  margin-top: 40px;
}

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

.adding-social-col {
  margin-top: 20px;
}

.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 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;
  margin-right: 8px;
}

.adding-social-item-label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 20px;
}

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

.adding-schedule-block {
  padding: 40px;
  border: 1px solid #cacaca;
  margin-top: 60px;
}

.adding-schedule-block-title {
  font-family: "Prosto One", sans-serif;
  font-weight: normal;
  font-size: 26px;
  line-height: 130%;
  margin-bottom: 24px;
}

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

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

.adding-schedule-always-row {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.adding-schedule-item-header {
  padding-right: 28px;
}

.adding-schedule-item-title {
  font-weight: 600;
  font-size: 22px;
  line-height: 130%;
  margin-bottom: 4px;
}

.adding-schedule-item-description {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #555553;
}

.adding-schedule-quicktime {
  max-width: 1218px;
  margin-top: 20px;
}

.adding-schedule-quicktime-row {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-top: -16px;
}

.adding-schedule-quicktime-col {
  width: 100%;
  margin-top: 16px;
}
.adding-schedule-quicktime-col:last-child {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 248px;
}
.adding-schedule-quicktime-col .form-item {
  margin-bottom: 0;
}
.adding-schedule-quicktime-col .form-item-label {
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
}

.adding-schedule-quicktime-button {
  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%;
}
.adding-schedule-quicktime-button .button {
  width: 100%;
  padding: 11px;
  margin-top: auto;
}

.adding-schedule-bydays {
  max-width: 1095px;
  margin-top: 20px;
}

.adding-schedule-bydays-row {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.adding-schedule-bydays-row:last-child {
  margin-bottom: 0;
}

.adding-schedule-bydays-col {
  width: 100%;
}
.adding-schedule-bydays-col:first-child {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 132px;
}
.adding-schedule-bydays-col .form-item {
  margin-bottom: 0;
}

.adding-schedule-bydays-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
}

.adding-schedule-bydays-button {
  margin-top: 32px;
}
.adding-schedule-bydays-button .button {
  width: 216px;
}

.adding-places-row {
  margin-bottom: 32px;
}

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

.adding-prices-block {
  margin-top: 32px;
}

.adding-prices-block-col.col-left {
  width: 58.3333333333%;
}
.adding-prices-block-col.col-right {
  width: 41.6666666667%;
}

.adding-prices-row {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.adding-prices-row:last-child {
  margin-bottom: 0;
}

.adding-prices-col {
  width: 100%;
}
.adding-prices-col:first-child {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 125px;
}
.adding-prices-col .form-item {
  margin-bottom: 0;
}

.adding-prices-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 13px 24px;
  background-color: #2b2b28;
  font-family: "Prosto One", sans-serif;
  font-size: 20px;
  line-height: 130%;
  color: #fff;
}
.adding-prices-title::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 26px;
  height: 26px;
  margin-right: 16px;
}
.adding-prices-title.icon-apartments::before {
  background: url("../img/prices-apartments-icon.svg") no-repeat;
}
.adding-prices-title.icon-departure::before {
  background: url("../img/prices-departure-icon.svg") no-repeat;
}

.adding-prices-comment {
  padding-top: 13px;
}

.adding-prices-comment-title {
  font-weight: 600;
  font-size: 22px;
  line-height: 130%;
  margin-bottom: 12px;
}

.adding-prices-comment-description {
  color: #80807e;
  margin-bottom: 20px;
}

.adding-prices-comment-field .form-item {
  margin-bottom: 0;
}
.adding-prices-comment-field textarea {
  height: 187px;
}

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

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

.adding-services-block-col {
  width: 50%;
  margin-top: 40px;
}

.adding-services-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -8px 16px;
}
.adding-services-row:last-child {
  margin-bottom: 0;
}

.adding-services-col {
  padding: 0 8px;
}
.adding-services-col:nth-child(1) {
  width: 35%;
}
.adding-services-col:nth-child(2) {
  width: 22%;
}
.adding-services-col:nth-child(2) .adding-services-title {
  padding-left: 18px;
}
.adding-services-col:nth-child(2) .form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.adding-services-col:nth-child(2) .form-item::before {
  content: "+";
  margin-right: 8px;
}
.adding-services-col:nth-child(3) {
  width: 43%;
}
.adding-services-col .form-item {
  margin-bottom: 0;
}

.adding-services-title {
  font-weight: bold;
  font-size: 16px;
  line-height: 100%;
  color: #f89d13;
  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;
}
.adding-photos-col:nth-child(2) {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.adding-photos-upload {
  width: 344px;
}

.adding-photos-instructions {
  max-width: 970px;
}
.adding-photos-instructions ul {
  padding-left: 24px;
  list-style-type: disc;
  margin-bottom: 20px;
}
.adding-photos-instructions ul:last-child {
  margin-bottom: 0;
}
.adding-photos-instructions p {
  margin-bottom: 1em;
}
.adding-photos-instructions p:last-child {
  margin-bottom: 0;
}

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

.uploaded-photos-title {
  font-weight: 600;
  font-size: 22px;
  line-height: 130%;
  margin-bottom: 24px;
}

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

.uploaded-cards-col {
  width: 267px;
  margin-top: 32px;
}

.uploaded-card {
  background-color: #fff;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

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

.uploaded-card-buttons {
  padding: 20px 16px;
  border: 1px solid #cacaca;
  border-top: none;
}

.uploaded-card-button {
  width: 100%;
}
.uploaded-card-button.button.button-small {
  padding: 7px 6px;
}
.uploaded-card-button.active {
  background-color: #2b2b28;
  color: #fff;
}

.uploaded-card-actions {
  position: absolute;
  right: 16px;
  top: 16px;
}

.uploaded-card-action {
  display: block;
  width: 36px;
  height: 36px;
  background-color: #fff;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  margin-bottom: 16px;
}
.uploaded-card-action:last-child {
  margin-bottom: 0;
}
.uploaded-card-action::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.uploaded-card-action-remove {
  cursor: pointer;
}
.uploaded-card-action-remove::before {
  background: url("../img/uploaded-card-remove-icon.svg") no-repeat center;
}

.uploaded-card-action-grab {
  cursor: -webkit-grab;
  cursor: grab;
}
.uploaded-card-action-grab::before {
  background: url("../img/uploaded-card-grab-icon.svg") no-repeat center;
}

.adding-verification {
  margin-top: 24px;
  margin-bottom: 32px;
}

.adding-verification-content h3 {
  font-weight: 600;
  font-size: 22px;
  line-height: 130%;
  margin-bottom: 16px;
}
.adding-verification-content ul {
  margin-bottom: 20px;
}
.adding-verification-content ul:last-child {
  margin-bottom: 0;
}
.adding-verification-content li {
  padding-left: 36px;
  position: relative;
  margin-bottom: 30px;
}
.adding-verification-content li:last-child {
  margin-bottom: 0;
}
.adding-verification-content .li-number {
  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: 24px;
  height: 24px;
  background-color: #f89d13;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}
.adding-verification-content p {
  margin-bottom: 12px;
}
.adding-verification-content p:last-child {
  margin-bottom: 0;
}
.adding-verification-content strong {
  font-weight: bold;
}
.adding-verification-content .example-text {
  margin: 10px 0;
}
.adding-verification-content .example-images {
  margin-top: 20px;
}
.adding-verification-content .example-images-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -12px -6px 0;
}
.adding-verification-content .example-images-col {
  padding: 0 6px;
  margin-top: 12px;
}
.adding-verification-content .example-image {
  height: 184px;
}
.adding-verification-content .example-image img {
  width: auto;
  height: 100%;
  border: 1px solid #cacaca;
  border-radius: 4px;
}

.adding-videos {
  margin-top: 32px;
}

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

.uploaded-videos-title {
  font-weight: 600;
  font-size: 22px;
  line-height: 130%;
  margin-bottom: 24px;
}

.uploaded-videos-row {
  margin-top: -32px;
}

.uploaded-videos-col {
  width: 33.3333333333%;
  margin-top: 32px;
}

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

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

.adding-map-header {
  margin-bottom: 16px;
}

.adding-map-search {
  margin-bottom: 24px;
}

.adding-map-search-row {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.adding-map-search-col:nth-child(1) {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.adding-map-search-col:nth-child(2) {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.adding-map-search-col:nth-child(3) {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.adding-map-search-button .button {
  width: 342px;
}

.adding-map-container {
  height: 800px;
  position: relative;
  overflow: hidden;
}

.adding-map-placeholder {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.adding-map-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.adding-submit-block {
  margin-top: 60px;
}

.adding-submit-button {
  text-align: center;
}
.adding-submit-button .button {
  width: 328px;
}

@media (max-width: 1599px) {
  .adding-social-item-field {
    width: 285px;
  }
}
@media (max-width: 1399px) {
  .adding-content-nav ul {
    margin: -16px -8px 0;
  }
  .adding-content-nav li {
    padding: 0 8px;
  }
  .adding-social-item-field {
    width: 225px;
  }
  .adding-prices-comment-field textarea {
    height: 163px;
  }
}
@media (max-width: 1199px) {
  .adding-content-nav li {
    width: 33.3333333333%;
  }
  .adding-prices-block-col.col-left {
    width: 100%;
    margin-bottom: 32px;
  }
  .adding-prices-block-col.col-right {
    width: 100%;
  }
  .adding-prices-comment {
    padding-top: 0;
  }
  .adding-prices-comment-field textarea {
    height: 186px;
  }
  .adding-services-block-col {
    width: 100%;
  }
  .uploaded-videos-col {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .adding-col {
    width: 100%;
  }
  .adding-social-col {
    width: 100%;
  }
  .adding-social-item-label {
    width: 76px;
    margin-right: 10px;
  }
  .adding-social-item-field {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .adding-photos-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .adding-photos-col:nth-child(1) {
    width: 100%;
    margin-bottom: 20px;
  }
  .adding-photos-col:nth-child(2) {
    width: 100%;
  }
  .uploaded-cards-col {
    width: 50%;
  }
  .adding-map-search {
    margin-bottom: 32px;
  }
  .adding-map-search-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .adding-map-search-col {
    width: 100%;
  }
  .adding-map-search-col:nth-child(1) {
    margin-bottom: 8px;
  }
  .adding-map-search-col:nth-child(2) {
    margin-bottom: 20px;
  }
  .adding-map-search-button .button {
    width: 100%;
  }
  .adding-map-container {
    height: 460px;
  }
}
@media (max-width: 767px) {
  .adding-content-nav {
    margin-bottom: 60px;
  }
  .adding-content-nav li {
    width: 100%;
  }
  .adding-block {
    margin-top: 60px;
  }
  .adding-indi-block {
    padding: 20px;
  }
  .adding-indi-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;
  }
  .adding-schedule-block {
    padding: 24px 20px;
  }
  .adding-schedule-block-title {
    font-size: 22px;
  }
  .adding-schedule-item {
    margin-bottom: 24px;
  }
  .adding-schedule-always-row {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 0 -8px;
  }
  .adding-schedule-always-col {
    padding: 0 8px;
  }
  .adding-schedule-item-header {
    padding-right: 0;
  }
  .adding-schedule-item-title {
    font-size: 20px;
  }
  .adding-schedule-quicktime {
    margin-top: 24px;
  }
  .adding-schedule-quicktime-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .adding-schedule-quicktime-col:last-child {
    width: 100%;
    margin-top: 24px;
  }
  .adding-schedule-bydays-row {
    margin: 0 -4px 20px;
  }
  .adding-schedule-bydays-col {
    padding: 0 4px;
  }
  .adding-schedule-bydays-col:first-child {
    width: 108px;
  }
  .adding-schedule-bydays-col .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 8px;
    padding-right: 28px;
  }
  .adding-schedule-bydays-col .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 8px;
  }
  .adding-schedule-bydays-button {
    margin-top: 24px;
  }
  .adding-schedule-bydays-button .button {
    width: 100%;
  }
  .adding-places-row {
    margin-bottom: 24px;
  }
  .adding-prices-row {
    margin: 0 -5px 20px;
  }
  .adding-prices-col {
    padding: 0 5px;
  }
  .adding-prices-col:first-child {
    width: 90px;
  }
  .adding-prices-title::before {
    margin: 0 auto;
  }
  .adding-prices-title span {
    display: none;
  }
  .adding-services-row {
    margin: 0 -4px 16px;
  }
  .adding-services-row:nth-child(1) .adding-services-col:nth-child(3) {
    display: none;
  }
  .adding-services-col {
    padding: 0 4px;
  }
  .adding-services-col:nth-child(1) {
    width: calc(100% - 118px);
  }
  .adding-services-col:nth-child(2) {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 118px;
  }
  .adding-services-col:nth-child(3) {
    width: 100%;
    margin-top: 8px;
  }
  .adding-photos-upload {
    width: 100%;
  }
  .uploaded-photos {
    margin-top: 32px;
  }
  .uploaded-photos-title {
    font-size: 20px;
  }
  .uploaded-cards-row {
    margin: -20px -4px 0;
  }
  .uploaded-cards-col {
    padding: 0 4px;
    margin-top: 20px;
  }
  .uploaded-card-actions {
    right: 10px;
    top: 10px;
  }
  .uploaded-card-action {
    width: 26px;
    height: 26px;
    margin-bottom: 10px;
  }
  .uploaded-card-action::before {
    background-size: 16px 16px;
  }
  .uploaded-card-buttons {
    padding: 14px 9px;
  }
  .uploaded-videos-title {
    font-size: 20px;
  }
  .uploaded-videos-row {
    margin-top: -24px;
  }
  .uploaded-videos-col {
    margin-top: 24px;
  }
  .uploaded-video-card-button .button {
    width: 100%;
  }
  .adding-submit-button .button {
    width: 100%;
  }
}
.tariffs-row {
  margin-top: -60px;
}

.tariffs-col {
  width: 50%;
  margin-top: 60px;
}

.tariffs-card-header {
  padding: 12px 20px;
  background-color: #fef1dc;
}

.tariffs-card-title {
  font-family: "Prosto One", sans-serif;
  font-weight: normal;
  font-size: 22px;
  line-height: 130%;
}

.tariffs-card-body {
  padding: 20px 20px 0;
}

.tariffs-card-content {
  color: #555553;
}
.tariffs-card-content p {
  margin-bottom: 12px;
}
.tariffs-card-content p:last-child {
  margin-bottom: 0;
}
.tariffs-card-content p strong {
  font-weight: bold;
  color: #2b2b28;
}
.tariffs-card-content > ul {
  padding-left: 24px;
  list-style-type: disc;
}
.tariffs-card-content > ul li {
  margin-bottom: 8px;
}
.tariffs-card-content > ul li:last-child {
  margin-bottom: 0;
}

.tariffs-card-prices {
  margin-bottom: 20px;
}
.tariffs-card-prices:last-child {
  margin-bottom: 0;
}
.tariffs-card-prices li {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #2b2b28;
  margin-bottom: 10px;
}
.tariffs-card-prices li:last-child {
  margin-bottom: 0;
}
.tariffs-card-prices li strong {
  font-weight: inherit;
  color: #3431dc;
  margin-left: 8px;
}

@media (max-width: 991px) {
  .tariffs-col {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .tariffs-row {
    margin-top: -32px;
  }
  .tariffs-col {
    margin-top: 32px;
  }
  .tariffs-card-header {
    padding: 12px 16px;
  }
  .tariffs-card-body {
    padding: 20px 16px 0;
  }
}
.balance-option {
  margin-top: 60px;
}
.balance-option .account-info {
  margin-top: 24px;
  margin-bottom: 24px;
}
.balance-option .account-info:first-child {
  margin-bottom: 0;
}
.balance-option .account-info:last-child {
  margin-bottom: 0;
}

.balance-option-title {
  font-family: "Prosto One", sans-serif;
  font-weight: normal;
  font-size: 26px;
  line-height: 130%;
  margin-bottom: 24px;
}

.balance-option-content {
  color: #555553;
}
.balance-option-content p {
  margin-bottom: 8px;
}
.balance-option-content p:last-child {
  margin-bottom: 0;
}
.balance-option-content strong {
  font-weight: bold;
}

.balance-option-button {
  margin-top: 32px;
}
.balance-option-button .button {
  width: 100%;
  max-width: 218px;
}

.balance-option-form {
  margin-top: 24px;
}

.balance-option-form-row {
  margin-top: -20px;
}

.balance-option-form-col {
  margin-top: 20px;
}
.balance-option-form-col .form-item {
  margin-bottom: 0;
}
.balance-option-form-col:nth-child(1) {
  width: 500px;
}
.balance-option-form-col:nth-child(2) .form-item {
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
}
.balance-option-form-col:nth-child(2) .button {
  width: 218px;
}

@media (max-width: 991px) {
  .balance-option-form-col:nth-child(1) {
    width: 470px;
  }
}
@media (max-width: 767px) {
  .balance-option-form-col {
    width: 100%;
  }
  .balance-option-form-col:nth-child(1) {
    width: 100%;
  }
  .balance-option-form-col:nth-child(2) {
    width: 100%;
  }
  .balance-option-form-col:nth-child(2) .button {
    width: 100%;
  }
}
.finance-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  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;
  padding: 2px;
  background-color: #eee;
}
.finance-nav li {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
}
.finance-nav a {
  display: block;
  width: 235px;
  padding: 12px;
  text-align: center;
}
.finance-nav .current a {
  background-color: #f89d13;
}

.finance-container {
  max-width: 970px;
  margin: 0 auto;
}

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

.finance-controls-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: -20px -10px 0;
}

.finance-controls-col {
  width: 238px;
  padding: 0 10px;
  margin-top: 20px;
}
.finance-controls-col:nth-child(1) {
  width: 114px;
}
.finance-controls-col .form-item {
  margin-bottom: 0;
}
.finance-controls-col .form-item-label {
  margin-bottom: 0;
}
.finance-controls-col .button {
  width: 100%;
}

.finance-table .custom-table table th {
  width: 50%;
}

@media (max-width: 767px) {
  .finance-nav ul {
    width: 100%;
  }
  .finance-nav li {
    width: 50%;
  }
  .finance-nav a {
    width: 100%;
  }
  .finance-controls-col {
    width: 100%;
  }
}
.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: #eee;
}
.messages-nav li {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
}
.messages-nav a {
  display: block;
  width: 235px;
  padding: 12px;
  text-align: center;
}
.messages-nav .current a {
  background-color: #f89d13;
}

.messages-container {
  max-width: 970px;
  margin: 0 auto;
}

.messages-table .custom-table table th:nth-child(1) {
  width: 376px;
}
.messages-table .custom-table table th:nth-child(2) {
  width: 314px;
}
.messages-table .custom-table table th:nth-child(3) {
  width: 182px;
}
.messages-table .custom-table table th:nth-child(4) {
  width: 98px;
}

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

.message-header {
  padding: 10px 32px;
  background-color: #f4f4f4;
  margin-bottom: 20px;
}

.message-header-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.message-header-info-author {
  font-weight: 600;
  margin-right: 32px;
}

.message-header-info-date {
  color: #555553;
}

.message-header-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.message-header-control {
  font-weight: 600;
  text-decoration: underline;
  margin-right: 32px;
}
.message-header-control:last-child {
  margin-right: 0;
}

.message-body {
  padding: 32px;
  background-color: #f4f4f4;
}

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

.message-text a {
  color: #3431dc;
}

.create-message {
  margin-top: 32px;
}

.create-message-row {
  margin-top: -20px;
}

.create-message-col {
  width: 50%;
  margin-top: 20px;
}
.create-message-col.create-message-col-wide {
  width: 100%;
}
.create-message-col .form-item {
  margin-bottom: 0;
}
.create-message-col .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-col .upload-file-text {
  text-align: left;
  margin-right: 20px;
  margin-top: 0;
}
.create-message-col .upload-file-button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 240px;
  margin: 0;
}
.create-message-col .form-submit-item {
  width: 218px;
  margin-top: 26px;
}

@media (max-width: 767px) {
  .messages-nav ul {
    width: 100%;
  }
  .messages-nav li {
    width: 50%;
  }
  .messages-nav a {
    width: 100%;
  }
  .messages-table .custom-table {
    overflow-y: auto;
  }
  .messages-table .custom-table table {
    width: 735px;
  }
  .messages-table .custom-table table th:nth-child(1) {
    width: 290px;
  }
  .messages-table .custom-table table th:nth-child(2) {
    width: 171px;
  }
  .messages-table .custom-table table th:nth-child(3) {
    width: 204px;
  }
  .messages-table .custom-table table th:nth-child(4) {
    width: 70px;
  }
  .message-header {
    padding: 16px 20px;
  }
  .message-header-col {
    width: 100%;
    margin-bottom: 10px;
  }
  .message-header-col:last-child {
    margin-bottom: 0;
  }
  .message-header-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .message-header-info-author {
    margin-right: 0;
    margin-bottom: 4px;
  }
  .message-body {
    padding: 20px;
  }
  .create-message-col {
    width: 100%;
  }
  .create-message-col .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;
  }
  .create-message-col .upload-file-text {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .create-message-col .form-submit-item {
    width: 100%;
  }
}
.blacklist-search-panel {
  max-width: 1192px;
  margin-bottom: 40px;
}

.blacklist-search-panel-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -10px;
}

.blacklist-search-panel-col {
  padding: 0 10px;
}
.blacklist-search-panel-col:nth-child(1) {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.blacklist-search-panel-col:nth-child(2) {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.blacklist-search-panel-col:nth-child(3) {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 300px;
}
.blacklist-search-panel-col:nth-child(4) {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 300px;
}

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

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

.blacklist-result-count {
  color: #80807e;
  margin-bottom: 20px;
}
.blacklist-result-count strong {
  font-weight: 600;
  color: #2b2b28;
}

.blacklist-table .custom-table table th:nth-child(1) {
  width: 220px;
}
.blacklist-table .custom-table table th:nth-child(2) {
  width: 376px;
}
.blacklist-table .custom-table table th:nth-child(3) {
  width: 876px;
}
.blacklist-table .custom-table table td {
  vertical-align: top;
}

.blacklist-comment-header {
  margin-bottom: 10px;
}

.blacklist-comment-author {
  font-weight: 600;
}

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

.blacklist-comment-text {
  color: #555553;
}

.blacklist-comment-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.blacklist-comment-footer a {
  text-decoration: underline;
  margin-right: 16px;
}

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

.comment-gallery-thumbs-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -12px -6px 0;
}

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

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

.comment-card {
  padding: 32px;
  background-color: #f4f4f4;
  margin-bottom: 24px;
}
.comment-card:last-child {
  margin-bottom: 0;
}

.comment-card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
}

.comment-card-author {
  font-weight: 600;
  margin-right: 24px;
}

.comment-card-date {
  color: #80807e;
}

.comment-card-body {
  margin-bottom: 16px;
}

.comment-card-text {
  color: #555553;
}

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

.comment-card-count {
  margin-right: 46px;
}

.comment-answer-link {
  text-decoration: underline;
  cursor: pointer;
}

.comment-answer-form {
  display: none;
  margin-top: 24px;
}
.comment-answer-form .form-submit-item {
  max-width: 218px;
  margin-top: 16px;
}

.comment-answers {
  padding-left: 16px;
  border-left: 4px solid #f89d13;
}

.comment-answer {
  padding: 32px;
  border: 1px solid #cacaca;
  margin-bottom: 24px;
}
.comment-answer:last-child {
  margin-bottom: 0;
}

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

.comment-answer-reply {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 6px;
}

.comment-answer-reply-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 25px;
  background: url("../img/comment-reply-icon.svg") no-repeat;
  margin: 0 16px;
}

.comment-answer-date {
  color: #80807e;
}

.comment-answer-body {
  margin-bottom: 16px;
}

.comment-answer-text {
  color: #555553;
}

@media (max-width: 1199px) {
  .blacklist-search-panel-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .blacklist-search-panel-col:nth-child(4) {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .blacklist-search-panel-col {
    width: 100%;
    margin-bottom: 20px;
  }
  .blacklist-search-panel-col:nth-child(1) {
    margin-bottom: 12px;
  }
  .blacklist-search-panel-col:nth-child(2) {
    width: 100%;
  }
  .blacklist-search-panel-col:nth-child(3) {
    width: 100%;
  }
  .blacklist-search-panel-col:nth-child(4) {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }
  .blacklist-table .custom-table table {
    display: block;
  }
  .blacklist-table .custom-table table thead {
    display: none;
  }
  .blacklist-table .custom-table table tbody {
    display: block;
  }
  .blacklist-table .custom-table table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    overflow: hidden;
    margin-bottom: 24px;
  }
  .blacklist-table .custom-table table td {
    display: block;
    height: auto;
  }
  .blacklist-table .custom-table table td::before {
    content: attr(data-title);
    display: block;
    padding-left: 22px;
    padding-right: 20px;
    padding-top: 16px;
    padding-bottom: 16px;
    background-color: #2b2b28;
    border-bottom: 2px solid #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #fff;
    text-transform: uppercase;
    margin-left: -22px;
    margin-right: -20px;
    margin-top: -16px;
    margin-bottom: 18px;
  }
  .blacklist-table .custom-table table td:nth-child(1) {
    width: 50%;
  }
  .blacklist-table .custom-table table td:nth-child(2) {
    width: 50%;
  }
  .blacklist-table .custom-table table td:nth-child(3)::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .blacklist-table .custom-table table td {
    padding: 16px;
  }
  .blacklist-table .custom-table table td::before {
    padding-left: 14px;
    padding-right: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
    margin-left: -14px;
    margin-right: -12px;
    margin-top: -12px;
    margin-bottom: 14px;
  }
  .blacklist-table .custom-table table td:nth-child(1) {
    width: 44%;
    padding: 12px;
  }
  .blacklist-table .custom-table table td:nth-child(2) {
    width: 56%;
    padding: 12px;
  }
  .blacklist-table .custom-table table td:nth-child(3)::before {
    display: none;
  }
  .comment-card {
    padding: 20px;
  }
  .comment-card .comment-gallery-thumbs-row {
    margin: 10px -5px 0;
  }
  .comment-card .comment-gallery-thumbs-col {
    padding: 0 5px;
    margin-top: 10px;
  }
  .comment-answer {
    padding: 20px;
  }
}
.settings-block {
  margin-top: 80px;
}
.settings-block.settings-block-1 {
  margin-top: 40px;
}

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

.settings-col {
  width: 33.3333333333%;
  margin-top: 60px;
}
.settings-col .form-item:last-child {
  margin-bottom: 0;
}

.settings-title {
  font-family: "Prosto One", sans-serif;
  font-weight: normal;
  font-size: 26px;
  line-height: 130%;
  margin-bottom: 24px;
}

.settings-photo-upload .upload-file {
  padding: 55px 24px;
}

.settings-delete-avatar {
  text-align: center;
}

.settings-submit-button {
  text-align: center;
  margin-top: 60px;
}
.settings-submit-button .button {
  width: 328px;
}

.settings-telegram-block {
  max-width: 595px;
  margin-top: 32px;
}

.settings-telegram-notifications-title {
  font-weight: bold;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.settings-telegram-notifications-row {
  margin-top: -20px;
}

.settings-telegram-notifications-col {
  margin-top: 20px;
}
.settings-telegram-notifications-col:nth-child(1) {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.settings-telegram-notifications-col:nth-child(2) {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 250px;
}
.settings-telegram-notifications-col:nth-child(2) .button {
  width: 100%;
}
.settings-telegram-notifications-col .form-item {
  margin-bottom: 0;
}

.settings-telegram-bot {
  padding: 24px;
  background-color: #eee;
  margin-top: 32px;
}

.settings-telegram-bot-row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -20px;
}

.settings-telegram-bot-col {
  margin-top: 20px;
}
.settings-telegram-bot-col:nth-child(1) {
  width: 352px;
}

.settings-telegram-bot-title {
  font-weight: bold;
  font-size: 16px;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.settings-telegram-bot-text {
  color: #555553;
}

.settings-telegram-bot-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.settings-telegram-bot-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin-right: 20px;
}

.settings-telegram-bot-label {
  font-weight: 500;
  font-size: 22px;
  line-height: 150%;
}

.settings-notifications {
  margin-top: 60px;
}

.settings-notifications-row {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 24px;
}
.settings-notifications-row:first-child {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 32px;
}
.settings-notifications-row:last-child {
  margin-bottom: 0;
}

.settings-notifications-col {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.settings-notifications-col:nth-child(1) {
  width: 440px;
}
.settings-notifications-col:nth-child(2) {
  width: 154px;
}
.settings-notifications-col:nth-child(3) {
  width: 124px;
}

.settings-notifications-title {
  font-weight: 500;
  color: #555553;
  text-transform: uppercase;
}

.settings-notifications-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
}

.settings-notifications-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.settings-notifications-type-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin-right: 16px;
}

.settings-notifications-type-lable {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #555553;
}

.settings-delete-button .button {
  width: 100%;
  max-width: 252px;
}

@media (max-width: 1199px) {
  .settings-col {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .settings-col {
    width: 100%;
  }
  .settings-telegram-block {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .settings-block {
    margin-top: 60px;
  }
  .settings-block.settings-block-1 {
    margin-top: 60px;
  }
  .settings-photo-upload .upload-file {
    padding: 32px 24px;
  }
  .settings-submit-button {
    margin-top: 40px;
  }
  .settings-submit-button .button {
    width: 100%;
  }
  .settings-telegram-notifications-col:nth-child(1) {
    width: 100%;
  }
  .settings-telegram-notifications-col:nth-child(2) {
    width: 100%;
  }
  .settings-telegram-bot-col:nth-child(1) {
    width: 100%;
  }
  .settings-telegram-bot-icon {
    width: 32px;
    height: 32px;
    margin-right: 16px;
  }
  .settings-telegram-bot-label {
    font-size: 18px;
  }
  .settings-notifications-row {
    margin-left: -12px;
    margin-right: -12px;
    margin-bottom: 16px;
  }
  .settings-notifications-row:first-child {
    margin-bottom: 24px;
  }
  .settings-notifications-col {
    padding: 0 12px;
  }
  .settings-notifications-col:nth-child(1) {
    width: 224px;
  }
  .settings-notifications-col:nth-child(2), .settings-notifications-col:nth-child(3) {
    width: 64px;
  }
  .settings-notifications-type-icon {
    margin-right: 0;
  }
  .settings-notifications-type-lable {
    display: none;
  }
}