@charset "UTF-8";
.checkbox {
    padding-left:20px
}

.checkbox label {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding-left:5px
}

.checkbox label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 22px;
    height: 22px;
    left: 0;
    margin-left: -20px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background-color: #fff;
    -webkit-transition: border .15s ease-in-out, color .15s ease-in-out;
    -o-transition: border .15s ease-in-out, color .15s ease-in-out;
    transition:border .15s ease-in-out, color .15s ease-in-out
}

.checkbox label::after {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    margin-left: -18px;
    width: 22px;
    height: 22px;
    padding-left: 5px;
    padding-top: 4px;
    font-size: 13px;
    color:#555
}

.checkbox input[type=checkbox], .checkbox input[type=radio] {
    opacity: 0;
    z-index:1
}

.checkbox input[type=checkbox]:focus + label::before, .checkbox input[type=radio]:focus + label::before {
    outline:0 !important
}

.checkbox input[type=checkbox]:focus + label::before, .checkbox input[type=radio]:focus + label::before {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset:-2px
}

.checkbox input[type=checkbox]:checked + label::after, .checkbox input[type=radio]:checked + label::after {
    content: "✓"
}

.checkbox input[type=checkbox]:disabled + label, .checkbox input[type=radio]:disabled + label {
    opacity:.65
}

.checkbox input[type=checkbox]:disabled + label::before, .checkbox input[type=radio]:disabled + label::before {
    background-color: #eee;
    cursor:not-allowed
}

.checkbox.checkbox-circle label::before {
    border-radius:50%
}

.checkbox.checkbox-inline {
    margin-top:0
}

.checkbox-primary input[type=checkbox]:checked + label::before, .checkbox-primary input[type=radio]:checked + label::before {
    background-color: #337ab7;
    border-color:#337ab7
}

.checkbox-primary input[type=checkbox]:checked + label::after, .checkbox-primary input[type=radio]:checked + label::after {
    color:#fff
}

.checkbox-danger input[type=checkbox]:checked + label::before, .checkbox-danger input[type=radio]:checked + label::before {
    background-color: #d9534f;
    border-color:#d9534f
}

.checkbox-danger input[type=checkbox]:checked + label::after, .checkbox-danger input[type=radio]:checked + label::after {
    color:#fff
}

.checkbox-info input[type=checkbox]:checked + label::before, .checkbox-info input[type=radio]:checked + label::before {
    background-color: #5bc0de;
    border-color:#5bc0de
}

.checkbox-info input[type=checkbox]:checked + label::after, .checkbox-info input[type=radio]:checked + label::after {
    color:#fff
}

.checkbox-warning input[type=checkbox]:checked + label::before, .checkbox-warning input[type=radio]:checked + label::before {
    background-color: #f0ad4e;
    border-color:#f0ad4e
}

.checkbox-warning input[type=checkbox]:checked + label::after, .checkbox-warning input[type=radio]:checked + label::after {
    color:#fff
}

.checkbox-success input[type=checkbox]:checked + label::before, .checkbox-success input[type=radio]:checked + label::before {
    background-color: #5cb85c;
    border-color:#5cb85c
}

.checkbox-success input[type=checkbox]:checked + label::after, .checkbox-success input[type=radio]:checked + label::after {
    color:#fff
}

.checkbox.checkbox-sm label::before {
    width: 30px;
    height: 30px;
    top:-13px
}

.checkbox.checkbox-sm label::after {
    width: 30px;
    height: 30px;
    padding-left: 4px;
    font-size: 20px;
    left: 1px;
    top:-13px
}

.checkbox.checkbox-sm label {
    padding-left: 18px;
    top:13px
}

.checkbox.checkbox-md label::before {
    width: 34px;
    height: 34px;
    top:-17px
}

.checkbox.checkbox-md label::after {
    width: 34px;
    height: 34px;
    padding-left: 4px;
    font-size: 24px;
    left: 1px;
    top:-18px
}

.checkbox.checkbox-md label {
    padding-left: 22px;
    top:17px
}

.checkbox.checkbox-lg label::before {
    width: 46px;
    height: 46px;
    top:-28px
}

.checkbox.checkbox-lg label::after {
    width: 46px;
    height: 46px;
    padding-left: 4px;
    font-size: 36px;
    left: 1px;
    top:-31px
}

.checkbox.checkbox-lg label {
    padding-left: 34px;
    top:32px
}

.radio {
    padding-left:20px
}

.radio label {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding-left:5px
}

.radio label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    margin-left: -20px;
    border: 1px solid #ccc;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transition: border .15s ease-in-out;
    -o-transition: border .15s ease-in-out;
    transition:border .15s ease-in-out
}

.radio label::after {
    display: inline-block;
    position: absolute;
    content: " ";
    width: 11px;
    height: 11px;
    left: 3px;
    top: 3px;
    margin-left: -18px;
    border-radius: 50%;
    background-color: #555;
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition: -webkit-transform .1s cubic-bezier(.8, -.33, .2, 1.33);
    -o-transition: -o-transform .1s cubic-bezier(.8, -.33, .2, 1.33);
    transition: -webkit-transform .1s cubic-bezier(.8, -.33, .2, 1.33);
    -o-transition: transform .1s cubic-bezier(.8, -.33, .2, 1.33);
    transition: transform .1s cubic-bezier(.8, -.33, .2, 1.33);
    transition:transform .1s cubic-bezier(.8, -.33, .2, 1.33), -webkit-transform .1s cubic-bezier(.8, -.33, .2, 1.33)
}

.radio input[type=radio] {
    opacity: 0;
    z-index:1
}

.radio input[type=radio]:focus + label::before {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset:-2px
}

.radio input[type=radio]:checked + label::after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform:scale(1, 1)
}

.radio input[type=radio]:disabled + label {
    opacity:.65
}

.radio input[type=radio]:disabled + label::before {
    cursor:not-allowed
}

.radio.radio-inline {
    margin-top:0
}

.radio-primary input[type=radio] + label::after {
    background-color:#337ab7
}

.radio-primary input[type=radio]:checked + label::before {
    border-color:#337ab7
}

.radio-primary input[type=radio]:checked + label::after {
    background-color:#337ab7
}

.radio-danger input[type=radio] + label::after {
    background-color:#d9534f
}

.radio-danger input[type=radio]:checked + label::before {
    border-color:#d9534f
}

.radio-danger input[type=radio]:checked + label::after {
    background-color:#d9534f
}

.radio-info input[type=radio] + label::after {
    background-color:#5bc0de
}

.radio-info input[type=radio]:checked + label::before {
    border-color:#5bc0de
}

.radio-info input[type=radio]:checked + label::after {
    background-color:#5bc0de
}

.radio-warning input[type=radio] + label::after {
    background-color:#f0ad4e
}

.radio-warning input[type=radio]:checked + label::before {
    border-color:#f0ad4e
}

.radio-warning input[type=radio]:checked + label::after {
    background-color:#f0ad4e
}

.radio-success input[type=radio] + label::after {
    background-color:#5cb85c
}

.radio-success input[type=radio]:checked + label::before {
    border-color:#5cb85c
}

.radio-success input[type=radio]:checked + label::after {
    background-color:#5cb85c
}

input[type=checkbox].styled:checked + label:after, input[type=radio].styled:checked + label:after {
    content: "✓"
}

input[type=checkbox] .styled:checked + label::before, input[type=radio] .styled:checked + label::before {
    color:#fff
}

input[type=checkbox] .styled:checked + label::after, input[type=radio] .styled:checked + label::after {
    color:#fff
}

.radio.radio-sm label::before {
    width: 30px;
    height: 30px;
    top:-13px
}

.radio.radio-sm label::after {
    width: 22px;
    height: 22px;
    padding-left: 4px;
    font-size: 20px;
    left: 4px;
    top:-9px
}

.radio.radio-sm label {
    padding-left: 18px;
    top:13px
}

.radio.radio-md label::before {
    width: 34px;
    height: 34px;
    top:-17px
}

.radio.radio-md label::after {
    width: 26px;
    height: 26px;
    padding-left: 4px;
    font-size: 24px;
    left: 4px;
    top:-13px
}

.radio.radio-md label {
    padding-left: 22px;
    top:17px
}

.radio.radio-lg label::before {
    width: 46px;
    height: 46px;
    top:-28px
}

.radio.radio-lg label::after {
    width: 36px;
    height: 36px;
    padding-left: 4px;
    font-size: 36px;
    left: 5px;
    top:-23px
}

.radio.radio-lg label {
    padding-left: 34px;
    top:32px
}

@font-face {
    font-family: Lato;
    font-style: normal;
    font-weight: 300;
    src: local("Lato Light"), local("Lato-Light"), url(https://fonts.gstatic.com/s/lato/v14/S6u9w4BMUTPHh7USSwaPGQ3q5d0N7w.woff2) format("woff2");
    unicode-range:U + 0100-024F, U + 0259, U + 1E00-1EFF, U + 2020, U + 20A0-20AB, U + 20AD-20CF, U + 2113, U + 2C60-2C7F, U + A720-A7FF
}

@font-face {
    font-family: Lato;
    font-style: normal;
    font-weight: 300;
    src: local("Lato Light"), local("Lato-Light"), url(https://fonts.gstatic.com/s/lato/v14/S6u9w4BMUTPHh7USSwiPGQ3q5d0.woff2) format("woff2");
    unicode-range:U + 0000-00FF, U + 0131, U + 0152-0153, U + 02BB-02BC, U + 02C6, U + 02DA, U + 02DC, U + 2000-206F, U + 2074, U + 20AC, U + 2122, U + 2191, U + 2193, U + 2212, U + 2215, U + FEFF, U + FFFD
}

@font-face {
    font-family: Lato;
    font-style: normal;
    font-weight: 400;
    src: local("Lato Regular"), local("Lato-Regular"), url(https://fonts.gstatic.com/s/lato/v14/S6uyw4BMUTPHjxAwXiWtFCfQ7A.woff2) format("woff2");
    unicode-range:U + 0100-024F, U + 0259, U + 1E00-1EFF, U + 2020, U + 20A0-20AB, U + 20AD-20CF, U + 2113, U + 2C60-2C7F, U + A720-A7FF
}

@font-face {
    font-family: Lato;
    font-style: normal;
    font-weight: 400;
    src: local("Lato Regular"), local("Lato-Regular"), url(https://fonts.gstatic.com/s/lato/v14/S6uyw4BMUTPHjx4wXiWtFCc.woff2) format("woff2");
    unicode-range:U + 0000-00FF, U + 0131, U + 0152-0153, U + 02BB-02BC, U + 02C6, U + 02DA, U + 02DC, U + 2000-206F, U + 2074, U + 20AC, U + 2122, U + 2191, U + 2193, U + 2212, U + 2215, U + FEFF, U + FFFD
}

@font-face {
    font-family: Lato;
    font-style: normal;
    font-weight: 700;
    src: local("Lato Bold"), local("Lato-Bold"), url(https://fonts.gstatic.com/s/lato/v14/S6u9w4BMUTPHh6UVSwaPGQ3q5d0N7w.woff2) format("woff2");
    unicode-range:U + 0100-024F, U + 0259, U + 1E00-1EFF, U + 2020, U + 20A0-20AB, U + 20AD-20CF, U + 2113, U + 2C60-2C7F, U + A720-A7FF
}

@font-face {
    font-family: Lato;
    font-style: normal;
    font-weight: 700;
    src: local("Lato Bold"), local("Lato-Bold"), url(https://fonts.gstatic.com/s/lato/v14/S6u9w4BMUTPHh6UVSwiPGQ3q5d0.woff2) format("woff2");
    unicode-range:U + 0000-00FF, U + 0131, U + 0152-0153, U + 02BB-02BC, U + 02C6, U + 02DA, U + 02DC, U + 2000-206F, U + 2074, U + 20AC, U + 2122, U + 2191, U + 2193, U + 2212, U + 2215, U + FEFF, U + FFFD
}

@font-face {
    font-family: ert-icons;
    src: url(../fonts/ert-icons.eot?2f874c40ca54f9ac5ee54471d5d2109e);
    src: url(../fonts/ert-icons.eot?2f874c40ca54f9ac5ee54471d5d2109e#iefix) format("embedded-opentype"), url(../fonts/ert-icons.woff?2f874c40ca54f9ac5ee54471d5d2109e) format("woff"), url(../fonts/ert-icons.ttf?2f874c40ca54f9ac5ee54471d5d2109e) format("truetype");
    font-weight: 400;
    font-style:normal
}

.ert-icon {
    font-family: ert-icons;
    display: inline-block;
    line-height: 1;
    font-weight: 400;
    font-style: normal;
    speak: none;
    text-decoration: inherit;
    text-transform: none;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing:grayscale
}

.ert-icon_facebook-logo:before {
    content: "\f101"
}

.ert-icon_facebook:before {
    content: "\f102"
}

.ert-icon_google-plus:before {
    content: "\f103"
}

.ert-icon_instagram:before {
    content: "\f104"
}

.ert-icon_linkedin:before {
    content: "\f105"
}

.ert-icon_pdf:before {
    content: "\f106"
}

.ert-icon_share:before {
    content: "\f107"
}

.ert-icon_twitter:before {
    content: "\f108"
}

.ert-icon_upload:before {
    content: "\f109"
}

.ert-icon_youtube:before {
    content: "\f10a"
}

@font-face {
    font-family: ert-icons;
    src: url(../fonts/ert-icons.eot?2f874c40ca54f9ac5ee54471d5d2109e);
    src: url(../fonts/ert-icons.eot?2f874c40ca54f9ac5ee54471d5d2109e#iefix) format("embedded-opentype"), url(../fonts/ert-icons.woff?2f874c40ca54f9ac5ee54471d5d2109e) format("woff"), url(../fonts/ert-icons.ttf?2f874c40ca54f9ac5ee54471d5d2109e) format("truetype");
    font-weight: 400;
    font-style:normal
}

.ert-icon {
    font-family: ert-icons;
    display: inline-block;
    line-height: 1;
    font-weight: 400;
    font-style: normal;
    speak: none;
    text-decoration: inherit;
    text-transform: none;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing:grayscale
}

.ert-icon_facebook-logo:before {
    content: "\f101"
}

.ert-icon_facebook:before {
    content: "\f102"
}

.ert-icon_google-plus:before {
    content: "\f103"
}

.ert-icon_instagram:before {
    content: "\f104"
}

.ert-icon_linkedin:before {
    content: "\f105"
}

.ert-icon_pdf:before {
    content: "\f106"
}

.ert-icon_share:before {
    content: "\f107"
}

.ert-icon_twitter:before {
    content: "\f108"
}

.ert-icon_upload:before {
    content: "\f109"
}

.ert-icon_youtube:before {
    content: "\f10a"
}

body {
    font-family: Lato, sans-serif;
    color: #000;
    line-height:normal
}

a {
    text-decoration: none;
    color: #212121;
    outline: 0;
    border:none
}

a:hover {
    color:#212121
}

.slick-slide, .slick-slide:focus {
    outline:0 !important
}

.es-field--number input {
    min-width:60px
}

h3 {
    font-size: 18px;
    color:#212121
}

h3 a, h3 a:hover {
    color:#212121
}

#header .navbar-nav.ert-login-menu li:last-child a, .ert-link-btn {
    border: .75px solid #000;
    padding:2px 19px
}

.badge {
    font-size: 11px;
    text-transform: uppercase;
    border-radius: 2px;
    padding: 7px 15px;
    font-weight:400
}

.badge.badge-light {
    color: #212121;
    background:rgba(255, 255, 255, .8)
}

.badge.badge-dark {
    color: #fff;
    background:rgba(33, 33, 33, .8)
}

#searchsubmit, .btn, .comment-reply-link, .es-btn, .wpcf7-submit, a.btn {
    font-size: 12px;
    font-weight: 500;
    padding: 9px 28px;
    text-transform: uppercase;
    border-radius: 0 !important;
    text-decoration: none;
    background-clip:unset
}

#searchsubmit:focus, .btn:focus, .comment-reply-link:focus, .es-btn:focus, .wpcf7-submit:focus, a.btn:focus {
    border-color:inherit
}

#searchsubmit.btn-light, .btn.btn-light, .comment-reply-link.btn-light, .es-btn.btn-light, .wpcf7-submit.btn-light, a.btn.btn-light {
    color: #000;
    background: 0 0;
    border:1px solid #000
}

#searchsubmit.btn-light:hover, .btn.btn-light:hover, .comment-reply-link.btn-light:hover, .es-btn.btn-light:hover, .wpcf7-submit.btn-light:hover, a.btn.btn-light:hover {
    color: #fff;
    background:#000
}

#searchsubmit.btn-gray, .btn.btn-gray, .comment-reply-link.btn-gray, .es-btn.btn-gray, .wpcf7-submit.btn-gray, a.btn.btn-gray {
    color: #b2b2b2;
    border: .75px solid #b2b2b2;
    background:0 0
}

#searchsubmit.btn-primary, #searchsubmit.comment-reply-link, .btn.btn-primary, .btn.comment-reply-link, .comment-reply-link.btn-primary, .comment-reply-link.comment-reply-link, .es-btn.btn-primary, .es-btn.comment-reply-link, .wpcf7-submit.btn-primary, .wpcf7-submit.comment-reply-link, a.btn.btn-primary, a.btn.comment-reply-link {
    background: #000;
    color: #fff;
    border:1px solid #000
}

#searchsubmit.btn-primary:hover, #searchsubmit.comment-reply-link:hover, .btn.btn-primary:hover, .btn.comment-reply-link:hover, .comment-reply-link.btn-primary:hover, .comment-reply-link.comment-reply-link:hover, .es-btn.btn-primary:hover, .es-btn.comment-reply-link:hover, .wpcf7-submit.btn-primary:hover, .wpcf7-submit.comment-reply-link:hover, a.btn.btn-primary:hover, a.btn.comment-reply-link:hover {
    background: 0 0;
    color: #000;
    text-decoration:none
}

