*{
    margin: 0px;
    padding: 0px;
    font-family: 'Moderat', sans-serif;
    box-sizing: border-box;
}

:root {
    --pri-color: #123b79;
    --sec-color: #232629;
    --bg-light: #f8fbff;
    --pri-border: #C7D9F0;
    --bg-white: white;
    --p1-size: 48px;
    --p2-size: 32px;
    --p3-size: 24px;
    --p4-size: 18px;
    --p5-size: 16px;
    --p6-size: 14px;
}
html,body{
    width: 100%;
    overflow-x: hidden;
}

.plb_container{
}

.plb_row{
    display: flex;
    max-width: 1400px;
    margin: auto;
}

.plb_row_2{
    margin-top: 20px;
}

.plb_col{
    width: 100%;
}

.plb_col_10{
    width: 10%;
}

.plb_col_20{
    width: 20%;
}

.plb_col_30{
    width: 30%;
}

.plb_col_40{
    width: 40%;
}

.plb_col_50{
    width: 50%;
}

.plb_col_60{
    width: 60%;
}

.plb_col_70{
    width: 70%;
}

.plb_col_80{
    width: 80%;
}

.plb_col_90{
    width: 90%;
}

.mt1{
    margin-top: 10px;
}
.mt2{
    margin-top: 20px;
}
.mt3{
    margin-top: 30px;
}
.mt4{
    margin-top: 40px;
}
.mt5{
    margin-top: 50px;
}

.mb1{
    margin-bottom: 10px;
}
.mb2{
    margin-bottom: 20px;
}
.mb3{
    margin-bottom: 30px;
}
.mb4{
    margin-bottom: 40px;
}
.mb5{
    margin-bottom: 50px;
}


.pt1{
    padding-top: 10px;
}
.pt2{
    padding-top: 20px;
}
.pt3{
    padding-top: 30px;
}
.pt4{
    padding-top: 40px;
}
.pt5{
    padding-top: 50px;
}

.pb1{
    padding-bottom: 10px;
}
.pb2{
    padding-bottom: 20px;
}
.pb3{
    padding-bottom: 30px;
}
.pb4{
    padding-bottom: 40px;
}
.pb5{
    padding-bottom: 50px;
}

.col_gap_10{
    column-gap: 10px;
}
.col_gap_20{
    column-gap: 20px;
}
.section_title {
    color: var(--pri-color);
}

/* Heading sizes */

.title_h1{
    font-size: 34px;
    font-weight: 700;
}
.title_h2{
    font-size: 32px;
    font-weight: 700;
}
.title_h3{
    font-size: 24px;
    font-weight: 700;
}
.title_h4{
    font-size: 18px;
    font-weight: 600;
}
p{
    font-size: 16px;
    color: var(--sec-color);
    font-weight: 400;
}


/* Divider 2 color */
.plb_heading_divider{
    height: 2px;
    display: block;
    width: 100%;
    background: #e2efff;
}
.plb_heading_divider span{
    height: 2px;
    width: 60px;
    display: block;
    margin: 20px 0;
    background: var(--pri-color);
}

/* Divider with center text */
.hr-with-text {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.hr-with-text::before,
.hr-with-text::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid var(--sec-color);
    margin: 0 10px;
}

.hr-with-text span {
    white-space: nowrap;
    font-size: 16px;
    color: #333;
}


/*
*
*       Content Styling
*
*/

button:hover,
li:hover{
  cursor: pointer;
}

.pt_detail_main{
    width: 100%;
    min-height: 500px;
    padding-bottom: 30px;
    padding-top: 88px;
}
.pt_detail_main > .plb_container{
    padding-left: 15px;
    padding-right: 15px;
}
.pt_detail_main > .sec_2{
    padding-left: 0px;
    padding-right: 0px;
}


/*  Section 1 - Nav    */

