
/*Property Listing start*/
.property_container{
    margin: 0 auto;
    margin-top: 20px;
    width: 70%;
    position: relative;

}
/*Important class*/
.show{
    /* height: 360px !important; */
    height: 100% !important;
    max-height: 470px !important;
    min-height: 360px;
}
.property_nav{
    top: 0;
    width: 100%;
    background-color: white;
    z-index: 80;
    padding: 6px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgb(173 171 171);
}
.property_nav button{
    border-radius: 50%;
    padding: 5px 6px;
    box-sizing: border-box;
    background-color: white;
}
.property_nav button svg{
    height: 20px;
    width: 20px;
    cursor: pointer;
}
.property_nav svg{
    height: 30px;
    width: 30px;
    cursor: pointer;
}
.property_nav svg.share {
    height: 34px;
    width: 34px;
    position: relative;
   top: -3px;
}
.property_nav .icon_container {
    display: flex;
    align-items: center;
    gap: 15px;
}
/*tooltip above share button start*/
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 120%;
    left: 50%;
    margin-left: -75px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}
/*tooltip above share button end*/
#textCopy{
    display: none;
}
/*Image containers start*/
.img_containers{
    height: 65vh;
    max-height: 600px;
    width: 100%;
    display: flex;
    position: relative;
}
.img_containers ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.slide{
    width: 100%;
    height: 100%;
    opacity: 0;
    inset: 0;
    transition: 200ms opacity ease-in-out;
    transition-delay: 200ms;
}
.slide[data-active]{
    opacity: 1;
    z-index: 2;
    transition-delay:0ms ;
}
.slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    top: 0;
    position: absolute;
}
.more_photos{
    position: absolute;
    top: 87%;
    right: 2%;
}
.more_photos button{
    border-radius: 4px;
    text-align: center;
    background: #333;
    border: 1px solid black;
    font-weight: bold;
    padding: 5px;
    color: white;
    font-family: "Open Sans", "Adjusted Arial", Tahoma, Geneva, sans-serif;
}
.more_photos button span{ font-weight: bold;   }
.img_containers .slide-btn{
    position: absolute;
    top:45%;
    /* left: 0px; */
    background-color: #ffffff29;
    height: 48px;
    width: 28px;
    border: none;
    padding: 6px;
    cursor: pointer;
}
.img_containers .slide-btn.next{
    right: 0px;
}
.img_containers .slide-btn svg{
    transform: rotate(270deg);
    fill: white;
}
.img_containers .slide-btn svg.chevron.left{
    transform: rotate(-270deg);
}
/**Image containers end/
/*Quick info start*/
.title{
    width: 100%;
}
.title h3{
    margin: 10px 0 2px 0px;
    font-size: 25px;
    font-weight: bold;
}
.adress{
    display: flex;
    align-items: flex-start;
    font-size: 18px;
}
.property_info{
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-top: 18px;
}
.column{
    display: flex;
    flex-direction: column;
    text-align: center;
}
.column svg {
    margin: 0 auto;
    height: 30px;
    width: 30px;
    display: none;
}
.column .column_row{
    font-weight: bold;
    font-size: 22px;
}
sup{
    font-size: 13px;
}
.column label{
    color: #767676;
}
/**Quick info end/

/*Property Details start*/
.property_details{
    display: flex;
    justify-content: space-between;
    /* height: 900px; */
    margin-top: 16px;
}
.details_box{
    width: 100%;
    display: inline-block;
    max-width: 730px;
    margin-right: 12px;
}
.details_box h3{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}
.details_box .description{
    margin-bottom: 20px;
}
.details_box .description p{
    white-space: pre-line;
}
.details_box .installation{
    margin-top: 20px;
    margin-bottom: 20px;
    white-space: nowrap;
}
.installation .installation_list{
    column-count: 2;
}
/* .installation li::before{
    content: "• ";
} */
.installation li{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}
.installation .installation_list img {
    height: 40px;
    width: 40px;
}
/*Map start*/
.map{
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
}
/*Map end*/
/*Contact start*/
.contact_title{
    display: none;
}
.contact_box{
    position: sticky;
    top: 2rem;
    display: flex;
    justify-content: center;
    border: 1px solid #e2e2e2;
    border-radius: 3px;
    text-align: center;
    min-width: 300px;
    min-height: 150px;
    height: fit-content;
}
.contact_box label{
    text-align: center;
    color: orange;
    font-weight: bold;
    display: block;
}
.contact_box img{
    height: 50px;
    width: 50px;
    cursor: pointer;
}
.contact_btn{
    color: white;
    font-weight: bold;
    border-radius: 3px;
    height: 36px;
    padding: 0 5px;
    /* background-color: orange; */
    background-color: var(--main-color);
    text-decoration: none;
    border: 1px solid darkorange;
    cursor: pointer;
}
/*Contact box for mobile users*/
.mobile_contact_box{
    display: none;
    padding: 14px 0px; 
    position: sticky;
    bottom: 0;
    z-index: 5;
    width: 100%;
    margin: 0 auto;
    background-color: white;
    /* border-top: 1px solid #d3cdcd;
    border-bottom: 1px solid #d3cdcd;  */
}
.mobile_contact_info{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 30px;
}
.contact_id{
    text-align: center;
}
.contact_id p{
    color: orange;
    font-weight: bold;
}
/*Contact form start*/
.contact_form{
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
    height: 0;
    overflow: hidden;
    transition: all .6s;
}
.contact_form  form{
    margin-top: 15px;
    padding: 5px 10px;
    max-width: 400px;
    min-width: 300px;
}
.contact_form  select{
    width: 100%;
    height: 35px;
    font-size: 17px;
    border: 1px solid #767676;
    background-color: white;
    padding: 0px 8px;
}
.contact_form  input{
    margin-top: 8px;
    height: 35px;
    width: 100%;
    font-size: 17px;
    padding: 8px;
    border: 1px solid #767676;
}
.contact_form  textarea{
    width: 100%;
    height: 120px;
    margin-top: 8px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    padding: 8px;
    border: 1px solid #767676;
}
.contact_form button{
    color: white;
    font-weight: bold;
    border-radius: 3px;
    height: 36px;
    background-color: var(--main-color);
    text-decoration: none;
    border: 1px solid darkorange;
    padding: 5px;
}
/*Contact form end*/
/*Contact end*/
/*Property Details end*/
/*Property Listing end*/
@media (max-width:900px) {
    img{
        width: 100%;
    }
    .container{
        display: none;
    }
}
@media (max-width:880px) {
    .img_containers{
        height: 230px;
    }
    .property_container{
        width: 100%;
        margin: 0;
    }
    .property_nav{
        position: sticky;
    }
    .property_info{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 85%;
        margin: 10px auto 20px;
    }
    .title h3{
        margin-left: 20px;
    }
    .adress{
        margin-left: 20px;
    }
    .details_box{
        margin-right: 0;
    }
    .property_details{
        width: 85%;
        margin: 0 auto;
        height: 100%;
    }   
    .column .column_row{
        font-weight: normal;
        font-size: 18px;
    }
    .column_row.price {
        font-size: 19px;
        font-weight: bold;
    }
    .column.price{
        text-align: start;
        width: 100%;
        display: flex
    }
    .column svg{
        display: block;
    }
    .column .price_label{
        display: none;
    }
    .surface .column,.surface label, .surface svg{
        position: relative;
        top: -4px;
    } 
    
    .contact_box{
        display: none;
    }
    .mobile_contact_box{
        display: block;
    }
    .contact_title{display: block;}
}
@media (max-width:500px){
    .map{
        height: 250px;
    } 
}
@media (max-width:420px){
    .property_details{
        width: 92%;
    }
    .installation .installation_list{
        column-count: 1;
    }
}