#searchsubmit:focus, .btn:focus, .comment-reply-link:focus, .es-btn:focus, .wpcf7-submit:focus, a.btn:focus {
    -webkit-box-shadow: none;
    box-shadow:none
}

.wpcf7-form-control {
    width:100%
}

.ert-property-control a {
    display: inline-block;
    background: rgba(33, 33, 33, .8);
    border-radius: 2px;
    color: #fff;
    text-decoration: none;
    width: 25px;
    height: 25px;
    vertical-align: top;
    text-align:center
}

.ert-property-control a:hover {
    text-decoration:none
}

.ert-property-control .es-icon, .ert-property-control .fa {
    margin: 0;
    line-height: 25px;
    font-size: 14px !important;
    color:#fff
}

.ert-form-group {
    border-bottom: 1px solid #b2b2b2 !important;
    margin-bottom:20px
}

.ert-control {
    border: none !important;
    font-weight: 300;
    line-height: 26px;
    font-size: 14px;
    padding: 0 !important;
    border-radius: 0;
    color:#141414
}

.ert-control:focus {
    border: 0;
    -webkit-box-shadow: none;
    box-shadow:none
}

.ert-social {
    margin:0 -4px
}

.ert-social .btn-social {
    margin:0 4px
}

.btn-social {
    padding: 0 !important;
    border: 1px solid #f1f1f1;
    background: 0 0;
    color: #000;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size:14px
}

.btn-social:hover {
    background: #000;
    color:#fff
}

.btn-social:hover .ert-icon {
    color:#fff
}

.ert-checkbox-styled {
    position: absolute;
    z-index: -1;
    opacity:0
}

.ert-checkbox-styled + label {
    position: relative;
    padding: 0 0 0 30px;
    cursor:pointer
}

.ert-checkbox-styled + label:before {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #000;
    top:-3px
}

.ert-checkbox-styled:checked + label:before {
    background:#000
}

.es-recaptcha-wrapper {
    margin:10px 0
}

.ert-rating .ert-rating__label {
    font-weight: 300;
    line-height: normal;
    font-size: 12px;
    margin-right: 10px;
    color:#b2b2b2
}

.ert-rating .fa {
    font-size: 14px;
    margin-right: 5px;
    position: relative;
    top:1px
}

.ert-rating .fa:last-child {
    margin-right:0
}

.widget.widget_block {
    padding: 0 !important;
    border:0 !important
}

.es-search__address input[type=text] {
    height: 40px !important;
    border-radius:0 !important
}

input:not([type=submit]):not([type=reset]):not(.btn), select, textarea {
    font-weight: 300;
    font-size: 14px;
    line-height: 26px;
    color: #141414;
    letter-spacing:-.4px
}

input:not([type=submit]):not([type=reset]):not(.btn):focus, select:focus, textarea:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline:0
}

input:not([type=submit]):not([type=reset]):not(.btn).form-control, select.form-control, textarea.form-control {
    border-radius: 0;
    font-size: 14px;
    color: #141414;
    font-weight: 300;
    -webkit-transition: none;
    -o-transition: none;
    transition:none
}

input:not([type=submit]):not([type=reset]):not(.btn).form-control:focus, select.form-control:focus, textarea.form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color:#212121
}

input:not([type=submit]):not([type=reset]):not(.btn)[type=autocomplete], input:not([type=submit]):not([type=reset]):not(.btn)[type=email], input:not([type=submit]):not([type=reset]):not(.btn)[type=number], input:not([type=submit]):not([type=reset]):not(.btn)[type=password], input:not([type=submit]):not([type=reset]):not(.btn)[type=text], select[type=autocomplete], select[type=email], select[type=number], select[type=password], select[type=text], textarea[type=autocomplete], textarea[type=email], textarea[type=number], textarea[type=password], textarea[type=text] {
    padding-left: 0;
    padding-right: 0;
    border: 0;
    border-bottom: 1px solid #b2b2b2;
    height:37px
}

input:not([type=submit]):not([type=reset]):not(.btn)[type=autocomplete]:focus, input:not([type=submit]):not([type=reset]):not(.btn)[type=email]:focus, input:not([type=submit]):not([type=reset]):not(.btn)[type=number]:focus, input:not([type=submit]):not([type=reset]):not(.btn)[type=password]:focus, input:not([type=submit]):not([type=reset]):not(.btn)[type=text]:focus, select[type=autocomplete]:focus, select[type=email]:focus, select[type=number]:focus, select[type=password]:focus, select[type=text]:focus, textarea[type=autocomplete]:focus, textarea[type=email]:focus, textarea[type=number]:focus, textarea[type=password]:focus, textarea[type=text]:focus {
    border-bottom:1px solid #212121
}

input:not([type=submit]):not([type=reset]):not(.btn)[type=autocomplete][disabled], input:not([type=submit]):not([type=reset]):not(.btn)[type=autocomplete][readonly], input:not([type=submit]):not([type=reset]):not(.btn)[type=email][disabled], input:not([type=submit]):not([type=reset]):not(.btn)[type=email][readonly], input:not([type=submit]):not([type=reset]):not(.btn)[type=number][disabled], input:not([type=submit]):not([type=reset]):not(.btn)[type=number][readonly], input:not([type=submit]):not([type=reset]):not(.btn)[type=password][disabled], input:not([type=submit]):not([type=reset]):not(.btn)[type=password][readonly], input:not([type=submit]):not([type=reset]):not(.btn)[type=text][disabled], input:not([type=submit]):not([type=reset]):not(.btn)[type=text][readonly], select[type=autocomplete][disabled], select[type=autocomplete][readonly], select[type=email][disabled], select[type=email][readonly], select[type=number][disabled], select[type=number][readonly], select[type=password][disabled], select[type=password][readonly], select[type=text][disabled], select[type=text][readonly], textarea[type=autocomplete][disabled], textarea[type=autocomplete][readonly], textarea[type=email][disabled], textarea[type=email][readonly], textarea[type=number][disabled], textarea[type=number][readonly], textarea[type=password][disabled], textarea[type=password][readonly], textarea[type=text][disabled], textarea[type=text][readonly] {
    background: 0 0;
    opacity:.5
}

input:not([type=submit]):not([type=reset]):not(.btn)::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    font-weight: 300;
    font-size: 14px;
    line-height: 26px;
    color:#141414
}

input:not([type=submit]):not([type=reset]):not(.btn)::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
    font-weight: 300;
    line-height: 26px;
    font-size: 14px;
    color:#141414
}

input:not([type=submit]):not([type=reset]):not(.btn):-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
    font-weight: 300;
    font-size: 14px;
    line-height: 26px;
    color:#141414
}

input:not([type=submit]):not([type=reset]):not(.btn):-moz-placeholder, select:-moz-placeholder, textarea:-moz-placeholder {
    font-weight: 300;
    font-size: 14px;
    line-height: 26px;
    color:#141414
}

select.form-control {
    padding: 0;
    height: 37px !important;
    border: 0;
    border-bottom: 1px solid #b2b2b2;
    -webkit-appearance: none;
    border-radius:0
}

select.form-control:focus {
    border-bottom:1px solid #212121
}

textarea, textarea.form-control {
    height: auto;
    padding: 14px 0 22px 0;
    border: 0;
    border-bottom:1px solid #b2b2b2
}

textarea.form-control:focus, textarea:focus {
    border-bottom:1px solid #212121
}

.es-field__content input {
    border-radius:0 !important
}

.input-group .input-group-text {
    border: 0;
    padding: 0;
    background: 0 0;
    border-radius: 0;
    border-bottom: 1px solid #b2b2b2;
    font-weight: 300;
    font-size: 14px;
    color: #999;
    padding-bottom:8px
}

.input-group input:focus + .input-group-append .input-group-text {
    border-bottom:1px solid #7a7a7a
}

.form-check {
    margin:5px 0
}

.form-check-label {
    font-weight: 300;
    font-size: 14px;
    color:#141414
}

.form-check-label span {
    margin-left: 8px;
    text-transform: capitalize;
    display: inline-block;
    margin-top:2px
}

.select2:focus * {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline:0
}

.select2 :not(.select2-selection__arrow *) {
    font-family:Lato, sans-serif !important
}

.select2 .select2-selection {
    border: 0 !important;
    border-bottom: 1px solid #b2b2b2 !important;
    height: auto;
    border-radius:0
}

.select2.select2-container--open .select2-selection {
    border: 0;
    border-bottom:1px solid #212121 !important
}

.select2 .select2-search__field, .select2 .select2-selection__rendered {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: #141414;
    padding-left:0 !important
}

.select2 .select2-selection--single .select2-selection__rendered {
    line-height:36px
}

.select2 .select2-selection__rendered {
    min-height:33px
}

.select2-results .select2-results__option {
    font-weight: 300;
    line-height: 26px;
    font-size: 12px;
    color:#434343 !important
}

.select2-results .select2-results__option.select2-results__option--highlighted {
    background:#f2f2f2
}

.select2-results .select2-results__option:hover {
    font-weight: 400;
    background-color: transparent !important;
    color:#212121 !important
}

.es-search__wrapper .es-search__field .es-field__wrap .select2 .select2-search__field {
    padding-left:0 !important
}

.es-search__wrapper .es-search__field .es-field__wrap .select2 .select2-selection--multiple {
    padding:0 !important
}

.es-widget input:not(.btn) {
    padding:0
}

.es-button__wrap .btn {
    font-size: 12px;
    font-weight: 500;
    padding:9px 28px
}

.es-search__wrapper .es-search__field .es-field__wrap .select2 {
    width:auto
}

span.select2-selection.select2-selection--single {
    outline:0
}

body .pagination .nav-links, body.post-type-archive-properties .pagination .nav-links {
    width: 100%;
    text-align: center;
    padding:20px 0
}

body .pagination .nav-links .page-numbers, body.post-type-archive-properties .pagination .nav-links .page-numbers {
    margin: 0 auto;
    display: inline-block;
    padding:0
}

body .pagination .nav-links .page-numbers li, body.post-type-archive-properties .pagination .nav-links .page-numbers li {
    display:inline-block
}

body .pagination .nav-links .page-numbers li .page-numbers, body.post-type-archive-properties .pagination .nav-links .page-numbers li .page-numbers {
    font-size: 14px;
    color: #b2b2b2;
    margin: 0 10px;
    font-weight:400
}

body .pagination .nav-links .page-numbers li .page-numbers.current, body .pagination .nav-links .page-numbers li .page-numbers.next, body .pagination .nav-links .page-numbers li .page-numbers.prev, body.post-type-archive-properties .pagination .nav-links .page-numbers li .page-numbers.current, body.post-type-archive-properties .pagination .nav-links .page-numbers li .page-numbers.next, body.post-type-archive-properties .pagination .nav-links .page-numbers li .page-numbers.prev {
    color:#212121
}

body .pagination .nav-links .page-numbers li .page-numbers.next:before, body .pagination .nav-links .page-numbers li .page-numbers.prev:after, body.post-type-archive-properties .pagination .nav-links .page-numbers li .page-numbers.next:before, body.post-type-archive-properties .pagination .nav-links .page-numbers li .page-numbers.prev:after {
    display: inline-block;
    width: 1px;
    background: #000;
    height: 10px;
    content: "";
    margin-right:20px
}

