/*
Theme Name: Professionals Member V25
Theme URI: www.iproperty.com.au
Author: iProperty Support
Description: Professionals Member V25 is a high-Quality and Professional HTML5 Template design and developed to fit all the needs of a Real Estate Business.
Version: 1.3.2
Requires PHP: 8.0

License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
*/

/*
Contents
1. Fonts
2. Variables
3. Base Styles
4. Header Styles
5. Footer Styles
6. Site Navigation
7. Home Banner
8. Home Stats
9. Home Panels
10. Home Properties
11. Home Blog
12. Testimonials
13. Property Search Form
14. Agency Search Form
15. Agency Item
16. Property Item
17. Search Results
18. Pagination
19. Property Details
20. Offcanvas Styles
21. Appraisal CTA
22. Similar Properties
23. Employee Item
24. Employee Profile
25. Single Post/Page Styles
26. Post Comments
27. Widgets
28. Finance Calculators
29. Auctions/Inspections
30. Testimonials
31. Contact Page
32. Promotions
*/

/** 1. Fonts **/
@font-face {
    font-family: 'Poppins';
    src: url('../pros_au_member_v25/assets/fonts/Poppins-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../pros_au_member_v25/assets/fonts/Poppins-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../pros_au_member_v25/assets/fonts/Poppins-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../pros_au_member_v25/assets/fonts/Poppins-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Serif 4';
    src: url('../pros_au_member_v25/assets/fonts/SourceSerif4-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Serif 4';
    src: url('../pros_au_member_v25/assets/fonts/SourceSerif4-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Serif 4';
    src: url('../pros_au_member_v25/assets/fonts/SourceSerif4-MediumItalic.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Source Serif 4';
    src: url('../pros_au_member_v25/assets/fonts/SourceSerif4-Italic.woff2') format('woff2');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

/** 2. Variables **/
:root {
    /* FONTS */
    --pro--font-sourceserif: "Source Serif 4";
    --pro--font-poppins: "Poppins";

    /* COLORS */
    --pro--color-charcoal: #373D40;
    --pro--color-charcoal-75: #6A6D6F;
    --pro--color-charcoal-50: #9B9E9F;
    --pro--color-charcoal-25: #CDCFCF;

    --pro--color-cream: #ECE7DC;
    --pro--color-cream-75: #F0EDE4;
    --pro--color-cream-50: #F5F3ED;
    --pro--color-cream-25: #FAF9F6;

    --pro--color-ruby-red: #FF4853;
    --pro--color-ruby-red-75: #FF757E;
    --pro--color-ruby-red-50: #FFA3A9;
    --pro--color-ruby-red-25: #FFD1D5;

    --pro--color-white: #ffffff;
    --pro--color-tertiary-1: #C9F7FE;
    --pro--color-tertiary-2: #68B4DC;
    --por--color-tertiary-3: #507C94;
}


/** 3. Base Styles **/
body {
    font-size: 14px;
    font-family: var(--pro--font-poppins);
    color: var(--pro--color-charcoal);
}

h1, .h1 {
    font-family: var(--pro--font-sourceserif);
    font-size: 3.3rem;
    font-weight: 500;
}

h2, .h2 {
    font-family: var(--pro--font-sourceserif);
    font-size: 2.25rem;
    font-weight: 400;
    text-transform: capitalize;
}

h3, .h3 {
    font-family: var(--pro--font-sourceserif);
    font-size: 2.438rem;
    font-weight: 400;
}

h4, .h4 {
    font-family: var(--pro--font-sourceserif);
    font-size: 1.938rem;
    font-weight: 400;
}

h5, .h5 {
    font-family: var(--pro--font-sourceserif);
    font-size: 1.562rem;
    font-weight: 400;
}

h6, .h6 {
    font-family: var(--pro--font-sourceserif);
    font-size: 1.250rem;
    font-weight: 400;
}

h1 i, h1 em, h2 i, h2 em, h3 i, h3 em, h4 i, h4 em, h5 i, h5 em, h6 i, h6 em, .h1 i, .h1 em, .h2 i, .h2 em, .h3 i, .h3 em, .h4 i, .h4 em, .h5 i, .h5 em, .h6 i, .h6 em {
    color: var(--pro--color-ruby-red);
}

b, strong {
    font-weight: 600;
}

hr {
    color: var(--pro--color-charcoal-25);
    opacity: 1;
}

a {
    cursor: pointer;
}

code {
    color: var(--pro--color-ruby-red);
}

.alert {
    font-size: 0.875rem;
}

.alert-danger {
    --bs-alert-color: var(--pro--color-charcoal);
    --bs-alert-bg: var(--pro--color-ruby-red-50);
    --bs-alert-border-color: var(--pro--color-ruby-red);
}

.alert-info {
    --bs-alert-color: var(--pro--color-charcoal);
    --bs-alert-bg: var(--pro--color-tertiary-1);
    --bs-alert-border-color: var(--pro--color-tertiary-2);
}

.fw-500 {
    font-weight: 500;
}

.form-control, .form-select, label {
    font-size: 0.875rem;
}

.form-control:not(.ui-autocomplete-input), .form-control > button, .form-control > button:focus, .form-select {
    border-radius: 0;
    background-color: var(--pro--color-cream-50);
    outline: 0;
    box-shadow: none;
    border: 0;
    padding-top: 10px;
    padding-bottom: 10px;
}

.newsletter-select.form-control {
    padding-top: 0;
    padding-bottom: 0;
}

.newsletter-select.form-control .btn {
    padding: 13px 6px;
}

#notification_modal header {
    height: auto;
    padding: 0;
}

.appraisal-cta .invalid-feedback {
    padding-left: 26px;
    padding-right: 26px;
}

.appraisal-cta .form-control, .appraisal-cta .form-select, .appraisal-cta .bootstrap-select button {
    background-color: var(--pro--color-cream-25);
    border-radius: 100px;
    border: 1px solid var(--pro--color-charcoal-25);
    padding: 19px 26px;
}

.appraisal-cta .bootstrap-select, .appraisal-cta .bootstrap-select button {
    width: 100% !important;
    display: block;
    height: 61.4px;
    font-size: 0.875rem;
}

.appraisal-cta .bootstrap-select button {
    padding: 22px 26px;
}

.appraisal-cta .bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    overflow:visible;
}


.appraisal-cta textarea.form-control {
    border-radius: 20px;
}

.form-control.bootstrap-select .dropdown-toggle:focus, .form-control.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
    outline: 0 !important;
    border: 0;
}

.horizontal-divider {
    width: 1px;
    background-color: var(--pro--color-charcoal-25);
}

.pro-bg-charcoal, .pro-bg-hover-charcoal:hover {
    background-color: var(--pro--color-charcoal);
}

.pro-bg-charcoal-75, .pro-bg-hover-charcoal-75:hover {
    background-color: var(--pro--color-charcoal-75);
}

.pro-bg-charcoal-50, .pro-bg-hover-charcoal-50:hover {
    background-color: var(--pro--color-charcoal-50);
}

.pro-bg-charcoal-25, .pro-bg-hover-charcoal-25:hover {
    background-color: var(--pro--color-charcoal-25);
}

.pro-bg-cream, .pro-bg-hover-cream:hover {
    background-color: var(--pro--color-cream);
}

.pro-bg-cream-25, .pro-bg-hover-cream-25:hover {
    background-color: var(--pro--color-cream-25);
}

.pro-bg-cream-50, .pro-bg-hover-cream-50:hover {
    background-color: var(--pro--color-cream-50);
}

.pro-bg-cream-75, .pro-bg-hover-cream-75:hover {
    background-color: var(--pro--color-cream-75);
}

.pro-bg-ruby-red, .pro-bg-hover-ruby-red:hover {
    background-color: var(--pro--color-ruby-red);
}

.pro-bg-ruby-red-25, .pro-bg-hover-ruby-red-25:hover {
    background-color: var(--pro--color-ruby-red-25);
}

.pro-bg-ruby-red-50, .pro-bg-hover-ruby-red-50:hover {
    background-color: var(--pro--color-ruby-red-50);
}

.pro-bg-ruby-red-75, .pro-bg-hover-ruby-red-75:hover {
    background-color: var(--pro--color-ruby-red-75);
}

.pro-bg-white, .pro-bg-hover-white {
    background-color: var(--pro--color-white);
}

.pro-bg-transparent {
    background-color: transparent;
}

.pro-text-charcoal, .pro-text-hover-charcoal:hover {
    color: var(--pro--color-charcoal);
}

.pro-text-charcoal-75, .pro-text-hover-charcoal-75:hover {
    color: var(--pro--color-charcoal-75);
}

.pro-text-cream {
    color: var(--pro--color-cream);
}

.pro-text-ruby-red, .pro-text-hover-ruby-red:hover {
    color: var(--pro--color-ruby-red) !important;
}

.pro-text-white, .pro-text-hover-white:hover {
    color: var(--pro--color-white);
}

.brand-link {
    color: var(--pro--color-charcoal) !important;
    text-decoration: none;
    position: relative;
}

article.type-post a:not(.property-button, .btn), article.type-page a:not(.property-button, .btn), .form-group a, .forgot-password, .entry-content a:not(.property-button, .btn), .inspectre-wrapper a, .rma-reviews-carousel .rma-multi-slide-carousel .rma-slide-card a.rma-read-more-link, .rma-reviews-carousel .rma-corporate-details .rma-link-back a, .employee-bio a, #notification_modal a {
    color: var(--pro--color-charcoal);
    text-decoration: underline;
    text-decoration-color: var(--pro--color-ruby-red);
    text-decoration-thickness: 0.12rem;
}

#notification_modal a {
    color: var(--pro--color-white);
}

.home .rma-reviews-carousel .rma-corporate-details .rma-link-back a {
    color: var(--pro--color-white);
}

.brand-link::before/*, article.type-post .entry-content a::before, article.type-page .entry-content a::before*/ {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background-color: var(--pro--color-ruby-red);
}

/*.brand-link::after {
    content: '';
    background-image: url('/wp-content/themes/pros_au_member_v25/assets/img/arrow-red.svg');
    background-size: contain;
    background-position: center;
    width: 13px;
    height: 13px;
    display: inline-block;
    background-repeat: no-repeat;
    margin-left: 5px;
    transform: rotate(0);
    transition: transform .15s ease;
}*/

.text-underline-ruby-red {
    text-decoration: underline;
    text-decoration-color: var(--pro--color-ruby-red);
    text-decoration-thickness: 2px;
}

.wp-block-image a {
    text-decoration: none;
}

.wp-block-image a::before, .wp-block-image a::after {
    display: none !important;
}

article.type-post .entry-content a::after, article.type-page .entry-content a:not(a + img)::after {
    margin-right: 5px;
}

