@charset "UTF-8";

@font-face {
  font-weight: 400;
  font-style: normal;
  font-family: "Roboto";
  src: url(/fonts/Roboto-Regular.woff2?73f0a88bbca1bec19fb1303c689d04c6) format("woff2"), url(/fonts/Roboto-Regular.woff?878ad7158f6fa9136d796d4bad613bc2) format("woff");
  font-display: swap;
}

@font-face {
  font-weight: 700;
  font-style: normal;
  font-family: "Roboto";
  src: url(/fonts/Roboto-Bold.woff2?15a913e1228cca9b1247b373bdf27e55) format("woff2"), url(/fonts/Roboto-Bold.woff?7bf74824d7a8b3c08fe5956f93e9ce2a) format("woff");
  font-display: swap;
}

@font-face {
  font-weight: 700;
  font-style: normal;
  font-family: "Montserrat";
  src: url(/fonts/Montserrat-Bold.woff2?e9f3813c3d7f810a6de6c38257786944) format("woff2"), url(/fonts/Montserrat-Bold.woff?27b7541c09fd8e0ba0116f2c01c96019) format("woff");
  font-display: swap;
}

html,
body {
  height: 100%;
}

html {
  box-sizing: border-box;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

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

body {
  margin: 0;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}

li {
  display: block;
}

dl {
  margin-top: 0;
  margin-bottom: 0;
}

dd {
  margin-left: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: inherit;
}

blockquote {
  margin: 0;
  padding: 0;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

strong {
  font-weight: bold;
}

figure {
  margin: 0;
}

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

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  border: 0;
}

button {
  overflow: visible;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  letter-spacing: inherit;
  text-align: inherit;
  text-transform: inherit;
  cursor: pointer;
  -webkit-font-smoothing: inherit;
}

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

textarea {
  overflow: auto;
}

::selection {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  line-height: 1.17;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.visually-hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
}

/*
Для того, чтобы футер прижимался вниз и мог тянуться:
1) Оборачиваем все в main-wrapper
2) Оборачиваем все, кроме футера в layout
*/

.layout,
.footer {
  max-width: 100%;
}

.main-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.layout {
  position: relative;
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  background-color: #f5f6fa;
}

.footer {
  flex: 0 0 auto;
}

[v-cloak] {
  visibility: hidden;
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.fade-fast-enter-active,
.fade-fast-leave-active {
  transition: .15s opacity;
}

.fade-fast-enter,
.fade-fast-leave-to {
  opacity: 0;
}

.fade-enter-active,
.fade-leave-active {
  transition: .35s opacity ease;
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%, 80%, 100% {
    box-shadow: 0 20px 0 -10px #0098ed;
  }

  40% {
    box-shadow: 0 20px 0 0 #0098ed;
  }
}

@keyframes shake {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-45deg);
  }

  50% {
    transform: rotate(0deg);
  }

  75% {
    transform: rotate(45deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes move_line {
  0% {
    margin-left: 0;
  }

  100% {
    margin-left: 90%;
  }
}

.personal-warning {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15000;
  padding: 15px 0;
  background: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.personal-warning--show {
  opacity: 1;
  visibility: visible;
}

.personal-warning__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 1350px;
  max-width: 100%;
  height: inherit;
  margin: 0 auto;
  padding: 0 30px;
  flex-wrap: nowrap;
  align-items: center;
}

@media screen and (max-width: 1400px) {
  .personal-warning__inner {
    width: 1200px;
  }
}

@media screen and (max-width: 1240px) {
  .personal-warning__inner {
    padding: 0 30px;
  }
}

@media screen and (max-width: 601px) {
  .personal-warning__inner {
    padding: 0;
  }
}

.personal-warning__text {
  color: #fff;
  font: 400 13px/1.3 "Roboto", Arial, sans-serif;
}

.personal-warning__link {
  border-bottom: 1px solid #fff;
  transition: all 0.2s;
}

.personal-warning__link:hover,
.personal-warning__link:focus {
  border-color: transparent;
  outline: none;
}

.personal-warning__btn {
  display: block;
  margin-left: 30px;
  padding: 10px 55px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font: 400 13px/1.4 "Roboto", Arial, sans-serif;
  transition: all 0.3s;
}

.personal-warning__btn:hover,
.personal-warning__btn:focus {
  background: rgba(119, 119, 119, 0.75);
  outline: none;
}

@media (max-width: 767px) {
  .personal-warning__inner {
    flex-direction: column;
  }

  .personal-warning__btn {
    margin-top: 20px;
    margin-left: 0;
  }
}

.update-warning {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  display: block;
  width: 100%;
  padding: 10px 20px;
  background: #e05252;
  background-size: cover;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

.update-warning a {
  border: 0;
  border-bottom: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  transition: border-color 0.3s;
}

.update-warning a:hover,
.update-warning a:focus {
  border-bottom-color: transparent;
  outline: none;
}

.update-warning__close {
  margin-top: 10px;
  border: 0;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
}

.update-warning__close:hover,
.update-warning__close:focus {
  color: rgba(255, 255, 255, 0.7);
  outline: none;
}

.main-input {
  max-width: 100%;
  height: 48px;
  padding: 0 20px;
  border: 1px solid #e1e2e5;
  border-radius: 3px;
  color: #303030;
  outline: none;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
  transition: .25s border-color ease;
}

.main-input:focus {
  border-color: #0098ed;
}

.main-multiselect {
  width: 200px;
  margin: 0;
}

.main-multiselect--hide-clear .multiselect-clear {
  display: none;
}

.main-multiselect .multiselect-input {
  height: 70px;
  border: 1px solid transparent;
  border-radius: 0;
  transition: .25s border-color ease;
}

.main-multiselect .multiselect-input::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 14px;
  height: 10px;
  border: 0;
  background-image: url(/images/icon-arrow-down.svg?c5943df453bb1af17dc07b77a1df88ef);
  background-position: 0 0;
  background-size: contain;
  background-repeat: no-repeat;
  filter: grayscale(100) brightness(1.3);
  transition: transform 0.25s ease, filter 0.25s ease;
}

.main-multiselect.is-open .multiselect-input {
  border-color: #0098ed;
}

.main-multiselect.is-open .multiselect-input::before {
  filter: grayscale(0) brightness(1);
}

.main-multiselect .multiselect-multiple-label,
.main-multiselect .multiselect-single-label,
.main-multiselect .multiselect-placeholder {
  position: absolute;
  top: 50%;
  display: inline-block;
  overflow: hidden;
  max-width: 100%;
  height: auto;
  padding: 0 54px 0 20px;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
  text-overflow: ellipsis;
  white-space: nowrap;
  transform: translateY(-50%);
}

.main-multiselect .multiselect-options {
  right: auto;
  bottom: -6px;
  overflow: hidden auto;
  width: 260px;
  min-width: 100%;
  margin-top: 0;
  padding: 12px 0;
  border: 0;
  border-radius: 4px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
}

.main-multiselect.is-multiple .multiselect-search input,
.main-multiselect.is-single .multiselect-search input {
  padding: 0 54px 0 20px;
}

.main-multiselect .multiselect-option {
  padding: 8px 20px;
}

.main-multiselect .multiselect-option.is-pointed {
  background-color: #fff6ed;
  color: #f00;
}

.main-multiselect .multiselect-option.is-selected {
  background-color: #fff;
}

.main-multiselect .multiselect-option.is-selected .main-multiselect__checkbox {
  border-color: #0098ed;
  background-color: #0098ed;
}

.main-multiselect .multiselect-option.is-selected.is-pointed {
  background-color: #fff6ed;
  color: #f00;
}

.main-multiselect__option {
  display: flex;
  align-items: center;
}

.main-multiselect__checkbox {
  position: relative;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  border: 2px solid #334860;
  border-radius: 3px;
  transition: .25s background-color ease, .25s border-color ease;
}

.main-multiselect__checkbox-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  fill: #fff;
  transform: translate(-50%, -50%);
}

.main-multiselect__option-text {
  overflow: hidden;
  color: #303030;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border: 0;
  border-radius: 5px;
  font-weight: 700;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
  cursor: pointer;
  transition: .25s background-color ease, .25s color ease;
}

.main-btn--blue {
  background-color: #0098ed;
  color: #fff;
}

.main-btn--blue:hover {
  background-color: #21afff;
}

.main-btn--blue:disabled {
  background-color: #919aa6;
  cursor: not-allowed;
}

.main-btn--light-blue {
  background-color: #eaf2fa;
  color: #0098ed;
}

.main-btn--light-blue:hover {
  background-color: #0098ed;
  color: #fff;
}

.main-btn--bordered {
  border: 1px solid #0098ed;
  color: #0098ed;
}

.main-btn--large {
  height: 60px;
  padding: 14px 35px;
  font-size: 18px;
}

.main-btn--small {
  padding: 6px 12px;
  font-weight: 400;
}

.main-scroll .simplebar-track.simplebar-vertical {
  width: 14px;
}

.main-scroll .simplebar-track.simplebar-vertical .simplebar-scrollbar::before {
  top: 8px;
  bottom: 8px;
}

.main-scroll .simplebar-scrollbar::before {
  right: 4px;
  left: 4px;
  background-color: #919aa6;
}

.main-scroll .simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}

.range-with-list {
  position: relative;
}

.range-with-list__open-btn {
  width: 220px;
  height: 70px;
  padding: 0 20px;
  border: 1px solid #fff;
  background-color: #fff;
  transition: .25s border-color ease;
}

.range-with-list__open-btn.active {
  border-color: #0098ed;
}

.range-with-list__options {
  position: absolute;
  top: 76px;
  left: 0;
  display: grid;
  grid-template-columns: 50% 50%;
  width: 390px;
  max-height: 390px;
  padding: 16px 20px 40px;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.range-with-list__reset-btn {
  grid-column: 1/3;
  justify-self: end;
  margin: 0 0 16px;
  color: #0098ed;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
}

.range-with-list__label {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 50%;
}

.range-with-list__input {
  width: 50%;
  padding: 0 42px;
}

.range-with-list__input:focus {
  z-index: 1;
}

.range-with-list__input:first-of-type {
  border-radius: 4px 0 0 4px;
}

.range-with-list__input:last-of-type {
  margin-left: -1px;
  border-radius: 0 4px 4px 0;
}

.range-with-list__prev-placeholder {
  position: absolute;
  top: 16px;
  left: 20px;
  color: #99a3af;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
  pointer-events: none;
}

.range-with-list__next-placeholder {
  position: absolute;
  top: 6px;
  right: 20px;
  padding: 10px 0 10px 10px;
  background-color: #fff;
  color: #303030;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
  pointer-events: none;
}

.range-with-list__values-list {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.range-with-list__value-btn {
  width: 100%;
  padding: 5px 20px;
  border-radius: 3px;
  background-color: #fff;
}

.range-with-list__value-btn:hover {
  background-color: #fff6ed;
  color: #ff8450;
}

.range-with-list__value-btn--selected {
  background-color: #fff;
  font-weight: bold;
}

.range-with-list__checkbox-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  fill: #979797;
  transition: transform 0.25s ease, fill 0.25s ease;
  transform: translateY(-50%);
}

.range-with-list__open-btn.active .range-with-list__checkbox-icon {
  fill: #0098ed;
  transform: translateY(-50%) rotate(180deg);
}

.range-with-list__placeholder {
  color: #979797;
  transition: .25s color ease;
}

.range-with-list__inputs-box {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1/3;
  margin-bottom: 15px;
}

.tooltip-wrapper {
  position: fixed;
  bottom: 40px;
  left: 0;
  z-index: 100;
  width: 100%;
  pointer-events: none;
}

.tooltip-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 1350px;
  max-width: 100%;
  height: inherit;
  margin: 0 auto;
  padding: 0 30px;
  justify-content: flex-end;
}

@media screen and (max-width: 1400px) {
  .tooltip-inner {
    width: 1200px;
  }
}

@media screen and (max-width: 1240px) {
  .tooltip-inner {
    padding: 0 30px;
  }
}

@media screen and (max-width: 601px) {
  .tooltip-inner {
    padding: 0;
  }
}

.tooltip {
  max-width: 440px;
  padding: 14px 30px;
  border-radius: 5px;
  background-color: rgba(48, 48, 48, 0.9);
  color: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
}

.tooltip--unauthorized-user {
  padding: 14px 38px;
  background-color: #d15656;
}

.tooltip--unauthorized-user .tooltip-btn {
  margin-left: 10px;
  text-decoration: underline;
}

.tooltip-btn {
  margin-left: 40px;
  color: #fff;
  pointer-events: all;
}

.tooltip-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.main-popup__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.main-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.18);
}

.main-popup {
  position: relative;
  overflow-y: auto;
  width: 700px;
  max-width: calc(100% - 60px);
  max-height: calc(100vh - 30px);
  padding: 84px 80px 80px;
  border-radius: 10px;
  background-color: #fff;
}

.main-popup--success,
.main-popup--confirm-phone {
  width: 540px;
  padding: 25px 25px 35px;
}

.main-popup__content {
  margin-top: 15px;
  color: #303030;
  line-height: 1.5;
}

.main-popup__close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  border: none;
  background-color: transparent;
  outline: none;
  cursor: pointer;
}

.main-popup__close-btn:hover .main-popup__close-icon,
.main-popup__close-btn:focus .main-popup__close-icon {
  fill: #919aa6;
}

.main-popup__close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.main-popup__close-icon {
  display: block;
  width: 18px;
  height: 18px;
  fill: #303030;
  transition: .25s fill ease;
}

.main-popup__title {
  color: #303030;
  font-weight: 700;
  font-size: 42px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.19;
  width: calc(100% - 30px);
  color: #303030;
}

@media screen and (max-width: 1240px) {
  .main-popup__title {
    font-size: 38px;
  }
}

@media screen and (max-width: 991px) {
  .main-popup__title {
    font-size: 34px;
  }
}

@media screen and (max-width: 601px) {
  .main-popup__title {
    font-size: 28px;
  }
}

.main-popup__description {
  margin-bottom: 36px;
  color: #303030;
  font: 400 16px/1.5 "Roboto", Arial, sans-serif;
}

.main-popup__description--error {
  color: #f00;
}

.main-popup__form {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .main-popup__description {
    margin-bottom: 30px;
    font-size: 14px;
  }
}

@media screen and (max-width: 601px) {
  .main-popup {
    max-width: calc(100% - 30px);
    padding: 30px;
  }

  .main-popup__close-btn {
    top: 36px;
    right: 30px;
  }
}

@media screen and (max-width: 480px) {
  .main-popup {
    max-width: calc(100% - 20px);
    padding: 20px;
  }

  .main-popup__close-btn {
    top: 26px;
    right: 20px;
  }
}

.confirm-phone-popup__btn {
  color: #0098ed;
  cursor: pointer;
  transition: color .25s ease;
}

.confirm-phone-popup__btn:hover,
.confirm-phone-popup__btn:focus {
  color: #3bb9ff;
}

.text-field__wrap {
  margin-top: 24px;
}

.text-field {
  position: relative;
  display: block;
}

.text-field--bold {
  font-weight: 700;
}

.text-field--bold .text-field__input {
  font-weight: 700;
}

.text-field--error .text-field__input {
  border-color: #f00;
}

.text-field--with-label .text-field__input {
  padding-right: 30px;
}

.text-field--left-label .text-field__input {
  padding-right: 0;
  padding-left: 50px;
}

.text-field--left-label .text-field__label {
  right: 0;
  left: 15px;
}

.text-field--with-periods .text-field__input {
  color: transparent;
}

.text-field__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.text-field__title {
  margin-bottom: 10px;
  color: #334860;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}

.text-field__star {
  color: #f00;
  font-weight: 700;
}

.text-field__right-text {
  margin-bottom: 10px;
  color: #979797;
  font-size: 14px;
  line-height: 1.4;
}

.text-field__right-text--align-right {
  text-align: right;
}

.text-field__email-validate-btn {
  color: #0098ed;
  cursor: pointer;
  transition: color 0.25s ease;
  border-bottom: 1px solid;
  line-height: 1;
}

.text-field__email-validate-btn:hover,
.text-field__email-validate-btn:focus {
  color: #3bb9ff;
}

.text-field__input {
  width: 100%;
  height: 48px;
  padding: 0 15px;
  border: 1px solid #e1e2e5;
  border-radius: 5px;
  background-color: #f2f2f2;
  color: #303030;
  font-size: 16px;
  transition: border-color 0.25s ease;
}

.text-field__input::placeholder {
  color: #979797;
}

.text-field__input:focus {
  outline: none;
}

.text-field__input:disabled {
  border-color: #ebf5ff;
  background-color: #ebf5ff;
}

.text-field__label {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.text-field__text {
  padding-top: 12px;
  color: #303030;
  font-size: 14px;
  line-height: 1.4;
}

.text-field__text--gray,
.text-field__text--light {
  color: #979797;
}

.text-field__text--flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.text-field__text--error {
  color: #f00;
}

.text-field__text--bold {
  font-weight: 600;
}

.text-field__text a {
  color: #0098ed;
  cursor: pointer;
  transition: color 0.25s ease;
}

.text-field__text a:hover,
.text-field__text a:focus {
  color: #3bb9ff;
}

.text-field__password-btn {
  position: absolute;
  top: 50%;
  right: 15px;
  display: flex;
  transform: translateY(-50%);
}

.text-field__password-btn-icon {
  opacity: 0.3;
  stroke: #334860;
  transition: opacity 0.25s ease;
}

.text-field__password-btn-icon--showed {
  opacity: 0.1;
}

.text-area {
  display: block;
}

.text-area--error .text-area__field {
  border-color: #f00;
}

.text-area__field {
  width: 100%;
  min-height: 140px;
  padding: 12px 15px;
  border: 1px solid #e1e2e5;
  border-radius: 5px;
  background: #f2f2f2;
  color: #303030;
  font-size: 16px;
  font-family: inherit;
  resize: vertical;
}

.text-area__field::placeholder {
  color: #979797;
}

.text-area__field:focus {
  outline: none;
}

.buttons-group {
  display: flex;
}

.buttons-group--wide {
  width: 100%;
}

.buttons-group--wide .buttons-group__button {
  flex-grow: 1;
}

.buttons-group--error .buttons-group__button {
  border-color: #f00;
}

.buttons-group__button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 20px;
  border: 1px solid #919aa6;
  background-color: #fff;
  color: #919aa6;
  text-align: center;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.buttons-group__button--active {
  border-style: none;
  background-color: #5696d1;
  color: #fff;
}

.buttons-group__button--active.buttons-group__button--red {
  background-color: #d15656;
}

.buttons-group__button--active.buttons-group__button--green {
  background-color: #41ae1b;
}

.buttons-group__button:focus {
  outline: none;
}

.buttons-group--small .buttons-group__button {
  position: relative;
  height: 28px;
  padding: 0 8px;
  font-weight: 400;
}

.buttons-group--small .buttons-group__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 44px;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 602px) {
  .buttons-group {
    flex-wrap: nowrap;
  }

  .buttons-group__button:first-of-type {
    border-radius: 5px 0 0 5px;
  }

  .buttons-group__button:last-of-type {
    border-radius: 0 5px 5px 0;
  }

  .buttons-group__button:not(:first-of-type) {
    border-left: none;
  }

  .buttons-group--small .buttons-group__button:first-of-type {
    border-radius: 3px 0 0 3px;
  }

  .buttons-group--small .buttons-group__button:last-of-type {
    border-radius: 0 3px 3px 0;
  }
}

@media screen and (max-width: 601px) {
  .buttons-group:not(.buttons-group--small) {
    flex-wrap: wrap;
    gap: 10px;
  }

  .buttons-group__button {
    width: 100%;
    height: 44px;
    margin: 3px 0;
    border-radius: 5px;
  }

  .buttons-group--small .buttons-group__button:not(:last-of-type) {
    margin-right: 5px;
  }
}

.check-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 20px;
  border: 1px solid #63c7ff;
  border-radius: 5px;
  color: #0098ed;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.check-button:not(:last-of-type) {
  margin-right: 10px;
}

.check-button:hover,
.check-button:focus {
  border-color: #0084ce;
  outline: none;
}

.check-button--checked {
  border-color: #0098ed;
  background-color: #0098ed;
  color: #fff;
}

.input-select .multiselect-input {
  height: 48px;
  border: 1px solid #e1e2e5;
  border-radius: 5px;
  background: #f2f2f2;
  color: #303030;
}

.input-select .multiselect-placeholder {
  color: #979797;
}

.input-select .multiselect-input::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 14px;
  height: 10px;
  border: 0;
  background-image: url(/images/icon-arrow-down.svg?c5943df453bb1af17dc07b77a1df88ef);
  background-position: 0 0;
  background-size: contain;
  background-repeat: no-repeat;
  filter: grayscale(100) brightness(1.3);
  transition: transform 0.25s ease, filter 0.25s ease;
}

.input-select.is-open .multiselect-input::before {
  filter: grayscale(0) brightness(1);
}

.input-select .multiselect-options {
  overflow: auto;
}

.input-select .multiselect-options .is-selected {
  background-color: #0098ed;
}

.input-select--no-icon .multiselect-input::before {
  display: none;
}

.input-select--error .multiselect-input {
  border-color: #f00;
}

.input-select--bold .multiselect-single-label {
  font-weight: 700;
}

.input-select--inline .multiselect-input {
  height: 1em;
  min-height: unset;
  border: none;
  background-color: transparent;
  color: #0098ed;
}

.input-select--inline .multiselect-input::before {
  right: 0;
}

.input-select--inline .multiselect-single-label {
  padding-left: 0;
  border-bottom: 1px solid;
}

.form-gallery:not(:last-child) {
  margin-bottom: 50px;
}

.form-gallery__title {
  color: #303030;
  font-weight: 700;
  font-size: 16px;
}

.form-gallery__hint {
  margin-top: 10px;
  color: #979797;
  font-size: 14px;
  line-height: 1.3;
}

.form-gallery__add-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 35px;
  border: 1px dashed #0098ed;
  border-radius: 3px;
  color: #0098ed;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.form-gallery__add-area:hover,
.form-gallery__add-area:focus,
.form-gallery__add-area--hover {
  border-color: #f00;
  color: #f00;
}

.form-gallery__add-area-title {
  display: block;
  font-weight: 700;
  font-size: 16px;
}

.form-gallery__add-area-description {
  display: block;
  width: 310px;
  max-width: 100%;
  margin-top: 10px;
  color: #979797;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
}

.form-gallery__hint ~ .form-gallery__add-area {
  margin-top: 25px;
}

.form-gallery__images-container {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 10px;
}

.form-gallery__image-wrap {
  position: relative;
  display: block;
  width: 100%;
  height: 98px;
  padding: 5px;
}

.form-gallery__image-wrap:hover {
  cursor: grab;
}

.form-gallery__image-wrap.sortable-fallback:hover,
.form-gallery__image-wrap.sortable-drag:hover,
.form-gallery__image-wrap.sortable-chosen:hover {
  cursor: grabbing;
}

.form-gallery__image {
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background-color: lightgray;
}

.form-gallery__image-delete {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background-color: rgba(48, 48, 48, 0.5);
  transition: background-color 0.25s ease;
}

.form-gallery__image-delete::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.form-gallery__image-delete:hover,
.form-gallery__image-delete:focus {
  background-color: rgba(255, 0, 0, 0.5);
}

.form-gallery__image-delete-icon {
  fill: #fff;
}

@media screen and (max-width: 768px) {
  .form-gallery__images-container {
    grid-template-columns: repeat(5, 1fr);
  }

  .form-gallery__image-wrap {
    height: calc((100vw - 100px) / 5 * 0.67);
  }
}

@media screen and (max-width: 601px) {
  .form-gallery__images-container {
    grid-template-columns: repeat(4, 1fr);
  }

  .form-gallery__image-wrap {
    height: calc((100vw - 50px) / 4 * 0.67);
  }

  .form-gallery__add-area-description {
    width: unset;
  }
}

@media screen and (max-width: 480px) {
  .form-gallery__images-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-gallery__image-wrap {
    height: calc((100vw - 50px) / 3 * 0.67);
  }

  .form-gallery__add-area {
    padding: 25px 15px;
  }
}

.checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.checkbox__checkbox {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border: 1px solid #334860;
  border-radius: 3px;
  background-color: #fff;
  cursor: pointer;
  transition: .25s background-color ease, .25s border ease;
}

.checkbox__checkbox--checked {
  border-style: none;
  background-color: #0088d4;
}

.checkbox__checkbox--checked .checkbox__checkbox-icon {
  fill: #fff;
}

.checkbox__text {
  color: #303030;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
}

.checkbox__text--bold {
  font-weight: 700;
}

.checkbox__checkbox-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  fill: #fff;
  transition: .25s fill ease;
  transform: translate(-50%, -50%);
}

.checkbox__input.focus-visible + .checkbox__checkbox {
  box-shadow: 0 0 0 2px #334860;
}

.suggest-input__wrap {
  position: relative;
}

.suggest-input {
  position: relative;
  z-index: 1;
}

.suggest-input--incorrect .suggest-input__input {
  border-color: #f00;
}

.suggest-input .autosuggest__results-container {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}

.suggest-input .autosuggest__results {
  overflow: auto;
  max-height: 300px;
  border: 1px solid #e1e2e5;
}

.suggest-input .autosuggest__results ul {
  background-color: #fff;
}

.suggest-input .autosuggest__results ul:not(:first-of-type) {
  border-top: 1px solid #e1e2e5;
}

.suggest-input .autosuggest__results-before {
  display: block;
  padding: 10px 15px;
  border-bottom: 1px solid #e1e2e5;
  font-weight: 700;
}

.suggest-input__input {
  width: 100%;
  height: 48px;
  padding: 0 15px;
  border: 1px solid #e1e2e5;
  border-radius: 5px;
  background: #f2f2f2;
  color: #303030;
  font-size: 16px;
}

.suggest-input__input::placeholder {
  color: #979797;
}

.suggest-input__input:focus {
  outline: none;
}

.suggest-input__item {
  display: block;
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.1s ease;
}

.suggest-input__item--active,
.suggest-input__item:hover,
.suggest-input__item:focus {
  background-color: #f2f2f2;
}

.suggest-input__error {
  position: absolute;
  top: calc(100% + 2px);
  color: #f00;
  font-size: 10px;
  text-transform: uppercase;
}

.fixed-list-button__wrap {
  display: inline-block;
}

@media screen and (max-width: 480px) {
  .fixed-list-button__wrap {
    display: none;
  }
}

.fixed-list-button {
  width: 208px;
  background-color: #0088d4;
  pointer-events: all;
}

.fixed-list-button__fixed-wrapper {
  position: fixed;
  bottom: 40px;
  left: 0;
  z-index: 1;
  width: 100%;
  pointer-events: none;
}

.fixed-list-button__fixed-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 1350px;
  max-width: 100%;
  height: inherit;
  margin: 0 auto;
  padding: 0 30px;
  justify-content: flex-end;
}

@media screen and (max-width: 1400px) {
  .fixed-list-button__fixed-inner {
    width: 1200px;
  }
}

@media screen and (max-width: 1240px) {
  .fixed-list-button__fixed-inner {
    padding: 0 30px;
  }
}

@media screen and (max-width: 601px) {
  .fixed-list-button__fixed-inner {
    padding: 0;
  }
}

.fixed-up-button {
  pointer-events: all;
}

@media screen and (max-width: 480px) {
  .fixed-up-button {
    display: none;
  }
}

.fixed-up-button__fixed-wrapper {
  position: fixed;
  bottom: 40px;
  left: 0;
  z-index: 1;
  width: 100%;
  pointer-events: none;
}

.fixed-up-button__fixed-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 1350px;
  max-width: 100%;
  height: inherit;
  margin: 0 auto;
  padding: 0 30px;
  justify-content: flex-end;
}

@media screen and (max-width: 1400px) {
  .fixed-up-button__fixed-inner {
    width: 1200px;
  }
}

@media screen and (max-width: 1240px) {
  .fixed-up-button__fixed-inner {
    padding: 0 30px;
  }
}

@media screen and (max-width: 601px) {
  .fixed-up-button__fixed-inner {
    padding: 0;
  }
}

.images-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(95px, 1fr));
  column-gap: 4px;
  row-gap: 4px;
  overflow: hidden;
  width: 100%;
  border-radius: 0 0 5px 5px;
}

.images-list--column {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.images-list__list-item-btn {
  position: relative;
  width: 100%;
  height: 100px;
}

.images-list__list-item-btn.focus-visible::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 0 2px #303030, inset 0 0 0 4px #fff;
}

.images-list__list-item-btn--column {
  height: auto;
}

.images-list__list-item-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.images-list-mobile {
  display: none;
  overflow-x: scroll;
  height: 250px;
  padding: 0;
  list-style-type: none;
}

.images-list-mobile__item {
  display: flex;
  flex-shrink: 0;
  width: 90%;
  height: 100%;
  margin: 0;
}

