@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

a:hover,
a {
    text-decoration: none;
}

:focus {
    outline: 0;
}

ul {
    list-style-type: none;
}

* {
    margin: 0;
    padding: 0;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    width: 100%;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    color: rgb(22, 22, 23);
    -webkit-text-size-adjust: 100%;
    background: #fff;
}
body.open {
    overflow: hidden;
}
body.grey-bg {
    background: rgb(238, 242, 244);
}
body.inner-body .header {
    margin-bottom: 24px;
}
@media (max-width: 1024px) {
    body.inner-body .header {
        margin-bottom: 24px;
    }
}

.container {
    width: 100%;
    max-width: 1300px;
    padding: 0 32px;
    margin: 0 auto;
}
@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 1024px) {
    .wrapper {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
}

.burger {
    display: none;
    position: relative;
    cursor: pointer;
    z-index: 111;
    width: 38px;
    height: 38px;
    z-index: 99;
    border-radius: 8px;
}
.burger.open:before {
    background: rgb(14, 97, 255);
    transform: rotate(-45deg);
    top: 16px;
    height: 2px;
}
.burger.open:after {
    background: rgb(14, 97, 255);
    top: 16px;
    transform: rotate(45deg);
    height: 2px;
}
.burger.open span:before {
    display: none;
}
.burger:before {
    content: '';
    position: absolute;
    top: 11px;
    left: 9px;
    width: 20px;
    height: 2px;
    background: rgb(14, 97, 255);
    border-radius: 4px;
    transition: 0.5s;
}
.burger:after {
    content: '';
    position: absolute;
    bottom: 11px;
    left: 9px;
    width: 20px;
    height: 2px;
    background: rgb(14, 97, 255);
    border-radius: 4px;
    transition: 0.5s;
}
.burger span {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
}
.burger span:before {
    content: '';
    position: absolute;
    top: 18px;
    left: 9px;
    width: 20px;
    height: 2px;
    border-radius: 4px;
    background: rgb(14, 97, 255);
}
@media (max-width: 1024px) {
    .burger {
        display: block;
    }
}

.header {
    margin-bottom: 60px;
    background: #fff;
    position: relative;
    z-index: 100;
}
@media (max-width: 1024px) {
    .header {
        margin-bottom: 48px;
    }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
@media (max-width: 1024px) {
    .header-content {
        height: 62px;
    }
}
.header-content__right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
@media (max-width: 1024px) {
    .header-content__right {
        width: 100%;
        height: 100dvh;
        background: #fff;
        position: fixed;
        top: 0;
        left: 0;
        flex-direction: column;
        padding: 86px 16px 16px 16px;
        z-index: 90;
        justify-content: flex-start;
        transition: 0.5s;
        transform: translateX(100vw);
        overflow-y: scroll;
        overflow-x: hidden;
    }
}
.header-content__right.open {
    transform: translateX(0);
}
.header-content__btns {
    display: flex;
    align-items: center;
}
@media (max-width: 1024px) {
    .header-content__btns {
        flex-direction: column;
        width: 100%;
        padding: 16px;
        bottom: 0;
        left: 0;
        position: relative;
    }
}
@media (min-width: 1024px) {
    .header-content__btns {
        order: 1;
    }
}
.header-content__btns .btn {
    margin-left: 16px;
}
@media (max-width: 1024px) {
    .header-content__btns .btn {
        margin-left: 0;
        margin-top: 16px;
        width: 100%;
    }
}

.logo {
    margin-right: 32px;
    position: relative;
    z-index: 99;
}
.logo img {
    display: block;
}

.header-location {
    display: flex;
    align-items: center;
}
@media (max-width: 1024px) {
    .header-location {
        width: 100%;
        margin-bottom: 32px;
    }
}
.header-location .icon {
    margin-right: 5px;
}
.header-location .icon img {
    display: block;
}
.header-location a {
    font-size: 14px;
    color: rgb(109, 117, 136);
    border-bottom: 1px solid transparent;
    transition: 0.5s;
    position: relative;
}
@media (max-width: 1024px) {
    .header-location a {
        width: 100%;
        border: none;
    }
}
.header-location a:before {
    content: '';
    width: 20px;
    height: 20px;
    background: url(../images/location-arrow.svg) 50% 50% no-repeat;
    position: absolute;
    right: 0;
    top: calc(50% - 10px);
    display: none;
}
@media (max-width: 1024px) {
    .header-location a:before {
        display: block;
        font-size: 16px;
    }
}
.header-location a:hover {
    border-color: rgba(109, 117, 136, 0.5);
}

@media (max-width: 1024px) {
    .main-menu {
        width: 100%;
        display: none;
    }
}
.main-menu ul {
    display: flex;
}
@media (max-width: 1024px) {
    .main-menu ul {
        flex-direction: column;
    }
}
.main-menu ul li {
    margin: 0 16px;
}
@media (max-width: 1024px) {
    .main-menu ul li {
        flex-direction: column;
        margin: 0 0 32px 0;
        width: 100%;
    }
}
.main-menu ul li a {
    color: rgb(22, 22, 23);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0%;
    border-bottom: 1px solid transparent;
    transition: 0.5s;
}
@media (max-width: 1024px) {
    .main-menu ul li a {
        font-size: 18px;
    }
}
.main-menu ul li a:hover {
    border-color: rgba(92, 92, 92, 0.5);
}

.btn {
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    color: rgb(255, 255, 255);
    font-family: 'Inter';
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    letter-spacing: 0%;
    text-align: center;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.5s;
}
.btn:hover {
    opacity: 0.7;
}
.btn--fuild {
    width: 100%;
    display: flex;
}
.btn--blue {
    background: rgb(14, 97, 255);
}
.btn--red {
    background: rgb(234, 58, 61);
}
.btn--yellow {
    background: rgb(255, 221, 0);
    color: #000;
}

h1,
.h1 {
    color: rgb(22, 22, 23);
    font-size: 40px;
    font-weight: 600;
    line-height: 130%;
    max-width: calc(100% - 420px);
    text-align: left;
    margin-bottom: 24px;
}
@media (max-width: 1024px) {
    h1,
    .h1 {
        font-size: 32px;
        font-weight: 600;
        line-height: 39px;
        margin-bottom: 24px;
        max-width: 100%;
    }
    h1 br,
    .h1 br {
        display: none;
    }
}

h2,
.h2 {
    color: rgb(22, 22, 23);
    font-size: 32px;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: left;
    margin-bottom: 25px;
}
h2.center,
.h2.center {
    text-align: center;
}
@media (max-width: 1024px) {
    h2,
    .h2 {
        font-size: 18px;
        font-weight: 600;
        line-height: 24px;
        margin-bottom: 24px;
    }
    h2 br,
    .h2 br {
        display: none;
    }
}

.center {
    text-align: center;
}

h3,
.h3 {
    color: rgb(22, 22, 23);
    font-size: 18px;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: left;
    margin-bottom: 16px;
}
@media (max-width: 1024px) {
    h3,
    .h3 {
        font-size: 16px;
        font-weight: 600;
        line-height: 18px;
        margin-bottom: 16px;
    }
    h3 br,
    .h3 br {
        display: none;
    }
}

h4,
.h4 {
    color: rgb(22, 22, 23);
    font-size: 16px;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: left;
    margin-bottom: 16px;
}
@media (max-width: 1024px) {
    h4 br,
    .h4 br {
        display: none;
    }
}

.location-search {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgb(14, 97, 255);
    border-radius: 10px;
    height: 56px;
    background: rgb(255, 255, 255) url(../images/search-icon.svg)
        calc(100% - 16px) 50% no-repeat;
    padding: 0 16px;
    margin-bottom: 38px;
}
@media (max-width: 1024px) {
    .location-search {
        margin-bottom: 24px;
    }
}
@media (max-width: 768px) {
    .location-search {
        display: none;
    }
}
.location-search--mobile {
    display: none;
}
@media (max-width: 768px) {
    .location-search--mobile {
        display: flex;
    }
}
.location-search .icon {
    margin-right: 10px;
}
.location-search .icon img {
    display: block;
    width: 24px;
    height: 24px;
    min-width: 24px;
}
.location-search input {
    height: 54px;
    width: 100%;
    padding-right: 50px;
    color: rgb(22, 22, 23);
    font-family: 'Inter';
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0%;
    text-align: left;
    border: 0;
    background: transparent;
}
.location-search input::placeholder {
    color: rgb(109, 117, 136);
}

.marketplace-numbers {
    width: 816px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 75px;
}
@media (max-width: 1024px) {
    .marketplace-numbers {
        width: 100%;
        margin-bottom: 35px;
    }
}

.marketplace-number-item {
    width: calc(50% - 12px);
    margin-bottom: 24px;
    border-radius: 10px;
    padding: 32px 48px;
    background: rgb(14, 97, 255);
    min-height: 170px;
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: left;
}
@media (max-width: 680px) {
    .marketplace-number-item {
        width: 100%;
        padding: 40px 32px;
        min-height: 160px;
        margin-bottom: 16px;
    }
}
.marketplace-number-item span {
    color: rgb(255, 255, 255);
    font-size: 40px;
    font-weight: 400;
    line-height: 48px;
    letter-spacing: 0%;
    display: block;
    margin-bottom: 12px;
}

.footer {
    border-top: 1px solid rgb(221, 229, 241);
    background: #fff;
}

.footer-content {
    padding: 32px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 1024px) {
    .footer-content {
        justify-content: center;
        flex-direction: column;
        padding: 40px 0;
    }
}
.footer-content .logo {
    margin-right: 0;
    z-index: 8;
}
@media (max-width: 1024px) {
    .footer-content .logo {
        margin-bottom: 32px;
    }
}

@media (max-width: 1024px) {
    .footer-menu {
        width: 100%;
    }
}
.footer-menu ul {
    display: flex;
}
@media (max-width: 1024px) {
    .footer-menu ul {
        flex-direction: column;
    }
}
.footer-menu ul li {
    margin: 0 16px;
}
.footer-menu ul li:last-child {
    margin-right: 0;
}
@media (max-width: 1024px) {
    .footer-menu ul li {
        flex-direction: column;
        margin: 0 0 32px 0;
        width: 100%;
        text-align: center;
    }
    .footer-menu ul li:last-child {
        margin-bottom: 0;
    }
}
.footer-menu ul li a {
    color: rgb(22, 22, 23);
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0%;
    border-bottom: 1px solid transparent;
    transition: 0.5s;
}
.footer-menu ul li a:hover {
    border-color: rgba(92, 92, 92, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgb(221, 229, 241);
}
.footer-bottom .footer-content {
    padding: 24px 0;
}

.copy {
    color: rgb(109, 117, 136);
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0%;
}
@media (max-width: 1024px) {
    .copy {
        margin-bottom: 24px;
    }
}

.politics {
    color: rgb(109, 117, 136);
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0%;
    border-bottom: 1px solid transparent;
    transition: 0.5s;
}
.politics:hover {
    border-color: rgb(109, 117, 136);
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0%;
    color: rgb(14, 97, 255);
    margin-bottom: 24px;
}
.breadcrumbs .sep {
    display: block;
    width: 20px;
    height: 20px;
    background: url(../images/sep.svg) 50% 50% no-repeat;
    margin: 0 8px;
}
.breadcrumbs a {
    color: rgb(109, 117, 136);
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0%;
}

.pick-up-point-filter {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
@media (max-width: 768px) {
    .pick-up-point-filter {
        margin-bottom: 8px;
    }
}
.pick-up-point-filter__group {
    width: calc(33.3333333333% - 16px);
    margin-bottom: 16px;
    margin-right: 24px;
}
.pick-up-point-filter__group:last-child {
    margin-right: 0;
}
@media (max-width: 768px) {
    .pick-up-point-filter__group {
        width: 100%;
        margin-right: 0;
    }
}
.pick-up-point-filter__group > .input-group input {
    color: black;
}

.input-group {
    width: 100%;
}
.input-group input {
    width: 100%;
    height: 48px;
    border: 1px solid rgb(218, 223, 230);
    border-radius: 8px;
    padding: 0 16px;
    background: rgb(255, 255, 255);
    color: black;
    font-family: 'Inter';
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0%;
    text-align: left;
}
.input-group input::placeholder {
    color: rgb(109, 117, 136);
}

/** Custom Select **/
.custom-select-wrapper {
    position: relative;
    display: inline-block;
    user-select: none;
    width: 100%;
    z-index: 99;
}
.custom-select-wrapper select {
    display: none;
}

.custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
}

.custom-select-trigger {
    position: relative;
    display: block;
    width: 100%;
    height: 48px;
    line-height: 48px;
    border: 1px solid rgb(218, 223, 230);
    border-radius: 8px;
    padding: 0 46px 0 16px;
    background: rgb(255, 255, 255);
    color: black;
    cursor: pointer;
}
.custom-select-trigger:after {
    position: absolute;
    display: block;
    content: '';
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    right: 15px;
    background: url(../images/select-arrow.svg) 50% 50% no-repeat;
    transition: 0.5s;
}

.custom-select.opened .custom-select-trigger:after {
    transform: rotate(180deg);
}
.custom-select.opened .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    min-width: 100%;
    margin: 15px 0;
    border-radius: 10px;
    box-sizing: border-box;
    background: #fff;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-15px);
    max-height: 250px;
    overflow-y: auto;
    box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.05);
}

.option-hover:before {
    background: rgb(14, 97, 255);
    color: #fff;
}

.custom-option {
    position: relative;
    display: block;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: rgba(81, 90, 90, 0.65);
    font-family: 'Inter';
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: left;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}
.custom-option:first-of-type {
    border-radius: 10px 10px 0 0;
}
.custom-option:last-of-type {
    border-bottom: 0;
    border-radius: 0 0 10px 10px;
}
.custom-option:hover {
    background: rgb(14, 97, 255);
    color: #fff;
}

.custom-option.selection {
    background: rgb(14, 97, 255);
    color: #fff;
}

#ads-loader {
    display: none;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: black;
    margin-top: 20px;
    margin-bottom: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#scroll-to-top {
    position: fixed; /* закрепляем на экране */
    bottom: 20px; /* отступ от низа */
    right: 20px; /* отступ от правого края */
    z-index: 9999; /* чтобы быть сверху других элементов */
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background-color: #007bff;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: block; /* показываем всегда */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition:
        transform 0.3s,
        background-color 0.3s;
}