.sec_1 ul{
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.sec_1 ul i{
    margin-right: 10px;
}
.sec_1 ul li{
    color: var(--pri-color);
    font-size: var(--p6-size);
}
.sec_1 ul a{
    text-decoration: none;
    color: var(--pri-color);
}



/*  Section 2 - Slider    */
.mfp-gallery,
.mfp-ready{
    z-index: 11111 !important;
}
.mfp-img{
    height: 85vh !important;
}
.slick-prev::before {
    content: '\276E' !important; /* Unicode for angle left (❮) */
}

.slick-next::before {
    content: '\276F' !important; /* Unicode for angle right (❯) */
}
.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Custom arrow icons using Unicode */
.slick-prev::before, .slick-next::before {
    font-size: 20px;
    color: white;
    padding: 5px 8px 6px 8px;
    opacity: 100% !important;
    background-color: var(--pri-color);
}
.image-gallery .slick-slide {
    margin: 0 2px; /* Adjust space between slides */
}

/* Ensure proper width calculations */
.image-gallery .slick-list {
    margin: 0 -2px; /* Negative margin to compensate for spacing */
}
.sec_2 .image-gallery img {
    width: 100%;
    height: auto;
}
.sec_2 .slick-prev{
    left: 02px;
    z-index: 1;
}
.sec_2 .slick-next{
    right: 02px;
}
.popup-tools {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

/* Style for individual tool buttons */
.tool-button {
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 5px 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tool-button:hover {
    background-color: rgba(255, 255, 255, 0.8);
    color: #000;
}

/* Prevent content from interfering with close button */
.mfp-close {
    z-index: 1100;
}

/*  Section 3 - Basic Info    */

.sec_3{
    background-color: var(--bg-light);
}
.sec_3 .pt_binfo{
    gap: 12px;
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}
.sec_3 .pt_binfo li{
    color: var(--sec-color);
}
.sec_3 .pt_binfo i{
    margin-right: 8px;
    color: var(--pri-color);
}
.sec_3 .price_col{
    text-align: end;
    align-self: center;
}
.sec_3 .price_col p{
    font-size: 16px;
    font-weight: 700;
}

/*  Section 4  - Section list   */

.sec_4 ul{
    gap: 10px;
    display: flex;
    list-style: none;
    color: var(--pri-color);
}
.sec_4 ul li{
    font-size: 16px;
    font-weight: 600;
    padding: 12px 18px;
}
.sec_4 .section_nav li.active{
    background-color: var(--pri-color);
    color: white;
}


/*  Section 5  - Property Full Details   */


.sec_5 .pt_details_5{
    margin-top: 20px;
}
.sec_5 .pt_details_5 h4{
    color: var(--pri-color);
}
.sec_5 .pt_details_5 h4,
.sec_5 .pt_details_5 p{
    padding-bottom: 8px;
}
.sec_5 .view_map{
    background-color: #DBE6F5;
    font-size: 12px;
    font-weight: 500;
    fill: var(--pri-color);
    color: var(--pri-color);
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-radius: 4px 4px 4px 4px;
    padding: 8px 6px;
}

/*  Section 6  - About Property   */
.sec6_feat {
    height: 118px;
    overflow: hidden;
    transition: height 0.3s ease;
    position: relative;
}
.sec6_feat.expanded {
    height: 100%;
}
.sec6_feat.expanded::after {
    opacity: 0;
    visibility: hidden;
}
.features{
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}
.features li{
    width: calc(50% - 10px);
    display: inline-block;
    justify-content: flex-start;
    font-size: 16px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #c7d9f0;
    padding: 8px 20px 8px 15px;
    margin: 0px 10px 10px 0px;
    font-size: 16px;
    color: var(--sec-color);
}
.features i{
    font-size: 8px;
    color: var(--pri-color);
    vertical-align: middle;
    padding-right: 8px;
}
.sec_6 .see_more,
.sec_10 .see_more{
    background-color: var(--bg-light);
    font-size: 14px;
    font-weight: 500;
    fill: var(--pri-color);
    color: var(--pri-color);
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-radius: 4px 4px 4px 4px;
    padding: 8px 15px 8px 15px;
}
.sec_6 p{
    line-height: 20px;
}
.sec6_feat::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px; /* Adjust the height of the shadow */
    background: linear-gradient(to top, rgba(255, 255, 255, 0.8), transparent);
    transition: opacity 0.3s ease;
}


/*  Section 7  - Get in touch   */
.sec_7{
    background-color: var(--bg-light);
    padding: 40px 0px;
}
.sec_7 .tour_in_vid,
.sec_7 .tour_in_per{
    color: var(--pri-color);
    background-color: white;
    border-radius: 5px;
    border: 1px solid var(--pri-color);
    padding: 20px;
    font-size: 15px;
    width: 50%;
}
.sec_7 .tour_in_vid.active,
.sec_7 .tour_in_per.active,
.sec_7 .property_inquiry.active{
    color: white;
    background-color: var(--pri-color);
}
.sec_7 .book_tour_btn{
    color: var(--pri-color);
    background-color: white;
    border-radius: 5px;
    border: 1px solid var(--pri-color);
    padding: 20px;
    font-size: 15px;
    width: 100%;
}
.sec_7 .book_tour_btn:hover,
.sec_7 .tour_in_vid:hover,
.sec_7 .tour_in_per:hover{
    color: white;
    background-color: var(--pri-color);
}
.sec_7 .tour_in_vid i,
.sec_7 .tour_in_per i{
    margin-right: 8px;
}
.sec_7 .intouch_agent{
    background: var(--bg-white);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}
.sec_7 .intouch_agent:hover{
    background: var(--pri-color);
}
.sec_7 .intouch_agent:hover p,
.sec_7 .intouch_agent:hover h3{
    color: var(--bg-white);
}
.sec_7 .intouch_agent:hover i{
    background-color: var(--bg-white);
    color: var(--pri-color);
}
.sec_7 .intouch_agent img{
    border-radius: 5px;
    max-width: 100%;
}
.sec_7 .intouch_agent p{
    font-size: 14px;
    font-weight: 400;
    color: var(--pri-color);
    padding-bottom: 10px;
}
.sec_7 .intouch_agent_detail{
    align-self: center;
}

.intouch_agent .agent_img{
    position: relative;
}
.intouch_agent .agent_img1,
.intouch_agent .agent_img2{
    transition: opacity 0.3s ease;
}
.intouch_agent .agent_img1{
    display: block;
}

.intouch_agent .agent_img2 {
    display: none;
}

.intouch_agent:hover .agent_img1{
    display: none;
}

.intouch_agent:hover .agent_img2{
    display: block;
}
.agent_social i{
    color: var(--bg-white);
    background: var(--pri-color);
    padding: 10px;
    border-radius: 50px;
    margin-right: 6px;
}
.agent_social a{
    text-decoration: none;
}


.sec_9 iframe{
    width: 100% !important;
}


.sec_10 ul{
    display: inline-block;
    list-style: none;
}
.sec_10 li{
    width: 200px;
    display: inline-block;
    justify-content: flex-start;
    font-size: 14px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #c7d9f0;
    padding: 8px 20px 8px 15px;
    margin: 0px 10px 10px 0px;
}
.sec_10 i{
    font-size: 8px;
    color: var(--pri-color);
    vertical-align: middle;
    padding-right: 8px;
}


/*  Section 13  - Sun-direction   */
.sec_13 .sun_direction{
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bcdff1;
    padding: 15px;
}
.sec_13 p{
    font-size: 16px;
    padding: 15px 0px;
}
.sec_13 i{
    color: var(--pri-color);
    padding-right: 15px;
}

/*  Section 11  - Connectivity/School   */
.pt_school_sec{
    display: none;
}
.pt_school,
.pt_connect{
    text-align: center;
    padding: 15px 30px 15px 30px;
    color: var(--pri-color);
    border: 2px solid var(--pri-color);
    background-color: white;
    font-size: 18px;
    font-weight: 600;
}
.pt_connect_sec li,
.pt_school_sec li{
    padding: 20px 25px;
    color: var(--pri-color);
    background-color: var(--bg-light);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
.pt_connect_sec ul,
.pt_school_sec ul{
    list-style: none;
    max-height: 600px;
    overflow-x: hidden;
}
.sec_11 i{
    margin-right: 8px;
}
.sec_11 ::before{
    margin-right: 8px;
}
.sec_11 iframe{
    width: 100% !important;
}
.pt_school.active,
.pt_connect.active,
.pt_connect_sec li.active,
.pt_school_sec li.active{
    color: white;
    background-color: var(--pri-color);
}
.pt_connect_sec .horz_tab_cont_c,
.pt_school_sec .horz_tab_cont_s{
     display: none;
 }
.pt_connect_sec .horz_tab_cont_c.active,
.pt_school_sec .horz_tab_cont_s.active{
    display: block;
}
.sec_11 ul {
    max-height: 600px;
    overflow-x: hidden;
}

/*

	Section12 Floor plan - Start

*/
#imagePopup {
    display: none; /* Initially hidden */
    position: fixed; /* Fixed position to cover the entire viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    z-index: 1000; /* Ensure it appears above other elements */
    text-align: center;
    align-content: center;
}


#popupImage {
    max-width: 90%; /* Ensure the image fits within the viewport */
    max-height: 90%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    border-radius: 8px; /* Optional: rounded corners */
}
.sec_12 .pt_binfo{
    gap: 12px;
    display: flex;
    list-style: none;
}
.sec_12 .pt_binfo li{
    color: var(--sec-color);
}
.sec_12 .pt_binfo i{
    margin-right: 8px;
    color: var(--pri-color);
}
.sec_12 img{
    height: auto;
    width: 100%;
}
/*

	Location/sun - Start

*/
.sec_13 iframe {
    width: 100% !important;
    height: 632px;
}


/*

	SimilarListing - Start

*/

.filters_div{
    max-width: 1400px;
    margin:auto;
}

.plb_filters_ul{
    list-style: none;
    display: flex;
    column-gap: 10px;
    cursor: pointer;
}

.plb_filters_ul > li,
.plb_filters_ul > li *{
    cursor: pointer;
}
.plb_filters_ul > li:nth-child(1){
    width: 22%;
}

.plb_filters_ul > li:nth-child(2){
    width: 12%;
}

.plb_filters_ul > li:nth-child(3){
    width: 20%;
}

.plb_filters_ul > li:nth-child(4){
    width: 20%;
}

.plb_filters_ul > li:nth-child(5){
    width: 15%;
}

.plb_filters_ul > li:nth-child(6){
    width: 11%;
}

.plb_filter_item_div{
    font-size: 16px;
    font-weight: 500;
    color: #123b79;
    background-color: #ffffff;
    border:1px solid #C7D9F0;
    border-radius: 30px;
    padding: 9px 15px;
    display: flex;
    align-content: center;
    transition:border 0.4s;
}
#plb_search_property input{
    font-size: 16px;
    font-weight: 500;
    color: var(--pri-color);
    background-color: #ffffff;
    border:1px solid #C7D9F0;
    border-radius: 30px;
    padding: 9px 15px;
    display: flex;
    align-content: center;
    transition:border 0.4s;
    width: 100%;
}
#plb_search_property input::placeholder {
    color: var(--pri-color);
    opacity: 1;
}
#plb_search_property input::-ms-input-placeholder {
    color: var(--pri-color);
}
.plb_filter_item_div:hover,
.plb_filter_item_div.active{
    border: 1px solid #123B79;
    background: #EBF1FA;
}
.plb_filter_item_div .fa-filter{
    font-size: 12px;
    left: 8px;
    display: none;
}
.plb_filter_item_div .fa-filter{

}
.plb_filter_item_div label{
    width: 80%;
    line-height: 20px;
}
.plb_filter_item_div > label{
    margin-bottom: -2px;
}
.plb_filter_item_div .filter_icon{
    text-align: right;
    width: 20%;
    display: block;
    margin-bottom: -4px;
}
.plb_filter_item_div i{
    position: relative;
    top:0px;
}
.plb_filter_item_div img{
    width: 15px;
}