body .pagination .nav-links .page-numbers li .page-numbers.prev:after, body.post-type-archive-properties .pagination .nav-links .page-numbers li .page-numbers.prev:after {
    margin-right: 0;
    margin-left:20px
}

.ert-search-field label {
    font-size:14px
}

.ert-search-field [type=number], .ert-search-field [type=text] {
    width:100%
}

.breadcrumbs {
    font-weight: 300;
    font-size: 14px;
    color: #212121;
    margin:17px 0
}

.breadcrumbs a {
    color:#b2b2b2
}

.breadcrumbs i.fa {
    color: #b2b2b2;
    font-size: 12px;
    margin:0 5px 0 4px
}

.entry-header .entry-title {
    font-weight: 300;
    font-size: 40px;
    color: #000;
    position: relative;
    margin:20px 0
}

.entry-header .entry-title:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background: #212121;
    top: 50%;
    right: 100%;
    margin-right:20px
}

.advanced-search-link {
    font-weight: 300;
    font-size: 14px;
    color:#b2b2b2
}

.advanced-search-link .fa {
    background: #212121;
    color: #fff;
    border-radius: 50%;
    padding: 8px;
    margin-right:15px
}

.advanced-search-link:hover .fa {
    text-decoration:none
}

.es-price {
    background: 0 0;
    text-align: left;
    border: 0;
    padding: 0;
    margin:0
}

body .es-table-wrap .nav-links .page-numbers:hover {
    outline:0
}

.es-btn {
    border-radius:0 !important
}

.es-btn.es-btn-green:hover {
    background:0 0
}

img.alignright {
    float: right;
    margin:0 0 1em 1em
}

img.alignleft {
    float: left;
    margin:0 1em 1em 0
}

img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right:auto
}

.alignright {
    float:right
}

.alignleft {
    float:left
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right:auto
}

.clearfix {
    clear:both
}

iframe {
    max-width:100%
}

body .es-field.es-field--checkbox-item-bordered, body .es-field.es-field--radio-item-bordered {
    font-size:10px
}

.es-field__show-more {
    font-size: 14px;
    margin-top: 15px;
    display:inline-block
}

.es-field__show-more * {
    vertical-align:middle
}

.es-field__show-more .es-icon {
    margin-left: 7px;
    text-decoration:none
}

.slick-hidden.slick-vertical {
    visibility:unset
}

body .es-field .select2-container .select2-selection:not(.es-ignore-style), body .es-field input[type=email]:not(.es-ignore-style), body .es-field input[type=number]:not(.es-ignore-style), body .es-field input[type=password]:not(.es-ignore-style), body .es-field input[type=text]:not(.es-ignore-style), body .es-field input[type=url]:not(.es-ignore-style), body .es-field select:not(.select2-hidden-accessible):not(.es-ignore-style), body .es-field textarea:not(.es-ignore-style) {
    border-radius:0
}

.es-property-field--post_content .es-entity-field__value {
    line-height: 27.2px;
    line-height:1.7rem
}

.es-entity-field__value .es-social-links {
    display: inline-block;
    margin:0
}

.widget-area .widget {
    margin-bottom:30px
}

.widget-area .widget:last-child {
    margin-bottom:0
}

.widget.es-widget, .widget:not(.so-panel):not(.widget_siteorigin-panels-builder), body:not(.home) .widget_ert-property-carousel-widget:not(.so-panel) {
    background: 0 0;
    border: 1px solid #f1f1f1;
    padding: 20px;
    font-family:Lato, sans-serif
}

.widget.es-widget .widgettitle, .widget:not(.so-panel):not(.widget_siteorigin-panels-builder) .widgettitle, body:not(.home) .widget_ert-property-carousel-widget:not(.so-panel) .widgettitle {
    font-size: 16px;
    color: #212121;
    margin-bottom:20px
}

.widget.es-widget .es-request-widget-wrap, .widget:not(.so-panel):not(.widget_siteorigin-panels-builder) .es-request-widget-wrap, body:not(.home) .widget_ert-property-carousel-widget:not(.so-panel) .es-request-widget-wrap {
    background: 0 0 !important;
    padding: 0;
    text-align: left;
    font-family:Lato, sans-serif
}

.widget.es-widget .es-request-widget-wrap input, .widget.es-widget .es-request-widget-wrap textarea, .widget:not(.so-panel):not(.widget_siteorigin-panels-builder) .es-request-widget-wrap input, .widget:not(.so-panel):not(.widget_siteorigin-panels-builder) .es-request-widget-wrap textarea, body:not(.home) .widget_ert-property-carousel-widget:not(.so-panel) .es-request-widget-wrap input, body:not(.home) .widget_ert-property-carousel-widget:not(.so-panel) .es-request-widget-wrap textarea {
    color:#141414
}

.widget.es-widget .es-request-widget-wrap #request-form-message, .widget:not(.so-panel):not(.widget_siteorigin-panels-builder) .es-request-widget-wrap #request-form-message, body:not(.home) .widget_ert-property-carousel-widget:not(.so-panel) .es-request-widget-wrap #request-form-message {
    min-height: 80px;
    height:inherit
}

.widget.es-widget .es-request-widget-wrap input[type=submit], .widget:not(.so-panel):not(.widget_siteorigin-panels-builder) .es-request-widget-wrap input[type=submit], body:not(.home) .widget_ert-property-carousel-widget:not(.so-panel) .es-request-widget-wrap input[type=submit] {
    padding: 9px 28px !important;
    width: auto;
    font-size:12px
}

.widget.es-widget .es-request-widget-wrap .form-check, .widget:not(.so-panel):not(.widget_siteorigin-panels-builder) .es-request-widget-wrap .form-check, body:not(.home) .widget_ert-property-carousel-widget:not(.so-panel) .es-request-widget-wrap .form-check {
    font-weight: 300;
    font-size: 12px;
    padding: 9px 0;
    color:#b2b2b2
}

.widget.es-widget .es-request-widget-wrap .form-check a, .widget:not(.so-panel):not(.widget_siteorigin-panels-builder) .es-request-widget-wrap .form-check a, body:not(.home) .widget_ert-property-carousel-widget:not(.so-panel) .es-request-widget-wrap .form-check a {
    color: #212121;
    font-weight:400
}

footer .widget:not(.so-panel) {
    background: 0 0 !important;
    border: 0 !important;
    padding:0 !important
}

footer .widget:not(.so-panel) .widgettitle {
    font-weight: 300;
    font-size: 40px;
    line-height: normal;
    color: #000;
    margin-bottom:25px
}

.page-title, .so-panel:not(.es-widget):not(.widget_ert-property-carousel-widget):not(.widget_ert-properties-sidebar-list-widget) .widget-title {
    font-weight: 300;
    line-height: normal;
    font-size: 40px;
    color: #000;
    text-align: center;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow:hidden
}

.page-title:after, .page-title:before, .so-panel:not(.es-widget):not(.widget_ert-property-carousel-widget):not(.widget_ert-properties-sidebar-list-widget) .widget-title:after, .so-panel:not(.es-widget):not(.widget_ert-property-carousel-widget):not(.widget_ert-properties-sidebar-list-widget) .widget-title:before {
    content: "";
    border-top: 1px solid #000;
    margin: 0 20px 0 0;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 20px;
    flex:1 0 20px
}

.page-title:after, .so-panel:not(.es-widget):not(.widget_ert-property-carousel-widget):not(.widget_ert-properties-sidebar-list-widget) .widget-title:after {
    margin:0 0 0 20px
}

.ert-testimonials .slick-arrow {
    font-size: 25px;
    text-transform: uppercase;
    position: absolute;
    color: #b2b2b2;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index:2
}

.ert-testimonials .slick-prev {
    left:0
}

.ert-testimonials .slick-next {
    right:0
}

.ert-testimonials .ert-testimonials__item {
    text-align:center
}

.ert-testimonials .ert-testimonials__item .ert-testimonial__image {
    max-width: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px auto;
    width: 150px;
    height:150px
}

.ert-testimonials .ert-testimonials__item .ert-testimonial__image img {
    width: 100%;
    height:auto
}

.ert-testimonials .ert-testimonials__item .ert-testimonial__name {
    font-weight: 400;
    font-size: 26px;
    color:#000
}

.ert-testimonials .ert-testimonials__item .ert-testimonial__sub-name {
    font-weight: 300;
    font-size: 12px;
    color:#565656
}

.ert-testimonials .ert-testimonials__item .ert-testimonial__content {
    font-weight: 300;
    line-height: 1.6;
    font-size: 16px;
    width: 100%;
    max-width: 750px;
    margin: 20px auto;
    color:#000
}

.ert-testimonials .slick-dots {
    text-align: center;
    margin: 2px 0 0 0;
    padding:0
}

.ert-testimonials .slick-dots li {
    width: 12px;
    height: 12px;
    border: 1px solid #212121;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    margin:0 7px
}

.ert-testimonials .slick-dots li button {
    display:none
}

.ert-testimonials .slick-dots li.slick-active {
    background:#212121
}

.widget_ert-property-types-widget .ert-type__block--inner {
    position: relative;
    -webkit-filter: grayscale(100%);
    filter:grayscale(100%)
}

.widget_ert-property-types-widget .ert-type__block--inner:before {
    content: "";
    display: block;
    padding-top: 100%;
    background:rgba(255, 255, 255, .65)
}

.widget_ert-property-types-widget .ert-type__block--inner h4 {
    position: absolute;
    overflow: hidden;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    font-weight: 300;
    line-height: normal;
    font-size: 35px;
    color: #212121;
    text-transform: uppercase;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items:center
}

.widget_ert-property-types-widget .ert-type__block--inner h4:after, .widget_ert-property-types-widget .ert-type__block--inner h4:before {
    content: "";
    height: 1px;
    background: #000;
    margin: 0 30px 0 0;
    -ms-flex: 1 0 20px;
    -webkit-box-flex: 1;
    flex: 1 0 20px;
    position: relative;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition:all .5s ease
}

.widget_ert-property-types-widget .ert-type__block--inner h4:before {
    left:-25%
}

.widget_ert-property-types-widget .ert-type__block--inner h4:after {
    margin: 0 0 0 30px;
    right:-25%
}

.widget_ert-property-types-widget .ert-type__block--inner h4 span {
    text-align: center;
    display: block;
    width:57%
}

@media screen and (max-width: 1000px) {
    .widget_ert-property-types-widget .ert-type__block--inner h4 span {
        width:auto
    }
}

.widget_ert-property-types-widget .ert-type__block--inner:hover {
    -webkit-filter: none;
    filter:none
}

.widget_ert-property-types-widget .ert-type__block--inner:hover h4:before {
    left:0
}

.widget_ert-property-types-widget .ert-type__block--inner:hover h4:after {
    right:0
}

.widget_ert-property-types-widget .ert-type__block {
    margin-top: 15px;
    margin-bottom:15px
}

.widget_ert-property-types-widget .ert-type__block.ert-type__block--dark .ert-type__block--inner {
    -webkit-filter: none;
    filter:none
}

.widget_ert-property-types-widget .ert-type__block.ert-type__block--dark h4 {
    color:#fff
}

.widget_ert-property-types-widget .ert-type__block.ert-type__block--dark h4:after, .widget_ert-property-types-widget .ert-type__block.ert-type__block--dark h4:before {
    background:#fff
}

.widget_ert-property-types-widget .ert-type__block.ert-type__block--dark .ert-type__block--inner:before {
    background:rgba(33, 33, 33, .75)
}

@media (max-width: 768px) {
    .widget_ert-property-types-widget .ert-type__block:nth-child(odd) .ert-type__block--inner {
        -webkit-filter: none;
        filter:none
    }

    .widget_ert-property-types-widget .ert-type__block:nth-child(odd) h4 {
        color:#fff
    }

    .widget_ert-property-types-widget .ert-type__block:nth-child(odd) h4:after, .widget_ert-property-types-widget .ert-type__block:nth-child(odd) h4:before {
        background:#fff
    }

    .widget_ert-property-types-widget .ert-type__block:nth-child(even) .ert-type__block--inner {
        -webkit-filter: grayscale(100%);
        filter:grayscale(100%)
    }

    .widget_ert-property-types-widget .ert-type__block:nth-child(even) .ert-type__block--inner h4 {
        color:#212121
    }

    .widget_ert-property-types-widget .ert-type__block:nth-child(even) .ert-type__block--inner h4:after, .widget_ert-property-types-widget .ert-type__block:nth-child(even) .ert-type__block--inner h4:before {
        background:#000
    }

    .widget_ert-property-types-widget .ert-type__block:nth-child(even) .ert-type__block--inner:before {
        background:rgba(255, 255, 255, .65) !important
    }
}

.panel-row-style.ert-overlay {
    position:relative
}

.panel-row-style.ert-overlay:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color:rgba(33, 33, 33, .75)
}

.so-panel.widget_ert-perfomance-widget .widget-title {
    color: #fff !important;
    margin-bottom:80px
}

.so-panel.widget_ert-perfomance-widget .widget-title:after, .so-panel.widget_ert-perfomance-widget .widget-title:before {
    border-color:#fff !important
}

.so-panel.widget_ert-perfomance-widget .ert-perfomance__item {
    text-align: center;
    margin-top: 15px;
    margin-bottom:15px
}

@media screen and (max-width: 991px) {
    .so-panel.widget_ert-perfomance-widget .ert-perfomance__item {
        border-left:0 !important
    }
}

.so-panel.widget_ert-perfomance-widget .ert-perfomance__item + .ert-perfomance__item {
    border-left:1px solid #fff
}

.so-panel.widget_ert-perfomance-widget h4, .so-panel.widget_ert-perfomance-widget p {
    font-weight: 300;
    line-height: 1.6;
    font-size: 16px;
    text-align: center;
    margin-bottom: 0;
    text-transform: uppercase;
    color:#fff
}

.so-panel.widget_ert-perfomance-widget h4 {
    font-size: 40px;
    margin-bottom:17px
}

.ert-properties-slider .slick-slide {
    margin:0 15px
}

.ert-properties-slider .slick-list {
    margin:0 -15px
}

.ert-properties-slider .slick-dots {
    text-align: center;
    list-style: none;
    margin: 0;
    padding:0
}

.ert-properties-slider .slick-dots li {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 1px solid #212121;
    border-radius: 50%;
    margin:0 7px
}

.ert-properties-slider .slick-dots li.slick-active {
    background:#212121
}

.ert-properties-slider .slick-dots li button {
    display:none
}

.ert-properties-slider__arrow {
    text-align: right;
    margin-bottom:30px
}