.accordion {
    --bs-accordion-color: var(--pro--color-charcoal);
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: #CBD4D6;
    --bs-accordion-border-radius: 0;
    --bs-accordion-inner-border-radius: 0;
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 0.75C16.6904 0.75 17.25 1.30964 17.25 2V14.75H30C30.6904 14.75 31.25 15.3096 31.25 16C31.25 16.6904 30.6904 17.25 30 17.25H17.25V30C17.25 30.6904 16.6904 31.25 16 31.25C15.3096 31.25 14.75 30.6904 14.75 30V17.25H2C1.30964 17.25 0.75 16.6904 0.75 16C0.75 15.3096 1.30964 14.75 2 14.75H14.75V2C14.75 1.30964 15.3096 0.75 16 0.75Z' fill='%23FF4753'/%3E%3C/svg%3E%0A");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3Csvg width='32' height='4' viewBox='0 0 32 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.75 2C0.75 1.30964 1.30964 0.75 2 0.75H30C30.6904 0.75 31.25 1.30964 31.25 2C31.25 2.69036 30.6904 3.25 30 3.25H2C1.30964 3.25 0.75 2.69036 0.75 2Z' fill='%23FF4753'/%3E%3C/svg%3E%0A");
}

.accordion-item {
    border-top-width: 0;
    border-left-width: 0;
    border-right-width: 0;
}

.accordion-button {
    font-size: inherit;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--pro--color-charcoal);
    background-color: transparent;
    box-shadow: none;
}

.alignleft {
    float: left;
    margin-right: 1rem;
}

.aligncenter {
    margin: 0 auto;
    display: block;
}

.alignright {
    float: right;
    margin-left: 1rem;
}

.brand-link:hover::after {
    transform: rotate(45deg);
}

.btn {
    padding: 6px 6px 6px 26px;
    line-height: 1rem;
}

.btn-group-lg>.btn, .btn-lg {
    --bs-btn-font-size: "1rem";
}

.btn-group > *:hover {
    background-color: var(--pro--color-ruby-red);
    color: var(--pro--color-white);
}

.btn-group.btn-group:not(.pro-btn-group) {
    border-radius: 4px;
}

.btn-group:not(.pro-btn-group) > .btn {
    padding: 5px;
    border-color: var(--pro--color-charcoal-25);
    border-radius: 0;
}

.btn-group:not(.pro-btn-group) > .btn:first-of-type {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.btn-group:not(.pro-btn-group) > .btn:last-of-type {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.btn-group:not(.pro-btn-group) > .btn:not(:last-of-type) {
    border-right-width: 0;
}

.btn-group:not(.pro-btn-group) > .btn:not(:first-of-type) {
    border-left-width: 0;
}

.btn-group:not(.pro-btn-group) > .btn:hover {
    background-color: transparent;
}

.btn-group:not(.pro-btn-group) > .btn {
    color: var(--pro--color-charcoal);
}

.btn-group:not(.pro-btn-group) > .btn:hover, .btn-group:not(.pro-btn-group) > .btn.active {
    color: var(--pro--color-ruby-red);
}

.button-icon {
    width: 34px;
    height: 34px;
    margin-left: 10px;
    transition: all .15s ease;
    background-image: url('/wp-content/themes/pros_au_member_v25/assets/img/arrow-red.svg');
    background-position: center;
    background-repeat: no-repeat;
}

.button-icon.pro-bg-transparent, .button-icon.pro-bg-charcoal {
    background-image: url('/wp-content/themes/pros_au_member_v25/assets/img/arrow-white.svg');
}

.button-icon.pro-bg-transparent-charcoal, .button-icon.pro-icon-charcoal {
    background-image: url('/wp-content/themes/pros_au_member_v25/assets/img/arrow-charcoal.svg');
}

.btn:hover .button-icon.pro-bg-hover-white {
    background-color: var(--pro--color-white);
}

.btn:hover .button-icon.pro-bg-hover-charcoal {
    background-color: var(--pro--color-charcoal);
}

.btn .button-icon img {
    transform: rotate(0);
    transition: transform .15s ease;
}

.btn:hover .button-icon {
    transform: rotate(45deg);
}

.btn.smoothscroll:hover .button-icon {
    transform: rotate(135deg);
}

.bg-slant {
    -webkit-mask-image: url('/wp-content/themes/pros_au_member_v25/assets/img/slant-mask.svg');
    mask-image: url('/wp-content/themes/pros_au_member_v25/assets/img/slant-mask.svg');
    mask-repeat: no-repeat;
    mask-size: cover;
    mask-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: var(--pro--color-ruby-red-50);
}

.gf_repeater2_add, .gf_repeater2_remove, .gform_button {
    padding: 8px !important;
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
    border-radius: 100px !important;
    transition: all 300ms ease !important;
    text-decoration: none !important;
    text-align: center !important;
    font-weight: 500 !important;
    border: none !important;
    display: inline-block;
    cursor: pointer !important;
    margin-right: 0.5rem !important;
}

.gf_repeater2_add {
    background-color: var( --pro--color-ruby-red ) !important;
    color: var( --pro--color-white )!important;
}

.gf_repeater2_remove {
    background-color: var( --pro--color-charcoal )!important;
    color: var( --pro--color-white )!important;
}

.goog-te-combo {
    display: block;
    padding: .375rem 2.25rem .375rem .75rem;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    -moz-padding-start: calc(0.75rem - 3px);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--pro--color-charcoal);
    background-color: var(--pro--color-white);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: 1px solid var( --pro--color-charcoal-50 );
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-top: .440rem;
    padding-bottom: .440rem;
}

.goog-te-gadget {
    color: var(--pro--color-white) !important;
}

.pt-64px {
    padding-top: 64px;
}

.pb-64px {
    padding-bottom: 64px;
}

.px-64px {
    padding-top: 64px;
    padding-bottom: 64px;
}

.pt-96px {
    padding-top: 96px;
}

.px-96px {
    padding-top: 96px;
    padding-bottom: 96px;
}

.pt-120px {
    padding-top: 120px;
}

.pb-120px {
    padding-bottom: 120px;
}

.px-120px {
    padding-top: 120px;
    padding-bottom: 120px;
}

.pro-btn-group {
    padding: 6px;
    background-color: #F4F7F7;
    gap: 5px;
}

.pro-btn-group .btn {
    padding: 11px 15px;
    border-radius: inherit !important;
    border: none;
}

.pro-btn-group .btn.active {
    background-color: var(--pro--color-ruby-red);
    color: var(--pro--color-white);
}

.property-button, #OfferKit_make-an-offer {
    padding: 8px;
    border-radius: 100px;
    transition: all 300ms ease;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    border: none;
    display: inline-block;
}

#OfferKit_make-an-offer {
    height: auto;
}

.stretched-link {
    cursor: pointer;
}

.tenancy-app-button-default, .tenancy-app-button {
    background: none !important;
    border-radius: 100px !important;
    transition: all 300ms ease !important;
    text-decoration: none;
    text-align: center;
    font-weight: 500 !important;
    border: none !important;
    display: inline-block; 
    font-family: var(--pro--font-poppins) !important;
    background-color: var(--pro--color-white) !important;
    color: var(--pro--color-ruby-red) !important;
    border: 1px solid var(--pro--color-ruby-red) !important;
    padding: 8px !important;
}

.tenancy-app-button-default span, .tenancy-app-button span {
    margin: 0 !important;
    padding: 0 !important;
    line-height: inherit !important;
    background: none !important;
}

.tenancy-app-button-default:hover, .tenancy-app-button:hover {
    background-color: var(--pro--color-ruby-red) !important;
    color: var(--pro--color-white) !important;
    box-shadow: none !important;
}

#OfferKit_make-an-offer {
    width: 100%;
}

.property-button-charcoal {
    background-color: var(--pro--color-charcoal);
    color: var(--pro--color-white);
}

.property-button-charcoal:hover {
    background-color: var(--pro--color-charcoal-50) !important;
    color: var(--pro--color-white);
}

.property-button-ruby-red, #OfferKit_make-an-offer {
    background-color: var(--pro--color-ruby-red);
    color: var(--pro--color-white);
}

.property-button-ruby-red:hover, #OfferKit_make-an-offer:hover {
    background-color: var(--pro--color-ruby-red-50);
    color: var(--pro--color-charcoal) !important;
}

.property-button-bordered {
    background-color: var(--pro--color-white);
    color: var(--pro--color-ruby-red);
    border: 1px solid var(--pro--color-ruby-red);
}

.property-button-bordered:hover {
    background-color: var(--pro--color-ruby-red);
    color: var(--pro--color-white) !important;
}

.clipped-image {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 100% 100%, 0 60px);
}

.flex-truncate {
    flex: 1;
    min-width: 0;
}

