@import url(https://fonts.googleapis.com/css?family=Poppins:regular,500,600,700&display=swap);

@import url(https://fonts.googleapis.com/css?family=Montserrat:500,600,700&display=swap);

@import url(https://fonts.googleapis.com/css?family=Inter:regular,500&display=swap);

@charset "UTF-8";

@font-face {
  font-family: icons;
  font-display: swap;
  src: url("../fonts/icons.woff2") format("woff2"), url("../fonts/icons.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

[class*=_icon-]:before {
  font-family: "icons";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class*=_icon-]:before {
  display: block;
}

._icon-arrow-thin:before {
  content: "\e906";
}

._icon-arrow:before {
  content: "\e900";
}

._icon-cash:before {
  content: "\e901";
}

._icon-heart:before {
  content: "\e902";
}

._icon-plus:before {
  content: "\e903";
}

._icon-profile:before {
  content: "\e904";
}

._icon-question:before {
  content: "\e905";
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

html,
body {
  height: 100%;
  min-width: 375px;
}

body {
  color: #212121;
  line-height: 1;
  font-family: "Poppins";
  font-size: 1rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Poppins";
  font-size: inherit;
  line-height: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

details > summary::-webkit-details-marker {
  display: none;
}

details > summary:first-of-type {
  list-style: none;
}

summary {
  list-style: none;
  list-style-type: none;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
  pointer-events: none;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}

.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

/*
(i) Стилі будуть застосовуватись до
всіх класів, що містять *__container
Наприклад header__container, main__container і т.п.
Сніппет (HTML): cnt
*/

[class*=__container] {
  max-width: 91.875rem;
  margin: 0 auto;
  padding: 0 0.9375rem;
}

.button {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 170%;
  /* 23.8px */
  background-color: #7849e8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.1875rem;
  background-color: #7849e8;
  padding: 0.75rem 2rem;
  -webkit-box-shadow: 0.25rem 0.25rem 2.125rem 0 rgba(120, 73, 232, 0.25);
          box-shadow: 0.25rem 0.25rem 2.125rem 0 rgba(120, 73, 232, 0.25);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.button:active {
  background-color: #4617B6;
}

.button--add {
  padding: 0.75rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6875rem;
  position: relative;
  z-index: 35;
}

.button--add[disabled] {
  pointer-events: none;
  background: #DEDEDE;
  color: #969696;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.button--white {
  border: 0.0625rem solid rgba(33, 33, 33, 0.3);
  background: #FFF;
  color: #212121;
  -webkit-box-shadow: none;
          box-shadow: none;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.input {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 0.875rem;
  line-height: 120%;
  width: 100%;
  height: 3rem;
  border-radius: 0.1875rem;
  padding: 0rem 1rem;
  border: 0.0625rem solid rgba(33, 33, 33, 0.1);
}

.input._form-error {
  border: 0.0625rem solid red;
}

.input._form-error::-webkit-input-placeholder {
  color: red;
}

.input._form-error::-moz-placeholder {
  color: red;
}

.input._form-error:-ms-input-placeholder {
  color: red;
}

.input._form-error::-ms-input-placeholder {
  color: red;
}

.input._form-error::placeholder {
  color: red;
}

.input::-webkit-input-placeholder {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: rgba(33, 33, 33, 0.5);
  line-height: 120%;
}

.input::-moz-placeholder {
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  color: rgba(33, 33, 33, 0.5);
  line-height: 120%;
}

.input:-ms-input-placeholder {
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  color: rgba(33, 33, 33, 0.5);
  line-height: 120%;
}

.input::-ms-input-placeholder {
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  color: rgba(33, 33, 33, 0.5);
  line-height: 120%;
}

.input::placeholder {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: rgba(33, 33, 33, 0.5);
  line-height: 120%;
}

.input:focus::-webkit-input-placeholder {
  opacity: 0;
}

.input:focus::-moz-placeholder {
  opacity: 0;
}

.input:focus:-ms-input-placeholder {
  opacity: 0;
}

.input:focus::-ms-input-placeholder {
  opacity: 0;
}

.input:focus::placeholder {
  opacity: 0;
}

.input:focus {
  outline: none;
}

.input._form-focus {
  border: 0.0625rem solid #7849e8;
}

.form__error {
  display: none;
}

.checkbox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 0.1875rem;
  border: 0.0625rem solid rgba(33, 33, 33, 0.1);
  background: #FFF;
}

.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.checkbox__input:checked + .checkbox__label {
  background: #7849e8;
}

.checkbox__label {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  height: 2.5rem;
  border-radius: 0.1875rem;
  background: rgba(91, 43, 202, 0.4);
  padding: 0.5rem 0.75rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 170%;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}

.checkbox__icon {
  width: 1.5rem;
  height: 1.5rem;
  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;
  -ms-flex-preferred-size: 1.5rem;
      flex-basis: 1.5rem;
}

.checkbox__text {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.checkbox-register {
  display: -ms-grid;
  display: grid;
  gap: 1.25rem;
}

.checkbox-register__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.checkbox-register__input:focus-visible + .checkbox__label:before {
  -webkit-box-shadow: 0 0 5px #000;
          box-shadow: 0 0 5px #000;
}

.checkbox-register__input:checked + .checkbox-register__label:before {
  background-color: #7849e8;
}

.checkbox-register__label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.checkbox-register__label:before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1.125rem;
          flex: 0 0 1.125rem;
  width: 1.125rem;
  height: 1.125rem;
  border: 0.125rem solid #000;
  border-radius: 0.1875rem;
}

.checkbox-register__text {
  line-height: 120%;
  /* 27.2px */
  font-size: 0.9375rem;
}

.options-hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.options-hero__item {
  width: 100%;
  position: relative;
  cursor: pointer;
}

.options-hero__input {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}

.options-hero__input:checked + .options-hero__label {
  border-bottom: 0.125rem solid #7849e8;
  color: rgb(33, 33, 33);
}

.options-hero__label {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: rgba(33, 33, 33, 0.6);
  text-align: center;
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  padding: 1rem 2.5rem;
  background-color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 120%;
  border-bottom: 0.125rem solid rgba(33, 33, 33, 0.2);
}

.options-filter {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.options-filter__input {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}

.options-filter__input:checked + .options-filter__label {
  border: 0.0625rem solid #7849E8;
  color: rgb(33, 33, 33);
}

.options-filter__label {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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%;
  color: rgba(33, 33, 33, 0.7);
  height: 2.5rem;
  border-radius: 0.1875rem;
  border: 0.0625rem solid rgba(131, 131, 131, 0.3);
  background: #FBFAFF;
}

.select {
  min-width: 0;
  position: relative;
}

.select__body {
  position: relative;
}

.select__title {
  display: grid;
  align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
      height: 3rem;
      color: inherit;
      text-align: left;
      background-color: #fff;
      cursor: pointer;
      width: 100%;
      border-radius: 0.1875rem;
      border: 0.0625rem solid rgba(33, 33, 33, 0.4);
      color: rgba(33, 33, 33, 0.7);
      padding: 0rem 1rem;
}

._select-open .select__title {
  color: rgba(33, 33, 33, 0.5);
  border: 0.0625rem solid rgba(33, 33, 33, 0.1);
  background: #F1F1F1;
}

.select__value {
  min-width: 0;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 1.875rem;
}

.select__value::before {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  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;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  font-size: 0.875rem;
  font-weight: 300;
  color: #212121;
}

._select-open .select__value::before {
  -webkit-transform: rotateX(-180deg);
          transform: rotateX(-180deg);
  color: rgba(33, 33, 33, 0.5);
}

.select__value > * {
  
  justify-self: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.select__value._select-pseudo-label::before {
  content: attr(data-pseudo-label);
  opacity: 0.5;
}

.select__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
 border: none;
 outline: none;
}

.select__options {
  color: #000;
  position: absolute;
  top: calc(100% - 0.0625rem);
  border-radius: 0 0 4px 4px;
  min-width: 100%;
  left: 0;
  background-color: #fff;
  border-top: 0;
  border-top: 0;
  padding: 1rem;
  border-radius: 0.1875rem;
  border: 0.0625rem solid rgba(33, 33, 33, 0.7);
}

.select__scroll {
  max-height: 12.5rem;
  display: grid;
  gap: 1rem;
}

.select__option {
  color: #212121;
  font-size: 0.875rem;
  line-height: 120%;
  width: 100%;
  text-align: left;
  cursor: pointer;
  color: inherit;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-left: auto;
}

.select__option:not(:last-child) {
  /* margin-bottom: 1rem; */
}
.select__option:last-child {
  margin-bottom: 0;
}
.select__option._select-selected {
  background-color: #eee;
}

.select__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.select--show-top .select__options {
  top: auto;
  bottom: 100%;
  border-radius: 4px 4px 0 0;
  padding: 1rem;
}

._select-tag {
  cursor: pointer;
}

.rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 40px;
  line-height: 0.75;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.rating.rating_sending {
  opacity: 0.2;
}

.rating.rating_set .rating__active,
.rating.rating_set .rating__item {
  cursor: pointer;
}

.rating__body {
  position: relative;
}

.rating__body::before {
  content: url("../img/realtors/rating.svg");
  display: block;
}

.rating__active {
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.rating__active::before {
  content: url("../img/realtors/rating.svg");
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #ffd300;
}

.rating__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.rating__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  height: 100%;
  opacity: 0;
}

.rating__value {
  font-size: 50%;
  line-height: 1;
  padding: 0px 0px 0px 10px;
}

/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */

.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.noUi-target {
  position: relative;
}

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

/* Wrapper for all connect elements.
 */

.noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  -webkit-transform-style: flat;
          transform-style: flat;
}

/* Offset direction
 */

.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}

/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */

.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-handle {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  position: absolute;
}

.noUi-touch-area {
  height: 100%;
  width: 100%;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

/* Slider size and handle placement;
 */

.noUi-horizontal {
  height: 0.3625rem;
}

.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -7px;
  top: -6px;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}

/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */

.noUi-target {
  background: #fafafa;
  border-radius: 4px;
  border: 1px solid #d3d3d3;
  -webkit-box-shadow: inset 0 1px 1px #f0f0f0, 0 3px 6px -5px #bbb;
          box-shadow: inset 0 1px 1px #f0f0f0, 0 3px 6px -5px #bbb;
}

.noUi-connects {
  background: #e4dbfa;
  border-radius: 2.75rem;
}

/* Handles and cursors;
 */

.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-active {
  -webkit-box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ddd, 0 3px 6px -3px #bbb;
          box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ddd, 0 3px 6px -3px #bbb;
}

/* Handle stripes;
 */

.noUi-handle:after {
  left: 7px;
}

.noUi-handle.noUi-handle-lower {
  width: 1rem;
  height: 1rem;
  background-color: #7849E8;
  border-radius: 50%;
  cursor: pointer;
}

.noUi-vertical .noUi-handle:after {
  top: 17px;
}

/* Disabled state;
 */

[disabled] .noUi-connect {
  background: #b8b8b8;
}

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}

/* Base;
 *
 */

.noUi-pips,
.noUi-pips * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

/* Values;
 *
 */

.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

/* Markings;
 *
 */

.noUi-marker {
  position: absolute;
  background: #ccc;
}

.noUi-marker-sub {
  background: #aaa;
}

.noUi-marker-large {
  background: #aaa;
}

/* Horizontal layout;
 *
 */

.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
      -ms-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
      -ms-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

/* Vertical layout;
 *
 */

.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
      -ms-transform: translate(0, 50%);
          transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
      -ms-transform: translate(50%, 0);
          transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}

.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
      -ms-transform: translate(0, -18px);
          transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.gallery-popup__container {
  padding: 1.5625rem;
  height: 100vh;
  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;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.popup__content {
  height: 100%;
  visibility: hidden;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
}

.lock .popup__content {
  visibility: visible;
}

.gallery-popup {
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-transition: background-color 0.8s ease 0s;
  transition: background-color 0.8s ease 0s;
}

.gallery-popup__content {
  position: relative;
  background-color: rgba(255, 255, 255, 0.8);
  max-height: 100%;
  aspect-ratio: 1410/926;
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
  background-color: transparent;
  -ms-grid-rows: 72.786177%;
  grid-template-rows: 72.786177%;
  /* 674/926 */
}

.gallery-popup__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  z-index: 50;
  border-radius: 0.3125rem;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.swiper-popup {
  width: 100%;
}

.swiper-popup__slide {
  cursor: pointer;
  position: relative;
  cursor: pointer;
}

.swiper-popup__slide::after {
  content: "";
  background: rgba(120, 73, 232, 0.4);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.swiper-popup__slide.swiper-slide-thumb-active::after {
  opacity: 1;
}

.swiper-popup__image-ibg {
  width: 100%;
  height: 100%;
  border-radius: 0.3125rem;
  overflow: hidden;
}

.popup-log {
  -webkit-transition: background-color 0.8s ease 0s;
  transition: background-color 0.8s ease 0s;
  background: rgba(0, 0, 0, 0.8);
}

.popup-log__wrapper {
  overflow: auto;
  padding: 1.5625rem;
  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;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.popup-log__tabs {
  background-color: #fff;
  border-radius: 0.625rem;
  overflow: hidden;
  -webkit-box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.25);
  width: 28rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.popup-log__navigation {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.popup-log__title {
  height: 3.9375rem;
  border-bottom: 0.125rem solid rgba(33, 33, 33, 0.2);
  background: #fff;
  color: rgba(33, 33, 33, 0.6);
  font-weight: 500;
  line-height: 120%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.popup-log__title._tab-active {
  border-bottom: 0.125rem solid #7849e8;
  color: rgb(33, 33, 33);
}

.popup-log__form {
  padding: 2rem;
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
}

.popup-log__label {
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 0.625rem;
}

[data-showmore-button] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 5rem;
  border: 0.0625rem solid #7849e8;
  border-radius: 0.3125rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  margin-top: 0.625rem;
}

[data-showmore-button] span {
  color: #7849e8;
  font-weight: 500;
  font-size: 0.8125rem;
}

[data-showmore-button] span:last-child {
  display: none;
}

._showmore-active [data-showmore-button] span {
  display: none;
}

._showmore-active [data-showmore-button] span:last-child {
  display: block;
}

[class*=-ibg] {
  position: relative;
}

[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

[class*=-ibg--contain] img {
  -o-object-fit: contain;
     object-fit: contain;
}

.page-order .property__container {
  max-width: 100%;
}

.page-order .property__section-header {
  max-width: 90rem;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.page-search {
  padding-top: 3.9375rem;
}

.section-header {
  font-family: Montserrat;
  margin-bottom: 2rem;
}

.section-header__title {
  line-height: 120%;
  font-weight: 700;
  font-size: 1.75rem;
}

.section-header__title:not(:last-child) {
  margin-bottom: 1rem;
}

.section-header__label {
  line-height: 120%;
  font-size: 1rem;
  opacity: 0.5;
  font-weight: 500;
}

.labels {
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6875rem;
}

.labels__item {
  border-radius: 0.3125rem;
  border: 0.0625rem solid #7849e8;
  background: #fff;
  font-size: 0.875rem;
  line-height: 120%;
  padding: 0.0625rem 0.3125rem;
}

.features {
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
  row-gap: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.features__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.features__icon {
  background: #edf0fd;
  width: 1.75rem;
  -ms-flex-preferred-size: 1.75rem;
      flex-basis: 1.75rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  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;
}

.features__text {
  color: rgba(33, 33, 33, 0.5);
  font-size: 0.875rem;
  line-height: 120%;
}

.price {
  color: rgba(33, 33, 33, 0.5);
  font-family: Montserrat;
  font-weight: 600;
  line-height: 120%;
}

.price span {
  color: #7849e8;
  font-weight: 700;
}

.paging {
  -ms-grid-column-align: center;
      justify-self: center;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.paging__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.paging__item {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 0.1875rem;
  border: 0.0625rem solid #efefef;
  background-color: #fff;
  width: 3rem;
  height: 3rem;
  -ms-flex-preferred-size: 3rem;
      flex-basis: 3rem;
}

.paging__item.active {
  background-color: #7849e8;
  color: #fff;
  -webkit-box-shadow: 0.25rem 0.25rem 2.125rem 0 rgba(120, 73, 232, 0.25);
          box-shadow: 0.25rem 0.25rem 2.125rem 0 rgba(120, 73, 232, 0.25);
}

.paging__link {
  width: 100%;
  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: 100%;
}

.paging__button {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.paging__button.disabled {
  background-color: #dedede;
  color: #969696;
  -webkit-box-shadow: none;
          box-shadow: none;
  pointer-events: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 150;
  background-color: #fff;
  height: 3.9375rem;
}

.header__container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.3125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__log {
  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: 0.625rem 2rem;
  font-weight: 500;
  line-height: 170%;
  position: relative;
  z-index: 15;
  border-radius: 0.1875rem;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.header__filter {
  position: relative;
  z-index: 45;
  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: 1.5rem;
  height: 1.5rem;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.menu-open .header__filter {
  opacity: 0;
  margin-left: -0.9375rem;
  width: 0;
}

.menu-open .header__filter img {
  width: 0;
}

.logo {
  position: relative;
  z-index: 26;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.375rem;
  margin-right: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo img {
  -ms-flex-preferred-size: 2.5rem;
      flex-basis: 2.5rem;
}

.logo__text {
  color: #7849e8;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 170%;
  /* 34px */
}

.menu {
  margin-right: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.menu__body {
  z-index: 22;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.menu__item {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6875rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.menu__item._hover .menu__link::before {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.menu__item._hover::after {
  opacity: 0;
}

.menu__item._hover .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.menu__link {
  height: 100%;
  padding: 1.125rem 2rem;
  gap: 0.6875rem;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 170%;
  position: relative;
}

.menu__link._spoller-active::before {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.menu__link::before {
  position: relative;
  padding-top: 0.1875rem;
  font-weight: 500;
  font-size: 0.625rem;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.sub-menu {
  z-index: 200;
  cursor: initial;
  background-color: #fff;
  overflow: auto;
  transition: opacity 0.3s, visibility 0.3s;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  display: -ms-grid;
  display: grid;
}

.sub-menu__block {
  background-color: #FFF;
  display: -ms-grid;
  display: grid;
}

.sub-menu__title {
  color: #212121;
  font-weight: 600;
  line-height: 150%;
}

.sub-menu__title::before {
  position: relative;
  font-weight: 500;
  padding-top: 0.1875rem;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  font-size: 1rem;
}

.sub-menu__title._spoller-active::before {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.sub-menu__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.sub-menu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.sub-menu__link {
  justify-self: flex-end;
  color: #2c68f6;
  font-weight: 500;
  line-height: 120%;
}

.user-header {
  cursor: pointer;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  padding: 1rem 2rem;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.lock .user-header {
  pointer-events: all;
}

.user-header.active {
  background-color: #C9B6F6;
}

.user-header__avatar-ibg {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  overflow: hidden;
}

.user-header__name {
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  font-weight: 500;
  line-height: 140%;
}

.user-header__sub-menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  background-color: #FFF;
  z-index: 40;
  padding: 1rem;
  display: -ms-grid;
  display: grid;
  gap: 2rem;
  -webkit-transform: translate(0, 0.625rem);
      -ms-transform: translate(0, 0.625rem);
          transform: translate(0, 0.625rem);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.user-header__sub-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  -webkit-transform: translate(0, 0rem);
      -ms-transform: translate(0, 0rem);
          transform: translate(0, 0rem);
  z-index: 150;
}

.user-header__sub-menu.active::before {
  opacity: 1;
}

.user-header__links {
  display: -ms-grid;
  display: grid;
}

.user-header__link {
  padding: 1rem;
  gap: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 3.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.user-header__link:not(:last-child) {
  border-bottom: 0.0625rem solid #D9D9D9;
}

.user-header__link span {
  width: 100%;
  text-align: center;
}

.user-header__link img {
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.user-header__button {
  background: #E84949;
  -webkit-box-shadow: 4px 4px 34px 0px rgba(232, 73, 73, 0.25);
          box-shadow: 4px 4px 34px 0px rgba(232, 73, 73, 0.25);
}

.button-header {
  width: 2.5rem;
  height: 2.5rem;
  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;
  margin: 0 -0.6875rem;
}

.icon-menu {
  display: none;
}

.footer__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  row-gap: 1.5rem;
}

.footer__column {
  display: -ms-grid;
  display: grid;
  row-gap: 2.25rem;
  -webkit-column-gap: 2.25rem;
     -moz-column-gap: 2.25rem;
          column-gap: 2.25rem;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.footer__block:last-child .footer__item:last-child {
  margin-bottom: 0.625rem;
}

.footer__title {
  font-size: 1rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 700;
  line-height: 120%;
}

.footer__title:not(:last-child) {
  margin-bottom: 1.5rem;
}

.footer__title::before {
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.footer__title._spoller-active {
  color: #7849e8;
}

.footer__title._spoller-active::before {
  opacity: 0.5;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.footer__list {
  display: -ms-grid;
  display: grid;
  gap: 1rem;
}

.footer__item:last-child {
  margin-bottom: 2.5rem;
}

.footer__link {
  opacity: 0.5;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 120%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.mobile-footer {
  z-index: 20;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4.3125rem;
  padding-top: 0.3125rem;
  background-color: #FFF;
  border-top: 0.0625rem solid #d9d9d9;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #445668;
  font-family: Inter;
  font-size: 0.75rem;
  line-height: 100%;
}

.mobile-footer__buttons {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.mobile-footer__watchlist {
  display: -ms-grid;
  display: grid;
  justify-items: center;
}

.mobile-footer__plus {
  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: 2.8125rem;
  height: 2.8125rem;
  -ms-flex-preferred-size: 2.8125rem;
      flex-basis: 2.8125rem;
  border-radius: 50%;
  background-color: #7849e8;
}

.mobile-footer__profile {
  display: -ms-grid;
  display: grid;
  justify-items: center;
}

.mobile-footer__sub-menu {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 13.25rem;
  border-radius: 0.3125rem;
  border: 0.0625rem solid #D9D9D9;
  background: #FFF;
  position: fixed;
  z-index: 20;
  right: 0;
  bottom: 4.3125rem;
  padding: 0.625rem;
  opacity: 0;
  -webkit-transform: translate(0.625rem, 0.625rem);
      -ms-transform: translate(0.625rem, 0.625rem);
          transform: translate(0.625rem, 0.625rem);
  pointer-events: none;
}

.mobile-footer__sub-menu._active {
  -webkit-transform: translate(0);
      -ms-transform: translate(0);
          transform: translate(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-footer__list {
  display: -ms-grid;
  display: grid;
  gap: 0.625rem;
  justify-items: center;
}

.mobile-footer__link {
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 1.25rem;
  line-height: 135%;
}

.hero__container {
  padding-top: 3.9375rem;
}

.hero__content {
  border-radius: 0.1875rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
  position: relative;
  padding-right: 1.25rem;
  padding-left: 1.875rem;
  width: 100%;
  height: 100%;
  display: -ms-grid;
  display: grid;
  justify-items: center;
}

.hero__image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.hero__title {
  color: #fff;
  text-align: center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: Montserrat;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 120%;
}

.form-hero {
  width: 57.5rem;
  /* 920/1440 */
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
}

.form-hero__input {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 0.875rem;
  line-height: 170%;
  /* 23.8px */
  width: 100%;
  height: 3rem;
  border-radius: 0.1875rem;
  padding: 0rem 1rem;
  border: 0.0625rem solid rgba(33, 33, 33, 0.1);
}

.form-hero__input::-webkit-input-placeholder {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: rgba(33, 33, 33, 0.5);
  line-height: 120%;
}

.form-hero__input::-moz-placeholder {
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  color: rgba(33, 33, 33, 0.5);
  line-height: 120%;
}

.form-hero__input:-ms-input-placeholder {
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  color: rgba(33, 33, 33, 0.5);
  line-height: 120%;
}

.form-hero__input::-ms-input-placeholder {
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  color: rgba(33, 33, 33, 0.5);
  line-height: 120%;
}

.form-hero__input::placeholder {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: rgba(33, 33, 33, 0.5);
  line-height: 120%;
}

.form-hero__input:focus::-webkit-input-placeholder {
  opacity: 0;
}

.form-hero__input:focus::-moz-placeholder {
  opacity: 0;
}

.form-hero__input:focus:-ms-input-placeholder {
  opacity: 0;
}

.form-hero__input:focus::-ms-input-placeholder {
  opacity: 0;
}

.form-hero__input:focus::placeholder {
  opacity: 0;
}

.form-hero__input:focus {
  outline: none;
}

.form-hero__input._form-focus {
  border: 0.0625rem solid #7849e8;
}

.property__content {
  display: -ms-grid;
  display: grid;
}

.property__items {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(22.5rem, 1fr));
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
}

.property__button {
  -ms-grid-column-align: center;
      justify-self: center;
}

.item-property {
  padding-bottom: 0.375rem;
}

.item-property__image-ibg {
  width: 100%;
  min-height: 13.25rem;
  aspect-ratio: 448/212;
  border-radius: 0.3125rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 0.75rem;
  margin-bottom: 1.25rem;
}

.item-property__image-ibg::after {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: "";
  background-color: rgba(120, 73, 232, 0.4);
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.item-property__labels {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.item-property__favorite {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 2.125rem;
  aspect-ratio: 1/1;
  position: relative;
  z-index: 5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.item-property__favorite img {
  width: 100%;
}

.item-property__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 0.0625rem solid rgba(33, 33, 33, 0.2);
}

.item-property__main-info {
  display: -ms-grid;
  display: grid;
  gap: 0.625rem;
}

.item-property__name {
  font-size: 1rem;
  font-weight: 600;
  line-height: 120%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.item-property__address {
  color: rgba(33, 33, 33, 0.5);
  font-size: 0.875rem;
  line-height: 120%;
}

.item-property__price {
  color: rgba(33, 33, 33, 0.5);
  font-family: Montserrat;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 120%;
}

.item-property__price span {
  color: #7849e8;
  font-size: 1.5rem;
  font-weight: 700;
}

.item-property__features {
  margin-top: 0.875rem;
}

.realtors {
  padding-top: 2.5rem;
}

.realtors__container {
  display: -ms-grid;
  display: grid;
}

.realtors__title {
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 1.75rem;
}

.realtors__title:not(:first-child) {
  margin-top: 1.875rem;
}

.realtors__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[7];
  grid-template-columns: repeat(7, 1fr);
  gap: 2.5rem;
  overflow: auto;
  padding-bottom: 1.25rem;
}

.realtors__button {
  margin-top: 1.75rem;
  -ms-grid-column-align: center;
      justify-self: center;
}

.item-realtor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.item-realtor__photo-ibg {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  width: 8.125rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.625rem;
}

.item-realtor__name {
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 0.125rem;
}

.item-realtor__label {
  color: rgba(33, 33, 33, 0.5);
  font-size: 0.875rem;
  line-height: 150%;
  margin-bottom: 1rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.item-realtor__rating {
  width: 100%;
}

.item-realtor__rating img {
  width: 100%;
}

.articles__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.articles__image-ibg {
  height: 25.75rem;
}

.articles__content {
  padding: 2rem;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
}

.articles__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.articles__label:nth-child(3) {
  margin-left: auto;
}

.articles__text {
  font-size: 1rem;
  line-height: 170%;
  /* 27.2px */
}

.order-header__container {
  max-width: 100%;
}

.gallery {
  padding-top: 5.0625rem;
}

.gallery__container {
  max-width: 100%;
  -ms-grid-columns: 42.75rem auto;
  grid-template-columns: 42.75rem auto;
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
}

.gallery__big-ibg {
  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;
  overflow: hidden;
  position: relative;
  width: 100%;
  border-radius: 0.375rem;
  cursor: pointer;
}

.gallery__big-ibg::after {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.gallery__big-ibg img {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.gallery__mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.swiper-gallery {
  position: relative;
}

.swiper-gallery__slide {
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
  width: 23.1875rem;
}

.swiper-gallery__image-ibg {
  border-radius: 0.375rem;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  position: relative;
}

.swiper-gallery__image-ibg::after {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.swiper-gallery__image-ibg img {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.swiper-gallery__button {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0;
  position: relative;
  z-index: 15;
}

.swiper-scrollbar {
  cursor: pointer;
  background: #fff;
  border-radius: 1.3125rem;
  border: 1px solid #9747ff;
  position: absolute;
  left: 1%;
  bottom: 0.8125rem;
  z-index: 50;
  height: 0.625rem;
  width: 98%;
  /* 1143/1161 */
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 200px;
  border-radius: 1.3125rem;
  background: rgba(120, 73, 232, 0.4);
  position: relative;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.info__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 62.5% auto;
  grid-template-columns: 62.5% auto;
  /* 900/1454 */
  gap: 2.75rem;
}

.info__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
  row-gap: 0.5625rem;
}

.main-info__title {
  color: #212121;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 1.0625rem;
}

.main-info__subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.5rem;
  margin-bottom: 0.9375rem;
}

.main-info__label {
  color: rgba(33, 33, 33, 0.5);
  font-size: 1rem;
  font-weight: 500;
  line-height: 120%;
}

.main-info__fee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
  font-family: Inter;
  color: #000;
}

.main-info__map-ibg {
  width: 100%;
  aspect-ratio: 900/603;
}

.property-info {
  padding-top: 0.625rem;
  border-top: 0.0625rem solid #c9b6f6;
}

.property-info__title {
  color: #000;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 120%;
}

.property-info__title--small {
  font-size: 1.25rem;
  margin-top: 1.25rem;
}

.property-info__move {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  font-family: Inter;
  font-size: 1rem;
  line-height: 120%;
  padding: 0.625rem;
}

.property-info__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 0.0625rem solid rgba(201, 182, 246, 0.2);
  padding: 0.625rem;
}

.item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.1875rem;
  color: #000;
  line-height: 120%;
}

.item-info__title {
  margin-bottom: 0.9375rem;
  margin-top: 0.3125rem;
}

.item-info__list {
  padding-left: 0.625rem;
  display: -ms-grid;
  display: grid;
  gap: 0.375rem;
}

.item-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}

.item-info__item::before {
  content: "";
  width: 0.25rem;
  -ms-flex-preferred-size: 0.25rem;
      flex-basis: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: #000;
}

.additional-info {
  margin-top: 1.25rem;
  margin-bottom: 2.25rem;
}

.additional-info__title {
  color: #000;
  font-weight: 600;
  line-height: 17 0%;
  margin-bottom: 1.25rem;
}

.additional-info__text {
  line-height: 170%;
}

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

.sidebar-info__block {
  width: 100%;
}

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

.sidebar-info__labels {
  gap: 1.5625rem;
  margin-bottom: 0.625rem;
}

.sidebar-info__labels .labels__item {
  background: #efefef;
}

.sidebar-info__features {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  max-width: 21.25rem;
}

.sidebar-info__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sidebar-info__registration {
  margin-top: 2rem;
  color: #969696;
  text-align: right;
  font-size: 0.875rem;
  line-height: 120%;
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
}

.sidebar-info__top {
  border-bottom: 0.0625rem solid #c9b6f6;
  width: 100%;
  padding-bottom: 0.6875rem;
  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;
}

.person-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.person-info__avatar-ibg {
  width: 5.625rem;
  -ms-flex-preferred-size: 5.625rem;
      flex-basis: 5.625rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}

.person-info__body {
  line-height: 170%;
}

.person-info__name {
  font-weight: 600;
}

.person-info__tel {
  color: rgba(33, 33, 33, 0.5);
  font-size: 0.875rem;
}

.filter {
  position: fixed;
  z-index: 25;
  background-color: #fff;
}

.lock .filter {
  pointer-events: all;
}

.filter__container {
  position: relative;
}

.filter__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.filter__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  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;
}

.filter__close img {
  width: 1.3125rem;
  height: 1.3125rem;
}

.item-filter {
  position: relative;
}

.item-filter:nth-child(2) {
  z-index: 10;
}

.item-filter:nth-child(3) {
  z-index: 9;
}

.item-filter:nth-child(4) {
  z-index: 8;
}

.item-filter:nth-child(5) {
  z-index: 7;
}

.item-filter__title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 120%;
}

.item-filter__title:not(:last-child) {
  margin-bottom: 0.625rem;
}

.item-filter__input {
  height: 3rem;
  width: 100%;
  border-radius: 0.1875rem;
  padding: 0 1rem;
  border: 0.0625rem solid rgba(33, 33, 33, 0.1);
  background: #fff;
}

.item-filter__button {
  cursor: pointer;
  color: rgba(33, 33, 33, 0.5);
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 3rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 0.875rem;
  line-height: 120%;
  width: 100%;
  height: 3rem;
  border-radius: 0.1875rem;
  padding: 0.75rem 1rem;
  transition: all 0.3s;
  border: 0.0625rem solid rgba(33, 33, 33, 0.1);
}

.item-filter__button::before {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  font-weight: 400;
  font-size: 0.875rem;
}

.item-filter__body {
  border-radius: 0.1875rem;
  border: 0.0625rem solid rgba(33, 33, 33, 0.7);
  background: #fff;
  padding: 1rem;
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  width: 100%;
}

.item-filter__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 0.625rem;
}

.item-filter__label {
  margin-bottom: 0.625rem;
}

.new {
  padding-top: 4.625rem;
}

.new__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[6];
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.0625rem;
}

.item-new {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.625rem 1.5rem;
  gap: 1.5rem;
  border-radius: 0.1875rem;
  background: rgba(121, 73, 232, 0.4);
  -webkit-box-shadow: 4px 4px 34px 0px rgba(120, 73, 232, 0.25);
          box-shadow: 4px 4px 34px 0px rgba(120, 73, 232, 0.25);
}

.item-new.active {
  background: #7849e8;
}

.item-new__number {
  color: #fff;
  font-size: 3.375rem;
  font-weight: 500;
}

.item-new__text {
  color: #fff;
  line-height: 150%;
  font-size: 0.875rem;
  font-weight: 500;
}

.details__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 120%;
}

.details__title:not(:last-child) {
  margin-bottom: 1.5rem;
}

.details__block {
  margin-bottom: 2rem;
}

.details__textarea {
  height: 9rem;
  padding: 1rem;
  resize: none;
}

.details__button {
  margin-left: auto;
}

.details__button .button__arrow {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.details__choose {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.item-details__label {
  font-weight: 500;
  line-height: 120%;
}

.item-details__label:not(:last-child) {
  margin-bottom: 0.625rem;
}

.advantage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
}

.account {
  padding-top: 4.25rem;
}

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

.account__title {
  font-family: Montserrat;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 120%;
  /* 33.6px */
}

.account__settings img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.tabs-account__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.tabs-account__title {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: rgba(33, 33, 33, 0.4);
  font-family: Montserrat;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.tabs-account__title._tab-active {
  color: #212121;
}

.tabs-account__message {
  text-decoration: underline;
  color: #7849e8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.tabs-account__message[disabled] {
  color: rgba(33, 33, 33, 0.5);
  text-decoration: none;
  pointer-events: none;
}

.tabs-account__cell {
  position: relative;
}

.tabs-account__links {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -ms-grid;
  display: grid;
  position: absolute;
  bottom: -0.625rem;
  width: 9.1875rem;
  right: 1.5rem;
  z-index: 10;
  background-color: #fff;
  border-radius: 0.3125rem;
  border: 1px solid #d9d9d9;
  padding: 0.75rem;
  gap: 0.3125rem 0.625rem;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translate(0.625rem, 0.625rem);
      -ms-transform: translate(0.625rem, 0.625rem);
          transform: translate(0.625rem, 0.625rem);
}

.tabs-account__links.active {
  opacity: 1;
  pointer-events: all;
  -webkit-transform: translate(0);
      -ms-transform: translate(0);
          transform: translate(0);
}

.tabs-account__link {
  color: #000;
  line-height: 135.023%;
  /* 21.604px */
  font-weight: 400;
  white-space: nowrap;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.tabs-account__table {
  width: 100%;
}

.tabs-account__table tbody {
  width: 100%;
}

.tabs-account__table tr {
  display: -ms-grid;
  display: grid;
  justify-items: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 4.6875rem;
  width: 100%;
  -ms-grid-columns: 3.5% 12.5% auto 13.5% 4.1% 9.5% 1.6%;
  grid-template-columns: 3.5% 12.5% auto 13.5% 4.1% 9.5% 1.6%;
  border-bottom: 1px solid rgba(33, 33, 33, 0.1);
}

.tabs-account__table th {
  color: rgba(33, 33, 33, 0.4);
  font-weight: 500;
  line-height: 130%;
  /* 27.2px */
}

.tabs-account__table td {
  color: #212121;
  font-weight: 500;
  line-height: 130%;
}

.spollers-account__item {
  width: 100%;
  border-bottom: 0.0625rem solid #dedede;
}

.spollers-account__title {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 15% auto 10%;
  grid-template-columns: 15% auto 10%;
  height: 4.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.spollers-account__title::before {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.spollers-account__title::before {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-grid-column-align: center;
      justify-self: center;
}

.spollers-account__title._spoller-active::before {
  -webkit-transform: rotatex(180deg);
      -ms-transform: rotatex(180deg);
          transform: rotatex(180deg);
}

.spollers-account__column {
  display: -ms-grid;
  display: grid;
}

.spollers-account__column:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

.spollers-account__label {
  color: rgba(33, 33, 33, 0.5);
  font-weight: 500;
  line-height: 170%;
  /* 20.4px */
}

.spollers-account__value {
  font-weight: 500;
  line-height: 170%;
}

.spollers-account__row {
  position: relative;
  height: 4.75rem;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 15% 45% 30% 10%;
  grid-template-columns: 15% 45% 30% 10%;
  border-bottom: none;
}

.spollers-account__button {
  margin: 0.625rem 0 0.9375rem auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.settings {
  padding-bottom: 6.25rem;
}

.settings__title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 120%;
  /* 33.6px */
}

.settings-tabs__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  row-gap: 0.625rem;
  margin-bottom: 2.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.settings-tabs__title {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: rgba(33, 33, 33, 0.4);
  font-family: Montserrat;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.settings-tabs__title._tab-active {
  color: #212121;
}

.form-settings {
  display: -ms-grid;
  display: grid;
}

.form-settings__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.form-settings__photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-settings__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;
  width: 5rem;
  -ms-flex-preferred-size: 5rem;
      flex-basis: 5rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #ededed;
}

.form-settings__icon img {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.form-settings__label {
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 0.625rem;
}

.form-settings__textarea {
  padding-top: 0.75rem;
  resize: none;
  height: 93.5%;
}

.form-settings__button {
  margin-top: 3rem;
  -ms-grid-column-align: center;
      justify-self: center;
}

body::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 95;
}

.lock body::before {
  opacity: 1;
}

.swiper {
  overflow: hidden;
}

.swiper-initialized {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.swiper-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.swiper-initialized .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

@media (min-width: 29.99875em) {
  .mobile-footer {
    display: none;
  }
}

@media (min-width: 47.99875em) {
  [data-showmore-button] {
    display: none;
  }

  .menu__list {
    height: 100%;
  }

  .menu__item._hover {
    background-color: #C9B6F6;
  }

  .menu__item:not(:last-child) .menu__link::after {
    content: "";
    width: 0.0625rem;
    height: 2rem;
    background: #D9D9D9;
    right: 0;
    top: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  
  .sub-menu {
    max-width: 90rem;
    -ms-grid-column-align: center;
        justify-self: center;
    padding: 1.75rem 1rem 1.5rem 1rem;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    width: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    position: fixed;
    top: 3.9375rem;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .order-header__container .sub-menu {
    max-width: 100%;
    width: 100%;
  }
  .sub-menu__block:not(:last-child) {
    position: relative;
  }

  .sub-menu__block:not(:last-child)::after {
    content: "";
    position: absolute;
    width: 0.0625rem;
    height: 100%;
    top: 50%;
    right: 0;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
    background: #d9d9d9;
  }

  .sub-menu__title {
    padding-left: 0.875rem;
  }

  .sub-menu__title::before {
    display: none;
  }

  .sub-menu__link {
    padding: 0.75rem 0.875rem 0.75rem 1.25rem;
    width: 100%;
  }

  .button-header {
    display: none;
  }

  .footer__title::before {
    display: none;
  }

  .hero__title {
    margin-bottom: 2rem;
  }

  .form-hero {
    padding-right: 2rem;
    border-radius: 0.625rem;
    -webkit-box-shadow: 0 0.25rem 1.5rem 0 rgba(0, 0, 0, 0.25);
            box-shadow: 0 0.25rem 1.5rem 0 rgba(0, 0, 0, 0.25);
  }

  .form-hero__input {
    margin-left: 2rem;
    margin-right: 0.625rem;
  }

  .info__favourite {
    display: none;
  }

  .sidebar-info__price {
    margin-bottom: 0.75rem;
  }

  .item-filter__button._open {
    border: 1px solid rgba(33, 33, 33, 0.2);
    background: #f1f1f1;
  }

  .item-filter__button._open::before {
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
  }

  .item-filter__body {
    opacity: 0;
    top: calc(100% + 0rem);
    position: absolute;
    z-index: 10;
    left: 0;
    pointer-events: none;
    visibility: hidden;
  }

  .item-filter__body._open {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
  }

  .tabs-account__mobile {
    display: none;
  }

  .spollers-account__label {
    font-size: 0.9375rem;
  }

  .spollers-account__value {
    font-size: 1rem;
  }

  .settings-tabs__title._tab-active {
    pointer-events: none;
  }
}

@media (min-width: 47.99875em) and (min-width: 90em) {
  .sub-menu__title {
    font-size: 1rem;
  }

  .sub-menu__title {
    margin-bottom: 2rem;
  }

  .sub-menu__link {
    font-size: 1rem;
  }
}

@media (min-width: 61.99875em) {
  .header__filter {
    display: none;
  }

  .page-search__property {
    padding-top: 10.0625rem;
  }

  .filter {
    padding-top: 1.5rem;
    padding-bottom: 1rem;
    width: 100%;
    top: 3.9375rem;
    left: 0;
  }

  .filter__close {
    display: none;
  }
}

@media (min-width: 61.99875em) and (min-width: 90em) {
  .item-filter__title {
    font-size: 1rem;
  }
}

@media (min-width: 91.875em) {
  .page-order .page-order__property:last-child {
    padding-bottom: 1.875rem;
  }

  .paging {
    margin-top: 4rem;
  }

  .paging {
    margin-bottom: 1.875rem;
  }

  .footer {
    padding-top: 3.125rem;
  }

  .hero__content {
    padding-top: 6.875rem;
  }

  .hero__content {
    padding-bottom: 6.875rem;
  }

  .gallery__big-ibg {
    aspect-ratio: 684/456;
  }

  .info {
    padding-top: 2.125rem;
  }

  .main-info__head {
    padding-bottom: 1rem;
  }

  .main-info__title {
    font-size: 2rem;
  }

  .property-info__title {
    margin-bottom: 0.75rem;
  }

  .additional-info__title {
    font-size: 1.5rem;
  }

  .sidebar-info {
    padding-right: 1.5rem;
  }

  .sidebar-info__price {
    font-size: 1.875rem;
  }

  .sidebar-info__price span {
    font-size: 2.25rem;
  }

  .sidebar-info__top {
    margin-bottom: 2rem;
  }

  .person-info {
    margin-bottom: 2rem;
  }

  .new {
    padding-bottom: 5.8125rem;
  }

  .account__head {
    margin-bottom: 1.875rem;
  }

  .tabs-account__paging {
    margin-bottom: 3.5rem;
  }

  .tabs-account__table th {
    font-size: 1rem;
  }

  .tabs-account__table td {
    font-size: 1rem;
  }

  .settings {
    padding-top: 4.375rem;
  }

  .settings__title {
    margin-bottom: 1.875rem;
  }

  .form-settings__photo {
    margin-bottom: 1.5625rem;
  }

  .form-settings__item:not(:last-child) {
    margin-bottom: 1.125rem;
  }
}

@media (min-width: 90em) {
  .footer {
    padding-bottom: 3.125rem;
  }

  .property {
    padding-top: 3rem;
  }

  .property__items {
    row-gap: 2.5rem;
  }

  .property__button {
    margin-top: 2.5rem;
  }

  .realtors {
    padding-bottom: 6.25rem;
  }

  .articles {
    padding-bottom: 6.25rem;
  }

  .filter__items {
    gap: 1.5rem;
  }

  .tabs-account__table tr {
    gap: 2rem;
  }
}

@media (max-width: 75em) {
  .user-header {
    padding: 1rem;
  }
}

@media (max-width: 25em) {
  .menu__body {
    padding-top: 4.4375rem;
    width: 100%;
  }
}

@media (max-width: 91.875em) {
  .features {
    gap: 1rem;
  }

  .gallery__container {
    -ms-grid-columns: 31.25rem auto;
    grid-template-columns: 31.25rem auto;
    gap: 0.9375rem;
  }

  .gallery__big-ibg {
    aspect-ratio: 684/500;
  }

  .swiper-gallery__slide {
    gap: 0.9375rem;
  }

  .sidebar-info__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .new__items {
    gap: 0.9375rem;
  }

  .item-new {
    padding: 0.625rem 0.9375rem;
    gap: 0.75rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .item-new__number {
    font-size: 2.875rem;
  }

  .item-new__text {
    font-size: 0.8125rem;
  }
}

@media (max-width: 68.75em) {
  .form-hero {
    width: 80%;
  }
}

@media (max-width: 61.99875em) {
  .button--add {
    border-radius: 50%;
    aspect-ratio: 1/1;
  }

  .button--add span {
    display: none;
  }

  .checkbox {
    padding: 0;
    border: 0;
  }

  .header__actions {
    gap: 0.9375rem;
  }

  .header__button {
    width: 2.875rem;
    aspect-ratio: 1/1;
    -ms-flex-preferred-size: 2.875rem;
        flex-basis: 2.875rem;
    height: 2.875rem;
  }

  .menu__link {
    padding: 1.125rem 1.375rem;
  }

  .user-header__name {
    font-size: 0.875rem;
  }

  .user-header__sub-menu {
    padding: 0.625rem;
  }

  .footer__column {
    row-gap: 1.875rem;
  }

  .form-hero {
    width: 100%;
  }

  .gallery__container {
    -ms-grid-columns: 28.125rem auto;
    grid-template-columns: 28.125rem auto;
  }

  .swiper-gallery__slide {
    gap: 0.625rem;
  }

  .info__content {
    gap: 1.875rem;
  }

  .filter {
    padding-bottom: 1.875rem;
    overflow: auto;
    top: 0;
    height: 100%;
    z-index: 155;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    width: 60%;
    right: -100%;
  }

  .filter._show {
    right: 0;
  }

  .filter__container {
    padding-top: 3.9375rem;
  }

  .filter__items {
    gap: 0.625rem;
  }

  .filter__items {
    gap: 0.9375rem;
  }

  .filter__items {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }

  .new__items {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }

  .item-new {
    gap: 1.5rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 0.625rem 1.5625rem;
  }

  .item-new__number {
    font-size: 3.375rem;
  }

  .item-new__text {
    font-size: 0.9375rem;
  }

  .form-settings__content {
    gap: 1.25rem;
  }
}

@media (max-width: 61.99875em) and (max-width: 47.99875em) and (max-width: 23.4375em) {
  .user-header__name {
    font-size: 0.875rem;
  }
}

@media (max-width: 48.375em) {
  .property__item {
    display: none;
  }

  .property__item:nth-child(1),
  .property__item:nth-child(2),
  .property__item:nth-child(3) {
    display: -ms-grid;
    display: grid;
  }
}

@media (max-width: 47.99875em) {
  .checkbox__label {
    font-size: 0.75rem;
  }

  .checkbox__icon {
    width: 1rem;
    height: 1rem;
    -ms-flex-preferred-size: 1rem;
        flex-basis: 1rem;
  }

  .checkbox__icon img {
    width: 100%;
  }

  .options-hero {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
  }

  .options-hero__input {
    margin: 1rem 0 0.625rem 0;
  }

  .options-filter__input {
    margin: 1rem 0 0.625rem 0;
  }

  .popup-log__tabs {
    width: 100%;
    max-width: 100%;
  }

  .paging__item:not(:nth-child(1)) {
    display: none;
  }

  .paging__item:nth-child(2) {
    display: inline-block;
  }

  .paging__item:nth-child(7) {
    display: inline-block;
  }

  .paging__item:last-child {
    display: inline-block;
  }

  .paging__button {
    display: none;
  }

  .lock .header {
    pointer-events: all;
  }

  .header__log {
    color: #212121;
    font-weight: 700;
    line-height: 120%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 0.75rem 0rem;
  }

  .menu__body {
    height: 100%;
    overflow: auto;
    padding: 5.6875rem 1.25rem 1.875rem 1.25rem;
    width: 61.333333%;
    /* 230/375 */
    height: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    background: #fff;
  }

  .menu-open .menu__body {
    right: 0;
  }

  .menu__body::before {
    z-index: 30;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    content: "";
    position: fixed;
    width: 100%;
    height: 3.9375rem;
    top: 0;
    left: 0;
    background-color: #fff;
  }

  .menu-open .menu__body::before {
    left: 0;
  }

  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .menu__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .menu__link {
    padding: 0.75rem 0rem 0.75rem 0.3125rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    color: #212121;
    font-weight: 700;
    line-height: 120%;
  }

  .menu__link::before {
    font-size: 1rem;
  }

  .sub-menu {
    justify-items: end;
    padding-top: 0.75rem;
    pointer-events: all;
    position: relative;
  }

  .sub-menu__block {
    justify-items: end;
    width: 100%;
  }

  .sub-menu__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    background: rgba(120, 73, 232, 0.05);
    padding: 0.625rem;
    border-radius: 0.1875rem;
  }

  .sub-menu__title:not(:last-child) {
    margin-bottom: 0.5rem;
  }

  .sub-menu__list {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
    justify-items: end;
  }

  .sub-menu__item {
    border-radius: 0.1875rem;
    width: 100%;
    background: rgba(120, 73, 232, 0.1);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 0.5rem;
    text-align: right;
  }

  .sub-menu__link {
    color: #212121;
    padding: 0.625rem;
  }

  .user-header {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    padding-bottom: 0.9375rem;
    padding-top: 0.9375rem;
  }

  .icon-menu {
    display: block;
    position: relative;
    width: 1.125rem;
    height: 0.9375rem;
    -ms-flex-preferred-size: 1.125rem;
        flex-basis: 1.125rem;
    z-index: 23;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: #212121;
    border-radius: 0.125rem;
  }

  .icon-menu::before {
    top: 0.0625rem;
  }

  .icon-menu::after {
    bottom: 0.03125rem;
    width: 0.625rem;
  }

  .icon-menu span {
    width: 0.875rem;
    bottom: 0.375rem;
  }

  .menu-open .icon-menu span {
    width: 0;
  }

  .menu-open .icon-menu::before,
  .menu-open .icon-menu::after {
    width: 100%;
  }

  .menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  .footer__container {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
    row-gap: 0rem;
  }

  .footer__column {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
    row-gap: 0rem;
  }

  .footer__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .form-hero {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .form-hero__input {
    margin-top: 1rem;
    margin-bottom: 0.625rem;
  }

  .form-hero__button {
    width: 100%;
  }

  .articles__container {
    display: -ms-grid;
    display: grid;
    gap: 3.5rem;
  }

  .articles__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .articles__row:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .articles__image-ibg {
    width: 100%;
  }

  .articles__content {
    padding: 2.5rem 1rem 0 1rem;
  }

  .gallery__container {
    overflow: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0rem;
  }

  .gallery__big-ibg {
    aspect-ratio: 327/220;
    pointer-events: none;
  }

  .gallery__mobile .swiper-gallery__image-ibg {
    aspect-ratio: 327/220;
  }

  .swiper-gallery {
    display: none;
  }

  .swiper-gallery__image-ibg {
    pointer-events: none;
  }

  .swiper-gallery__image-ibg {
    aspect-ratio: 371/216;
  }

  .info__content {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }

  .info__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .main-info__features {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    padding: 0rem 1.875rem;
  }

  .sidebar-info__block {
    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;
  }

  .sidebar-info__features {
    display: none;
  }

  .sidebar-info__actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .sidebar-info__registration {
    display: none;
  }

  .sidebar-info__top {
    display: none;
  }

  .item-filter__button._spoller-active {
    border: 1px solid rgba(33, 33, 33, 0.2);
    background: #f1f1f1;
  }

  .item-filter__button._spoller-active::before {
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
  }

  .item-filter__body {
    margin-top: 0.625rem;
    border: none;
  }

  .new__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .item-new {
    padding: 0.4375rem 1.25rem;
  }

  .item-new__number {
    font-size: 2.25rem;
  }

  .tabs-account__links {
    bottom: 0.3125rem;
  }

  .tabs-account__table {
    display: none;
  }

  .tabs-account__table tr {
    gap: 0.9375rem;
  }

  .spollers-account__button {
    width: 100%;
  }

  .settings-tabs__navigation {
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }

  .settings-tabs__content {
    display: -ms-grid;
    display: grid;
  }

  .form-settings {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }

  .form-settings__content {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }

  .form-settings__textarea {
    aspect-ratio: 359/144;
  }
}

@media (max-width: 47.99875em) and (max-width: 23.4375em) {
  .header__log {
    font-size: 1.25rem;
  }

  .menu__link {
    font-size: 1.25rem;
  }

  .sub-menu__title {
    font-size: 1rem;
  }

  .sub-menu__link {
    font-size: 1rem;
  }

  .user-header__avatar-ibg {
    width: 2rem;
  }

  .user-header__avatar-ibg {
    height: 2rem;
  }

  .footer__title {
    font-size: 1rem;
  }

  .footer__link {
    font-size: 0.75rem;
  }

  .gallery__big-ibg {
    width: 20.4375rem;
  }

  .gallery__mobile .swiper-gallery__image-ibg {
    width: 20.4375rem;
  }

  .sidebar-info__block {
    margin-bottom: 0.75rem;
  }

  .tabs-account__links {
    right: 1.875rem;
  }
}

@media (max-width: 47.99875em) and (any-hover: none) {
  .icon-menu {
    cursor: default;
  }
}

@media (max-width: 34.375em) {
  .details__choose {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }
}

@media (max-width: 31.25em) {
  .button--add {
    display: none;
  }

  .sidebar-info__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 30.0625em) {
  .footer {
    padding-bottom: 1.5625rem;
  }
}

@media (max-width: 29.99875em) {
  .popup-log__wrapper {
    padding: 0.9375rem;
  }

  .popup-log__form {
    padding: 1.25rem;
  }

  .features__text {
    font-size: 0.8125rem;
  }

  .logo__text {
    display: none;
  }

  .footer {
    padding-bottom: 4.625rem;
  }

  .hero__content {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
  }

  .property__items {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }

  .main-info__fee {
    display: none;
  }

  .property-info__items {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
    row-gap: 0.9375rem;
  }

  .filter {
    width: 70%;
  }

  .new__items {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
    gap: 0.75rem;
  }

  .item-new {
    gap: 0.9375rem;
  }

  .details__button {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .spollers-account__title {
    -ms-grid-columns: 20% auto 10%;
    grid-template-columns: 20% auto 10%;
  }

  .spollers-account__row {
    -ms-grid-columns: 20% 40% 30% 10%;
    grid-template-columns: 20% 40% 30% 10%;
  }

  .form-settings__button {
    width: 100%;
  }
}

@media (max-width: 23.4375em) {
  .page-order .page-order__property:last-child {
    padding-bottom: 3.125rem;
  }

  .paging {
    margin-top: 2.625rem;
  }

  .paging {
    margin-bottom: 2.6875rem;
  }

  .footer {
    padding-top: 2rem;
  }

  .hero__content {
    padding-top: 1.25rem;
  }

  .hero__content {
    padding-bottom: 1.25rem;
  }

  .property {
    padding-top: 3.5rem;
  }

  .property__items {
    row-gap: 1.5rem;
  }

  .property__button {
    margin-top: 3rem;
  }

  .realtors {
    padding-bottom: 2.5rem;
  }

  .articles {
    padding-bottom: 2.5rem;
  }

  .info {
    padding-top: 1.5rem;
  }

  .main-info__head {
    padding-bottom: 1.5rem;
  }

  .main-info__title {
    font-size: 1.5rem;
  }

  .property-info__title {
    margin-bottom: 1.125rem;
  }

  .additional-info__title {
    font-size: 1rem;
  }

  .sidebar-info__price {
    font-size: 1.25rem;
  }

  .sidebar-info__price span {
    font-size: 2rem;
  }

  .sidebar-info__top {
    margin-bottom: 1.5rem;
  }

  .person-info {
    margin-bottom: 1.5rem;
  }

  .new {
    padding-bottom: 4.9375rem;
  }

  .account__head {
    margin-bottom: 1rem;
  }

  .tabs-account__paging {
    margin-bottom: 5rem;
  }

  .tabs-account__table th {
    font-size: 0.75rem;
  }

  .tabs-account__table td {
    font-size: 0.875rem;
  }

  .spollers-account__label {
    font-size: 0.75rem;
  }

  .spollers-account__value {
    font-size: 0.875rem;
  }

  .settings {
    padding-top: 5.625rem;
  }

  .settings__title {
    margin-bottom: 1rem;
  }

  .form-settings__photo {
    margin-bottom: 3rem;
  }

  .form-settings__item:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 23.125em) {
  .features {
    gap: 0.625rem;
  }
}

@media (max-width: 23.375em) {
  .gallery__big-ibg {
    width: 17.5rem;
  }

  .gallery__mobile .swiper-gallery__image-ibg {
    width: 17.5rem;
  }
}

@media (max-width: 23.43625em) {
  .filter {
    width: 100%;
  }
}

@media (min-width: 23.4375em) and (max-width: 91.875em) {
@supports (padding-bottom: clamp( 1.875rem , 3.5530821918rem  +  -1.8264840183vw , 3.125rem )) {
    .page-order .page-order__property:last-child {
      padding-bottom: clamp( 1.875rem , 3.5530821918rem  +  -1.8264840183vw , 3.125rem );
    }
}

@supports not (padding-bottom: clamp( 1.875rem , 3.5530821918rem  +  -1.8264840183vw , 3.125rem )) {
    .page-order .page-order__property:last-child {
      padding-bottom: calc(3.125rem + -1.25 * (100vw - 23.4375rem) / 68.4375);
    }
}

@supports (margin-top: clamp( 2.625rem , 2.154109589rem  +  2.0091324201vw , 4rem )) {
    .paging {
      margin-top: clamp( 2.625rem , 2.154109589rem  +  2.0091324201vw , 4rem );
    }
}

@supports not (margin-top: clamp( 2.625rem , 2.154109589rem  +  2.0091324201vw , 4rem )) {
    .paging {
      margin-top: calc(2.625rem + 1.375 * (100vw - 23.4375rem) / 68.4375);
    }
}

@supports (margin-bottom: clamp( 1.875rem , 2.9657534247rem  +  -1.1872146119vw , 2.6875rem )) {
    .paging {
      margin-bottom: clamp( 1.875rem , 2.9657534247rem  +  -1.1872146119vw , 2.6875rem );
    }
}

@supports not (margin-bottom: clamp( 1.875rem , 2.9657534247rem  +  -1.1872146119vw , 2.6875rem )) {
    .paging {
      margin-bottom: calc(2.6875rem + -0.8125 * (100vw - 23.4375rem) / 68.4375);
    }
}

@supports (padding-top: clamp( 2rem , 1.6147260274rem  +  1.6438356164vw , 3.125rem )) {
    .footer {
      padding-top: clamp( 2rem , 1.6147260274rem  +  1.6438356164vw , 3.125rem );
    }
}

@supports not (padding-top: clamp( 2rem , 1.6147260274rem  +  1.6438356164vw , 3.125rem )) {
    .footer {
      padding-top: calc(2rem + 1.125 * (100vw - 23.4375rem) / 68.4375);
    }
}

@supports (padding-top: clamp( 1.25rem , -0.676369863rem  +  8.2191780822vw , 6.875rem )) {
    .hero__content {
      padding-top: clamp( 1.25rem , -0.676369863rem  +  8.2191780822vw , 6.875rem );
    }
}

@supports not (padding-top: clamp( 1.25rem , -0.676369863rem  +  8.2191780822vw , 6.875rem )) {
    .hero__content {
      padding-top: calc(1.25rem + 5.625 * (100vw - 23.4375rem) / 68.4375);
    }
}

@supports (padding-bottom: clamp( 1.25rem , -0.676369863rem  +  8.2191780822vw , 6.875rem )) {
    .hero__content {
      padding-bottom: clamp( 1.25rem , -0.676369863rem  +  8.2191780822vw , 6.875rem );
    }
}

@supports not (padding-bottom: clamp( 1.25rem , -0.676369863rem  +  8.2191780822vw , 6.875rem )) {
    .hero__content {
      padding-bottom: calc(1.25rem + 5.625 * (100vw - 23.4375rem) / 68.4375);
    }
}

@supports (padding-top: clamp( 1.5rem , 1.2859589041rem  +  0.9132420091vw , 2.125rem )) {
    .info {
      padding-top: clamp( 1.5rem , 1.2859589041rem  +  0.9132420091vw , 2.125rem );
    }
}

@supports not (padding-top: clamp( 1.5rem , 1.2859589041rem  +  0.9132420091vw , 2.125rem )) {
    .info {
      padding-top: calc(1.5rem + 0.625 * (100vw - 23.4375rem) / 68.4375);
    }
}

@supports (padding-bottom: clamp( 1rem , 1.6712328767rem  +  -0.7305936073vw , 1.5rem )) {
    .main-info__head {
      padding-bottom: clamp( 1rem , 1.6712328767rem  +  -0.7305936073vw , 1.5rem );
    }
}

@supports not (padding-bottom: clamp( 1rem , 1.6712328767rem  +  -0.7305936073vw , 1.5rem )) {
    .main-info__head {
      padding-bottom: calc(1.5rem + -0.5 * (100vw - 23.4375rem) / 68.4375);
    }
}

@supports (font-size: clamp( 1.5rem , 1.3287671233rem  +  0.7305936073vw , 2rem )) {
    .main-info__title {
      font-size: clamp( 1.5rem , 1.3287671233rem  +  0.7305936073vw , 2rem );
    }
}

@supports not (font-size: clamp( 1.5rem , 1.3287671233rem  +  0.7305936073vw , 2rem )) {
    .main-info__title {
      font-size: calc(1.5rem + 0.5 * (100vw - 23.4375rem) / 68.4375);
    }
}

@supports (margin-bottom: clamp( 0.75rem , 1.2534246575rem  +  -0.5479452055vw , 1.125rem )) {
    .property-info__title {
      margin-bottom: clamp( 0.75rem , 1.2534246575rem  +  -0.5479452055vw , 1.125rem );
    }
}

@supports not (margin-bottom: clamp( 0.75rem , 1.2534246575rem  +  -0.5479452055vw , 1.125rem )) {
    .property-info__title {
      margin-bottom: calc(1.125rem + -0.375 * (100vw - 23.4375rem) / 68.4375);
    }
}

@supports (font-size: clamp( 1rem , 0.8287671233rem  +  0.7305936073vw , 1.5rem )) {
    .additional-info__title {
      font-size: clamp( 1rem , 0.8287671233rem  +  0.7305936073vw , 1.5rem );
    }
}

@supports not (font-size: clamp( 1rem , 0.8287671233rem  +  0.7305936073vw , 1.5rem )) {
    .additional-info__title {
      font-size: calc(1rem + 0.5 * (100vw - 23.4375rem) / 68.4375);
    }
}

@supports (font-size: clamp( 1.25rem , 1.0359589041rem  +  0.9132420091vw , 1.875rem )) {
    .sidebar-info__price {
      font-size: clamp( 1.25rem , 1.0359589041rem  +  0.9132420091vw , 1.875rem );
    }
}

@supports not (font-size: clamp( 1.25rem , 1.0359589041rem  +  0.9132420091vw , 1.875rem )) {
    .sidebar-info__price {
      font-size: calc(1.25rem + 0.625 * (100vw - 23.4375rem) / 68.4375);
    }
}

@supports (font-size: clamp( 2rem , 1.9143835616rem  +  0.3652968037vw , 2.25rem )) {
    .sidebar-info__price span {
      font-size: clamp( 2rem , 1.9143835616rem  +  0.3652968037vw , 2.25rem );
    }
}

@supports not (font-size: clamp( 2rem , 1.9143835616rem  +  0.3652968037vw , 2.25rem )) {
    .sidebar-info__price span {
      font-size: calc(2rem + 0.25 * (100vw - 23.4375rem) / 68.4375);
    }
}

@supports (margin-bottom: clamp( 1.5rem , 1.3287671233rem  +  0.7305936073vw , 2rem )) {
    .sidebar-info__top {
      margin-bottom: clamp( 1.5rem , 1.3287671233rem  +  0.7305936073vw , 2rem );
    }
}

@supports not (margin-bottom: clamp( 1.5rem , 1.3287671233rem  +  0.7305936073vw , 2rem )) {
    .sidebar-info__top {
      margin-bottom: calc(1.5rem + 0.5 * (100vw - 23.4375rem) / 68.4375);
    }
}

@supports (margin-bottom: clamp( 1.5rem , 1.3287671233rem  +  0.7305936073vw , 2rem )) {
    .person-info {
      margin-bottom: clamp( 1.5rem , 1.3287671233rem  +  0.7305936073vw , 2rem );
    }
}

@supports not (margin-bottom: clamp( 1.5rem , 1.3287671233rem  +  0.7305936073vw , 2rem )) {
    .person-info {
      margin-bottom: calc(1.5rem + 0.5 * (100vw - 23.4375rem) / 68.4375);
    }
}

@supports (padding-bottom: clamp( 4.9375rem , 4.6378424658rem  +  1.2785388128vw , 5.8125rem )) {
    .new {
      padding-bottom: clamp( 4.9375rem , 4.6378424658rem  +  1.2785388128vw , 5.8125rem );
    }
}

@supports not (padding-bottom: clamp( 4.9375rem , 4.6378424658rem  +  1.2785388128vw , 5.8125rem )) {
    .new {
      padding-bottom: calc(4.9375rem + 0.875 * (100vw - 23.4375rem) / 68.4375);
    }
}

@supports (margin-bottom: clamp( 1rem , 0.7003424658rem  +  1.2785388128vw , 1.875rem )) {
    .account__head {
      margin-bottom: clamp( 1rem , 0.7003424658rem  +  1.2785388128vw , 1.875rem );
    }
}

@supports not (margin-bottom: clamp( 1rem , 0.7003424658rem  +  1.2785388128vw , 1.875rem )) {
    .account__head {
      margin-bottom: calc(1rem + 0.875 * (100vw - 23.4375rem) / 68.4375);
    }
}

@supports (margin-bottom: clamp( 3.5rem , 5.5136986301rem  +  -2.1917808219vw , 5rem )) {
    .tabs-account__paging {
      margin-bottom: clamp( 3.5rem , 5.5136986301rem  +  -2.1917808219vw , 5rem );
    }
}

@supports not (margin-bottom: clamp( 3.5rem , 5.5136986301rem  +  -2.1917808219vw , 5rem )) {
    .tabs-account__paging {
      margin-bottom: calc(5rem + -1.5 * (100vw - 23.4375rem) / 68.4375);
    }
}

@supports (font-size: clamp( 0.75rem , 0.6643835616rem  +  0.3652968037vw , 1rem )) {
    .tabs-account__table th {
      font-size: clamp( 0.75rem , 0.6643835616rem  +  0.3652968037vw , 1rem );
    }
}

@supports not (font-size: clamp( 0.75rem , 0.6643835616rem  +  0.3652968037vw , 1rem )) {
    .tabs-account__table th {
      font-size: calc(0.75rem + 0.25 * (100vw - 23.4375rem) / 68.4375);
    }
}

@supports (font-size: clamp( 0.875rem , 0.8321917808rem  +  0.1826484018vw , 1rem )) {
    .tabs-account__table td {
      font-size: clamp( 0.875rem , 0.8321917808rem  +  0.1826484018vw , 1rem );
    }
}

@supports not (font-size: clamp( 0.875rem , 0.8321917808rem  +  0.1826484018vw , 1rem )) {
    .tabs-account__table td {
      font-size: calc(0.875rem + 0.125 * (100vw - 23.4375rem) / 68.4375);
    }
}

@supports (padding-top: clamp( 4.375rem , 6.0530821918rem  +  -1.8264840183vw , 5.625rem )) {
    .settings {
      padding-top: clamp( 4.375rem , 6.0530821918rem  +  -1.8264840183vw , 5.625rem );
    }
}

@supports not (padding-top: clamp( 4.375rem , 6.0530821918rem  +  -1.8264840183vw , 5.625rem )) {
    .settings {
      padding-top: calc(5.625rem + -1.25 * (100vw - 23.4375rem) / 68.4375);
    }
}

@supports (margin-bottom: clamp( 1rem , 0.7003424658rem  +  1.2785388128vw , 1.875rem )) {
    .settings__title {
      margin-bottom: clamp( 1rem , 0.7003424658rem  +  1.2785388128vw , 1.875rem );
    }
}

@supports not (margin-bottom: clamp( 1rem , 0.7003424658rem  +  1.2785388128vw , 1.875rem )) {
    .settings__title {
      margin-bottom: calc(1rem + 0.875 * (100vw - 23.4375rem) / 68.4375);
    }
}

@supports (margin-bottom: clamp( 1.5625rem , 3.4922945205rem  +  -2.100456621vw , 3rem )) {
    .form-settings__photo {
      margin-bottom: clamp( 1.5625rem , 3.4922945205rem  +  -2.100456621vw , 3rem );
    }
}

@supports not (margin-bottom: clamp( 1.5625rem , 3.4922945205rem  +  -2.100456621vw , 3rem )) {
    .form-settings__photo {
      margin-bottom: calc(3rem + -1.4375 * (100vw - 23.4375rem) / 68.4375);
    }
}

@supports (margin-bottom: clamp( 1.125rem , 1.6284246575rem  +  -0.5479452055vw , 1.5rem )) {
    .form-settings__item:not(:last-child) {
      margin-bottom: clamp( 1.125rem , 1.6284246575rem  +  -0.5479452055vw , 1.5rem );
    }
}

@supports not (margin-bottom: clamp( 1.125rem , 1.6284246575rem  +  -0.5479452055vw , 1.5rem )) {
    .form-settings__item:not(:last-child) {
      margin-bottom: calc(1.5rem + -0.375 * (100vw - 23.4375rem) / 68.4375);
    }
}
}

@media (max-width: 47.99875em) and (min-width: 47.99875em) {
  .header__log {
    font-size: 1.875rem;
  }

  .menu__link {
    font-size: 1.875rem;
  }

  .sub-menu__title {
    font-size: 1.25rem;
  }

  .sub-menu__link {
    font-size: 1.375rem;
  }

  .footer__title {
    font-size: 1.25rem;
  }

  .footer__link {
    font-size: 1rem;
  }

  .gallery__big-ibg {
    width: 39.375rem;
  }

  .gallery__mobile .swiper-gallery__image-ibg {
    width: 39.375rem;
  }

  .sidebar-info__block {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 47.99875em) and (min-width: 23.4375em) and (max-width: 47.99875em) {
@supports (font-size: clamp( 1.25rem , 0.6535956028rem  +  2.5446587613vw , 1.875rem )) {
    .header__log {
      font-size: clamp( 1.25rem , 0.6535956028rem  +  2.5446587613vw , 1.875rem );
    }
}

@supports not (font-size: clamp( 1.25rem , 0.6535956028rem  +  2.5446587613vw , 1.875rem )) {
    .header__log {
      font-size: calc(1.25rem + 0.625 * (100vw - 23.4375rem) / 24.56125);
    }
}

@supports (font-size: clamp( 1.25rem , 0.6535956028rem  +  2.5446587613vw , 1.875rem )) {
    .menu__link {
      font-size: clamp( 1.25rem , 0.6535956028rem  +  2.5446587613vw , 1.875rem );
    }
}

@supports not (font-size: clamp( 1.25rem , 0.6535956028rem  +  2.5446587613vw , 1.875rem )) {
    .menu__link {
      font-size: calc(1.25rem + 0.625 * (100vw - 23.4375rem) / 24.56125);
    }
}

@supports (font-size: clamp( 1rem , 0.7614382411rem  +  1.0178635045vw , 1.25rem )) {
    .sub-menu__title {
      font-size: clamp( 1rem , 0.7614382411rem  +  1.0178635045vw , 1.25rem );
    }
}

@supports not (font-size: clamp( 1rem , 0.7614382411rem  +  1.0178635045vw , 1.25rem )) {
    .sub-menu__title {
      font-size: calc(1rem + 0.25 * (100vw - 23.4375rem) / 24.56125);
    }
}

@supports (font-size: clamp( 1rem , 0.6421573617rem  +  1.5267952568vw , 1.375rem )) {
    .sub-menu__link {
      font-size: clamp( 1rem , 0.6421573617rem  +  1.5267952568vw , 1.375rem );
    }
}

@supports not (font-size: clamp( 1rem , 0.6421573617rem  +  1.5267952568vw , 1.375rem )) {
    .sub-menu__link {
      font-size: calc(1rem + 0.375 * (100vw - 23.4375rem) / 24.56125);
    }
}

@supports (font-size: clamp( 1rem , 0.7614382411rem  +  1.0178635045vw , 1.25rem )) {
    .footer__title {
      font-size: clamp( 1rem , 0.7614382411rem  +  1.0178635045vw , 1.25rem );
    }
}

@supports not (font-size: clamp( 1rem , 0.7614382411rem  +  1.0178635045vw , 1.25rem )) {
    .footer__title {
      font-size: calc(1rem + 0.25 * (100vw - 23.4375rem) / 24.56125);
    }
}

@supports (font-size: clamp( 0.75rem , 0.5114382411rem  +  1.0178635045vw , 1rem )) {
    .footer__link {
      font-size: clamp( 0.75rem , 0.5114382411rem  +  1.0178635045vw , 1rem );
    }
}

@supports not (font-size: clamp( 0.75rem , 0.5114382411rem  +  1.0178635045vw , 1rem )) {
    .footer__link {
      font-size: calc(0.75rem + 0.25 * (100vw - 23.4375rem) / 24.56125);
    }
}

@supports (width: clamp( 20.4375rem , 2.3664467657rem  +  77.1031604662vw , 39.375rem )) {
    .gallery__big-ibg {
      width: clamp( 20.4375rem , 2.3664467657rem  +  77.1031604662vw , 39.375rem );
    }
}

@supports not (width: clamp( 20.4375rem , 2.3664467657rem  +  77.1031604662vw , 39.375rem )) {
    .gallery__big-ibg {
      width: calc(20.4375rem + 18.9375 * (100vw - 23.4375rem) / 24.56125);
    }
}

@supports (width: clamp( 20.4375rem , 2.3664467657rem  +  77.1031604662vw , 39.375rem )) {
    .gallery__mobile .swiper-gallery__image-ibg {
      width: clamp( 20.4375rem , 2.3664467657rem  +  77.1031604662vw , 39.375rem );
    }
}

@supports not (width: clamp( 20.4375rem , 2.3664467657rem  +  77.1031604662vw , 39.375rem )) {
    .gallery__mobile .swiper-gallery__image-ibg {
      width: calc(20.4375rem + 18.9375 * (100vw - 23.4375rem) / 24.56125);
    }
}

@supports (margin-bottom: clamp( 0.75rem , 0.0343147234rem  +  3.0535905135vw , 1.5rem )) {
    .sidebar-info__block {
      margin-bottom: clamp( 0.75rem , 0.0343147234rem  +  3.0535905135vw , 1.5rem );
    }
}

@supports not (margin-bottom: clamp( 0.75rem , 0.0343147234rem  +  3.0535905135vw , 1.5rem )) {
    .sidebar-info__block {
      margin-bottom: calc(0.75rem + 0.75 * (100vw - 23.4375rem) / 24.56125);
    }
}

@supports (right: clamp( 1.875rem , 0.6821912057rem  +  5.0893175225vw , 3.125rem )) {
    .tabs-account__links {
      right: clamp( 1.875rem , 0.6821912057rem  +  5.0893175225vw , 3.125rem );
    }
}

@supports not (right: clamp( 1.875rem , 0.6821912057rem  +  5.0893175225vw , 3.125rem )) {
    .tabs-account__links {
      right: calc(1.875rem + 1.25 * (100vw - 23.4375rem) / 24.56125);
    }
}
}

@media (max-width: 61.99875em) and (min-width: 47.99875em) {
  .logo__text {
    display: none;
  }

  .sub-menu {
    padding: 0.625rem 1rem 1rem 1rem;
  }

  .sub-menu__link {
    padding: 0.5rem 0.625rem;
  }
}

@media (min-width: 47.99875em) and (min-width: 47.99875em) and (max-width: 90em) {
@supports (font-size: clamp( 0.9375rem , 0.8660754144rem  +  0.1488050951vw , 1rem )) {
    .sub-menu__title {
      font-size: clamp( 0.9375rem , 0.8660754144rem  +  0.1488050951vw , 1rem );
    }
}

@supports not (font-size: clamp( 0.9375rem , 0.8660754144rem  +  0.1488050951vw , 1rem )) {
    .sub-menu__title {
      font-size: calc(0.9375rem + 0.0625 * (100vw - 47.99875rem) / 42.00125);
    }
}

@supports (margin-bottom: clamp( 0.9375rem , -0.2767179548rem  +  2.5296866165vw , 2rem )) {
    .sub-menu__title {
      margin-bottom: clamp( 0.9375rem , -0.2767179548rem  +  2.5296866165vw , 2rem );
    }
}

@supports not (margin-bottom: clamp( 0.9375rem , -0.2767179548rem  +  2.5296866165vw , 2rem )) {
    .sub-menu__title {
      margin-bottom: calc(0.9375rem + 1.0625 * (100vw - 47.99875rem) / 42.00125);
    }
}

@supports (font-size: clamp( 0.875rem , 0.7321508288rem  +  0.2976101902vw , 1rem )) {
    .sub-menu__link {
      font-size: clamp( 0.875rem , 0.7321508288rem  +  0.2976101902vw , 1rem );
    }
}

@supports not (font-size: clamp( 0.875rem , 0.7321508288rem  +  0.2976101902vw , 1rem )) {
    .sub-menu__link {
      font-size: calc(0.875rem + 0.125 * (100vw - 47.99875rem) / 42.00125);
    }
}
}

@media (min-width: 47.99875em) and (max-width: 47.99875em) {
  .sub-menu__title {
    font-size: 0.9375rem;
  }

  .sub-menu__title {
    margin-bottom: 0.9375rem;
  }

  .sub-menu__link {
    font-size: 0.875rem;
  }
}

@media (max-width: 47.99875em) and (min-width: 23.4375em) and (max-width: 47.991875em) {
@supports (width: clamp( 2rem , 1.2244571996rem  +  3.3089826151vw , 2.8125rem )) {
    .user-header__avatar-ibg {
      width: clamp( 2rem , 1.2244571996rem  +  3.3089826151vw , 2.8125rem );
    }
}

@supports not (width: clamp( 2rem , 1.2244571996rem  +  3.3089826151vw , 2.8125rem )) {
    .user-header__avatar-ibg {
      width: calc(2rem + 0.8125 * (100vw - 23.4375rem) / 24.554375);
    }
}

@supports (height: clamp( 2rem , 1.2244571996rem  +  3.3089826151vw , 2.8125rem )) {
    .user-header__avatar-ibg {
      height: clamp( 2rem , 1.2244571996rem  +  3.3089826151vw , 2.8125rem );
    }
}

@supports not (height: clamp( 2rem , 1.2244571996rem  +  3.3089826151vw , 2.8125rem )) {
    .user-header__avatar-ibg {
      height: calc(2rem + 0.8125 * (100vw - 23.4375rem) / 24.554375);
    }
}
}

@media (max-width: 61.99875em) and (max-width: 47.99875em) and (min-width: 23.4375em) and (max-width: 47.991875em) {
@supports (font-size: clamp( 0.875rem , 0.517057169rem  +  1.5272227454vw , 1.25rem )) {
    .user-header__name {
      font-size: clamp( 0.875rem , 0.517057169rem  +  1.5272227454vw , 1.25rem );
    }
}

@supports not (font-size: clamp( 0.875rem , 0.517057169rem  +  1.5272227454vw , 1.25rem )) {
    .user-header__name {
      font-size: calc(0.875rem + 0.375 * (100vw - 23.4375rem) / 24.554375);
    }
}
}

@media (min-width: 30.0625em) and (max-width: 90em) {
@supports (padding-bottom: clamp( 1.5625rem , 0.778806048rem  +  2.6068821689vw , 3.125rem )) {
    .footer {
      padding-bottom: clamp( 1.5625rem , 0.778806048rem  +  2.6068821689vw , 3.125rem );
    }
}

@supports not (padding-bottom: clamp( 1.5625rem , 0.778806048rem  +  2.6068821689vw , 3.125rem )) {
    .footer {
      padding-bottom: calc(1.5625rem + 1.5625 * (100vw - 30.0625rem) / 59.9375);
    }
}
}

@media (min-width: 23.4375em) and (max-width: 90em) {
@supports (padding-top: clamp( 3rem , 3.676056338rem  +  -0.7511737089vw , 3.5rem )) {
    .property {
      padding-top: clamp( 3rem , 3.676056338rem  +  -0.7511737089vw , 3.5rem );
    }
}

@supports not (padding-top: clamp( 3rem , 3.676056338rem  +  -0.7511737089vw , 3.5rem )) {
    .property {
      padding-top: calc(3.5rem + -0.5 * (100vw - 23.4375rem) / 66.5625);
    }
}

@supports (row-gap: clamp( 1.5rem , 1.1478873239rem  +  1.5023474178vw , 2.5rem )) {
    .property__items {
      row-gap: clamp( 1.5rem , 1.1478873239rem  +  1.5023474178vw , 2.5rem );
    }
}

@supports not (row-gap: clamp( 1.5rem , 1.1478873239rem  +  1.5023474178vw , 2.5rem )) {
    .property__items {
      row-gap: calc(1.5rem + 1 * (100vw - 23.4375rem) / 66.5625);
    }
}

@supports (margin-top: clamp( 2.5rem , 3.176056338rem  +  -0.7511737089vw , 3rem )) {
    .property__button {
      margin-top: clamp( 2.5rem , 3.176056338rem  +  -0.7511737089vw , 3rem );
    }
}

@supports not (margin-top: clamp( 2.5rem , 3.176056338rem  +  -0.7511737089vw , 3rem )) {
    .property__button {
      margin-top: calc(3rem + -0.5 * (100vw - 23.4375rem) / 66.5625);
    }
}

@supports (padding-bottom: clamp( 2.5rem , 1.1795774648rem  +  5.6338028169vw , 6.25rem )) {
    .realtors {
      padding-bottom: clamp( 2.5rem , 1.1795774648rem  +  5.6338028169vw , 6.25rem );
    }
}

@supports not (padding-bottom: clamp( 2.5rem , 1.1795774648rem  +  5.6338028169vw , 6.25rem )) {
    .realtors {
      padding-bottom: calc(2.5rem + 3.75 * (100vw - 23.4375rem) / 66.5625);
    }
}

@supports (padding-bottom: clamp( 2.5rem , 1.1795774648rem  +  5.6338028169vw , 6.25rem )) {
    .articles {
      padding-bottom: clamp( 2.5rem , 1.1795774648rem  +  5.6338028169vw , 6.25rem );
    }
}

@supports not (padding-bottom: clamp( 2.5rem , 1.1795774648rem  +  5.6338028169vw , 6.25rem )) {
    .articles {
      padding-bottom: calc(2.5rem + 3.75 * (100vw - 23.4375rem) / 66.5625);
    }
}
}

@media (min-width: 61.99875em) and (max-width: 90em) {
@supports (gap: clamp( 0.625rem , -1.3123744476rem  +  3.1248604973vw , 1.5rem )) {
    .filter__items {
      gap: clamp( 0.625rem , -1.3123744476rem  +  3.1248604973vw , 1.5rem );
    }
}

@supports not (gap: clamp( 0.625rem , -1.3123744476rem  +  3.1248604973vw , 1.5rem )) {
    .filter__items {
      gap: calc(0.625rem + 0.875 * (100vw - 61.99875rem) / 28.00125);
    }
}
}

@media (min-width: 61.99875em) and (min-width: 61.99875em) and (max-width: 90em) {
@supports (font-size: clamp( 0.875rem , 0.5982322218rem  +  0.4464086425vw , 1rem )) {
    .item-filter__title {
      font-size: clamp( 0.875rem , 0.5982322218rem  +  0.4464086425vw , 1rem );
    }
}

@supports not (font-size: clamp( 0.875rem , 0.5982322218rem  +  0.4464086425vw , 1rem )) {
    .item-filter__title {
      font-size: calc(0.875rem + 0.125 * (100vw - 61.99875rem) / 28.00125);
    }
}
}

@media (min-width: 61.99875em) and (max-width: 61.99875em) {
  .item-filter__title {
    font-size: 0.875rem;
  }
}

@media (min-width: 47.99875em) and (max-width: 90em) {
@supports (gap: clamp( 0.9375rem , -0.2767179548rem  +  2.5296866165vw , 2rem )) {
    .tabs-account__table tr {
      gap: clamp( 0.9375rem , -0.2767179548rem  +  2.5296866165vw , 2rem );
    }
}

@supports not (gap: clamp( 0.9375rem , -0.2767179548rem  +  2.5296866165vw , 2rem )) {
    .tabs-account__table tr {
      gap: calc(0.9375rem + 1.0625 * (100vw - 47.99875rem) / 42.00125);
    }
}
}

@media (min-width: 23.4375em) and (max-width: 47.99875em) {
@supports (font-size: clamp( 0.75rem , 0.5710786808rem  +  0.7633976284vw , 0.9375rem )) {
    .spollers-account__label {
      font-size: clamp( 0.75rem , 0.5710786808rem  +  0.7633976284vw , 0.9375rem );
    }
}

@supports not (font-size: clamp( 0.75rem , 0.5710786808rem  +  0.7633976284vw , 0.9375rem )) {
    .spollers-account__label {
      font-size: calc(0.75rem + 0.1875 * (100vw - 23.4375rem) / 24.56125);
    }
}

@supports (font-size: clamp( 0.875rem , 0.7557191206rem  +  0.5089317523vw , 1rem )) {
    .spollers-account__value {
      font-size: clamp( 0.875rem , 0.7557191206rem  +  0.5089317523vw , 1rem );
    }
}

@supports not (font-size: clamp( 0.875rem , 0.7557191206rem  +  0.5089317523vw , 1rem )) {
    .spollers-account__value {
      font-size: calc(0.875rem + 0.125 * (100vw - 23.4375rem) / 24.56125);
    }
}
}

@media (any-hover: hover) {
  .button:hover {
    background-color: #4617B6;
  }

  .button--white:hover {
    color: #FFF;
    background-color: rgba(120, 73, 232, 0.4);
    border: 0.0625rem solid rgba(120, 73, 232, 0.4);
  }

  .checkbox__input:checked + .checkbox__label:hover {
    background-color: #4617B6;
  }

  .checkbox__label:hover {
    background: rgba(91, 43, 202, 0.5);
  }

  .gallery-popup__close:hover {
    background-color: rgb(255, 255, 255);
  }

  .paging__item.active:hover {
    background-color: #4617b6;
  }

  .paging__item:hover {
    color: #fff;
    background-color: rgba(120, 73, 232, 0.4);
    border: 0.0625rem solid rgba(120, 73, 232, 0.4);
  }

  .header__log:hover {
    background-color: rgba(120, 73, 232, 0.4);
  }

  .sub-menu__item:hover {
    background: rgba(120, 73, 232, 0.1);
  }

  .user-header:hover {
    background-color: #E4DBFA;
  }

  .user-header__link:hover {
    background-color: rgba(120, 73, 232, 0.2);
    color: #3200AA;
  }

  .user-header__link:hover:not(:last-child) {
    border-bottom: 0.0625rem solid #7849E8;
  }

  .user-header__link:hover img {
    -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
            transform: rotate(15deg);
  }

  .user-header__button:hover {
    background: #CA2B2B;
  }

  .footer__link:hover {
    color: #2c68f6;
    opacity: 0.7;
  }

  .item-property:hover .item-property__image-ibg::after {
    opacity: 1;
  }

  .item-property:hover .item-property__name {
    color: #7849e8;
  }

  .item-property__favorite:hover {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }

  .gallery__big-ibg:hover img {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
  }

  .gallery__big-ibg:hover::after {
    opacity: 1;
  }

  .gallery__big-ibg:hover .swiper-gallery__button {
    opacity: 1;
  }

  .swiper-gallery__image-ibg:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }

  .swiper-gallery__image-ibg:hover::after {
    opacity: 1;
  }

  .swiper-gallery__image-ibg:hover .swiper-gallery__button {
    opacity: 1;
  }

  .item-filter__button:hover {
    border: 0.0625rem solid rgba(33, 33, 33, 0.4);
  }

  .details__button:hover .button__arrow {
    -webkit-transform: translate(0.3125rem, 0);
        -ms-transform: translate(0.3125rem, 0);
            transform: translate(0.3125rem, 0);
  }

  .account__settings:hover img {
    -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
            transform: rotate(15deg);
  }

  .tabs-account__message:hover {
    color: #4617b6;
  }

  .tabs-account__link:hover {
    color: #7849e8;
  }

  .settings-tabs__title:hover {
    color: rgba(33, 33, 33, 0.5);
  }

  .settings-tabs__title._tab-active:hover {
    color: #212121;
  }

  .form-settings__icon:hover img {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
  }
}



@font-face {
	font-family: swiper-icons;
	src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
	font-weight: 400;
	font-style: normal;
}
.swiper-button-next {
  right: 0;
}
.swiper-button-prev {
  left: 0;
}
.swiper-button-next,
.swiper-button-prev {
  top: 35%;
  position: absolute;
	z-index: 10;
	cursor: pointer;
  padding: 13px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(120, 73, 232, 0.9);
  transition: all 0.3s;
  @media (any-hover: hover){
    &:hover{
      background-color: rgba(255, 255, 255, 0.25);
    }
  }
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
	color: rgba(120, 73, 232, 0.3);
	cursor: auto;
	pointer-events: none;
}
.swiper-button-next:after,
.swiper-button-prev:after {
	font-family: swiper-icons;
	font-size: 55px;
  @media (max-width: 1600px){
    font-size: 45px; 
  }
  @media (max-width: 1000px){
    font-size: 35px; 
  }
  font-weight: 800;
	text-transform: none !important;
	letter-spacing: 0;
	text-transform: none;
	font-variant: initial;
	line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
	content: "prev";
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
	content: "next";
}