.images-list-mobile__item:not(:last-child) {
  margin-right: 10px;
}

.images-list-mobile__item--single {
  width: 100%;
}

.images-list-mobile__item-img {
  flex: 1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

@media screen and (max-width: 601px) {
  .images-list {
    display: none;
  }

  .images-list-mobile {
    display: flex;
  }
}

@media screen and (max-width: 300px) {
  .images-list-mobile__item {
    width: 270px;
    height: 180px;
  }
}

.registration-button {
  margin: 0 0 0 20px;
  padding: 12px 25px;
  border: 1px solid #0088d4;
  border-radius: 6px;
  font-weight: bold;
  background-color: #fff;
  color: #0088d4;
  transition: background-color .25s ease;
}

.registration-button:hover,
.registration-button:focus {
  border: 1px solid #0098ed;
  background-color: #0098ed;
  color: #fff;
}

.header {
  position: sticky;
  top: -101px;
  z-index: 2;
  width: 100%;
}

.header--none {
  display: none;
}

@media screen and (max-width: 601px) {
  .header {
    position: static;
  }
}

.header__top-line {
  border-bottom: 1px solid #e1e2e5;
  background-color: #fff;
}

.header__top-line-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 1350px;
  max-width: 100%;
  height: inherit;
  margin: 0 auto;
  padding: 0 30px;
  align-items: center;
  height: 100px;
}

@media screen and (max-width: 1400px) {
  .header__top-line-inner {
    width: 1200px;
  }
}

@media screen and (max-width: 1240px) {
  .header__top-line-inner {
    padding: 0 30px;
  }
}

@media screen and (max-width: 601px) {
  .header__top-line-inner {
    padding: 0;
  }
}

.header__logo-url {
  display: inline-block;
  width: 256px;
  margin-right: 52px;
  padding: 0 15px;
}

.header__navigation {
  display: flex;
  flex-grow: 1;
}

.header__main-menu {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.header__main-menu-item {
  display: inline-block;
  margin-right: 12px;
}

.header__main-menu-item:last-child {
  margin-right: 0;
}

.header__main-menu-url {
  position: relative;
  display: flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 100em;
  background-color: transparent;
  color: #0098ed;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
  transition: .25s color ease, .25s background-color ease;
}

.header__main-menu-url:hover {
  color: #d15656;
}

.header__main-menu-url:hover .header__main-menu-houses-icon {
  fill: #d15656;
}

.header__main-menu-url::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.header__main-menu-url--active {
  background-color: #303030;
  color: #fff;
}

.header__main-menu-url--active .header__main-menu-houses-icon {
  fill: #fff;
}

.header__main-menu-url--active.header__main-menu-url--profile-ads {
  background-color: #41ae1b;
}

.header__main-menu-url--active.header__main-menu-url--requests {
  background-color: #ff8450;
}

.header__main-menu-url--active.header__main-menu-url--cabinets {
  background-color: #334860;
}

.header__main-menu-url--active.header__main-menu-url--developer {
  background-color: #41ae1b;
}

.header__main-menu-url--active.header__main-menu-url--houses {
  background-color: #41ae1b;
}

.header__main-menu-url--active:hover {
  color: #fff;
}

.header__main-menu-url--active:hover .header__main-menu-houses-icon {
  fill: #fff;
}

.header__main-menu-houses-icon {
  margin: 0 5px 2px;
  fill: #0088d4;
}

.header__second-menu {
  display: flex;
  align-items: center;
  margin: 0 62px 0 auto;
  padding: 0;
  list-style-type: none;
}

.header__second-menu-item {
  display: inline-block;
  margin-right: 28px;
}

.header__second-menu-item:last-child {
  margin-right: 0;
}

.header__second-menu-url {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #0088d4;
  font: 700 16px/1 "Roboto", Arial, sans-serif;
  transition: .25s color ease;
}

.header__second-menu-url::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.header__second-menu-url:hover,
.header__second-menu-url:focus,
.header__second-menu-url--active {
  color: #d15656;
}

.header__second-menu-url:hover .header__second-menu-icon-heart,
.header__second-menu-url:focus .header__second-menu-icon-heart,
.header__second-menu-url--active .header__second-menu-icon-heart {
  fill: #d15656;
  stroke: #d15656;
}

.header__second-menu-icon-heart {
  display: block;
  margin-right: 5px;
  fill: transparent;
  stroke: #0088d4;
  transition: .25s fill ease, .25s stroke ease;
}

.header__user-box {
  position: relative;
  z-index: 2;
}

.header__profile-spoiler-btn {
  position: relative;
  display: flex;
  align-items: center;
}

.header__profile-spoiler-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.header__profile-spoiler-btn--active .header__user-profile-arrow {
  fill: #0098ed;
  transform: rotate(180deg);
}

.header__user-name {
  display: -webkit-box;
  overflow-y: hidden;
  max-width: 160px;
  margin-right: 8px;
  color: #303030;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
  word-break: break-word;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.header__user-profile-arrow {
  display: block;
  margin-right: 20px;
  fill: #979797;
  transition: .35s transform ease;
}

.header__user-avatar-box {
  overflow: hidden;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.header__user-avatar {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.header__profile-spoiler {
  position: absolute;
  right: 0;
  bottom: -14px;
  width: 208px;
  padding: 10px 20px 20px;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
}

.header__profile-menu {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.header__profile-menu-url {
  display: block;
  overflow: hidden;
  padding: 10px 0;
  color: #303030;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
  text-overflow: ellipsis;
  transition: .25s color ease;
}

.header__profile-menu-url:hover {
  color: #f00;
}

.header__filters {
  max-width: 1350px;
  margin: 0 auto;
  border-radius: 0 0 5px 5px;
  background-color: #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}

.header__filters--none {
  display: none !important;
}

.header__filters-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 1350px;
  max-width: 100%;
  height: inherit;
  margin: 0 auto;
  padding: 0 30px;
  align-items: center;
  justify-content: stretch;
  padding: 0 39px 0 2px;
}

@media screen and (max-width: 1400px) {
  .header__filters-inner {
    width: 1200px;
  }
}

@media screen and (max-width: 1240px) {
  .header__filters-inner {
    padding: 0 30px;
  }
}

@media screen and (max-width: 601px) {
  .header__filters-inner {
    padding: 0;
  }
}

.header__range {
  margin-left: -1px;
}

.header__range.active {
  z-index: 1;
}

.header__range .range-with-list__open-btn.active {
  border-color: #0098ed;
}

.header__range .range-with-list__open-btn.active:hover .range-with-list__placeholder {
  color: #0098ed;
}

.header__range .range-with-list__open-btn:hover .range-with-list__placeholder {
  color: #d15656;
}

.header__range .range-with-list__open-btn {
  border-left-color: #e1e2e5;
}

.header__range .range-with-list__open-btn.active {
  border-left-color: #0098ed;
}

.header__multiselect .multiselect-multiple-label {
  color: #303030;
}

.header__multiselect .multiselect-placeholder {
  color: #979797;
  transition: .25s color ease;
}

.header__multiselect:hover .multiselect-placeholder {
  color: #d15656;
}

.header__multiselect.is-open:hover .multiselect-placeholder {
  color: #0098ed;
}

.header-search {
  width: 300px;
}

.header-search__input {
  height: 70px;
  padding: 0 20px;
  border-style: none;
  border-left: 1px solid #e1e2e5;
  border-radius: 0;
  background-color: transparent;
}

.header__multiselect--search {
  width: 300px;
}

.header__multiselect--search .multiselect-options {
  width: 490px;
}

.header__multiselect--search .is-pointed .header__search-multiselect-option-title {
  color: #f00;
}

.header__multiselect--search .multiselect-spinner {
  display: none;
}

.header__multiselect--search .multiselect-input {
  border-left-color: #e1e2e5;
}

.header__multiselect--search .multiselect-input::before {
  display: none;
}

.header__multiselect.is-open {
  z-index: 1;
}

.header__search-multiselect-option {
  display: flex;
  flex-direction: column;
}

.header__search-multiselect-option-title {
  margin-bottom: 7px;
  color: #303030;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
}

.header__search-multiselect-option-description {
  color: #919aa6;
  font-weight: 400;
  font-size: 14px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
}

.header__search-btn {
  position: relative;
  display: inline-block;
  width: 140px;
  padding: 9px 14px;
  border-radius: 100em;
  background-color: #303030;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
  text-align: center;
  transition: .25s color ease, .25s background-color ease;
}

.header__search-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.header__search-btn--blue {
  background-color: #0088d4;
}

.header__search-preload {
  fill: #fff;
  animation: rotation 0.5s linear infinite;
}

.header__reset-btn {
  position: relative;
  display: inline-block;
  margin-right: 30px;
  color: #d15656;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
  transition: .25s color ease;
}

.header__reset-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.header__extra-filters {
  margin-right: auto;
}

.header__login-btn {
  padding: 12px 25px;
  border-radius: 6px;
  font: 700 18px/1.33 "Roboto", Arial, sans-serif;
}

.header__login-btn:hover,
.header__login-btn:focus {
  background-color: #0098ed;
  color: #fff;
}

.header__login-btn:first-child {
  margin-left: auto;
}

.header__login-btn--login {
  margin-left: auto;
  background-color: #ebf5ff;
  color: #0088d4;
}

@media screen and (max-width: 1400px) {
  .header__main-menu {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .header__logo-url {
    margin-right: 20px;
  }

  .header__second-menu {
    margin-right: 30px;
  }
}

@media screen and (max-width: 601px) {
  .header__navigation {
    display: none;
  }

  .header {
    top: -77px;
  }

  .header__top-line-inner {
    height: 72px;
  }

  .header__logo-url {
    display: none;
  }

  .header__filters-inner {
    display: none;
  }
}

.footer {
  padding: 50px 0;
  background-color: #f5f6fa;
}

.footer--main {
  margin-top: 100px;
  background-color: transparent;
}

.footer--main .footer__phone {
  color: #fff;
  font: 700 24px/1.25 "Roboto", Arial, sans-serif;
}

.footer--main .footer__email,
.footer--main .footer__policy-url {
  color: #fff;
  font: 400 18px/1.33 "Roboto", Arial, sans-serif;
}

.footer--hidden {
  display: none;
}

.footer__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 1350px;
  max-width: 100%;
  height: inherit;
  margin: 0 auto;
  padding: 0 30px;
  align-items: center;
  justify-content: space-around;
}

@media screen and (max-width: 1400px) {
  .footer__inner {
    width: 1200px;
  }
}

@media screen and (max-width: 1240px) {
  .footer__inner {
    padding: 0 30px;
  }
}

@media screen and (max-width: 601px) {
  .footer__inner {
    padding: 0;
  }
}

.footer__inner--feedback {
  flex-direction: column;
  align-items: flex-start;
}

.footer__phone {
  margin-right: 42px;
  color: #303030;
  font-weight: 700;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
  transition: .25s color ease;
}

.footer__phone:hover {
  color: #f00;
}

.footer__email {
  color: #0098ed;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
  transition: .25s color ease;
}

.footer__email:hover {
  color: #f00;
}

.footer__url {
  color: #0098ed;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
  transition: .25s color ease;
}

.footer__url:hover {
  color: #f00;
}

.footer__policy-list {
  padding: 0;
  list-style-type: none;
}

.footer__policy-item {
  display: inline-block;
}

.footer__policy-item:not(:last-child) {
  margin-right: 50px;
}

.footer__feedback-title,
.footer__feedback-list {
  padding: 0 10px;
}

.footer__feedback-title {
  color: #919aa6;
  font-weight: 600;
}

.footer__feedback-item {
  margin: 10px 0 0;
}

.footer__icon {
  margin: 0 7px 0 0;
}

@media screen and (max-width: 1240px) {
  .footer__inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer__phone {
    margin-right: 50px;
  }

  .footer__policy-list {
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .footer__policy-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer__policy-item {
    margin-top: 15px;
  }

  .footer__policy-item:not(:last-child) {
    margin-right: 0;
  }
}

@media screen and (max-width: 400px) {
  .footer__inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer__inner--feedback {
    align-items: flex-start;
  }

  .footer__phone {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .footer--main .footer__inner {
    align-items: flex-start;
  }

  .footer--main .footer__policy-list {
    align-items: flex-start;
  }

  .footer--main .footer__phone {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.extra-filters {
  position: relative;
}

.extra-filters__open-btn {
  position: relative;
  height: 70px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-left-color: #e1e2e5;
  color: #979797;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
  transition: .25s color ease;
}

.extra-filters__open-btn:hover {
  color: #d15656;
}

.extra-filters__open-btn-icon {
  margin-left: 14px;
  fill: #99a3af;
}

.extra-filters__options-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100vw;
  height: 100%;
  background-color: rgba(51, 72, 96, 0.5);
}

.extra-filters__options {
  width: 100%;
  max-height: calc(100vh - 60px);
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
}

.extra-filters__options-overflow {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 1350px;
  max-width: 100%;
  height: inherit;
  margin: 0 auto;
  padding: 0 30px;
  width: 1258px;
  margin-top: 30px;
  padding: 0 64px;
}

@media screen and (max-width: 1400px) {
  .extra-filters__options-overflow {
    width: 1200px;
  }
}

@media screen and (max-width: 1240px) {
  .extra-filters__options-overflow {
    padding: 0 30px;
  }
}

@media screen and (max-width: 601px) {
  .extra-filters__options-overflow {
    padding: 0;
  }
}

.extra-filters__section {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-column-gap: 30px;
  padding: 20px 0;
  border-bottom: 1px solid #c4c4c4;
}

.extra-filters__section:first-child {
  padding-top: 0;
}

.extra-filters__section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.extra-filters__blocks-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 30px;
}

.extra-filters__section-title {
  margin: 0;
  color: #303030;
  font-weight: 700;
  font-size: 24px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.25;
}

.extra-filters__block-title {
  margin: 0 0 5px;
  color: #303030;
  font-weight: 700;
  font-size: 18px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
}

.extra-filters__block-title--mt-20 {
  margin-top: 20px;
}

.extra-filters__block-title--mt-50 {
  margin-top: 50px;
}

.extra-filters__checkbox-label {
  padding: 5px 0;
}

.extra-filters__years {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.extra-filters__year-field {
  width: 60px;
  margin: 0 10px;
}

.extra-filters__year-field .text-field__input {
  height: 40px;
  padding: 0 10px;
}

.extra-filters__year-error {
  padding-top: 4px;
}

.extra-filters__filters-block {
  display: flex;
  flex-direction: column;
}

.extra-filters__filters-block--cols-3 {
  grid-column: span 3;
}

.extra-filters__filters-block--mb-10 {
  margin-bottom: 10px;
}

.extra-filters__filters-block--mb-20 {
  margin-bottom: 20px;
}

.extra-filters__checkbox-mark {
  display: inline-block;
  margin-left: 20px;
  background-color: transparent;
  color: #979797;
  font-weight: 700;
  font-size: 18px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
}

.extra-filters__close-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  background-color: #fff;
}

.extra-filters__close-btn-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  fill: #99a3af;
  transform: translate(-50%, -50%);
}

.extra-filters__selected-filters-number {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 0;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.23;
}

.extra-filters__selected-filters-number::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #0098ed;
  transform: translate(-50%, -50%);
}

.extra-filters__actions {
  margin-top: 20px;
  text-align: end;
}

.extra-filters__reset-btn {
  position: relative;
  display: inline-block;
  margin-right: 30px;
  color: #979797;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
  transition: .25s color ease;
}

.extra-filters__reset-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.extra-filters__search-btn {
  position: relative;
  display: inline-block;
  width: 140px;
  margin-right: 40px;
  padding: 9px 14px;
  border-radius: 100em;
  background-color: #303030;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
  text-align: center;
  transition: .25s color ease, .25s background-color ease;
}

.extra-filters__search-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.extra-filters__search-preload {
  fill: #fff;
  animation: rotation 0.5s linear infinite;
}

.apartments {
  padding: 60px 3px 0;
}

.apartments__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 1350px;
  max-width: 100%;
  height: inherit;
  margin: 0 auto;
  padding: 0 30px;
  flex-direction: column;
}

@media screen and (max-width: 1400px) {
  .apartments__inner {
    width: 1200px;
  }
}

@media screen and (max-width: 1240px) {
  .apartments__inner {
    padding: 0 30px;
  }
}

@media screen and (max-width: 601px) {
  .apartments__inner {
    padding: 0;
  }
}

.apartments__title {
  color: #303030;
  font-weight: 700;
  font-size: 42px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.19;
  margin: 0;
}

@media screen and (max-width: 1240px) {
  .apartments__title {
    font-size: 38px;
  }
}

@media screen and (max-width: 991px) {
  .apartments__title {
    font-size: 34px;
  }
}

@media screen and (max-width: 601px) {
  .apartments__title {
    font-size: 28px;
  }
}

.apartments__commission-filter {
  display: flex;
  margin: 0 auto;
  padding: 2px 2px 0;
  border-bottom: 1px solid #e5e5e5;
  list-style-type: none;
}

.apartments__commission-btn {
  margin-bottom: -2px;
  padding: 11px 5px 20px;
  color: #919aa6;
  text-align: center;
}

.apartments__commission-btn:not(:last-child) {
  margin-right: 25px;
}

.apartments__commission-btn--active {
  border-bottom: 2px solid #0088d4;
  color: #000;
}

.apartments__commission-btn .apartments__commission-btn-count {
  color: #000;
}

.apartments__commission-btn-count {
  color: #919aa6;
  font-weight: 700;
}

.mobile-apartments__btn-add {
  display: none;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  margin-right: 10px;
  padding: 17px 0;
  border-radius: 50%;
  background-color: #0088d4;
  color: #fff;
  text-align: center;
  position: absolute;
  right: 0;
}

.mobile-apartments__btn-add-icon {
  fill: #fff;
  transform: rotate(45deg);
}

.apartments__list-header {
  width: 100%;
  margin-bottom: 28px;
}

.apartments__list-header-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 30px;
  width: 100%;
  margin-bottom: 20px;
}

.apartments__banner {
  padding: 20px 40px;
  border-radius: 20px;
}

.apartments__sorting-box {
  margin-bottom: 12px;
}

.apartments__list-container {
  position: relative;
  width: 100%;
}

.apartments__list-preloader {
  position: absolute;
  top: -5px;
  left: 0;
  display: none;
  width: 100%;
  height: 2px;
}

.apartments__list-preloader--active {
  display: block;
}

.apartments__list-preloader-line {
  display: block;
  width: 10%;
  height: 100%;
  background-color: #0098ed;
  animation: 1.5s ease-in-out 0s infinite alternate move_line;
}

.apartments__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 24px;
  width: 100%;
  padding: 0;
  list-style-type: none;
}

.apartments__item {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.apartments__item-counter {
  flex-shrink: 0;
  width: 40px;
  color: #919aa6;
  font: 400 18px/1.1 "Roboto", Arial, sans-serif;
}

.apartments__preloader {
  position: relative;
  width: 100%;
}

.apartments__preloader-ball {
  position: absolute;
  top: 0;
  left: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transform: translateX(-50%) translateZ(0);
  animation: pulse 1.8s infinite ease-in-out;
  animation-delay: -0.16s;
  animation-fill-mode: both;
}

.apartments__preloader-ball::before,
.apartments__preloader-ball::after {
  content: "";
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  animation: pulse 1.8s infinite ease-in-out;
  animation-fill-mode: both;
}

.apartments__preloader-ball::before {
  left: -35px;
  animation-delay: -0.32s;
}

.apartments__preloader-ball::after {
  left: 35px;
}

.apartments__message {
  color: #979797;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .apartments__title {
    margin-left: 10px;
    font-size: 42px;
  }

  .apartments__commission-filter {
    order: 1;
    width: 100%;
    margin: 24px 0 0;
  }

  .mobile-apartments__btn-add {
    display: block;
  }

  .apartments__item {
    flex-direction: column;
    align-items: flex-end;
  }

  .apartments__mobile-item-card {
    width: 100%;
  }

  .apartments__item-counter {
    width: auto;
    margin-bottom: 5px;
  }
}

.apartment-add {
  padding: 40px 0 85px;
}

.apartment-add__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 1350px;
  max-width: 100%;
  height: inherit;
  margin: 0 auto;
  padding: 0 30px;
}

@media screen and (max-width: 1400px) {
  .apartment-add__inner {
    width: 1200px;
  }
}

@media screen and (max-width: 1240px) {
  .apartment-add__inner {
    padding: 0 30px;
  }
}

@media screen and (max-width: 601px) {
  .apartment-add__inner {
    padding: 0;
  }
}

.apartment-add__breadcrumbs {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 37px;
}

.apartment-add__breadcrumbs-item {
  display: flex;
  align-items: center;
  margin-right: 26px;
  font: 400 18px/1.1 "Roboto", Arial, sans-serif;
}

.apartment-add__breadcrumbs-url {
  color: #0098ed;
  cursor: pointer;
  transition: color 0.25s ease;
}

.apartment-add__breadcrumbs-url:hover,
.apartment-add__breadcrumbs-url:focus {
  color: #3bb9ff;
}

.apartment-add__breadcrumbs-icon {
  margin-left: 26px;
  fill: #919aa6;
}

.apartment-add__breadcrumbs-item-text {
  color: #919aa6;
}

.apartment-add__title {
  color: #303030;
  font-weight: 700;
  font-size: 42px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.19;
  margin: 0 0 40px 10px;
}

@media screen and (max-width: 1240px) {
  .apartment-add__title {
    font-size: 38px;
  }
}

@media screen and (max-width: 991px) {
  .apartment-add__title {
    font-size: 34px;
  }
}

@media screen and (max-width: 601px) {
  .apartment-add__title {
    font-size: 28px;
  }
}

.apartment-add__block {
  position: relative;
  display: grid;
  grid-template-columns: 910px 1fr;
  grid-gap: 60px;
  width: 100%;
  margin-bottom: 25px;
}

.apartment-add__block--with-card {
  display: block;
}

.apartment-add__block-anchor {
  position: absolute;
  top: -30px;
  left: 0;
  width: 0;
  height: 0;
}

.apartment-add__card {
  position: relative;
  border-radius: 10px;
  background-color: #fff;
  height: 100%;
  padding: 20px 20px 40px;
}

.apartment-add__card--accessibility {
  display: grid;
  grid-template-columns: 1fr 155px;
  grid-gap: 50px;
}

.apartment-add__card--commission {
  padding: 20px 20px 12px;
}

.apartment-add__block-info {
  padding: 30px 0 40px;
}

.apartment-add__block-info--message {
  color: #919aa6;
  font-weight: 700;
  line-height: 1.25;
}

.apartment-add__block-info--description {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.apartment-add__block-info-text {
  color: #303030;
  font-size: 14px;
  line-height: 1.29;
}

.apartment-add__block-info-images-icon {
  margin: -10px 0 20px;
  fill: #ffa250;
}

.apartment-add__card-title {
  margin-bottom: 40px;
  color: #303030;
  font-size: 24px;
  line-height: 1.25;
}

.apartment-add__commission-text {
  padding-top: 12px;
  color: #919aa6;
  font: 400 14px/1.4 "Roboto", Arial, sans-serif;
}

.apartment-add__commission-text--red {
  color: rgba(209, 86, 86, 0.5);
}

.apartment-add__commission-text-hint {
  font: 700 14px/1.4 "Roboto", Arial, sans-serif;
}

.apartment-add__text {
  padding-top: 12px;
  color: #303030;
  font-size: 14px;
  line-height: 1.4;
}

.apartment-add__text--gray,
.apartment-add__text--light {
  color: #979797;
}

.apartment-add__text--flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.apartment-add__text--error {
  color: #f00;
}

.apartment-add__text--bold {
  font-weight: 600;
}

.apartment-add__text a {
  color: #0098ed;
  cursor: pointer;
  transition: color 0.25s ease;
}

.apartment-add__text a:hover,
.apartment-add__text a:focus {
  color: #3bb9ff;
}

.apartment-add__text-circle {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 10px;
  margin-bottom: -0.15em;
  border-radius: 50%;
}

.apartment-add__parameters {
  display: grid;
  grid-template-columns: 10fr 7fr 4fr 80px;
  grid-gap: 50px;
}

.apartment-add__card-box--type {
  grid-column: span 1;
}

.apartment-add__card-box--floor {
  grid-column: span 1;
}

.apartment-add__card-box--price {
  grid-column: span 2;
}

.apartment-add__card-box--rooms {
  grid-column: span 1;
}

.apartment-add__card-box--rooms .buttons-group__button {
  width: 48px;
  padding: 0 5px;
}

.apartment-add__card-box--space {
  grid-column: span 2;
}

.apartment-add__card-box--bathrooms {
  grid-column: span 1;
}

.apartment-add__card-box--bathrooms .input-select {
  max-width: 80px;
  margin: 0;
}

.apartment-add__card-box--repair {
  grid-column: span 1;
}

.apartment-add__card-box--parking {
  grid-column: span 2;
}

.apartment-add__card-box--ceiling {
  grid-column: span 1;
}

.apartment-add__card-box--name {
  grid-column: span 2;
}

.apartment-add__card-box--material {
  grid-column: span 2;
}

.apartment-add__card-box--images {
  grid-column: span 4;
}

.apartment-add__currencies-wrap {
  position: relative;
  margin-left: 10px;
}

.apartment-add__currencies {
  position: absolute;
  top: -5px;
  display: inline-flex;
}

.apartment-add__card-box-title {
  margin-bottom: 15px;
  color: #303030;
  font-size: 16px;
  line-height: 1.1875;
}

.apartment-add__card-box-title--underline {
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: 1px solid #c4c4c4;
}

.apartment-add__card-box-title--parking {
  display: flex;
  align-items: baseline;
  width: 100%;
}

.apartment-add__block--description .apartment-add__card-box-title:not(:first-of-type) {
  margin-top: 50px;
}

.apartment-add__card-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.apartment-add__card-col {
  flex-shrink: 1;
}

.apartment-add__card-col:not(:last-of-type) {
  margin-right: 10px;
}

.apartment-add__juristic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 60px;
}

.apartment-add__search-address-result {
  margin-top: 50px;
}

.apartment-add__search-address-result-building-sections {
  margin-top: 50px;
}

.apartment-add__add-new-apartments-complex {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-gap: 50px;
}

.apartment-add__footer {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 50px;
}

.apartment-add__footer-btn--save {
  color: #0098ed;
  font-weight: 400;
}

.apartment-add__footer-preloader {
  display: inline-flex;
  align-items: center;
  height: 46px;
  margin-left: 50px;
  color: #0098ed;
  font: 700 16px/1 "Roboto", Arial, sans-serif;
}

.apartment-add__progress-bar {
  width: 95%;
  height: 20px;
  margin: 20px 0 0;
  border-radius: 5px;
  background: #d1d9e3;
}

@media screen and (max-width: 480px) {
  .apartment-add__progress-bar {
    margin: 20px auto 0;
  }
}

.apartment-add__loading-line {
  width: 0;
  height: 20px;
  border-radius: 5px;
  background: repeating-linear-gradient(45deg, #0098ed 7px, #0098ed 14px, #1eafff 14px, #1eafff 21px);
  background-size: 300% 100%;
  /* Animation */
  transition: width .2s;
  animation: ribbon 12s linear infinite;
}

/* Progress bar animation */

@keyframes ribbon {
  from {
    background-position: 0%;
  }

  to {
    background-position: 100%;
  }
}

.apartment-add__footer-preloader-icon {
  margin-left: 20px;
  fill: #0098ed;
  animation: rotation 0.5s linear infinite;
}

.apartment-add__footer-message {
  padding-top: 14px;
  color: #919aa6;
  text-align: right;
}

.apartment-add__not-filled-blocks-warning {
  color: #0098ed;
}

.apartment-add__not-filled-blocks-warning::before {
  color: #303030;
}

.apartment-add__not-filled-blocks-warning:not(:first-of-type):not(:last-of-type)::before {
  content: ", ";
}

.apartment-add__not-filled-blocks-warning:last-of-type::before {
  content: " и ";
}

.apartment-add__star {
  color: #f00;
  font-weight: 700;
}

.apartment-add__text-field--ceiling {
  max-width: 80px;
}

.apartment-add__parking-type-select-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 1em;
  margin-left: 0.3em;
}

.apartment-add__parking-type-select {
  position: absolute;
  bottom: -3px;
  left: 0;
  display: flex;
  align-items: flex-end;
  width: 285px;
  min-width: 100%;
  height: 100%;
  font-weight: 500;
}

.apartment-add__parking-type-select .multiselect-options {
  width: calc(100% + 10px);
}

.apartment-add__commission-options {
  width: 368px;
}

@media screen and (max-width: 1400px) {
  .apartment-add__block {
    grid-template-columns: 850px 1fr;
    grid-gap: 30px;
  }
}

@media screen and (max-width: 1240px) {
  .apartment-add__block {
    grid-template-columns: 1fr;
  }

  .apartment-add__block-info {
    padding: 0 20px;
  }
}

@media screen and (max-width: 991px) {
  .apartment-add__card-title {
    margin-bottom: 30px;
  }

  .apartment-add__parameters {
    grid-template-columns: repeat(3, 1fr) 80px;
    grid-gap: 25px 30px;
  }

  .apartment-add__card-box {
    order: 1;
  }

  .apartment-add__card-box--type {
    grid-column: span 2;
  }

  .apartment-add__card-box--floor {
    grid-column: span 2;
  }

  .apartment-add__card-box--price {
    grid-column: span 2;
  }

  .apartment-add__card-box--rooms {
    grid-column: span 2;
  }

  .apartment-add__card-box--space {
    grid-column: span 3;
  }

  .apartment-add__card-box--bathrooms {
    grid-column: span 1;
  }

  .apartment-add__card-box--repair {
    grid-column: span 2;
    order: 4;
  }

  .apartment-add__card-box--parking {
    grid-column: span 3;
    order: 2;
  }

  .apartment-add__card-box--ceiling {
    grid-column: span 1;
    order: 3;
  }

  .apartment-add__card--accessibility {
    grid-gap: 30px;
  }

  .apartment-add__juristic {
    grid-gap: 30px;
  }

  .apartment-add__add-new-apartments-complex {
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 30px;
  }

  .apartment-add__card-box--building-type {
    grid-column: span 3;
    order: 1;
  }

  .apartment-add__card-box--name {
    grid-column: span 5;
    order: 2;
  }

  .apartment-add__card-box--material {
    grid-column: span 2;
    order: 3;
  }

  .apartment-add__card-box--images {
    grid-column: span 5;
    order: 5;
  }

  .apartment-add__card-box--new-complex-floor,
  .apartment-add__card-box--year,
  .apartment-add__card-box--quarter {
    grid-column: span 1;
    order: 4;
  }
}

@media screen and (max-width: 768px) {
  .apartment-add__card--accessibility {
    display: block;
  }

  .apartment-add__card-box--repair {
    grid-column: span 3;
  }

  .apartment-add__footer {
    grid-template-columns: 1fr;
  }

  .apartment-add__add-new-apartments-complex {
    grid-template-columns: repeat(3, 1fr);
  }

  .apartment-add__card-box--building-type,
  .apartment-add__card-box--material,
  .apartment-add__card-box--name,
  .apartment-add__card-box--images {
    grid-column: span 3;
  }

  .apartment-add__card-box--new-complex-floor,
  .apartment-add__card-box--year,
  .apartment-add__card-box--quarter {
    grid-column: span 1;
  }
}

.apartment-add__link {
  color: #0098ed;
  font-weight: bold;
}

.apartment-add__telegram-checkbox {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 601px) {
  .apartment-add__breadcrumbs {
    display: none;
  }

  .apartment-add__parameters {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 0;
  }

  .apartment-add__card-box--type {
    order: 1;
    width: 100%;
  }

  .apartment-add__card-box--floor {
    order: 2;
  }

  .apartment-add__card-box--price {
    order: 3;
    width: 100%;
  }

  .apartment-add__card-box--rooms {
    order: 4;
    width: 100%;
  }

  .apartment-add__card-box--space {
    order: 5;
  }

  .apartment-add__card-box--repair {
    order: 6;
    width: 100%;
  }

  .apartment-add__card-box--parking {
    order: 7;
    width: 100%;
  }

  .apartment-add__card-box--bathrooms {
    order: 8;
    margin-right: 20px;
  }

  .apartment-add__card-box--ceiling {
    order: 9;
    margin-right: 20px;
  }

  .apartment-add__card {
    padding: 15px 15px 30px;
  }

  .apartment-add__card-title {
    margin-bottom: 20px;
    font-size: 21px;
  }

  .apartment-add__juristic {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }

  .apartment-add__parking-type-select {
    width: unset;
  }

  .apartment-add__parking-type-select .multiselect-single-label {
    display: inline-block;
    overflow: hidden;
    max-width: calc(100% - 15px);
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .apartment-add__card-box--rooms .buttons-group__button {
    width: 44px;
  }

  .apartment-add__block-info {
    padding: 0 15px;
  }

  .apartment-add__add-new-apartments-complex {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 0;
  }

  .apartment-add__card-box:not(:first-of-type) {
    margin-top: 30px;
  }

  .apartment-add__card-box--building-type,
  .apartment-add__card-box--name,
  .apartment-add__card-box--material,
  .apartment-add__card-box--images {
    width: 100%;
  }

  .apartment-add__card-box--new-complex-floor,
  .apartment-add__card-box--year,
  .apartment-add__card-box--quarter {
    width: 115px;
    margin-right: 20px;
  }

  .apartment-add__commission-options {
    width: 100%;
  }
}

@media screen and (max-width: 400px) {
  .apartment-add__footer-btn {
    width: 100%;
    text-align: center;
  }

  .apartment-add__footer-btn--save {
    margin-top: 5px;
  }

  .apartment-add__footer-preloader {
    justify-content: center;
    width: 100%;
    margin: 5px 0 0;
  }
}

@media screen and (max-width: 300px) {
  .apartment-add__card-box--repair .buttons-group__button {
    width: 100%;
    margin-right: 0;
  }

  .apartment-add__accessibility .buttons-group__button {
    width: 100%;
    margin-right: 0;
  }
}

.apartment-card {
  position: relative;
  border-radius: 10px;
  background-color: #fff;
  display: grid;
  grid-template-columns: 400px 3fr 2fr;
  padding: 10px;
}

.apartment-card--request {
  grid-template-columns: 1fr 345px;
}

.apartment-card__info-left-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 40px 10px 30px;
}

.apartment-card__info-box-content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.apartment-card__info-box-footer {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.apartment-card__title {
  width: 100%;
  margin: 0 0 14px;
  color: #303030;
  font-weight: 700;
  font-size: 24px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
}

.apartment-card__title--blue {
  color: #0098ed;
}

.apartment-card__address {
  margin: 0 30px 10px 0;
  color: #303030;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
}

.apartment-card__metro-station {
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
}

.apartment-card__metro-station-icon {
  width: 14px;
  height: 14px;
  margin-right: 6px;
  border: 4px solid #ed1f24;
  border-radius: 50%;
}

.apartment-card__metro-station-name {
  margin: 0 14px 0 0;
  color: #303030;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
}

.apartment-card__metro-station-time-to {
  margin: 0;
  color: #919aa6;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
}

.apartment-card__description {
  display: -webkit-box;
  overflow-y: hidden;
  width: 100%;
  margin: auto 0 30px;
  color: #919aa6;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.5;
  word-break: break-word;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.apartment-card__description:not(:first-child) {
  margin-top: 10px;
}

.apartment-card--request .apartment-card__description {
  padding-left: 20px;
  background-image: linear-gradient(to right, #ff8450 0, #ff8450 4px, transparent 4px);
  color: #303030;
  font-size: 20px;
  -webkit-line-clamp: 4;
}

.apartment-card__published-time {
  align-self: center;
  margin: 0 20px 0 0;
  color: #919aa6;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
}

.apartment-card__footer-btn {
  width: 180px;
  margin-left: auto;
}

.apartment-card__pdf-btn {
  margin: 0 auto;
  background-color: transparent;
}

.apartment-card__pdf-btn .apartment-card__pdf-btn-text {
  border-bottom: 1px dashed #919aa6;
  color: #919aa6;
  font: 400 16px/1.5 "Roboto", Arial, sans-serif;
  transition: border-bottom-color .25s ease, color .25s ease;
}

.apartment-card__pdf-btn:hover .apartment-card__pdf-btn-text,
.apartment-card__pdf-btn:focus .apartment-card__pdf-btn-text {
  border-bottom-color: #d15656;
  color: #d15656;
}

.apartment-card__pdf-btn.--success {
  cursor: auto;
}

.apartment-card__pdf-btn.--success .apartment-card__pdf-btn-text {
  border-bottom-color: transparent;
  color: #41ae1b;
}

.apartment-card__info-right-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 10px 20px;
}

.apartment-card__current-price {
  width: calc(100% - 22px);
  margin: 0 0 14px;
  padding-right: 20px;
  color: #303030;
  font-weight: 700;
  font-size: 24px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
}

.apartment-card__current-price--sale {
  color: #f00;
}

.apartment-card__like-btn {
  position: relative;
  display: block;
  margin: 0 0 14px auto;
}

.apartment-card__like-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.apartment-card__like-btn:hover .apartment-card__like-icon {
  fill: #d15656;
  stroke: #d15656;
}

.apartment-card__like-icon {
  display: block;
  fill: transparent;
  stroke: #919aa6;
  transition: .25s fill ease, .25s stroke ease;
}

.apartment-card__like-icon--active {
  fill: #d15656;
  stroke: #d15656;
}

.apartment-card__remove-btn {
  position: relative;
  display: block;
  margin: 0 0 14px auto;
}

.apartment-card__remove-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.apartment-card__remove-btn:hover .apartment-card__remove-icon {
  fill: #f00;
}

.apartment-card__remove-icon {
  display: block;
  fill: #919aa6;
  transition: .25s fill ease;
}

.apartment-card__checkbox {
  position: absolute;
  top: 16px;
  left: 16px;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background-color: transparent;
  transition: background-color .25s;
}

.apartment-card__checkbox--active {
  background-color: rgba(255, 255, 255, 0.9);
}

.apartment-card__checkbox .checkbox__checkbox {
  margin: 0;
  border: 2px solid #979797;
}

.apartment-card__checkbox-requests {
  top: 10px;
  left: 10px;
}

.apartment-card__old-price {
  margin: 0 20px 10px 0;
  color: #303030;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
  text-decoration: line-through;
}

.apartment-card__price-by-square {
  margin: 0 0 10px;
  color: #919aa6;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
}

.apartment-card__advantages-list {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  margin: 18px 0;
  padding: 0;
  list-style-type: none;
}

.apartment-card__advantage {
  margin: 0 20px 10px 0;
  color: #303030;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
  white-space: nowrap;
}

.apartment-card__advantage-icon {
  margin-left: 10px;
  fill: #41ae1b;
}

.apartment-card__broker-placemark {
  flex-basis: 100%;
  margin: auto 0 40px;
}

.apartment-card__share-btn {
  position: relative;
  margin-left: auto;
}

.apartment-card__share-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.apartment-card__share-btn:hover .apartment-card__share-icon {
  fill: #f00;
}

.apartment-card__share-icon {
  display: block;
  fill: #919aa6;
  transition: .25s fill ease;
}

.apartment-card__specs-list {
  width: 100%;
  margin: 0 0 18px;
  padding: 0;
  list-style-type: none;
}

.apartment-card__specs-item {
  display: inline-block;
  margin-right: 14px;
  margin-bottom: 10px;
}

.apartment-card__specs-url {
  margin: 0;
  border-bottom: 1px solid transparent;
  color: #303030;
  font-weight: 700;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
  transition: .25s border-color ease;
}

.apartment-card__specs-text {
  margin: 0;
  color: #919aa6;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
}

.apartment-card__specs-bold-text {
  margin: 0;
  color: #334860;
  font-weight: 700;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
}

.apartment-card__specs-status {
  display: inline-block;
  padding: 4px 8px;
  border: 1px solid #334860;
  border-radius: 3px;
  color: #334860;
}

.apartment-card__specs-status--commission {
  border-color: #41ae1b;
  color: #41ae1b;
}

.apartment-card__specs-status:not(:nth-of-type(1)) {
  margin-left: 14px;
}

.apartment-card__hidden-phone-link {
  color: #0088d4;
  font-weight: 400;
  transition: opacity;
}

.apartment-card__hidden-phone-link:hover,
.apartment-card__hidden-phone-link:focus {
  outline: none;
  opacity: 0.7;
}

.apartment-card__developer {
  margin-top: 35px;
}

.apartment-card__developer-logo {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.apartment-card__developer-name {
  display: block;
  width: 100%;
  margin-top: 10px;
  color: #919aa6;
}

.apartment-card__developer-name--link {
  color: #0098ed;
  cursor: pointer;
  transition: color 0.25s ease;
}

.apartment-card__developer-name--link:hover,
.apartment-card__developer-name--link:focus {
  color: #3bb9ff;
}

@media screen and (max-width: 991px) {
  .apartment-card {
    display: flex;
    flex-wrap: wrap;
  }

  .apartment-card__gallery {
    width: 100%;
    margin-bottom: 30px;
  }

  .apartment-card__info-left-box,
  .apartment-card__info-right-box {
    width: 50%;
  }

  .apartment-card__info-left-box {
    border-right: 1px solid #e1e2e5;
  }

  .apartment-card__info-right-box {
    padding-right: 40px;
    padding-left: 30px;
  }

  .apartment-card__footer-btn {
    margin-left: initial;
  }

  .apartment-card__pdf-btn {
    margin: initial;
    padding-left: 0;
  }
}

@media screen and (max-width: 601px) {
  .apartment-card__info-left-box,
  .apartment-card__info-right-box {
    width: 100%;
  }

  .apartment-card__info-left-box {
    padding-bottom: 30px;
    border-right: none;
    border-bottom: 1px solid #e1e2e5;
  }

  .apartment-card__broker-placemark {
    flex-basis: 50%;
    margin-bottom: 0;
  }

  .apartment-card__pdf-btn {
    padding: 0;
    align-self: self-end;
  }
}

@media screen and (max-width: 480px) {
  .apartment-card {
    display: none;
  }
}

.broker-placemark {
  display: flex;
}

.broker-placemark__name {
  margin: 0;
  color: #303030;
  font: 400 16px/1.5 "Roboto", Arial, sans-serif;
}

.broker-placemark__company {
  margin: 0;
  color: #919aa6;
  font: 400 16px/1.5 "Roboto", Arial, sans-serif;
}

.broker-placemark__show-phone-btn {
  height: 24px;
  margin: 0;
  border-bottom: 1px dashed #cce7f6;
  color: #0098ed;
  font: 400 14px/1.5 "Roboto", Arial, sans-serif;
}

.broker-placemark__phone {
  display: flex;
  align-items: center;
  height: 24px;
  color: #303030;
  font: 700 14px/1.5 "Roboto", Arial, sans-serif;
}

.broker-placemark__phone-icon {
  margin-left: 10px;
  fill: #41ae1b;
}

.broker-placemark__avatar-wrap {
  flex-shrink: 0;
  overflow: hidden;
  width: 60px;
  height: 60px;
  margin-right: 15px;
  border-radius: 50%;
}

.broker-placemark__avatar-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.broker-placemark__avatar-empty {
  opacity: .2;
  stroke: #334860;
}

@media screen and (max-width: 991px) {
  .broker-placemark__avatar-wrap {
    width: 40px;
    height: 40px;
  }
}

.narrow-card {
  display: grid;
  grid-template-columns: 137px 13fr minmax(175px, 5fr);
  grid-gap: 20px;
  padding: 10px;
  border-radius: 8px;
  background-color: #f5f6fa;
}

.narrow-card + .narrow-card {
  margin-top: 15px;
}

.narrow-card--active {
  background-color: #ebf5ff;
}

.narrow-card--several {
  cursor: pointer;
}

.narrow-card__image {
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  width: 100%;
  height: 105px;
  border-radius: 5px;
}

.narrow-card__info,
.narrow-card__price {
  padding: 10px 0;
}

.narrow-card__title {
  color: #0098ed;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
}

.narrow-card__description {
  margin-top: 12px;
}

.narrow-card__price-total {
  color: #303030;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
}

.narrow-card__price-metre {
  margin-top: 12px;
  color: #979797;
  font-size: 16px;
  line-height: 1.15;
}

.narrow-card__status {
  color: #303030;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.15;
}

.narrow-card__status + .narrow-card__price-total {
  margin-top: 12px;
}

.narrow-card__status-icon {
  margin-left: 10px;
  fill: #41ae1b;
}

.apartment-add__search-address-wrong-result {
  color: #0098ed;
  cursor: pointer;
  transition: color 0.25s ease;
  margin-left: auto;
}

.apartment-add__search-address-wrong-result:hover,
.apartment-add__search-address-wrong-result:focus {
  color: #3bb9ff;
}

@media screen and (max-width: 768px) {
  .narrow-card {
    grid-template-columns: 97px 1fr;
  }

  .narrow-card__image {
    width: 97px;
    height: 74px;
  }

  .narrow-card__price {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
  }
}

@media screen and (max-width: 400px) {
  .narrow-card {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }

  .narrow-card__price {
    grid-row: ubset;
    grid-column: unset;
  }
}

.page-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin-bottom: 25px;
}

.page-filters__sorting-list {
  padding: 0;
  list-style-type: none;
  margin-right: 75px;
}

.page-filters__sorting-item {
  display: inline-block;
  margin-right: 20px;
}

.page-filters__sorting-item:last-child {
  margin-right: 0;
}

.page-filters__sorting-btn {
  position: relative;
  display: flex;
  align-items: center;
  color: #0088d4;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
  text-decoration: none;
  transition: .25s color ease;
}

.page-filters__sorting-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.page-filters__sorting-btn--active {
  color: #303030;
  text-decoration: none;
}

.page-filters__sorting-btn:hover,
.page-filters__sorting-btn:focus {
  color: #d15656;
}

.page-filters__sorting-icon {
  margin-left: 5px;
  fill: #303030;
}

.page-filters__sorting-icon--up {
  transform: rotate(180deg);
}

.page-filters__search {
  position: relative;
  width: 275px;
  height: 33px;
  margin: 0 auto;
}

.page-filters__search-input {
  width: 100%;
  height: 100%;
  padding: 0 30px 0 65px;
  border: 1px solid #e1e2e5;
  border-radius: 3px;
  background-color: #fff;
  font-size: 16px;
}

.page-filters__search-label {
  position: absolute;
  top: 50%;
  left: 0;
  padding-left: 10px;
  color: #979797;
  transform: translateY(-50%);
}

.page-filters__search-reset {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
}

.page-filters__search-reset::before,
.page-filters__search-reset::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  background-color: #979797;
}

.page-filters__search-reset::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.page-filters__search-reset::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.page-filters__currencies-block {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.page-filters__currencies-text {
  margin-right: 10px;
  color: #979797;
  font-size: 16px;
}

.page-filters__currencies-rate {
  margin-left: 10px;
  color: #979797;
  font-size: 16px;
}

.page-filters__currencies-list {
  position: relative;
  list-style-type: none;
}

.page-filters__currency {
  position: relative;
  display: inline-block;
  margin-left: -1px;
  border: 1px solid #0088d4;
}

.page-filters__currency:first-child {
  margin-left: 0;
  border-radius: 3px 0 0 3px;
}

.page-filters__currency:last-child {
  border-radius: 0 3px 3px 0;
}

.page-filters__currency-btn {
  position: relative;
  width: 28px;
  height: 28px;
  text-align: center;
  transition: .5s background-color ease, .5s color ease;
}

.page-filters__currency-btn--active {
  background-color: #0088d4;
  color: #fff;
}

@media screen and (max-width: 1400px) {
  .page-filters__filter {
    margin: 0 10px;
  }
}

@media screen and (max-width: 480px) {
  .page-filters__sorting-list,
  .page-filters__currencies-block {
    display: none;
  }

  .page-filters__search {
    width: 100%;
  }
}

.favorites__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 1350px;
  max-width: 100%;
  height: inherit;
  margin: 0 auto;
  padding: 0 30px;
  flex-direction: column;
}

@media screen and (max-width: 1400px) {
  .favorites__inner {
    width: 1200px;
  }
}

@media screen and (max-width: 1240px) {
  .favorites__inner {
    padding: 0 30px;
  }
}

@media screen and (max-width: 601px) {
  .favorites__inner {
    padding: 0;
  }
}

.favorites__title {
  color: #303030;
  font-weight: 700;
  font-size: 42px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.19;
  margin: 0;
}

@media screen and (max-width: 1240px) {
  .favorites__title {
    font-size: 38px;
  }
}

@media screen and (max-width: 991px) {
  .favorites__title {
    font-size: 34px;
  }
}

@media screen and (max-width: 601px) {
  .favorites__title {
    font-size: 28px;
  }
}

.favorites__header {
  position: relative;
  display: flex;
  width: 100%;
  margin-bottom: 60px;
}

.favorites__types {
  display: flex;
  width: 224px;
  height: 48px;
  margin: 0 auto 0 40px;
  padding: 2px;
  border-radius: 5px;
  background-color: #fff;
  list-style-type: none;
}

.favorites__type {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.favorites__type--active {
  background-color: #0088d4;
  color: #fff;
}

.favorites__hints-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  padding: 11px 20px;
  border-radius: 10px;
  background-color: #ebf5ff;
  box-shadow: 0 0 5px 1px rgba(0, 136, 212, 0.5);
  transition: transform 0.35s;
}

.favorites__hints-container--active {
  transform: translateY(-40px);
}

.favorites__hints-btn {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  color: #0088d4;
  font: 400 16px/1 "Roboto", Arial, sans-serif;
}

.favorites__hints-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.favorites__hints-btn-icon {
  margin-right: 9px;
  fill: #0088d4;
}

.favorites__hints-list {
  margin: 14px 0 16px 20px;
}

.favorites__hint {
  display: list-item;
  color: #303030;
  font: 400 12px/1.5 "Roboto", Arial, sans-serif;
}

.favorites__list-main {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  list-style-type: none;
}

.favorites__item-main {
  margin-top: 68px;
}

.favorites__item-main:first-child {
  margin-top: 0;
}

.favorites__checkbox-date {
  width: max-content;
}

.favorites__checkbox-date .checkbox__text {
  margin-left: 10px;
  font-size: 24px;
}

.favorites__checkbox-date .checkbox__checkbox {
  border: 2px solid #303030;
}

.favorites__list-secondary {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 26px 0 0;
  padding: 0;
  list-style-type: none;
}

.apartments__item-secondary {
  margin-top: 30px;
}

.apartments__item-secondary:first-child {
  margin-top: 0;
}

.favorites__list-main--empty {
  margin: 100px auto 0;
  color: #979797;
}

.favorites__options-wrapper {
  position: fixed;
  bottom: 40px;
  left: 0;
  z-index: 100;
  width: 100%;
}

.favorites__options-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 1350px;
  max-width: 100%;
  height: inherit;
  margin: 0 auto;
  padding: 0 30px;
  justify-content: flex-end;
}

@media screen and (max-width: 1400px) {
  .favorites__options-inner {
    width: 1200px;
  }
}

@media screen and (max-width: 1240px) {
  .favorites__options-inner {
    padding: 0 30px;
  }
}

@media screen and (max-width: 601px) {
  .favorites__options-inner {
    padding: 0;
  }
}

.favorites__options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 489px;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: rgba(48, 48, 48, 0.9);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.favorites__options-btn {
  position: relative;
  display: flex;
  align-items: center;
  height: 34px;
  border-radius: 5px;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
  white-space: nowrap;
  transition: .25s color ease, .25s background-color ease;
}

.favorites__options-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.favorites__options-btn:hover {
  cursor: auto;
}

.favorites__options-btn--reset {
  margin-right: 40px;
}

.favorites__options-btn--reset:not(:disabled):hover {
  cursor: pointer;
}

.favorites__options-btn--reset:not(:disabled):hover .favorites__options-value-text--blue {
  background-color: #21afff;
}

.favorites__options-btn--share {
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  background-color: #0088d4;
}

.favorites__options-btn--share:disabled {
  background-color: #919aa6;
}

.favorites__options-btn--share:not(:disabled):hover {
  background-color: #21afff;
}

.favorites__options-value-text {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-right: 14px;
  border-radius: 50%;
  background-color: #919aa6;
  transition: .25s background-color ease;
}

.favorites__options-value-text--blue {
  background-color: #0098ed;
}

.favorites__options-btn-text {
  display: inline-block;
}

.favorites__mobile-options-btn-text {
  display: none;
}

@media screen and (max-width: 480px) {
  .favorites__title {
    font-weight: 700;
    font-size: 42px;
  }

  .favorites__header {
    flex-direction: column;
    padding: 0 10px;
  }

  .favorites__types {
    width: 100%;
    margin: 24px 0 29px;
  }

  .favorites__hints-container {
    position: relative;
    width: 100%;
  }

  .favorites__hints-container--active {
    transform: translateY(0);
  }

  .favorites__options-wrapper {
    bottom: 0;
  }

  .favorites__options-inner {
    padding: 0;
  }

  .favorites__options {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding: 10px;
    border-radius: 0;
  }

  .favorites__options-btn {
    margin-bottom: 0;
    font-size: 20px;
  }

  .favorites__options-btn--reset {
    margin-right: 15px;
  }

  .favorites__options-btn--share {
    height: 48px;
    padding: 0 10px;
  }

  .favorites__options-btn-text {
    display: none;
  }

  .favorites__mobile-options-btn-text {
    display: inline-block;
  }
}

@media screen and (max-width: 300px) {
  .favorites__options-btn {
    font-size: 16px;
  }
}

.shared-page__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 1350px;
  max-width: 100%;
  height: inherit;
  margin: 0 auto;
  padding: 0 30px;
}