.flex-truncate > * {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.h6-alt {
    font-family: var(--pro--font-poppins);
}

.home-section-padding {
    padding-top: 96px;
    padding-bottom: 96px;
}

.masked-slant {
    -webkit-mask-image: url("/wp-content/themes/pros_au_member_v25/assets/img/property-slant-mask.svg");
    mask-image: url("/wp-content/themes/pros_au_member_v25/assets/img/property-slant-mask.svg");
    mask-position: bottom right;
    mask-size: cover;
    mask-repeat: no-repeat;
}

.nav-pills .nav-link {
    border-radius: 50rem;
    color: var(--pro--color-charcoal);
}

.nav-pills .nav-link.active {
    color: var(--pro--color-white);
    background-color: var(--pro--color-ruby-red);
}

.required {
    color: var(--pro--color-ruby-red);
}

.page-wrapper {
    padding-top: 120px;
    padding-bottom: 120px;
}

.page-wrapper h1 {
    margin-bottom: 24px;
}

.small-text {
    font-size: 0.875rem;
}

.script-text {
    font-size: 0.938rem;
    text-transform: uppercase;
    color: var(--pro--color-charcoal-75);
}

.script-text-white {
    color: #ffffff;
}

.slick-dots {
    display: inline-flex;
    gap: 7px;
    list-style-type: none;
    padding: 0;
}

.slick-dots button {
    width: 8px;
    height: 8px;
    border: none;
    padding: 0;
    border-radius: 100%;
    text-indent: -9999px;
    background-color: var(--pro--color-charcoal-25);
}

.slick-dots .slick-active button {
    background-color: var(--pro--color-ruby-red);
}

.pro-slick-dots .slick-dots:nth-child(2n) {
    display: none;
}

/** Gutenberg Styles **/
.has-ruby-red-background-color {
    background-color: var(--pro--color-ruby-red);
}

.has-ruby-red-75-background-color {
    background-color: var(--pro--color-ruby-red-75);
}

.has-ruby-red-50-background-color {
    background-color: var(--pro--color-ruby-red-50);
}

.has-ruby-red-25-background-color {
    background-color: var(--pro--color-ruby-red-25);
}

.has-ruby-red-color {
    color: var(--pro--color-ruby-red);
}

.has-ruby-red-75-color {
    color: var(--pro--color-ruby-red-75);
}

.has-ruby-red-50-color {
    color: var(--pro--color-ruby-red-50);
}

.has-ruby-red-25-color {
    color: var(--pro--color-ruby-red-25);
}

.has-cream-background-color {
    background-color: var(--pro--color-cream);
}

.has-cream-75-background-color {
    background-color: var(--pro--color-cream-75);
}

.has-cream-50-background-color {
    background-color: var(--pro--color-cream-50);
}

.has-cream-25-background-color {
    background-color: var(--pro--color-cream-25);
}

.has-cream-color {
    color: var(--pro--color-cream);
}

.has-cream-75-color {
    color: var(--pro--color-cream-75);
}

.has-cream-50-color {
    color: var(--pro--color-cream-50);
}

.has-cream-25-color {
    color: var(--pro--color-cream-25);
}

.has-charcoal-background-color {
    background-color: var(--pro--color-charcoal);
}

.has-charcoal-75-background-color {
    background-color: var(--pro--color-charcoal-75);
}

.has-charcoal-50-background-color {
    background-color: var(--pro--color-charcoal-50);
}

.has-charcoal-25-background-color {
    background-color: var(--pro--color-charcoal-25);
}

.has-charcoal-color {
    color: var(--pro--color-charcoal);
}

.has-charcoal-75-color {
    color: var(--pro--color-charcoal-75);
}

.has-charcoal-50-color {
    color: var(--pro--color-charcoal-50);
}

.has-charcoal-25-color {
    color: var(--pro--color-charcoal-25);
}

.has-white-background-color {
    background-color: var(--pro--color-white);
}

.has-white-color {
    color: var(--pro--color-white);
}

.has-light-blue-background-color {
    background-color: var(--pro--color-tertiary-1);
}

.has-light-blue-color {
    color: var(--pro--color-tertiary-1);
}

.has-medium-blue-background-color {
    background-color: var(--pro--color-tertiary-2);
}

.has-medium-blue-color {
    color: var(--pro--color-tertiary-2);
}

.has-dark-blue-background-color {
    background-color: var(--pro--color-tertiary-3);
}

.has-dark-blue-color {
    color: var(--pro--color-tertiary-3);
}

.has-extra-small-font-size {
    font-size: 10px;
}

.has-small-font-size {
    font-size: 13px;
}

.has-normal-font-size {
    font-size: 16px;
}

.has-large-font-size {
    font-size: 20px;
}

.has-extra-large-font-size {
    font-size: 25px;
}

.has-huge-font-size {
    font-size: 36px;
}

.has-gigantic-font-size {
    font-size: 61px;
}

/** 4. Header Styles **/
header:not(.page-header) {
    position: sticky;
    top: 0;
    z-index: 1001;
}

header:not(.page-header) {
    height: 64px;
    padding: 14px 23px;
}

.member-bar {
    padding-top: 6px;
    padding-bottom: 6px; 
}

.member-phone::before {
    position: relative;
    content: '';
    background-image: url(/wp-content/themes/pros_au_member_v25/assets/img/phone-v2.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 16px;
    display: inline-block;
    width: 16px;
    margin-right: 0.5rem;
    vertical-align: middle;
    top: -1px;
}

.header-logo {
    gap: 15px;
    align-items: center;
}

.header-logo .logo-mark {
    width: 29.47px;
    height: 35.58px;
}

.header-logo .word-mark img {
    width: 162.68px;
    height: 22.53px;
}

/** 5. Footer Styles **/
footer a {
    color: var(--pro--color-white) !important;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

 .footer-top {
    padding-top: 120px;
    padding-bottom: 50px;
}

.footer-links {
    list-style-type: none;
    padding: 0;
}

.footer-links li {
    padding-bottom: 10px;
}

/** 6. Site Navigation **/
#nav-icon::before {
    content: '';
    background-image: url(/wp-content/themes/pros_au_member_v25/assets/img/mobile-menu.svg);
    width: 22px;
    height: 22px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 1rem;
    vertical-align: middle;
}

#nav-icon.open::before {
    background-image: url(/wp-content/themes/pros_au_member_v25/assets/img/close-white.svg);
}

.pros-spmenu {
	background: #fff;
	position: fixed
}

.pros-spmenu .sub-menu {
	display: none;
	overflow: hidden
}

.pros-spmenu a {
	display: block;
	color: #000;
	font-weight: 300;
	font-size: 18px;
	position: relative
}

.pros-spmenu a:hover {
	background: var(--pro--color-ruby-red);
	color: #fff
}

.pros-spmenu .menu-item-has-children>a:hover::after {
    filter: brightness(100);
}

.pros-spmenu .current-menu-item>a,.pros-spmenu .current-menu-parent>a,.pros-spmenu .current-menu-ancestor>a {
	background: var(--pro--color-ruby-red);
	color: #fff
}

.pros-spmenu .menu-item-has-children>a::after {
	content: '';
	position: absolute;
	right: 20px;
    top: 18px;
    background-image: url('/wp-content/themes/pros_au_member_v25/assets/img/down-arrow.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
	-webkit-transform: rotate(0);
	-moz-transform: rotate(0);
	-o-transform: rotate(0);
	transform: rotate(0);
	transition: transform 300ms ease;
    width: 20px;
    height: 20px;
}

.pros-spmenu .menu-item-has-children.open>a::after {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

.pros-spmenu-vertical {
	width: 340px;
	height: 100%;
	top: 0;
	z-index: -10;
	overflow-y: auto;
	box-shadow: inset 2px 0 10px rgba(0,0,0,0.2);
	z-index: 1000
}

.admin-bar .pros-spmenu-vertical {
	padding-top: 32px
}

.pros-spmenu-vertical a {
	padding: .8em 1.2em;
	text-decoration: none;
	border-bottom: 1px solid #e0e0e0
}

.pros-spmenu-vertical>ul>li:last-of-type a {
	border-bottom: 0
}

.pros-spmenu-vertical ul {
	list-style-type: none;
	padding: 0
}

.pros-spmenu-vertical .sub-menu a {
	padding-left: 3em;
	font-size: 14px
}

.pros-spmenu-right {
	right: -340px
}

.pros-spmenu-right.pros-spmenu-open {
	right: 0
}

.pros-spmenu-push {
	overflow-x: hidden;
	position: relative;
	left: 0
}

.pros-spmenu-push-toleft {
	left: -340px
}

.pros-spmenu,.pros-spmenu-push {
	-webkit-transition: left .3s ease,right .3s ease;
	-moz-transition: left .3s ease,right .3s ease;
	transition: left .3s ease,right .3s ease
}

/** 7. Home Banner **/
.home-banner {
    background-color: var(--pro--color-charcoal);
    padding: 0 24px 64px 24px;
    /*height: calc(100vh - 64px - 25px);*/
}

.home-banner .home-banner-image {
    height: calc(50vh - 64px);
}

.home-banner .banner-image {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 100% 100%, 0 40%);
}

.home-banner .banner-image #banner-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -10;
}

.home-banner-content {
    position: relative;
    top: -50px;
}

.home-banner-content h1 {
    font-size: 2.5rem;
}

.home-banner-content > .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

/** 8. Home Stats **/
.home-stats .statistic {
    padding: 30px 10px;
    gap: 10px;
}

/** 9. Home Panels **/
.home-panels {
    padding-bottom: 96px;
}

.home-panels .col {
    background-color: var(--pro--color-white);
    transition: all .15s ease;
    padding: 60px 0;
    border-top: 0.5px solid #CBD4D6
}

.home-panels .col:last-of-type {
    border-bottom: 0.5px solid #CBD4D6;
}

.home-panels .panel .panel-icon .icon {
    height: 60px;
    width: 60px;
    object-fit: contain;
    object-position: left;
}

.panel .panel-title {
    width: 100%;
}

.panel svg {
    flex-shrink: 0;
}

/** 10. Home Properties **/
.home-properties .slick-arrow, #landing-wrapper .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-52px);
    width: 38px;
    height: 38px;
    background: transparent;
    line-height: 30px;
    text-align: center;
    border-radius: 100%;
    border-color: transparent;
    border-width: 2px;
    transition: border-color 300ms ease;
    color: var(--pro--color-ruby-red);
}

.home-properties .slick-prev,  #landing-wrapper .slick-prev {
    left: -50px;
}

.home-properties .slick-next,  #landing-wrapper .slick-next {
    right: -50px;
}

.home-properties .slick-next:hover , .home-properties .slick-prev:hover,  #landing-wrapper .slick-next:hover,  #landing-wrapper .slick-prev:hover {
    border-color: var(--pro--color-ruby-red);
}

/** 11. Home Blog **/
.blog-post {
    margin-left: 10px;
    margin-right: 10px;
}
.post-item-body {
    gap: 12px;
}
.post-item-body .post-date {
    padding: 4px 16px;
    border: 1px solid #D9D9D9;
    line-height: 0.938rem;
}

.post-item-image {
    margin-bottom: 48px;
}

.post-item-image img {
    margin: 0 auto;
}

.post-item-image::after {
    content: '';
    width: 51px;
    height: 1px;
    background-color: var(--pro--color-ruby-red);
    transform: rotate(90deg) translateY(22px);
    bottom: -10px;
    left: 50%;
    position: absolute
}