#scroll-to-top:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}

.pick-up-point-content {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.pick-up-point-content:last-child {
    margin-bottom: 48px;
}
@media (max-width: 1024px) {
    .pick-up-point-content {
        justify-content: space-between;
    }
}

.pick-up-point {
    width: calc(33.3333333333% - 16px);
    padding: 16px;
    border-radius: 10px;
    background: #fff;
    margin-bottom: 24px;
    margin-right: 24px;
}
@media (max-width: 1024px) {
    .pick-up-point {
        width: calc(50% - 8px);
        margin-right: 0;
    }
}
@media (max-width: 768px) {
    .pick-up-point {
        width: 100%;
    }
}
.pick-up-point:nth-child(3n + 3) {
    margin-right: 0;
}
.pick-up-point__logo {
    display: block;
    margin-bottom: 10px;
}
.pick-up-point__logo img {
    display: block;
    height: 30px;
}
.pick-up-point__image {
    display: block;
    width: 100%;
    height: 234px;
    position: relative;
}
@media (max-width: 768px) {
    .pick-up-point__image {
        height: 200px;
    }
}
.pick-up-point__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}
.pick-up-point__category {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 9;
    padding: 0 15px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0%;
    border-radius: 8px;
    text-transform: uppercase;
}
.pick-up-point__category--red {
    background: rgb(234, 58, 61);
}
.pick-up-point__category--green {
    background: rgb(6, 167, 101);
}
.pick-up-point__category--blue {
    background: rgb(0, 180, 232);
}
.pick-up-point__category--black {
    background: rgb(22, 22, 23);
}
.pick-up-point__category--purple {
    background: rgb(209, 42, 196);
}
.pick-up-point__row {
    display: flex;
    border-top: 1px solid rgb(221, 229, 241);
    padding-top: 12px;
    margin-top: 12px;
    justify-content: space-between;
    align-items: center;
}
.pick-up-point__row:first-child {
    border-top: 0;
}
@media (max-width: 1024px) {
    .pick-up-point__row-price {
        order: -1;
    }
    .pick-up-point__row:first-child {
        border-top: 1px solid rgb(221, 229, 241);
    }
    .pick-up-point__row.mobile-show {
        display: flex;
    }
}
@media (min-width: 1024px) {
    .pick-up-point__row.desktop-show {
        display: flex;
    }
}
.pick-up-point__col {
    width: 50%;
}
.pick-up-point__title {
    display: block;
    color: rgb(109, 117, 136);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0%;
    margin-bottom: 2px;
}
@media (max-width: 768px) {
    .pick-up-point__title {
        font-size: 12px;
    }
}
.pick-up-point__number {
    display: block;
    white-space: nowrap;
    color: rgb(22, 22, 23);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0%;
}