.plb_filter_item .plb_filter_subdiv{
    min-height: 100px;
    background-color: white;
    border:1px solid #dbe6f5;
    border-radius: 5px;
    position: absolute;
    max-width: 280px;
    width: 100%;
    z-index: 9;
    padding: 15px;
    display: none;
    margin-top: 5px;
    box-shadow: 0px 5px 15px -10px black;
}

.filter_title{
    font-size: 14px;
    font-weight: 500;
    margin: 0px;
    padding-bottom: 8px;
}
.filter_space{
    width: 100%;
    height: 15px;
}
.filter_number{
    display: inline-block;
    background: #123b79;
    padding: 0px 3px;
    color: white;
    margin-left: 5px;
    font-size: 11px;
    border-radius: 2px;
    line-height: 15px;
    position: relative;
    top: -2px;
}

.p_type .sub_types{
    margin-top: 10px;
    max-height: 180px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.type_hdb,
.type_condo,
.type_commercial,
.type_landed{
    display: none;
}
.range_ux{
    display: flex;
    column-gap: 5px;
    margin-top: 10px;
}
.range_ux > div{
    min-height: 1px;
    width: 50%;
}

.min_range_ux,
.max_range_ux{
    font-size: 12px;
    font-weight: 500;
    color: #123b79;
    background-color: #f6faff;
    border-radius: 5px;
    padding: 3px;
    align-content: center;
    width: 100%;
    max-height: 200px;
    overflow-y: scroll;
    overflow-x: hidden;
    display: none;
}

.min_range_ux span,
.max_range_ux span{
    display: block;
    padding: 2px 5px;
}
.min_range_ux span:hover,
.max_range_ux span:hover{
    background: #dbe6f5;
}
.jet-search-filter__submit {
    z-index: 2;
}
.jet-search-filter__submit:focus {
    outline: none;
    border: none;
}

#ui-datepicker-div{
    z-index: 9999999 !important;
}
#property_type:hover .jet-filter-items-dropdown__label,
#bedrooms:hover .jet-filter-items-dropdown__label,
.jet-search-filter__input:hover{
    border: 1px solid #123B79 !important;
    background: #EBF1FA;
}