@media screen and (max-width: 1400px) {
  .shared-page__inner {
    width: 1200px;
  }
}

@media screen and (max-width: 1240px) {
  .shared-page__inner {
    padding: 0 30px;
  }
}

@media screen and (max-width: 601px) {
  .shared-page__inner {
    padding: 0;
  }
}

.shared-page__head {
  width: 100%;
  margin-bottom: 64px;
}

.shared-page__head-title {
  margin-bottom: 8px;
  color: #303030;
  font: 700 42px/1.19 "Roboto", Arial, sans-serif;
}

.shared-page__head-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.shared-page__head-text,
.shared-page__mobile-head-text {
  color: #000;
  font: 400 18px/1 "Roboto", Arial, sans-serif;
}

.shared-page__mobile-head-count {
  display: none;
}

.shared-page__head-btn-desktop-text {
  display: inline;
}

.shared-page__head-btn,
.shared-page__footer-btn {
  padding: 0;
  color: #0088d4;
  font: 400 18px/1 "Roboto", Arial, sans-serif;
}

.shared-page__head-btn-icon,
.shared-page__footer-btn-icon {
  margin-right: 10px;
  fill: #0088d4;
}

.shared-page__list {
  width: 100%;
}

.shared-page__item {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.shared-page__item:not(:first-child) {
  margin-top: 29px;
}

.shared-page__item-count {
  flex-shrink: 0;
  width: 40px;
  color: #919aa6;
  font: 400 18px/1 "Roboto", Arial, sans-serif;
}

.shared-page__footer {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: 46px;
}

@media screen and (max-width: 480px) {
  .shared-page__head {
    flex-wrap: wrap;
    margin-bottom: 35px;
  }

  .shared-page__head-title {
    margin-bottom: 15px;
    font-size: 36px;
  }

  .shared-page__head-count {
    display: none;
  }

  .shared-page__mobile-head-count {
    display: inline;
    padding-left: 5px;
  }

  .shared-page__head-btn {
    margin-left: auto;
    padding-right: 5px;
  }

  .shared-page__head-btn-desktop-text {
    display: none;
  }

  .shared-page__item {
    flex-direction: column;
    align-items: flex-end;
  }

  .shared-page__item:not(:first-child) {
    margin-top: 26px;
  }

  .shared-page__item-count {
    width: auto;
    margin-bottom: 5px;
    margin-left: 10px;
  }

  .shared-page__mobile-item-card {
    width: 100%;
  }

  .shared-page__footer {
    justify-content: center;
    margin-bottom: 50px;
  }
}

.home-page {
  padding: 80px 10px 0;
  background: linear-gradient(0deg, rgba(0, 136, 212, 0.9), rgba(0, 136, 212, 0.9)), url(/images/background-main.jpg?67a32e2212f8d0dfa3b1ae2e8615bf9b);
  background-size: cover;
}

.home-page__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 1350px;
  max-width: 100%;
  height: inherit;
  margin: 0 auto;
  padding: 0 30px;
  align-items: stretch;
  justify-content: space-between;
}

@media screen and (max-width: 1400px) {
  .home-page__inner {
    width: 1200px;
  }
}

@media screen and (max-width: 1240px) {
  .home-page__inner {
    padding: 0 30px;
  }
}

@media screen and (max-width: 601px) {
  .home-page__inner {
    padding: 0;
  }
}

.home-page__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 60px;
}

.home-page__mobile-card {
  display: none;
  flex-direction: row;
  width: 100%;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(51, 72, 96, 0.3);
}

.home-page__mobile-user-avatar {
  -o-object-fit: cover;
     object-fit: cover;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-position: center;
     object-position: center;
}

.home-page__mobile-user {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 20px;
}

.home-page__mobile-card-title {
  color: #fff;
  font: 700 18px/1.1 "Roboto", Arial, sans-serif;
}

.home-page__mobile-user-name {
  position: relative;
  margin-top: 6px;
  color: #fff;
  font: 400 20px/1.3 "Roboto", Arial, sans-serif;
}