@media (max-width: 768px) {
    .pick-up-point__number {
        font-size: 16px;
    }
}
.pick-up-point__sum {
    color: rgb(22, 22, 23);
    font-size: 24px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .pick-up-point__sum {
        font-size: 20px;
    }
}
.pick-up-point__sale {
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.pick-up-point__sale-line {
    color: rgb(170, 180, 200);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0%;
    text-decoration-line: line-through;
}
.pick-up-point__time {
    padding: 0 6px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0%;
    border-radius: 8px;
    background: rgb(234, 58, 61);
    margin-left: 4px;
}
@media (max-width: 768px) {
    .pick-up-point__time {
        font-size: 12px;
    }
}
.pick-up-point__content {
    display: flex;
    flex-direction: column;
}
.pick-up-point .btn {
    margin-top: 16px;
}

.object-page {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 50px;
}
@media (max-width: 1024px) {
    .object-page {
        padding-bottom: 20px;
    }
}
.object-page__content {
    width: calc(100% - 420px);
}
@media (max-width: 1024px) {
    .object-page__content {
        width: 100%;
    }
}
.object-page__side {
    width: 396px;
}
@media (max-width: 1024px) {
    .object-page__side {
        display: none;
    }
}

.content-block ol,
.content-block ul {
}

.content-block li {
    margin-bottom: 0.5em;
    line-height: 1.4;
}

.content-block {
    padding: 32px 24px;
    background: #fff;
    border-radius: 20px;
    margin-bottom: 24px;
}
.content-block--last-desktop {
    margin-bottom: 0;
}
@media (max-width: 1024px) {
    .content-block--last-desktop {
        margin-bottom: 16px;
    }
}
.content-block:last-child {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .content-block {
        margin-bottom: 16px;
        padding: 24px 16px;
        width: calc(100% + 32px);
        margin: 0 -16px 16px -16px;
        border-radius: 10px;
    }
}
.content-block__logo img {
    display: block;
    height: 30px;
    object-fit: contain;
}
@media (max-width: 768px) {
    .content-block__logo img {
        height: 20px;
        max-width: 100%;
    }
}
.content-block__number {
    color: rgb(109, 117, 136);
    font-size: 32px;
    font-weight: 400;
    line-height: 39px;
    letter-spacing: 0%;
}
@media (max-width: 768px) {
    .content-block__number {
        font-size: 18px;
        font-weight: 400;
        line-height: 22px;
    }
}
.content-block__head {
    padding-bottom: 16px;
    border-bottom: 1px solid rgb(221, 229, 241);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 768px) {
    .content-block__head {
        margin-bottom: 16px;
    }
}
.price-content-block {
    margin-top: 24px;
}
.content-block__head--price {
    flex-direction: column;
    align-items: flex-start;
}
.content-block__title {
    color: rgb(22, 22, 23);
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0%;
}
.content-block__title small {
    display: block;
    padding-top: 16px;
    font-size: 14px;
    font-weight: 400;
}
@media (max-width: 768px) {
    .content-block__title {
        font-size: 18px;
    }
}

.content-block__info-row {
    display: flex;
    border-bottom: 1px solid rgb(221, 229, 241);
    padding-bottom: 16px;
    margin-bottom: 24px;
}
@media (max-width: 768px) {
    .content-block__info-row {
        margin-bottom: 16px;
    }
}
.content-block__info-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}
.content-block__info-row.is-last {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}
@media (max-width: 1024px) {
    .content-block__info-row.mobile-show {
        display: flex;
    }
}
@media (min-width: 1024px) {
    .content-block__info-row.desktop-show {
        display: flex;
    }
}
.content-block__info-col {
    width: 50%;
}
.content-block__info-col:first-child {
    padding-right: 20px;
}
.content-block__info-title {
    color: rgb(109, 117, 136);
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: left;
    display: block;
    margin-bottom: 4px;
}
@media (max-width: 768px) {
    .content-block__info-title {
        font-size: 12px;
    }
}
.content-block__info-number {
    color: rgb(22, 22, 23);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0%;
    margin-bottom: 4px;
}
.content-block__info-number span {
    font-size: 24px;
}
@media (max-width: 768px) {
    .content-block__info-number span {
        font-size: 18px;
        font-weight: 400;
    }
}
@media (max-width: 768px) {
    .content-block__info-number {
        font-size: 20px;
        font-weight: 400;
    }
}
@media (max-width: 768px) {
    .content-block__info-number--mobile-lg {
        font-size: 24px;
    }
}
.content-block__info-desc {
    color: rgb(6, 167, 101);
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0%;
    text-align: left;
}
@media (max-width: 768px) {
    .content-block__info-desc {
        font-size: 12px;
        font-weight: 400;
        line-height: 15px;
    }
}
.content-block P {
    color: rgb(22, 22, 23);
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: left;
    margin-bottom: 20px;
}
.content-block ul.content-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 16px;
}
.content-block ul.content-list li {
    color: rgb(22, 22, 23);
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: left;
    margin-bottom: 20px;
}
.content-block ul.content-list li strong {
    display: block;
}