.min-max{
    display: flex;
    margin-bottom: -27px;
}
.min-max span{
    width: 50%;
    padding-left: 34px;
    font-size: 12px;
}

.min-max div{
    display: inline-block;
    position: relative;
    top: -27px;
    width: 0px;
}

.f_floor_size .min-max span{
    padding-left: 8px;
}

.jet-range__inputs__min,
.jet-range__inputs__max{
    transition: all 0s !important;
}
#f_bed fieldset > div:nth-child(2),
.f_bathroom fieldset > div:nth-child(2),
#f_bed fieldset > div:nth-child(10),
#f_bed fieldset > div:nth-child(11),
#f_bed fieldset > div:nth-child(12){
    display: none !important;
}

#f_bath fieldset > div:nth-child(10),
#f_bath fieldset > div:nth-child(11),
#f_bath fieldset > div:nth-child(12){
    display: none !important;
}

/*


*/

.plb_popup{
    background: rgb(0,0,0,0.5);
    display: none;
    width: 100%;
    height:100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    align-items: center;
    justify-content: center;
}

.plb_popup .plb_popup_div{
    max-width: 600px;
    width: 100%;
    min-height: 400px;
    background: white;
    border: 1px solid var(--pri-border);
    border-radius: 10px;
    padding: 30px;
    position: relative;
}

