/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */

#loader {
    position: fixed;
    z-index: 10;
    display: none;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.6);
}
 
.wishlist-page-container .grid-layout {
    grid-row-gap: 30px;
    grid-column-gap: 30px;
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(2,1fr);
}
.grid-layout {
    grid-row-gap: 30px;
    grid-column-gap: 30px;
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(3,1fr);
}

.property-card {
    -webkit-box-shadow: 0px 2px 4px rgba(0,0,0,0.09);
    box-shadow: 0px 2px 4px rgba(0,0,0,0.09);
    text-align: left;
    height: 100%;
    position: relative;
    padding-bottom: 63px;
    background-color: #fff;
    -webkit-transition: -webkit-box-shadow 0.8s ease-in-out;
    transition: -webkit-box-shadow 0.8s ease-in-out;
    transition: box-shadow 0.8s ease-in-out;
    transition: box-shadow 0.8s ease-in-out, -webkit-box-shadow 0.8s ease-in-out;
}
body.home .hero-title-section{
    z-index: 12;
}
.property-card:hover {
	-webkit-box-shadow: 0px 2px 20px rgba(0,0,0,0.16);
	box-shadow: 0px 2px 20px rgba(0,0,0,0.16);
}

.property-card:hover .image-container img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.property-card .image-container {
    height: 300px;
    overflow:hidden;
}

.property-card .image-container img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100% !important;
    width: 100% !important;
    -webkit-transition: -webkit-transform 0.8s ease-in-out;
    transition: -webkit-transform 0.8s ease-in-out;
    transition: transform 0.8s ease-in-out;
    transition: transform 0.8s ease-in-out, -webkit-transform 0.8s ease-in-out;
}

.property-card .icon-container,
.property-card .icon-container .summary-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* justify-content: space-between; */
}


.property-card .icon-container {
    margin-bottom: 15px;
    /* width: 80%; */
}

.property-card .icon-container .value {
    font-weight: bold;
    color: #3A3C3C;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 20px;
}

.property-card .icon-container .value .icon {
    margin-right: 10px;
}

.property-card.single-property .icon-container .value {
    margin-right: 30px;
}

.property-card.single-property .icon-container .area-container {
    padding-left: 30px;
}

.property-card.single-property .icon-container .value .icon svg{
    width: 25px;
    height: 25px;
}


.property-card .icon-container .area-container {
    padding-left: 15px;
    border-left: 1px solid #005B94;
}

.property-card .text-container {
    padding: 30px;
}

.property-card .text-container h2 {
    font-size: 28px;
    line-height: 28px;
    color: #005B94;
}

.property-card .text-container h2 + h2 {
    color: #4ABAFF;
}

.property-card .text-container p {
    color: #000000;
    opacity: 0.66;
}

.property-card .price-container {
    text-align: center;
    color: #005B94;
    font-weight: bold;
    font-size: 24px;
    padding-top: 15px;
    padding-bottom: 15px;
    /* margin-top: 15px; */
    border-top: solid 1px #005B94;
    width: 100%;
    bottom: 0;
    left: 0;
    position: absolute;
}

.single-property {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-top: 50px;
}

.single-property .container-wrap {
    background-color: transparent;
}

.single-property:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 80vh;
    top: 0;
    left: 0;
    background-color: #082334;
}

#propertyPhotos .image-item {
    display: none;
}

#propertyPhotos .image-item:nth-of-type(1),
#propertyPhotos .image-item:nth-of-type(2),
#propertyPhotos .image-item:nth-of-type(3),
#propertyPhotos .image-item:nth-of-type(4) {
    display: block;
}

.single-property .property-header-section .flex-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
}

.single-property .price-section {
    font-weight: bold;
    font-size: 1.5em;
}

.single-property .property-header-section,
.single-property .property-header-section h6,
.single-property .property-header-section h2,
.single-property .property-header-section span {
    color: white;
}

.single-property .property-header-section path {
    fill: white;
}
.single-property .property-header-section .back-btn {
    width: 30%;
    margin: 10px 0px;
}
.single-property .property-header-section .enquire-button {
    background-color: #4ABAFF;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8em;
    margin-top: 20px;
    padding: 5px 35px;
    border-radius: 50px;
}