.stats-list {
    margin-bottom: 16px;
}
.stats-list li {
    color: rgb(22, 22, 23);
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0%;
    margin-bottom: 16px;
}
.stats-list li span {
    color: rgb(109, 117, 136);
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0%;
    text-align: left;
    margin-right: 8px;
}

.list-active {
    display: flex;
    flex-wrap: wrap;
}
.list-active li {
    width: 35%;
    color: rgb(22, 22, 23);
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0%;
    margin-bottom: 16px;
}
@media (max-width: 768px) {
    .list-active li {
        width: 50%;
    }
}

.dynamics {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .dynamics {
        margin-bottom: 16px;
    }
}
.dynamics__schedule {
    width: calc(65% - 12px);
}
@media (max-width: 1280px) {
    .dynamics__schedule {
        width: 100%;
        margin-bottom: 16px;
    }
}
.dynamics__schedule img {
    display: block;
    width: 100%;
}
.dynamics__list {
    width: calc(35% - 12px);
    padding: 24px 16px;
    border-radius: 8px;
    background: rgb(246, 247, 250);
}
@media (max-width: 1280px) {
    .dynamics__list {
        width: 100%;
    }
}
.dynamics__list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgb(109, 117, 136);
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0%;
    text-align: left;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px dashed rgb(221, 229, 241);
}
.dynamics__list li:last-child {
    margin-bottom: 0;
}
.dynamics__list li strong {
    color: rgb(22, 22, 23);
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0%;
    text-align: right;
}

.month-list {
    width: calc(65% - 12px);
}
@media (max-width: 1280px) {
    .month-list {
        width: 100%;
    }
}
.month-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgb(109, 117, 136);
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0%;
    text-align: left;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px dashed rgb(221, 229, 241);
}
.month-list li:last-child {
    margin-bottom: 0;
}
.month-list li strong {
    color: rgb(22, 22, 23);
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0%;
    text-align: right;
}

.gallery {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.gallery .gallery-all-photo {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 9;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    height: 30px;
    background: rgba(0, 0, 0, 0.59);
    color: rgb(255, 255, 255);
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 0%;
    text-align: center;
    transition: 0.5s;
}
@media (max-width: 768px) {
    .gallery .gallery-all-photo {
        display: none;
    }
}
.gallery .gallery-all-photo:hover {
    background: rgb(0, 0, 0);
}
.gallery .swiper {
    width: 100%;
    height: 278px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 480px) {
    .gallery .swiper {
        height: 195px;
    }
}
.gallery .swiper-slide {
    background-size: cover;
    background-position: center;
}
.gallery .mySwiper2 {
    height: 278px;
    width: calc(65% - 7px);
}
@media (max-width: 768px) {
    .gallery .mySwiper2 {
        width: 100%;
    }
}
@media (max-width: 480px) {
    .gallery .mySwiper2 {
        height: 195px;
    }
}
.gallery .mySwiper {
    width: calc(35% - 7px);
    height: 100%;
}
@media (max-width: 768px) {
    .gallery .mySwiper {
        display: none;
    }
}
.gallery .mySwiper .swiper-wrapper {
    flex-direction: column;
}
.gallery .mySwiper .swiper-slide {
    width: 100% !important;
    margin-bottom: 8px;
}
.gallery .mySwiper .swiper-slide:last-child {
    margin-bottom: 0;
}
.gallery .mySwiper .swiper-slide {
    width: 100%;
    height: 135px;
}
.gallery .mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}
.gallery .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
    background: rgb(238, 242, 244);
}

.swiper-button-prev {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    box-shadow: 0px 0.64px 2.56px 0px rgba(0, 0, 0, 0.12);
    background: rgb(255, 255, 255) url(../images/prev.svg) 50% 50% no-repeat;
    opacity: 1;
}
.swiper-button-prev:before,
.swiper-button-prev:after {
    display: none;
}

.swiper-button-next {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    box-shadow: 0px 0.64px 2.56px 0px rgba(0, 0, 0, 0.12);
    background: rgb(255, 255, 255) url(../images/next.svg) 50% 50% no-repeat;
    opacity: 1;
}
.swiper-button-next:before,
.swiper-button-next:after {
    display: none;
}