.ert-properties-slider__arrow .slick-arrow {
    font-size: 14px;
    color:#212121
}

.ert-properties-slider__arrow span {
    color: #000;
    margin: 0 18px;
    font-size: 11px;
    display: inline-block;
    position: relative;
    top:-1px
}

.ert-properties-slider__arrow--v2 .slick-arrow {
    position: absolute;
    display: inline-block;
    width: 25px;
    height: 25px;
    background: #212121;
    z-index: 1;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 14px;
    color: #fff;
    text-align: center;
    line-height:25px
}

.ert-properties-slider__arrow--v2 .slick-arrow.slick-next {
    right:10px
}

.ert-properties-slider__arrow--v2 .slick-arrow.slick-prev {
    left:10px
}

.ert-properties-slider__arrow--v2 .slick-arrow:hover {
    text-decoration:none
}

.ert-properties-slider__wrapper .ert-property-item {
    padding-top:0
}

.ert-properties-slider__wrapper .es-properties-slider:not(.slick-vertical) {
    display:block
}

.ert-properties-slider__wrapper .es-properties-slider:not(.slick-vertical) .slick-list {
    width:unset
}

.ert-properties-slider__wrapper--v2 {
    position:relative
}

.ert-properties-slider__wrapper--v2 .ert-property-item__inner {
    border:0 !important
}

.ert-properties-slider__wrapper--v2 .ert-property-item__image {
    padding:0 !important
}

.ert-properties-slider__wrapper--v2 .ert-property-item__image img {
    border-radius:0
}

.sow-slider-image-wrapper {
    position:relative
}

.sow-slider-image-wrapper h3, .sow-slider-image-wrapper h4 {
    font-weight:300 !important
}

.sow-slider-image-wrapper h3 {
    font-size: 65px !important;
    position:relative
}

@media screen and (max-width: 750px) {
    .sow-slider-image-wrapper h3 {
        font-size:45px !important
    }
}

.sow-slider-image-wrapper h3:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    border: 1px solid;
    left: -102%;
    top:50%
}

.sow-slider-image-wrapper h4 {
    font-size:18px !important
}

.sow-slider-image-wrapper .ow-button-base a {
    border-width: 1px !important;
    text-transform: uppercase;
    font-weight: 500;
    line-height: normal;
    font-size: 12px !important;
    padding:.8em 1.4em !important
}

.ert-slide-align-center {
    width: 100%;
    height: 100%;
    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
}

.widget_ert-about-widget {
    position: relative;
    overflow:hidden
}

.widget_ert-about-widget .triangle {
    -webkit-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    transform: rotate(50deg);
    position: absolute;
    bottom: 0;
    right: 0;
    content: "";
    display: block;
    background: #fff;
    width: 128%;
    height: 137%;
    top: 86%;
    left:51%
}

.widget_ert-about-widget .widget-title {
    margin-bottom:50px
}

.widget_ert-about-widget h4 {
    font-weight: 400;
    font-size: 34px;
    line-height: normal;
    color:#000
}

.widget_ert-about-widget h5 {
    font-weight: 300;
    font-size: 14px;
    line-height: normal;
    color:#565656
}

.widget_ert-about-widget .ert-about__content {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 30px;
    color:#000
}

.widget_ert-about-widget .btn {
    margin-top:20px
}

@media screen and (max-width: 767px) {
    .widget_ert-about-widget .ert-about__image {
        margin-bottom:100px
    }
}

.widget_ert-about-widget .ert-about__image--inner {
    display: inline-block;
    position: relative;
    padding-bottom:50px
}

.widget_ert-about-widget .ert-about__image--inner:before {
    width: 100%;
    height: 100%;
    content: "";
    display: block;
    border: 1px solid #000;
    position: absolute;
    left:50px
}

.widget_ert-about-widget .ert-about__image {
    text-align:center
}

.widget_ert-about-widget .ert-about__image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    position:relative
}

.ert-contact {
    font-weight: 300;
    font-size: 12px;
    color: #b2b2b2;
    line-height:30px
}

.ert-contact b, .ert-contact strong {
    font-weight: 400;
    font-size: 18px;
    color:#212121
}

#wp-calendar {
    width:100%
}

#wp-calendar td, #wp-calendar th {
    padding:5px 0
}

#wp-calendar #today {
    background: #111;
    color:#fff
}

#wp-calendar tbody, #wp-calendar thead {
    text-align:center
}

#wp-calendar tfoot {
    margin-top:5px
}

.yikes-easy-mc-form.ert-subscribe-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display:flex
}

.yikes-easy-mc-form.ert-subscribe-form label {
    margin:0
}

.yikes-easy-mc-form.ert-subscribe-form label input[type=email], .yikes-easy-mc-form.ert-subscribe-form label input[type=number], .yikes-easy-mc-form.ert-subscribe-form label input[type=text] {
    background: 0 0;
    border: 0;
    border-bottom: 1px solid #212121;
    padding: 0;
    margin: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    outline:0
}

.yikes-easy-mc-form.ert-subscribe-form label input[type=email]:focus, .yikes-easy-mc-form.ert-subscribe-form label input[type=number]:focus, .yikes-easy-mc-form.ert-subscribe-form label input[type=text]:focus {
    outline:0
}

.yikes-easy-mc-form.ert-subscribe-form .yikes-easy-mc-submit-button {
    margin: 0;
    padding: 0;
    font-weight: 500;
    font-size: 12px;
    line-height: normal;
    background: 0 0;
    color: #000;
    border: 0;
    border-bottom: 1px solid #212121;
    -webkit-box-flex: 0;
    -ms-flex: 0;
    flex: 0;
    min-height: initial;
    height:37px
}

.yikes-mailchimp-form-description {
    font-weight: 300;
    font-size: 12px;
    line-height: normal;
    color:#b2b2b2
}

.yikes-mailchimp-form-description + .ert-subscribe-form {
    margin-top:20px
}

.yikes-easy-mc-success-message {
    margin: 10px 0;
    font-weight: 300;
    font-size:12px
}

.es-button__wrap a, .es-button__wrap button, .es-button__wrap input {
    width:100%
}

.es-search__messages .es-search__message {
    margin: 10px 0 0 0;
    font-weight: 300;
    font-size:15px
}

.es-search__messages .es-search__message.es-search__message-error {
    border:1px solid #dc3545
}

.es-search__messages .es-search__message.es-search__message-error .fa {
    color:#dc3545
}

.es-button-error {
    color: #dc3545 !important;
    background:inherit
}

.es-button-error:hover {
    background:inherit
}

.es-button-green-corner {
    background: inherit;
    color: inherit;
    border:inherit
}

.es-button-green-corner {
    color:#333 !important
}

.ert-field__es_amenities .col-sm-4, .ert-field__es_feature .col-sm-4 {
    min-width:140px
}

.so-widget-ert-properties-sidebar-list-widget .ert-psl-item, .widget_ert-properties-sidebar-list-widget .ert-psl-item {
    border-bottom: 1px solid #e5e5e5;
    padding:10px 0
}

.so-widget-ert-properties-sidebar-list-widget .ert-psl-item:first-child, .widget_ert-properties-sidebar-list-widget .ert-psl-item:first-child {
    padding-top:0
}

.so-widget-ert-properties-sidebar-list-widget .ert-psl-item:last-child, .widget_ert-properties-sidebar-list-widget .ert-psl-item:last-child {
    border: 0;
    padding-bottom:0
}

.so-widget-ert-properties-sidebar-list-widget .ert-psl-item .ert-psl-item__image, .widget_ert-properties-sidebar-list-widget .ert-psl-item .ert-psl-item__image {
    padding:10px 15px
}

.so-widget-ert-properties-sidebar-list-widget .ert-psl-item .ert-psl-item__image img, .widget_ert-properties-sidebar-list-widget .ert-psl-item .ert-psl-item__image img {
    width: 100%;
    height:auto
}

.so-widget-ert-properties-sidebar-list-widget .ert-psl-item .ert-psl-item__content, .widget_ert-properties-sidebar-list-widget .ert-psl-item .ert-psl-item__content {
    padding:10px 15px
}

.so-widget-ert-properties-sidebar-list-widget .ert-psl-item .es-price, .widget_ert-properties-sidebar-list-widget .ert-psl-item .es-price {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color:#212121
}

.so-widget-ert-properties-sidebar-list-widget .ert-psl-item .ert-property-item__fields, .widget_ert-properties-sidebar-list-widget .ert-psl-item .ert-property-item__fields {
    margin-top: 5px;
    margin-bottom:5px
}

.so-widget-ert-properties-sidebar-list-widget .ert-psl-item .ert-area, .widget_ert-properties-sidebar-list-widget .ert-psl-item .ert-area {
    margin:10px 0 10px
}

.so-widget-ert-properties-sidebar-list-widget .ert-psl-item .entry-title, .widget_ert-properties-sidebar-list-widget .ert-psl-item .entry-title {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    margin: 0;
    color: #212121;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow:ellipsis
}

.so-widget-ert-properties-sidebar-list-widget .ert-psl-item .ert-address, .widget_ert-properties-sidebar-list-widget .ert-psl-item .ert-address {
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: block;
    margin-top:4px
}

.so-widget-ert-taxonomy-widget .es-term, .widget_ert-taxonomy-widget .es-term {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-weight: 400;
    font-size: 12px;
    line-height: 32px;
    color:#212121
}

#searchform {
    display: -webkit-box;
    display: -ms-flexbox;
    display:flex
}

#searchform #s {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex:1
}

.widget_block h2 {
    margin-bottom: 24px;
    margin-bottom:1.5rem
}

.wp-block-latest-posts__list li:not(:last-child) {
    margin-bottom: 16px;
    margin-bottom:1rem
}

.wp-block-latest-comments {
    padding:0
}

.wp-block-latest-comments footer {
    border-top: 0;
    margin-top:0 !important
}

.widget_ert-property-item-widget {
    border: 0 !important;
    padding:0 !important
}

.widget_ert-property-item-widget .ert-property-item {
    padding-bottom:0
}

.widget_categories ul, .widget_recent_comments ul, .widget_recent_entries ul {
    padding: 0;
    list-style:none
}

.widget_categories ul li, .widget_recent_comments ul li, .widget_recent_entries ul li {
    margin-bottom: 8px;
    margin-bottom: .5rem;
    text-decoration:underline
}

#header {
    padding: 10px 0;
    border-bottom: 1px solid #000;
    background:#fff
}

@media screen and (min-width: 992px) {
    #header .navbar-nav .menu-item-has-children:hover .dropdown-menu {
        display:block
    }
}

@media screen and (max-width: 991px) {
    #header .navbar-nav .menu-item-has-children a:after {
        display:none
    }
}

#header .navbar-nav .dropdown-menu {
    border-radius: 0;
    margin: 0;
    padding:0
}

#header .navbar-nav .dropdown-menu .dropdown-item {
    padding:10px
}

#header .navbar-nav .dropdown-menu .dropdown-item:focus, #header .navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color:#f8f9fa
}

@media screen and (max-width: 991px) {
    #header .navbar-nav .dropdown-menu {
        border: 0;
        display:block
    }

    #header .navbar-nav .dropdown-menu .dropdown-item {
        padding:.5rem !important
    }
}

#header .navbar-nav .menu-item-has-children a:after {
    margin-left:5px
}

#header .navbar-nav > li {
    padding:0 11px
}

#header .navbar-nav > li:first-child {
    padding-left:20px
}

#header .navbar-nav > li:last-child {
    padding-right:0
}

@media screen and (max-width: 991px) {
    #header .navbar-nav > li {
        padding:0 !important
    }

    #header .navbar-nav > li:last-child a {
        margin: 0 !important;
        border: 0 !important;
        padding:.5rem 0 !important
    }
}

#header .navbar-nav > li a {
    color: #000;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 12px;
    font-weight:500
}

#header .navbar-nav.ert-login-menu li:last-child a {
    margin-top:5px
}

@media screen and (max-width: 991px) {
    #header .navbar-nav {
        margin:0 !important
    }
}

body:not(.page-template-page-builder):not(.page-template-half-map-listings):not(.error404):not(.home.elementor-default) footer {
    margin-top:50px
}

footer {
    border-top:1px solid #000
}

footer .widget {
    margin:20px 0
}

footer .container__inner {
    padding:52px 0
}

footer .widget_nav_menu .menu {
    margin: 0;
    padding: 0;
    list-style:none
}

footer .widget_nav_menu .menu li {
    margin-bottom:10px
}

footer .widget_nav_menu .menu li:before {
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 9px;
    text-decoration: inherit;
    text-rendering: optimizeLegibility;
    text-transform: none;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    content: "\f112";
    display: none;
    position: relative;
    top: -1px;
    right:4px
}

footer .widget_nav_menu .menu li a {
    font-weight: 300;
    font-size: 12px;
    line-height: normal;
    color: #b2b2b2;
    text-decoration:none
}

footer .widget_nav_menu .menu li:hover:before {
    display:inline-block
}

footer .widget_nav_menu .menu li:hover a {
    color:#212121
}

footer .btn-social {
    margin-right:20px
}

footer #copyright {
    text-align: center;
    border-top: 1px solid #000;
    padding:20px
}

footer #copyright small {
    font-weight: 300;
    font-size: 18px;
    color:#000
}

.ert-agent {
    margin-bottom:20px
}

.ert-agent .es-share-wrapper {
    margin:10px 0 0
}

.ert-agent .ert-agent__content {
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content:space-between
}

.ert-agent:not(.ert-agent__partial) .ert-agent__image {
    min-width: 300px;
    min-height:350px
}

@media screen and (max-width: 575px) {
    .ert-agent:not(.ert-agent__partial) .ert-agent__image {
        margin-bottom:20px
    }
}

.ert-agent:not(.ert-agent__partial) .ert-agent__image img {
    width: 100%;
    height:auto
}

.ert-agent.ert-agent__partial {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin:0 -10px
}

.ert-agent.ert-agent__partial .ert-agent__content, .ert-agent.ert-agent__partial .ert-agent__image {
    margin:0 10px 10px 10px
}

.ert-agent.ert-agent__partial .ert-agent__name {
    line-height:1
}

.ert-agent .ert-agent__name {
    font-weight: 400;
    line-height: normal;
    font-size: 16px;
    color: #212121;
    margin-bottom:8px
}

.ert-agent .ert-agent__sub-name {
    font-weight: 300;
    line-height: normal;
    font-size: 14px;
    color:#565656
}

.ert-agent .ert-social {
    margin:9px -4px
}

.ert-agent .ert-agent__head {
    padding-bottom:9px
}

