@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    user-select: none; 
    box-sizing: border-box;
}

body {
    font-family: "Montserrat";
    scroll-behavior: smooth;
    margin: 0px;
    padding: 0px;
    padding-top: 73px;
    background: #F7F7F7 !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    width: 100%;  
    max-width: 1100px !important;  
    margin: 0 auto;  
}

.airbnb-gallery {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5px; 
    width: 100%;
    margin: auto;
    position: relative;
}

.main-photo img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
}

.main-photo {
    display: flex;
}

.side-photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

.side-photos img {
    width: 100%;
    height: 198px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
}

.fancybox__container {
    z-index: 999999 !important;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
    border-width: 3px !important;
    border-color: #4357FF !important;
}

.carousel__track {
    display: none !important;
}

.property-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fpart, .blocks, .texts {
    margin: 1.5rem 0rem;
}

.fpart h1, .texts h1 {
    font-weight: 500;
    margin: 0;
    margin-bottom: .2rem;
}

.parametrs {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 1.5rem;
}

.parametr-item {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 260px;
}

.parametr-item .icon {
    font-weight: 100;
    color: grey;
}

.reviews {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.review_all {
    flex: 1 1 calc(40% - 20px);
}

.menu {
    font-family: "Montserrat";
}

.review-info h3 {
    font-weight: 500;
    margin: 0;
    margin-bottom: .2rem;
}

.review-info p {
    margin: 0;
    font-size: 12px;
    color: grey;
}

.review {
    display: flex; 
    align-items: center;
    gap: 1rem; 
    margin-bottom: .5rem;
}

.review-content p {
    margin-top: .5rem;
}

.stars-date {
    display: flex;
    align-items: center;
    gap: 10px;
}

.date-time p {
    margin: 0;
    font-size: 14px;
    color: grey;
}

.tip p {
    margin: 0;
    font-weight: 700;
    color: #4357FF;
}

.text-info h5, .text-info p {
    margin: 0;
}

.text-info p {
    font-size: 12px;
    margin-bottom: .3rem;
    font-weight: 400;
    color: grey;
}

.text-info h5 {
    font-size: 16px;
    font-weight: 600;
}

.publishing_data {
    display: flex;
    gap: 25px;
    margin: .5rem 0rem;
}

.publishing_data p {
    font-size: 14px;
    font-weight: 500;
}

.texts p  {
    color: rgb(121, 121, 121);
    margin: 0;
}

.title_block {
    font-weight: 500;
    font-size: 26px;
    margin: 1.5rem 0rem;
}

#toggle-btn {
    font-family: "Montserrat";
    border: 1px solid rgb(231, 231, 231);
    background: white;
    color: rgb(0, 0, 0) !important;
    border-radius: 10px !important;
    padding: 10px 20px;
    cursor: pointer;
    transition: .5s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: .2s;
    margin-bottom: 20px;
    -webkit-box-shadow: 0px 0px 22px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 0px 22px 0px rgba(0,0,0,0.05);
    box-shadow: 0px 0px 22px 0px rgba(0, 0, 0, 0.05);
}

hr {
    border: 0.1px solid rgb(231, 231, 231);
}

.property-buttons {
    display: flex;
    gap: 5px;
}

a {
    text-decoration: none;
}