.map {
    display: block;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.carousel-swiper {
    overflow: visible;
}
.carousel-swiper .swiper-container {
    overflow: hidden;
    width: 100%;
}

.carousel {
    position: relative;
    padding-bottom: 50px;
    overflow-x: hidden;
}
@media (max-width: 1024px) {
    .carousel {
        width: calc(100% + 32px);
        margin: 0 -16px;
        padding-bottom: 20px;
    }
}
@media (max-width: 1024px) {
    .carousel .swiper {
        padding: 0 30px 0 16px;
    }
}
.carousel .swiper-button-prev {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.12);
    background: rgb(255, 255, 255) url(../images/prev.svg) 50% 50% no-repeat;
    background-size: 9px 16px;
    opacity: 1;
    left: -70px;
}
.carousel .swiper-button-prev:before,
.carousel .swiper-button-prev:after {
    display: none;
}
@media (max-width: 1440px) {
    .carousel .swiper-button-prev {
        left: -30px;
    }
}
@media (max-width: 1024px) {
    .carousel .swiper-button-prev {
        display: none;
    }
}
.carousel .swiper-button-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.12);
    background: rgb(255, 255, 255) url(../images/next.svg) 50% 50% no-repeat;
    background-size: 9px 16px;
    opacity: 1;
    right: -70px;
}
.carousel .swiper-button-next:before,
.carousel .swiper-button-next:after {
    display: none;
}
@media (max-width: 1440px) {
    .carousel .swiper-button-next {
        right: -30px;
    }
}
@media (max-width: 1024px) {
    .carousel .swiper-button-next {
        display: none;
    }
}

.carousel-swiper .pick-up-point {
    width: 100%;
}

.carousel .swiper-slide {
    display: flex;
    width: 50% !important;
    margin-right: 0px !important;
}

@media (max-width: 1024px) {
    .carousel-swiper .swiper-slide {
        width: 100% !important;
        margin-right: 12px !important;
        box-sizing: border-box;
    }
}
.only-mobile {
    display: none !important;
}

@media (max-width: 1024px) {
    .only-mobile {
        display: block !important;
        visibility: visible !important;
        width: auto !important;
    }
}

.phone-seller {
    border-radius: 10px;
    height: 56px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: rgb(6, 167, 101);
    flex-direction: column;
    cursor: pointer;
}
.phone-seller.show .hide-phone {
    display: none;
}
.phone-seller.show .show-phone {
    display: block;
}
.phone-seller__title {
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    display: block;
    margin-bottom: 3px;
}
.phone-seller .hide-phone {
    color: rgb(255, 255, 255);
    font-size: 18px;
}
.phone-seller .show-phone {
    display: none;
    color: rgb(255, 255, 255);
    font-size: 18px;
}
.phone-seller .show-phone a {
    color: rgb(255, 255, 255);
}

.contact-item {
    border-radius: 10px;
    height: 48px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: rgb(238, 242, 244);
    color: rgb(22, 22, 23);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    transition: 0.5s;
}
.contact-item:hover {
    opacity: 0.7;
}
.contact-item:last-child {
    margin-bottom: 0;
}
.contact-item .icon {
    display: block;
    margin-right: 10px;
}
.contact-item .icon img {
    display: block;
}

.business {
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 10px;
    background: rgb(255, 221, 0);
}
@media (max-width: 768px) {
    .business {
        width: calc(100% + 32px);
        margin: 0 -16px 16px -16px;
        border-radius: 0;
        padding: 32px 16px;
    }
}
.business__title {
    display: block;
    color: rgb(22, 22, 22);
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: 0%;
    margin-bottom: 24px;
}
.business p {
    color: rgb(22, 22, 22);
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: left;
    margin-bottom: 24px;
}
.business ul li {
    display: flex;
    align-items: center;
    color: rgb(22, 22, 23);
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: left;
    margin-bottom: 16px;
}
.business ul li .icon {
    display: block;
    width: 30px;
    height: 30px;
    margin-right: 12px;
    background: url(../images/disc-check-red.svg);
}
.business__old-sost {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    color: rgb(22, 22, 22);
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;
}
.business__old-sost span {
    color: rgb(234, 58, 61);
    font-size: 32px;
    font-weight: 400;
    line-height: 39px;
    letter-spacing: 0%;
    text-align: center;
    text-decoration-line: line-through;
    margin-right: 16px;
}

.profitable-option {
    padding: 32px;
    background: rgb(51, 134, 247);
    border-radius: 20px;
    margin-bottom: 24px;
}
@media (max-width: 768px) {
    .profitable-option {
        width: calc(100% + 32px);
        margin: 0 -16px 16px -16px;
        border-radius: 0;
    }
}
.profitable-option__title {
    display: block;
    color: rgb(255, 255, 255);
    font-size: 40px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;
    margin-bottom: 24px;
}
.profitable-option p {
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: left;
    margin-bottom: 24px;
}

@media (max-width: 1024px) {
    .profitable-option-min .profitable-option__title {
        font-size: 20px;
        margin-bottom: 12px;
    }
}

@media (max-width: 1024px) {
    .profitable-option-min p {
        font-size: 14px;
        margin-bottom: 12px;
    }
}

.profitable-option--sticky {
    position: sticky !important;
    top: 20px;
}

.object-form {
    width: 100%;
    max-width: 606px;
    margin-bottom: 90px;
    padding: 48px 60px;
    border-radius: 10px;
    background: #fff;
}
@media (max-width: 1024px) {
    .object-form {
        padding: 16px 24px;
        width: calc(100% + 32px);
        margin: 0 -16px 48px -16px;
        border-radius: 0;
    }
}
.object-form ul {
    margin-bottom: 32px;
}
.object-form ul li {
    display: flex;
    align-items: center;
    color: rgb(22, 22, 23);
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: left;
    margin-bottom: 16px;
}
.object-form ul li .icon {
    display: block;
    width: 30px;
    height: 30px;
    min-width: 30px;
    margin-right: 12px;
    background: url(../images/disc-check.svg);
}

.form-group {
    position: relative;
    margin-bottom: 24px;
}
.form-group label {
    display: block;
    color: rgb(22, 22, 23);
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0%;
    text-align: left;
    margin-bottom: 12px;
}
.form-group input {
    width: 100%;
    height: 48px;
    border: 1px solid rgb(218, 223, 230);
    border-radius: 8px;
    padding: 0 16px;
    background: rgb(255, 255, 255);
    color: rgb(109, 117, 136);
    font-family: 'Inter';
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0%;
    text-align: left;
}
.form-group input::placeholder {
    color: rgb(109, 117, 136);
}
.form-group--rub input {
    padding-right: 30px;
}
.form-group--rub:before {
    position: absolute;
    right: 12px;
    bottom: 15px;
    font-size: 16px;
    color: rgb(109, 117, 136);
}

