/*=== Login Section ===*/
#log-in {
	position: fixed;
	top:0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9999;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease 0s;
}
#log-in.active {
	opacity: 1;
    visibility: visible;
}
.log-out {
	font-family: 'OpenSans-Bold';
}
.login-container {
	width: 100%;
	height: 100%;
	flex-wrap: nowrap;
	align-items: stretch;
	flex-direction: row;
}
.login-photo {
	flex-grow:1;
	background: url(/images/layout/phoenix-park-footbridge.jpg) scroll center top no-repeat transparent;
	background-size: cover;
	position: relative;
	-webkit-transform: translateX(-100%);
	-moz-transform:    translateX(-100%);
	-ms-transform:     translateX(-100%);
	-o-transform:      translateX(-100%);
	transform:         translateX(-100%);
	transition: all 0.6s ease 0s;
}
#log-in.active .login-photo {
	-webkit-transform: translateX(0);
	-moz-transform:    translateX(0);
	-ms-transform:     translateX(0);
	-o-transform:      translateX(0);
	transform:         translateX(0);
}
.login-photo:before {
	content: "";
    background: rgba(18, 20, 43, 0.4);
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.login-form {
	width: 100%;
	max-width: 600px;
	background: #FFF;
	position: relative;
	-webkit-transform: translateX(100%);
	-moz-transform:    translateX(100%);
	-ms-transform:     translateX(100%);
	-o-transform:      translateX(100%);
	transform:         translateX(100%);
	transition: all 0.6s ease 0s;
}
#log-in.active .login-form {
	-webkit-transform: translateX(0);
	-moz-transform:    translateX(0);
	-ms-transform:     translateX(0);
	-o-transform:      translateX(0);
	transform:         translateX(0);
}
.form {
	height: 100%;
	width: 100%;
	overflow: auto;
	align-items: center;
	justify-content: center;
}
#log-in .login-form-style {
	width: calc(100% - 80px);
	padding: 40px;
	max-width: 640px;
	margin: 0 auto;
}
.login-form-style h2 {
	font-size: 3.0rem;
	margin-bottom: 20px;
	text-transform: uppercase;
	line-height: 1.1;
	letter-spacing: -0.2rem;
	font-family: 'MavenPro', sans-serif;
}
.login-form-style > img {
	display: block;
	margin: 0 auto 40px;
}

.login-form-style label span {
	display: block;
}
#log-in .login-form-style select,
#log-in .login-form-style input:not([type="submit"]) {
	display: inline-block;
	min-height: 52px;
	font-size: 1.7rem;
	line-height: 20px;
	padding: 0 15px;
	margin-bottom: 24px;
	vertical-align: middle;
	border-radius: 2px;
	min-width: 50px;
	max-width: 635px;
	width: 100%;
	background-color: #ffffff;
	border: 1px solid rgba(36,28,21,0.3);
}

.login-form-style .submit-btn {
	width: 100%;
	text-align: center;
	box-sizing: border-box;
}

.login-form-style .extra-options {
	display: block;
	text-align: center;
	margin: 20px 0 0 0;
}

a.form-link {
	text-decoration: underline;
	color: #061349;
}
a.form-link:hover,
a.form-link:active {
	color: #001a39;
}