.ert-agent .ert-agent__fields {
    padding: 9px 0;
    list-style: none;
    margin:0
}

.ert-agent .ert-agent__fields li {
    margin-bottom:10px
}

.ert-agent .ert-agent__fields li:last-child {
    margin-bottom:0
}

.ert-agent .ert-agent__fields li b {
    font-weight: 400;
    line-height:normal
}

.ert-agent p {
    font-weight: 300;
    line-height: 17px;
    color:#000
}

.ert-agent .ert-agent__bottom {
    padding-top: 20px;
    border-top: .75px solid #000;
    margin-top:30px
}

.es-agent__list .ert-agent {
    border: 1px solid #f1f1f1;
    padding:20px
}

.ert-agent__content-inner .es-share-wrapper a {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 18px;
    padding: 0;
    text-decoration: none;
    margin-right:10px
}

.ert-agent__content-inner .es-share-wrapper a:hover {
    background: #000;
    color:#fff
}

.es-agent-register__logged {
    font-weight: 300;
    font-size: 14px;
    color:#141414
}

.es-agent-register__logged .btn {
    margin-top:20px
}

.es-login__wrap .es-btn--auth {
    margin-top: 10px;
    width: 100%;
    border-radius: 0 !important;
    font-weight:500
}

.ert-profile, .es-agent-register__wrap, .es-login__wrap {
    max-width: 420px;
    width: 100%;
    padding: 0;
    background: #fff;
    border-radius:0
}

.ert-profile .es-field__photo img, .es-agent-register__wrap .es-field__photo img, .es-login__wrap .es-field__photo img {
    max-width: 150px;
    width: 100%;
    height:auto
}

.ert-profile.es-agent-register__wrap, .es-agent-register__wrap.es-agent-register__wrap, .es-login__wrap.es-agent-register__wrap {
    max-width:750px
}

.ert-profile.ert-profile, .es-agent-register__wrap.ert-profile, .es-login__wrap.ert-profile {
    max-width:100%
}

.ert-profile .ert-label, .es-agent-register__wrap .ert-label, .es-login__wrap .ert-label {
    padding-right: 0;
    font-weight: 300;
    font-size: 14px;
    line-height: 30px;
    color:#b2b2b2
}

.ert-profile .ert-content, .es-agent-register__wrap .ert-content, .es-login__wrap .ert-content {
    font-weight: 300;
    font-size: 14px;
    color: #141414;
    line-height:30px
}

.ert-profile [type=file], .es-agent-register__wrap [type=file], .es-login__wrap [type=file] {
    display:none
}

.ert-profile .form-check label, .es-agent-register__wrap .form-check label, .es-login__wrap .form-check label {
    padding-left: 10px;
    font-weight: 300;
    font-size: 14px;
    color:#141414
}

.ert-profile .terms-wrapper, .es-agent-register__wrap .terms-wrapper, .es-login__wrap .terms-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding:20px 0 30px 0
}

.ert-profile .terms-wrapper label, .es-agent-register__wrap .terms-wrapper label, .es-login__wrap .terms-wrapper label {
    font-weight: 300;
    font-size: 12px;
    color:#b2b2b2
}

.ert-profile .btn, .es-agent-register__wrap .btn, .es-login__wrap .btn {
    width:100%
}

.ert-profile .forgot-pwd, .es-agent-register__wrap .forgot-pwd, .es-login__wrap .forgot-pwd {
    font-weight: 300;
    font-size: 12px;
    color:#141414
}

.ert-profile .es-message .fa, .es-agent-register__wrap .es-message .fa, .es-login__wrap .es-message .fa {
    display:none
}

.ert-profile .form-group, .es-agent-register__wrap .form-group, .es-login__wrap .form-group {
    margin-bottom:20px
}

.ert-profile form, .es-agent-register__wrap form, .es-login__wrap form {
    border-bottom: 1px solid #f1f1f1;
    border-left: 1px solid #f1f1f1;
    border-right:1px solid #f1f1f1
}

.ert-profile :not(.fa), .es-agent-register__wrap :not(.fa), .es-login__wrap :not(.fa) {
    font-family:Lato, sans-serif
}

.ert-profile h2, .es-agent-register__wrap h2, .es-login__wrap h2 {
    background: #212121;
    font-weight: 300;
    line-height: 30px;
    font-size: 26px;
    padding: 25px 15%;
    color: #fbfbfb;
    position: relative;
    margin:0
}

.ert-profile h2:after, .ert-profile h2:before, .es-agent-register__wrap h2:after, .es-agent-register__wrap h2:before, .es-login__wrap h2:after, .es-login__wrap h2:before {
    content: "";
    width: 13%;
    height: 1px;
    background: #fbfbfb;
    position: absolute;
    top: 52%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform:translateY(-50%)
}

.ert-profile h2:before, .es-agent-register__wrap h2:before, .es-login__wrap h2:before {
    left:0
}

.ert-profile h2:after, .es-agent-register__wrap h2:after, .es-login__wrap h2:after {
    right:0
}

.ert-profile form, .es-agent-register__wrap form, .es-login__wrap form {
    padding:30px
}

.ert-search {
    background: #fff;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, .1);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .1);
    max-width: 1110px;
    width: 80%;
    margin: 0 auto;
    position:relative
}

.ert-search__advanced.hidden {
    display:none
}

.ert-search__advanced .form-group {
    margin-bottom: 24px;
    margin-bottom:1.5rem
}

.advanced-search-control > div {
    margin:15px 0
}

.ert-hero-gallery {
    height: 92vh;
    width: 100%;
    position:relative
}

.ert-hero-gallery .ert-hero-gallery__inner {
    height:100%
}

.ert-hero-gallery .ert-hero-gallery__inner .slick-slide {
    background-size: cover;
    background-position:center
}

.ert-hero-gallery .ert-hero-gallery__inner .ert-hero-gallery__slide, .ert-hero-gallery .ert-hero-gallery__inner .slick-list, .ert-hero-gallery .ert-hero-gallery__inner .slick-slide, .ert-hero-gallery .ert-hero-gallery__inner .slick-track {
    height:100%
}

.ert-hero-gallery .slick-slide {
    position:relative
}

.ert-hero-gallery .ert-property-item {
    display: inline-block;
    max-width: 400px;
    width: 70%;
    overflow: hidden;
    position: absolute;
    right: 10%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform:translateY(-50%)
}

@media screen and (max-width: 700px) {
    .ert-hero-gallery .ert-property-item {
        margin-left: auto;
        margin-right: auto;
        right: 0;
        left:0
    }
}

.ert-hero-gallery .ert-property-item .erp-property-item__image-badges {
    display:inline-block
}

.ert-hero-gallery .ert-property-item .erp-property-item__image-badges a {
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    margin-right:-2px
}

@media screen and (max-width: 500px) {
    .ert-hero-gallery .ert-property-item .erp-property-item__image-badges {
        display:none
    }
}

.ert-hero-gallery .ert-property-item .ert-property-item__content, .ert-hero-gallery .ert-property-item .ert-property-item__footer {
    padding:10px 20px
}

.ert-hero-gallery .ert-property-item .ert-property-item__content .es-price, .ert-hero-gallery .ert-property-item .ert-property-item__footer .es-price {
    margin-right:20px
}

.ert-hero-gallery .ert-property-item .ert-property-item__content a, .ert-hero-gallery .ert-property-item .ert-property-item__content span, .ert-hero-gallery .ert-property-item .ert-property-item__footer a, .ert-hero-gallery .ert-property-item .ert-property-item__footer span {
    margin:10px 0
}

.ert-hero-gallery .ert-property-item .ert-property-item__content-wrap {
    width:100%
}

.ert-hero-gallery .es-price {
    font-size: 22px;
    color:#212121
}

.ert-hero-gallery .slick-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #212121;
    color: #fff;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .15);
    box-shadow: 0 2px 4px rgba(0, 0, 0, .15);
    border-radius: 50%;
    z-index: 1;
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    font-size:24px
}

.ert-hero-gallery .slick-arrow.slick-arrow-next {
    right:15px
}

.ert-hero-gallery .slick-arrow.slick-arrow-prev {
    left:15px
}

@media screen and (max-width: 700px) {
    .ert-hero-gallery .slick-arrow {
        width: 26px;
        height: 26px;
        line-height: 26px;
        font-size:16px
    }
}

@media screen and (max-width: 767px) {
    .ert-hero-gallery .ert-justify-content-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content:center !important
    }

    .ert-hero-gallery .col-auto {
        width:100%
    }
}

.ert-hero-gallery__pagination.slick-vertical {
    max-width: 100px;
    text-align: center;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform:translateY(-50%)
}

.ert-hero-gallery__pagination:not(.slick-vertical) {
    max-width: 70%;
    width: 100%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    position:absolute
}

.ert-hero-gallery__pagination:not(.slick-vertical) .slick-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform:translateY(-50%)
}

.ert-hero-gallery__pagination:not(.slick-vertical) .slick-arrow.fa-chevron-circle-left {
    left:-45px
}

.ert-hero-gallery__pagination:not(.slick-vertical) .slick-arrow.fa-chevron-circle-right {
    right:-45px
}

.ert-hero-gallery__pagination .slick-arrow {
    font-size: 35px;
    color: #fafafa;
    text-align: center;
    opacity:.4
}

.ert-hero-gallery__pagination .slick-arrow:hover {
    opacity: 1;
    cursor:pointer
}

.ert-hero-gallery__pagination .slick-slide {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: none !important;
    overflow:hidden
}

.ert-hero-gallery__pagination .slick-slide .ert-hero-gallery-pagination__slide {
    width: 100%;
    -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, .75);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, .75);
    overflow: hidden;
    border-style: solid;
    border-width: 2px;
    border-color:#dfdfdf
}

.ert-hero-gallery__pagination .slick-slide .ert-hero-gallery-pagination__slide img {
    width: 100%;
    height:auto
}

.ert-hero-gallery__pagination .slick-slide.slick-current {
    -webkit-box-shadow: none;
    box-shadow:none
}

@media screen and (max-width: 767px) {
    .ert-hero-gallery__pagination {
        bottom: 20px;
        top: initial;
        -webkit-transform: none;
        -ms-transform: none;
        transform:none
    }

    .ert-hero-gallery__pagination .slick-slide {
        margin:0 7px
    }

    .ert-hero-gallery__pagination .slick-list {
        margin:0 -7px
    }

    .ert-hero-gallery__pagination .slick-slider {
        width: 60%;
        margin: auto;
        left: 0;
        right:0
    }

    .ert-hero-gallery__pagination .slick-slider .slick-arrow {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform:translateY(-50%)
    }

    .ert-hero-gallery__pagination .slick-slider .slick-arrow.fa-chevron-circle-left {
        left:-40px
    }

    .ert-hero-gallery__pagination .slick-slider .slick-arrow.fa-chevron-circle-right {
        right:-40px
    }
}

.es-profile__tabs-wrapper ul .slick-arrow {
    padding: 14px 10px;
    border-bottom:0
}

.es-profile__tabs-wrapper ul li {
    border:0
}

.es-profile__tabs-wrapper ul li:hover {
    background:0 0
}

.es-profile__tabs-wrapper ul li:hover a {
    color:#212121
}

.es-profile__tabs-wrapper ul li a {
    border: 0;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    color: #b2b2b2;
    text-transform:uppercase
}

.es-profile__tabs-wrapper ul li a .fa {
    margin-right:7px
}

.es-profile__tabs-wrapper ul li.active {
    background: #212121;
    color: #fff;
    border:0
}

.es-profile__tabs-wrapper ul li.active a {
    border: 0;
    color:#fff
}

.es-profile__tabs-wrapper ul li:last-child {
    border:0
}

.es-profile__tab-content-wrapper {
    border:0
}

.es-profile__tab-content-wrapper .es-profile__tab-content {
    padding:40px 0
}

.es-profile__wrapper {
    font-family:Lato, sans-serif
}

.es-profile__wrapper > .es-message {
    margin-bottom:20px
}

.es-profile__wrapper h3.es-profile__tab-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color:#212121
}

.es-profile__wrapper .es-profile__subtitle {
    font-weight: 300;
    font-size: 12px;
    color:#b2b2b2
}

.es-message {
    line-height:18px
}

.ert-saved-search {
    margin-top: 15px;
    margin-bottom:15px
}

.ert-saved-search .es-msg-container .es-message {
    margin-top:10px
}

.ert-saved-search .ert-saved-search__inner {
    border: 1px solid #f2f2f2;
    padding:20px
}

.ert-saved-search .ert-saved-search__footer {
    border: 1px solid #f2f2f2;
    border-top: 1px solid #000;
    padding: 10px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap:wrap
}

.ert-saved-search .ert-saved-search__footer a {
    margin:15px 0
}

.ert-saved-search .ert-saved-search__delete {
    font-weight: 300;
    font-size: 14px;
    color: #b2b2b2;
    min-width:100px
}

.ert-saved-search .ert-saved-search__delete:hover {
    color:#000
}

.ert-saved-search h4 {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color:#212121
}

.ert-saved-search .ert-saved-search__fields {
    list-style: none;
    margin: 15px 0;
    padding:0
}

.ert-saved-search .ert-saved-search__fields li {
    margin:3px 0
}

.ert-saved-search .ert-saved-search__fields li span {
    font-weight: 300;
    font-size: 12px;
    line-height: 14px;
    color:#212121
}

.ert-saved-search .ert-saved-search__fields li b {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color:#212121
}

.es-manage-shortcode__wrap .ui-datepicker-trigger {
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform:translateY(-50%)
}

.ert-profile {
    border: 1px solid #f1f1f1;
    padding:30px
}

.es-field-address_components {
    display:none
}

.es-manage-shortcode__wrap .es-manage__wrap {
    display: block;
    padding: 0;
    border: 0;
    margin:25px 0 10px
}

.es-manage-shortcode__wrap .es-manage__wrap .es-manage-add__wrap {
    margin:0
}

.es-manage__wrap .es-manage-buttons__wrap {
    min-width: 320px;
    margin:0 -13px 20px
}

.es-manage__wrap .es-manage-buttons__wrap .es-checkbox {
    top:3px !important
}

.es-manage__wrap .es-manage-buttons__wrap button {
    margin:0 13px 8px 13px !important
}

.es-manage__wrap .es-manage-buttons__wrap i.fa {
    font-size: 20px;
    margin-right: 6px;
    position: relative;
    top:2px
}

.ert-404-container {
    text-align: center;
    background-image: url(../images/404.png);
    background-size: cover;
    padding:100px 20px
}