.search-results {
    margin-bottom: 50px;
}
@media (max-width: 1024px) {
    .search-results {
        margin-bottom: 20px;
    }
}
.search-results__title {
    color: rgb(22, 22, 23);
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0%;
    text-align: left;
    margin-bottom: 20px;
    display: block;
}
.search-results__main {
    margin-bottom: 30px;
}
.search-results__main.hide {
    display: none;
}
.search-results__row {
    display: flex;
    flex-wrap: wrap;
}
@media (max-width: 1024px) {
    .search-results__row {
        justify-content: space-between;
    }
}
.search-results__col {
    width: calc(25% - 18px);
    margin-right: 24px;
}
@media (max-width: 1024px) {
    .search-results__col {
        width: calc(50% - 10px);
        margin-right: 0;
    }
}
.search-results__col:last-child {
    margin-right: 0;
}
.search-results__col ul {
    margin-bottom: 32px;
}
.search-results__col ul li {
    margin-bottom: 20px;
    display: flex;
}
.search-results__col ul li span {
    color: rgb(109, 117, 136);
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0%;
    text-align: left;
    margin-left: 6px;
    transform: translateY(-4px);
}
.search-results__col ul li a {
    color: rgb(22, 22, 23);
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;
    transition: 0.5s;
    border-bottom: 1px solid transparent;
}
@media (max-width: 768px) {
    .search-results__col ul li a {
        line-height: 120%;
    }
}
.search-results__col ul li a:hover {
    border-color: rgba(22, 22, 23, 0.5);
}
.search-results__col ul li a.main-city {
    color: rgb(22, 22, 23);
    font-size: 24px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;
}
@media (max-width: 768px) {
    .search-results__col ul li a.main-city {
        font-size: 18px;
    }
}
.search-results__all-cities {
    display: none;
}
.search-results__all-cities.show {
    display: block;
}

.show-all-cities {
    cursor: pointer;
    color: rgb(14, 97, 255) !important;
}
.show-all-cities:hover {
    border-color: rgb(0, 180, 232) !important;
}

.hide-cities-list {
    cursor: pointer;
    color: rgb(14, 97, 255) !important;
}
.hide-cities-list:hover {
    border-color: rgb(0, 180, 232) !important;
}

.hidden {
    display: none;
}

.modal {
    width: 100%;
    max-width: 606px;
    padding: 48px 60px;
    border-radius: 10px;
}
@media (max-width: 768px) {
    .modal {
        padding: 48px 16px;
        border-radius: 0;
    }
}
.modal ul.check-list {
    margin-bottom: 32px;
}
.modal ul.check-list li {
    display: flex;
    align-items: center;
    color: rgb(22, 22, 23);
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: left;
    margin-bottom: 16px;
}
.modal ul.check-list li .icon {
    display: block;
    width: 30px;
    height: 30px;
    min-width: 30px;
    margin-right: 12px;
    background: url(../images/disc-check.svg);
}
.modal ul.basic-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 16px;
}
.modal ul.basic-list li {
    color: rgb(22, 22, 23);
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: left;
    margin-bottom: 20px;
}
.modal ul.basic-list li:last-child {
    margin-bottom: 0;
}
.modal ul.basic-list li strong {
    display: block;
}
.modal .modal-title {
    display: block;
    color: rgb(22, 22, 23);
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;
    letter-spacing: 0%;
    margin-bottom: 24px;
}
.modal p {
    color: rgb(22, 22, 23);
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0%;
    margin-bottom: 20px;
}

.fancybox-close-small {
    position: absolute;
    width: 32px;
    height: 32px;
    background: url(../images/close.svg) 50% 50% no-repeat;
    top: 10px !important;
    right: 10px !important;
}
.fancybox-close-small svg {
    display: none;
}

.fancybox-content {
    overflow: visible;
}

.fancybox-overlay {
    pointer-events: none; /* блокирует все события мыши */
}

.lds-spinner {
    color: official;
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

.lds-spinner div {
    transform-origin: 32px 32px;
    animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
    content: ' ';
    display: block;
    position: absolute;
    top: 3px;
    left: 29px;
    width: 5px;
    height: 14px;
    border-radius: 20%;
    background: rgb(0, 180, 232);
}

.lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}