.home-page__mobile-user-status {
  position: absolute;
  bottom: 50%;
  margin: -9px 0 0 6px;
  padding: 2px 5px;
  border-radius: 3px;
  background-color: #ff8450;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.1;
  letter-spacing: 0.05em;
}

.home-page__content-text {
  display: flex;
  flex-direction: column;
}

.home-page__advantages-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 60px;
  margin-right: 60px;
}

.home-page__advantage {
  color: #fff;
  font: 400 24px/1.25 "Roboto", Arial, sans-serif;
}

.home-page__advantage--bold {
  font-weight: 700;
}

.home-page__registration {
  flex-shrink: 0;
  width: 410px;
  min-height: 415px;
}

.home-page__card {
  display: flex;
  flex-direction: row;
  margin-top: 64px;
  margin-right: 30px;
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(51, 72, 96, 0.3);
}

.home-page__card-title {
  width: 45%;
  margin-right: 25px;
  color: #fff;
  font: 700 20px/1.3 "Roboto", Arial, sans-serif;
}

.home-page__user {
  display: flex;
  align-items: center;
}

.home-page__user-avatar {
  -o-object-fit: cover;
     object-fit: cover;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-position: center;
     object-position: center;
}

.home-page__user-info {
  margin-left: 20px;
}

.home-page__user-name {
  position: relative;
  color: #fff;
  font: 400 24px/1.25 "Roboto", Arial, sans-serif;
}

.home-page__user-status {
  position: absolute;
  bottom: 50%;
  margin: -9px 0 0 6px;
  padding: 2px 5px;
  border-radius: 3px;
  background-color: #ff8450;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.1;
  letter-spacing: 0.05em;
}

.home-page__user-company {
  color: #919aa6;
  font: 400 16px/1.87 "Roboto", Arial, sans-serif;
}

.home-page__user-time {
  margin-left: 10px;
}

@media screen and (max-width: 1400px) {
  .home-page__advantages-list {
    grid-gap: 40px;
    margin-right: 40px;
  }
}

@media screen and (max-width: 1240px) {
  .home-page__advantages-list {
    grid-gap: 20px;
    margin-right: 20px;
  }

  .home-page__advantage {
    font-size: 20px;
  }
}

@media screen and (max-width: 991px) {
  .home-page__content {
    flex-direction: column;
  }

  .home-page__card {
    order: -1;
  }

  .home-page__content-text {
    order: 2;
  }

  .home-page__advantages-list {
    margin-top: 40px;
  }
}

@media screen and (max-width: 480px) {
  .home-page {
    background-position: 22%;
  }

  .home-page__content {
    margin-top: 50px;
  }

  .home-page__advantages-list {
    grid-template-columns: 1fr;
    grid-gap: 30px;
    margin-top: 50px;
    margin-right: 0;
  }

  .home-page__card {
    display: none;
  }

  .home-page__mobile-card {
    display: flex;
  }

  .home-page__registration {
    width: 100%;
  }
}

.home-intro {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  padding: 20px 70px 0 20px;
  border-radius: 10px;
  background-color: #339ede;
  color: #fff;
}

.home-intro::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(180deg, rgba(51, 72, 96, 0) 0%, #334860 100%);
  opacity: 0.15;
}

.home-intro__title {
  color: #303030;
  font-weight: 700;
  font-size: 42px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.19;
  margin-bottom: 50px;
  padding-right: 30px;
  color: inherit;
}

@media screen and (max-width: 1240px) {
  .home-intro__title {
    font-size: 38px;
  }
}

@media screen and (max-width: 991px) {
  .home-intro__title {
    font-size: 34px;
  }
}

@media screen and (max-width: 601px) {
  .home-intro__title {
    font-size: 28px;
  }
}

.home-intro__subtitle {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.45;
}

.home-intro__image-wrap {
  position: relative;
}

.home-intro__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.home-registration {
  display: flex;
  flex-direction: column;
}

.home-registration__tabs-list {
  display: flex;
  flex-direction: row;
}

.home-registration__tab {
  position: relative;
  padding: 7px 18px;
  border-radius: 10px 10px 0 0;
  background-color: transparent;
  color: #b2dbf2;
  font: 700 36px/1.39 "Roboto", Arial, sans-serif;
}

.home-registration__tab:last-of-type {
  flex-grow: 1;
}

.home-registration__tab--active {
  background-color: #fff;
  color: #303030;
}

.home-registration__tab--active::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #fff;
}

.home-registration__form {
  display: none;
}

.home-registration__form .text-field__wrap {
  margin-top: 6px;
}

.home-registration__form.login-form {
  padding: 0;
}

.home-registration__form .login-form__inner {
  width: 100%;
  margin: 0;
}

.home-registration__form .login-form__title,
.home-registration__form .login-form__terms {
  display: none;
}

.home-registration__form--active {
  display: block;
}

@media screen and (max-width: 480px) {
  .home-registration__tab {
    font: 700 30px/1.67 "Roboto", Arial, sans-serif;
  }
}

@media screen and (max-width: 300px) {
  .home-registration__tab {
    font: 700 26px/1.5 "Roboto", Arial, sans-serif;
  }
}

.form__title {
  margin-bottom: 30px;
  color: #303030;
  font: 700 42px/1.19 "Roboto", Arial, sans-serif;
}

.form__card {
  position: relative;
  border-radius: 10px;
  background-color: #fff;
  width: 100%;
  padding: 20px;
}

.form__card:not(:last-child) {
  margin-bottom: 25px;
}

.form__card-title {
  color: #303030;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  opacity: 0.9;
}

.form__card-title--with-offset {
  margin-top: 50px;
}

.form__terms {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.42;
}

.form__terms a {
  color: #0098ed;
  cursor: pointer;
  transition: color 0.25s ease;
}

.form__terms a:hover,
.form__terms a:focus {
  color: #3bb9ff;
}

.form__submit-btn {
  min-width: 245px;
  margin-top: 40px;
  text-align: center;
}

.a2hs {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  align-items: center;
}

.a2hs__add-button {
  color: #0098ed;
  transition: color ease .3s;
}

.a2hs__add-button:disabled {
  color: #919aa6;
}

.a2hs__add-button:hover:not(:disabled) {
  color: #f00;
}

.a2hs__icon {
  width: 64px;
  margin: 40px 0 0;
}

.a2hs-mobile-notification {
  display: none;
}

@media screen and (max-width: 991px) {
  .a2hs-mobile-notification {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 85%;
    height: 0;
    margin: 0 auto;
    padding: 15px;
    border-radius: 10px;
    background: #ebf5ff;
    box-shadow: 0 11px 8px #c9c9c9;
    opacity: 0;
    transition: opacity .5s;
  }

  .a2hs-mobile-notification--showed {
    height: 120px;
    opacity: 1;
  }
}

.a2hs-mobile-notification__icon-box {
  display: flex;
  align-items: center;
}

.a2hs__notification-icon {
  width: 55px;
}

.a2hs-mobile-notification__instructions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 69%;
  font-size: 12px;
}

.a2hs-mobile-notification__title {
  font-size: 16px;
}

.a2hs-mobile-notification__step {
  font-size: 13px;
}

.a2hs-mobile-notification__bold-text {
  font-weight: 600;
}

.a2hs-mobile-notification__nav-icon {
  margin: 0 7px;
}

.a2hs-mobile-notification__nav-icon--three-dots {
  width: 4px;
}

.a2hs-mobile-notification__triangle {
  position: absolute;
  top: 100%;
  left: 47%;
  width: 0;
  height: 0;
  border-top: 10px solid #ebf5ff;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}

.edit-profile-form {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 1350px;
  max-width: 100%;
  height: inherit;
  margin: 0 auto;
  padding: 0 30px;
  flex-direction: column;
}

@media screen and (max-width: 1400px) {
  .edit-profile-form {
    width: 1200px;
  }
}

@media screen and (max-width: 1240px) {
  .edit-profile-form {
    padding: 0 30px;
  }
}

@media screen and (max-width: 601px) {
  .edit-profile-form {
    padding: 0;
  }
}

.edit-profile-form__head {
  width: 100%;
  margin-top: 50px;
  margin-bottom: 40px;
}

.edit-profile-form__title {
  color: #303030;
  font-weight: 700;
  font-size: 42px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.19;
}

@media screen and (max-width: 1240px) {
  .edit-profile-form__title {
    font-size: 38px;
  }
}

@media screen and (max-width: 991px) {
  .edit-profile-form__title {
    font-size: 34px;
  }
}

@media screen and (max-width: 601px) {
  .edit-profile-form__title {
    font-size: 28px;
  }
}

.edit-profile-form__status {
  position: relative;
  display: inline-block;
  margin-left: 3px;
  padding: 4px 8px;
  border-radius: 3px;
  background-color: #0088d4;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.05em;
  transform: translateY(-2em);
}

.edit-profile-form__status--incomplete {
  background-color: #d15656;
}

.edit-profile-form__status--blocked {
  background-color: #303030;
}

.edit-profile-form__status--denied {
  background-color: #303030;
}

.edit-profile-form__status--moderating {
  background-color: #339ede;
}

.edit-profile-form__status--active {
  background-color: #41ae1b;
}

.edit-profile-form__admin-message {
  width: 910px;
  max-width: 100%;
  margin-top: 15px;
  line-height: 1.5;
}

.edit-profile-form__main {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.edit-profile-form__fields-side {
  width: 910px;
}

.edit-profile-form__aside {
  width: 320px;
  margin-left: 60px;
}

.edit-profile-form__short-data {
  position: sticky;
  top: 20px;
}

.edit-profile-form__section {
  position: relative;
  border-radius: 10px;
  background-color: #fff;
  width: 100%;
  padding: 20px 20px 40px;
}

.edit-profile-form__section:not(:last-child) {
  margin-bottom: 25px;
}

.edit-profile-form__section-title {
  color: #303030;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  opacity: 0.9;
}

.edit-profile-form__section-title--with-offset {
  margin-top: 50px;
}

.edit-profile-form__section-inner {
  display: flex;
  margin-top: 16px;
}

.edit-profile-form__section-block {
  width: 490px;
  max-width: 100%;
}

.edit-profile-form__section-avatar {
  display: flex;
  align-items: flex-end;
  margin-left: 60px;
}

.edit-profile-form__text {
  padding-top: 12px;
  color: #303030;
  font-size: 14px;
  line-height: 1.4;
}

.edit-profile-form__text--gray,
.edit-profile-form__text--light {
  color: #979797;
}

.edit-profile-form__text--flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.edit-profile-form__text--error {
  color: #f00;
}

.edit-profile-form__text--bold {
  font-weight: 600;
}

.edit-profile-form__text a {
  color: #0098ed;
  cursor: pointer;
  transition: color 0.25s ease;
}

.edit-profile-form__text a:hover,
.edit-profile-form__text a:focus {
  color: #3bb9ff;
}

.edit-profile-form__is-whatsapp-connected {
  margin: 15px 0 35px;
}

.edit-profile-form__whatsapp-word {
  color: #4caf50;
  font-weight: 700;
}

.edit-profile-form__block-anchor {
  position: absolute;
  top: -30px;
  left: 0;
  width: 0;
  height: 0;
}

.edit-profile-form__footer {
  margin-top: 70px;
}

.edit-profile-form__submit {
  min-width: 280px;
}

.edit-profile-form__mobile-errors-list {
  display: none;
}

@media screen and (max-width: 1400px) {
  .edit-profile-form__fields-side {
    width: 760px;
  }
}

@media screen and (max-width: 1240px) {
  .edit-profile-form__section-avatar {
    margin: 20px auto 0;
  }

  .edit-profile-form__section-block {
    width: 100%;
  }

  .edit-profile-form__section-inner {
    flex-wrap: wrap;
  }

  .edit-profile-form__fields-side {
    width: 500px;
  }
}

@media screen and (max-width: 991px) {
  .edit-profile-form__main {
    flex-direction: column;
  }

  .edit-profile-form__fields-side {
    width: 100%;
  }

  .edit-profile-form__aside {
    margin: 20px auto;
  }

  .edit-profile-form__footer {
    margin: 0 auto;
  }
}

@media screen and (max-width: 480px) {
  .edit-profile-form__submit {
    width: 100%;
  }

  .edit-profile-form__is-whatsapp-connected {
    margin: 20px 0;
  }

  .edit-profile-form__text {
    display: none;
  }

  .edit-profile-form__section-block .text-field__wrap {
    margin-top: 12px;
  }

  .edit-profile-form__section-block .buttons-group__button {
    margin-right: 0;
  }

  .edit-profile-form__section-inner {
    margin-top: 8px;
  }

  .edit-profile-form__section-title--with-offset {
    margin-top: 20px;
  }

  .edit-profile-form__section {
    padding: 20px;
  }

  .edit-profile-form__aside {
    width: 100%;
  }

  .edit-profile-form__footer {
    width: 80%;
    margin: 0 auto;
  }

  .edit-profile-form__status {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 0;
    transform: none;
  }

  .edit-profile-form__title {
    line-height: 1.5;
  }

  .edit-profile-form__head {
    margin: 30px 0;
    padding: 0 20px;
  }

  .edit-profile-form__mobile-errors-list {
    display: block;
  }

  .edit-profile-form__mobile-error {
    padding: 12px 10px 0;
    color: #f00;
    font: 400 14px/1 "Roboto", Arial, sans-serif;
  }
}

.profile-short-data__head {
  display: flex;
  justify-content: space-around;
}

.profile-short-data__title {
  color: #334860;
  font-weight: 700;
  line-height: 1.5;
  opacity: 0.9;
}

.profile-short-data__user-id {
  color: #919aa6;
  font-weight: 700;
  line-height: 1.5;
  text-align: right;
}

.profile-short-data__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 25px 20px;
  border: 1px solid #339ede;
  border-radius: 10px;
  background-color: #fff;
  transition: all 0.25s ease;
}

@media screen and (max-width: 480px) {
  .profile-short-data__card {
    width: 80%;
    margin: 0 auto;
    padding: 10px 15px;
  }
}

.profile-short-data__card--complete {
  border-color: #339ede;
}

.profile-short-data__avatar {
  flex-shrink: 0;
  width: 60px;
}

.profile-short-data__info {
  flex-shrink: 0;
  width: calc(100% - 60px - 15px);
}

.profile-short-data__avatar-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(51, 72, 96, 0.15);
  background-position: center;
  background-size: cover;
}

.profile-short-data__line--name {
  line-height: 1.5;
}

.profile-short-data__line--place {
  color: #919aa6;
  line-height: 1.5;
}

.profile-short-data__line--phone {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
}

.profile-short-data__line--position {
  color: #919aa6;
  font-size: 14px;
  line-height: 1.5;
}

.profile-short-data__line--gray {
  color: #919aa6;
  font-weight: 400;
}

.profile-short-data__whatsapp-icon {
  margin: -2px 0 0 8px;
  opacity: 0;
  fill: #4caf50;
  transition: opacity 0.25s ease;
}

.profile-short-data__whatsapp-icon--show {
  opacity: 1;
}

.profile-avatar {
  position: relative;
  width: 200px;
  height: 200px;
}

.profile-avatar__add-file-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 30px 15px 10px;
  border-radius: 5px;
  background-color: #ebf5ff;
  color: #0098ed;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.profile-avatar__add-file-label--no-avatar {
  border: 2px dashed #0088d4;
  background-color: transparent;
}

.profile-avatar__add-file-label:hover,
.profile-avatar__add-file-label:focus,
.profile-avatar__add-file-label--hover {
  border-color: #f00;
  color: #f00;
}

.profile-avatar__image-wrap {
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.05);
}

.profile-avatar__image-wrap--no-photo {
  background-color: transparent;
  background-image: url(/images/avatar-icon.svg?db6140a002c763c2364fd5034615d1e1);
  background-position: center;
  background-size: contain;
}

.profile-avatar__image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-position: center;
     object-position: center;
}

.profile-avatar__title {
  margin-top: 20px;
  text-align: center;
}

.profile-avatar__title--bold {
  font-weight: 700;
}

.profile-avatar__delete {
  position: absolute;
  top: 14px;
  right: 14px;
}

.profile-avatar__delete:hover .profile-avatar__delete-icon,
.profile-avatar__delete:focus .profile-avatar__delete-icon {
  stroke: #f00;
}

.profile-avatar__delete-icon {
  stroke: rgba(51, 72, 96, 0.3);
  transition: stroke 0.25s ease;
}

.profile-avatar__popup-btn {
  display: block;
  margin-top: 40px;
  margin-left: auto;
}

.profile-avatar__cropper-wrap {
  position: relative;
  min-height: 100px;
}

.profile-avatar__cropper-wrap--preloader::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border: 3px solid #0098ed;
  border-right-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transition: opacity 0.15s linear;
  transform: translate(-50%, -50%);
}

.profile-avatar__cropper-wrap--preloader::after {
  animation: rotate-upload-preloader 0.5s linear infinite;
}

@keyframes rotate-upload-preloader {
  from {
    transform: translate(-50%, -50%) rotate(0);
  }

  to {
    transform: translate(-50%, -50%) rotate(1turn);
  }
}

.profile-ads-page {
  padding: 60px 10px 0;
}

.profile-ads-page__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 1350px;
  max-width: 100%;
  height: inherit;
  margin: 0 auto;
  padding: 0 30px;
  position: static;
  flex-direction: column;
}

@media screen and (max-width: 1400px) {
  .profile-ads-page__inner {
    width: 1200px;
  }
}

@media screen and (max-width: 1240px) {
  .profile-ads-page__inner {
    padding: 0 30px;
  }
}

@media screen and (max-width: 601px) {
  .profile-ads-page__inner {
    padding: 0;
  }
}

.profile-ads-page__filters.page-filters {
  width: calc(100% - 525px);
}

.profile-ads-page__list-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 28px;
}

.profile-ads-page__title {
  color: #303030;
  font-weight: 700;
  font-size: 42px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.19;
  margin: 0;
}

@media screen and (max-width: 1240px) {
  .profile-ads-page__title {
    font-size: 38px;
  }
}

@media screen and (max-width: 991px) {
  .profile-ads-page__title {
    font-size: 34px;
  }
}

@media screen and (max-width: 601px) {
  .profile-ads-page__title {
    font-size: 28px;
  }
}

.profile-ads-page__ad-cards {
  width: 100%;
  margin-top: 25px;
}

.profile-ads-page__filters-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}

.profile-ads-page__list-head-icons {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  width: 105px;
}

.profile-ads-page__head-presentation {
  display: flex;
  align-items: center;
  width: 100px;
  margin-right: 219px;
  margin-left: 59px;
  color: rgba(145, 154, 166, 0.5);
  font: 400 16px/1.125 "Roboto", Arial, sans-serif;
}

.profile-ads-page__list-head-icon {
  opacity: 0.3;
}

.profile-ads-page__list-head-icon--blue {
  stroke: #0088d4;
}

.profile-ads-page__list-head-icon--green {
  stroke: #41ae1b;
}

.profile-ads-page__list-head-icon--red {
  stroke: #d15656;
}

.profile-ads-page__pagination {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: 25px;
}

.profile-ads-page__pagination-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-left: 10px;
  border-radius: 5px;
  font-weight: 700;
  transition: all 0.25s ease-in-out;
}

.profile-ads-page__pagination-button:hover,
.profile-ads-page__pagination-button:focus,
.profile-ads-page__pagination-button--current {
  background-color: #0098ed;
  color: #fff;
}

.profile-ads-page__pagination-button--current {
  cursor: default;
}

.profile-ads-page__pagination-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.profile-ads-page__no-ads {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 150px 30px;
  border: 1px solid #e1e2e5;
  border-radius: 10px;
}

.profile-ads-page__no-ads-text {
  width: 487px;
  max-width: 100%;
  font-size: 18px;
  line-height: 1.33;
  text-align: center;
}

.profile-ads-page__no-ads-btn {
  margin-top: 30px;
}

.profile-ads-page__search-empty {
  margin-top: 200px;
  color: #979797;
  text-align: center;
}

.profile-ads-page__mobile-add-btn {
  display: none;
}

@media screen and (max-width: 480px) {
  .profile-ads-page__filters.page-filters {
    width: 100%;
  }

  .profile-ads-page__list-header {
    margin-bottom: 37px;
  }

  .profile-ads-page__title {
    color: #303030;
    font: 700 42px/1 "Roboto", Arial, sans-serif;
  }

  .profile-ads-page__filters-wrapper {
    flex-wrap: wrap;
  }

  .profile-ads-page__filters-wrapper .mobile-page-filters {
    margin-top: 0;
  }

  .profile-ads-page__ad-cards {
    margin-top: 0;
  }

  .profile-ads-page__list-head-icons,
  .profile-ads-page__head-presentation {
    display: none;
  }

  .profile-ads-page__mobile-add-btn {
    display: block;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    margin-right: 10px;
    padding: 17px 0;
    border-radius: 50%;
    background-color: #0088d4;
    color: #fff;
    text-align: center;
  }

  .profile-ads-page__mobile-add-btn-icon {
    fill: #fff;
    transform: rotate(45deg);
  }
}

.profile-object-page {
  padding: 39px 0 50px;
}

.profile-object-page__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 1350px;
  max-width: 100%;
  height: inherit;
  margin: 0 auto;
  padding: 0 30px;
  flex-direction: column;
}

@media screen and (max-width: 1400px) {
  .profile-object-page__inner {
    width: 1200px;
  }
}

@media screen and (max-width: 1240px) {
  .profile-object-page__inner {
    padding: 0 30px;
  }
}

@media screen and (max-width: 601px) {
  .profile-object-page__inner {
    padding: 0;
  }
}

.profile-object-page__list-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 28px;
}

.profile-object-page__breadcrumbs {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 37px;
}

.profile-object-page__breadcrumbs-item {
  display: flex;
  align-items: center;
  margin-right: 26px;
  font: 400 18px/1.1 "Roboto", Arial, sans-serif;
}

.profile-object-page__breadcrumbs-url {
  color: #0098ed;
  cursor: pointer;
  transition: color 0.25s ease;
}

.profile-object-page__breadcrumbs-url:hover,
.profile-object-page__breadcrumbs-url:focus {
  color: #3bb9ff;
}

.profile-object-page__breadcrumbs-icon {
  margin-left: 26px;
  fill: #919aa6;
}

.profile-object-page__breadcrumbs-item-text {
  color: #919aa6;
}

.profile-object-page__title {
  color: #303030;
  font-weight: 700;
  font-size: 42px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.19;
  margin: 0;
}

@media screen and (max-width: 1240px) {
  .profile-object-page__title {
    font-size: 38px;
  }
}

@media screen and (max-width: 991px) {
  .profile-object-page__title {
    font-size: 34px;
  }
}

@media screen and (max-width: 601px) {
  .profile-object-page__title {
    font-size: 28px;
  }
}

.profile-object-page__object-id {
  align-self: flex-end;
  color: #979797;
  font: 400 16px/1.25 "Roboto", Arial, sans-serif;
}

.profile-object-page__object-wrap .apartment-card {
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.profile-object-page__mobile-date {
  display: none;
}

@media screen and (max-width: 480px) {
  .profile-object-page__object-wrap {
    width: 96%;
    margin: 2%;
  }

  .profile-object-page__list-header {
    flex-wrap: nowrap;
  }

  .profile-object-page__breadcrumbs {
    display: none;
  }

  .profile-object-page__title {
    margin-right: 10px;
    padding-right: 20px;
  }

  .profile-object-page__object-id {
    flex-shrink: 0;
    padding-right: 5px;
  }

  .profile-object-page__mobile-date {
    display: block;
    padding-right: 5px;
    color: #919aa6;
    font: 400 16px/1.2 "Roboto", Arial, sans-serif;
    text-align: end;
  }
}

.object-info {
  position: relative;
  width: calc(100% - 60px);
  margin: 0 auto;
  padding: 40px 30px;
  border-radius: 0 0 10px 10px;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.object-info__head {
  display: flex;
}

.object-info__add-note {
  position: relative;
  margin-left: 30px;
  color: #0098ed;
  font-weight: 400;
  transition: opacity 0.25s ease;
}

.object-info__add-note:hover,
.object-info__add-note:focus {
  opacity: 0.75;
}

.object-info__add-note-icon {
  width: 14px;
  height: 14px;
  margin-right: 10px;
  stroke: #0098ed;
}

.object-info__add-note-text {
  display: inline;
  flex-shrink: 0;
}

.object-info__add-note-mobile-text {
  display: none;
  align-self: flex-end;
}

.object-info__accessibility {
  display: flex;
  align-items: center;
  margin-left: auto;
  color: #919aa6;
}

.object-info__accessibility-circle {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 10px;
  border-radius: 50%;
}

.object-info__presentations {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 45%;
}

.object-info__presentation-title {
  margin: 0 25px 0 0;
  font-weight: 600;
}

.object-info__presentation-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}

.object-info__presentation-link-icon {
  fill: #919aa6;
}

.object-info__presentation-link-icon--pdf {
  fill: #d15656;
}

.object-info__presentation-link-icon--code {
  fill: #5696d1;
}

.object-info__presentation-link-title {
  color: #919aa6;
  font-size: 12px;
  font-family: 400;
}

.object-info__presentation-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 70%;
  margin: 0 25px 0 0;
  padding: 0 10px;
  border: 1px solid #e7e7e7;
  border-radius: 3px;
  background-color: #fafafa;
  cursor: pointer;
}

.object-info__presentation-link:hover .object-info__presentation-link-title--pdf {
  color: #d15656;
}

.object-info__presentation-link:hover .object-info__presentation-link-title--code {
  color: #5696d1;
}

@media screen and (max-width: 480px) {
  .object-info__presentations {
    display: none;
  }
}

.object-info__statistic {
  margin-top: 13px;
}

.object-info__tabs {
  display: flex;
}

.object-info__tab-btn {
  position: relative;
  display: flex;
  align-items: center;
  height: 64px;
  padding: 0 30px;
  border-radius: 10px 10px 0 0;
  color: #0098ed;
  transition: all 0.25s ease;
}

.object-info__tab-btn--active {
  background-color: #fff6ed;
  color: #000;
}

.object-info__tab-btn--active::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: #fff6ed;
}

.object-info__tab-btn--active .object-info__tab-icon {
  opacity: 1;
}

.object-info__tab-title {
  display: inline;
}

.object-info__tab-icon {
  margin: 0 8px 0 15px;
  opacity: 0.3;
  stroke: #334860;
}

.object-info__tab-amount {
  color: #334860;
  font-weight: 400;
  opacity: 0.5;
}

.object-info__statistic-title {
  margin-top: 30px;
  color: #303030;
  font: 700 20px/1.2 "Roboto", Arial, sans-serif;
}

.object-info__statistic-table {
  display: table;
  width: 100%;
  padding: 30px 0;
  border-radius: 10px;
  background-color: #fff6ed;
}

.object-info__statistic-empty {
  padding: 0 30px;
}

.object-info__statistic-empty-text {
  color: #303030;
  font: 400 16px/1.2 "Roboto", Arial, sans-serif;
}

.object-info__statistic-empty-text:not(:first-child) {
  margin-top: 16px;
}

.object-info__statistic-mobile-table {
  display: none;
  width: 100%;
  padding: 40px 20px;
  border-radius: 10px;
  background-color: #fff6ed;
}

.object-info__statistic-mobile-title {
  margin-bottom: 25px;
  color: #303030;
  font: 700 18px/1.22 "Roboto", Arial, sans-serif;
}

.object-info__statistic-mobile-empty {
  margin-top: 22px;
}

.object-info__statistic-mobile-empty-text {
  color: #303030;
  font: 400 20px/1.2 "Roboto", Arial, sans-serif;
}

.object-info__statistic-mobile-empty-text:not(:first-child) {
  margin-top: 22px;
}

.object-info__statistic-mobile-btn {
  margin-top: 30px;
  padding: 14px 30px 14px 0;
  color: #0088d4;
  font: 400 20px/1.2 "Roboto", Arial, sans-serif;
}

.object-info__statistic-mobile-btn-icon {
  margin-left: 14px;
  fill: #0088d4;
}

.object-info__statistic-table-row {
  display: table-row;
}

.object-info__statistic-table-col {
  display: table-cell;
  padding: 7px;
}

.object-info__statistic-table-col--avatar {
  width: 73px;
  padding-left: 30px;
}

.object-info__statistic-table-col--name {
  position: relative;
  width: 300px;
  color: #0098ed;
}

.object-info__statistic-table-col--complex {
  color: #919aa6;
}

.object-info__statistic-table-col--time {
  width: 60px;
  color: #919aa6;
}

.object-info__statistic-table-col--date {
  width: 100px;
}

.object-info__statistic-table-col--phone {
  width: 250px;
  padding-right: 30px;
  color: #0098ed;
  text-align: right;
}

.object-info__statistic-tip {
  position: absolute;
  right: 4px;
  padding: 2px 6px;
  border-radius: 6px;
  background-color: #979797;
  color: #fff;
  font: 400 12px/1.2 "Roboto", Arial, sans-serif;
}