/** 12. Testimonials **/
.home-testimonials .bg-image, .agent-testimonials .bg-image {
    background-image: image-set(
        '/wp-content/themes/pros_au_member_v25/assets/img/testimonial-bg.webp' type('image/webp'),
        '/wp-content/themes/pros_au_member_v25/assets/img/testimonial-bg.jpg' type('image/jpg')
    );
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.home-testimonials .bg-image::before, .agent-testimonials .bg-image::before {
    content: '';
    position: absolute;
    background-color: rgba(55, 61, 64, 0.8);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.home-testimonials .slick-dots {
	margin-top: 50px;
    width: 100%;
    justify-content: center;
}

.home-testimonials img, .agent-testimonials img {
	display: inline;
}

.testimonial-author {
	font-family: var( --pro--font-poppins );
    font-weight: 500;
	line-height: 19.49px;
	padding-bottom: 5px;
}

.testimonial-date {
	font-size: 14px;
	line-height: 10px;
	/*padding-bottom: 40px;*/
}

.testimonial-text {
	padding: 0;
	font-family:  var( --pro--font-poppins-regular );
	font-size: 18px;
}

.home-testimonials .testimonial-star-rating, .agent-testimonials .testimonial-star-rating {
	margin-bottom: 15px;
}

.testimonial-logo, .testimonial-star-rating {
	margin-top: 20px;
}

.testimonial-star-rating span {
  display: inline-block;
  position: relative;
  top: 2px;
}

.testimonial-logo img {
	margin-right: 10px;
}

.testimonial-logo img:last-of-type {
	margin-right: 0;
}

.testimonial-verified {
	margin-bottom: 10px;
}

/** 13. Property Search Form **/
.ui-autocomplete {
    background-color: var( --pro--color-white );
    padding: 1rem 0;
    max-height: 250px;
    overflow-y: auto;
}

.home .property-search .container-fluid {
    padding: 0;
}

.property-search .search-wrapper {
    background-color: transparent;
}

.home .property-search .search-wrapper {
    background-color: var(--pro--color-white);
}

.ui-autocomplete .ui-autocomplete-category {
    padding: 0.5rem 1rem 0;
    font-size: 13px;
}

.ui-autocomplete .ui-autocomplete-category:not(:first-of-type) {
    padding-top: 1rem;
}

.ui-autocomplete .ui-menu-item {
    padding: 0;
}

.ui-autocomplete .ui-menu-item-wrapper {
    padding: 0.5rem 1rem;
}

.ui-menu .ui-state-focus, .ui-menu .ui-state-active {
    margin: 0;
    background-color: var( --pro--color-charcoal-25 );
}

.property-search select, .property-search input {
    height: 60px;
    color: var(--pro--color-charcoal);
    border-radius: 0;
}

.property-search .rounded-start input {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    padding-left: 20px;
}

.submit-container {
    padding: 6px 6px 6px 0;
}

.submit-container button {
    height: 48px;
    width: 48px;
    padding: 0;
    justify-content: center;
}

body:not(.home) .submit-container button {
    width: 100%;
}

.submit-container button svg path {
    stroke: #ffffff;
    transition: all 300ms ease;
}

.submit-container button:hover svg path {
    stroke: var(--pro--color-charcoal);
}

.property-search button.dropdown-toggle {
    background-color: #ffffff !important;
}

#advanced-search-wrapper button.dropdown-toggle {
    background-color: #ffffff !important;
}

.property-search select {
    width: 100%;
    padding: 8px 12px 8px 20px;
    appearance: none;
    -webkit-appearance: none;
    border: none;
}

.property-search .col-md-auto:first-of-type select {
    border-top-left-radius: var( --pro--radius-button );
    border-bottom-left-radius: var( --pro--radius-button );
}

.property-search .bootstrap-select .btn {
    border-right: 0;
    border-left: 0;
    font-size: .875rem;
    color: var(--pro--color-charcoal);
    height: 60px;
    border: none;
}

.property-search .bootstrap-select .btn {
    padding-left: 20px;
    padding-right: 20px;
}

.bootstrap-select>.dropdown-toggle.bs-placeholder, .bootstrap-select>.dropdown-toggle.bs-placeholder:active, .bootstrap-select>.dropdown-toggle.bs-placeholder:focus, .bootstrap-select>.dropdown-toggle.bs-placeholder:hover {
    color: var(--pro--color-charcoal);
}

#advanced-search-wrapper .bootstrap-select .btn {
    height: 62px;
    padding-left: 1.625rem;
    padding-right: 1.625rem;
    border-radius: var(--bs-border-radius-pill);
}

.property-search .bootstrap-select .btn:active, .property-search .bootstrap-select .btn:focus {
    outline: 0 !important;
}

.property-search .bootstrap-select button {
    border-radius: 30px;
    width: 100%;
}

body:not(.home) .property-search .bootstrap-select button {
    margin-bottom: 0.8rem;
}

.property-search .col-6 .bootstrap-select button[data-id="department"], select#department {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.property-search .col-6 .bootstrap-select button[data-id="type"], select#type {
    padding-left: 12px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.bootstrap-select .dropdown-item {
    font-size: .875rem;
    color: var(--pro--color-charcoal);
}

.bootstrap-select .dropdown-item:focus, .bootstrap-select .dropdown-item:hover {
    background-color: var(--pro--color-charcoal-25);
}

.bootstrap-select .dropdown-item.active, .bootstrap-select .dropdown-item:active {
    background-color: var(--pro--color-ruby-red);
    color: var(--pro--color-white);
}

.property-search .listings-search {
    position: relative;
}

.property-search input {
    padding-left: 10px;
    padding-right: 10px;
    border: none;
}

body:not(.home) .property-search input {
    border-radius: 30px;
    padding-left: 20px;
    padding-right: 20px;
}

.property-search .form-control {
    background-color: var(--pro--color-white);
}

.property-search .form-control:focus {
    box-shadow: none;
}

.property-search .form-check-inline {
    margin-right: 2rem;
}

.property-search .form-check-input[type="checkbox"] {
    border-radius: 100%;
    width: 1.4em;
    height: 1.4em;
    padding: 0;
    border: 1px solid #ffffff;
}

.property-search .form-check-input:checked {
    background-color: var( --pro--color-darkgray );
}

.property-search .form-check-input:focus {
    box-shadow: none;
}

.property-search .form-check-label {
    margin-bottom: 0;
    margin-top: 6px;
    margin-left: 8px;
    color: #fff;
}

.property-search.dark-border .form-check-label {
    color: var( --pro--color-darkgray );
}

.property-search .advanced-search {
    height: 60px;
    border: 0;
    font-size: .875rem;
    color: var(--pro--color-white);
    text-align: right;
    width: 100%;
}

.property-search .advanced-search.collapsed::after {
    transform: rotate(0deg);
}

.property-search .advanced-search::after {
    content: '';
    margin-left: 15px;
    background-image: url('/wp-content/themes/pros_au_member_v25/assets/img/down-arrow.svg');
    width: 16px;
    height: 16px;
    background-size: 12px 6px;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    transform: rotate(180deg);
    vertical-align: sub;
}

.property-search input::placeholder {
    color: var(--pro--color-charcoal);
}

.property-search input::-ms-input-placeholder {
    color: var(--pro--color-charcoal);
}

.property-search input::-webkit-input-placeholder {
    color: var(--pro--color-charcoal);
}

.property-search .bootstrap-select {
    width: 100% !important;
}

.property-search #advanced-search-wrapper .bootstrap-select::after {
    display: none;
}

.property-search .bootstrap-select .dropdown-toggle::after {
    margin-left: auto;
    vertical-align: middle;
    border: none;
    background-image: url('/wp-content/themes/pros_au_member_v25/assets/img/down-arrow.svg');
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: 12px 6px;
    background-position: center;
}

.property-search .bootstrap-select.dropup .dropdown-toggle::after {
    transform: rotate(180deg);
}

.property-search .bootstrap-select .dropdown-toggle .filter-option {
    line-height: 45px;
}

#advanced-search-wrapper .bootstrap-select .dropdown-toggle .filter-option {
    line-height: 45px;
}

/** 14. Agency Search Form **/
.agency-wrapper {
    border-radius: 100px;
    border: 1px solid var(--pro--color-charcoal-25);
}

.agency-wrapper input {
    border: 0;
    background-color: var(--pro--color-cream-25);
    padding: 6px 6px 6px 26px;
    height: 60px;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
}

.agency-wrapper #agency_search {
    width: 48px;
    height: 48px;
    padding: 0;
}

.agency-wrapper .form-control:focus {
    box-shadow: none;
    background-color: var(--pro--color-cream-25);
}

/** 15. Agency Item **/
.office-team-links {
    gap: 20px;
    flex-wrap: wrap;
}

.office-team-links a {
    color: var(--pro--color-ruby-red);
}

.office-team-links .active {
    color: var(--pro--color-charcoal-75);
    text-decoration: none;
}

.agency-card .h5 {
    color: var(--pro--color-ruby-red);
}

.agency-card p {
    margin-bottom: 20px;
}

.agency-card .agent-attr {
    margin-bottom: 20px;
}

.agency-card .office-map {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.agency-location #gmap {
    height: 400px;
}

/** 16. Property Item **/
.grid-large .property-item, .property-item {
    padding: 20px;
    font-size: 1.25rem;
    font-family: var(--pro--font-sourceserif);
    position: relative;
    font-weight: 400;
}

.home .property-item, #landing-wrapper .property-item, .similar-properties .property-item, .employee-active-listings .property-item, .employee-sold-listings .property-item {
    margin: 10px;
}

.property-item .image {
    margin-bottom: 95px;
    position: relative;
    aspect-ratio: 1 / 1;
}

.grid-large .property-item .image .status, .property-item .image .status {
    position: absolute;
    right: 10px;
    top: 0;
    padding: 4px 5px;
    background-color: var(--pro--color-ruby-red);
    color: var(--pro--color-white);
    font-size: 0.813rem;
    font-style: italic;
}

.property-item .image .furnished img {
    position: absolute;
    bottom: 0;
    width: 80px;
    height: 80px;
    right: 47px;
    transform: rotate(15deg);
}

.grid-large .property-item .image img.main-image, .property-item .image img.main-image {
    height: 341.5px;
    width: 100%;
    object-fit: cover;
    object-position: bottom center;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 100% 100%, 0 40%);
    transition: clip-path 300ms ease-in-out;
}

.property-item .property-info {
    padding: 0 10px 10px 20px;
    gap: 15px;
}

.property-item .property-info .address {
    width: 75%;
    line-height: 1.5rem;
}

.property-item .property-info .street-address {
    width: 65%;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    font-weight: 500;
    font-family: var( --pro--font-poppins );
}