.more-photos-btn {
    grid-column: span 2;
    width: 180px;
    padding: 10px;
    background: rgb(255, 255, 255);
    color: rgb(31, 31, 31);
    font-weight: 500;
    font-family: "Montserrat";
    font-size: 14px;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.more-photos-btn:hover {
    background: #4357FF;
    color: white;
}

.modal-gallery {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    inset: 0;
    background: rgba(0, 0, 0, 0.891);
    align-items: center;
    z-index: 999999;
    justify-content: center;
}

.modal-content-gallery {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.modal-content-gallery img {
    width: 100%;
    height: 500px;
    border-radius: 10px;
}

.close-modal-gallery {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    font-weight: 100;
    color: rgb(45, 45, 45);
    width: 45px;
    border-radius: 100px;
    display: flex;
    cursor: pointer;
    background: rgb(255, 255, 255);
    justify-content: center;
}

.close-modal-gallery:hover {
    background: rgb(45, 45, 45);
    color: rgb(255, 255, 255);
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: white;
    cursor: pointer;
    padding: 30px;
    border-radius: 100px;
    display: flex;
}

.prev { 
    left: 10px; 
}
.next { 
    right: 10px; 
}

.user-info {
    margin-left: .8rem;
}

.price {
    font-size: 2rem;
    font-weight: 600;
}

.price-title {
    font-size: 1rem;
    font-weight: 400;
}

.price-mix p {
    margin-top: 1rem !important;
}

#map { 
    width: 100%; 
    height: 500px; 
    border-radius: 8px; 
    overflow: hidden; 
    border: 1px solid rgb(231, 231, 231);  
}

.similar-properties { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 2rem; }
.property_card img { width: 100%; height: 220px; border-radius: 10px; object-fit: cover;}
.title_avatar { display: flex; justify-content: space-between; align-items: center;}
.details { margin: 0px; font-size: 14px; color: #333; font-weight: 600;}
.title_avatar h2 { color: black; font-weight: 600; }
        .details_address { margin-top: 5px; font-size: 12px; color: grey; }
        .property_card img { width: 100%; height: 180px; border-radius: 10px; object-fit: cover;}
        .seller-logo img { width: 40px; height: 40px; border-radius: 100px; object-fit: cover; }
        .title_avatar { display: flex; justify-content: space-between; align-items: center;}
        .property_box { display: flex; gap: 20px; }
        .property_card { flex: 1 1 calc(20% - 20px); width: 60px; border-radius: 15px; position: relative; overflow: hidden; background: #fff; display: inline-block; vertical-align: top; padding: 10px; border: 1px solid rgb(231, 231, 231); max-width: calc(33.333% - 7px); }
        .no_find { background: white; border-radius: 15px; border: 1px solid rgb(231, 231, 231); width: 100%; display: grid; height: 30vh; display: flex; justify-content: center; align-items: center;}

.alternative_avatar {
    height: 50px;
    width: 50px;
    background: #303030;
    color: white;
    font-weight: 500;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu_main {
    list-style-type: none;
    display: flex;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.menu_main li {
    border: none !important;
    font-size: 13px;
    font-weight: 500;
    transition: .2s;
    cursor: pointer;
    color: #333;
}

.menu_main li:hover {
    color: #4357FF;
    transition: .2s;
}

.seller-all_inf {
    display: flex;
    gap: .8rem;
    align-items: center;
}

.seller-info h3, .seller-info p {
    margin: 0;
}

.seller-info h3 {
    font-weight: 500;
    margin-bottom: .2rem;
}

.seller-info p {
    color: rgb(121, 121, 121);
}

.info {
    display: flex;
    gap: 100px;
}

.leftside {
    width: 900px;
}

.sidebar {
    height: fit-content;
    position: sticky;
    top: 95px;
}

.sidebat-cont {
    margin: 1.5rem 0rem;
    padding: 2rem;
    border: 1px solid rgb(231, 231, 231);
    border-radius: 10px;
    width: 330px;
    -webkit-box-shadow: 0px 0px 22px 0px rgba(0,0,0,0.05);
    -moz-box-shadow: 0px 0px 22px 0px rgba(0,0,0,0.05);
    box-shadow: 0px 0px 22px 0px rgba(0,0,0,0.05);
    background: white;
    margin-bottom: 1rem;
}

.open-modal-btn {
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins";
    padding: 0;
    color: #4357FF;
    border: none;
    background: none;
    cursor: pointer;
}

.sidebat-report {
    padding: 1rem 2rem;
    border: 1px solid rgb(231, 231, 231);
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 22px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 0px 22px 0px rgba(0,0,0,0.05);
    box-shadow: 0px 0px 22px 0px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 15px;
    align-items: center;
    background: white;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    font-size: 14px;
    margin-bottom: 1rem;
    justify-content: center;
    font-family: 'Montserrat';
}

.date { 
    position: absolute; 
    top: 15px; 
    left: 15px; 
    border-radius: 100px; 
    border: none; 
    padding: 5px 10px; 
    margin: 0px; 
    background: #4357FF; 
    color: white; 
    font-size: 14px; }


.sidebat-cont p {
    margin: 0;
}

.sidebar p {
    margin: 0;
}

.sidebar a button {
    width: 100%;
}

.suc-svg {
    background: rgb(214, 255, 201);
    color: rgb(0, 154, 31);
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    border-radius: 100px;
}

.suc-text h2 {
    font-weight: 400;
    text-align: center;
    margin: 1rem 0px;
    font-size: 15px;
}

.suc-svg-content {
    display: flex;
    justify-content: center;
}

.iframe {
    margin-bottom: 16px !important;
}

.sidebar .buttons-property {
    margin: 1.5rem 0px;
    margin-bottom: 0rem;
}

.block {
    border-radius: 10px;
}