.object-info__statistic-tip--request {
  background-color: #d15656;
}

.object-info__statistic-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.object-info__statistic-user-phone {
  color: #0098ed;
  cursor: pointer;
  transition: color 0.25s ease;
}

.object-info__statistic-user-phone:hover,
.object-info__statistic-user-phone:focus {
  color: #3bb9ff;
}

.object-info__pagination {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: 25px;
}

.object-info__pagination-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-left: 10px;
  border-radius: 5px;
  font-weight: 700;
  transition: all 0.25s ease-in-out;
}

.object-info__pagination-button:hover,
.object-info__pagination-button:focus,
.object-info__pagination-button--current {
  background-color: #0098ed;
  color: #fff;
}

.object-info__pagination-button--current {
  cursor: default;
}

.object-info__pagination-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.object-info__note-wrap {
  padding-top: 60px;
}

.object-info__note-wrap-inner {
  position: relative;
  padding: 21px 30px;
  border-radius: 10px;
  background-color: #ebf5ff;
  transition: background-color 0.25s ease;
}

.object-info__note-wrap-inner--editing {
  background-color: #f2f2f2;
}

.object-info__note-save-btn {
  position: absolute;
  top: 30px;
  right: 75px;
  display: flex;
  transform: translateY(-50%);
}

.object-info__note-edit-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
  transform: translateY(-50%);
}

.object-info__note-reset-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
  transform: translateY(-50%);
}

.object-info__note-edit-btn-icon {
  fill: #919aa6;
}

.object-info__note-edit-btn-text {
  display: none;
}

.object-info__note-reset-btn-icon {
  stroke: #919aa6;
}

.object-info__note-field {
  width: 100%;
  margin: 0;
  padding: 0 170px 0 0;
  border-style: none;
  background-color: transparent;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif !important;
  resize: none;
}

.object-info__note-field:focus {
  outline: none;
}

.object-info__note-text {
  padding-top: 12px;
  color: #979797;
  font-size: 14px;
}

.object-info__mobile-footer {
  display: none;
}

.object-info__mobile-footer-text {
  padding-left: 7px;
  color: #919aa6;
  font: 400 20px/1.2 "Roboto", Arial, sans-serif;
}

.object-info__mobile-footer-url {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  margin-top: 30px;
  border: 2px solid #0088d4;
  border-radius: 30px;
  color: #0088d4;
  font: 400 20px/1 "Roboto", Arial, sans-serif;
}

.object-info__mobile-footer-url:nth-of-type(2) {
  margin-top: 13px;
}

@media screen and (max-width: 480px) {
  .object-info {
    width: 100%;
    margin: 24px 0 0;
    padding: 20px 10px;
    border-radius: 16px;
  }

  .object-info__head {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 40px 0 7px;
  }

  .object-info__edit-link {
    height: 60px;
    background-color: #0088d4;
    font-size: 20px;
  }

  .object-info__add-note {
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0;
  }

  .object-info__add-note-icon {
    width: 20px;
    height: 20px;
    margin-right: 0;
    margin-bottom: 7px;
  }

  .object-info__add-note-text {
    display: none;
  }

  .object-info__add-note-mobile-text {
    display: inline;
  }

  .object-info__accessibility {
    width: 100%;
    margin-top: 35px;
    margin-left: 0;
  }

  .object-info__tab-btn {
    flex-basis: 33%;
    justify-content: center;
    padding: 0;
  }

  .object-info__tab-title {
    display: none;
  }

  .object-info__tab-icon {
    width: 24px;
    height: 28px;
    margin: 0 8px 0 0;
  }

  .object-info__tab-amount {
    color: #303030;
    font-weight: 600;
    opacity: 1;
  }

  .object-info__statistic-table {
    display: none;
  }

  .object-info__statistic-mobile-table {
    display: block;
  }

  .object-info__pagination {
    display: none;
  }

  .object-info__note-wrap {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .object-info__note-wrap-inner {
    border: 1px solid #0088d4;
  }

  .object-info__note-save-btn {
    top: calc(100% + 45px);
    left: 0;
    padding: 12px 20px;
    font: 400 20px/1.2 "Roboto", Arial, sans-serif;
  }

  .object-info__note-edit-btn {
    top: calc(100% + 45px);
    left: 0;
    padding: 12px 20px;
    border: 1px solid #0098ed;
    border-radius: 5px;
    color: #0098ed;
    font: 400 20px/1.2 "Roboto", Arial, sans-serif;
  }

  .object-info__note-reset-btn {
    top: calc(100% + 45px);
    left: 160px;
    padding: 12px 20px;
    font: 400 20px/1.2 "Roboto", Arial, sans-serif;
  }

  .object-info__note-edit-btn-icon {
    display: none;
  }

  .object-info__note-edit-btn-text {
    display: inline-block;
  }

  .object-info__note-reset-btn-icon {
    width: 24px;
    height: 26px;
  }

  .object-info__note-field {
    padding: 0;
  }

  .object-info__note-text {
    display: none;
  }

  .object-info__mobile-footer {
    display: block;
    margin-top: 30px;
  }
}

.apartment-narrow-card {
  display: flex;
  width: 100%;
  height: 60px;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.apartment-narrow-card:not(:last-child) {
  margin-bottom: 15px;
}

.apartment-narrow-card--hidden {
  opacity: 0;
}

.apartment-narrow-card__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: calc(100% - 45px);
  border-radius: 5px;
  background-color: #fff;
}

.apartment-narrow-card__inner--shadow {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}

.apartment-narrow-card__outer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
}

.apartment-narrow-card__image-wrapper {
  display: flex;
  flex-direction: column;
  width: 80px;
  height: 60px;
}

.apartment-narrow-card__image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 80px;
  height: 100%;
  border-radius: 5px 0 0 5px;
  -o-object-position: center;
     object-position: center;
}

.apartment-narrow-card__main-info {
  overflow: hidden;
  width: calc(100% - 475px);
  padding-left: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.apartment-narrow-card__main-info > *:not(:first-child) {
  margin-left: 15px;
}

.apartment-narrow-card__title {
  color: #0098ed;
  cursor: pointer;
  transition: color 0.25s ease;
  display: inline-block;
  border-bottom: 1px solid #0098ed;
  font-weight: 700;
  line-height: 0.9;
}

.apartment-narrow-card__title:hover,
.apartment-narrow-card__title:focus {
  color: #3bb9ff;
}

.apartment-narrow-card__mobile-title {
  color: #0098ed;
  cursor: pointer;
  transition: color 0.25s ease;
  display: none;
  overflow: hidden;
  margin-top: 6px;
  border-style: none;
  color: #0088d4;
  font: 700 16px/1.25 "Roboto", Arial, sans-serif;
  line-height: 0.9;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.apartment-narrow-card__mobile-title:hover,
.apartment-narrow-card__mobile-title:focus {
  color: #3bb9ff;
}

.apartment-narrow-card__title--private,
.apartment-narrow-card__mobile-title--private {
  border-bottom: 1px solid lightgray;
  color: lightgray;
}

.apartment-narrow-card__mobile-title--private {
  border-bottom: none;
}

.apartment-narrow-card__address {
  color: #979797;
}

.apartment-narrow-card__statistics {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  width: 100px;
  margin-left: 47px;
}

.apartment-narrow-card__statistic-item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #303030;
  font: 700 16px/1.25 "Roboto", Arial, sans-serif;
}

.apartment-narrow-card__statistic-item--blue {
  color: #0088d4;
}

.apartment-narrow-card__statistic-item--green {
  color: #41ae1b;
}

.apartment-narrow-card__statistic-item--red {
  color: #d15656;
}

.apartment-narrow-card__actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  width: 78px;
  margin-left: 70px;
}

.apartment-narrow-card__action-btn {
  flex-direction: column;
  padding: 0;
}

.apartment-narrow-card__action-btn:hover .apartment-narrow-card__action-btn-icon--pdf {
  fill: #d15656;
}

.apartment-narrow-card__action-btn:hover .apartment-narrow-card__action-btn-icon--code {
  fill: #5696d1;
}

.apartment-narrow-card__action-btn:hover .apartment-narrow-card__action-btn-title--pdf {
  color: #d15656;
}

.apartment-narrow-card__action-btn:hover .apartment-narrow-card__action-btn-title--code {
  color: #5696d1;
}

.apartment-narrow-card__action-btn-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 32px;
  margin-top: 6px;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  background-color: #fafafa;
}

.apartment-narrow-card__action-btn-icon {
  fill: #919aa6;
}

.apartment-narrow-card__action-btn-title {
  color: #919aa6;
  font: 400 10px/1.8 "Roboto", Arial, sans-serif;
}

.apartment-narrow-card__price {
  flex-shrink: 0;
  width: 145px;
  margin-right: 45px;
  margin-left: 13px;
  font-weight: 700;
  text-align: right;
}

.apartment-narrow-card__accessibility {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #00ab76;
}

.apartment-narrow-card__extra-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: none;
  width: 100%;
  height: 100%;
}

.apartment-narrow-card__extra-wrapper--active {
  display: block;
}

.apartment-narrow-card__extra-btn {
  position: relative;
  display: block;
  margin-right: 20px;
}

.apartment-narrow-card__extra-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.apartment-narrow-card__extra-btn--active .apartment-narrow-card__extra-icon {
  opacity: 1;
}

.apartment-narrow-card__extra-icon {
  opacity: 0.3;
  stroke: #334860;
}

.apartment-narrow-card__extra-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: transparent;
  cursor: pointer;
}

.apartment-narrow-card__extra-actions {
  position: absolute;
  top: 0;
  left: calc(100% - 180px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 180px;
  height: 150px;
  padding: 15px 54px 0 0;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.apartment-narrow-card__extra-accessibility {
  display: flex;
  align-items: center;
  color: #919aa6;
  font: 400 14px/2.14 "Roboto", Arial, sans-serif;
}

.apartment-narrow-card__extra-accessibility-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 6px;
  border-radius: 50%;
}

.apartment-narrow-card__extra-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #0088d4;
  font: 700 14px/2.14 "Roboto", Arial, sans-serif;
}

.apartment-narrow-card__extra-action--remove {
  color: #d15656;
}

.apartment-narrow-card__extra-action-close {
  position: absolute;
  top: 19px;
  right: 20px;
}

.apartment-narrow-card__extra-action-close-icon {
  stroke: #334860;
}

.apartment-narrow-card__mobile-accessibility,
.apartment-narrow-card__mobile-price,
.apartment-narrow-card__mobile-statistic-icon,
.apartment-narrow-card__mobile-extra-overlay {
  display: none;
}

@media screen and (max-width: 480px) {
  .apartment-narrow-card {
    height: auto;
  }

  .apartment-narrow-card__inner {
    flex-wrap: wrap;
    justify-content: start;
    width: 100%;
    padding: 10px 10px 18px;
    border-radius: 10px;
    box-shadow: none;
  }

  .apartment-narrow-card__image-wrapper {
    align-self: flex-start;
    width: 90px;
    height: 70px;
  }

  .apartment-narrow-card__image {
    width: 90px;
    height: 70px;
    border-radius: 5px;
  }

  .apartment-narrow-card__mobile-accessibility {
    display: flex;
    align-items: center;
    margin-top: 6px;
    color: #919aa6;
    font: 400 13px/1.39 "Roboto", Arial, sans-serif;
  }

  .apartment-narrow-card__mobile-accessibility-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 6px;
    border-radius: 50%;
  }

  .apartment-narrow-card__main-info {
    display: flex;
    flex-direction: column;
    width: calc(100% - 90px);
  }

  .apartment-narrow-card__main-info > *:not(:first-child) {
    margin-left: 0;
  }

  .apartment-narrow-card__mobile-price {
    display: block;
    color: #303030;
    font: 700 16px/1.25 "Roboto", Arial, sans-serif;
  }

  .apartment-narrow-card__complex,
  .apartment-narrow-card__address {
    overflow: hidden;
    margin-top: 6px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .apartment-narrow-card__title {
    display: none;
  }

  .apartment-narrow-card__mobile-title {
    display: inline-block;
  }

  .apartment-narrow-card__complex {
    color: #303030;
    font: 400 13px/1.39 "Roboto", Arial, sans-serif;
  }

  .apartment-narrow-card__address {
    color: #919aa6;
    font: 400 13px/1.39 "Roboto", Arial, sans-serif;
  }

  .apartment-narrow-card__statistics {
    width: auto;
    margin: 19px 0 0;
  }

  .apartment-narrow-card__statistic-item {
    width: auto;
  }

  .apartment-narrow-card__statistic-item:not(:last-of-type) {
    margin-right: 20px;
  }

  .apartment-narrow-card__statistic-item--blue,
  .apartment-narrow-card__statistic-item--green,
  .apartment-narrow-card__statistic-item--red {
    color: #303030;
  }

  .apartment-narrow-card__mobile-statistic-icon {
    display: inline-block;
    margin-right: 6px;
    opacity: 0.3;
    stroke: #334860;
  }

  .apartment-narrow-card__actions {
    width: auto;
    margin-top: 19px;
    margin-left: auto;
  }

  .apartment-narrow-card__action-btn {
    flex-direction: row;
    width: 57px;
    height: 32px;
    padding: 4px 8px 4px 6px;
    border: 1px solid #e7e7e7;
    border-radius: 4px;
    background-color: #fafafa;
    color: #919aa6;
    font: 400 10px/1.8 "Roboto", Arial, sans-serif;
  }

  .apartment-narrow-card__action-btn:first-child {
    margin-right: 15px;
  }

  .apartment-narrow-card__action-btn-icon-wrapper {
    width: auto;
    height: auto;
    margin-top: 0;
    border-style: none;
    border-radius: 0;
    background-color: transparent;
  }

  .apartment-narrow-card__action-btn-icon--pdf {
    fill: #d15656;
  }

  .apartment-narrow-card__action-btn-icon--code {
    fill: #5696d1;
  }

  .apartment-narrow-card__action-btn-title {
    margin-left: 2px;
  }

  .apartment-narrow-card__extra-btn {
    position: absolute;
    top: 12px;
    right: 15px;
    margin: 0;
  }

  .apartment-narrow-card__mobile-extra-overlay {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: calc(100% - 212px);
    height: 100%;
    border-radius: 10px;
    background-color: #334860;
    opacity: 0.75;
  }

  .apartment-narrow-card__extra-actions {
    left: calc(100% - 232px);
    width: 232px;
    height: 100%;
    padding: 7px 64px 0 0;
    box-shadow: none;
  }

  .apartment-narrow-card__extra-action {
    font: 700 18px/2.88 "Roboto", Arial, sans-serif;
  }

  .apartment-narrow-card__extra-action--remove {
    color: #d15656;
  }

  .apartment-narrow-card__extra-action-close {
    top: 12px;
    right: 15px;
  }

  .apartment-narrow-card__price,
  .apartment-narrow-card__outer,
  .apartment-narrow-card__extra-overlay,
  .apartment-narrow-card__extra-accessibility {
    display: none;
  }

  .apartment-narrow-card__action-btn-title--hidden {
    display: none;
  }
}

.mobile-header__filters {
  display: none;
  padding: 10px 20px;
  transition: padding .25s linear .5s;
}

.mobile-header__filters-btn {
  display: inline-block;
  width: 100%;
  height: 48px;
  border: 2px solid #0088d4;
  border-radius: 24px;
  color: #0088d4;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}

.mobile-header__filters-btn-box {
  width: 40%;
}

.mobile-header__filters-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  height: 100%;
}

.mobile-header__filters-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.18);
}

.mobile-header__filters-popup {
  position: relative;
  overflow-y: auto;
  width: 100%;
  height: 100%;
}

.mobile-header__filters-inner {
  padding: 20px 20px 30px;
  background-color: #fff;
}

.mobile-header__filters-btn-reset {
  display: inline-block;
  width: 100%;
  height: 48px;
  margin-top: 20px;
  background-color: transparent;
  color: #979797;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}

.mobile-header__filter-search {
  padding: 55px 20px;
  background-color: #f5f6fa;
}

.mobile-header__filters-btn-search {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  display: inline-block;
  width: calc(100% - 40px);
  height: 70px;
  border-radius: 5px;
  background-color: #0088d4;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}

.mobile-header__filters-title {
  font-weight: 700;
  font-size: 42px;
}

.mobile-header__filters-btn-close {
  position: absolute;
  top: 30px;
  right: 30px;
}

.mobile-header__filters-btn-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.mobile-header__filters-icon-close {
  fill: #919aa6;
}

@media screen and (max-width: 601px) {
  .mobile-header__filters {
    display: block;
  }
}

.mobile-btn-selector {
  margin-top: 50px;
}

.mobile-btn-selector__title {
  font-weight: 700;
  font-size: 20px;
}

.mobile-btn-selector__section {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}

.mobile-btn-selector__btn {
  display: inline-block;
  width: 60px;
  height: 60px;
  margin-right: 10px;
  border: 1px solid #0088d4;
  border-radius: 5px;
  color: #0088d4;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  transition: .25s background-color ease;
}

.mobile-btn-selector__btn--active {
  background-color: #ebf5ff;
}

.mobile-extra-filters__section {
  margin-top: 40px;
}

.mobile-extra-filters__title {
  font-weight: 700;
  font-size: 20px;
}

.mobile-extra-filters__block {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}

.mobile-extra-filters__btn {
  margin-top: 10px;
  padding: 12px 20px;
  border: 1px solid #0088d4;
  border-radius: 5px;
  color: #0088d4;
  font-size: 20px;
  line-height: 1.2;
  transition: .25s background-color ease;
}

.mobile-extra-filters__btn:not(:last-child) {
  margin-right: 10px;
}

.mobile-extra-filters__btn--active {
  background-color: #ebf5ff;
}

.mobile-extra-filters__btn-blue {
  display: inline-block;
  width: 100%;
  height: 48px;
  border-radius: 5px;
  background-color: #ebf5ff;
  color: #0088d4;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}

.mobile-range-input {
  margin-top: 40px;
}

.mobile-range-input__title {
  font-weight: 700;
  font-size: 20px;
}

.mobile-range-input__section {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1/3;
  justify-content: space-between;
  margin-top: 10px;
}

.mobile-range-input__label {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: calc(50% - 5px);
}

.mobile-range-input__prev-placeholder {
  position: absolute;
  top: 16px;
  left: 20px;
  color: #99a3af;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
  pointer-events: none;
}

.mobile-range-input__next-placeholder {
  position: absolute;
  top: 6px;
  right: 20px;
  padding: 10px 0 10px 10px;
  color: #303030;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
  pointer-events: none;
}

.mobile-range-input__field {
  width: calc(50% - 5px);
  padding: 0 42px;
  border-radius: 5px;
  background-color: #f2f2f2;
}

.mobile-range-input__field:focus {
  z-index: 1;
}

.mobile-search-buildings {
  margin-top: 40px;
}

.mobile-search-buildings__title {
  font-weight: 700;
  font-size: 20px;
}

.mobile-search-buildings__section {
  margin-top: 10px;
}

.mobile-search-buildings__input {
  height: 48px;
  padding: 20px;
  border: 1px solid #e1e2e5;
  border-radius: 5px;
  background-color: #f2f2f2;
}

.mobile-apartment-card {
  position: relative;
  display: none;
  padding-top: 10px;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  background-color: #fff;
}

.mobile-apartment-card__gallery {
  display: flex;
  overflow-x: scroll;
  max-width: 90vw;
  margin-right: 4%;
  margin-left: 4%;
  padding: 0;
  list-style-type: none;
}

.mobile-apartment-card__gallery-item {
  flex-shrink: 0;
  width: 270px;
  height: 180px;
  margin: 0;
}

.mobile-apartment-card__gallery-item:not(:last-child) {
  margin-right: 10px;
}

.mobile-apartment-card__gallery-item:first-child:last-child {
  width: 100%;
}

.mobile-apartment-card__gallery-fish {
  width: 100%;
}

.mobile-apartment-card__img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.mobile-apartment-card__tag-commission {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 4px 8px;
  border: 1px solid #41ae1b;
  border-radius: 3px;
  background-color: rgba(65, 174, 27, 0.9);
  color: #fff;
  font: 400 16px/1.25 "Roboto", Arial, sans-serif;
}

.mobile-apartment-card__checkbox ~ .mobile-apartment-card__tag-commission {
  left: 56px;
}

.mobile-apartment-card__description {
  padding: 20px;
}

.mobile-apartment-card__title {
  color: #303030;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.17;
}

.mobile-apartment-card__title--blue {
  color: #0088d4;
}

.mobile-apartment-card__complex {
  margin-top: 14px;
  color: #000;
  font: 700 16px/1.2 "Roboto", Arial, sans-serif;
}

.mobile-apartment-card__complex-name {
  margin-right: 5px;
}

.mobile-apartment-card__complex-year {
  color: #919aa6;
  font: 400 16px/1.2 "Roboto", Arial, sans-serif;
}

.mobile-apartment-card__address {
  color: #303030;
  font: 400 16px/1.5 "Roboto", Arial, sans-serif;
}

.mobile-apartment-card__specs {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.mobile-apartment-card__advantages-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 5px;
  list-style-type: none;
}

.mobile-apartment-card__advantage {
  text-align: end;
}

.mobile-apartment-card__advantage:not(:first-child) {
  margin-top: 8px;
}

.mobile-apartment-card__advantage-icon {
  position: relative;
  top: 1px;
  fill: #41ae1b;
}

.mobile-apartment-card__price {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  white-space: nowrap;
}

.mobile-apartment-card__current-price {
  margin-right: 14px;
  font-weight: 700;
  font-size: 22px;
}

.mobile-apartment-card__price-by-square {
  margin-top: 9px;
  color: #919aa6;
  font: 400 16px/1.25 "Roboto", Arial, sans-serif;
}

.mobile-apartment-card__metro-station {
  align-items: center;
  margin-top: 15px;
  color: #303030;
  font: 400 16px/1.25 "Roboto", Arial, sans-serif;
}

.mobile-apartment-card__metro-station-time-to {
  color: #919aa6;
  white-space: nowrap;
}

.mobile-apartment-card__metro-station-name {
  margin-right: 14px;
}

.mobile-apartment-card__metro-station-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 6px;
  border: 4px solid #ed1f24;
  border-radius: 50%;
}

.mobile-apartment-card__owner-block {
  margin-top: 20px;
}

.mobile-apartment-card__owner-block-title {
  color: #919aa6;
  font: 400 16px/1.2 "Roboto", Arial, sans-serif;
  text-align: center;
}

.mobile-apartment-card__owner-links {
  display: flex;
  justify-content: space-between;
  margin-top: 13px;
}

.mobile-apartment-card__owner-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  height: 60px;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  background-color: #fafafa;
  color: #303030;
  font: 400 14px/1.3 "Roboto", Arial, sans-serif;
}

.mobile-apartment-card__owner-link-icon-code {
  margin-right: 6px;
  fill: #5696d1;
}

.mobile-apartment-card__owner-link-icon-pdf {
  margin-right: 6px;
  fill: #d15656;
}

.mobile-apartment-card__options {
  display: flex;
  margin-top: 15px;
}

.mobile-apartment-card__btn {
  flex-grow: 1;
  padding: 18px 30px;
  border-radius: 5px;
  background-color: #ebf5ff;
  color: #0088d4;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
}

.mobile-apartment-card__like-btn {
  position: relative;
  margin: 0 30px;
}

.mobile-apartment-card__like-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.mobile-apartment-card__like-icon {
  display: block;
  fill: transparent;
  stroke: #919aa6;
  transition: .25s fill ease, .25s stroke ease;
}

.mobile-apartment-card__like-icon--active {
  fill: #d15656;
  stroke: #d15656;
}

.mobile-apartment-card__share-btn {
  position: relative;
}

.mobile-apartment-card__share-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.mobile-apartment-card__share-icon {
  display: block;
  fill: #919aa6;
}

.mobile-apartment-card__remove-btn {
  position: relative;
  margin: 0 30px;
}

.mobile-apartment-card__remove-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.mobile-apartment-card__remove-icon {
  display: block;
  stroke: rgba(145, 154, 166, 0.5);
}

.mobile-apartment-card__checkbox {
  position: absolute;
  top: 16px;
  left: 16px;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background-color: transparent;
  transition: background-color .25s;
}

.mobile-apartment-card__checkbox--active {
  background-color: rgba(255, 255, 255, 0.9);
}

.mobile-apartment-card__checkbox .checkbox__checkbox {
  margin: 0;
  border: 2px solid #979797;
}

@media screen and (max-width: 480px) {
  .mobile-apartment-card {
    display: block;
    width: 96%;
    margin: 2%;
  }
}

@media screen and (max-width: 300px) {
  .mobile-apartment-card__description {
    padding: 20px 10px 10px;
  }

  .mobile-apartment-card__options {
    justify-content: space-between;
  }

  .mobile-apartment-card__btn {
    margin-right: 20px;
  }

  .mobile-apartment-card__like-btn {
    margin-right: 20px;
  }

  .mobile-apartment-card__remove-btn {
    margin-right: 0;
  }
}

.mobile-broker-placemark {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 5px;
  background-color: rgba(235, 245, 255, 0.5);
}

.mobile-broker-placemark__avatar-wrap {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  margin-right: 12px;
}

.mobile-broker-placemark__avatar-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.mobile-broker-placemark__avatar-empty {
  opacity: .2;
  stroke: #334860;
}

.mobile-broker-placemark__text-content {
  width: calc(100% - 100px);
  color: #303030;
  line-height: 1.5;
}

.mobile-broker-placemark__company {
  color: #919aa6;
}

.mobile-broker-placemark__btn-arrow {
  position: relative;
  margin-left: auto;
}

.mobile-broker-placemark__btn-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.mobile-broker-placemark__btn-arrow-icon {
  fill: #919aa6;
  transition: .5s transform ease;
  transform: rotate(0);
}

.mobile-broker-placemark__btn-arrow-icon--up {
  transform: rotate(180deg);
}

.mobile-broker-placemark__phone {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-top: 10px;
  padding: 18px 0;
  border-radius: 5px;
  background-color: #e2f0ff;
  color: #0088d4;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}

.mobile-broker-placemark__phone::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.mobile-broker-placemark__phone--whatsapp {
  margin-top: 10px;
  background-color: rgba(13, 193, 67, 0.75);
  color: #fff;
}

.mobile-broker-placemark__contacts {
  width: 100%;
}

.mobile-broker-placemark__btn {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 5px;
  padding: 18px 0;
  border-radius: 5px;
  background-color: #e2f0ff;
  color: #0088d4;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}

.mobile-broker-placemark__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.mobile-broker-placemark__btn-pdf {
  background-color: rgba(255, 162, 80, 0.1);
  color: #d15656;
}

.mobile-broker-placemark__btn-pdf--success {
  background-color: #f2f2f2;
  color: #41ae1b;
}

@media screen and (max-width: 300px) {
  .mobile-broker-placemark {
    padding: 5px 15px;
  }

  .mobile-broker-placemark__avatar-wrap {
    margin-right: 8px;
  }
}

.mobile-page-filters {
  display: none;
}

@media screen and (max-width: 480px) {
  .mobile-page-filters {
    display: block;
    width: 100%;
  }
}

.mobile-page-filters__open-btn {
  display: flex;
  justify-content: space-between;
  min-width: 165px;
  margin-bottom: 0;
  padding: 10px;
  font-weight: normal;
}

.mobile-page-filters__back-button {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
}

.mobile-page-filters__sorting-list {
  position: absolute;
  top: 35%;
  left: 4%;
  width: 92%;
  border-radius: 10px;
  background: #fff;
  contain: content;
}

.mobile-page-filters__sorting-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 100%;
  margin: 0 auto;
  padding: 18px 14px;
  font-size: 20px;
  line-height: 1.2;
}

.mobile-page-filters__sorting-btn--current {
  font-weight: bold;
}

.mobile-page-filters__sorting-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.mobile-page-filters__sorting-icon {
  margin-left: 14px;
  fill: #979797;
  transition: .25s transform ease;
}

.mobile-page-filters__sorting-icon--up {
  transform: rotate(180deg);
}

.complexes__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 1350px;
  max-width: 100%;
  height: inherit;
  margin: 0 auto;
  padding: 0 30px;
  flex-direction: column;
}

@media screen and (max-width: 1400px) {
  .complexes__inner {
    width: 1200px;
  }
}

@media screen and (max-width: 1240px) {
  .complexes__inner {
    padding: 0 30px;
  }
}

@media screen and (max-width: 601px) {
  .complexes__inner {
    padding: 0;
  }
}

.complexes__caption {
  font-size: 18px;
}

@media screen and (max-width: 480px) {
  .complexes__caption {
    margin-left: 10px;
    font-size: inherit;
    line-height: 1.4;
    color: #919aa6;
  }
}

.complexes__title {
  color: #303030;
  font-weight: 700;
  font-size: 42px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.19;
  margin-bottom: 28px;
}

@media screen and (max-width: 1240px) {
  .complexes__title {
    font-size: 38px;
  }
}

@media screen and (max-width: 991px) {
  .complexes__title {
    font-size: 34px;
  }
}

@media screen and (max-width: 601px) {
  .complexes__title {
    font-size: 28px;
  }
}

@media screen and (max-width: 480px) {
  .complexes__title {
    margin-left: 10px;
    font-size: 42px;
  }
}

.complexes__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 24px;
  width: 100%;
  margin: 25px 0 0;
  padding: 0;
  list-style-type: none;
}