.ert-404-container .es-404-content {
    margin:25px 0 45px
}

.ert-404-container h2 {
    font-weight: 300;
    font-size: 75px;
    text-align: center;
    color: #000;
    text-transform:uppercase
}

.ert-404-container h3 {
    font-weight: 300;
    font-size: 40px;
    line-height: 48px;
    color:#000
}

.ert-404-container p {
    font-weight: 300;
    font-size: 16px;
    color:rgba(33, 33, 33, .8)
}

.ert-404-container .btn {
    max-width: 360px;
    width:90%
}

.ert-listing__wrapper {
    position:relative
}

.ert-post-item__content {
    padding:10px 20px 20px 20px
}

.ert-post-item__content .ert-date {
    margin-top:5px
}

.ert-post-item__image {
    padding: 10px;
    width: 100%;
    height:230px
}

.ert-post-item__image img {
    width: 100%;
    height:auto
}

.col-md-6.ert-post-item .ert-post-item__image {
    height:250px
}

.ert-post-item__footer {
    padding:10px 20px
}

.ert-post-item__footer .author {
    margin:10px 0
}

.ert-post-item__footer .author img {
    width: 40px;
    height:40px
}

.ert-post-item__footer .btn {
    margin:10px 0 10px auto
}

.ert-listing .ert-property-item__image-inner:before {
    content: "";
    padding: 35% 0;
    display:inline-block
}

.ert-listing .ert-property-types {
    display:block
}

.ert-listing.ert-layout-2_col .ert-property-item__image, .ert-listing.ert-layout-3_col .ert-property-item__image, .ert-listing.ert-layout-col .ert-property-item__image, .ert-listing.es-listings--grid .ert-property-item__image, .ert-listing.es-listings--grid-1 .ert-property-item__image, .ert-listing.es-listings--grid-2 .ert-property-item__image, .ert-listing.es-listings--grid-3 .ert-property-item__image, .ert-listing.es-listings--grid-4 .ert-property-item__image, .ert-listing.es-listings--grid-5 .ert-property-item__image, .ert-listing.es-listings--grid-6 .ert-property-item__image {
    padding:10px
}

.ert-listing.ert-layout-2_col .ert-post-item__content-wrap, .ert-listing.ert-layout-2_col .ert-property-item__content-wrap, .ert-listing.ert-layout-2_col .ert-property-item__image, .ert-listing.ert-layout-3_col .ert-post-item__content-wrap, .ert-listing.ert-layout-3_col .ert-property-item__content-wrap, .ert-listing.ert-layout-3_col .ert-property-item__image, .ert-listing.ert-layout-col .ert-post-item__content-wrap, .ert-listing.ert-layout-col .ert-property-item__content-wrap, .ert-listing.ert-layout-col .ert-property-item__image, .ert-listing.es-listings--grid .ert-post-item__content-wrap, .ert-listing.es-listings--grid .ert-property-item__content-wrap, .ert-listing.es-listings--grid .ert-property-item__image, .ert-listing.es-listings--grid-1 .ert-post-item__content-wrap, .ert-listing.es-listings--grid-1 .ert-property-item__content-wrap, .ert-listing.es-listings--grid-1 .ert-property-item__image, .ert-listing.es-listings--grid-2 .ert-post-item__content-wrap, .ert-listing.es-listings--grid-2 .ert-property-item__content-wrap, .ert-listing.es-listings--grid-2 .ert-property-item__image, .ert-listing.es-listings--grid-3 .ert-post-item__content-wrap, .ert-listing.es-listings--grid-3 .ert-property-item__content-wrap, .ert-listing.es-listings--grid-3 .ert-property-item__image, .ert-listing.es-listings--grid-4 .ert-post-item__content-wrap, .ert-listing.es-listings--grid-4 .ert-property-item__content-wrap, .ert-listing.es-listings--grid-4 .ert-property-item__image, .ert-listing.es-listings--grid-5 .ert-post-item__content-wrap, .ert-listing.es-listings--grid-5 .ert-property-item__content-wrap, .ert-listing.es-listings--grid-5 .ert-property-item__image, .ert-listing.es-listings--grid-6 .ert-post-item__content-wrap, .ert-listing.es-listings--grid-6 .ert-property-item__content-wrap, .ert-listing.es-listings--grid-6 .ert-property-item__image {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    width:100%
}

.ert-listing.ert-layout-2_col .ert-property-item__content, .ert-listing.ert-layout-3_col .ert-property-item__content, .ert-listing.ert-layout-col .ert-property-item__content, .ert-listing.es-listings--grid .ert-property-item__content, .ert-listing.es-listings--grid-1 .ert-property-item__content, .ert-listing.es-listings--grid-2 .ert-property-item__content, .ert-listing.es-listings--grid-3 .ert-property-item__content, .ert-listing.es-listings--grid-4 .ert-property-item__content, .ert-listing.es-listings--grid-5 .ert-property-item__content, .ert-listing.es-listings--grid-6 .ert-property-item__content {
    padding:10px 20px 20px 20px
}

.ert-listing.ert-layout-2_col .ert-excerpt, .ert-listing.ert-layout-3_col .ert-excerpt, .ert-listing.ert-layout-col .ert-excerpt, .ert-listing.es-listings--grid .ert-excerpt, .ert-listing.es-listings--grid-1 .ert-excerpt, .ert-listing.es-listings--grid-2 .ert-excerpt, .ert-listing.es-listings--grid-3 .ert-excerpt, .ert-listing.es-listings--grid-4 .ert-excerpt, .ert-listing.es-listings--grid-5 .ert-excerpt, .ert-listing.es-listings--grid-6 .ert-excerpt {
    display:none
}

.ert-listing.ert-layout-2_col .ert-post-item__footer, .ert-listing.ert-layout-2_col .ert-property-item__footer, .ert-listing.ert-layout-3_col .ert-post-item__footer, .ert-listing.ert-layout-3_col .ert-property-item__footer, .ert-listing.ert-layout-col .ert-post-item__footer, .ert-listing.ert-layout-col .ert-property-item__footer, .ert-listing.es-listings--grid .ert-post-item__footer, .ert-listing.es-listings--grid .ert-property-item__footer, .ert-listing.es-listings--grid-1 .ert-post-item__footer, .ert-listing.es-listings--grid-1 .ert-property-item__footer, .ert-listing.es-listings--grid-2 .ert-post-item__footer, .ert-listing.es-listings--grid-2 .ert-property-item__footer, .ert-listing.es-listings--grid-3 .ert-post-item__footer, .ert-listing.es-listings--grid-3 .ert-property-item__footer, .ert-listing.es-listings--grid-4 .ert-post-item__footer, .ert-listing.es-listings--grid-4 .ert-property-item__footer, .ert-listing.es-listings--grid-5 .ert-post-item__footer, .ert-listing.es-listings--grid-5 .ert-property-item__footer, .ert-listing.es-listings--grid-6 .ert-post-item__footer, .ert-listing.es-listings--grid-6 .ert-property-item__footer {
    padding:10px 20px
}

.ert-listing.ert-layout-2_col .ert-post-item__footer .es-map-view-link, .ert-listing.ert-layout-2_col .ert-property-item__footer .es-map-view-link, .ert-listing.ert-layout-3_col .ert-post-item__footer .es-map-view-link, .ert-listing.ert-layout-3_col .ert-property-item__footer .es-map-view-link, .ert-listing.ert-layout-col .ert-post-item__footer .es-map-view-link, .ert-listing.ert-layout-col .ert-property-item__footer .es-map-view-link, .ert-listing.es-listings--grid .ert-post-item__footer .es-map-view-link, .ert-listing.es-listings--grid .ert-property-item__footer .es-map-view-link, .ert-listing.es-listings--grid-1 .ert-post-item__footer .es-map-view-link, .ert-listing.es-listings--grid-1 .ert-property-item__footer .es-map-view-link, .ert-listing.es-listings--grid-2 .ert-post-item__footer .es-map-view-link, .ert-listing.es-listings--grid-2 .ert-property-item__footer .es-map-view-link, .ert-listing.es-listings--grid-3 .ert-post-item__footer .es-map-view-link, .ert-listing.es-listings--grid-3 .ert-property-item__footer .es-map-view-link, .ert-listing.es-listings--grid-4 .ert-post-item__footer .es-map-view-link, .ert-listing.es-listings--grid-4 .ert-property-item__footer .es-map-view-link, .ert-listing.es-listings--grid-5 .ert-post-item__footer .es-map-view-link, .ert-listing.es-listings--grid-5 .ert-property-item__footer .es-map-view-link, .ert-listing.es-listings--grid-6 .ert-post-item__footer .es-map-view-link, .ert-listing.es-listings--grid-6 .ert-property-item__footer .es-map-view-link {
    margin:5px 0
}

.ert-listing.ert-layout-2_col .ert-post-item__footer .btn, .ert-listing.ert-layout-2_col .ert-property-item__footer .btn, .ert-listing.ert-layout-3_col .ert-post-item__footer .btn, .ert-listing.ert-layout-3_col .ert-property-item__footer .btn, .ert-listing.ert-layout-col .ert-post-item__footer .btn, .ert-listing.ert-layout-col .ert-property-item__footer .btn, .ert-listing.es-listings--grid .ert-post-item__footer .btn, .ert-listing.es-listings--grid .ert-property-item__footer .btn, .ert-listing.es-listings--grid-1 .ert-post-item__footer .btn, .ert-listing.es-listings--grid-1 .ert-property-item__footer .btn, .ert-listing.es-listings--grid-2 .ert-post-item__footer .btn, .ert-listing.es-listings--grid-2 .ert-property-item__footer .btn, .ert-listing.es-listings--grid-3 .ert-post-item__footer .btn, .ert-listing.es-listings--grid-3 .ert-property-item__footer .btn, .ert-listing.es-listings--grid-4 .ert-post-item__footer .btn, .ert-listing.es-listings--grid-4 .ert-property-item__footer .btn, .ert-listing.es-listings--grid-5 .ert-post-item__footer .btn, .ert-listing.es-listings--grid-5 .ert-property-item__footer .btn, .ert-listing.es-listings--grid-6 .ert-post-item__footer .btn, .ert-listing.es-listings--grid-6 .ert-property-item__footer .btn {
    margin:10px 0 10px auto
}

.ert-listing.ert-layout-list .ert-property-item__inner, .ert-listing.es-listings--list .ert-property-item__inner {
    padding:5px
}

.ert-listing.ert-layout-list .ert-post-item__content-wrap, .ert-listing.ert-layout-list .ert-property-item__content-wrap, .ert-listing.es-listings--list .ert-post-item__content-wrap, .ert-listing.es-listings--list .ert-property-item__content-wrap {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 55%;
    flex: 1 0 55%;
    padding:15px
}

.ert-listing.ert-layout-list .ert-post-item__content-wrap .ert-property-item__content, .ert-listing.ert-layout-list .ert-property-item__content-wrap .ert-property-item__content, .ert-listing.es-listings--list .ert-post-item__content-wrap .ert-property-item__content, .ert-listing.es-listings--list .ert-property-item__content-wrap .ert-property-item__content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    padding-bottom:14px
}

.ert-listing.ert-layout-list .ert-post-item__content-wrap .ert-post-item__footer, .ert-listing.ert-layout-list .ert-post-item__content-wrap .ert-property-item__content, .ert-listing.ert-layout-list .ert-post-item__content-wrap .ert-property-item__footer, .ert-listing.ert-layout-list .ert-property-item__content-wrap .ert-post-item__footer, .ert-listing.ert-layout-list .ert-property-item__content-wrap .ert-property-item__content, .ert-listing.ert-layout-list .ert-property-item__content-wrap .ert-property-item__footer, .ert-listing.es-listings--list .ert-post-item__content-wrap .ert-post-item__footer, .ert-listing.es-listings--list .ert-post-item__content-wrap .ert-property-item__content, .ert-listing.es-listings--list .ert-post-item__content-wrap .ert-property-item__footer, .ert-listing.es-listings--list .ert-property-item__content-wrap .ert-post-item__footer, .ert-listing.es-listings--list .ert-property-item__content-wrap .ert-property-item__content, .ert-listing.es-listings--list .ert-property-item__content-wrap .ert-property-item__footer {
    width:100%
}

.ert-listing.ert-layout-list .ert-post-item__content-wrap .ert-post-item__footer, .ert-listing.ert-layout-list .ert-post-item__content-wrap .ert-property-item__footer, .ert-listing.ert-layout-list .ert-property-item__content-wrap .ert-post-item__footer, .ert-listing.ert-layout-list .ert-property-item__content-wrap .ert-property-item__footer, .ert-listing.es-listings--list .ert-post-item__content-wrap .ert-post-item__footer, .ert-listing.es-listings--list .ert-post-item__content-wrap .ert-property-item__footer, .ert-listing.es-listings--list .ert-property-item__content-wrap .ert-post-item__footer, .ert-listing.es-listings--list .ert-property-item__content-wrap .ert-property-item__footer {
    justify-self: flex-end;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    padding-top:20px
}

.ert-listing.ert-layout-list .ert-post-item__content-wrap .ert-property-item__footer .btn, .ert-listing.ert-layout-list .ert-property-item__content-wrap .ert-property-item__footer .btn, .ert-listing.es-listings--list .ert-post-item__content-wrap .ert-property-item__footer .btn, .ert-listing.es-listings--list .ert-property-item__content-wrap .ert-property-item__footer .btn {
    margin-left:auto
}

.ert-listing.ert-layout-list .ert-property-item__image, .ert-listing.es-listings--list .ert-property-item__image {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 45%;
    flex: 1 0 45%;
    min-width: 270px;
    padding:15px
}

.ert-listing.ert-layout-list .ert-property-item__image .ert-property-item__image-inner, .ert-listing.es-listings--list .ert-property-item__image .ert-property-item__image-inner {
    height:100%
}

.ert-listing.ert-layout-list .ert-property-item__image .ert-property-item__image-inner img, .ert-listing.es-listings--list .ert-property-item__image .ert-property-item__image-inner img {
    height:100%
}

.ert-post-item__content-wrap {
    width:100%
}

.ert-property-item__fields {
    margin-top: 14px;
    margin-bottom:-7px
}

.ert-property-item__fields .col-12, .ert-property-item__fields .col-auto {
    max-width: 160px;
    font-weight: 400;
    line-height: normal;
    font-size: 12px;
    margin-bottom: 7px;
    color:#212121
}

.ert-property-item__fields .col-12 > *, .ert-property-item__fields .col-auto > * {
    vertical-align:middle
}