.login-form-style .extra-options i { 
	font-size: 6px;
	padding: 0 10px;
	position: relative;
	top: -2px;
}
.login-form .close-btn {
    border: 1px solid #001a39;
    position: absolute;
    display: block;
    width: 64px;
    height: 64px;
    background-color: #FFF;
    z-index: 9999;
    top: 25px;
    right: 25px;
    border-radius: 50%;
    outline: none;
    box-shadow: none;
    cursor: pointer;
}
.login-form .close-btn i {
    position: absolute;
    font-size: 32px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/*=== HEADER ===*/
#header{
    height: 50px;
    background-color: #000000;
}
.header-wrapper{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 120;
}
.top-bar{
    height: 50px;
    background-color: #000000;
}
.top-bar > .flexbox{
    align-items: center;
    justify-content: flex-end;
    max-width: 1115px;
    padding-right: 0;
}
.top-bar .btn-login{
    height: 100%;
    padding: 12px 15px;
}
/*=== MAIN NAVIGATION ===*/
.header-menu{
    color: #e7e7e7;
    padding: 15px 0;
}
.header-menu > .flexbox{
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
.header-menu .social{
    display: none;
}
.logo-wrapper{
    width: 356px;
    margin-left: -5px;
}
.logo-wrapper .logo,
.logo-wrapper .logo img{
    display: block;
}
.logo-wrapper .logo img + img{
    display: none;
}
.logo-wrapper .logo-mob{
    display: none !important;
}
#nav-btn,
#nav-close-btn{
    display: none;
}
.main-nav{
    margin-right: -9px;
}
.nav-menu{
    font-size: 0;
    margin: 0 -8px;
}
.nav-menu > li{
    display: inline-block;
    position: relative;
    padding: 0 8px;
}
.nav-menu > li:last-child{
    padding-right: 0;
}
.nav-menu li a{
    text-transform: uppercase;
    font-size: 18px;
}
.nav-menu > li > a{
    white-space: nowrap;
    position: relative;
    letter-spacing: 0.075em;
    padding: 12px 9px;
    transition: none;
}
.nav-menu > li.active > a:after,
.nav-menu > li > a:after {
    content: '';
    display: block;
    height: 3px;
    width: 100%;
    background: #8ac032;
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
}
.nav-menu  a i{
    margin-right: 5px;
    vertical-align: text-top;
}
.sub-menu{
    width: 250px;
    padding: 20px 30px 27px;
    text-align: left;
    position: absolute;
    top: 100%;
    left: -20px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    color: #000;
    background: #fff;
    box-shadow: 0px 4px 8px -4px rgba(0,0,0,0.1);
}
li.has-child:hover .sub-menu,
.nav-menu > li:hover > a:after,
.nav-menu > li.active > a:after{
    opacity: 1;
    visibility: visible;
}
.sub-menu li{
    margin-bottom: 12px;
}
.sub-menu li a{
    display: block;
    font-size: 15px;
    padding: 0 0 0 9px;
}
.sub-menu li a:hover{
    color: #8ac032;
}
.sub-menu li:last-child{
    margin-bottom: 0;
}
/*=== FIXED AND INNER HEADER ===*/
.fixed .header-wrapper{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 120;
    -webkit-box-shadow: 0 2px 7px -3px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 2px 7px -3px rgba(0,0,0,0.2);
    box-shadow: 0 2px 7px -3px rgba(0,0,0,0.2);
}
.fixed .top-bar{
    /*margin-top: -50px;*/
    height: 44px;
}
.fixed  .top-bar .btn-login {
    padding: 8px 15px;
}
.fixed .logo-wrapper{
    width: 270px;
}
.fixed .logo-wrapper .logo img{
    display: none;
}
.fixed .logo-wrapper .logo img + img{
    display: block;
}
.fixed .header-menu{
    background-color: #e7e7e7;
    color: #000;
    padding: 0;
}
.fixed .nav-menu > li > a{
    padding: 18px 9px;
}
.fixed .ico-wish-list:after{
    opacity: 1;
    visibility: visible;
}
/*=== TOP BANNER ===*/
.banner, .sub-banner.extended{
    position: relative;
    min-height: 550px;
}
.banner .top-slider {
    height: 100%;
}
.banner .single-banner {
    height: 100%;
    background-position: top center;
    background-attachment: fixed;
}
.banner .single-banner:after,
.sub-banner .single-banner:after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
}
.sub-banner.dark .single-banner:after{
    background: rgba(0, 0, 0, 0.7);
}
.banner .container,
.sub-banner .container{
    height: 100%;
    padding: 130px 15px 60px;
    z-index: 2;
    align-items: center;
    color: #e7e7e7;
    text-shadow: 0 0px 7px rgba(0, 0, 0, 0.5);
}
.banner-text{
    width: 100%;
    max-width: 600px;
}
.banner .large-text{
    color: #89c031;
    position: relative;
    text-shadow: 0 0px 7px rgba(0, 0, 0, 0.5);
}
.banner-content{
    display: block;
    vertical-align: top;
    margin-bottom: 25px;
    font-size: 24px;
    letter-spacing: 0.075em;
}
.banner-content p:last-child{
    margin-bottom: 0;
}
.banner .btn{
    box-shadow: 0 0px 7px rgba(0, 0, 0, 0.7), inset 0 0 7px rgba(0, 0, 0, 0.5);
}
.banner .btn:hover{
    box-shadow: 0 0px 7px rgba(0, 0, 0, 0.7);
    text-shadow: none;
}
.banner .slick-arrow,
.category-slider .slick-arrow{
    opacity: 0;
}
.banner:hover .slick-arrow,
.category-slider:hover .slick-arrow{
    opacity: 1;
}
.banner .slick-list,
.banner .slick-track{
    height: 100%;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
    transform: none !important;
}
.banner .slick-dots{
    height: auto;
    left: 50%;
    bottom: 90px;
    width: auto;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
}
.sub-banner.extended{
    height: 645px;
}
.sub-banner .single-banner{
    height: 100%;
}
.sub-banner:not(.extended){
    height: 370px;
    position: relative;
}
.sub-banner:not(.extended) .container{
    align-items: flex-end;
    padding: 80px 15px 30px;
}
.sub-banner .large-text{
    font-size: 40px;
}
/*=== CATEGORIES & LISTINGS ===*/
.category-section{
    background: #000000;
    color: #e7e7e7;
}
.category-section:nth-last-child(2){
    padding-bottom: 40px;
}
.category-title{
    text-shadow: 0 0px 7px rgba(0, 0, 0, 1);
    padding: 16px 0 17px;
    height: 58px;
}
#home .banner + .category-section {
    background: none;
}
.banner + .category-section .category-title,
.sub-banner.extended + .category-section .category-title{
    margin-top: -58px;
    padding: 13px 0;
    position: relative;
    z-index: 12;
}
.category-section + .category-section .category-title{
    padding-top: 12px;
    height: 54px;
}
.category-slider .slick-list{
    padding-top: 15px !important;
    margin-top: -11px;
    padding-bottom: 4px !important;
}
.category-slider .slick-slide,
.gallery-slider .slick-slide{
    width: 345px;
    padding: 0 1.5px;
}
.listing-box{
	display: block;
    position: relative;
    cursor: pointer;
    text-shadow: 0 0px 7px rgba(0, 0, 0, 1);
}
.listing-box.active{
    transform: scale(1.02, 1.02);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 7px rgba(0, 0, 0, 1);
}
.listing-box-link {
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: 1;
}
.listing-top{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 0 0 18px;
    z-index: 2;
}
.listing-label{
    display: block;
    height: 107px;
    width: 107px;
    background: url(../images/layout/label.png) no-repeat;
    position: absolute;
    right: -15px;
    top: -15px;
    z-index: 1;
}
.listing-label span{
    font-size: 11.5px;
    font-weight: bold;
    text-transform: uppercase;
    display: block;
    white-space: nowrap;
    position: absolute;
    transform: rotate(46deg);
    top: 36px;
    left: 27px;
}
.add-to-wish{
    font-size: 23px;
}
.add-to-wish.active i:before{
    font-weight: bold;
}
.listing-box .listing-image{
    height: 200px;
    position: relative;
}
.listing-box .listing-image figure,
.gallery-slider a figure{
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}
.listing-box .listing-info{
    font-size: 30px;
    line-height: 1.2;
    font-weight: bold;
    text-transform: uppercase;
    background: #061349;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 18px 0 20px;
    height: 60px;
}
.listing-box .listing-info .attribute-list{
    display: flex;
    flex-shrink: 0;
}
.listing-box .listing-info .attribute-list li:not(:last-child){
    margin-right: 10px;
}
.listing-box .listing-info i{
    margin-left: 5px;
    background: none;
    position: relative;
}
.listing-box .listing-info i:after{
    content: '';
    position: absolute;
    top: -7px;
    right: -7px;
}
.listing-box .listing-info .ico-bed{
    width: 35px;
    height: 20px;
}
.listing-box .listing-info .ico-bed:after{
    width: 49px;
    height: 34px;
    background-image: url(../images/icons/bed-shadow.png);
}
.listing-box .listing-info .ico-bath{
    width: 34px;
    height: 28px;
}
.listing-box .listing-info .ico-bath:after{
    width: 48px;
    height: 42px;
    background-image: url(../images/icons/bath-shadow.png);
    top: -7px;
    right: -7px;
}
.listing-box .listing-price:after{
    content: "\f107";
    font-family: Font Awesome\ 5 Pro;
    line-height: 1;
    vertical-align: middle;
    font-weight: normal;
    margin: 0 7px;
}
.listing-capture{
    font-size: 25px;
    line-height: 1.2;
    text-transform: uppercase;
    position: absolute;
    bottom: 25px;
    text-shadow: none;
    text-align: center;
    width: 100%;
    left: 0;
    z-index: 1;
}
.listing-capture strong{
    display: block;
    font-size: 35px;
}
.listing-box.long-box .listing-image{
    height: 520px;
}
.listing-box.long-box .listing-info{
    justify-content: center;
    text-align: center;
    height: 78px;
}
.listing-box.long-box .listing-image:after{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: -moz-linear-gradient(top,  rgba(0,0,0,0) 60%, rgba(0,0,0,1) 95%);
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 60%,rgba(0,0,0,1) 95%);
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 60%,rgba(0,0,0,1) 95%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );
}
/* Listing Overview */
.listing-overview{
    background: #061349;
    border-bottom: 4px solid #000;
    display: none;
}
.listing-overview.active{
    display: block;
}
.listing-overview .container{
    max-width: 1200px;
    padding: 0;
}
.listing-main-gallery{
    width: calc(100% - 460px);
    position: relative;
    height: 525px;
}
.listing-main-gallery:before{
    content: '';
    position: absolute;
    top: -4px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 27px 26px 0 26px;
    border-color: #061349 transparent transparent transparent;
    z-index: 1;
    left: 60%;
}
.listing-gallery,
.listing-gallery .slick-list,
.listing-gallery .slick-track,
.listing-gallery .img-box{
    height: 100%;
}
.listing-main-info{
    width: 460px;
}
.listing-label-info{
    font-size: 16px;
    background: #061349;
    text-transform: uppercase;
    position: absolute;
    padding: 7px 20px;
    bottom: 27px;
    width: 100%;
    max-width: 490px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.listing-gallery .slick-arrow{
    top: auto;
    transform: none;
    bottom: 18px;
}
.listing-gallery .slick-arrow:after{
    font-size: 54px;
}
.listing-main-info .inner-box{
    max-width: 392px;
    padding: 20px 0 20px 50px;
}
.listing-main-info .listing-price{
    font-size: 50px;
    line-height: 1.2;
    font-weight: 900;
    margin-bottom: 12px;
}
.liting-address{
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 32px;
}
.listing-main-info .attribute-list{
    display: flex;
    margin-bottom: 50px;
}
.listing-main-info .attribute-list li{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    font-size: 30px;
    line-height: 1;
    font-weight: bold;
    padding: 0 30px;
}
.listing-main-info .attribute-list li:first-child{
    padding-left: 0;
}
.listing-main-info .attribute-list li:nth-child(2){
    flex-grow: 1;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.listing-main-info .attribute-list li:last-child{
    padding-right: 0;
}
.listing-main-info .attribute-list i{
    display: block;
    margin-bottom: 15px;
}
.listing-main-info .attribute-list .ico-bed{
    width: 51px;
    height: 29px;
}
.listing-main-info .attribute-list .ico-bath{
    width: 49px;
    height: 42px;
}
.listing-main-info .attribute-list .ico-square{
    width: 42px;
    height: 42px;
}
.listing-main-info .listing-info{
    font-size: 18px;
    margin: 0 0 55px -10px;
}
.listing-main-info .listing-controls{
    display: flex;
    align-items: center;
}
.listing-main-info .listing-controls i{
    font-size: 24px;
    margin-right: 20px;
}
.listing-main-info .listing-controls .add-to-wish{
    color: #89c031;
}
.listing-main-info .listing-controls .btn{
    margin-left: auto;
}
.category-section.align-center{
    padding: 25px 0 15px;
}
/*=== ABOUT SECTION ===*/
.about-wrapper{
    background: #061349;
    box-shadow: 0 0px 7px rgba(0, 0, 0, 0.4);
    color: #e7e7e7;
    padding: 55px 0 15px;
}
.about-wrapper .container{
    max-width: 920px;
}
.about-wrapper p:nth-last-child(2){
    margin-bottom: 35px;
}
/*=== CALLOUT BANNERS ===*/
.quick-links{
    padding: 38px 0 48px;
}
.quick-links .flexbox{
    flex-wrap: nowrap;
}
.quick-links .callout-box{
    width: 50%;
    height: 250px;
    margin: 0 23px;
}
.callout-box{
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #89c031;
    color: #e7e7e7;
    box-shadow: 0 0px 7px rgba(0, 0, 0, 0.4);
}
.callout-box:hover{
    background: #061349;
}
.callout-box h3{
    font-size: 48px;
    font-weight: bold;
    letter-spacing: -0.025em;
    margin-top: 10px;
    color: #e7e7e7;
}
.callout-box img{
    display: block;
}
.callout-box i{
    height: 104px;
    margin-right: 16px;
}
.bar-callout{
    background-color: #89c031;
    color: #e7e7e7;
    padding: 22px 0;
     font-size: 19px;
    text-transform: uppercase;
}
.bar-callout .flexbox{
    max-width: 1000px;
    justify-content: space-between;
    align-items: center;
}
.bar-callout .flexbox > div:last-child{
    margin: 15px 0 15px 15px;
}
.bar-callout .large-text{
    font-size: 65px;
    margin-bottom: 0;
}
.bar-callout p{
    font-size: 19px;
    text-transform: uppercase;
    margin: 0 0 0 5px;
}
/*=== FOOTER ===*/
.footer-wrapper{
    height: auto;
    font-size: 18px;
    background: #353535;
    box-shadow: 0 0px 7px rgba(0, 0, 0, 0.4);
    color: #e7e7e7;
    padding: 15px 0 20px;
}
.footer-wrapper .flexbox{
    align-items: center;
    justify-content: space-between;
}
.footer-wrapper .flexbox > div:first-child{
    flex-grow: 1;
    padding-right: 15px;
}
.footer-wrapper .flexbox > div:last-child{
    width: 265px;
    flex-grow: 0;
    flex-shrink: 0;
}
.footer-wrapper ul{
    margin-bottom: 5px;
}
.footer-wrapper li{
    display: inline-block;
    vertical-align: top;
}
.footer-wrapper li:not(:last-child){
    margin-right: 40px;
}
.footer-wrapper li a{
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.075em;
}
.footer-wrapper li a:hover{
    color: #89c031;
}
.footer-wrapper span{
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.075em;
}
.jbsystems {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.2;
}
.jbsystems span{
    font-size: 11px;
    margin-right: 15px;
}
.jbsystems div {
    flex-shrink: 0;
    width: 109px;
    height: 43px;
    background: url(../images/layout/logo-JB-Systems.png) no-repeat;
    margin-top: 2px;
}
/*=== INNER PAGES ===*/

/* Listing Filters */
.property-filter-wrapper{
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: none;
}
.property-filter ul{
    display: flex;
}
.property-filter .main-filters{
    background: rgba(6, 19, 73, 0.9);
    color: #fff;
    padding: 35px 35px 20px;
    text-align: center;
}
.property-filter .prop-search{
    position: relative;
    margin-bottom: 25px;
}
.property-filter .prop-search input[type=text]{
    width: 100%;
    line-height: 1.2;
    padding: 7px 50px 7px 15px;
    background: #e7e7e7;
    border: 3px solid #89c031;
    color: #141c4b;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.property-filter .prop-search button{
    position: absolute;
    color: #89c031;
    font-size: 27px;
    line-height: 1.2;
    right: 16px;
    top: 8px;
    width: 28px;
    border: none;
    background: none;
    outline: none;
    cursor: pointer;
}
.property-filter .prop-search button i{
    position: relative;
}
.property-filter .main-filters li{
    width: 25%;
    flex-grow: 1;
    position: relative;
}
.property-filter .main-filters li:not(:last-child):after{
    content: '';
    width: 1px;
    height: 85px;
    background: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 0;
    right: 0;
}
.property-filter .main-filters li i{
    display: block;
    margin: 0 auto 15px;
    height: 42px;
    background-size: contain;
    background-position: center bottom;
}
.property-filter label{
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: #8ac032;
}
.property-filter .main-filters li:nth-child(3),
.property-filter .main-filters li:last-child{
    width: 160px;
    flex-shrink: 0;
}
.property-filter .quantity-counter{
    display: inline-block;
    vertical-align: top;
    position: relative;
    padding-right: 20px;
    margin-left: -16px;
}
.quantity-counter input,
.property-filter .filter-row input,
.advanced-filters li > input{
    display: inline-block;
    vertical-align: top;
    background: none;
    color: #fff;
    font-size: 30px;
    height: 30px;
    line-height: 1;
    font-weight: bold;
}
.property-filter .filter-row input,
.advanced-filters li > input{
    width: 100%;
    text-align: center;
}
.property-filter .main-filters .filter-row:first-child{
    margin-bottom: 13px;
}
.prop-filters li:first-child .quantity-counter input,
.prop-filters li:nth-child(2) .quantity-counter input,
.advanced-filters .quantity-counter input{
    width: 34px;
    text-align: right;
}
.prop-filters li:nth-child(3) .quantity-counter input{
    width: 100px;
    text-align: right;
}
.quantity-counter button{
    display: block;
    background: none;
    color: #fff;
    border: none;
    font: bold 20px/1 Font Awesome\ 5 Pro;
    cursor: pointer;
    height: 10px;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 5px;
}
.quantity-counter button:last-child{
    top: 18px;
}
.quantity-counter button:after{
    position: relative;
    vertical-align: top;
}
.quantity-counter .counter-plus:after{
    content: '\f0de';
}
.quantity-counter .counter-minus:after{
    content: '\f0dd';
    top: -10px;
}
.property-filter .prop-search input[type=text]::-webkit-input-placeholder{
    color: #141c4b;
}
.property-filter .prop-search input[type=text]:-ms-input-placeholder{ 
    color: #141c4b;
}
.property-filter .prop-search input[type=text]::placeholder { 
    color: #141c4b;
}
.property-filter .ico-bed{
    width: 51px;
    height: 29px;
}
.property-filter .ico-square{
    width: 42px;
    height: 42px;
}
.property-filter .ico-bath{
    width: 49px;
    height: 42px;
}
.btn-toggle-filters{
    display: block;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.2;
    font-weight: bold;
    padding: 12px 35px;
}
.btn-toggle-filters:after{
    content: '\f107';
    vertical-align: baseline;
    font: 14px/1 Font Awesome\ 5 Pro;
    margin-left: 7px;
}
.btn-toggle-filters.active:after{
    content: '\f106';
    position: relative;
    top: -1px;
}
.property-filter .advanced-filters{
    background: rgba(137, 192, 49, 0.9);
    color: #061349;
    text-align: center;
}
.property-filter .advanced-filters ul{
    height: 0;
    overflow: hidden;
    padding: 0 35px;
}
.property-filter .advanced-filters .active + ul{
    height: 106px;
    padding-bottom: 15px;
}
.property-filter .advanced-filters i{
    display: block;
    margin: 0 auto 8px;
}
.property-filter .advanced-filters li{
    flex-grow: 1;
    width: 33%;
}
.property-filter .advanced-filters li:last-child{
    width: 320px;
    flex-shrink: 0;
    text-align: left;
    padding-left: 15px;
}
.property-filter .advanced-filters label{
    color: #fff;
}
.advanced-filters input,
.advanced-filters li > input,
.advanced-filters .quantity-counter button{
    color: #061349;
}
.advanced-filters li:last-child .filter-row > span:first-child{
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    min-width: 110px;
}
.advanced-filters .filter-row{
    display: flex;
    align-items: center;
    padding-right: 15px;
}
.advanced-filters .filter-row:not(:last-child){
    margin-bottom: 2px;
}
.advanced-filters .select2-container{
    width: 100% !important;
    font-size: 17px;
    text-transform: uppercase;
}
.advanced-filters .select2-container--default .select2-selection--single .select2-selection__rendered{
    color: #061349;
    font-weight: normal;
    line-height: 20px;
    padding-left: 10px;
}
.select2-container--default .select2-selection--single{
    background: rgba(255, 255, 255, 0.7);
}
.advanced-filters .select2-container--default .select2-selection--single .select2-selection__arrow b{
    display: none;
}
.advanced-filters .select2-container--default .select2-selection--single .select2-selection__arrow:after {
    content: '\f107';
    font: bold 17px/1 Font Awesome\ 5 Pro;
}
/* Details Page*/
.time-label{
    font-size: 24px;
    text-transform: uppercase;
    background: #89c031;
    color: #fff;
    position: absolute;
    z-index: 1;
    top: 85px;
    width: 100%;
    text-align: center;
}
.listing-nav{
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 5px;
}
.listing-nav a{
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.listing-nav a:after,
.listing-nav a:before{
    font-size: 52px;
    vertical-align: middle;
    position: relative;
    top: -3px;  
    left: 0;
    right: 0;
}
.listing-nav a:before{
    left: auto;
}
.listing-nav a:before{
    margin-right: 14px;
}
.listing-nav a:after{
    margin-left: 14px;
}
.listing-nav a:hover:after{
    left: 10px;
}
.listing-nav a:hover:before{
    right: 10px;
}
.listing-nav a:last-child{
    float: right;
}
.gallery-wrapper{
    margin-bottom: 50px;
}
.gallery-slider .slick-list{
    padding-top: 4px !important;
}
.gallery-slider a{
	background-attachment: scroll;
	background-color: transparent;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
    display: block;
    height: 220px;
}
.gallery-slider a > img {
	opacity: 0;
}
.details-name{
    padding-left: 45px;
    margin-top: auto;
}
.details-name h1 span{
    display: block;
    font-size: 40px;
    font-weight: normal;
}
.details-wrapper{
    padding-bottom: 130px;
}
.details-wrapper .attribute-list{
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
.details-wrapper .attribute-list i{
    margin-bottom: 12px;
}
.details-wrapper .attribute-list li{
    font-size: 40px;
    line-height: 1.2;
    font-weight: bold;
    width: 20%;
    height: 185px;
    color: #e7e7e7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: #89c031;
    box-shadow: 0 0px 7px rgba(0, 0, 0, 0.4);
    padding: 15px 15px 20px;
    margin-right: 22px;
}
.details-wrapper .attribute-list li:last-child{
    margin-right: 0;
}
.details-wrapper .flexbox > div{
    width: 50%;
}
.details-wrapper .flexbox > div:first-child{
    padding: 0 45px 0 40px;
}
.details-wrapper .flexbox > div:last-child{
    padding: 12px 15px 0 23px;
}
.details-wrapper h3{
    margin-bottom: 25px;
}
.details-wrapper .listing-price{
    font-size: 30px;
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 900;
    color: #061349;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}
.details-wrapper .listing-price strong{
    font-weight: 900;
    font-size: 80px;
    margin-right: 10px;
}
.details-wrapper .listing-price span{
    line-height: 0.8;
}
.details-wrapper .listing-mls{
    font-size: 30px;
    line-height: 1;
    text-transform: uppercase;
    color: #061349;
    padding-left: 5px;
    margin-bottom: 35px;
}



/* bof: added by dah */
#dashboard-header h1 {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}
#dashboard-header h2{
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.details-top > .container > .flexbox {
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
	padding: 25px 0 15px;
	border-bottom: 1px solid #c4c6cc;
}
.details-list {
    font-size: 12px;
}
.details-list li {
    display: inline-block;
}
.details-list li + li {
	margin-left: 40px;
}
.details-list a:not(.btn) {
    padding: 23px 0 21px;
    border-bottom: 2px solid transparent;
    text-transform: uppercase;
    font-family: 'OpenSans-Semibold';
}
.details-list a.active {
    color: #4eabe9;
    border-color: #4eabe9;
}
.details-list [class*="fa-"],
.details-tabs h4 [class*="fa-"] {
    margin-right: 4px;
}
/* eof: added by dah */




.listing-agent-box{
    display: flex;
    align-items: flex-start;
    border: 3px solid #061349;
    font-size: 15px;
    padding: 11px;
    margin-bottom: 30px;
}
.listing-agent-box .img-box{
    flex-shrink: 0;
    width: 136px;
    height: 136px;
    background-position: center top;
    margin-right: 12px;
}
.listing-agent-box h4{
    margin-bottom: 10px;
}
.listing-agent-box li strong{
    text-transform: uppercase;
}
.add-to-wish.active{
    color: #89c031;
}
.details-wrapper .listing-controls ul{
    display: flex;
    margin-bottom: 10px;
}
.details-wrapper .listing-controls a{
    font-size: 30px;
}
.details-wrapper .listing-controls li:not(:last-child){
    margin-right: 25px;
}
.details-wrapper .listing-controls ul a:hover,
.details-social a:hover{
    color: #89c031;
}
.details-logo,
.details-logo img{
    display: block;
}
.details-logo{
    margin-bottom: 40px;
}
.details-social,
.details-social li{
    display: inline-block;
    vertical-align: top;
}
.details-social{
    margin-left: 20px;
    font-size: 30px;
}
.details-social li:not(:last-child){
    margin-right: 2px;
}
.details-wrapper .flexbox > div:last-child .btn,
.details-wrapper .flexbox > div:last-child  .details-social{
    margin-top: 65px;
}
/* Main Content */
.main-content{
    position: relative;
    padding: 50px 0 130px;
    overflow: hidden;
}
.main-content .content ul:not(.attribute-list),
.main-content .content ol{
    margin-bottom: 30px;
    text-align: left;
}
.main-content .sidebar{
    width: 320px;
    padding-left: 45px;
}
.main-content .content h1,
.main-content .content h2{
    font-size: 56px;
    color: #061349;
}
.main-content .content h3{
    margin: 30px 0 20px;
}
.sidebar > *:not(:last-child){
    margin-bottom: 30px;
}
.sidebar .callout-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 15px;
}

.toggle-wrapper {
    margin: 25px 0 50px;
}
.head-toggle {
    position: relative;
    margin-bottom: 5px;
    padding: 11px 55px 11px 15px;
    text-transform: uppercase;
    font-size: 18px;
    color: #fff;
    background-color: #a2a6a8;
    cursor: pointer;
}
.head-toggle:before,
.head-toggle:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 18px;
    height: 3px;
    background-color: #fff;
}
.head-toggle:after {
    transform: rotate(90deg);
}
.box-toggle.open .head-toggle:after {
    transform: rotate(180deg);
}
.content-toggle {
    display: none;
    padding: 25px 10px 30px;
}
.content-toggle ul {
	list-style: inside;
	margin: 5px auto;
}
.faq-list {
	margin: 20px auto;
}
.faq h3 {
	color: #000;
}
.faq .head-toggle {
	background-color: transparent;
}
.faq .head-toggle::before,
.faq .head-toggle::after {
	background-color: #000;	
}
.faq .content-toggle {
	padding: 10px 15px;
}
.cat-title {
	font-size: 40px;
	font-weight: 900;
	letter-spacing: -0.025em;
	text-transform: uppercase;
	color: #061349;
}
.full-width {
	margin: auto !important;
	width: 100%;
}