.complexes__preloader {
  position: relative;
  width: 100%;
}

.complexes__preloader-ball {
  position: absolute;
  top: 0;
  left: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transform: translateX(-50%) translateZ(0);
  animation: pulse 1.8s infinite ease-in-out;
  animation-delay: -0.16s;
  animation-fill-mode: both;
}

.complexes__preloader-ball::before,
.complexes__preloader-ball::after {
  content: "";
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  animation: pulse 1.8s infinite ease-in-out;
  animation-fill-mode: both;
}

.complexes__preloader-ball::before {
  left: -35px;
  animation-delay: -0.32s;
}

.complexes__preloader-ball::after {
  left: 35px;
}

.complexes__message {
  color: #979797;
  text-align: center;
}

.complexes-developer-page {
  padding: 55px 10px 20px;
}

.complexes-developer-page__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 1350px;
  max-width: 100%;
  height: inherit;
  margin: 0 auto;
  padding: 0 30px;
  position: static;
  flex-direction: column;
}

@media screen and (max-width: 1400px) {
  .complexes-developer-page__inner {
    width: 1200px;
  }
}

@media screen and (max-width: 1240px) {
  .complexes-developer-page__inner {
    padding: 0 30px;
  }
}

@media screen and (max-width: 601px) {
  .complexes-developer-page__inner {
    padding: 0;
  }
}

.complexes-developer-page__filters.page-filters {
  width: auto;
  margin-right: 63px;
  margin-bottom: 0;
}

.complexes-developer-page__filters .page-filters__filter {
  margin: 0;
}

.complexes-developer-page__filters .page-filters__sorting-list {
  margin-right: 46px;
}

.complexes-developer-page__list-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 34px;
}

.complexes-developer-page__list-header .fixed-list-button {
  background-color: #334860;
}

.complexes-developer-page__list-header .fixed-list-button:hover,
.complexes-developer-page__list-header .fixed-list-button:focus {
  background-color: #4e6d92;
}

.complexes-developer-page__title {
  color: #303030;
  font-weight: 700;
  font-size: 42px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.19;
  overflow: hidden;
  margin: 0;
  text-overflow: ellipsis;
}

@media screen and (max-width: 1240px) {
  .complexes-developer-page__title {
    font-size: 38px;
  }
}

@media screen and (max-width: 991px) {
  .complexes-developer-page__title {
    font-size: 34px;
  }
}

@media screen and (max-width: 601px) {
  .complexes-developer-page__title {
    font-size: 28px;
  }
}

.complexes-developer-page__complex-cards {
  width: 100%;
  margin-top: 24px;
}

.complexes-developer-page__filters-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  padding-right: 52px;
}

.complexes-developer-page__head-text {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  color: rgba(145, 154, 166, 0.5);
  font: 400 16px/1.125 "Roboto", Arial, sans-serif;
}

.complexes-developer-page__head-text--cabinet {
  width: 238px;
  margin-right: 54px;
  padding: 0 20px;
}

.complexes-developer-page__head-text--date {
  width: 113px;
  margin-right: 24px;
  padding: 0 12px;
}

.complexes-developer-page__pagination {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: 25px;
}

.complexes-developer-page__pagination-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-left: 10px;
  border-radius: 5px;
  font-weight: 700;
  transition: all 0.25s ease-in-out;
}

.complexes-developer-page__pagination-button:hover,
.complexes-developer-page__pagination-button:focus,
.complexes-developer-page__pagination-button--current {
  background-color: #0098ed;
  color: #fff;
}

.complexes-developer-page__pagination-button--current {
  cursor: default;
}

.complexes-developer-page__pagination-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.complexes-developer-page__no-complexes {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 150px 30px;
  border: 1px solid #e1e2e5;
  border-radius: 10px;
}

.complexes-developer-page__no-complexes-text {
  width: 487px;
  max-width: 100%;
  font-size: 18px;
  line-height: 1.33;
  text-align: center;
}

.complexes-developer-page__no-complexes-btn {
  margin-top: 30px;
}

.complexes-developer-page__search-empty {
  margin-top: 200px;
  color: #979797;
  text-align: center;
}

.complexes-developer-page__mobile-add-btn {
  display: none;
}

@media screen and (max-width: 991px) {
  .complexes-developer-page__filters.page-filters,
  .complexes-developer-page__head-text {
    margin-right: 20px;
  }

  .complexes-developer-page__filters .page-filters__search {
    width: 230px;
  }
}

@media screen and (max-width: 768px) {
  .complexes-developer-page__inner {
    padding: 0 10px;
  }

  .complexes-developer-page__filters .page-filters__sorting-list {
    margin-right: 0;
  }

  .complexes-developer-page__filters .page-filters__search {
    width: 200px;
  }

  .complexes-developer-page__head-text--cabinet {
    width: 170px;
  }
}

@media screen and (max-width: 601px) {
  .complexes-developer-page__add-complex-button {
    display: none;
  }

  .complexes-developer-page__filters.page-filters {
    width: 100%;
    margin-right: 0;
  }

  .complexes-developer-page__list-header {
    margin-bottom: 37px;
  }

  .complexes-developer-page__title {
    color: #303030;
    font: 700 42px/1 "Roboto", Arial, sans-serif;
  }

  .complexes-developer-page__filters-wrapper {
    flex-wrap: wrap;
    padding-right: 0;
  }

  .complexes-developer-page__filters-wrapper .page-filters__sorting-list {
    display: none;
  }

  .complexes-developer-page__filters-wrapper .mobile-page-filters {
    margin-top: 0;
  }

  .complexes-developer-page__filters-wrapper .page-filters__search {
    width: 100%;
    max-width: 300px;
  }

  .complexes-developer-page__complex-cards {
    margin-top: 0;
  }

  .complexes-developer-page__list-head-icons,
  .complexes-developer-page__head-text {
    display: none;
  }

  .complexes-developer-page__mobile-add-btn {
    display: block;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    margin-right: 10px;
    padding: 17px 0;
    border-radius: 50%;
    background-color: #0088d4;
    color: #fff;
    text-align: center;
  }

  .complexes-developer-page__mobile-add-btn-icon {
    fill: #fff;
    transform: rotate(45deg);
  }
}

.complex-add {
  padding: 40px 0 85px;
}

.complex-add__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 1350px;
  max-width: 100%;
  height: inherit;
  margin: 0 auto;
  padding: 0 30px;
}

@media screen and (max-width: 1400px) {
  .complex-add__inner {
    width: 1200px;
  }
}

@media screen and (max-width: 1240px) {
  .complex-add__inner {
    padding: 0 30px;
  }
}

@media screen and (max-width: 601px) {
  .complex-add__inner {
    padding: 0;
  }
}

.complex-add__breadcrumbs {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 37px;
}

.complex-add__breadcrumbs-item {
  display: flex;
  align-items: center;
  margin-right: 26px;
  font: 400 18px/1.1 "Roboto", Arial, sans-serif;
}

.complex-add__breadcrumbs-url {
  color: #0098ed;
  cursor: pointer;
  transition: color 0.25s ease;
}

.complex-add__breadcrumbs-url:hover,
.complex-add__breadcrumbs-url:focus {
  color: #3bb9ff;
}

.complex-add__breadcrumbs-icon {
  margin-left: 26px;
  fill: #919aa6;
}

.complex-add__breadcrumbs-item-text {
  color: #919aa6;
}

.complex-add__title {
  color: #303030;
  font-weight: 700;
  font-size: 42px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.19;
  margin: 0 0 40px 10px;
}

@media screen and (max-width: 1240px) {
  .complex-add__title {
    font-size: 38px;
  }
}

@media screen and (max-width: 991px) {
  .complex-add__title {
    font-size: 34px;
  }
}

@media screen and (max-width: 601px) {
  .complex-add__title {
    font-size: 28px;
  }
}

.complex-add__text {
  padding-top: 12px;
  color: #303030;
  font-size: 14px;
  line-height: 1.4;
}

.complex-add__text--gray,
.complex-add__text--light {
  color: #979797;
}

.complex-add__text--flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.complex-add__text--error {
  color: #f00;
}

.complex-add__text--bold {
  font-weight: 600;
}

.complex-add__text a {
  color: #0098ed;
  cursor: pointer;
  transition: color 0.25s ease;
}

.complex-add__text a:hover,
.complex-add__text a:focus {
  color: #3bb9ff;
}

.complex-add__star {
  color: #f00;
  font-weight: 700;
}

.complex-add__block {
  position: relative;
  display: grid;
  grid-template-columns: 910px 1fr;
  grid-gap: 60px;
  width: 100%;
  margin-bottom: 25px;
}

.complex-add__block--with-card {
  display: block;
}

.complex-add__block-anchor {
  position: absolute;
  top: -30px;
  left: 0;
  width: 0;
  height: 0;
}

.complex-add__card {
  position: relative;
  border-radius: 10px;
  background-color: #fff;
  height: 100%;
  padding: 20px 20px 40px;
}

.complex-add__card--accessibility {
  display: grid;
  grid-template-columns: 1fr 155px;
  grid-gap: 50px;
}

.complex-add__card--commission {
  padding: 20px 20px 12px;
}

.complex-add__block-info {
  padding: 30px 0 40px;
}

.complex-add__block-info--message {
  color: #919aa6;
  font-weight: 700;
  line-height: 1.25;
}