.property-item .property-info .locality {
    position: relative;
    width: 100%;
    padding-right: 40px;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.property-item .property-info .street-address, .property-item .property-info .locality {
    opacity: 1;
    transition: opacity 300ms ease-in-out;
}

/*.grid-large .property-item .property-info .locality::after, .property-item .property-info .locality::after {
    content: '';
    background-image: url('/wp-content/themes/pros_au_member_v25/assets/img/arrow-red.svg');
    background-position: center;
    width: 20px;
    height: 20px;
    display: inline-block;
    background-repeat: no-repeat;
    margin-left: 5px;
    transform: rotate(0);
    transition: transform .15s ease;
    position: absolute;
    right: 10px;
    bottom: 5px;
    padding-left: 15px;
}

.property-item:hover .property-info .locality::after {
    transform: rotate(45deg);
}*/

.grid-large .property-item .bbc, .property-item .bbc, .inspection-bbc {
    gap: 52px;
    height: 28px;
}

.inpsection-bbc, .property-item .price {
    margin-bottom: 17px
}

.property-item .hide-bbc-onhover {
    opacity: 1;
    transition: opacity 300ms ease-in-out;
}

.property-item .bbc .item,  .inspection-bbc .item {
    font-size: 1.1rem;
    color: var(--pro--color-white);
    line-height: 24px;
    font-family: var(--pro--font-poppins);
    vertical-align: baseline;
    display: flex;
    gap: 16px;
    align-items: center;
    position: relative;
}

.grid-large .property-item .bbc .item::after, .property-item .bbc .item::after,  .inspection-bbc .item::after {
    height: 100%;
    width: 1px;
    background-color: #ffffff;
    position: absolute;
    top: 0;
    right: -26px;
    content: '';
    opacity: 40%;
}

.property-item .bbc .item:last-of-type::after,  .inspection-bbc .item:last-of-type::after {
    display: none;
}

/** 18. Search Results **/
.property-search-bar {
    padding-top: 120px;
    padding-bottom: 120px;
    border-top: 1px solid var(--pro--color-charcoal-75);
}

.results-bar {
    margin-bottom: 64px;
}

.results-bar .col {
    min-width: 100%;
}

.results {
    padding-top: 120px;
    padding-bottom: 120px;
}

/** 18. Pagination **/
.pagination-wrapper {
    margin-top: 64px;
}

.pagination .page-item .page-link, .pagination .page-item .page-numbers, .pagination .page-item span {
	border: 0;
	color: var( --pro--color-charcoal );
	margin: 0 0.2rem;
	padding: 0;
	background-color: #F7F7F7;
	border-radius: 5px;
    width: 28px;
    height: 28px;
	text-align: center;
    line-height: 29px;
}

.pagination .page-link:focus, .pagination .page-numbers:focus {
	box-shadow: none;
}

.pagination .page-item .prev, .pagination .page-item .next, .pagination .page-item:first-of-type .page-link, .pagination .page-item:last-of-type .page-link {
	background-color: transparent;
}

.pagination .page-item .page-link:hover, .pagination .page-item .page-numbers:hover {
	background-color: var( --pro--color-ruby-red );
    color: var(--pro--color-white);
}

.pagination .page-item.active .page-link, .pagination .page-item span.current {
	background-color: var( --pro--color-ruby-red );
	color: var( --pro--color-white );
}

.page-numbers {
    position: relative;
    display: block;
    text-decoration: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

/** 19. Property Details **/
.property-images .gallery-container {
    overflow: hidden;
}

.property-images .gallery-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

.property-images .slick-arrow {
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 100%;
    width: 38px;
    height: 38px;
    background-color: transparent;
    color: var(--pro--color-white);
    border: 2px solid var(--pro--color-white);
    padding: 0;
    transition: all 300ms ease;
}

.property-images .slick-arrow:hover {
    background-color: var(--pro--color-white);
    color: var(--pro--color-ruby-red);
}

.property-images .slick-arrow.slick-prev {
    left: 10px;
}

.property-images .slick-arrow.slick-next {
    right: 10px;
}

.property-images .image-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.property-images .image-overlay a, .property-images .image-overlay a:hover {
    color: var(--pro--color-white);
}

.property-bbc {
    padding-top: 24px;
    padding-bottom: 24px;
    font-size: 1.1rem;
}

.property-bbc .property-bbc-row {
    gap: 20px;
}

.property-bbc .property-bbc-row > *{
    gap: 16px;
    align-items: center;
}

.property-details .property-address {
    margin-bottom: 20px;
    font-weight: 500;
    font-family: var(--pro--font-poppins);
}

.property-details .property-address em {
    font-family: var(--pro--font-sourceserif);
    font-weight: 400;
}

.property-details hr {
    margin-top: 48px;
    margin-bottom: 48px;
}

.property-details h1, .property-features, .property-links-wrapper h5 {
    margin-bottom: 20px;
}

.property-features .feature::before {
    content: '';
    position: relative;
    background-image: url(/wp-content/themes/pros_au_member_v25/assets/img/check.svg);
    width: 16px;
    height: 16px;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: center;
    margin-right: 5px;
    top: 3px;
}

.property-description {
    margin-bottom: 64px;
}

.property-sidebar {
    padding: 20px;
    border-radius: 10px;
}

.property-agents {
    gap: 48px;
}

.property-agents .agent-image {
    width: 130px;
}

.property-agents .agent-image img {
    object-position: top;
    object-fit: cover;
}

.property-agents .agent-wrapper {
    gap: 24px;
}

.property-agents .agent-name {
    padding-bottom: 4px; 
}

.property-agents .agent-role, .agent-attr, .property-inspections .inspection {
    font-size: 0.875rem;
}

.property-agents .agent-details {
    overflow: hidden;
}

.property-agents .agent-attr {
    margin-top: 12px;
}

.property-agents .agent-attr .attr {
    display: flex;
    gap: 10px;
}

.property-agents .agent-attr .attr.email a {
    flex: 1 1 20px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.property-agents .agent-attr .attr img {
    flex-shrink: 0;
}

.property-inspections, .property-buttons {
    margin-top: 48px;
}

.property-inspections .h5 {
    padding-bottom: 14px;
}

.property-inspections .inspection-date-time {
    gap: 10px;
}

.property-inspections a img {
    vertical-align: top;
}

.property-buttons {
    gap: 20px;
}

#gmap {
    height: 400px;
    margin-bottom: 96px;
}

.leaflet-top, .leaflet-bottom {
	z-index: 800;
}

.leaflet-popup-content-wrapper {
	padding: 0;
}

.leaflet-popup-content {
	margin: 0;
}

.leaflet-popup-content .card {
	border: none;
}

.leaflet-popup-content .card img {
	width: 100%;
	object-fit: cover;
	height: 100%;
}

.gm-style .gm-style-iw-c {
	padding: 0 !important;
}

.gm-style .col-4 {
	overflow: hidden !important;
}

#eagle_documents_modal .modal-content {
	border-radius: 1.2rem;
	border: none;
}

#eagle_documents_modal .modal-header {
	border-bottom: 0;
}

#eagle_documents_modal .eagle-document {
	padding: 1rem;
	border: 1px solid var(--pro--color-charcoal-25);
	margin-bottom: 1rem;
}

#eagle_documents_modal .eagle-document:last-of-type {
	margin-bottom: 0;
}

/** 20. Offcanvas Styles **/
#property-gallery {
    z-index: 1040;
}

#property-gallery {
    font-size: 0.875rem;
}

#property-gallery .tab-content img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

#property-gallery .location, #property-gallery iframe {
    height: calc(100vh - 68px - 1.5rem);
    width: 100%;
}

#property-gallery .tab-content img.single-image {
    height: calc(100vh - 68px - 1.5rem);
    width: 100%;
    object-fit: contain;
}

:nth-child(n + 2 of div.offcanvas-backdrop) {
    z-index: 1044;
}

.pro-offcanvas-form .offcanvas-header {
	padding: 2rem 1.5rem;
	align-items: flex-start;
}

.pro-offcanvas-form  .offcanvas-header {
	background-color: var( --pro--color-ruby-red );
	color: var( --pro--color-white );
}

.pro-offcanvas-form  .offcanvas-header h5 {
	color: var( --pro--color-white );
}

.pro-offcanvas-form  .offcanvas-body {
	padding: 2rem 1.5rem;
    background-color: var(--pro--color-cream);
}

.pro-offcanvas-form  .offcanvas-form-controls {
	display: flex;
}

.pro-offcanvas-form  .offcanvas-form-controls button {
	width: 50%;
	height: 45px;
	border-radius: 0;
    border: none;
    padding: 6px;
}

.pro-offcanvas-form  .offcanvas-form-cancel {
    background-color: var(--pro--color-charcoal);
    color: var(--pro--color-white);
}

.pro-offcanvas-form  .offcanvas-form-cancel:hover {
    background-color: var(--pro--color-charcoal-75);
}

.pro-offcanvas-form  .offcanvas-form-submit {
    background-color: var(--pro--color-ruby-red);
    color: var(--pro--color-white);
}

.pro-offcanvas-form  .offcanvas-form-submit:hover {
    background-color: var(--pro--color-ruby-red-75);
    color: var(--pro--color-charcoal);
}

.loading-overlay {
	position: absolute;
	background-color: var( --pro--color-cream );
	height: 100%;
	z-index: 100;
	width: 100%;
	background-image: url( 'assets/img/oval.svg' );
	background-repeat: no-repeat;
	background-size: 50px 50px;
	background-position: center;
}

.loading-overlay.modal-overlay {
	border-radius: 1.2rem;
	top: 0;
	left: 0;
}

.loading-overlay.success {
	background-image: none;
}

.loading-overlay .success-message {
	position: absolute;
	width: 100%;
	top: 50%;
	text-align: center;
	transform: translateY(-50%);
	padding: 0 1rem;
}

/** 21. Appraisal CTA **/
.appraisal-cta {
    padding-bottom: 96px;
}

.appraisal-cta .cta {
    gap: 32px;
    padding: 32px 20px;
    text-align: center;
}

.appraisal-cta .cta em {
    display: block;
}

.appraisal-cta label {
    padding-left: 26px;
    padding-right: 26px;
}

/** 22. Similar Properties **/
.similar-properties {
    padding-bottom: 96px;
}

/** 23. Employee Item **/
.agency-staff-list .tab-content, .agency-staff-list.single-office {
    margin-top: 64px;
}

.employee-card .employee-image img {
    object-position: top;
    width: 100%;
    height: 450px;
}

.employee-card .employee-information {
    padding-right: 20px;
    padding-left: 20px;
    position: relative;
    top: -20px;
}

.employee-card .employee-information .employee-name {
    width: 90%;
}

.employee-card a, .employee-card a:hover, .employee-contact a, .employee-contact a:hover {
    color: var(--pro--color-charcoal);
}

.employee-card .employee-bottom-info .item {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/** 24. Employee Profile **/
.employee-banner .employee-contact {
    margin-top: 40px;
}

.employee-banner hr {
    margin-top: 40px;
    margin-bottom: 40px;
}

.employee-bio {
    padding-top: 120px;
    padding-bottom: 120px;
}

.employee-bio .video-container {
    float: none;
    width: 100%;
    margin-bottom: 2rem;
}

.employee-bio .employee-video iframe {
    float: none;
    width: 100%;
    margin-bottom: 1rem;
    margin-right: 0;
}

.video-container .overlay {
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba( 0, 0, 0, 0.3 );
	border-radius: var( --pro--radius-image );
	width: 100%;
	height: 100%;
	z-index: 1;
}

.video-container .play-icon {
	position: absolute;
	cursor: pointer;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 80px;
	z-index: 10;
	line-height: 1;
}

.video-container .play-icon svg {
    width: 50px;
    fill: var(--pro--color-ruby-red);
}

/** 25. Single Post/Page Styles **/
.post-image img {
    object-position: center;
    object-fit: cover;
    width: 100%;
    height: 300px;
}

.post-attr {
    gap: 25px;
}

.post-attr .attr {
    position: relative;
}

.post-attr .attr:not(:first-of-type)::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    left: -12px;
    top: 0;
    background-color: var(--pro--color-charcoal-25);
}

/** 26. Post Comments **/
.comments-list #cancel-comment-reply-link {
	float: right;
}

.comment p {
	margin-bottom: 0;
}

.comment.parent .comment {
	padding-left: 1.5rem;
	padding-top: 1.5rem;
}

.comments-list .comment {
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--pro--color-charcoal-25);
	margin-bottom: 1.5rem;
}

.comments-list .comment:last-of-type {
	padding-bottom: 0;
	border-bottom: none;
	margin-bottom: 0;
}

.comments-list .comment-reply-link, .comments-list .comment-edit-link {
    color: var(--pro--color-ruby-red);
    text-decoration: none
}

.comment-notes {
    font-size: 0.875rem;
}

/** 27. Widgets **/
#sidebar-primary {
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}
.professionals-recent-posts .recent-post {
	margin-bottom: 32px
}

.professionals-recent-posts .recent-post:last-of-type {
	margin-bottom: 0;
}

.professionals-recent-posts span {
	display: block;
}

.professionals-recent-posts .post-title {
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
}