@keyframes lds-spinner {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.loader {
    display: flex;
    justify-content: center;
    padding-top: 20px;
}

.suggestions-promo {
    display: none !important;
}

.suggestions-suggestions {
    border: 1px solid rgb(218, 223, 230);
    border-radius: 8px;
    padding: 0px 16px 10px 16px;
    color: rgb(109, 117, 136);
    line-height: 16px;
    letter-spacing: 0%;
}

.suggestions-suggestion {
    border-bottom: 1px solid rgb(218, 223, 230);
    padding: 8px 4px;
}

.suggestions-suggestions > .suggestions-suggestion:nth-last-child(2) {
    border-bottom: none;
}

.form-group input {
    transition: all 0.2s;
}

.error {
    border-color: #f1a4a4 !important;
    background: #f3d0d0 !important;
    transition: all 0.2s;
}

a {
    color: #000;
}

.mobile-show {
    display: none;
}
@media (max-width: 1024px) {
    .mobile-show {
        display: block;
    }
}

.desktop-show {
    display: block;
}
@media (max-width: 1024px) {
    .desktop-show {
        display: none;
    }
}

.object-page__cost {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 10px;
    margin-top: -95px;
}
@media (max-width: 1024px) {
    .object-page__cost.mobile-hide {
        display: none;
    }
}
.object-page__cost.mobile-show {
    display: none;
}
@media (max-width: 1024px) {
    .object-page__cost.mobile-show {
        display: flex;
        margin-top: 0;
        flex-direction: column;
        align-items: flex-start;
    }
}
.object-page__actual-cost {
    margin-top: 8px;
    font-size: 32px;
    display: block;
    font-weight: 400;
    color: rgb(22, 22, 23);
}
@media (max-width: 1024px) {
    .object-page__actual-cost {
        font-size: 24px;
    }
}
.object-page__old {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}
.object-page__sale {
    display: block;
    margin-bottom: 6px;
}
.object-page__sale span {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    color: #fff;
    font-weight: 400;
    height: 24px;
    border-radius: 6px;
    background: rgb(234, 58, 61);
    padding: 0 5px;
}
.object-page__old-sum {
    font-size: 32px;
    color: rgb(170, 180, 200);
    font-weight: 400;
    text-decoration: line-through;
}
@media (max-width: 1024px) {
    .object-page__old-sum {
        font-size: 24px;
    }
}

@media (max-width: 1024px) {
    .profitable-option-min.mobile-show {
        display: block;
        margin: -24px -16px 16px -16px;
        padding: 16px;
    }
    .profitable-option-min > .btn--yellow {
        font-size: 14px;
        padding: 0 16px;
    }
}
@media (max-width: 1024px) {
    .object-page__old {
        flex-direction: row-reverse;
        column-gap: 10px;
        margin-top: 15px;
    }
    .object-page__sale {
        margin-bottom: 0px;
    }
}

/*# sourceMappingURL=styles.css.map */

.setting {
    background: rgb(255, 255, 255);
    border-radius: 10px;
    margin-bottom: 60px;
}
@media (max-width: 767px) {
    .setting {
        width: calc(100% + 32px);
        margin: 0 -16px 48px -16px;
    }
}
.setting__title {
    display: block;
    width: 100%;
    padding: 24px 24px;
    font-size: 24px;
    cursor: pointer;
    font-weight: 500;
    position: relative;
}
@media (max-width: 767px) {
    .setting__title {
        font-size: 18px;
        padding: 24px 16px;
    }
}
.setting__title:before {
    content: '';
    width: 24px;
    height: 24px;
    position: absolute;
    right: 24px;
    top: 24px;
    background: url(../images/setting-arrow-lg.svg) 50% 50% no-repeat;
    transition: 0.5s;
    transform: rotate(180deg);
}
.setting__title.open:before {
    transform: rotate(0deg);
}
.setting__content {
    padding: 24px;
    overflow: hidden;
    display: none;
}
@media (max-width: 767px) {
    .setting__content {
        padding: 16px 16px 24px 16px;
    }
}
.setting__content.open {
    display: block;
}

.setting-group {
    margin-bottom: 48px;
}
@media (max-width: 767px) {
    .setting-group {
        margin-bottom: 32px;
    }
}
.setting-group--last {
    margin-bottom: 24px;
}
.setting-group:last-child {
    margin-bottom: 0;
}
.setting-group__title {
    display: block;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
}
@media (max-width: 767px) {
    .setting-group__title {
        font-size: 16px;
    }
}
.setting-group p {
    color: rgb(109, 117, 136);
    font-size: 14px;
    margin-bottom: 16px;
}

.checkbox {
    min-height: 24px;
    margin-bottom: 16px;
}
.checkbox .styled-checkbox {
    position: absolute;
    opacity: 0;
}
.checkbox .styled-checkbox + label {
    position: relative;
    cursor: pointer;
    padding: 0;
    font-size: 14px;
    padding-left: 40px;
    display: block;
    line-height: 24px;
}
@media (max-width: 767px) {
    .checkbox .styled-checkbox + label {
        font-size: 14px;
    }
}
.checkbox .styled-checkbox + label:before {
    content: '';
    display: inline-block;
    vertical-align: text-top;
    width: 24px;
    height: 24px;
    background: white;
    transition: 0.5s;
    border: 1px solid rgb(218, 223, 230);
    border-radius: 4px;
    position: absolute;
    left: 0;
    top: 0;
}
.checkbox .styled-checkbox:hover + label:before {
    border-color: rgb(14, 97, 255);
}
.checkbox .styled-checkbox:focus + label:before {
    transition: 0.5s;
}
.checkbox .styled-checkbox:checked + label:before {
    background: rgb(14, 97, 255);
}
.checkbox .styled-checkbox:disabled + label {
    color: #b8b8b8;
    cursor: auto;
}
.checkbox .styled-checkbox:disabled + label:before {
    box-shadow: none;
    background: #ddd;
}
.checkbox .styled-checkbox:checked + label:before {
    border-color: rgb(14, 97, 255);
}
.checkbox .styled-checkbox:checked + label:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 24px;
    height: 24px;
    background: url(../images/checkbox.svg) 50% 50% no-repeat;
    transition: 0.5s;
}

.budget-form {
    display: flex;
    align-items: center;
}
.budget-form .form-group {
    position: relative;
    width: 312px;
    margin-bottom: 16px;
}
@media (max-width: 767px) {
    .budget-form .form-group {
        width: 100%;
    }
}
.budget-form .form-group .error-text {
    display: none;
    margin-top: 10px;
}
.budget-form .form-group.error {
    background: transparent !important;
    font-size: 14px;
    color: rgb(234, 58, 61);
}
.budget-form .form-group.error .error-text {
    display: block;
}
.budget-form .form-group.error input {
    border-color: rgb(234, 58, 61);
}
.budget-form .form-group:before {
    content: '₽';
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 14px;
    color: rgb(109, 117, 136);
    z-index: 12;
}
.budget-form .form-group input {
    width: 100%;
}
@media (max-width: 767px) {
    .budget-form .form-group input {
        font-size: 14px;
    }
}
.budget-form .sep {
    font-size: 14px;
    display: flex;
    align-items: center;
    margin: 0 24px;
    margin-bottom: 16px;
}
@media (max-width: 767px) {
    .budget-form .sep {
        margin-left: 8px;
        margin-right: 8px;
    }
}

.payback-form {
    display: flex;
    align-items: center;
}
.payback-form .form-group {
    position: relative;
    width: 312px;
    margin-bottom: 16px;
}
.payback-form .form-group .error-text {
    display: none;
    margin-top: 10px;
}
.payback-form .form-group.error {
    background: transparent !important;
    font-size: 14px;
    color: rgb(234, 58, 61);
}
.payback-form .form-group.error .error-text {
    display: block;
}
.payback-form .form-group.error input {
    border-color: rgb(234, 58, 61);
}
.payback-form .form-group:before {
    content: 'мес';
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 14px;
    color: rgb(109, 117, 136);
    z-index: 12;
}
.payback-form .form-group input {
    width: 100%;
}
@media (max-width: 767px) {
    .payback-form .form-group input {
        font-size: 14px;
    }
}
.payback-form .sep {
    font-size: 14px;
    display: flex;
    align-items: center;
    margin: 0 24px;
    margin-bottom: 16px;
}
@media (max-width: 767px) {
    .payback-form .sep {
        margin-left: 8px;
        margin-right: 8px;
    }
}