.complex-add__block-info--description {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.complex-add__block-info-text {
  color: #303030;
  font-size: 14px;
  line-height: 1.29;
}

.complex-add__block-info-images-icon {
  margin: -10px 0 20px;
  fill: #ffa250;
}

.complex-add__card-title {
  margin-bottom: 40px;
  color: #303030;
  font-size: 24px;
  line-height: 1.25;
}

.complex-add__address-input {
  margin-bottom: 50px;
}

.complex-add__card-box-title {
  margin-bottom: 15px;
  color: #303030;
  font-size: 16px;
  line-height: 1.1875;
}

.complex-add__card-box-title--underline {
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: 1px solid #c4c4c4;
}

.complex-add__card-box-title--parking {
  display: flex;
  align-items: baseline;
  width: 100%;
}

.complex-add__footer {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 50px;
}

@media screen and (max-width: 480px) {
  .complex-add__footer {
    grid-template-columns: 1fr;
  }
}

.complex-add__footer-buttons {
  max-width: 100%;
}

.complex-add__footer-btn--save {
  color: #0098ed;
  font-weight: 400;
}

@media screen and (max-width: 480px) {
  .complex-add__footer-btn {
    width: 100%;
  }
}

.complex-add__footer-preloader {
  display: inline-flex;
  align-items: center;
  height: 46px;
  margin-left: 50px;
  color: #0098ed;
  font: 700 16px/1 "Roboto", Arial, sans-serif;
}

.complex-add__progress-bar {
  width: 95%;
  height: 20px;
  margin: 20px 0 0;
  border-radius: 5px;
  background: #d1d9e3;
}

.complex-add__loading-line {
  width: 0;
  height: 20px;
  border-radius: 5px;
  background: repeating-linear-gradient(45deg, #0098ed 7px, #0098ed 14px, #1eafff 14px, #1eafff 21px);
  background-size: 300% 100%;
  /* Animation */
  transition: width .2s;
  animation: ribbon 12s linear infinite;
}

/* Progress bar animation */

@keyframes ribbon {
  from {
    background-position: 0%;
  }

  to {
    background-position: 100%;
  }
}

.complex-add__footer-preloader-icon {
  margin-left: 20px;
  fill: #0098ed;
  animation: rotation 0.5s linear infinite;
}

.complex-add__footer-message {
  padding-top: 14px;
  color: #919aa6;
  text-align: right;
}

.complex-add__not-filled-blocks-warning {
  color: #0098ed;
}

.complex-add__not-filled-blocks-warning::before {
  color: #303030;
}

.complex-add__not-filled-blocks-warning:not(:first-of-type):not(:last-of-type)::before {
  content: ", ";
}

.complex-add__not-filled-blocks-warning:last-of-type::before {
  content: " и ";
}

@media screen and (max-width: 1240px) {
  .complex-add__block {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 601px) {
  .complex-add__footer {
    padding: 0 20px;
  }
}

.complex-narrow-card {
  display: flex;
  width: 100%;
  height: 60px;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.complex-narrow-card:not(:last-child) {
  margin-bottom: 29px;
}

.complex-narrow-card--hidden {
  opacity: 0;
}

.complex-narrow-card__inner {
  position: relative;
  display: flex;
  align-items: center;
  width: calc(100% - 28px);
  border-radius: 5px;
  background-color: #fff;
}

.complex-narrow-card__inner--shadow {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}

.complex-narrow-card__outer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 14px;
}

.complex-narrow-card__image-wrapper {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  width: 80px;
  height: 60px;
}

.complex-narrow-card__image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 80px;
  height: 100%;
  border-radius: 5px 0 0 5px;
  -o-object-position: center;
     object-position: center;
}

.complex-narrow-card__main-info {
  display: flex;
  overflow: hidden;
  width: 485px;
  margin-right: 63px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.complex-narrow-card__main-info-text-wrap {
  display: flex;
  align-items: center;
  width: calc(100% - 80px);
}

.complex-narrow-card__main-info-text {
  padding-left: 20px;
}

.complex-narrow-card__title {
  color: #0098ed;
  cursor: pointer;
  transition: color 0.25s ease;
  display: inline-block;
  color: #0088d4;
  font: 700 16px/1.25 "Roboto", Arial, sans-serif;
  text-decoration: underline;
}

.complex-narrow-card__title:hover,
.complex-narrow-card__title:focus {
  color: #3bb9ff;
}

.complex-narrow-card__title:hover,
.complex-narrow-card__title:focus {
  color: #22b0ff;
}

.complex-narrow-card__mobile-title {
  color: #0098ed;
  cursor: pointer;
  transition: color 0.25s ease;
  display: none;
  overflow: hidden;
  margin-top: 6px;
  border-style: none;
  color: #0088d4;
  font: 700 16px/1.25 "Roboto", Arial, sans-serif;
  line-height: 0.9;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.complex-narrow-card__mobile-title:hover,
.complex-narrow-card__mobile-title:focus {
  color: #3bb9ff;
}

.complex-narrow-card__title--private,
.complex-narrow-card__mobile-title--private {
  color: lightgray;
}

.complex-narrow-card__mobile-title--private {
  border-bottom: none;
}

.complex-narrow-card__address {
  overflow: hidden;
  color: #979797;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.complex-narrow-card__broker-cabinet {
  margin-right: 54px;
}

.complex-narrow-card__broker-cabinet-btn {
  display: flex;
  align-items: center;
  width: 238px;
  height: 28px;
  padding: 5px 10px;
  border-radius: 3px;
  font: 700 16px/1.25 "Roboto", Arial, sans-serif;
}

.complex-narrow-card__broker-cabinet-btn .complex-narrow-card__broker-cabinet-btn-icon {
  margin-right: 7px;
}

.complex-narrow-card__broker-cabinet-btn--edit {
  color: #0088d4;
  text-decoration: underline;
}

.complex-narrow-card__broker-cabinet-btn--edit .complex-narrow-card__broker-cabinet-btn-icon {
  fill: #0088d4;
}

.complex-narrow-card__broker-cabinet-btn--edit:hover,
.complex-narrow-card__broker-cabinet-btn--edit:focus {
  color: #22b0ff;
}

.complex-narrow-card__broker-cabinet-btn--edit:hover .complex-narrow-card__broker-cabinet-btn-icon,
.complex-narrow-card__broker-cabinet-btn--edit:focus .complex-narrow-card__broker-cabinet-btn-icon {
  fill: #22b0ff;
}

.complex-narrow-card__broker-cabinet-btn--create {
  background-color: #d15656;
  color: #fff;
  font-weight: normal;
}

.complex-narrow-card__broker-cabinet-btn--create .complex-narrow-card__broker-cabinet-btn-icon {
  fill: #fff;
}

.complex-narrow-card__broker-cabinet-btn--create:hover,
.complex-narrow-card__broker-cabinet-btn--create:focus {
  background-color: #e19292;
}

.complex-narrow-card__date {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 113px;
  height: 24px;
  margin-right: 20px;
  color: #919aa6;
  font: 700 16px/1.25 "Roboto", Arial, sans-serif;
}

.complex-narrow-card__price-file-update {
  display: flex;
  align-items: center;
  justify-content: center;
}

.complex-narrow-card__price-file-update-icon {
  width: 24px;
  height: 24px;
  margin-right: 6px;
  padding: 4px 1px;
  fill: #919aa6;
}

.complex-narrow-card__accessibility {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #00ab76;
}

.complex-narrow-card__extra-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: none;
  width: 100%;
  height: 100%;
}

.complex-narrow-card__extra-wrapper--active {
  display: block;
}

.complex-narrow-card__extra-btn {
  position: relative;
  display: block;
  margin-right: 20px;
  margin-left: auto;
}

.complex-narrow-card__extra-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.complex-narrow-card__extra-btn--active .complex-narrow-card__extra-icon {
  opacity: 1;
}

.complex-narrow-card__extra-icon {
  opacity: 0.3;
  stroke: #334860;
}

.complex-narrow-card__extra-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: transparent;
  cursor: pointer;
}

.complex-narrow-card__extra-actions {
  position: absolute;
  top: 0;
  left: calc(100% - 242px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 242px;
  padding: 15px 54px 15px 0;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.complex-narrow-card__extra-accessibility {
  display: flex;
  align-items: center;
  color: #919aa6;
  font: 400 14px/2.14 "Roboto", Arial, sans-serif;
}

.complex-narrow-card__extra-accessibility-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 6px;
  border-radius: 50%;
}

.complex-narrow-card__extra-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #0088d4;
  font: 700 14px/2.14 "Roboto", Arial, sans-serif;
}

.complex-narrow-card__extra-action--remove {
  color: #d15656;
}

.complex-narrow-card__extra-action-close {
  position: absolute;
  top: 19px;
  right: 20px;
}

.complex-narrow-card__extra-action-close-icon {
  stroke: #334860;
}

.complex-narrow-card__mobile-accessibility,
.complex-narrow-card__mobile-extra-overlay {
  display: none;
}

@media screen and (max-width: 991px) {
  .complex-narrow-card__main-info,
  .complex-narrow-card__broker-cabinet,
  .complex-narrow-card__date {
    margin-right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .complex-narrow-card__main-info-text-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .complex-narrow-card__main-info-text {
    width: 100%;
    padding-left: 5px;
  }

  .complex-narrow-card__address {
    margin-top: 5px;
  }

  .complex-narrow-card__broker-cabinet,
  .complex-narrow-card__date {
    margin-right: 5px;
  }

  .complex-narrow-card__broker-cabinet-btn {
    width: 215px;
    font-size: 14px;
  }

  .complex-narrow-card__date {
    font-size: 14px;
  }

  .complex-narrow-card__broker-cabinet-btn {
    width: 190px;
  }

  .complex-narrow-card__broker-cabinet-btn-icon {
    display: none;
  }
}

@media screen and (max-width: 601px) {
  .complex-narrow-card {
    height: auto;
  }

  .complex-narrow-card__inner {
    flex-wrap: wrap;
    justify-content: start;
    width: 100%;
    padding: 10px 15px 18px;
    border-radius: 10px;
    box-shadow: none;
  }

  .complex-narrow-card__image-wrapper {
    align-self: flex-start;
    width: 90px;
    height: 100px;
  }

  .complex-narrow-card__image {
    width: 90px;
    height: 70px;
    border-radius: 5px;
  }

  .complex-narrow-card__mobile-accessibility {
    display: flex;
    align-items: center;
    margin-top: 6px;
    color: #919aa6;
    font: 400 13px/1.39 "Roboto", Arial, sans-serif;
  }

  .complex-narrow-card__mobile-accessibility-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 6px;
    border-radius: 50%;
  }

  .complex-narrow-card__main-info {
    display: flex;
    width: calc(100% - 20px);
    margin-bottom: 10px;
  }

  .complex-narrow-card__main-info-text-wrap {
    width: calc(100% - 90px);
  }

  .complex-narrow-card__main-info-text {
    padding-left: 15px;
    white-space: normal;
  }

  .complex-narrow-card__address {
    font-size: 14px;
  }

  .complex-narrow-card__extra-btn {
    position: absolute;
    top: 12px;
    right: 15px;
    margin: 0;
  }

  .complex-narrow-card__mobile-extra-overlay {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: calc(100% - 212px);
    height: 100%;
    border-radius: 10px;
    background-color: #334860;
    opacity: 0.75;
  }

  .complex-narrow-card__extra-actions {
    left: calc(100% - 242px);
    width: 242px;
    min-height: 100%;
    padding: 7px 45px 0 0;
    box-shadow: none;
  }

  .complex-narrow-card__extra-action {
    font: 700 16px/2.88 "Roboto", Arial, sans-serif;
  }

  .complex-narrow-card__extra-action--remove {
    color: #d15656;
  }

  .complex-narrow-card__extra-action-close {
    top: 12px;
    right: 15px;
  }

  .complex-narrow-card__outer,
  .complex-narrow-card__extra-overlay,
  .complex-narrow-card__extra-accessibility {
    display: none;
  }

  .complex-narrow-card__action-btn-title--hidden {
    display: none;
  }
}

@media screen and (max-width: 300px) {
  .complex-narrow-card__inner {
    padding: 10px 8px;
  }

  .complex-narrow-card__main-info {
    flex-direction: column;
  }

  .complex-narrow-card__image-wrapper {
    margin-left: 15px;
  }

  .complex-narrow-card__main-info-text-wrap {
    width: 100%;
  }

  .complex-narrow-card__address {
    white-space: normal;
  }
}

.complex-cabinet {
  width: 100%;
  max-width: 1330px;
  margin: 0 auto 100px;
  padding: 60px 20px 50px;
}

.complex-cabinet__header-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.complex-cabinet__header-block:not(:last-child) {
  margin-bottom: 20px;
}

.complex-cabinet__header-block-address {
  margin-right: 30px;
  font-weight: 700;
}

.complex-cabinet__header-title {
  color: #303030;
  font-weight: 700;
  font-size: 42px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.19;
}

@media screen and (max-width: 1240px) {
  .complex-cabinet__header-title {
    font-size: 38px;
  }
}

@media screen and (max-width: 991px) {
  .complex-cabinet__header-title {
    font-size: 34px;
  }
}

@media screen and (max-width: 601px) {
  .complex-cabinet__header-title {
    font-size: 28px;
  }
}

.complex-cabinet__header-like-button {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.complex-cabinet__header-like-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.complex-cabinet__header-like-button:hover .complex-cabinet__header-like-icon {
  fill: #d15656;
  stroke: #d15656;
}

.complex-cabinet__header-like-icon {
  fill: transparent;
  stroke: rgba(51, 72, 96, 0.5);
  transition: .25s fill ease, .25s stroke ease;
}

.complex-cabinet__header-like-icon--active {
  fill: #d15656;
  stroke: #d15656;
}

.complex-cabinet__header-text {
  color: #979797;
  font-size: 16px;
}

.complex-cabinet__header-text:not(:last-child) {
  margin-right: 15px;
}

.complex-cabinet__header-text-url {
  margin-right: 33px;
  color: #303030;
  font-weight: 700;
  font-size: 20px;
}

.complex-cabinet__header-building-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.complex-cabinet__header-complex-range {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 30px;
  margin-right: 27px;
  padding: 0 10px;
  border-radius: 5px;
  background-color: #0088d4;
  color: #fff;
  font: 700 20px/1 "Roboto", Arial, sans-serif;
}

.complex-cabinet__header-building-status {
  font-weight: 700;
}

.complex-cabinet__header-building-date {
  margin-right: 43px;
}

.complex-cabinet__header-building-progress {
  display: flex;
  align-items: center;
  color: #0088d4;
  font: 400 16px/1.2 "Roboto", Arial, sans-serif;
}

.complex-cabinet__header-building-progress-text {
  margin-right: 11px;
}

.complex-cabinet__header-building-progress-icon {
  fill: #0088d4;
}

.complex-cabinet__address {
  display: flex;
  flex-wrap: wrap;
}

.complex-cabinet__address-text {
  display: inline-block;
  vertical-align: middle;
  margin-top: 6px;
  margin-right: 120px;
  color: #303030;
}

.complex-cabinet__metro-station {
  display: inline-block;
  align-items: center;
  margin-top: 6px;
  font: 400 13.67521368px "Roboto", Arial, sans-serif;
}

.complex-cabinet__metro-station-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 6px;
  border: 4px solid #ed1f24;
  border-radius: 50%;
}

.complex-cabinet__metro-station-name {
  margin: 0 14px 0 0;
  color: #303030;
}

.complex-cabinet__metro-station-time-to {
  margin: 0;
  color: #919aa6;
  white-space: nowrap;
}

.complex-cabinet__header-developer-info {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  width: 350px;
  padding: 0 21px 0 14px;
  font: 700 14px/1.2 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
}

.complex-cabinet__header-developer-info-icon {
  margin-right: 19px;
  fill: #41ae1b;
}

.complex-cabinet__main {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}

.complex-cabinet__inner {
  flex-shrink: 1;
  width: calc(100% - 380px);
  max-width: 910px;
  margin-right: 30px;
}

.complex-cabinet__section {
  overflow: hidden;
  margin-bottom: 40px;
  padding: 20px;
  border-radius: 8px;
  background-color: #fff;
  color: #303030;
}

.complex-cabinet__section:first-of-type {
  margin-top: 0;
}

.complex-cabinet__section:last-of-type {
  margin-bottom: 0;
}

.complex-cabinet__gallery {
  margin-bottom: 10px;
}

.complex-cabinet__gallery .page-gallery__list {
  grid-template-columns: repeat(6, 1fr);
  grid-column-gap: 2px;
}

.complex-cabinet__gallery .page-gallery__list-item-btn {
  height: 100px;
}

.complex-cabinet__download-renders {
  margin: 12px 15px 37px;
}

.complex-cabinet__download-renders-button {
  display: flex;
  align-items: center;
  width: 174px;
  height: 30px;
  padding: 0 5px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #0088d4;
  cursor: pointer;
}

.complex-cabinet__download-renders-button:hover,
.complex-cabinet__download-renders-button:focus {
  border: 1px solid #0088d4;
}

.complex-cabinet__download-renders-icon {
  margin-left: 11px;
  fill: #0088d4;
}

.complex-cabinet__main-information {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 25px;
  padding: 5px 20px;
  background-color: transparent;
}

.complex-cabinet__specs-list {
  display: flex;
  margin-bottom: 20px;
}

.complex-cabinet__spec {
  width: 110px;
}

.complex-cabinet__spec--type {
  width: 170px;
  margin-right: 35px;
}

.complex-cabinet__spec--flats {
  margin-right: 85px;
}

.complex-cabinet__spec--floors {
  width: 90px;
  margin-right: 20px;
}

.complex-cabinet__spec-value {
  display: block;
  margin-top: 6px;
  font-weight: 700;
  font-size: 24px;
}

.complex-cabinet__spec-name {
  display: block;
  color: #979797;
}

.complex-cabinet__advantages-list {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 20px;
  margin-left: auto;
}

.complex-cabinet__advantage {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  font-weight: 700;
}

.complex-cabinet__advantage-text {
  margin-right: 10px;
}

.complex-cabinet__advantage-icon {
  fill: #41ae1b;
}

.complex-cabinet__section-title {
  margin-bottom: 50px;
  margin-left: 6px;
  font: 700 24px/1.25 "Roboto", Arial, sans-serif;
}

.complex-cabinet__description-text {
  margin-top: 14px;
  padding-left: 10px;
  border-left: 2px solid #0098ed;
  line-height: 1.5;
}

.complex-cabinet__description-title {
  margin-top: 40px;
}

.complex-cabinet__description-time {
  margin-top: 15px;
  color: #919aa6;
  font: 400 16px/1.2 "Roboto", Arial, sans-serif;
  text-align: end;
}

.complex-cabinet__description-files-list {
  position: relative;
  display: flex;
  overflow-x: auto;
  margin-top: 40px;
  padding: 0;
  list-style-type: none;
  overscroll-behavior: contain;
}

.complex-cabinet__description-detail {
  flex-shrink: 0;
  min-width: 100px;
  padding: 10px;
  border: 1px solid #e1e2e5;
  border-radius: 5px;
}

.complex-cabinet__description-detail:not(:last-child) {
  margin-right: 20px;
}

.complex-cabinet__description-detail-value {
  margin-right: 40px;
  font-weight: 700;
  font-size: 20px;
  white-space: nowrap;
}

.complex-cabinet__description-detail-name {
  display: block;
  margin-top: 4px;
  color: #979797;
  white-space: nowrap;
}

.complex-cabinet__parameter-list-wrapper {
  padding: 28px 23px 11px;
  border-radius: 10px;
  background-color: #fff6ed;
}

.complex-cabinet__parameter-list-wrapper .complex-parameter-list {
  margin-bottom: 0;
}

.complex-cabinet__location-title {
  margin-bottom: 40px;
  margin-left: 0;
}

.complex-cabinet__panorama-mobile-button {
  display: none;
}

.complex-cabinet__panorama-block {
  position: relative;
  width: 100%;
  padding-bottom: 57.5%;
  border-radius: 10px;
}

.complex-cabinet__location-map {
  width: 100%;
  margin-top: 25px;
}

.complex-cabinet__location-map-block {
  position: relative;
  width: 100%;
  padding-bottom: 57.5%;
  border-radius: 10px;
}

.complex-cabinet__developer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 24px;
  margin-bottom: 7px;
}

.complex-cabinet__developer-header-link {
  color: #0088d4;
}

.complex-cabinet__developer-title {
  font: 700 24px/1 "Roboto", Arial, sans-serif;
}

.complex-cabinet__aside {
  position: sticky;
  top: 20px;
  bottom: 20px;
  flex-shrink: 0;
  overflow-y: scroll;
  max-height: calc(100vh - 40px);
  border-radius: 8px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.complex-cabinet__aside::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.complex-cabinet__aside-block {
  width: 350px;
  padding: 20px;
  border-radius: 8px;
  background-color: #fff;
}

.complex-cabinet__aside-block--short {
  padding: 20px;
}

.complex-cabinet__complex-logo {
  width: 100%;
  padding: 27px 0;
}

.complex-cabinet__accordions {
  margin-bottom: 10px;
}

.complex-cabinet__accordion {
  padding: 3px 0 5px;
  border-bottom: 1px solid #f0f0f0;
}

.complex-cabinet__accordion-header {
  display: flex;
  align-items: center;
  padding: 13px 3px;
  cursor: pointer;
}

.complex-cabinet__accordion-header::marker {
  content: none;
}

.complex-cabinet__accordion-header-icon {
  margin-right: 20px;
}

.complex-cabinet__accordion-header-icon--red {
  fill: #d15656;
}

.complex-cabinet__accordion-header-icon--blue {
  fill: #0088d4;
}

.complex-cabinet__accordion-header-icon--green {
  fill: #41ae1b;
}

.complex-cabinet__accordion-header-title {
  margin-right: 10px;
  color: #303030;
  font: 700 16px/1.17 "Roboto", Arial, sans-serif;
}

.complex-cabinet__accordion-header-count {
  color: #919aa6;
  font: 700 16px/1.17 "Roboto", Arial, sans-serif;
}

.complex-cabinet__accordion-header-marker {
  margin-left: auto;
  opacity: .5;
  fill: #334860;
}

.complex-cabinet__accordion[open] .complex-cabinet__accordion-header-marker {
  transform: rotate(180deg);
}

.complex-cabinet__accordion-list {
  margin: 0 3px 12px 39px;
}

.complex-cabinet__accordion-item {
  overflow: hidden;
}

.complex-cabinet__accordion-item-link {
  margin-bottom: 1px;
  color: #0088d4;
  font: 400 16px/1.5 "Roboto", Arial, sans-serif;
  overflow-wrap: break-word;
}

.complex-cabinet__accordion-item-link:hover,
.complex-cabinet__accordion-item-link:focus {
  text-decoration: underline;
}

.complex-cabinet__contacts {
  margin: 10px 0 20px;
}

.complex-cabinet__contact:not(:last-child) {
  margin-bottom: 20px;
}

.complex-cabinet__broker-placemark {
  padding: 21px 20px 33px;
  border-radius: 5px;
  background-color: #ebf5ff;
}

.complex-cabinet__error-block {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #979797;
}

.complex-cabinet__mobile-section {
  display: none;
}

.complex-cabinet__mobile-contacts {
  overflow-y: scroll;
  max-height: 60vh;
  margin: 20px 0 0;
}

.complex-cabinet__mobile-contact {
  margin-right: 15px;
}

.complex-cabinet__mobile-contact:not(:last-child) {
  margin-bottom: 20px;
}

.complex-cabinet__mobile-broker-placemark {
  margin: 0;
  padding: 10px 18px;
}

.complex-cabinet__mobile-broker-placemark .mobile-broker-placemark__phone {
  padding: 12px 0;
}

.complex-cabinet__mobile-panorama-button {
  display: none;
  justify-content: center;
  width: 100%;
  height: 60px;
  margin-bottom: 20px;
  padding: 21px 18px;
}

.complex-cabinet__mobile-panorama-button-icon {
  fill: #0088d4;
}

.complex-cabinet__mobile-panorama-button-title {
  margin-left: 20px;
  font: 700 20px/1.2 "Roboto", Arial, sans-serif;
}

@media screen and (max-width: 1240px) {
  .complex-cabinet__spec {
    margin-right: 15px;
  }
}

@media screen and (max-width: 991px) {
  .complex-cabinet__header-developer-info {
    width: 250px;
  }

  .complex-cabinet__inner {
    width: calc(100% - 265px);
    margin-right: 15px;
  }

  .complex-cabinet__address-text {
    margin-right: 20px;
  }

  .complex-cabinet__main-information {
    flex-direction: column;
  }

  .complex-cabinet__specs-list {
    flex-wrap: wrap;
  }

  .complex-cabinet__spec {
    margin-bottom: 10px;
  }

  .complex-cabinet__advantages-list {
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: 0;
  }

  .complex-cabinet__advantage {
    margin-right: 20px;
  }

  .complex-cabinet__aside-block {
    width: 250px;
    padding: 15px;
  }

  .complex-cabinet__developer-header-link {
    font-size: 14px;
  }

  .complex-cabinet__developer-title {
    font-size: 20px;
  }

  .complex-cabinet__complex-logo {
    padding: 10px 0;
  }

  .complex-cabinet__accordion-list {
    margin-left: 3px;
  }
}

@media screen and (max-width: 601px) {
  .complex-cabinet {
    margin: 0 auto;
    padding: 30px 10px 0;
  }

  .complex-cabinet__main {
    flex-direction: column;
    margin-top: 15px;
  }

  .complex-cabinet__header-block:not(:last-child) {
    margin-bottom: 12px;
  }

  .complex-cabinet__header-like-icon {
    width: 26px;
    height: 26px;
  }

  .complex-cabinet__header-building-info {
    width: 100%;
  }

  .complex-cabinet__header-text {
    margin-bottom: 6px;
    font-size: 16px;
  }

  .complex-cabinet__header-text:not(:last-child) {
    margin-right: 10px;
  }

  .complex-cabinet__header-building-progress-text {
    font-size: 16px;
  }

  .complex-cabinet__header-complex-range {
    width: 100px;
    height: 24px;
  }

  .complex-cabinet__metro-station,
  .complex-cabinet__download-renders-button {
    font-size: 14px;
  }

  .complex-cabinet__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-right: 0;
  }

  .complex-cabinet__section {
    margin-bottom: 20px;
    padding: 10px;
  }

  .complex-cabinet__gallery {
    max-width: calc(100vw - 20px);
    margin: 0;
    padding: 0;
    background-color: transparent;
  }

  .complex-cabinet__gallery .page-gallery__mobile-wrap--plans {
    margin: 0;
  }

  .complex-cabinet__download-renders {
    margin: 10px;
  }

  .complex-cabinet__section-title {
    margin-bottom: 25px;
  }

  .complex-cabinet__parameter-list-wrapper {
    padding: 15px 10px 10px;
  }

  .complex-cabinet__spec-value {
    font-size: 20px;
  }

  .complex-cabinet__advantages-list {
    margin-bottom: 0;
  }

  .complex-cabinet__mobile-panorama-button {
    display: flex;
  }

  .complex-cabinet__panorama {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    margin-top: 0;
    padding: 0;
    border-radius: 0;
    visibility: hidden;
  }

  .complex-cabinet__panorama-mobile-show {
    background-color: rgba(0, 0, 0, 0.18);
    visibility: visible;
  }

  .complex-cabinet__panorama-mobile-button {
    display: block;
    width: 100%;
    height: 20vh;
    background-color: transparent;
  }

  .complex-cabinet__panorama-block {
    height: 80vh;
    padding-bottom: 0;
  }

  .complex-cabinet__address-text {
    margin-right: 0;
  }

  .complex-cabinet__location-map-block {
    padding-bottom: 100%;
  }

  .complex-cabinet__mobile-section {
    display: block;
  }

  .complex-cabinet__header-developer-info,
  .complex-cabinet__aside {
    display: none;
  }
}

.complex-parameter-list {
  margin: 0 6px 30px;
}

.complex-parameter-list__item:not(:last-child) {
  margin-bottom: 30px;
}

.complex-parameter-list__item-title {
  margin-bottom: 14px;
  font: 700 16px/1.17 "Roboto", Arial, sans-serif;
}

.complex-parameter-list__item-text {
  overflow: hidden;
  font: 400 16px/1.5 "Roboto", Arial, sans-serif;
  overflow-wrap: break-word;
}

.complex-parameter-list__item-link {
  color: #0088d4;
  word-break: break-word;
}

.complex-parameter-list__item-link:hover,
.complex-parameter-list__item-link:focus {
  text-decoration: underline;
}

.complex-parameter-list__item-document {
  margin-bottom: 13px;
}

.complex-parameter-list__item-document-link {
  display: flex;
  align-items: center;
}

.complex-parameter-list__item-document-link:hover,
.complex-parameter-list__item-document-link:focus {
  text-decoration: none;
}

.complex-parameter-list__item-document-link:hover .complex-parameter-list__item-document-text,
.complex-parameter-list__item-document-link:focus .complex-parameter-list__item-document-text {
  text-decoration: underline;
}

.complex-parameter-list__item-document-text {
  margin-bottom: 9px;
  font: 400 14px/1.3 "Roboto", Arial, sans-serif;
}

.complex-parameter-list__item-document-symbol {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 9px;
}

.complex-parameter-list__item-document-icon {
  width: 28px;
  height: 32px;
  margin-top: 6px;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  background-color: #fafafa;
}

.complex-parameter-list__item-document-extension {
  display: inline-block;
  color: #919aa6;
  font: 400 10px/1.8 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
}

@media screen and (max-width: 601px) {
  .complex-parameter-list__item:not(:last-child) {
    margin-bottom: 20px;
  }

  .complex-parameter-list__item-title {
    margin-bottom: 10px;
  }

  .complex-parameter-list {
    margin-bottom: 10px;
  }
}

.recovery-password {
  padding: 0;
}

@media screen and (max-width: 601px) {
  .recovery-password {
    padding: 0 15px;
  }
}

@media screen and (max-width: 480px) {
  .recovery-password {
    padding: 0 10px;
  }
}

.recovery-password__inner {
  width: 540px;
  margin: 95px auto;
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
}

@media screen and (max-width: 601px) {
  .recovery-password__inner {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .recovery-password__inner {
    margin: 10px auto;
  }
}

.recovery-password__title {
  color: #303030;
  font-weight: 700;
  font-size: 42px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.19;
}

@media screen and (max-width: 1240px) {
  .recovery-password__title {
    font-size: 38px;
  }
}

@media screen and (max-width: 991px) {
  .recovery-password__title {
    font-size: 34px;
  }
}

@media screen and (max-width: 601px) {
  .recovery-password__title {
    font-size: 28px;
  }
}

.recovery-password__btn {
  width: 245px;
  height: 60px;
  margin-top: 24px;
}

@media screen and (max-width: 480px) {
  .recovery-password__btn {
    width: 100%;
  }
}

.apartment {
  width: 100%;
  max-width: 1330px;
  margin: 0 auto 100px;
  padding: 60px 20px 50px;
}

.apartment__header-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.apartment__header-block:not(:first-child) {
  margin-top: 26px;
}

.apartment__header-title {
  color: #303030;
  font-weight: 700;
  font-size: 42px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.19;
}

@media screen and (max-width: 1240px) {
  .apartment__header-title {
    font-size: 38px;
  }
}

@media screen and (max-width: 991px) {
  .apartment__header-title {
    font-size: 34px;
  }
}

@media screen and (max-width: 601px) {
  .apartment__header-title {
    font-size: 28px;
  }
}

.apartment__header-title--blue {
  color: #5696d1;
}

.apartment__header-like-btn {
  position: relative;
  display: flex;
  align-items: center;
}

.apartment__header-like-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.apartment__header-like-btn:hover .apartment__header-like-icon {
  fill: #d15656;
  stroke: #d15656;
}

.apartment__header-like-btn-text {
  margin-right: 18px;
  color: rgba(51, 72, 96, 0.5);
  font: 400 18px/1.1 "Roboto", Arial, sans-serif;
}

.apartment__header-like-btn-text--red {
  color: #d15656;
}

.apartment__header-like-icon {
  fill: transparent;
  stroke: rgba(51, 72, 96, 0.5);
  transition: .25s fill ease, .25s stroke ease;
}

.apartment__header-like-icon--active {
  fill: #d15656;
  stroke: #d15656;
}

.apartment__header-text-url {
  margin-right: 33px;
  color: #303030;
  font-weight: 700;
  font-size: 20px;
}

.apartment__header-text-light {
  margin-right: 14px;
  color: #979797;
  font-size: 20px;
}

.apartment__header-address-text {
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}

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

.apartment__header-mobile-time {
  color: #919aa6;
  font: 400 16px/1.2 "Roboto", Arial, sans-serif;
}

.apartment__header-mobile-btn {
  position: relative;
}

.apartment__header-mobile-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.apartment__header-mobile-btn:nth-of-type(1) {
  margin-left: auto;
}

.apartment__header-mobile-btn:not(:last-child) {
  margin-right: 30px;
}

.apartment__header-mobile-icon {
  fill: #919aa6;
}

.apartment__header-mobile-like-icon {
  fill: transparent;
  stroke: #919aa6;
  transition: .25s fill ease, .25s stroke ease;
}

.apartment__header-mobile-like-icon--active {
  fill: #d15656;
  stroke: #d15656;
}

.apartment__metro-station {
  display: inline-block;
  align-items: center;
}

.apartment__metro-station-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 6px;
  border: 4px solid #ed1f24;
  border-radius: 50%;
}

.apartment__metro-station-name {
  margin: 0 14px 0 0;
  color: #303030;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
}

.apartment__metro-station-time-to {
  margin: 0;
  color: #919aa6;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
  white-space: nowrap;
}

.apartment__header-copy-btn {
  position: relative;
  display: flex;
  align-items: center;
  color: #0088d4;
  font-weight: 400;
}

.apartment__header-copy-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.apartment__header-copy-icon {
  margin-right: 10px;
  fill: #0088d4;
}

.apartment__main {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-top: 60px;
}

.apartment__inner {
  flex: 1 2 auto;
  margin-right: 30px;
}

.apartment__section {
  margin-top: 20px;
  padding: 10px;
  border-radius: 8px;
  background-color: #fff;
}

.apartment__section:nth-of-type(1) {
  margin-top: 0;
}

.apartment__gallery .page-gallery__list {
  grid-template-columns: repeat(6, 1fr);
  grid-column-gap: 2px;
}

.apartment__gallery .page-gallery__list-item-btn {
  height: 100px;
}

.apartment__mobile-commission {
  position: absolute;
  top: 30px;
  left: 10px;
  display: none;
  padding: 4px 8px;
  border: 1px solid #41ae1b;
  border-radius: 3px;
  background-color: rgba(65, 174, 27, 0.9);
  color: #fff;
  font: 400 16px/1.25 "Roboto", Arial, sans-serif;
}

.apartment__specs-list {
  margin-top: -20px;
}

.apartment__spec {
  display: inline-block;
  margin-top: 20px;
  margin-right: 40px;
}

.apartment__spec:first-child {
  margin-right: 60px;
}

.apartment__spec-value {
  display: block;
  margin-top: 6px;
  font-weight: 700;
  font-size: 24px;
}

.apartment__spec-name {
  display: block;
  color: #979797;
}

.apartment__advantages-list {
  margin-top: 30px;
}

.apartment__advantage {
  display: inline-block;
  margin-top: 10px;
  margin-right: 20px;
  font-weight: 700;
}

.apartment__advantage-icon {
  fill: #41ae1b;
}

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

.apartment__description-mobile-btn {
  flex-grow: 1;
  margin-right: 30px;
  padding: 18px 30px;
  border-radius: 5px;
  background-color: #ebf5ff;
  color: #0088d4;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
}

.apartment__description-mobile-like-btn {
  position: relative;
  margin-right: 30px;
}

.apartment__description-mobile-like-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.apartment__description-mobile-like-icon {
  display: block;
  fill: transparent;
  stroke: #919aa6;
  transition: .25s fill ease, .25s stroke ease;
}

.apartment__description-mobile-like-icon--active {
  fill: #d15656;
  stroke: #d15656;
}

.apartment__title-mobile {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.17;
}

.apartment__description-text-mobile {
  margin-top: 10px;
  line-height: 1.5;
}

.apartment__description-address-mobile {
  margin-top: 20px;
  line-height: 1.5;
}

.apartment__price-mobile {
  font-weight: 700;
  font-size: 20px;
}

.apartment__price-mobile-usd {
  color: #303030;
  font: 400 16px/1.2 "Roboto", Arial, sans-serif;
}

.apartment__price-by-square-mobile {
  margin-right: 14px;
  color: #979797;
}

.apartment__description-text {
  margin-top: 14px;
  padding-left: 10px;
  border-left: 2px solid #0098ed;
  line-height: 1.5;
}

.apartment__description-title {
  margin-top: 40px;
}

.apartment__description-time {
  margin-top: 15px;
  color: #919aa6;
  font: 400 16px/1.2 "Roboto", Arial, sans-serif;
  text-align: end;
}

.apartment__description-details-list {
  position: relative;
  display: flex;
  overflow-x: auto;
  margin-top: 40px;
  padding: 0;
  list-style-type: none;
  overscroll-behavior: contain;
}

.apartment__description-detail {
  flex-shrink: 0;
  min-width: 100px;
  padding: 10px;
  border: 1px solid #e1e2e5;
  border-radius: 5px;
}

.apartment__description-detail:not(:last-child) {
  margin-right: 20px;
}

.apartment__description-detail-value {
  margin-right: 40px;
  font-weight: 700;
  font-size: 20px;
  white-space: nowrap;
}

.apartment__description-detail-name {
  display: block;
  margin-top: 4px;
  color: #979797;
  white-space: nowrap;
}

.apartment__parking-description {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 80px;
  margin: 40px 0 0;
}

.apartment__parking-title {
  margin: 0 0 7px;
}

.apartment__parking-text {
  margin: 3px 0 0;
}

.apartment__description-mobile-footer {
  display: none;
}

.apartment__mobile-images-list {
  margin-top: 20px;
}

.apartment__complex-inner {
  display: flex;
  flex-wrap: wrap;
}

.apartment__complex-image-wrapper {
  overflow: hidden;
  width: 210px;
  height: 160px;
  margin-right: 24px;
  border-radius: 5px;
}

.apartment__complex-image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.apartment__complex-information {
  width: calc(100% - 234px);
}

.apartment__complex-information-title {
  color: #000;
  font: 700 24px/1.25 "Roboto", Arial, sans-serif;
}

.apartment__complex-information-address {
  margin-top: 14px;
  color: #303030;
  font: 400 16px/1.2 "Roboto", Arial, sans-serif;
}

.apartment__complex-information-metro {
  margin-top: 10px;
}

.apartment__complex-information-specs-list {
  display: flex;
  margin-top: 24px;
}

.apartment__complex-information-spec {
  margin-right: 30px;
}

.apartment__complex-information-spec-title {
  color: #303030;
  font: 700 16px/1.2 "Roboto", Arial, sans-serif;
}

.apartment__complex-information-spec-text {
  margin-top: 6px;
  color: #303030;
  font: 400 16px/1.2 "Roboto", Arial, sans-serif;
}

.apartment__complex-mobile-specs-list {
  display: none;
}

.apartment__complex-mobile-spec:not(:first-child) {
  margin-top: 14px;
}

.apartment__complex-mobile-spec-title {
  margin-bottom: 6px;
  color: #303030;
  font: 700 16px/1.2 "Roboto", Arial, sans-serif;
}

.apartment__complex-mobile-spec-text {
  color: #303030;
  font: 400 16px/1.2 "Roboto", Arial, sans-serif;
}

.apartment__complex-map-address {
  display: flex;
}

.apartment__complex-map-address-text {
  margin-right: 15px;
  color: #303030;
  font: 700 16px/1.2 "Roboto", Arial, sans-serif;
}

#map > ymaps,
#panorama > ymaps {
  overflow: hidden;
  border-radius: 10px;
}

.apartment__complex-map-btn {
  display: none;
}

.apartment__complex-map-btn-icon {
  fill: #0088d4;
}

.apartment__complex-map-btn-title {
  margin-left: 20px;
  font: 700 20px/1.2 "Roboto", Arial, sans-serif;
}

.apartment__panorama-mobile-btn {
  display: none;
}

.apartment__panorama-block {
  position: relative;
  width: 100%;
  padding-bottom: 57.5%;
  border-radius: 10px;
}

.apartment__complex-map {
  width: 100%;
  margin-top: 30px;
}

.apartment__complex-map-block {
  position: relative;
  width: 100%;
  margin-top: 25px;
  padding-bottom: 57.5%;
  border-radius: 10px;
}

.apartment__aside {
  position: sticky;
  top: 20px;
}

.apartment__aside-commission {
  margin: 32px 0;
}

.apartment__aside-commission-status {
  display: inline-block;
  padding: 4px 8px;
  border: 1px solid #41ae1b;
  border-radius: 3px;
  color: #41ae1b;
}

.apartment__aside-block {
  padding: 20px 20px 27px;
  border-radius: 8px;
  background-color: #fff;
}

.apartment__aside-block--short {
  padding: 20px;
}

.apartment__price {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.apartment__price-value {
  font-weight: 700;
  font-size: 42px;
}

.apartment__price-fee {
  padding: 4px 8px;
  border: 1px solid #000;
  border-radius: 3px;
}

.apartment__price-secondary {
  margin-top: 20px;
}

.apartment__price-old {
  margin-right: 14px;
  text-decoration: line-through;
}

.apartment__price-by-square {
  color: #979797;
}

.apartment__broker-placemark {
  margin: 30px 0;
  padding: 20px;
  border-radius: 5px;
  background-color: #ebf5ff;
}

.apartment__aside-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.apartment__aside-option-url {
  padding: 14px 20px;
}

.apartment__aside-option-btn {
  margin: 0 0 0 auto;
  background-color: transparent;
}

.apartment__aside-option-btn:hover .apartment__aside-option-btn-text,
.apartment__aside-option-btn:focus .apartment__aside-option-btn-text {
  border-bottom-color: #d15656;
  color: #d15656;
}

.apartment__aside-option-btn.--success {
  text-align: center;
  cursor: auto;
}

.apartment__aside-option-btn.--success .apartment__aside-option-btn-text {
  border-bottom-color: transparent;
  color: #41ae1b;
}

.apartment__aside-option-btn-text {
  border-bottom: 1px dashed #919aa6;
  color: #919aa6;
  font: 400 16px/1.5 "Roboto", Arial, sans-serif;
  transition: border-bottom-color .25s ease, color .25s ease;
}

.apartment__error-block {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #979797;
}

.apartment__aside-gallery {
  max-height: 100%;
  overflow-y: auto;
  margin-top: 20px;
}

.apartment__aside-gallery::-webkit-scrollbar {
  width: 5px;
}

.apartment__aside-gallery::-webkit-scrollbar-track {
  background-color: #f0f0f0;
}

.apartment__aside-gallery::-webkit-scrollbar-thumb {
  background-color: #5696d1;
}

.apartment__aside-gallery .apartments__main-img-wrap {
  border-radius: 10px;
}

@media screen and (max-width: 480px) {
  .apartment {
    margin: 0 auto;
    padding: 30px 10px;
  }

  .apartment__header-mobile-wrapper {
    display: flex;
    align-items: center;
    padding: 0 10px;
  }

  .apartment__main {
    flex-direction: column;
    margin-top: 30px;
  }

  .apartment__inner {
    display: flex;
    flex-direction: column;
    margin-right: 0;
  }

  .apartment__gallery {
    max-width: calc(100vw - 20px);
    padding: 0;
    background-color: transparent;
  }

  .apartment__mobile-commission {
    display: block;
  }

  .apartment__complex {
    order: 2;
  }

  .apartment__spec-value {
    font-size: 20px;
  }

  .apartment__description-details-list {
    width: calc(100vw - 60px);
  }

  .apartment__description-mobile-wrapper {
    display: block;
    margin-bottom: 20px;
  }

  .apartment__complex-inner {
    margin-right: 0;
  }

  .apartment__complex-image-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    margin-right: 0;
    padding-bottom: 66%;
  }

  .apartment__complex-image {
    position: absolute;
  }

  .apartment__complex-information {
    width: 100%;
    margin-top: 24px;
  }

  .apartment__complex-information-title {
    font: 700 20px/1.5 "Roboto", Arial, sans-serif;
  }

  .apartment__complex-information-address {
    font: 400 16px/1.5 "Roboto", Arial, sans-serif;
  }

  .apartment__complex-mobile-specs-list {
    display: flex;
    gap: 5%;
    width: 100%;
    margin-top: 20px;
  }

  .apartment__complex-mobile-spec:not(:first-child) {
    margin: 0;
  }

  .apartment__complex-map-btn {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    height: 60px;
    padding: 21px 18px;
  }

  .apartment__panorama {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    margin-top: 0;
    padding: 0;
    border-radius: 0;
    visibility: hidden;
  }

  .apartment__panorama-mobile-show {
    background-color: rgba(0, 0, 0, 0.18);
    visibility: visible;
  }

  .apartment__panorama-mobile-btn {
    display: block;
    width: 100%;
    height: 20vh;
    background-color: transparent;
  }

  .apartment__panorama-block {
    height: 80vh;
    padding-bottom: 0;
  }

  .apartment__complex-map-block {
    padding-bottom: 125%;
  }

  .apartment__header-block,
  .apartment__complex-information-specs-list,
  .apartment__complex-map-address,
  .apartment__spec--type,
  .apartment__aside,
  .apartment__description-time {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .apartment__aside-option-btn {
    margin: initial;
  }

  .apartment__price-value {
    font-size: 30px;
  }

  .apartment__price-secondary {
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {
  .apartment__main {
    flex-direction: column;
  }

  .apartment__inner {
    width: 100%;
  }

  .apartment__aside {
    width: 100%;
    flex-basis: 150px;
    order: -1;
    top: 0;
  }

  .apartment__aside-block {
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    box-shadow: 0 5px 15px -10px #444;
  }

  .apartment__price {
    display: inline-flex;
  }

  .apartment__price-secondary {
    display: inline;
    margin-left: 30px;
  }

  .apartment__aside-gallery {
    display: none;
  }

  .apartment__broker-placemark {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: auto;
    padding: 8px;
    align-items: center;
    display: inline-flex;
    background-color: initial;
  }
}

@media screen and (max-width: 601px) {
  .apartment__aside {
    display: none;
  }

  .apartment__description-mobile-footer {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
  }

  .apartment__description-mobile-footer .mobile-broker-placemark {
    flex-grow: 1;
    width: 100%;
  }
}

.page-gallery {
  width: 100%;
}

.page-gallery__main-img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  margin-bottom: 2px;
  padding-bottom: 72%;
  border-radius: 5px 5px 0 0;
}

.page-gallery__main-img-wrap--fully-rounded {
  border-radius: 5px;
}

.page-gallery__main-img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.page-gallery__more-img {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 72, 96, 0.7);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
}

.lg-backdrop {
  background-color: rgba(51, 72, 96, 0.7);
}

.apartment__light-gallery .lg-toolbar {
  background-color: transparent;
}

.apartment__light-gallery .lg-toolbar .lg-icon {
  color: #fff;
}

.apartment__light-gallery #lg-counter {
  color: #fff;
}

.apartment__light-gallery .lg-actions .lg-next,
.apartment__light-gallery .lg-actions .lg-prev {
  color: #fff;
}

@media screen and (max-width: 480px) {
  .page-gallery__main-img-wrap {
    display: none;
  }
}

.profile-page__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 1350px;
  max-width: 100%;
  height: inherit;
  margin: 0 auto;
  padding: 0 30px;
}

@media screen and (max-width: 1400px) {
  .profile-page__inner {
    width: 1200px;
  }
}

@media screen and (max-width: 1240px) {
  .profile-page__inner {
    padding: 0 30px;
  }
}

@media screen and (max-width: 601px) {
  .profile-page__inner {
    padding: 0;
  }
}

.profile-page__main {
  width: 910px;
}