/** 28. Finance Calculators **/
input.stamp-calculate {
	border-radius:2px;
	letter-spacing:1px;
	margin:8px 0;
	padding:9px 0;
	text-transform:uppercase;
}

.state-module button, input.stamp-calculate {
	box-shadow: 0 1px 0 #ffffff inset, 0 -1px 0 #ffffff inset, 1px 0 0 #ffffff inset, -1px 0 0 #ffffff inset;
	color: #ffffff;
	font-size: 12px;
	font-weight: 400;
	text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
	width: 100%;
}

.state-module button {
	border-radius: 0;
	height: 29px;
	margin: 4px 0;
	opacity: 0.6;
	padding: 0 11px;
}

#changes-made {
	display: none;
	opacity: 0;
}

.state-module button.checked {
	opacity: 1;
}

.state-module button.checked::before {
	content: "»";
	float: left;
	font-family: Tahoma;
	margin-right: 5px;
}

.icon-stamp-exclamation::before, .icon-stamp-flag::before, .icon-stamp-home::before, .icon-stamp-money::before, .icon-stamp-print::before, .icon-stamp-usd::before, .icon-stamp-user::before {
	font-family: StampDuty;
	font-style: normal;
}

input.stamp-calculate:active {
	box-shadow: 0 2px 1px rgba(0, 0, 0, 0.25) inset;
}

.result-div .row {
	margin-bottom: 10px;
}

.all-float-left > * {
	float: left;
	margin-right: 2.3%;
}

#loan-repayment-calculator .col-50, #rentalyield-calculator .col-50 {
	width: 48%;
}

#loan-repayment-calculator .col-50:nth-child(1), #rentalyield-calculator .col-50:nth-child(1) {
	margin-right: 14px;
}

#loan-repayment-calculator .results, #rentalyield-calculator .results {
	padding-top: 0;
}

.col-60 {
    width: 100% !important;
}

.col-40 {
    margin-left: 0px !important;
    width: 100% !important;
}

.col-30 {
    width: 100%;
}

#state-modules {
	display: table;
	width: 100%;
}

#state-modules .state-module {
	display: none;
	margin: 5px 0;
	padding: 22px 0;
}

#state-modules .state-module:first-child {
	padding-top: 0;
}

#state-modules .state-module.long-input > div, #state-modules .state-module.long-input > div li {
	width: 100%;
}

#state-modules .state-module.long-input > div li input, #state-modules .state-module.long-input > div li select {
	width: 86%;
}

#state-modules ul > li {
	float: left;
	margin: 0;
	padding: 3px 0;
}

.result-module {
	margin-bottom: 3px;
}

.result-module:nth-child(2) {
	border: medium none;
}

.total-result {
	padding-top: 5px;
}

.total-result label {
	font-size: 16px;
	line-height: 1.2;
}

.result-module li {
	font-size: 12px;
	line-height: 0.85;
	margin: 0;
	padding: 0 0 0 25px;
	text-align: left;
}

.active-modules {
	display: block;
	padding-bottom: 5px;
}

#loan-repayment-calculator .colored-block, #rentalyield-calculator .colored-block {
	border-radius: 3px;
	margin-bottom: 20px;
}

#stamp-duty-calculator .control-group span i {
	line-height: 2.5 !important;
}

#stamp-duty-calculator .filled-circle {
	line-height: 1.5;
}

#loan-repayment-calculator, #rentalyield-calculator, #commercial-rental-yield-calculator {
	display: table;
	max-width: 820px;
	position: relative;
	width: 100%;
}

#commercial-rental-yield-calculator {
	max-width: 100%;
}

#stamp-duty-anchors {
	background: #ffffff none repeat scroll 0 0;
	display: table;
	font-size: 15px;
	padding-left: 15px;
}

#loan-repayment-calculator p, #rentalyield-calculator p, #commercial-rental-yield-calculator p {
	font-size: 14px;
	text-align: center;
}

#loan-repayment-calculator .floatLeft, #rentalyield-calculator .floatLeft, #commercial-rental-yield-calculator .floatLeft {
	float: left;
}

#loan-repayment-calculator .floatNone, #rentalyield-calculator .floatNone, #commercial-rental-yield-calculator .floatNone {
	float: none;
}

#loan-repayment-calculator h3, #rentalyield-calculator h3, #commercial-rental-yield-calculator .header {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	font-size: 22px;
	font-weight: 300;
	margin: 0;
	padding: 5px 15px;
}

#loan-repayment-calculator h4, #rentalyield-calculator h4, #commercial-rental-yield-calculator h4 {
	margin: 5px 0;
}

#loan-repayment-calculator .control-group, #rentalyield-calculator .control-group, #commercial-rental-yield-calculator .control-group {
	display: table;
	font-size: 15px;
	position: relative;
	width: 100%;
}

#loan-repayment-calculator .control-group span, #rentalyield-calculator .control-group span, #commercial-rental-yield-calculator .control-group span {
	display: inline-block;
	float: left;
	height: 40px;
	position: relative;
	text-align: center;
	width: 35px;
}

#loan-repayment-calculator label, #rentalyield-calculator label, #commercial-rental-yield-calculator label {
	display: table;
	font-size: 15px;
	font-weight: 300;
	margin: 1px 0;
	width: 100%;
}

#loan-repayment-calculator .top-label, #rentalyield-calculator .top-label, #commercial-rental-yield-calculator .top-label {
	margin-bottom: 5px;
}

#loan-repayment-calculator ul, #rentalyield-calculator ul, #commercial-rental-yield-calculator ul {
	margin: 0;
	padding: 0;
}

#loan-repayment-calculator li, #rentalyield-calculator li, #commercial-rental-yield-calculator li {
	display: inline-block;
	line-height: 1.8;
}

.result-list {
	font-size: 14px;
	margin-top: 5px;
}

.result-list li {
	border-top: 1px solid #4381f2;
	margin-bottom: 5px;
}

.result-list li:first-child {
	border: medium none;
}

.hidden {
	display: none;
}

.filled-circle {
	border-radius: 3px;
	display: inline-block;
	font-size: 12px;
	height: 19px;
	line-height: 1.7;
	margin-right: 7px;
	text-align: center;
	width: 19px;
}

#loan-repayment-calculator .control-group span i, #rentalyield-calculator .control-group span i, #commercial-rental-yield-calculator .control-group span i {
	line-height: 2.8;
}

.easy-padding {
	padding: 5px 15px 15px;
}

#loan-repayment-calculator input[type="text"], #loan-repayment-calculator select, #rentalyield-calculator input[type="text"], #rentalyield-calculator select, #commercial-rental-yield-calculator input[type="text"], #commercial-rental-yield-calculator select {
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
	display: inline-block;
	float: right;
	line-height: 1;
	margin: 8px 3px;
	padding: 0;
}

#loan-repayment-calculator #state-select, #rentalyield-calculator #state-select, #commercial-rental-yield-calculator #state-select {
	margin: 9px 3px;
}

#stamp-state-name {
	font-size: 18px;
	font-weight: 300;
	margin-bottom: 10px;
}

#loan-repayment-calculator .control-group input, #loan-repayment-calculator .control-group select, #rentalyield-calculator .control-group input, #rentalyield-calculator .control-group select, #commercial-rental-yield-calculator .control-group input, #commercial-rental-yield-calculator .control-group select {
	border: medium none;
	box-shadow: 0 0 0 #000000;
	font-size: 17px;
	width: 80%;
}

#loan-repayment-calculator .control-group input, #rentalyield-calculator .control-group input, #commercial-rental-yield-calculator .control-group input {
	height: 24px;
}

#loan-repayment-calculator .control-group select, #rentalyield-calculator .control-group select, #commercial-rental-yield-calculator .control-group select {
	height: 22px;
}

#loan-repayment-calculator input[type="radio"], #rentalyield-calculator input[type="radio"], #commercial-rental-yield-calculator input[type="radio"] {
	margin-left: 20px;
	margin-right: 5px;
}

.floatRight {
	float: right;
}

#loan-repayment-calculator .result-icons, #rentalyield-calculator .result-icons, #commercial-rental-yield-calculator .result-icons {
	float: right;
	font-size: 15px;
	line-height: 0;
}

#loan-repayment-calculator .result-icons i, #rentalyield-calculator .result-icons i, #commercial-rental-yield-calculator .result-icons i {
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
	color: #ffffff;
	display: inline;
	line-height: 2;
	padding: 0 3px;
}

.pro-theme .row > * {
	padding-left: 0;
	padding-right: 0;
}

.pro-theme .control-group span, .pro-theme .filled-circle, .pro-theme h3,  .pro-theme .header {
	background: var(--pro--color-charcoal);
}

.pro-theme .control-group {
	border: 1px solid var(--pro--color-charcoal);
	border-radius: 2px;
}

.pro-theme .colored-block {
	border: 1px solid var(--pro--color-charcoal);
	background: #fff;
}

.pro-theme, .pro-theme input, .pro-theme select {
	color: #666666;
}

.pro-theme .control-group span, .pro-theme .filled-circle, .pro-theme h3 {
	color: #FFF;
}

.pro-theme h3 {
	border-bottom: 1px solid var(--pro--color-charcoal);
	font-family: "sourceserif-regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 18px !important;
}

.pro-theme .state-module button, .pro-theme input.stamp-calculate {
	background: var( --pro--color-ruby-red ) !important;
	border: none;
	color: #ffffff;
	font-size: 16px !important;
	padding: 8px;
    text-shadow: none;
    border-radius: 100px;
}

.pro-theme input.stamp-calculate:active, .pro-theme input.stamp-calculate:hover {
	background: var( --pro--color-ruby-red-75 ) !important;
	border: none;
}

.pro-theme .total-result {
	border-top: 1px solid var(--pro--color-charcoal);
}

#stamp-duty-calculator .result-icons {
	display: none !important;
}

/** 29. Auctions/Inspections **/
.inspections .inspection-wrapper {
    padding: 20px;
}

.inspection-image img {
    width: 100%;
}

.inspection-auction img, .inspection-date img {
    margin-top: -4px;
}

.inspection-bbc {
    border-top: 1px solid var(--pro--color-charcoal-25);
    padding-top: 20px;
    margin-top: 20px;
    height: auto;
    margin-bottom: 0;
}

.inspection-bbc .item {
    color: var(--pro--color-charcoal);
}

.inspection-bbc .item::after {
    background-color: var(--pro--color-charcoal);
}

/** 30. Testimonials **/
.testimonial-wrapper {
    padding: 20px;
}

.testimonial-wrapper .testimonial-image img {
    width: 100%;
}

.testimonial-wrapper .testimonial-author {
    font-weight: 500;
    font-size: 1.2rem;
    padding-bottom: 0;
    margin-bottom: 0;
}

.testimonial-bbc {
    border-top: 1px solid var(--pro--color-charcoal-25);
    padding-top: 20px;
    margin-top: 20px;
    height: auto;
    margin-bottom: 0;
}

/** 31. Contact Page **/
.office-image {
    padding: 20px;
}