.single-property .main-image-section,
.single-property .main-image-section img{
    width: 100% !important;
    max-height: 70vh;
}

.single-property .main-image-section img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.single-property .photos-container {
    grid-template-columns: repeat(4,1fr);
}

.single-property .features-container {
    margin-top: 20px;
}

.single-property .feature-item {
    display: inline-block;
    border: solid 2px #005B94;
    padding: 4px 15px;
    margin-right: 15px;
    margin-top: 15px;
}

.single-property .feature-item .text,
.single-property .feature-item .icon {
    display: inline-block;
}

.single-property .feature-item .text {
    text-transform: uppercase;
    color: #005B94;
    font-weight: bold;
    font-size: 0.8em;
    padding-right: 10px;
}



.single-property .room-table-section {
    margin-bottom: 100px;
}

.table-container .table-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: solid #005B94 1px;
    /* border-right: solid #005B94 1px; */
    font-size: 0.9em;
}

.table-container .table-row .col {
    padding: 15px 20px;
    color: #005B94;
    /* border-left: solid #005B94 1px; */
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.table-container .table-row .col:first-of-type {
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
}

.table-container .title-row {
    text-transform: uppercase;
    color: #005B94;
    font-weight: bold;
    font-size: 0.8em;
}
.property-card-content-wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; 
    margin: 0 -50px; 
    padding-top: 70px; 
}
.property-card-content-wrapper .room-table-section .table-row{
    font-family: 'swis721_lt_btlight';
}
.property-card-content-wrapper .property-card-content{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 50px;
}
.property-card-content-wrapper .room-table-section .table-row:first-child{
    border-top: 0;
}
.property-card-content-wrapper .room-table-section .table-row:first-child .col{
    font-weight: normal;
}
.property-card-content-wrapper .room-table-section .table-row .col{
    line-height: 20px;
}
.property-card-content-wrapper .room-table-section .table-row:not(:first-child) .col:first-child{
    font-weight: normal;
    font-family: 'swis721_btbold';
}
.property-card-content-wrapper .room-table-section .table-row .col:first-child{
    padding-left: 0;
}
.property-card-content-wrapper .room-table-section{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 50px; 
}

/* Filter Design */

.location-wrapper{
    position: absolute;
    left: 0;
    z-index: 1;
    width: 820px;
    padding: 18px 30px;
    top: calc(100% + 10px);
    background-color: #ffffff;
    -webkit-box-shadow: 0px 3px 6px #00000029;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 0px 0px 0px 3px;
    color: #959595;
}
/*
body .location-wrapper .location-provice h6{
    color: #4E4E4E;
    letter-spacing: 0.5px !important;
    font-size: 15px;
    line-height: 1.3;
    text-transform: none;
}
*/
.custom-radio-wrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -13px;
}
.nectar_property_searh_header {
    position: relative;
    z-index: 12;
}
.custom-radio-wrap .custom-radio{
    padding: 0 13px;
}
.location-wrapper .location-provice:last-child .custom-radio-wrap{
    max-height: 130px;
    overflow: auto;
}


.location-wrapper .location-towns{
    max-height: 130px;
    overflow: auto;
}


.location-wrapper .location-provice .custom-radio-wrap label:hover{
    color: #4ABAFF;
}
.location-wrapper .location-provice .custom-radio-wrap label{
    font-size: 15px !important;
    line-height: 1.64;
}
.location-wrapper .location-provice .custom-radio-wrap *{
    cursor: pointer;
}
.custom-radio-wrap input{
    display: none;
}
.custom-radio-wrap label{
    position: relative;
    padding-left: 23px;
}
.custom-radio-wrap label::before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
    border: 1px solid #CECECE;
    background-color: transparent;
    border-radius: 100%;
}
.custom-radio-wrap input:checked + label::before{
    background-color: #4ABAFF;
    border-color: #4ABAFF;
}
.location-wrapper .location-provice:last-child{
    padding-top: 17px;
}
.location-wrapper .location-provice:last-child .custom-radio-wrap .custom-radio, .location-wrapper .location-towns .custom-radio-wrap .custom-radio{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    max-width: 33.33%;
} 
::-webkit-scrollbar {
    width: 5px;
  }
  