.ert-property-item__fields .col-12 .es-meta-icon, .ert-property-item__fields .col-12 svg, .ert-property-item__fields .col-auto .es-meta-icon, .ert-property-item__fields .col-auto svg {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 3px;
    display:inline-block
}

.ert-property-item__fields .col-12 .es-meta-icon, .ert-property-item__fields .col-auto .es-meta-icon {
    background-size: contain;
    background-repeat: no-repeat;
    background-position:center
}

.ert-property-item.ert-property-item--minified .erp-property-item__image-badges .badge {
    margin-bottom: 5px;
    font-size: 9px;
    padding:5px 10px
}

.ert-property-item.ert-property-item--minified .ert-property-item__image .ert-property-item__image-price .es-price {
    font-size:16px
}

.ert-property-item.ert-property-item--minified .ert-property-item__image .ert-property-item__image-price .es-price-note {
    font-weight: 700;
    font-size:10px
}

.ert-post-item, .ert-property-item {
    padding-top: 15px;
    padding-bottom:15px
}

.ert-post-item .ert-post-item__inner, .ert-post-item .ert-property-item__inner, .ert-property-item .ert-post-item__inner, .ert-property-item .ert-property-item__inner {
    border: .75px solid #f2f2f2;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap:wrap
}

.ert-post-item .ert-post-item__inner:hover, .ert-post-item .ert-property-item__inner:hover, .ert-property-item .ert-post-item__inner:hover, .ert-property-item .ert-property-item__inner:hover {
    -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
    box-shadow:0 3px 10px rgba(0, 0, 0, .1)
}

.ert-post-item .ert-property-item__image .js-es-wishlist-button span, .ert-property-item .ert-property-item__image .js-es-wishlist-button span {
    display:none
}

.ert-post-item .ert-property-item__image.ert-no-image .ert-property-item__image-price .es-price, .ert-post-item .ert-property-item__image.ert-no-image .ert-property-item__image-price .es-price-note, .ert-property-item .ert-property-item__image.ert-no-image .ert-property-item__image-price .es-price, .ert-property-item .ert-property-item__image.ert-no-image .ert-property-item__image-price .es-price-note {
    color:#212121
}

.ert-post-item .ert-property-item__image.ert-no-image .ert-property-item__image-overlay, .ert-property-item .ert-property-item__image.ert-no-image .ert-property-item__image-overlay {
    display:none
}

.ert-post-item .ert-property-item__image .ert-property-item__image-inner, .ert-property-item .ert-property-item__image .ert-property-item__image-inner {
    position:relative
}

.ert-post-item .ert-property-item__image .ert-property-item__image-inner .ert-property-item__image-overlay, .ert-property-item .ert-property-item__image .ert-property-item__image-inner .ert-property-item__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: -webkit-gradient(linear, left bottom, left top, from(#171717), color-stop(.01%, #212121), color-stop(48.56%, rgba(239, 239, 239, 0)), color-stop(60.78%, rgba(239, 239, 239, 0)), color-stop(61.46%, rgba(239, 239, 239, 0)));
    background: -o-linear-gradient(bottom, #171717 0, #212121 .01%, rgba(239, 239, 239, 0) 48.56%, rgba(239, 239, 239, 0) 60.78%, rgba(239, 239, 239, 0) 61.46%);
    background: linear-gradient(360deg, #171717 0, #212121 .01%, rgba(239, 239, 239, 0) 48.56%, rgba(239, 239, 239, 0) 60.78%, rgba(239, 239, 239, 0) 61.46%);
    background-blend-mode: darken;
    opacity:.9
}

.ert-post-item .ert-property-item__image .ert-property-item__image-price, .ert-property-item .ert-property-item__image .ert-property-item__image-price {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index:1
}

.ert-post-item .ert-property-item__image .ert-property-item__image-price .es-price, .ert-property-item .ert-property-item__image .ert-property-item__image-price .es-price {
    font-size: 28px;
    color: #fff;
    font-weight: 400;
    background: 0 0 !important;
    line-height: 1;
    display: block;
    text-align:left
}

.ert-post-item .ert-property-item__image .ert-property-item__image-price .es-price-note, .ert-property-item .ert-property-item__image .ert-property-item__image-price .es-price-note {
    line-height: normal;
    font-size: 12px;
    color:#fff
}

.ert-post-item .ert-property-item__image .ert-property-control, .ert-property-item .ert-property-item__image .ert-property-control {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index:1
}

.ert-post-item .ert-property-item__image .ert-property-control a, .ert-property-item .ert-property-item__image .ert-property-control a {
    margin-left:4px
}

.ert-post-item .ert-property-item__image img, .ert-property-item .ert-property-item__image img {
    width: 100%;
    height: auto;
    border-top-left-radius: 3px;
    border-top-right-radius:3px
}

.ert-post-item .ert-property-item__image .erp-property-item__image-badges, .ert-property-item .ert-property-item__image .erp-property-item__image-badges {
    position: absolute;
    z-index:1
}

.ert-post-item .ert-property-item__image .erp-property-item__image-badges.erp-property-item__image-badges--left-top, .ert-property-item .ert-property-item__image .erp-property-item__image-badges.erp-property-item__image-badges--left-top {
    left: 10px;
    top:10px
}

.ert-post-item .ert-property-item__image .erp-property-item__image-badges.erp-property-item__image-badges--right-top, .ert-property-item .ert-property-item__image .erp-property-item__image-badges.erp-property-item__image-badges--right-top {
    right: 10px;
    top:10px
}

.ert-post-item .ert-property-item__image .erp-property-item__image-badges .badge, .ert-property-item .ert-property-item__image .erp-property-item__image-badges .badge {
    display: block;
    margin-bottom:10px
}

.ert-post-item .ert-property-item__image .erp-property-item__image-badges .badge:last-child, .ert-property-item .ert-property-item__image .erp-property-item__image-badges .badge:last-child {
    margin-bottom:0
}

.ert-post-item .ert-post-item__content, .ert-post-item .ert-property-item__content, .ert-property-item .ert-post-item__content, .ert-property-item .ert-property-item__content {
    border-bottom:.75px solid #000
}

.ert-post-item .ert-post-item__content h3, .ert-post-item .ert-property-item__content h3, .ert-property-item .ert-post-item__content h3, .ert-property-item .ert-property-item__content h3 {
    margin-bottom:0
}

.ert-post-item .ert-post-item__content .ert-property-types, .ert-post-item .ert-property-item__content .ert-property-types, .ert-property-item .ert-post-item__content .ert-property-types, .ert-property-item .ert-property-item__content .ert-property-types {
    margin-top:14px
}

.ert-post-item .ert-post-item__content .ert-excerpt, .ert-post-item .ert-property-item__content .ert-excerpt, .ert-property-item .ert-post-item__content .ert-excerpt, .ert-property-item .ert-property-item__content .ert-excerpt {
    font-weight: 300;
    line-height: 20px;
    font-size: 14px;
    margin-top: 14px;
    color:#000
}

.ert-post-item .ert-post-item__content .ert-excerpt p, .ert-post-item .ert-property-item__content .ert-excerpt p, .ert-property-item .ert-post-item__content .ert-excerpt p, .ert-property-item .ert-property-item__content .ert-excerpt p {
    margin:0
}

.ert-post-item .ert-post-item__footer, .ert-post-item .ert-property-item__footer, .ert-property-item .ert-post-item__footer, .ert-property-item .ert-property-item__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap:wrap
}

.es-map-view-link {
    font-weight: 300;
    font-size: 14px;
    color:#00588d
}

.ert-address, .ert-date {
    font-weight: 300;
    font-size: 12px;
    color:#b2b2b2
}

.ert-property-types {
    font-weight: 400;
    font-size: 14px;
    color:#727272
}

.ert-filter__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width:100%
}

.ert-filter__inner .ert-filter__sort {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width:305px
}

.ert-filter__inner .ert-filter__sort .dropdown-menu.show {
    max-width: 208px;
    max-width:13rem
}

.ert-filter__inner .ert-filter__layout, .ert-filter__inner .ert-filter__sort {
    margin:5px 0
}

.ert-filter__inner .ert-filter__layout a, .ert-filter__inner .ert-filter__layout ul, .ert-filter__inner .ert-filter__sort a, .ert-filter__inner .ert-filter__sort ul {
    margin: 5px 0;
    display:inline-block
}

.ert-filter__inner .ert-filter__layout {
    margin:0 -7px
}

.ert-filter__inner .ert-filter__layout a {
    font-size: 20px;
    margin:7px
}

.ert-filter__inner .ert-filter__categories {
    display: inline-block;
    margin: 0;
    padding:0
}

.ert-filter__inner .ert-filter__categories li {
    display:inline-block
}

.ert-filter__inner .ert-filter__categories li:not(:last-child):after {
    height: 10px;
    width: 1px;
    display: inline-block;
    background: #000;
    content: "";
    margin: 0 20px;
    position: relative;
    top:1px
}

.ert-filter__inner .ert-filter__categories li a {
    font-weight: 400;
    font-size: 16px;
    color:#000000
}

#sortByDrop {
    text-transform: none;
    font-weight: 300;
    font-size: 14px;
    background: 0 0;
    padding: 0;
    margin: 5px 20px 5px 0;
    border:0
}

[aria-labelledby=sortByDrop] .dropdown-item {
    font-weight: 300;
    font-size:14px
}

.es-powered {
    display:none
}

#es-map-popup {
    position: relative;
    width: auto;
    max-width: 600px;
    margin:20px auto
}

#es-map-popup .mfp-close {
    display:none
}

#es-map-popup #es-map-inner {
    min-height:300px
}

body:not(.single-properties) .es-gallery {
    margin-bottom:20px
}

.es-gallery {
    width: 100%;
    min-width: 100%;
    display: block;
    margin-bottom: 0;
    position:relative
}

.es-gallery .es-control-wrap {
    position: absolute;
    top: 24px;
    right: 20px;
    z-index:1
}

.es-gallery .es-control-wrap a {
    display: inline-block;
    text-align: center;
    background: #fff;
    width: 35.2px;
    width: 2.2rem;
    height: 35.2px;
    height: 2.2rem;
    vertical-align: middle;
    line-height: 35.2px;
    line-height: 2.2rem;
    margin:0 4px
}

.es-gallery .slick-slide {
    background-size: cover;
    background-position:center
}

.es-gallery .ert-gallery-image, .es-gallery .ert-gallery-image * {
    min-width: 0;
    min-height:0
}

.es-gallery .ert-gallery-image .slick-arrow {
    position:absolute
}

.es-gallery .ert-gallery-image .slick-arrow {
    cursor: pointer;
    font-size: 24px;
    color: #fff;
    background: #212121;
    display: block;
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    border-radius:50%
}

.es-gallery .ert-gallery-image .slick-arrow.slick-next {
    right:20px
}

.es-gallery .ert-gallery-image .slick-arrow.slick-prev {
    left:20px
}

.es-gallery .ert-gallery-image .slick-slide {
    position:relative
}

.es-gallery .ert-gallery-image .slick-slide a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:100%
}

.es-gallery .ert-gallery-image .slick-slide:before {
    content: "";
    padding: 30% 0;
    display:inline-block
}

.es-gallery .slick-slide img {
    width: 100%;
    height:auto
}

.es-gallery .es-gallery-image-pager-wrap {
    margin-top:30px
}

.es-gallery .es-gallery-image-pager-wrap .slick-list {
    margin:0 -15px
}

.es-gallery .es-gallery-image-pager-wrap .slick-slide {
    opacity: .65;
    margin:0 15px
}

.es-gallery .es-gallery-image-pager-wrap .slick-slide:before {
    content: "";
    padding: 35% 0;
    display:inline-block
}

.es-gallery .es-gallery-image-pager-wrap .slick-slide.slick-current {
    opacity:1
}

.es-basic-info table {
    border-collapse: collapse;
    border-style: hidden;
    width:100%
}

.es-basic-info table td {
    border: .75px solid #212121;
    width:25%
}

.es-basic-info table td .label {
    text-align: center;
    display: block;
    font-weight: 300;
    line-height: normal;
    font-size: 15px;
    color: #757575;
    padding-top:20px
}

.es-basic-info table td .content {
    text-align: center;
    display: block;
    font-weight: 500;
    line-height: normal;
    font-size: 17px;
    padding: 20px 0;
    color:#212
}

@media screen and (max-width: 880px) {
    .es-basic-info table tr {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        display: -webkit-box;
        display: -ms-flexbox;
        display:flex
    }

    .es-basic-info table td {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
        flex:1 0 50%
    }
}

.es-dymanic-content {
    font-size: 12px;
    margin-top: 32px;
    margin-top: 2rem;
    line-height: 20.8px;
    line-height:1.3rem
}

.es-tabbed-item {
    padding: 20px;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight:300
}

.es-tabbed-item iframe, .es-tabbed-item video {
    width:100%
}

.es-tabbed-item.documents .es-property-single-fields {
    margin:0 !important
}

.es-tabbed-item.documents .es-property-single-fields li {
    margin:5px 0 !important
}

.es-tabbed-item.features h3 {
    margin-bottom:0
}

.es-tabbed-item.es-description {
    line-height: 1.6;
    color:#000
}

.es-tabbed-item.es-agent {
    padding:0
}

.es-tabbed-item .ert-agent {
    margin-bottom:0
}

.es-tabbed-item h3 {
    font-weight: 300;
    line-height: normal;
    font-size: 40px;
    margin-bottom: 15px;
    color:#000
}

.es-tabbed-item:nth-child(odd) {
    border:1px solid #f1f1f1
}

.es-tabbed-item:nth-child(odd)#es-agent {
    padding:20px
}

.es-tabbed-item:last-child {
    margin-bottom:0
}

body .es-appointments {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap:.7rem
}

body .es-appointments li {
    font-size: 11.2px;
    font-size: .7rem;
    margin:0
}

body .es-appointments li b {
    margin-right: 12.8px;
    margin-right:.8rem
}

[data-class=es-property_section--features--show-all] {
    display:none
}

.es-property-single-fields li {
    font-size: 16px;
    font-size: 1rem;
    /* word-break:break-all

     */
}

.es-tabbed-item .es-property-single-fields {
    margin:0 -10px !important
}

.es-tabbed-item .es-property-single-fields li {
    margin: 5px 10px !important;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 33%;
    flex: 1 0 33%
}

.es-tabbed-item .es-property-single-fields .es-property-field--es_amenity, .es-tabbed-item .es-property-single-fields .es-property-field--es_feature {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex:1 0 100%
}