.office-image img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.office-details .h4 {
    font-family: var(--pro--font-poppins);
    font-weight: 500;
}

/** 32. Promotions **/
.state-promotion img {
    height: 150px;
    width: 100%;
    object-position: center;
    object-fit: cover;    
}

@media screen and (min-width: 768px) {
    /** 3. Base Styles **/
    body {
        font-size: 16px;
        font-family: var(--pro--font-poppins);
        color: var(--pro--color-charcoal);
    }
    
    h1, .h1 {
        font-family: var(--pro--font-sourceserif);
        font-size: 4.0rem;
        font-weight: 500;
    }
    
    h2, .h2 {
        font-family: var(--pro--font-sourceserif);
        font-size: 3.062rem;
        font-weight: 400;
    }
    
    h3, .h3 {
        font-family: var(--pro--font-sourceserif);
        font-size: 2.438rem;
        font-weight: 400;
    }
    
    h4, .h4 {
        font-family: var(--pro--font-sourceserif);
        font-size: 1.938rem;
        font-weight: 400;
    }
    
    h5, .h5 {
        font-family: var(--pro--font-sourceserif);
        font-size: 1.562rem;
        font-weight: 400;
    }
    
    h6, .h6 {
        font-family: var(--pro--font-sourceserif);
        font-size: 1.250rem;
        font-weight: 400;
    }

    /** 4. Header Styles **/
    header:not(.page-header) {
        height: 90px;
        padding: 14px 24px; 
    }

    /** 6. Site Navigation **/
    .navigation-menu {
        gap: 20px;
    }

    .pros-spmenu-vertical {
        width: 400px;
    }

    .pros-spmenu-right {
        right: -400px
    }

    .pros-spmenu-push-toleft {
        left: -400px
    }

    /** 7. Home Banner **/
    .home-banner-content h1, .home-banner-content .banner-buttons {
        width: auto;
    }

    /** 28. Finance Calculators **/
    #loan-repayment-calculator .control-group input, #loan-repayment-calculator .control-group select, #rentalyield-calculator .control-group input, #rentalyield-calculator .control-group select, #commercial-rental-yield-calculator .control-group select {
        width: 87%;
    }

    .col-60 {
	    width: 60% !important;
    }

    .col-40 {
        margin-left: 15px !important;
        width: 37% !important;
    }

    .col-30 {
        width: 30% !important;
    }

    /** 13. Property Search Form **/
    .ui-autocomplete {
        background-color: var( --pro--color-white );
        padding: 1rem 0;
        max-height: 250px;
        overflow-y: auto;
    }

    .home .property-search .container-fluid {
        padding: 0;
    }

    .property-search .search-wrapper {
        padding-left: 26px;
        background-color: var(--pro--color-white);
    }

    .ui-autocomplete .ui-autocomplete-category {
        padding: 0.5rem 1rem 0;
        font-size: 13px;
    }

    .ui-autocomplete .ui-autocomplete-category:not(:first-of-type) {
        padding-top: 1rem;
    }

    .ui-autocomplete .ui-menu-item {
        padding: 0;
    }

    .ui-autocomplete .ui-menu-item-wrapper {
        padding: 0.5rem 1rem;
    }

    .ui-menu .ui-state-focus, .ui-menu .ui-state-active {
        margin: 0;
        background-color: var( --pro--color-lightgray );
    }

    .property-search select, .property-search input {
        height: 60px;
        color: var(--pro--color-charcoal);
        border-radius: 0;
    }

    .submit-container {
        padding: 6px 6px 6px 0;
    }

    .submit-container button {
        height: 48px;
        padding: 6px 26px;
        width: auto;
    }

    .property-search button.dropdown-toggle {
        background-color: transparent !important;
    }

    #advanced-search-wrapper button.dropdown-toggle {
        background-color: #ffffff !important;
    }

    .property-search select {
        width: 100%;
        padding: 8px 12px 8px 20px;
        appearance: none;
        -webkit-appearance: none;
    }

    .property-search .col-md-auto:first-of-type select {
        border-top-left-radius: var( --pro--radius-button );
        border-bottom-left-radius: var( --pro--radius-button );
    }

    .property-search .bootstrap-select .btn {
        border-right: 0;
        border-left: 0;
        padding: 8px 12px;
        font-size: .875rem;
        color: var(--pro--color-charcoal);
        height: 60px;
        border: none;
        margin-bottom: 0;
    }

    .bootstrap-select>.dropdown-toggle.bs-placeholder, .bootstrap-select>.dropdown-toggle.bs-placeholder:active, .bootstrap-select>.dropdown-toggle.bs-placeholder:focus, .bootstrap-select>.dropdown-toggle.bs-placeholder:hover {
        color: var(--pro--color-charcoal);
    }

    #advanced-search-wrapper .bootstrap-select .btn {
        height: 62px;
        padding-left: 1.625rem;
        padding-right: 1.625rem;
        border-radius: var(--bs-border-radius-pill);
    }

    .property-search .bootstrap-select .btn:active, .property-search .bootstrap-select .btn:focus {
        outline: 0 !important;
    }

    .property-search .bootstrap-select button[data-id="department"], select#department {
        width: 140px;
        border-radius: 0;
    }

    .property-search .bootstrap-select button[data-id="type"], select#type {
        width: 90px;
        padding-left: 12px;
        border-radius: 0;
    }

    .bootstrap-select .dropdown-item {
        font-size: .875rem;
        color: var(--pro--color-charcoal);
    }

    .bootstrap-select .dropdown-item:focus, .bootstrap-select .dropdown-item:hover {
        background-color: var(--pro--color-charcoal-25);
    }

    .bootstrap-select .dropdown-item.active, .bootstrap-select .dropdown-item:active {
        background-color: var(--pro--color-ruby-red);
        color: var(--pro--color-white);
    }

    .property-search .bootstrap-select::after, .property-search .bootstrap-select::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 60%;
        top: 20%;
        background-color: #ced4da;
        z-index: 1;
    }

    .property-search .listings-search {
        position: relative;
    }

    .property-search input, .property-search .rounded-start input {
        padding-left: 25px;
        padding-right: 130px;
        border: none;
    }

    .property-search .form-control:focus {
        box-shadow: none;
    }

    .property-search .form-check-inline {
        margin-right: 2rem;
    }

    .property-search .form-check-input[type="checkbox"] {
        border-radius: 100%;
        width: 1.4em;
        height: 1.4em;
        padding: 0;
        border: 1px solid #ffffff;
    }

    .property-search .form-check-input:checked {
        background-color: var( --pro--color-darkgray );
    }

    .property-search .form-check-input:focus {
        box-shadow: none;
    }

    .property-search .form-check-label {
        margin-bottom: 0;
        margin-top: 6px;
        margin-left: 8px;
        color: #fff;
    }

    .property-search.dark-border .form-check-label {
        color: var( --pro--color-darkgray );
    }

    .property-search .advanced-search {
        position: absolute;
        top: 0;
        right: 15px;
        color: var(--pro--color-charcoal);
        width: auto;
        text-align: initial;
    }

    .property-search .advanced-search.collapsed::after {
        transform: rotate(0deg);
    }

    .property-search .advanced-search::after {
        content: '';
        margin-left: 15px;
        background-image: url('/wp-content/themes/pros_au_member_v25/assets/img/down-arrow.svg');
        width: 16px;
        height: 16px;
        background-size: 12px 6px;
        background-position: center;
        background-repeat: no-repeat;
        display: inline-block;
        transform: rotate(180deg);
        vertical-align: sub;
    }

    .property-search input::placeholder {
        color: var(--pro--color-charcoal);
    }

    .property-search input::-ms-input-placeholder {
        color: var(--pro--color-charcoal);
    }

    .property-search input::-webkit-input-placeholder {
        color: var(--pro--color-charcoal);
    }

    .property-search .bootstrap-select {
        width: 100% !important;
    }

    .property-search #advanced-search-wrapper .bootstrap-select::after {
        display: none;
    }

    .property-search .bootstrap-select .dropdown-toggle::after {
        margin-left: auto;
        vertical-align: middle;
        border: none;
        background-image: url('/wp-content/themes/pros_au_member_v25/assets/img/down-arrow.svg');
        width: 16px;
        height: 16px;
        background-repeat: no-repeat;
        background-size: 12px 6px;
        background-position: center;
    }

    .property-search .bootstrap-select.dropup .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .property-search .bootstrap-select .dropdown-toggle .filter-option {
        line-height: 45px;
    }

    .property-search .bootstrap-select .btn {
        padding: 8px 12px;
    }

    body:not(.home) .property-search .bootstrap-select button {
        margin-bottom: 0;
    }

    body:not(.home) .property-search input {
        border-radius: 0;
    }


    body:not(.home) .property-search .bootstrap-select .btn {
        padding-left: 12px;
        padding-right: 12px;
    }

    #advanced-search-wrapper .bootstrap-select .dropdown-toggle .filter-option {
        line-height: 45px;
    }

    /** 17. Search Results **/
    .results-bar .col {
        min-width: 220px;
    }

    /** 16. Property Item **/
    .grid-large .property-item .property-info .street-address {
        width: 60%;
    }

    .grid-large .property-item .property-info .locality::after {
        height: 40px;
        background-size: contain;
    }

    .grid-large .property-item .image .status {
        font-size: 1.25rem;
    }

    .grid-large .property-item .bbc {
        gap: 35px;
    }

    .grid-large .property-item .bbc .item::after {
        right: -17.5px;
    }

    .grid-large .property-item:hover .image img.main-image, .property-item:hover .image img.main-image {
        clip-path: polygon(0 0, 100% 0%, 100% 100%, 100% 100%, 0 100%);
    }

    .property-item:hover .property-info .street-address, .property-item:hover .property-info .locality {
        opacity: 0;
    }

    .property-item:hover .hide-bbc-onhover {
        opacity: 0;
    }

    /** 21. Appraisal CTA **/
    .appraisal-cta .cta em {
        display: inline-block;
    }

    /** 15. Agency Item **/
    .agency-location #gmap {
        height: 532px;
    }

    .office-team-links {
        gap: 40px;
    }

    .office-team-links a {
        position: relative;
        line-height: 1;
    }

    .office-team-links a::after {
        content: '';
        right: -20px;
        height: 100%;
        width: 1px;
        background-color: var(--pro--color-charcoal-25);
        position: absolute;
    }

    .office-team-links a:last-of-type::after {
        display: none;
    }

    /** 19. Property Details **/
    #property-gallery .tab-content img {
        height: 380px;
    }

    .property-bbc .property-bbc-row .col {
        position: relative;
    }

    .property-bbc .property-bbc-row .col::after {
        content: '';
        height: 100%;
        width: 1px;
        background-color: var(--pro--color-ruby-red);
        position: absolute;
        right: -10px;
    }

    .property-bbc .property-bbc-row .col:last-of-type::after {
        display: none;
    }

    /** 18. Pagination **/
    .pagination .page-item .page-link, .pagination .page-item .page-numbers, .pagination .page-item span {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }

    /** 29. Auctions/Inspections **/ 
    .inspection-image img {
        width: 250px;
        height: 100%;
        object-position: center;
        object-fit: cover;
    }

    /** 30. Testimonials **/ 
    .testimonial-wrapper .testimonial-image img {
        width: 250px;
        height: 100%;
        object-position: center;
        object-fit: cover;
    }

    /** 32. Promotions **/
    .state-promotion img {
        height: auto;
        width: 100%;
        object-position: center;
        object-fit: cover;  
    }
}