/* Track */
.location-wrapper .location-provice:last-child .custom-radio-wrap::-webkit-scrollbar-track { 
    border-radius: 4px;
    border: 1px solid #E5E5E5;
}

/* Handle */
.location-wrapper .location-provice:last-child .custom-radio-wrap::-webkit-scrollbar-thumb {
    background: #135B94; 
    border-radius: 4px;
}

/* Handle on hover */
.location-wrapper .location-provice:last-child .custom-radio-wrap::-webkit-scrollbar-thumb:hover {
    background: #135B94; 
}
.default-location{
    white-space: nowrap; 
    max-width: 95%; 
    overflow: hidden;
    text-overflow: ellipsis; 
    color: #606060 !important;
    cursor: pointer;
    position: relative;
    padding-right: 15px;
}
.default-location:after{
    content: "";
    position: absolute;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border: 1px solid transparent;
    border-right-color: #005B94;
    border-bottom-color: #005B94;
    width: 6px;
    height: 9px;
    margin-top: -6px;
    top: 13px;
    right: 0;
}
body .vscomp-arrow::after{
    border-right-color: #005B94;
    border-bottom-color: #005B94;
}
#SaleSearchProperty .location-wrapper{
    max-width: 500px;
}
.search-filter.sticky .row-bg-wrap{
    -webkit-box-shadow: 0px 3px 6px #00000029;
    box-shadow: 0px 3px 6px #00000029;
}
.sticky-filter-head{
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.search-filter .status-bar{
    display: none;
}
.search-filter .row-bg-wrap{
    background-color: #ffffff;
}
.search-filter.sticky{
    position: fixed;
    width: 100%;
    left: 0;
    border-top: 1px solid #e6e6e6;
}
.search-filter .inner-form .advance-search .input-field{
    margin-top: 10px;
    margin-bottom: 10px;
}
.search-filter .inner-form .advance-search .input-field:nth-last-child(2){
    border: none;
}
.search-filter .row_col_wrap_12{
    max-width: 1245px;
    margin: 0 auto !important;
}
.pagination {
    display: block;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: 'swis721_btbold';
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin: 76px auto 0;
    padding: 7px 20px;
    border: 1px solid rgba(0, 91, 148, 1);
}
.pagination a{
    width: 30px;
    height: 30px;
    border-radius: 100%;
    color: rgba(0, 91, 148, 1);
    margin: 0 5px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.pagination a[data-page="next"]{
    font-size: 22px;
}
.pagination span.current{
    width: 30px;
    height: 30px;
    color: rgba(0, 91, 148, 1);
    background-color: rgba(0, 91, 148, 0.15);
    border-radius: 100px;
    margin: 0 5px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.show-property-photos-btn a{
    padding: 7px 22px;
    border-radius: 4px;
    border: 1px solid #082334;
    font-size: 17px;
    line-height: 28px;
    color: #082334;
    display: inline-block;
    font-weight: 700;
    background-color: #ffffff;
}
.show-property-photos-btn a::before{
    width: 20px;
    height: 20px;
    content: "";
    display: inline-block;
    background-image: url(https://jk.bison.studio/wp-content/uploads/2022/04/grid_3.png);
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-right: 4px;
    margin-top: -5px;
}

.show-property-photos-btn a:hover{
    color: #082334;
    opacity: 0.85;
}
.property-header-section{
    position: relative;
}
.show-property-photos-btn{
    position: absolute;
    bottom: 25px;
    left: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.show-property-photos-btn .other-images {
    width: 230px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.show-property-photos-btn .other-images .image-item {
    margin-right: 5px;
    border: solid 1px black;
    overflow: hidden;
}

.show-property-photos-btn .other-images .image-item img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.status-buttons {
    text-align: left;
}

.status-buttons .status-button {
    display: inline-block;
    cursor: pointer
}

.status-buttons .status-button .inner-button {
    font-family: 'swis721_btbold';
    padding: 16px 30px;
    /* background-color: #F7F6F5; */
    border-radius: 3px 3px 0px 0px;
    display: inline-block;
    color: white ;
    background-color: #005B94;
    opacity: 0.5;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.status-buttons .status-button.active-button .inner-button {
    color: #005B94 ;
    background-color: #fafafa;
    opacity: 1;
}

.vscomp-wrapper .checkbox-icon::after {
    border-radius: 50%;
    border: 1px solid #CECECE !important;
}

.vscomp-wrapper .checkbox-icon {
    width: 16px !important;
    height: 16px !important;
    margin-right: 9px !important;
}

.vscomp-wrapper.multiple .vscomp-option.selected .checkbox-icon::after {
    width: 100% !important;
    background-color: #4ABAFF !important;
    border-color: #4ABAFF !important;
    -webkit-transform: none !important;
    transform: none !important;
}

.vscomp-option-text {
    color: #959595 !important;
}

.default-location .default-value {
    font-family: swis721_lt_btlight;
    font-size: 14px;
}

.hide-search .vscomp-search-wrapper {
    display: none !important;
}
.default-filter-header {
    display: none;
}
body .location-wrapper .location-provice h6{
	color: #005B94;
    font-size: 14px;
    line-height: 1;
	font-family: swis721_btbold;
    font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0;
}
.location-wrapper .location-provice{
	padding: 20px 0px;
    border-top: 1px solid #CECECE;
}
.location-wrapper .default-filter-search{
	padding: 20px 0px!important;
}
form .location-wrapper .default-filter-search .search-input{
	margin: 0 !important;
	color: #959595 !important;
	border-radius: 50px;
	border: 1px solid #CECECE !important;
	padding: 10px !important;
	line-height: 1;
}


@media (max-width:999px) {
    .default-location{
        max-width: 100%;
    }
    .location-wrapper{
        width: 100%;
    }
    body .vscomp-ele{
        max-width: 100%;
        display: block;
    }
    .default-location:after{
        right: 13px;
        height: 6px;
    }
    .search-filter.sticky{
        position: static;
    }
    .grid-layout{
        grid-template-columns: repeat(2,1fr);
    }

    .property-card-content-wrapper {
        display: block;
    }

    .property-card-content-wrapper .property-card-content,
    .property-card-content-wrapper .room-table-section {
        max-width: 100%;
        margin-bottom: 50px;
    }

    .property-card-content-wrapper .room-table-section {
        margin-bottom: 0;
    }
}
@media (max-width:690px) {
    .location-wrapper .location-provice:last-child .custom-radio-wrap .custom-radio{
        -webkit-box-flex: unset;
        -ms-flex: unset;
        flex: unset;
        max-width: initial;
    }
    .location-wrapper .location-provice:last-child .custom-radio-wrap{
        max-height: 160px;
    }
    .grid-layout{
        grid-template-columns: repeat(1,1fr);
    }

    .single-property:before {
        height: 60vh;
    }

    .single-property {
        padding-top: 120px;
    }
    .location-wrapper {
        position: fixed;
        top: 55% !important;
        left: 15px !important;
        right: 15px !important;
        bottom: auto !important;
        z-index: 9999;
        width: auto !important;
        border-radius: 10px;
		padding: 0;
		height: calc(100% - 100px);
    	overflow: auto;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
    }
    .location-wrapper .location-provice:last-child .custom-radio-wrap {
		height: 50%;
        max-height: 50vh;
    }
	.location-wrapper .location-provice{
		padding: 20px 20px 15px 20px!important;
	}
    .default-filter-header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .location-wrapper .default-filter-header h3 {
        color: #005B94 !important;
        font-weight: 600 !important;
		font-size: 22px !important;
		margin-bottom: 0 !important;
    }
    .default-filter-header button.modal-close.defaultFilter {
        display: inline-block;
        padding: 5px;
        color: #aaa;
        background: none;
        border: 0;
        font-size: 20px;
        cursor: pointer;
    }
	.location-wrapper .default-filter-header{
		padding: 15px 20px!important;
		background: #fafafa;
		border-radius: 15px 15px 0 0;
	}
	body .location-wrapper .location-provice h6{
		margin-bottom: 15px;
	}
	.location-wrapper .default-filter-search{
		padding: 20px 20px!important;
	}
	
}