.es-tabbed-item .es-property-single-fields .es-property-field--es_amenity .es-property-field__terms, .es-tabbed-item .es-property-single-fields .es-property-field--es_feature .es-property-field__terms {
    display: grid;
    grid-column-gap: 30px;
    grid-row-gap: 15px;
    grid-template-columns:repeat(auto-fill, minmax(200px, 1fr))
}

.es-tabbed-item .es-property-single-fields .es-property-field--es_amenity a .es-icon, .es-tabbed-item .es-property-single-fields .es-property-field--es_feature a .es-icon {
    margin-right:10px
}

.es-tabbed-item .es-property-single-fields .es-property-field--es_amenity .es-property-field__label, .es-tabbed-item .es-property-single-fields .es-property-field--es_feature .es-property-field__label {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: lighter;
    margin: 32px 0 24px;
    margin: 2rem 0 1.5rem;
    display:block
}

.es-tabbed-item .es-property-single-fields .es-property-field--documents, .es-tabbed-item .es-property-single-fields .es-property-field--floor_plans, .es-tabbed-item .es-property-single-fields .es-property-field--post_content, .es-tabbed-item .es-property-single-fields .es-property-field--rooms {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 0 100% !important;
    flex:1 0 100% !important
}

.es-tabbed-item .es-property-single-fields .es-property-field--documents .es-property-field__label, .es-tabbed-item .es-property-single-fields .es-property-field--floor_plans .es-property-field__label, .es-tabbed-item .es-property-single-fields .es-property-field--post_content .es-property-field__label, .es-tabbed-item .es-property-single-fields .es-property-field--rooms .es-property-field__label {
    display:none
}

.es-tabbed-item .es-property-single-fields .es-property-field .es-documents {
    padding:7px
}

.es-tabbed-item .es-property-single-fields .es-property-field__value .es-table {
    width:100%
}

.es-features-list h3 {
    margin-bottom:10px
}

.es-features-list .fa {
    color:#fff
}

.es-features-list .circle {
    background: #141414;
    width: 23px;
    height: 23px;
    text-align: center;
    line-height: 23px;
    display: inline-block;
    border-radius:50%
}

.es-features-list .ert-feature-label {
    margin-left:5px
}

.es-features-list li {
    margin:10px 0
}

.es-property__content {
    margin-top:100px
}

.property-address {
    font-weight: 300;
    font-size: 16px;
    color:#b2b2b2
}

.entry-header.ert-property-header {
    margin:20px 0 15px
}

.entry-header.ert-property-header .entry-title {
    margin:0
}

.entry-header.ert-property-header .property-address {
    margin-top: 8px;
    display:block
}

.entry-header.ert-property-header .property-price-note {
    font-weight: 300;
    font-size: 13px;
    line-height: 26px;
    color: #434343;
    text-align:right
}

.entry-header.ert-property-header .badge {
    margin:5px 10px 5px 0
}

.entry-header.ert-property-header .badge-light {
    background: #fff;
    border: 1px solid rgba(178, 178, 178, .2);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 2px;
    padding:6px 15px
}

.entry-header.ert-property-header .badge-light:hover {
    border: 1px solid rgba(178, 178, 178, .7);
    background-color:transparent
}

.entry-header.ert-property-header .badge-container {
    margin-top:10px
}

.entry-header.ert-property-header .es-price {
    background: 0 0;
    font-weight: 400;
    font-size: 28px;
    line-height: normal;
    text-align: right;
    color:#212121
}

.ert-property-buttons {
    margin:0 -10px
}

.ert-property-buttons a {
    font-weight: 300;
    font-size: 14px;
    color: #565656;
    text-decoration: none;
    display: inline-block;
    margin:0 10px
}

.ert-property-buttons a .ert-icon {
    margin-right: 5px;
    font-size:16px
}

.ert-property-buttons a .fa {
    font-size: 16px;
    color:#565656
}

.ert-property-buttons a:hover, .ert-property-buttons a:hover .fa {
    color: #000;
    text-decoration:none
}

.ert-property__price-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content:space-between
}

.ert-share-popup {
    position: relative;
    background: #fff;
    padding: 50px;
    width: auto;
    max-width: 350px;
    margin: 20px auto;
    text-align:center
}

.ert-share-popup .page-title {
    margin-bottom:20px
}

.ert-share-popup a {
    font-size: 25px;
    margin: 0 5px;
    opacity:.6
}

.ert-share-popup a:hover {
    opacity: 1;
    text-decoration:none
}

.ert-property__header-bottom {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items:center
}

@media screen and (max-width: 767px) {
    .ert-property__price {
        margin-top:15px
    }

    .ert-property-buttons {
        margin-top: 10px;
        margin-bottom:5px
    }

    .property-price-note {
        text-align:left !important
    }
}

.es-property-single-fields {
    list-style: none;
    margin: 0 -15px !important;
    padding: 0 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap:wrap
}

.es-property-single-fields .es-table-wrap {
    padding-bottom: 0;
    margin-bottom:0
}

.es-property-single-fields li {
    font-weight: 400;
    color: #212121;
    width: auto !important;
    margin: 5px 15px !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33%;
    flex: 0 0 33%;
    /* word-break:break-all

     */
}

.es-property-single-fields li strong {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color:#212121
}

.es-property-single-fields li img {
    height:auto
}

.es-property-single-fields .es-file__wrap {
    margin-top: 10px;
    padding:10px 10px 5px 10px
}

.es-property-single-fields .es-file__wrap .es-file__label b {
    font-weight:300 !important
}

#es-video iframe {
    width:100%
}

.es-entity-sections #request_form input {
    padding-left: 10px;
    padding-right:10px
}

.es-entity-sections #request_form .es-field__code .select2-selection__rendered img {
    margin-left:10px
}

.author {
    font-weight: 300;
    font-size: 12px;
    color: #b2b2b2;
    margin:20px 0
}

.author img {
    border-radius: 50%;
    margin-right: 5px;
    width: 40px;
    height: 40px;
    -o-object-fit: cover;
    object-fit:cover
}

.delimiter {
    display: inline-block;
    width: 1px;
    height: 10px;
    background: #000;
    margin:0 10px
}

.ert-post__featured-image {
    width:100%
}

.ert-post__featured-image img {
    width: 100%;
    height:auto
}

.single-post .entry-content {
    border: 1px solid #f1f1f1;
    padding: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
    color:#000
}

.single-post .entry-content img {
    max-width: 100%;
    height:auto
}

.single-post .content {
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
    margin-bottom:20px
}

.entry-content blockquote, .es-tabbed-item blockquote {
    border-left: 2px solid #212121;
    padding-left:10px
}

.entry-content p:last-child {
    margin-bottom:0
}

#comments {
    margin-top:60px
}

#comments .comment {
    margin:35px 0
}

#comments .comment .author-meta {
    -ms-flex-item-align: center;
    align-self:center
}

#comments .comment .author-meta .comment-date {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    font-weight: 300;
    font-size: 12px;
    color: #b2b2b2;
    margin-top:5px
}

#comments .comment .author-meta .author-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display:flex
}

#comments .comment .author-meta .ert-rating {
    margin-top:-1px
}

#comments .comment .author-meta .comment-author {
    margin-right:15px
}

.comment-reply-title, .comments-title {
    font-weight: 300;
    font-size: 40px;
    color:#000
}

.comment-text {
    margin-top:20px
}

#commentform #cancel-comment-reply-link, #commentform .comment-notes, #commentform .logged-in-as {
    font-size:13px
}

.comment-text, .comment-text p {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    color:#000
}

.comment-author {
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    color:#212121
}

.comment-list {
    list-style: none;
    margin: 0;
    padding:0
}

.comment-list li {
    list-style:none
}

.comment-author-img {
    border-radius:50%
}

.ert-post-tags {
    font-size: 14px;
    color: #ababab;
    margin-bottom:10px
}

.ert-post-tags .fa {
    margin-right:5px
}

.ert-post-tags a, .ert-post-tags i.fa {
    font-size: 14px;
    color:#ababab
}

.ert-post-share {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 300;
    font-size: 12px;
    color:#141414
}

.ert-post-share .ert-social {
    margin-left: 10px;
    white-space:nowrap
}

.ert-post__bottom > div {
    margin-top:20px
}

.ert-post__pagination {
    background: #212121;
    padding: 25px 0;
    margin-bottom: -50px;
    margin-top: 50px;
    position:relative
}

.ert-post__pagination .pagination-item {
    padding-top: 25px;
    padding-bottom:25px
}

@media screen and (max-width: 575px) {
    .ert-post__pagination .pagination-item .row {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content:center !important
    }

    .ert-post__pagination .pagination-item .pull-right {
        float:none
    }
}

.ert-post__pagination:after {
    content: "";
    display: block;
    width: 1px;
    height: 100px;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform:translateY(-50%)
}

@media screen and (max-width: 575px) {
    .ert-post__pagination:after {
        display:none
    }
}

.ert-post__pagination .sup-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    display: block;
    color: #fff;
    margin-bottom:20px
}

.ert-post__pagination h4 a {
    font-weight: 300;
    font-size: 16px;
    line-height: 17px;
    color:#ececec
}

.ert-scrolled-content {
    overflow-y: scroll;
    height:90vh
}

@media screen and (max-width: 991px) {
    .ert-scrolled-content {
        overflow-y: visible;
        height:auto
    }
}

.ert-scrolled-content .ert-search {
    -webkit-box-shadow: none;
    box-shadow:none
}

.ert-search-map {
    padding:0
}

.ert-search-map .es-widget-map-wrap {
    padding:0
}

.ert-search-map .es-properties-map {
    height:90vh !important
}

.es-widget-map-wrap .gm-style-iw.gm-style-iw-c {
    background: 0 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 14px;
    border-radius:0
}

.es-widget-map-wrap .gm-style-iw.gm-style-iw-c .gm-style-iw-d {
    overflow: visible !important;
    background:0 0
}

.es-widget-map-wrap .es-map-vertical .ert-property-item__image {
    padding-bottom:0
}

.es-widget-map-wrap .es-map-vertical .ert-property-item__image .ert-property-control {
    display:none
}

.es-widget-map-wrap .es-map-vertical .ert-property-item__image .ert-property-item__image-price .es-price {
    font-size:18px
}

.es-widget-map-wrap .es-map-vertical .ert-property-item__image .badge {
    font-size: 10px;
    padding:7px
}

.es-widget-map-wrap .es-map-vertical .ert-property-item__content {
    padding: 10px !important;
    border-bottom:none
}

.es-widget-map-wrap .es-map-vertical h3 {
    font-size:14px
}

.es-widget-map-wrap .es-map-vertical .ert-property-item__fields {
    display:none
}

.es-widget-map-wrap .es-map-vertical .gm-style-iw {
    min-width:220px
}

.es-widget-map-wrap .es-map-vertical .gm-style-iw .gm-style-iw-d {
    max-width: 220px;
    min-width:220px
}

.es-widget-map-wrap .ert-property-item__content {
    border:0
}

.es-widget-map-wrap .ert-property-item {
    padding-right:15px
}

.es-widget-map-wrap .gm-style-iw-t:after {
    content:initial
}

.archive .page-title {
    margin:50px 0 70px
}

.es_calc_container {
    font-family:Lato, sans-serif
}

.es_calc_form {
    border-radius:0 !important
}

.es_calc_form .es_calc_option input {
    border:0 !important
}

.es_calc_form input.es_calc_submit {
    font-size: 12px;
    font-weight: 500;
    padding: 9px 28px;
    text-transform: uppercase;
    line-height: initial;
    height:initial
}

.heading-styled {
    font-weight: 300;
    line-height: normal;
    color: #fff;
    text-align: center;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow:hidden
}

.heading-styled:after, .heading-styled:before {
    content: "";
    border-top: 1px solid #fff;
    margin: 0 20px 0 0;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 20px;
    flex:1 0 20px
}

.heading-styled:after {
    margin:0 0 0 20px
}

.ert-contact-form {
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, .15);
    box-shadow:0 0 30px rgba(0, 0, 0, .15)
}

.ert-contact-form p {
    margin:0
}

.ert-contact-form .widget-title {
    font-weight: 300;
    line-height: 30px;
    font-size: 26px !important;
    color: #fbfbfb !important;
    position: relative;
    margin: 0;
    padding:20px 0
}

.ert-contact-form .widget-title:after, .ert-contact-form .widget-title:before {
    border-top:1px solid #fff !important
}

.ert-contact-form .wpcf7-form {
    padding:30px
}

.ert-contact-form .wpcf7-form-control-wrap {
    display:block
}

.ert-contact-form .ajax-loader {
    display:none !important
}

.ert-contact-form .ajax-loader.is-active {
    display:inline-block !important
}

.ert-contact-form .wpcf7-not-valid-tip {
    font-weight: 300;
    font-size: 13px;
    margin-top:5px
}

.ert-contact-form .wpcf7-response-output {
    margin: 20px 0 0;
    font-weight: 300;
    padding: 5px 10px;
    font-size:14px
}

.ert-contact-form .wpcf7-response-output.wpcf7-validation-errors {
    border:1px solid red
}

.ert-contact-form .wpcf7-response-output.wpcf7-mail-sent-ok {
    border:1px solid #398f14
}

.ert-contact-content h3 {
    font-weight: 300;
    font-size: 40px;
    line-height: 48px;
    color:#000
}

.ert-contact-content p {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    color:#000
}

@media screen and (max-width: 767px) {
    .es-property-single-fields li {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex:0 0 50%
    }
}

@media screen and (max-width: 600px) {
    .es-property-single-fields li {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex:0 0 100%
    }
}

#ui-datepicker-div {
    z-index: 1300 !important;
    border:1px solid #c5c5c5 !important
}

.es-map-popup .ert-property-item {
    position:relative
}

.es-map-popup .ert-property-item .es-overlay__close {
    position: absolute;
    top: -10px;
    right: -10px;
    display: block;
    padding: 5px;
    font-size: 18px;
    text-decoration:none
}

.widget-title, .widgettitle {
    word-break:break-word
}

.es-properties.es-properties--hfm.es-properties--hfm--only-map .es-properties__list .es-listings {
    display:block !important
}

.es-properties.es-properties--hfm.es-properties--hfm--only-map .es-listings__wrap-inner {
    max-height:unset !important
}

.es-properties.es-properties--hfm.es-properties--hfm--only-map .es-properties__map {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order:-1
}

.es-properties.es-properties--hfm.es-properties--hfm--only-map .es-properties__search {
    -webkit-box-ordinal-group: -1;
    -ms-flex-order: -2;
    order:-2
}

.es-properties.es-properties--hfm.es-properties--hfm--only-map .es-pagination {
    display: block !important
}