@media screen and (min-width: 992px) {
    /** 3. Base Styles **/
    .ratio-video {
        --bs-aspect-ratio: 45%;
    }

    .sticky-lg-top {
        top: 95px;
        z-index: 10;
    }

    .hover-slide-up {
        transform: translateY(0);
        transition: transform .15s ease-in-out;
    }
    
    .hover-slide-up:hover {
        transform: translateY(-10px);
    }

    /** 4. Header Styles **/
    header:not(.page-header) {
        height: 82.2px;
        padding: 14px 40px;
    }

    .site-logo {
        width: calc(98px + 16px + 199.01px);
    }

    .home .header-logo {
        gap: 16px;
        top: 23.1px;
        position: absolute;
        align-items: start;
        padding-left: 0.5rem;
    }

    .home .header-logo .logo-mark {
        width: 98px;
        height: 119px;
        transition: all 300ms ease-in-out;
    }

    .home .header-logo.shrink .logo-mark {
        width: 29.47px;
        height: 35.58px;
    }

    body:not(.home) .header-logo {
        gap: 15px;
        align-items: center;
    }
    
    body:not(.home) .header-logo .logo-mark {
        width: 29.47px;
        height: 35.58px;
    }

    .home .header-logo .word-mark {
        position: relative;
        top: 5px;
        left: -1px;
    }
    
    /** 6. Site Navigation **/
    .home-menu {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

    .home-menu a {
        color: var(--pro--color-white);
        text-decoration: none;
        position: relative;
        transition: all 300ms ease;
        padding: 0.5rem 0.5rem;
    }

    .home-menu a:hover {
        transform: translateY(-3px);
    }
    
    .home-menu a::before, .home-menu .current-menu-item a::before {
        content: "";
        position: absolute;
        z-index: -1;
        bottom: -1px;
        left: 0;
        right: 0;
        height: 5px;
        background-color: var(--pro--color-ruby-red);
        transform: scaleY(0);
        transform-origin: bottom;
        transition: transform 0.3s ease;
    }

    .home-menu a:hover::before, .home-menu .current-menu-item a::before {
        transform: scaleY(0.5);
    }

    /** 7. Home Banner **/
    .home-banner {
        height: auto;
        padding: 0;
    }

    .home-banner .home-banner-image {
        height: calc(100vh - 82.2px);
        padding: 0 40px 40px;
    }

    .home-banner .home-banner-image.member-bar {
        height: calc(100vh - 116.2px);  
    }

    .home-banner .banner-image {
        clip-path: polygon(0 0, 100% 0%, 100% 100%, 100% 100%, 0 60px);
    }

    .home-banner-content {
        position: absolute;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
    }

    .home-banner-content h1 {
        width: 55%;
    }

    .home-banner-content .banner-buttons {
        width: 80%;
    }

    .home-banner-content > .container-fluid {
        padding-left: 40px;
        padding-right: 40px;
        padding-bottom: 40px;;
    }

    /** 9. Home Panels **/
    .home-panels {
        padding-bottom: 96px;
    }

    .home-panels .col {
        background-color: var(--pro--color-white);
        transition: all .15s ease;
        padding: 60px 0;
        border-top: 0.5px solid #CBD4D6
    }

    .home-panels .col:last-of-type {
        border-bottom: 0.5px solid #CBD4D6;
    }

    .home-panels .col:hover {
        background-color: var(--pro--color-cream);
        padding: 20px 20px 20px 0;
    }

    .home-panels .panel {
        height: 90px;
        overflow: hidden;
        transition: height .15s ease, padding .15s ease;
    }

    .home-panels .col:hover .panel {
        height: 250px;
        padding: 20px 48px 20px 0
    }

    .home-panels .panel .panel-title {
        transform: translateX(0);
        transition: transform .15s ease;
        position: relative;
    }

    .home-panels .panel .panel-icon .icon {
        opacity: 1;
        transition: opacity .15s ease;
        object-position: center;
    }

    .home-panels .col:hover .panel .panel-icon .icon {
        opacity: 0;
    }

    .home-panels .col:hover .panel .panel-title {
        transform: translateX(-64px);
    }

    .home-panels .panel .panel-image {
        width: 0;
        object-fit: cover;
        object-position: center;
        opacity: 0;
        transition: all .15s ease;
        padding-left: 20px;
    }

    .home-panels .col:hover .panel .panel-image {
        display: none !important;
    }

    .home-panels .panel p {
        width: 380px;
    }

    .home-panels .col:hover .panel p {
        width: 294px;
    }

    .home-panels .panel-text svg {
        transform: rotate(0);
        transition: transform .15s ease;
    }

    .home-panels .col:hover .panel-text svg {
        transform: rotate(45deg);
    }

    /** 11. Home Blog **/
    .home-blog .col:nth-child(2n){
        padding-top: 48px;
    }

    /** 12. Testimonials **/
    .testimonial-text {
        padding: 0 20%;
    }

    /** 16. Property Item **/
    /*.property-item:hover .property-info .locality::after {
        transform: rotate(45deg);
    }*/

    .grid-large .property-item {
        font-size: 1.5rem;
    }

    .grid-large .property-item .property-info .address {
        line-height: 1.75rem;
    }

    .grid-large .property-item .image img.main-image {
        height: 420px;
    }

    /** 19. Property Details **/
    .property-images .gallery-container {
        height: 600px;
    }

    .property-images .gallery-image img {
        height: 600px;
    }

    .property-images .slick-arrow.slick-prev {
        left: 40px;
    }
    
    .property-images .slick-arrow.slick-next {
        right: 40px;
    }

    .property-bbc .property-bbc-row {
        gap: 32px;
    }

    .property-bbc .property-bbc-row .col::after {
        right: -16px;
    }

    #gmap {
        height: 532px;
    }

    .employee-banner .container {
        padding-left: 150px;
        padding-right: 150px;
    }

    /** 23. Employee Item **/
    .employee-card .employee-image img {
        height: 350px;
    }

    /** 24. Employee Profile **/
    .employee-bio .employee-video iframe {
        float: left;
        width: 560px;
        margin-right: 3rem;
        margin-bottom: 0;
    }

    .employee-bio .video-container {
        width: 35%;
        margin-right: 3rem;
        margin-bottom: 1.5rem;
        float: left;
        position: relative;
        
    }

    /** 25. Single Post/Page Styles **/
    .post-image img {
        height: 600px;
    }

    .sticky-post-banner {
        position: sticky;
        z-index: 10;
        top: 82px;
    }

    .post-attr .attr:not(:first-of-type)::after {
        left: -20px;
    }

    .post-attr {
        gap: 40px;
    }

    /** 29. Auctions/Inspections **/
    .inspection-image img {
        width: 350px;
        height: revert-layer;
    }

    /** 30. Testimonials **/
    .testimonial-wrapper .testimonial-image img {
        width: 350px;
    }

    /** 31. Contact Page **/
    .office-image {
        padding: 20px 0 20px 20px;
    }
}

@media screen and (min-width: 1200px) {
    /** 9. Home Panels **/
    .home-panels .panel {
        height: 65px;
    }

    .home-panels .col:hover .panel .panel-image {
        opacity: 1;
        height: 250px;
        width: 300px;
        display: inline !important;
    }

    .home-panels .panel p {
        width: 487px;
    }

    /** 7. Home Banner **/
    .home-banner-content h1 {
        width: auto;
    }

    .home-banner-content:not(.additional-buttons) h1.extra-wide, .home-banner-content.additional-buttons h1.extra-wide {
        width: 85%;
    }

    .home-banner-content .banner-buttons {
        width: auto;
    }

    .home-banner-content h1 {
        font-size: 3rem;
    }

    .home-banner-content.additional-buttons h1.extra-wide {
        font-size: 2.8rem;
    }

    /** 16. Property Item **/
    .home .property-item, #landing-wrapper .property-item {
        margin: 30px;
    }

    .grid-large .property-item {
        font-size: 2.25rem;
    }

    .grid-large .property-item .image img.main-image {
        height: 450px;
    }

    .grid-large .property-item .property-info .address {
        line-height: 2.5rem;
    }

    .grid-large .property-item .image .furnished img {
        width: 100px;
        height: 100px;
    }

    .grid-large .property-item .bbc {
        gap: 80px;
    }

    .grid-large .property-item .bbc .item::after {
        right: -40px;
    }

    /** 29. Auctions/Inspections **/
    .inspection-image img {
        width: 450px;
    }
}

@media only screen and (min--moz-device-pixel-ratio: 2) and (min-width: 1200px), only screen and (-o-min-device-pixel-ratio: 2/1) and (min-width: 1200px),
only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 1200px), only screen and (min-device-pixel-ratio: 2) and (min-width: 1200px) {
    /** 7. Home Banner **/
    .home-banner-content h1 {
        font-size: 3rem;
        width: 65%;
    }

    .home-banner-content.additional-buttons h1 {
        font-size: 2.2rem;
        width: 50%;
    }
}

@media screen and (min-width: 1400px) {
    /** 9. Home Panels **/
    .home-panels .col:hover .panel {
        height: 300px;
    }

    .home-panels .col:hover .panel .panel-image {
        height: 300px;
        width: 400px;
    }

    /** 7. Home Banner **/
    .home-banner-content h1 {
        font-size: 4rem;
    }

    .home-banner-content:not(.additional-buttons) h1.extra-wide {
        width: 80%;
    }

    .home-banner-content.additional-buttons h1.extra-wide {
        width: 58%;
        font-size: 3rem;
    }

    /**13. Property Search Form **/
    .home .property-search {
        max-width: 960px;
    }

    /** 15. Property Item **/
    .grid-large .property-item .image img.main-image {
        height: 547px;
    }
}

@media only screen and (min--moz-device-pixel-ratio: 2) and (min-width: 1400px), only screen and (-o-min-device-pixel-ratio: 2/1) and (min-width: 1400px),
only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 1400px), only screen and (min-device-pixel-ratio: 2) and (min-width: 1400px) {
    /** 7. Home Banner **/
    .home-banner-content h1 {
        width: 100%;
        font-size: 3rem;
    }
}

@media screen and (min-width: 1980px) {
    /** 7. Home Banner **/
    .home-banner-content h1, .home-banner-content h1.extra-wide, .home-banner-content.additional-buttons h1.extra-wide {
        font-size: 5rem;
    }

    .home-banner-content:not(.additional-buttons) h1.extra-wide {
        width: 80%;
    }

    .home-banner-content.additional-buttons h1.extra-wide {
        width: 65%;
    }
}