.plb_popup .fa-times{
    color: var(--pri-color);
    font-size: 18px;
    position: absolute;
    right: 15px;
    top:15px;
    cursor: pointer;
    padding: 8px;
}
#plb_district_popup .plb_popup_div{
    max-width: 800px;
}

#plb_district_popup.active,
#plb_all_filters_popup.active{
    display: flex;
}

.plb_popup_content h4{
    font-size: 20px;
    color: var(--pri-color);
}




/*

	PLB Listing

*/

.plb_property_listings{
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
    padding: 20px 0px;
    cursor: pointer;
}
.plb_property_listing{
    border:1px solid var(--pri-border);
    border-radius: 8px;
    overflow: hidden;
    background: white;
    font-weight: 600;
    width: calc(25% - 15px);
    min-height: 360px;
    overflow: hidden;
    position: relative;
    margin: 0px 5px;
	padding-bottom: 40px;
}
.plb_property_listing.loading{
    background: linear-gradient(90deg, #f0f0f0 25%, #e1e1e1 40%, #f0f0f0 70%);;
    animation: shimmer 1.5s infinite;
}
.pt_arrow_left{
    position: absolute;
    top:85px;
    left: 0px;
    background: rgb(255 255 255 / 50%);
    color: var(--pri-color);
    padding: 3px 5px;
    font-size: 22px;
    border-radius: 0 5px 5px 0;
    z-index: 2;
}
.pt_arrow_right{
    position: absolute;
    top:85px;
    right: 0px;
    background: rgb(255 255 255 / 50%);
    color: var(--pri-color);
    padding: 3px 5px;
    font-size: 22px;
    border-radius: 5px 0 0 5px;
    z-index: 2;
}
.pt_arrow_left i,
.pt_arrow_right i{

}
.plb_slider_container{
}
.listing_slider{
}
.listing_slider {
    display: flex;
    transition: transform 0.3s ease-in-out;
    overflow: hidden;
    width: 100%;
}
.pt_listing_slide {
    flex: 0 0 100%;
    box-sizing: border-box;
    opacity: 0;
    display: none;
    position: relative;
}
.pt_listing_slide.active {
    opacity: 1;
    display: block;
}
.listing_slider > div{
    width: 100%;
    height: 190px;
}
.listing_slider .pt_featured_image {
    width: 100%;
    height: 190px !important;
    object-fit: cover;
}
.home_tour_slide .pt_featured_image{
    filter: blur(1px);
}
.pt_listing_content{
    padding: 20px 20px 15px 20px;
    min-height: 200px;
}
.pt_listing_content h4{
    font-size: 18px;
    color: var(--pri-color);
    margin-bottom: 8px;
}
.pt_listing_content h3{
    font-size: 18px;
    color: var(--pri-color);
    margin-bottom: 15px;
    margin-top:5px;
}
.pt_listing_address{
    color:#818890;
    font-weight: 500;
    font-size: var(--p6-size);
    margin-bottom: 10px;
    display: flex;
    column-gap: 8px;
}
.pt_listing_features{
    font-weight: 400;
    font-size: 12px;
    color: var(--pri-color);
    font-weight: 500;
    margin-bottom: 8px;
}
.pt_listing_content i{
    font-size: 14px;
    color: var(--pri-color);
    margin-right: 3px;
}

.listing_agents{
    display: flex;
    position: absolute;
    width: calc(100% - 40px);
    bottom: 20px;
}
.listing_agents > div{
    width: 50%;
}
.listing_agents > div:first-child{
    display: flex;
}
.listing_agents > div:last-child{
    text-align: right;
}
.listing_agents > div:last-child a{
    display: inline-block;
    border: 1px solid var(--pri-color);
    padding: 8px 12px;
    color: var(--pri-color);
    text-decoration: none;
    font-size: var(--p6-size);
    border-radius: 5px;
    font-weight: 500;
}
.listing_agents > div img{
    width: 35px;
    margin-right: 10px;
    border-radius: 50%;
    height: auto;
}
.pt_video_tour iframe{
    height: 100%;
}
.tour_play_icon{
    position: absolute;
    width: 55px;
    left: calc(50% - 27px);
    top: calc(50% - 27px);
    z-index: 2;
    scale: 1;
    transition: all 0.2s;
}
.tour_play_icon:hover{
    scale: 1.1;
}
.sec14 .slick-prev::before {
    content: '\276E' !important; /* Unicode for angle left (❮) */
}

.sec14 .slick-next::before {
    content: '\276F' !important; /* Unicode for angle right (❯) */
}
.sec_14 .slick-prev, .sec_14 .slick-next {
    width: 40px;
    height: 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10;
    top: 230px;
}

/* Custom arrow icons using Unicode */
.sec_14 .slick-prev::before, .sec_14 .slick-next::before {
    width: 35px;
    color: white;
    padding: 8px 8px 8px 8px;
    opacity: 100% !important;
    background-color: var(--pri-color);
}
.sec_14 .slick-prev:hover::before,
.sec_14 .slick-next:hover::before {
    background-color: #f0a939;
}
.sec_14 .slick-next{
    right: -10px !important;
}
.sec_14 .slick-prev{
    left: -10px !important;
}
/*

	SimilarListing - end

*/

/*

	Popup for Booking - Start

*/
/*  popup Container trigger settings  */

.s_date,
.s_time{
    text-align: center !important;
}
.form-field-agent_email_id2,
.message_1,
.message_3{
    display: none;
}
.message_1,
.message_3{
    margin-top: 20px;
    background-color: #fcf8e3;
    border-color: #f9f0c3;
    color: #8a6d3b;
    border-left: 5px solid #fdf3bd;
    padding: 15px;
    position: relative;
    text-align: start;
    width: fit-content;
    font-weight: 600;
}
.book_summary_sec{
    background: var(--bg-light);
        position: fixed;
        bottom: 0px;
        left: 0px;
        right: 0px;
}
.book_tour_sec3,
.book_tour_sec2{
    display: none;
}
.book_tour_sec3 .plb_col{
    text-align: justify;
}
.book_tour_sec3 .fa-check-circle{
    font-size: 74px;
    color: var(--pri-color);
}
.pt_booking_popup .btn_div{
    text-align: left;
    display: flex;
    gap: 20px;
}
body.pt-popup-active {
    overflow: hidden;
}
.tour_prev_1 i{
	padding-right: 6px;
}
.pt_booking_popup .pop_main{
    background-repeat: no-repeat;
    background-size: 65%;
    background-position: 178% 50%;
    background-image: url("https://plb-integrity1-media.propertylimbrothers.com/wp-content/uploads/2023/08/12144159/biuld123.png");
}
.pt_booking_popup .pt-popup-content{
    background-position: 0% 87%;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: none;
}
.pt_booking_popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 10000;
}
.pt-popup-content {
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
    height: 100%;
    animation: popupFadeIn 0.3s ease;
    overflow-y: auto;
}
.close-btn {
    padding: 2px 8px;
    background: var(--pri-color);
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: var(--bg-white);
}
.pt_booking_popup h2,
.pt_booking_popup p,
.pt_booking_popup .booking_time_list{
    text-align: left;
}
.message_3 .elementor-alert {

    max-width: 710px;
}
.tour_form{
    max-width: 500px;
    list-style:none;
}
.tour_form li{
    padding-bottom: 20px;
}

