:root {
    --clr-accent: #35527c;
    --clr-accent-lighten: #2d466a;
    --clr-accent-darker: rgb(0, 16.6860465116, 35);
    --clr-light: #fff;
    --clr-dark: #1e1e1f;
    --clr-dark-lighten: rgb(55.0819672131, 55.0819672131, 56.9180327869);
    --clr-dark-darker: rgb(17.4590163934, 17.4590163934, 18.0409836066);
    --clr-grey: #f8f9fc;
    --clr-grey-light: rgba(87, 88, 90, 0.2509803922);
    --clr-body-bg: #ffffff;
    --clr-cookie: rgba(53, 82, 124, 0.9);
    --border-radius: 20px;
    --clr-text: #1e1e20;
    --clr-text-light: #646471;
    --clr-text-lighten: #646471cc;
    --box-shadow: 0px 10px 10px -10px #00000033;
    --font-base: "Mona Sans", sans-serif;
    --container-padding-xs: 16px;
    --container-padding-md: 30px;
    --container-padding-lg: 40px;
    --container-padding-xl: 60px;
    --container-padding-xxl: 80px;
    --container-padding-xxxl: 90px;
    --top-nav-height: 56px;
    --bottom-nav-height: 215px;
}

.property-photos__photos-mini img{
    border-radius: 10px;
}

.cf-turnstile{
    margin-bottom: 30px;
}

.street-search:after{

}

.search-button{
    cursor: pointer;
    position: absolute;
    background-color: transparent;
    width: 24px;
    height: 24px;
    z-index: 2;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

@media only screen and (max-width: 48em) {
    .page-banner .hero__content {
        max-height: 552px;

    }
    .page-banner .hero__content .hero__title{
        margin-top: 160px;
    }
}

.slick-prev.slick-arrow{
    z-index: 100;
}

.slick-prev{
    left: 10px;
}
.slick-next{
    right: 20px;
}

.slick-next:before,
.slick-prev:before{
    color: var(--clr-accent);
    font-size: 30px;
}

.with-fancybox .header{
    z-index: 1000;
}

.property-photos {
    display: flex;
}


.property-photos__main-photo{
    width: calc(50% - 15px);
}

.details-form,
.footer,
.footer__bottom {
    background-color: #231f20;
}

.footer__developer .icon{
    font-size: 20px;
    color: #d71921;
}

.circle-btn--prev,
.circle-btn--next{
    -webkit-transition:  ease-in-out 0.2s;;
    -moz-transition:  ease-in-out 0.2s;;
    -ms-transition:  ease-in-out 0.2s;;
    -o-transition:  ease-in-out 0.2s;;
    transition:  ease-in-out 0.2s;;
    display: none;
}
.object-card:hover .circle-btn--next,
.object-card:hover .circle-btn--prev{
    display: flex;
}

.cookie-modal {
    z-index: 9999;
    position: fixed;
    left: 30px;
    right: 30px;
    bottom: 30px;
    background-color: var(--clr-cookie);
    padding: 30px;
    border-radius: 20px;
    display: none;
}
.cookie-content{
    display: flex;
    justify-content: space-between;
}
.cookie-parent{
    display: flex;
}

.cookie-body{
    display: flex;
    flex-direction: column;
}

.cookie-icon{
    max-width: 50px;
    margin-right: 20px;
}
.cookie-body,
.cookie-body a{
    color: var(--clr-light);
    margin-right: auto;
}
.cookie-body p{
    color: rgba(255, 255, 255, 0.66);
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
}

.cookie-body .title{
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 8px;
}

.cookie-buttons{
    display: flex;
    align-items: center;
}
.cookie-buttons .btn--outline-accent{
    color: var(--clr-light);
    border: 1px solid var(--clr-light);
    margin-right: 22px;
}

.cookie-buttons .btn--accent{
    color: var(--clr-accent);
    background-color: var(--clr-light);
}

.cookie-buttons:hover .btn--outline-accent{
    background-color: transparent;
}

.js-enabled #cookie-consent {
    display: none; /* по умолчанию скрыто */
}

.js-enabled #cookie-consent.show {
    display: block;
}


@media screen and (max-width: 75em){
    .property-photos {
        flex-direction: column;
    }
    .property-photos__main-photo{
        width: 100%;
    }
    .cookie-parent{
        margin-bottom: 16px;
    }
    .cookie-content{
        flex-direction: column;
    }
    .cookie-icon{
        align-self: flex-start;
    }
    .cookie-content button{
        flex: 1;
    }
}