.profile-page__title {
  color: #303030;
  font-weight: 700;
  font-size: 42px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.19;
  width: 100%;
  margin-top: 50px;
  margin-bottom: 40px;
}

@media screen and (max-width: 1240px) {
  .profile-page__title {
    font-size: 38px;
  }
}

@media screen and (max-width: 991px) {
  .profile-page__title {
    font-size: 34px;
  }
}

@media screen and (max-width: 601px) {
  .profile-page__title {
    font-size: 28px;
  }
}

.profile-page__status {
  position: relative;
  display: inline-block;
  margin-left: 3px;
  padding: 4px 8px;
  border-radius: 3px;
  background-color: #0088d4;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.05em;
  transform: translateY(-2em);
}

.profile-page__status--incomplete {
  background-color: #d15656;
}

.profile-page__status--blocked {
  background-color: #303030;
}

.profile-page__status--denied {
  background-color: #303030;
}

.profile-page__status--moderating {
  background-color: #339ede;
}

.profile-page__status--active {
  background-color: #41ae1b;
}

.profile-page__section {
  width: 100%;
  padding: 20px 20px 40px;
  border-radius: 10px;
  background-color: #fff;
}

.profile-page__section:not(:last-child) {
  margin-bottom: 25px;
}

.profile-page__section-title {
  color: #303030;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  opacity: 0.9;
}

.profile-page__section-inner {
  display: flex;
  margin-top: 16px;
}

.profile-page__section-wrap {
  width: 490px;
}

.profile-page__section-subtitle {
  display: flex;
  margin-top: 24px;
  color: #334860;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}

.profile-page__section-text {
  display: flex;
  align-items: center;
  width: 100%;
  height: 48px;
  margin-top: 10px;
  padding: 0 15px;
  border: 1px solid #e1e2e5;
  border-radius: 5px;
  background-color: #f2f2f2;
  color: #303030;
}

.profile-page__section-text:first-child {
  margin-top: 0;
}

.profile-page__section-text--blue {
  justify-content: center;
  width: max-content;
  padding: 0 20px;
  border-color: #5696d1;
  background-color: #5696d1;
  color: #fff;
}

.profile-page__section-avatar {
  align-self: flex-end;
  width: 200px;
  height: 200px;
  margin-left: 60px;
}

.profile-page__section-avatar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background-color: #ebf5ff;
}

.profile-page__section-avatar-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(51, 72, 96, 0.15);
  background-position: center;
  background-size: cover;
}

.profile-page__section-subtitle-tip {
  margin-left: auto;
  color: #979797;
  font-weight: 400;
  font-size: 14px;
}

.profile-page__section-tip {
  margin-top: 15px;
}

.profile-page__whatsapp-icon {
  margin: -2px 0 0 8px;
  fill: #4caf50;
}

.profile-page__aside {
  width: calc(100% - 910px - 60px);
}

.login-form {
  padding: 0;
}

@media screen and (max-width: 601px) {
  .login-form {
    padding: 0 15px;
  }
}

@media screen and (max-width: 601px) {
  .login-form {
    padding: 0 10px;
  }
}

.login-form__inner,
.login-form__outer {
  position: relative;
  border-radius: 10px;
  background-color: #fff;
  width: 540px;
  padding: 20px;
}

@media screen and (max-width: 601px) {
  .login-form__inner,
  .login-form__outer {
    width: 100%;
  }
}

.login-form__inner {
  margin: 95px auto 10px;
}

@media screen and (max-width: 480px) {
  .login-form__inner {
    margin: 10px auto;
  }
}

.login-form__outer {
  margin: 0 auto;
  display: flex;
  column-gap: 20px;
  row-gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.login-form__registration-button {
  margin-left: 0;
}

.login-form__title {
  color: #303030;
  font-weight: 700;
  font-size: 42px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.19;
  color: #303030;
}

@media screen and (max-width: 1240px) {
  .login-form__title {
    font-size: 38px;
  }
}

@media screen and (max-width: 991px) {
  .login-form__title {
    font-size: 34px;
  }
}

@media screen and (max-width: 601px) {
  .login-form__title {
    font-size: 28px;
  }
}

.login-form__error {
  margin-top: 20px;
  color: #f00;
}

.login-form__error + .login-form__btn {
  margin-top: 15px;
}

.login-form__btn {
  min-width: 245px;
  margin-top: 40px;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .login-form__btn {
    width: 100%;
  }
}

.login-form__terms {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.42;
}

.login-form__terms a {
  color: #0098ed;
  cursor: pointer;
  transition: color 0.25s ease;
}

.login-form__terms a:hover,
.login-form__terms a:focus {
  color: #3bb9ff;
}

.login-form__links {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  color: #303030;
  font-size: 14px;
  line-height: 1.4;
}

.login-form__links {
  color: #0098ed;
  cursor: pointer;
  transition: color 0.25s ease;
}

.login-form__links:hover,
.login-form__links:focus {
  color: #3bb9ff;
}

.login-form__outer-caption {
  color: #0088d4;
}

.complex-card {
  position: relative;
  border-radius: 10px;
  background-color: #fff;
  display: flex;
  padding: 10px;
}

.complex-card__gallery {
  flex-shrink: 0;
  width: 400px;
}

.complex-card__info-left-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 15px 10px 30px;
}

.complex-card__info-box-header {
  display: flex;
  width: 100%;
}

.complex-card__info-box-content {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  width: 100%;
}

.complex-card__title {
  width: 100%;
  margin: 0 0 14px;
  color: #000;
  font: 700 24px "Roboto", Arial, sans-serif;
  line-height: 1.17;
}

.complex-card__specs-list {
  width: 100%;
  margin: 0 0 18px;
  padding: 0;
  list-style-type: none;
}

.complex-card__specs-item {
  display: inline-block;
  margin-right: 14px;
  margin-bottom: 10px;
}

.complex-card__specs-item--status {
  color: #919aa6;
  font: 400 16px "Roboto", Arial, sans-serif;
  line-height: 1.17;
}

.complex-card__specs-text {
  margin: 0;
  color: #919aa6;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
}

.complex-card__address {
  margin: 0 30px 5px 0;
  color: #303030;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
}

.complex-card__metro-station {
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
}

.complex-card__metro-station-icon {
  display: inline-flex;
  align-items: center;
  width: 14px;
  height: 14px;
  margin-right: 6px;
  border: 4px solid #ed1f24;
  border-radius: 50%;
}

.complex-card__metro-station-name {
  margin: 0 14px 0 0;
  color: #303030;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
}

.complex-card__metro-station-time-to {
  margin: 0;
  color: #919aa6;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
}

.complex-card__info-box-footer {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.complex-card__description {
  display: -webkit-box;
  overflow-y: hidden;
  width: 100%;
  margin: auto 0 30px;
  color: #919aa6;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.5;
  word-break: break-word;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.complex-card__link {
  color: #0098ed;
  cursor: pointer;
  transition: color 0.25s ease;
}

.complex-card__link:hover,
.complex-card__link:focus {
  color: #3bb9ff;
}

.complex-card__broker-cabinet {
  display: flex;
  flex-wrap: wrap;
}

.complex-card__broker-cabinet-btn {
  max-width: 200px;
  height: 48px;
  margin-right: 20px;
  background-color: #ebf5ff;
  color: #0098ed;
}

.complex-card__broker-cabinet-btn:hover,
.complex-card__broker-cabinet-btn:focus {
  background-color: #0098ed;
  color: #fff;
}

.complex-card__broker-cabinet-btn--disabled {
  background-color: #919aa6;
}

.complex-card__broker-cabinet-btn--disabled:hover,
.complex-card__broker-cabinet-btn--disabled:focus {
  background-color: #919aa6;
  color: #fff;
  cursor: default;
}

.complex-card__developer-info {
  display: flex;
  align-items: center;
  width: 250px;
  margin: 10px 0;
  font: 700 14px/1.2 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
}

.complex-card__developer-info-icon {
  margin-right: 19px;
  fill: #41ae1b;
}

.complex-card__info-right-box {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 24%;
  margin-left: auto;
  padding: 10px 20px;
}

.complex-card__like-btn {
  position: relative;
  display: block;
  margin: 0 0 auto auto;
}

.complex-card__like-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.complex-card__like-btn:hover .complex-card__like-icon {
  fill: #f00;
  stroke: #f00;
}

.complex-card__like-icon {
  display: block;
  fill: transparent;
  stroke: #919aa6;
  transition: .25s fill ease, .25s stroke ease;
}

.complex-card__like-icon--active {
  fill: #f00;
  stroke: #f00;
}

.complex-card__old-price {
  margin: 0 20px 10px 0;
  color: #303030;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
  text-decoration: line-through;
}

.complex-card__price-by-square {
  margin: 0 0 10px;
  color: #919aa6;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
}

.complex-card__complex-range {
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 13px;
  color: #fff;
  font: 700 12px "Roboto", Arial, sans-serif;
  line-height: 1.17;
  text-transform: uppercase;
}

.complex-card__complex-range--premium {
  background-color: #334860;
}

.complex-card__complex-range--deluxe {
  background-color: #303030;
}

.complex-card__complex-range--business {
  background-color: #429ad0;
}

.complex-card__complex-range--comfort {
  background-color: #ffa250;
}

.complex-card__advantages {
  margin-top: 67px;
}

.complex-card__advantage-title {
  font: 700 16px "Roboto", Arial, sans-serif;
  line-height: 1.17;
}

.complex-card__advantage {
  flex-basis: 100%;
  margin: 10px 0;
  color: #303030;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
  white-space: nowrap;
}

.complex-card__developer {
  margin-top: auto;
  margin-bottom: 55px;
}

.complex-card__developer-logo {
  max-width: 100%;
  height: auto;
  max-height: 100px;
  margin-bottom: 10px;
}

.complex-card__developer-name {
  display: block;
  overflow: hidden;
  width: 100%;
  margin-top: 10px;
  color: #919aa6;
  text-overflow: ellipsis;
}

.complex-card__developer-name--link {
  color: #0098ed;
  cursor: pointer;
  transition: color 0.25s ease;
}

.complex-card__developer-name--link:hover,
.complex-card__developer-name--link:focus {
  color: #3bb9ff;
}

.complex-card__share-btn {
  position: relative;
  margin-left: auto;
}

.complex-card__share-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.complex-card__share-btn:hover .complex-card__share-icon {
  fill: #f00;
}

.complex-card__share-icon {
  display: block;
  fill: #919aa6;
  transition: .25s fill ease;
}

@media screen and (max-width: 1100px) {
  .complex-card__gallery {
    width: 300px;
  }
}

@media screen and (max-width: 991px) {
  .complex-card__gallery {
    width: 250px;
  }

  .complex-card__info-left-box {
    padding: 10px;
  }

  .complex-card__broker-cabinet-btn {
    width: auto;
  }

  .complex-card__developer-info {
    width: auto;
  }

  .complex-card__info-right-box {
    padding: 10px;
  }
}

@media screen and (max-width: 768px) {
  .complex-card__gallery {
    width: 150px;
  }

  .complex-card__developer-info-icon {
    width: 20px;
    margin-right: 5px;
  }
}

@media screen and (max-width: 601px) {
  .complex-card {
    display: none;
  }
}

.mobile-complex-card {
  display: none;
}

@media screen and (max-width: 601px) {
  .mobile-complex-card {
    display: block;
    margin: 0 8px;
    padding-top: 10px;
    border-radius: 10px;
    background-color: #fff;
  }
}

.mobile-complex-card__gallery {
  display: flex;
  overflow-x: scroll;
  max-width: 90vw;
  margin-left: 10px;
  padding: 0;
  list-style-type: none;
  overscroll-behavior: contain;
}

.mobile-complex-card__gallery-item {
  flex-shrink: 0;
  width: 270px;
  height: 180px;
  margin: 0;
}

.mobile-complex-card__gallery-item:not(:last-child) {
  margin-right: 10px;
}

.mobile-complex-card__gallery-item:first-child:last-child {
  width: 100%;
}

.mobile-complex-card__img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.mobile-complex-card__description {
  padding: 15px 20px;
}

.mobile-complex-card__title {
  color: #000;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.17;
}

.mobile-complex-card__complex-range {
  display: flex;
  align-items: center;
  height: 25px;
  margin-top: 2px;
  margin-right: 12px;
  padding: 0 12px;
  border-radius: 13px;
  color: #fff;
  font: 700 12px "Roboto", Arial, sans-serif;
  line-height: 1.17;
  text-transform: uppercase;
}

.mobile-complex-card__complex-range--premium {
  background-color: #334860;
}

.mobile-complex-card__complex-range--deluxe {
  background-color: #303030;
}

.mobile-complex-card__complex-range--business {
  background-color: #429ad0;
}

.mobile-complex-card__complex-range--comfort {
  background-color: #ffa250;
}

.mobile-complex-card__specs-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 7px;
  margin-bottom: 14px;
  list-style-type: none;
}

.mobile-complex-card__specs-item {
  margin-right: 14px;
  padding: 4px 0;
}

.mobile-complex-card__specs-spaces {
  margin: 0;
  color: #334860;
  font-weight: 700;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
}

.mobile-complex-card__specs-text {
  color: #919aa6;
  font: 400 16px "Roboto", Arial, sans-serif;
  line-height: 1.17;
}

.mobile-complex-card__specs-text--status {
  font-weight: 700;
}

.mobile-complex-card__advantage {
  margin: 10px 0;
  color: #303030;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.17;
  white-space: nowrap;
}

.mobile-complex-card__metro-station {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 14px;
}

.mobile-complex-card__metro-station-time-to {
  margin-left: 14px;
  color: #919aa6;
}

.mobile-complex-card__metro-station-icon {
  width: 14px;
  height: 14px;
  margin-right: 6px;
  border: 4px solid #ed1f24;
  border-radius: 50%;
}

.mobile-complex-card__address {
  line-height: 1.5;
}

.mobile-complex-card__options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
}

.mobile-complex-card__link {
  color: #0098ed;
  cursor: pointer;
  transition: color 0.25s ease;
}

.mobile-complex-card__link:hover,
.mobile-complex-card__link:focus {
  color: #3bb9ff;
}

.mobile-complex-card__broker-cabinet-btn {
  width: calc(100% - 80px);
  max-width: 250px;
  height: 60px;
  margin-right: 26px;
  background-color: #0088d4;
  color: #fff;
}

.mobile-complex-card__broker-cabinet-btn:hover,
.mobile-complex-card__broker-cabinet-btn:focus {
  background-color: #e19292;
  color: #fff;
}

.mobile-complex-card__broker-cabinet-btn--disabled {
  background-color: #919aa6;
}

.mobile-complex-card__broker-cabinet-btn--disabled:hover,
.mobile-complex-card__broker-cabinet-btn--disabled:focus {
  background-color: #919aa6;
  color: #fff;
  cursor: default;
}

.mobile-complex-card__like-btn {
  position: relative;
  justify-self: flex-end;
  margin-right: 28px;
  margin-left: auto;
}

.mobile-complex-card__like-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.mobile-complex-card__like-icon {
  display: block;
  fill: transparent;
  stroke: #919aa6;
  transition: .25s fill ease, .25s stroke ease;
}

.mobile-complex-card__like-icon--active {
  fill: #f00;
  stroke: #f00;
}

.mobile-complex-card__developer {
  margin-top: 22px;
}

.mobile-complex-card__developer-info {
  display: flex;
  align-items: center;
  color: #919aa6;
  font: 400 16px/1.5 "Roboto", Arial, sans-serif;
}

.mobile-complex-card__developer-info-icon {
  position: absolute;
  left: 230px;
  width: 22px;
  margin-bottom: 6px;
  fill: #41ae1b;
}

.mobile-complex-card__developer-logo {
  max-width: 100%;
  height: auto;
  max-height: 100px;
  margin-bottom: 10px;
}

.mobile-complex-card__developer-name {
  display: block;
  overflow: hidden;
  width: 100%;
  color: #919aa6;
  text-overflow: ellipsis;
}

.mobile-complex-card__developer-name--link {
  color: #0098ed;
  cursor: pointer;
  transition: color 0.25s ease;
}

.mobile-complex-card__developer-name--link:hover,
.mobile-complex-card__developer-name--link:focus {
  color: #3bb9ff;
}

.mobile-complex-card__share-btn {
  position: relative;
  justify-self: flex-end;
}

.mobile-complex-card__share-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.mobile-complex-card__share-icon {
  display: block;
  fill: #919aa6;
}

@media screen and (max-width: 300px) {
  .mobile-complex-card__broker-cabinet-btn {
    width: calc(100% - 60px);
  }

  .mobile-complex-card__like-btn {
    margin-right: 0;
  }
}

.invite-popup__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.invite-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 72, 96, 0.9);
}

.invite-popup {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 604px;
  max-width: calc(100% - 60px);
  max-height: calc(100vh - 30px);
  background-color: transparent;
}

.invite-popup__inner {
  position: relative;
  overflow-y: auto;
  width: 540px;
  padding: 20px 20px 50px;
  border-radius: 10px;
  background-color: #fff;
}

.invite-popup__title {
  color: #303030;
  font-weight: 700;
  font-size: 42px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.19;
  width: 100%;
  color: #303030;
  line-height: 1.5;
}

@media screen and (max-width: 1240px) {
  .invite-popup__title {
    font-size: 38px;
  }
}

@media screen and (max-width: 991px) {
  .invite-popup__title {
    font-size: 34px;
  }
}

@media screen and (max-width: 601px) {
  .invite-popup__title {
    font-size: 28px;
  }
}

.invite-popup__content {
  width: 400px;
  margin-top: 14px;
  color: #303030;
  font-size: 14px;
  line-height: 1.5;
}

.invite-popup__link-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 15px 0 10px;
}

.invite-popup__link-title {
  color: #334860;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}

.invite-popup__btn--link {
  color: #5696d1;
  font-weight: normal;
  text-decoration: underline;
}

.invite-popup__link-message {
  width: 100%;
  height: 100px;
  padding: 10px;
  border-radius: 10px;
  background: #ebf5ff;
  font-size: 18px;
  word-break: break-word;
}

.invite-popup__link-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.invite-popup__link-footer-text {
  margin: 10px 0 0;
  color: #919aa6;
  font-weight: 600;
  font-size: 17px;
}

.invite-popup__btn {
  width: 245px;
  margin-top: 15px;
  background-color: #0088d4;
}

.invite-popup__btn:hover,
.invite-popup__btn:focus {
  background-color: #08a6ff;
}

.invite-popup__close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  background-color: #fff;
  outline: 0;
  cursor: pointer;
}

.invite-popup__close-btn:hover .invite-popup__close-icon,
.invite-popup__close-btn:focus .invite-popup__close-icon {
  fill: #334860;
}

.invite-popup__close-icon {
  fill: rgba(51, 72, 96, 0.5);
  transition: fill .25s ease;
}

@media screen and (max-width: 480px) {
  .invite-popup {
    max-width: 100%;
  }

  .invite-popup__title {
    padding-right: 40px;
  }

  .invite-popup__content {
    width: auto;
  }

  .invite-popup__close-btn {
    position: absolute;
    top: 0;
    right: 0;
    background-color: transparent;
  }
}

.mobile-statistic-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 14px;
  padding: 16px 20px;
  border-radius: 5px;
  background-color: #fff;
}

.mobile-statistic-card__img-wrapper {
  width: 48px;
  height: 48px;
  margin-right: 12px;
}

.mobile-statistic-card__img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.mobile-statistic-card__text-content {
  color: #303030;
  font: 400 16px/1.5 "Roboto", Arial, sans-serif;
}

.mobile-statistic-card__info {
  color: #919aa6;
}

.mobile-statistic-card__info-date {
  margin-left: 21px;
  color: #303030;
}

.mobile-statistic-card__btn-arrow {
  position: relative;
  margin-left: auto;
}

.mobile-statistic-card__btn-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.mobile-statistic-card__btn-arrow-icon {
  fill: #919aa6;
  transition: .5s transform ease;
  transform: rotate(0);
}

.mobile-statistic-card__btn-arrow-icon--up {
  transform: rotate(180deg);
}

.mobile-statistic-card__extra {
  width: 100%;
}

.mobile-statistic-card__extra-text {
  margin-top: 30px;
  color: #919aa6;
  font: 400 16px/1.5 "Roboto", Arial, sans-serif;
}

.mobile-statistic-card__phone {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-top: 30px;
  padding: 18px 0;
  border-radius: 5px;
  background-color: #e2f0ff;
  color: #0088d4;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}

.mobile-statistic-card__phone::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 300px) {
  .mobile-statistic-card__img-wrapper {
    display: none;
  }
}

.request-popup .main-popup {
  display: flex;
  flex-direction: column;
  width: 365px;
  height: 378px;
  padding: 20px 30px 36px 14px;
}

.request-popup__title {
  color: #303030;
  font-weight: 700;
  font-size: 42px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.19;
  margin-bottom: 34px;
  color: #334860;
}

@media screen and (max-width: 1240px) {
  .request-popup__title {
    font-size: 38px;
  }
}

@media screen and (max-width: 991px) {
  .request-popup__title {
    font-size: 34px;
  }
}

@media screen and (max-width: 601px) {
  .request-popup__title {
    font-size: 28px;
  }
}

.request-popup__text {
  margin-bottom: auto;
  color: #334860;
  font: 700 16px/1.5 "Roboto", Arial, sans-serif;
}

.request-popup__btn {
  width: 166px;
}

@media screen and (max-width: 480px) {
  .request-popup .main-popup {
    height: 300px;
  }
}

.mobile-header-menu {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 5%;
  border-bottom: 1px solid #ebf5ff;
  background: #fff;
}

.mobile-header-menu__btn {
  top: 0;
  display: flex;
  align-items: center;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 24px;
  background-color: #334860;
  color: #fff;
  font: 400 20px/1.2 "Roboto", Arial, sans-serif;
  transition: all ease .25s;
}

.mobile-header-menu__btn--open {
  border: 2px solid #334860;
  background-color: #fff;
  color: #334860;
}

.mobile-header-menu__btn--open .mobile-header-menu__btn-icon {
  fill: #334860;
}

.mobile-header-menu__btn--scrolled {
  margin: 0 30px 0 0;
  padding: 12px;
}

.mobile-header-menu__btn-icon {
  margin-right: 14px;
  fill: #fff;
}

.mobile-header-menu__btn-icon--scrolled {
  margin: 0;
}

.mobile-header-menu__url {
  position: relative;
  display: flex;
  align-items: center;
  color: #0088d4;
  font: 700 16px/1 "Roboto", Arial, sans-serif;
}

.mobile-header-menu__url:hover,
.mobile-header-menu__url:focus,
.mobile-header-menu__url--active {
  color: #d15656;
}

.mobile-header-menu__url:hover .mobile-header-menu__url-icon,
.mobile-header-menu__url:focus .mobile-header-menu__url-icon,
.mobile-header-menu__url--active .mobile-header-menu__url-icon {
  fill: #d15656;
  stroke: #d15656;
}

.mobile-header-menu__url--scrolled {
  margin: 0 0 0 30px;
}

.mobile-header-menu__url::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.mobile-header-menu__url-icon {
  margin-right: 5px;
  fill: #fff;
  stroke: #0088d4;
}

.mobile-header-menu__wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  height: calc(100vh - 76px);
  padding: 0 20px;
  background-color: #fff;
  transform: translateY(100%);
}

.mobile-header-menu__wrapper--open {
  display: flex;
}

.mobile-header-menu__user {
  display: flex;
  align-items: center;
  align-self: flex-end;
}

.mobile-header-menu__user-name {
  margin-right: 11px;
  color: #9099a5;
  font: 400 20px/1.2 "Roboto", Arial, sans-serif;
}

.mobile-header-menu__user-img-wrapper {
  overflow: hidden;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: transparent;
}

.mobile-header-menu__user-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.mobile-header-menu__items-list {
  margin-top: 30px;
  padding-left: 8px;
}

.mobile-header-menu__item {
  color: #303030;
  font: 400 20px/1.2 "Roboto", Arial, sans-serif;
}

.mobile-header-menu__item:not(:first-of-type) {
  margin-top: 21px;
}

.mobile-header-menu__item-url {
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 100%;
  text-overflow: ellipsis;
}

.mobile-header-menu__item-url::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.mobile-header-menu__item-btn {
  position: relative;
  display: inline-block;
  width: 100%;
  color: inherit;
}

.mobile-header-menu__item-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  min-width: 44px;
  height: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.mobile-header-menu__item-favorites-count {
  margin-left: 8px;
  color: #0088d4;
  font: 700 16px/1 "Roboto", Arial, sans-serif;
}

.mobile-header-menu__item-favorites-count--active {
  color: #d15656;
}

.mobile-header-menu__btn-login {
  padding: 8px 14px;
  border-radius: 6px;
  background-color: #000;
  color: #fff;
  font: 700 18px/1.33 "Roboto", Arial, sans-serif;
}

.mobile-header-menu__btn-login:hover,
.mobile-header-menu__btn-login:focus {
  background-color: rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 601px) {
  .mobile-header-menu {
    display: flex;
  }
}

.confirm-popup .main-popup {
  display: flex;
  flex-direction: column;
  width: 365px;
  height: 378px;
  padding: 20px 30px 36px 14px;
}

.confirm-popup__title {
  color: #303030;
  font-weight: 700;
  font-size: 42px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.19;
  margin-bottom: 34px;
  color: #334860;
}

@media screen and (max-width: 1240px) {
  .confirm-popup__title {
    font-size: 38px;
  }
}

@media screen and (max-width: 991px) {
  .confirm-popup__title {
    font-size: 34px;
  }
}

@media screen and (max-width: 601px) {
  .confirm-popup__title {
    font-size: 28px;
  }
}

.confirm-popup__text {
  margin-bottom: auto;
  color: #334860;
  font: 700 16px/1.5 "Roboto", Arial, sans-serif;
}

.confirm-popup__btn {
  width: 166px;
  background-color: #d15656;
  color: #fff;
}

@media screen and (max-width: 480px) {
  .confirm-popup .main-popup {
    height: 300px;
  }
}

.preloader-spinner {
  position: absolute;
  width: 30px;
  height: 30px;
}

.preloader-spinner__slice {
  transform-origin: 15px 15px;
  animation: spinner 0.9s linear infinite;
}

.preloader-spinner__slice::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 14px;
  width: 2px;
  height: 7px;
  background: #919aa6;
}

.preloader-spinner__slice:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -0.7s;
}

.preloader-spinner__slice:nth-child(2) {
  transform: rotate(40deg);
  animation-delay: -0.6s;
}

.preloader-spinner__slice:nth-child(3) {
  transform: rotate(80deg);
  animation-delay: -0.5s;
}

.preloader-spinner__slice:nth-child(4) {
  transform: rotate(120deg);
  animation-delay: -0.4s;
}

.preloader-spinner__slice:nth-child(5) {
  transform: rotate(160deg);
  animation-delay: -0.3s;
}

.preloader-spinner__slice:nth-child(6) {
  transform: rotate(200deg);
  animation-delay: -0.2s;
}

.preloader-spinner__slice:nth-child(7) {
  transform: rotate(240deg);
  animation-delay: -0.1s;
}

.preloader-spinner__slice:nth-child(8) {
  transform: rotate(280deg);
  animation-delay: 0s;
}

.preloader-spinner__slice:nth-child(9) {
  transform: rotate(320deg);
  animation-delay: 0.1s;
}

@keyframes spinner {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

#map > ymaps,
#panorama > ymaps {
  overflow: hidden;
  border-radius: 10px;
}

.yandex-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.yandex-map__panorama {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.yandex-map__house-placemark {
  position: absolute;
  top: -68px;
  left: -24px;
  width: 48px;
  height: 68px;
  fill: #d15656;
}

.domoteka-banner {
  width: 100%;
}

.domoteka-banner--backgrounded {
  background: linear-gradient(0deg, rgba(0, 136, 212, 0.9), rgba(0, 136, 212, 0.9));
}

.domoteka-banner__title {
  color: #b2dbf2;
  font: 700 42px/1.2 "Montserrat", Arial, sans-serif;
}

.domoteka-banner__title-brand {
  color: #fff;
}

.domoteka-banner__text {
  margin-top: 14px;
  color: #fff;
  font: 400 42px/1.2 "Roboto", Arial, sans-serif;
}

.domoteka-banner__tg {
  margin-top: 14px;
  line-height: 150%;
  color: #fff;
}

@media screen and (max-width: 1240px) {
  .domoteka-banner__title,
  .domoteka-banner__text {
    font-size: 34px;
  }
}

@media screen and (max-width: 991px) {
  .domoteka-banner {
    margin-top: 0;
  }

  .domoteka-banner__title,
  .domoteka-banner__text {
    font-size: 28px;
  }
}

@media screen and (max-width: 480px) {
  .domoteka-banner__title,
  .domoteka-banner__text {
    font-size: 24px;
    line-height: 1.25;
  }
}


/*# sourceMappingURL=app.css.map*/