.tour_form .tour_input{
    border: 1px solid #E3E6E8;
    padding: 10px;
    width: 100%;
}

@media(max-width:768px){
    .tour_form .tour_input{
        font-size:14px;
    }
    .tour_form li{
        padding-bottom: 10px;
    }
    .book_summary_sec{
        display: flex !important;
    }
}
.pri_btn{
    background-color: var(--pri-color);
    font-weight: 500;
    fill: var(--bg-white);
    color: var(--bg-white);
    padding: 10px 15px;
    border-radius: 5px;
    display: flex;
    gap: 10px;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/*  Booking content Date   */
.booking_container{
    display: flex;
    align-items: center;
}

.b_arrow_left,
.b_arrow_right{
    width: 5%;
    text-align: center;
}
.b_arrow_left i,
.b_arrow_right i{
    color: #123B79;
    font-size: 30px;

}
.booking_slider{
    width: 90%;
    text-align: center;
    overflow: hidden;
}
.booking_list{
    display: flex;
    list-style: none;
    margin:0px 1%;
    column-gap: 10px;
    overflow: hidden;
    width: calc(400% - 14px);
    transition: all 0.5s;
}
.booking_list li{
    width: 13%;
    border: 2px solid #B4BAC0;
    border-radius: 5px;
    padding:12px 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #4D545B;
    cursor: pointer;
    line-height: 26px;
}

.booking_list li.active{
    color: #123B79;
    background: #EBF1FA;
    border: 2px solid #123B79;
}
.b_day{
    font-size: 14px;
}
.b_date{
    font-size: 28px;
    font-weight: 800;
    padding: 10px 0px;
    display: inline-block;
}
.b_month{
    font-size: 14px;
}

.booking_list li:first-child .b_date{
    background: #123B79;
    color: white;
    border-radius: 50%;
    height: 45px;
    width: 45px;
    display: inline-block;
    line-height: 55px;
    height: auto;
    width: 55px;
    padding: 0px;
}
@media(max-width:768px){
    .booking_slider{
        width: 94%;
        text-align: center;
        overflow: hidden;
    }
    .b_arrow_left,
    .b_arrow_right{
        width: 3%;
        text-align: center;
    }
    .b_arrow_left i,
    .b_arrow_right i{
        color: #123B79;
        font-size: 18px;

    }
    .booking_list{
        column-gap: 5px;
    }
    .booking_list li{
        padding:8px 5PX;
    }
    .b_day{
        font-size: 10px;
    }
    .b_date{
        font-size: 16px;
        font-weight: 800;
        padding: 0px;
    }
    .b_month{
        font-size: 10px;
    }
    .booking_list li:first-child .b_date{
        height: auto;
        width: auto;
        padding:3px;
        font-size: 16px;
        line-height: normal;
    }
}

/*  Booking content - Time   */
.booking_time_list{
    max-width: 1100px;
}
.booking_time_list li{
    border: 2px solid #B4BAC0;
    border-radius: 5px;
    padding:10px 10px;
    margin: 0 10px 10px 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #4D545B;
    display: inline-block;
    text-align: center;
    font-size: 14px;
    min-width: 100px;
    background: white;
    cursor: pointer;
}
.booking_time_list li.active{
    color: #123B79;
    background: #EBF1FA;
    border: 2px solid #123B79;
}

@media(max-width:768px){
    .booking_time_list li{
        font-size: 12px;
        margin: 0 2px 5px 0;
        min-width: 65px;
        padding:5px;
    }
}
/*

	Popup for Booking - End

*/




.mobile{
    display: none;
}





@media (min-width: 768px) and (max-width: 1024px){
    .plb_row{
        padding-left: 10px;
        padding-right: 10px;
    }
    .mfp-img{
        height: 45vh !important;
    }
    .listing_agents > div:last-child a {
        padding: 4px 10px;
    }

    .listing_agents > div:first-child{
        width: 30%;
        align-items: center;
    }

    .listing_agents > div:last-child{
        width: 70%;
        justify-content: end;
        width: 70%;
        display: flex;
    }
    .listing_agents > div img{
        width: 20px;
        height: 20px;
    }
    .sec_4{
        overflow: scroll;
    }
    .sec_4 .plb_row{
        width: 1300px;
    }
    .pt_booking_popup .pop_main{
        background-position: 430px 99%;
        background-size: 500px auto;
    }
	.pt_listing_content{
    min-height: 240px;
}

}



@media (max-width:767px){
    .pt_detail_main{
        padding-top: 88px;
    }
    p{
        font-size: 14px;
    }
    .mobile{
        display: block;
    }
    .desktop_only{
        display: none !important;
    }
    .title_h1{
        font-size: 24px;
        font-weight: 700;
    }
    .title_h2{
        font-size: 18px;
        font-weight: 700;
    }
    .title_h3{
        font-size: 16px;
        font-weight: 700;
    }
    .title_h4{
        font-size: 14px;
        font-weight: 600;
    }

    .mt1{
        margin-top: 5px;
    }
    .mt2{
        margin-top: 10px;
    }
    .mt3{
        margin-top: 15px;
    }
    .mt4{
        margin-top: 20px;
    }
    .mt5{
        margin-top: 25px;
    }

    .mb1{
        margin-bottom: 5px;
    }
    .mb2{
        margin-bottom: 10px;
    }
    .mb3{
        margin-bottom: 15px;
    }
    .mb4{
        margin-bottom: 20px;
    }
    .mb5{
        margin-bottom: 25px;
    }


    .pt1{
        padding-top: 5px;
    }
    .pt2{
        padding-top: 10px;
    }
    .pt3{
        padding-top: 15px;
    }
    .pt4{
        padding-top: 20px;
    }
    .pt5{
        padding-top: 25px;
    }

    .pb1{
        padding-bottom: 5px;
    }
    .pb2{
        padding-bottom: 10px;
    }
    .pb3{
        padding-bottom: 15px;
    }
    .pb4{
        padding-bottom: 20px;
    }
    .pb5{
        padding-bottom: 25px;
    }
    .p_lr{
        padding-left: 20px;
        padding-right: 20px;
    }
    .plb_row{
        display: block;
    }

    /*  Popup for Booking   */
    .pt_booking_popup h2{
        font-size: 24px;
    }
    .pt_booking_popup .pop_main{
        height: 100vh;
        background-size: 100%;
        background-position: 50% 89%;
    }
    .pt_booking_popup .pt-popup-content{
        background-image: url("biuld123.png");
    }
    .booktour_sec .plb_col_60{
        width: 100%;
    }
    .tour_form{
        padding-left: 0px;
    }
    .book_tour_sec3,
    .book_tour_sec2{
        display: none;
    }
    /*  sec1 - breadcrumbs  */
    .sec_1 ul li{
        font-size: 10px;
    }
    /*  sec3 - basic Info   */
    .sec_3 .price_col{
        text-align: left;
        margin-top: 20px;
    }
    .sec_3 .pt_binfo li{
        font-size: 13px;
    }
	.sec_3{
		margin-bottom: 24px;
	}

    /*  sec 4   */
    .sec_4 ul{
        width: 999px;
		gap: 20px;
		margin-bottom: 6px;
    }
    .sec_4 .plb_row{
        overflow: scroll;
    }
    .sec_4 ul li{
        font-size: 14px;
        padding: 8px 12px;
    }

    /*  sec 5   */
    .sec_5 .pt_details_5{
        display: flex;
    }
    .sec_5 .view_map{
        padding: 5px;
    }

    /*  sec 5   */
    .sec_6 ul{
        display: block;
    }
    .sec_6 ul li{
        width: 100%;
    }

    /*  sec 7   */
    .sec_7 .tour_in_vid,
    .sec_7 .tour_in_per{
        padding: 10px;
        font-size: 14px;
        width: 49%;
    }
    .sec_7 .book_tour_btn{
        padding: 10px;
        font-size: 14px;
    }
    .sec_7 .booking_btn_sec{
        padding-bottom: 40px;
        padding-right: 0px;
        padding-left: 0px;
    }
    .sec_7 .intouch_agent{
        display: flex;
    }
    .sec_7 .intouch_agent_detail h3,
    .sec_7 .intouch_agent_detail p{
        padding-bottom: 05px;
    }
    .sec_7 .agent_social i{
        font-size: 13px;
    }
    .sec_7 .intouch_agent p{
        font-size: 12px;
    }


    /*  sec 8 signature video tour   */
    .sec_8 iframe{
        height: 220px;
    }
    /*  sec 10 facilities   */
    .sec_10 li{
        width: 100%;
    }

    /*  sec 11 connect/school   */
    .sec_11 ul{
        max-height: 100%;
    }
    .sec_11 .pt_school_sec{
        display: none;
    }
    .pt_connect_sec li,
    .pt_school_sec li{
        font-size: 14px;
        padding: 10px 12px;
    }
    .sec_11 iframe{
        padding: 10px;
    }
    .sec_11 .pt_school,
    .sec_11 .pt_connect{
        margin-bottom: 10px;
    }

    /*  sec 12 floorplan   */
    .sec_12 .pt_binfo{
        flex-wrap: wrap;
    }
    .sec_12 .pt_binfo li{
        font-size: 13px;
    }

    /*  sec 13 sundirection   */
    .sec_13 iframe{
        margin-bottom: 40px;
    }
    .sec_13 .sun_direction{
        margin: 10px 0px;
        padding: 10px;
    }
    .sec_14 .slick-prev, .sec_14 .slick-next{
        top: 226px;
    }


    .sec_11 .plb_row{
        display: flex;
    }
    #pt_school_sec_m{
        display: none;
    }
    .pt_school_m,
    .pt_connect_m{
        justify-content: center;
        display: flex;
        width: 100%;
        text-align: center;
        padding: 15px 20px 15px 20px;
        color: var(--pri-color);
        border: 2px solid var(--pri-color);
        background-color: white;
        font-size: 18px;
        font-weight: 600;
    }
    .pt_connect_sec_m li,
    .pt_school_sec_m li{
        padding: 10px;
        color: var(--pri-color);
        background-color: var(--bg-light);
        font-size: 16px;
        font-weight: 600;
        border-top: 1px solid #d5d8dc;
    }
    .pt_connect_sec_m ul,
    .pt_school_sec_m ul{
        list-style: none;
        border: 1px solid #d5d8dc;
    }
    .pt_school_m.active,
    .pt_connect_m.active,
    .pt_connect_sec_m li.active,
    .pt_school_sec_m li.active{
        color: white;
        background-color: var(--pri-color);
    }
    .pt_connect_sec_m .horz_tab_cont_cm,
    .pt_school_sec_m .horz_tab_cont_sm{
        display: none;
    }
    .pt_connect_sec_m .horz_tab_cont_cm.active,
    .pt_school_sec_m .horz_tab_cont_sm.active{
        display: block;
    }
    /*  sec 14 Similar listing   */
    .listing_agents > div:last-child a {
        padding: 4px 12px;
        align-self: baseline;
    }
    .listing_agents > div:last-child{
        align-self: end;
    }
    .listing_agents > div img{
        width: 46px;
        height: 46px;
    }
	
    .mfp-img{
        height: auto !important;
    }
	.sec_5 .pt_details_5{
		margin-top: 10px;
	}
	.sec_3,
	.sec_8,
	.sec_9,
	.sec_5,
	.sec_6,
	.sec_10,
	.sec_11,
	.sec_12,
	.sec_13,
	.sec_14{
		padding-top: 20px;
	}
	.sec_6{
		padding-bottom: 20px;
	}
}