.radio {
    min-height: 24px;
    margin-bottom: 16px;
}
.radio .styled-radio {
    position: absolute;
    opacity: 0;
}
.radio .styled-radio + label {
    position: relative;
    cursor: pointer;
    padding: 0;
    font-size: 14px;
    padding-left: 40px;
    display: block;
    line-height: 24px;
}
@media (max-width: 767px) {
    .radio .styled-radio + label {
        font-size: 14px;
    }
}
.radio .styled-radio + label:before {
    content: '';
    display: inline-block;
    vertical-align: text-top;
    width: 24px;
    height: 24px;
    background: white;
    transition: 0.5s;
    border: 1px solid rgb(218, 223, 230);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
}
.radio .styled-radio:hover + label:before {
    border-color: rgb(14, 97, 255);
}
.radio .styled-radio:focus + label:before {
    transition: 0.5s;
}
.radio .styled-radio:checked + label:before {
    background: rgb(14, 97, 255);
}
.radio .styled-radio:disabled + label {
    color: #b8b8b8;
    cursor: auto;
}
.radio .styled-radio:disabled + label:before {
    box-shadow: none;
    background: #ddd;
}
.radio .styled-radio:checked + label:before {
    border-color: rgb(14, 97, 255);
}
.radio .styled-radio:checked + label:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 24px;
    height: 24px;
    background: url(../images/checkbox.svg) 50% 50% no-repeat;
    transition: 0.5s;
}

.radio-block__title {
    margin-bottom: 16px;
    display: block;
    font-size: 14px;
    color: rgb(22, 22, 23);
}
.radio-block__group {
    margin-left: 30px;
}

.setting-group .form-group {
    max-width: 687px;
}

.city-accordion {
    max-width: 687px;
}
.city-accordion .accordion {
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
    overflow: hidden;
}
.city-accordion .accordion .selected {
    display: none;
    margin-left: 5px;
    width: 6px;
    height: 6px;
    background: rgb(6, 167, 101);
    border-radius: 50%;
    transform: translateY(-3px);
}
.city-accordion .accordion .selected.active {
    display: block;
}
.city-accordion .accordion__group {
    display: flex;
    align-items: center;
    position: relative;
    padding: 12px 0 12px 80px;
    border-bottom: 1px solid rgb(221, 229, 241);
}
.city-accordion .accordion__group.open .accordion__arrow svg {
    transform: rotate(90deg);
    color: rgb(14, 97, 255);
}
.city-accordion .accordion__group--second {
    padding-left: 120px;
}
.city-accordion .accordion__group--second .accordion__arrow {
    left: 40px !important;
}
.city-accordion .accordion__group--second .checkbox {
    left: 80px !important;
}
.city-accordion .accordion__arrow {
    position: absolute;
    top: 12px;
    left: 0;
    width: 24px;
    height: 24px;
}
.city-accordion .accordion__arrow svg {
    transition: 0.5s;
    width: 100%;
    height: 100%;
    color: rgb(109, 117, 136);
}
.city-accordion .accordion li {
    position: relative;
    width: 100%;
    min-height: 48px;
    line-height: 24px;
    font-size: 14px;
}
.city-accordion .accordion li .checkbox {
    position: absolute;
    top: 12px;
    left: 40px;
}
.city-accordion .accordion .opener {
    display: block;
    overflow: hidden;
    cursor: pointer;
}
.city-accordion .submenu {
    overflow: hidden;
    display: none;
}
.city-accordion .submenu--last li {
    padding-left: 120px;
    border-bottom: 1px solid rgb(221, 229, 241);
}
.city-accordion .submenu--last .checkbox {
    left: 80px !important;
}
.city-accordion .submenu li a:hover {
    text-decoration: none;
}

.location-empty {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 72px;
}
@media (max-width: 767px) {
    .location-empty {
        margin-bottom: 48px;
    }
}
.location-empty__img {
    display: block;
    margin-bottom: 24px;
}
.location-empty__img img {
    display: block;
    width: 220px;
    height: 220px;
}
.location-empty__title {
    display: block;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
    text-align: center;
}
@media (max-width: 767px) {
    .location-empty__title {
        font-size: 16px;
    }
}
.location-empty p {
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    margin-bottom: 24px;
}
@media (max-width: 767px) {
    .location-empty p {
        font-size: 14px;
    }
    .location-empty p br {
        display: none;
    }
}

.btn-telegram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    background: rgb(40, 168, 235);
    max-width: 600px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    border-radius: 10px;
    transition: 0.5s;
}
@media (max-width: 767px) {
    .btn-telegram {
        padding: 12px 24px;
    }
}
.btn-telegram:hover {
    background: rgb(0, 180, 232);
}
.btn-telegram .icon {
    display: block;
    margin-right: 16px;
}
.btn-telegram .icon img {
    display: block;
    width: 32px;
    height: 32px;
}

@media (max-width: 767px) {
    .center-mobile {
        text-align: center !important;
    }
}

.accordion__group {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .object_title_h1 {
        margin-bottom: 0px;
    }
}

.pc-hide {
    display: none;
}

.pc-center {
    justify-content: center;
}

@media (max-width: 767px) {
    .pc-hide {
        display: block !important;
    }

    .header-content {
        justify-content: space-between !important;
    }

    .pc-center {
        justify-content: space-between !important;
    }
}

.select-wrapper {
    position: relative;
    width: 350px;
}

.select-wrapper select {
    width: 100%;
    padding: 8px 12px;
    padding-right: 36px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    appearance: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.select-wrapper select:hover {
    border-color: #888;
}

.select-wrapper select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.select-wrapper::after {
    content: '▼';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #666;
    pointer-events: none;
}

.content-block__title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 10px;
}

@media (max-width: 768px) {
    .content-block__title-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .select-wrapper {
        width: 100%;
    }

    .select-wrapper select {
        width: 100%;
    }
}

.dynamics__list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dynamics__list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

p + ol,
ol {
    padding-left: 20px;
    margin-left: 0;
}

ol li {
    margin-bottom: 6px;
}

.object-page__side-sticky {
    position: relative;
    height: 100%;
}

#policy-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.6);

    align-items: center;
    justify-content: center;
}

#policy-modal .modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    width: 80%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}
/* Кнопка закрытия */
.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 15px;
}

.close:hover {
    color: #000;
}
#policy-modal {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    border-radius: 0 !important;
}
#policy-modal .modal-content h2 {
    margin-bottom: 20px;
    font-size: 20px;
}

#policy-modal .modal-content h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 16px;
}

#policy-modal .modal-content p,
#policy-modal .modal-content ul {
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 14px;
}

#policy-modal .modal-content ul {
    padding-left: 20px;
    list-style: disc;
}
