@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Lora:wght@400;500;600;700&family=Open+Sans:wght@300;400;500;600;700;800&family=Roboto:wght@300;400;500;700;900&display=swap');

body {
    --header-height: 10vh;
}

.cursor-pointer {
    cursor: pointer !important;
}

.color-me {
    color: #e31837 !important;
}

.white {
    color: #FFFFFF;
}

.text-me {
    color: #e31837 !important;
}

.bg-me {
    background-color: #e31837 !important;
}

.bg-me-light {
    background-color: #e31837 !important;
}

.bg-me-agentbar {
    background: linear-gradient(#fff 33.33%, #e31837 33.33%, #e31837 66.66%, #fff 66.66%);
    box-shadow: 0 15px 35px rgba(50, 50, 93, .1), 0 5px 15px rgba(0, 0, 0, .07) !important;
    height: 120px;
}

.fill-me {
    fill: #e31837 !important;
}

.btn-main {
    color: #fff;
    border-color: var(--button-primary);
    background-color: var(--button-primary);
    box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
}

.btn-main:hover {
    color: #fff;
    border-color: var(--button-primary-hover);
    background-color: var(--button-primary-hover);
}

.btn-main:focus,
.btn-main.focus {
    box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08), 0 0 0 0 rgba(17, 205, 239, .5);
}

.btn-main.disabled,
.btn-main:disabled {
    color: #fff;
    border-color: var(--button-primary-disabled);
    background-color: var(--button-primary-disabled);
}

.btn-main:not(:disabled):not(.disabled):active,
.btn-main:not(:disabled):not(.disabled).active,
.show>.btn-main.dropdown-toggle {
    color: #fff;
    border-color: var(--button-primary-active);
    background-color: var(--button-primary-active);
}

.btn-main:not(:disabled):not(.disabled):active:focus,
.btn-main:not(:disabled):not(.disabled).active:focus,
.show>.btn-main.dropdown-toggle:focus {
    box-shadow: none, 0 0 0 0 rgba(17, 205, 239, .5);
}

.btn-main-white {
    color: #e31837;
    border-color: #fff;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
}

.btn-main-white:hover {
    color: #e31837;
    border-color: white;
    background-color: white;
}

.btn-main-white:focus,
.btn-main-white.focus {
    box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08), 0 0 0 0 rgba(255, 255, 255, .5);
}

.btn-main-white.disabled,
.btn-main-white:disabled {
    color: #e31837;
    border-color: #fff;
    background-color: #fff;
}

.btn-main-white:not(:disabled):not(.disabled):active,
.btn-main-white:not(:disabled):not(.disabled).active,
.show>.btn-main-white.dropdown-toggle {
    color: #e31837;
    border-color: white;
    background-color: #e6e6e6;
}

.btn-main-white:not(:disabled):not(.disabled):active:focus,
.btn-main-white:not(:disabled):not(.disabled).active:focus,
.show>.btn-main-white.dropdown-toggle:focus {
    box-shadow: none, 0 0 0 0 rgba(255, 255, 255, .5);
}

.btn-outline-me,
.btn.btn-outline-me {
    color: #fff;
    border-color: var(--primary-color-light);
    background-color: transparent;
    background-image: none;
}

.btn-outline-me:hover {
    color: #fff;
    border-color: var(--primary-color-light);
    background-color: var(--primary-color-light);
}

.btn-outline-me:focus,
.btn-outline-me.focus {
    box-shadow: 0 0 0 0 rgba(94, 114, 228, .5);
}

.btn-outline-me.disabled,
.btn-outline-me:disabled {
    color: var(--primary-color-light);
    background-color: transparent;
}

.btn-outline-me:not(:disabled):not(.disabled):active,
.btn-outline-me:not(:disabled):not(.disabled).active,
.show>.btn-outline-me.dropdown-toggle {
    color: #fff;
    border-color: var(--primary-color-light);
    background-color: var(--primary-color-light);
}

.btn-outline-me:not(:disabled):not(.disabled):active:focus,
.btn-outline-me:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-me.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(94, 114, 228, .5);
}

.card-header {
    color: #525F7F;
}

.alert-info--blue {
    color: #0c5460 !important;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.alert-info--blue .alert-link {
    color: #062c33;
}

.alert-link {
    font-weight: 700;
}

/* Make the image fully responsive */
.carousel-inner img {
    width: 100%;
    /* height: 200px; */
    overflow: hidden;
}

/* Make the ad image "AD" tag" */
.adtag {
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: #43352c no-repeat;
    color: #fff;
    /* z-index: 10; */
    padding: 4px;
    opacity: 0.5;
}

.multi-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Bookmark */

.right_float_bar {
    width: 35px;
    height: 35px;
    position: fixed;
    bottom: 20%;
    right: 0;
    margin-top: -350px;
    z-index: 9999;
    background-color: #e31837;
    border-radius: 10px 0px 0px 10px;
    -webkit-transition: width 0.3s;
    transition: width 0.3s;
    display: flex;
    flex-direction: row;
}

.right_float_bar:hover {
    width: 80px;
}

.right_float_bar_content {
    width: 45px;
    background-color: #fff;
    line-height: 35px;
    text-align: center;
    vertical-align: center;
    font-weight: 600;
    font-size: 20px;
}

.right_float_join_bar {
    position: fixed;
    width: 35px;
    height: 35px;
    bottom: 36%;
    right: 0;
    margin-top: -350px;
    z-index: 1200;
    background-color: #e31837;
    border-radius: 10px 0px 0px 10px;
    display: flex;
    flex-direction: row;
    -webkit-transition: width 0.3s;
    transition: width 0.3s;
}

.right_float_join_bar:hover {
    width: 100px;
}

.right_joinmehome_bar_content {
    width: 60px;
    background-color: #fff;
    line-height: 35px;
    text-align: center;
    vertical-align: center;
    font-weight: 600;
    font-size: 8px;
}


.subemailbar {
    display: flex;
    height: 45px;
    justify-content: space-between;
    align-items: center;
    -webit-justify-content: space-between;
    border: 1px solid #f0f0f0;
    background: #fff;
}

.select-all {
    float: left;
    height: 18px;
    width: 60px;
    line-height: 18px;
    padding: 0px 0 0px 30px;
    white-space: nowrap;
}

.select-all input {
    cursor: pointer;
}

.select-all label {
    cursor: pointer;
}

.emailsubmit-btn {
    display: block;
    width: 250px;
    height: 45px;
    line-height: 45px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    /* font-weight: 900; */
    background-color: #e31837;
    overflow: hidden;
}

.emailsubmit-btn a:hover {
    color: #fff;
    cursor: pointer;
}

/* Nave Bar*/
.nav-link:hover {
    color: var(--nav-hover);
}

.index__menu {
    margin-top: 0px;
    margin-left: 5px;
}


@media (max-width: 992px) {
    .navbar-nav .top-link {
        border-top: 0px;
        background-color: unset !important;
    }
}

.header-global {
    padding-top: var(--header-height);
}

/* .navbar-wrapper-index
{
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
    margin-top:25px;
    display: flex !important;
    flex-basis: auto;
} */

.navbar-wrapper {
    height: 10vh;
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
    /* margin-top:5px; */
    display: flex !important;
    flex-basis: auto;
}

.navbar-toggler {
    color: rgba(255, 255, 255, .95);
    border-color: transparent;
}

[v-cloak] {
    display: none !important;
}

.navbar-main {
    /* border-top: 5px solid #adb5bd; */
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    background-color: #f6f9fc;
}

.navbar-secondary {
    background: transparent;
    position: absolute;
    z-index: 100;
}

/* .nav-item .top-link{
  border-top: 5px solid #adb5bd;
} */


@media (max-width: 992px) {
    .navbar-nav .top-link {
        border-top: 0px;
        background-color: unset !important;
    }
}



.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
    font-family: 'Open Sans', sans-serif;
}


.nav-item .active {
    font-weight: bold;
    color: var(--nav-active);
    /*font-size: large;*/
    /* border-top: 5px solid #e31837; */
    border-radius: 0px;
}

.navbar-nav .nav-link .nav-link-inner--text {

    margin-left: .25rem;
    font-style: normal;
    font-weight: 400;
    font-size: 11pt;
    font-family: 'Open Sans', sans-serif;
}


.header_logo_index {

    /*position: absolute;*/
    top: 0px;
    margin-left: 100px;
    width: 100px;
    height: 100px;
}

.index__logo {
    /*position: absolute;*/
    /* top: 0px; */
    margin-left: 100px;
    width: 100px;
    max-height: 100px;
    height: 100%;
}

.index__logo-img {
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    max-height: 80px;
}

.index-header-lang,
.index-header-lang:hover {
    background-color: #ffffff;
    color: #000000;
}

.header-lang,
.header-lang:hover {
    background-color: #8898AA;
    color: #ffffff;
}

.index-menu-toggle-icon {
    color: #ffffff;
}

.menu-toggle-icon {
    color: #000000;
}

#my_listings .dropdown-menu:before {
    position: absolute;
    z-index: -5;
    bottom: 100%;
    left: 20px;
    display: block;
    width: 16px;
    height: 16px;
    content: '';
    transform: rotate(-45deg) translateY(1rem);
    border-radius: .2rem;
    background: #fff;
    box-shadow: none;
}


#card__bar {

    border-left: 5px solid #e31837;


}


.titletag {
    border-right: 5px solid red;
    height: 56px;
    width: 0px;
    float: left
}


/* Evaluation*/

.progress-bar {
    background-color: #ad0f07 !important;
}

.evaluation-process {
    background-color: rgba(239, 239, 239, 0.9);
}

.evaluation-process_title {
    border-bottom: 2px solid #525f7f;
}

.map {
    /*display:inline;*/
    width: 100%;
    height: 500px;
}

.card .active {
    background-color: #e31837;
}

.card .active span {
    color: white;
}

.ui-menu {
    border: 1px solid #efefef;
    list-style: none;
    margin: 0;
    padding: 5px;
    background: #fff;
}

.ui-menu .ui-menu-item {
    margin: 0;
    cursor: pointer;
    /* list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7); */
}

.ui-menu li:hover {
    background-color: #aadaff;
}

.total-title {
    font-size: 20px;
}

.total-value {
    font-size: 26px;
    color: var(--primary-color);
}


#evaluation-title {

    padding: 1.8em;
}

#evaluation-title h2 {
    font-size: 2.3em;
    color: #000;
    font-style: normal;
    font-weight: normal;
    line-height: 1.3;
}

ul.buttons {
    list-style: none;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0;
}

ul.buttons .btn-item {
    background-color: #e4e5e7;
    margin-bottom: 1px;
    padding: 10px;
    border: 1px solid #e4e5e7;
    width: 250px;
    cursor: pointer;
}

ul.buttons .btn-item:hover {
    background-color: #E4711A;
    color: #FFF;
}

ul.buttons .btn-item.active {
    background-color: #e31837;
    color: #FFF;
}

#stratadress {
    cursor: pointer;
    /* border: 1px solid #636466; */
    font-size: 1em;
    color: black;
    background-color: white;
}

#my_listings .dropdown-menu:before {
    position: absolute;
    z-index: -5;
    bottom: 100%;
    left: 20px;
    display: block;
    width: 16px;
    height: 16px;
    content: '';
    transform: rotate(-45deg) translateY(1rem);
    border-radius: .2rem;
    background: #fff;
    box-shadow: none;
}

/* New Evaluation page */
#evaluation-img {
    position: absolute;
    bottom: -150px;
    left: -50px;
    object-fit: cover;
    max-width: 400px;
    border: 2px solid;
    padding: 10px;
    box-shadow: 5px 10px;
}

.evaluation-content-container .evaluation-left,
.evaluation-content-container .evaluation-right {
    border-color: #50555B !important;
}


.evaluation-content-container .evaluation-icon {
    width: calc(45px + 1.2rem);
    height: calc(45px + 1.2rem);
}

.evaluation-content-container .evaluation-icon .icon {
    width: 100%;
    height: 100%;
}

.evaluation-form {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    background: #ffffff;
    --form-input-background: #50555B;
    --form-input-color: #ffffff;
}

.evaluation-form-btns {
    list-style: none;
    padding-left: 0;
    gap: 1rem;
}

.evaluation-form-btns__btn {
    font-size: 0.8rem;
    cursor: pointer;
    background: var(--form-input-background);
    padding: 8px;
    border-radius: 8px;
    color: var(--form-input-color);
}

.evaluation-content-container .border-bottom {
    border-color: #d9d9d9 !important;
}

.evaluation-form-input input {
    width: 100%;
    font-size: 0.8rem;
    padding: 8px;
    border: 0;
    border-radius: 8px;
    color: var(--form-input-color);
    background: var(--form-input-background);
    outline: 0;
    line-height: 1.5;
    height: fit-content;
}


.evaluation-form-input .input-price {
    position: relative;
}

.evaluation-form-input .input-price .price-sign {
    padding-top: 8px;
    font-size: 0.8rem;
    line-height: 1.5;
    position: absolute;
    left: 1rem;
}

.evaluation-form-input .input-price input {
    padding-left: 2rem;
}

.evaluation-form-input.input-white input {
    color: var(--form-input-background);
    background: #EEEEEE;
}

.evaluation-form-input input::placeholder {
    color: #9c9c9c;
}

.evaluation-form-btns__btn.active {
    background-color: var(--primary-color, #C21B2C);
    color: #ffffff;
}

.evaluation-form-select {
    font-size: 0.8rem;
    color: var(--form-input-color);
    background: var(--form-input-background);
    padding: 8px;
    border-radius: 8px;
    outline: 0;
    border: 0;
}

.evaluation-content-container .disclaimer {
    font-size: 0.8rem;
}

@media screen and (max-width: 1000px) {
    #evaluation-img {
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}

/*Listing Detail*/
.property-details-title {
    font-size: 16px;
    font-weight: bold;
}

.property-details-title:before {
    content: "";
    width: 7px;
    height: 7px;
    margin-right: 5px;
    background: #e31837;
    display: inline-block;
    vertical-align: middle;
}

.property-details-subtitle {
    font-size: 14px;
    font-weight: bold;
}

.property-details-box {
    column-count: 2;
    line-height: 180%;
    margin-top: 10px;
    margin-bottom: 10px;
}

.property-details-list-item {
    font-size: 14px;
}

.property-list_item {
    background-color: #ffffff;
}

.property-list_item:hover {
    background-color: #efefef;
}

/* Listing top info */
.info-top {
    justify-content: space-between;
}

.info-top .address-info p {
    font-size: 1.125rem;
    line-height: 1.875rem;
}

.info-top .comma:last-child {
    display: none;
}

.info-top .line {
    padding: 0 0.5rem;
    color: #e0e0e0;
}

.info-top .line:last-child {
    display: none;
}

/* Image slider style */
.flickity-button {
    border-radius: 0 !important;
}

/* Image navigations below image slider */
.detail-nav-container {
    gap: 0 1rem;
}

.detail-nav {
    width: 100%;
    position: relative;

}

.detail-nav-overlay {
    padding: 25% 0;
    background: rgba(255, 255, 255, 0.30);
    text-align: center;
}

.detail-nav-overlay .icon {
    width: unset;
    height: unset;
    font-size: 2rem;
    color: var(--primary-color) !important;
}

.detail-nav-img-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    z-index: -1;
    /*filter: blur(1px);*/
}

.detail-nav-image {
    width: 100%;
    height: auto;
    min-height: 100%;
    margin: auto;
    display: block;
}

/* Property info */
.detail-nav-label {
    border: 1px solid var(--primary-color);
    position: absolute;
    right: 0.325rem;
    bottom: 0.5rem;
}

.property-infos__items {
    flex: 1;
    column-count: 2;
}

.property-infos__items .span-full {
    column-span: all;
}

.property-infos__subheading {
    font-size: 1.125rem;
}

.property-infos-title {
    color: var(--primary-color);
    flex: 1;
}

.property-infos-text {
    padding-left: 0.5rem;
    flex: 1;
    word-break: break-word;
}

.property-info-html {
    padding-left: 0.5rem;
    flex: 1;
    /* word-break: break-word; */
}
.detail-item-title {
    font-weight: 600;
    font-size: 18px;
    color: var(--primary-color);
    /* border-left: 5px solid #e31837; */
}

.expand-arrow {
    width: 20px;
    padding: 3px;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 14px;
    line-height: 1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
}

/* Carousel */
.carousel {
    background: #FAFAFA;
}

.carousel-cell {
    width: 100%;
    height: 520px;
    /*padding: 2% 0;*/
    margin: 10px 2px;
    /*background: #f4f5f7;*/
    display: flex;
    align-items: center;
}

.carousel-cell-image {
    display: block;
    max-height: 100%;
    margin: 0 auto;
    max-width: 100%;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

/* fade in lazy loaded image */
.carousel-cell-image.flickity-lazyloaded,
.carousel-cell-image.flickity-lazyerror {
    opacity: 1;
}


.hidden {
    display: none !important;
}

.map-container {
    position: relative;
    margin-top: 12px;
    margin-bottom: 24px
}

.map-street-btn {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #FFF;
    color: #000;
    padding: 5px 10px;
    cursor: pointer;
}

.assessment_center {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

[v-cloak] {
    display: none;
}

main {
    overflow: visible;
}

/*schools*/
[v-cloak] {
    display: none;
}

.map {
    width: 100%;
    height: 500px;
}

.card-header {
    /* background-color: #5e72e4 !important; */
    color: #fff;
}

.school-detail_table td {
    padding-left: 0 !important;
}

.school-property_title,
.school-map_title,
.school-nearby_title {
    font-weight: 600;
    font-size: 18px;
    color: var(--primary-color);
}

.school-property_title:before,
.school-map_title:before,
.school-nearby_title:before {
    content: "";
    width: 4px;
    height: 20px;
    margin-right: 5px;
    background: var(--primary-color);
    display: inline-block;
    vertical-align: middle;
}

.property-list {
    list-style: none;
}

.property-list_item:hover {
    background-color: #efefef;
}

.list-loader {
    width: 80px;
    height: 80px;
    /* top: 50%;
    left: 38%; */
    margin: auto;
    z-index: 999;
    background-color: rgba(136, 136, 136, 0.6);
    border-radius: 5px;
}

.school-detail {
    /* height: 202px; */
    padding: 20px;
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    background: #f5f5f5;
}

.school-detail-img img {
    width: 250px;
    /* height: 162px; */
    height: 200px;
    border-radius: 10px;
}

.school-detail-img div {
    padding: 200px 250px 0 0;
    border-radius: 10px;
}

.school-detail-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    margin-left: 20px;
}

.school-detail-info .base {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: #4d4d4d;
    font-size: 16px;
}

.school-detail-info .name {
    /* font-size: 27px; */
    font-size: 18px;
    line-height: 45px;
    font-weight: bold;
    color: #1b1b1e;
}

.school-detail-info .base-other {
    margin-bottom: 10px;

}

.school-detail-info .base-label {
    text-transform: uppercase;
    line-height: 20px;
    /* font-weight: 600; */
    font-size: 16px;
    color: #888;
    margin-right: 10px;
}

.school-detail-info .base_value {}

.property_details {
    column-count: 2;
}

@media screen and (max-width: 780px) {
    .show-sm {
        display: block;
    }

    .property_details {
        column-count: 1;
    }
}

.detail-item {
    line-height: 1.5;
    margin-bottom: 1rem;
    width: 100%;
    font-size: 1rem;
}

.detail-label {
    color: #888;
    margin-right: 10px;
}

.score_color_1 {
    font-size: 20px;
    color: #ee3b58;
}

.score_color_2 {
    font-size: 20px;
    color: #f97900;
}

.score_color_3 {
    font-size: 20px;
    color: #eec202;
}

.score_color_4 {
    font-size: 20px;
    color: #9dc000;
}

/* listing card */
.listing-card {
    display: flex;
    flex-direction: row;
    padding: 5px;
    box-shadow: 0 15px 35px rgba(50, 50, 93, .1), 0 5px 15px rgba(0, 0, 0, .07);
    border-radius: 5px;
}

.listing-img {
    width: 235px;
    padding-top: 155px;

}

.listing-card-detail {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    flex: 1;
}

.mls-id {
    color: #a0a0a0;
    font-size: .85rem;
    margin-top: 4px;
}

.listing-price {
    font-weight: 500;
    font-size: 25px;
    color: #e31837;
    margin-right: 15px;
    /* margin-top: 5px; */
}

.address {
    display: block;
    word-wrap: break-word;
    cursor: pointer;
    color: #00853e;
    font-weight: 700;
}

.meta {
    color: #a0a0a0;
    margin-top: 4px;
    font-size: .85rem;
    display: flex;
    justify-content: space-between;
}

.agent-firm {
    color: #a0a0a0;
    font-size: 0.7rem;
    margin-top: 4px;
}

.listing-btns {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-right: 10px;
    margin-top: 4px;
}

/*Vow Data*/
.vow-priv-blur {
    -webkit-user-select: none;
    user-select: none;
    filter: blur(0.25em);
}

/* Navigation icons description */
.nav-icon-description {
    color: #525f7f;
    font-weight: bold;
}

/*Relator Atricles*/

/* .card-header {
    background-color: #e31837 !important;
    color: #fff;
} */

.desktop-category-bar>li {
    display: inline-block;
    text-align: center;
    padding: 5px 20px;
    background-color: rgb(249, 238, 238);
}

.desktop-category-bar>li a {
    color: #e31837;
    font-weight: bold;
}

.category-title {
    border-left: 5px solid var(--primary-color);
    background-color: #efefef;
}

.article-item {
    border-bottom: 2px solid #e5e5e5;
}

/* Home page listings nav links */
.listings-nav-link {
    color: var(--button-primary);
    font-weight: 500;
    transition: all 0.1s ease-in-out;
}

.listings-nav-link:hover {
    font-size: 1.1em;
    color: var(--button-primary);
}

.listings-nav-arrow {
    color: var(--button-primary);
    padding: 0.75rem 0.75rem;
}

/* Home page Market Updates */
.market-updates-title {
    position: absolute;
    bottom: 0;
    padding: 5%;
    line-height: 1.2em;
}

/* Home page Subscribe */
#index-subscription-header {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
}

#index-subscription-text {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
}

#index-subscription-form input {
    outline: none;
    border: 0;
    padding: 0.625rem 1.25rem;
    font-size: 0.875em;
    vertical-align: middle;
}

#index-subscription-form button {
    border-radius: 0;
    border: 0;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
}

#alert-msg-success,
#alert-msg-fail {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    border-radius: 0;
    width: 100vw;
    z-index: 999;
}

/* Exclusive listing */
.exclusive-label {
    background-color: #BD952F;
    color: #ffffff;
    position: absolute;
    left: 0;
    top: 10px;
    padding: 7px 10px;
    font-size: 0.7rem;
}

/* hot listing */
.hot-label {
    background-color: rgb(221, 2, 2);
    color: #ffffff;
    position: absolute;
    left: 0;
    top: 10px;
    padding: 4px 7px;
    font-size: 0.8rem;
    font-weight: 700;
    opacity: 0.9;
}


.listing-item-badge {
    position: absolute;
    /* background: #92b7bd; */
    background:#f23d34;
    z-index: 999;
    border-radius: 3px;
    color: #fff;
    /* font-size: 70%; */
    font-size:7pt;
    padding: 2px 4px 0;
    top: 18px;
    left: -8px;
    width: 65px;
    text-align: center;
    line-height: 1.5;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: 0 0.1s ease-in;
    -moz-transition: 0 0.1s ease-in;
    -o-transition: 0 0.1s ease-in;
    transition: transform 0.1s ease-in;
    /* Most of this code is necessary to style and position the badge. */
}

/* Default badge and color */
.badge-listing {
    padding: 5px 8px;
    background: #E9ECEF;
    font-size: 10px;
    font-weight: 400;
    border-radius: 0;
}

.text-color__primary {
    color: var(--primary-color);
}

a.text-color__primary:hover,
.text-color__primary--hover:hover {
    color: var(--text-hover);
}

.text-color__dark {
    color: #32325D;
}

a.text-color__dark:hover {
    color: #656586;
}

.text-color__light {
    color: #c6cbd1;
}

/* Footer section */
.footer-slogan {
    font-family: 'Lora';
    font-style: normal;
    font-weight: 600;
    font-size: 2rem;
    line-height: 40px;
    color: var(--primary-color);
}

.footer-contact-btn {
    font-family: 'Lora';
    font-style: normal;
    font-weight: 400;
    font-size: 0.9rem;
    color: #ffffff;
    background-color: var(--button-primary);
    padding: 10px 20%;
    border-radius: 0;
    height: fit-content;
}

.footer-contact-btn:hover {
    color: #ffffff;
}

.footer-disclaimer {
    color: #ACAAAA;
    font-family: 'Arial';
    font-style: normal;
    font-weight: 300;
    font-size: 0.9rem;
    line-height: 30px;
}

.social-media-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.social-media-container .icon {
    height: 50px;
    background: var(--primary-color);
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
}

.social-media-container .facebook {
    -webkit-mask-image: url('/assets/img/icons/social_media/facebook.svg');
    mask-image: url('/assets/img/icons/social_media/facebook.svg');
}

.social-media-container .twitter {
    -webkit-mask-image: url('/assets/img/icons/social_media/twitter.svg');
    mask-image: url('/assets/img/icons/social_media/twitter.svg');
}

.social-media-container .instagram {
    -webkit-mask-image: url('/assets/img/icons/social_media/instagram.svg');
    mask-image: url('/assets/img/icons/social_media/instagram.svg');
}

.social-media-container .wechat {
    -webkit-mask-image: url('/assets/img/icons/social_media/wechat.svg');
    mask-image: url('/assets/img/icons/social_media/wechat.svg');
}

.foorter-contact-us {
    min-height: 100%;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #525f7f;
}

.footer-link-title {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    margin-top: 0;
    color: #C3312A;
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.footer-link-mt {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    display: inline-block;
    margin-bottom: 5px;
    color: #979797;
    font-size: min(3.2vw, 15px);
}

.footer-link-mt:hover {
    color: #C3312A;
}

/* Right sidebar style */
/* Favourites button */
.favourites-btn {
    color: #515150;
    border: 1px solid #E9E9E9;
}

.favourites-btn:hover {
    color: #000000;
}

/* Realtor Info */
.right-realtor {
    background: transparent;
}

.right-realtor .card-img-top:before {
    content: "";
    display: block;
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    position: absolute;
    top: 0;
    right: 0;
}

.right-realtor .card-img-top {
    width: fit-content;
    margin: auto;
    padding-top: 10%;
    padding-right: 10%;
    position: relative;
}

.right-realtor .card-img-top .card-img-container {
    width: 200px;
    height: 200px;
    overflow: hidden;
    z-index: 1;
    position: relative;
}

.right-realtor .card-img-top .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right-realtor .card-body {
    margin: 0 5%;
    padding: 0;
    padding-left: 10%;
    padding-bottom: 10%;
    position: relative;
}

.right-realtor .card-body:after {
    display: block;
    content: '';
    background: var(--primary-color);
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30%;
}

.right-realtor .card-text {
    position: relative;
    z-index: 1;
    background: var(--color-black);
}

.right-realtor .realtor-firm {
    font-size: .625rem;
}

/* Contact form */
.contact-container.sticky {
    max-height: none;
    position: -webkit-sticky;
    position: sticky;
    top: var(--header-height);
    overflow-y: visible;
}

.contact-form {
    background: #202020;
}

.contact-form__header {
    font-weight: 600;
}

.contact-form__header.text-white:after {
    content: "";
    width: 90%;
    height: 1px;
    margin: 0.25rem auto 1.25rem;
    background: rgba(0, 0, 0, 0.27);
    display: block;
}

.border-radius-0 {
    border-radius: 0;
}

.contact-comment {
    resize: none;
}

.custom-control-label:before {
    top: 0;
}

.custom-control-label:after {
    top: 0;
    border: 1px solid transparent;
}

/* Contact Form - Scroll Bar for sticky */
.contact-container::-webkit-scrollbar {
    width: 5px;
}

.contact-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.contact-container::-webkit-scrollbar-thumb {
    background: #b0b0b0;
}

.contact-container::-webkit-scrollbar-thumb:hover {
    background: #888;
}

/* New Listing */
.new-development .list-group-content {
    max-height: 50px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 17px;
}

.new-development .list-group-image-container {
    height: 60px;
    flex: 0 0 80px;
    overflow: hidden;
    box-sizing: content-box;
}

.new-development .list-group-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* End of Right sidebar style */

/* Replace bootstrap pagination style */
.pagination--center {
    width: fit-content;
    margin: auto;
}

.page-item .page-link {
    /* width: 30px; */
    height: 30px;
    color: #000;
    border: 0;
    border-radius: 0 !important;
}


.page-item.active .page-link {
    z-index: 1;
    color: #000;
    background-color: var(--button-primary-selected);
    box-shadow: none;
}

/* Property List Search Box*/
.search {
    padding: 1rem 0;
    display: grid;
    grid-template-columns: repeat(30, 1fr);
    grid-gap: 1rem;
}

.search .search-item {
    grid-column: auto/span 15;
}

.search .search-item.search-item--full {
    grid-column: auto/span 30 !important;
}

.search .search-item .el-select {
    width: 100%;
}

@media (min-width: 768px) {
    .search .search-item {
        grid-column: auto/span 10;
    }
}

@media (min-width: 992px) {
    .search .search-item {
        grid-column: auto/span 6;
    }
}

.search .form-control {
    border-radius: 0;
}

.search-container .dropdown-toggle::after {
    content: none;
}

.search-container .type-filter-container {
    row-gap: 1rem;
    column-gap: 2rem;
}

.search-container .sort {
    border: 1px solid #DCDFE6;
    padding: 0 0.25rem;
    background: #fff;
}

.search-container .sort-type {
    padding: 0.5rem 0;
    padding-left: 0.5rem;
    row-gap: 1rem;
    column-gap: 2rem;
}

.search-container .sort-direction {
    padding: 0 0.5rem;
}

.search-container .filter-types {
    row-gap: 1rem;
    column-gap: 1.5rem;
}

.search-container .filter-types .input-group {
    white-space: nowrap;
    flex: 0;
}

.search-container .filter-types .filter-type-selector {
    flex: 1 1 auto;
}

.filter-openhouse {
    gap: 1rem;
}

/* Override checkbox style */
.search-container .filter-types .custom-control-label::before,
.search-container .filter-types .custom-control-label::after {
    width: 1rem;
    height: 1rem;
    border: 2px solid transparent;
    top: 1px;
}

.search-container .filter-types .custom-control-label::before {
    background: #FFFFFF;
    border: 2px solid var(--primary-color) !important;
}

.search-container .custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background: var(--primary-color);
}

.search-container .filter-types .custom-control-label::after {
    background-size: 75%;
}

/* Realtor/User login page */
.login-type {
    color: #8898AA;
    border-bottom: 2px solid #D9D9D9;
    font-weight: 700;
    cursor: pointer;
}

.login-type.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.login-type:hover {
    color: var(--primary-color);
}

.login-form__signup-btn {
    background-color: #333333;
    font-size: 1.2vmin;
    line-height: 30px;
}

.login-form__signup-btn:hover {
    color: #ffffff;
}

.separator-or {
    display: flex;
    align-items: center;
    text-align: center;
    height: auto;
}

.separator-or::before,
.separator-or::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #878787;
}

.separator-or:not(:empty)::before {
    margin-right: .25em;
}

.separator-or:not(:empty)::after {
    margin-left: .25em;
}

/* Biography */
.border-red {
    border-color: var(--primary-color) !important;
}

/* reCaptcha */
.recaptcha-sm {
    transform:scale(0.68);
    -webkit-transform:scale(0.68);
    transform-origin:0 0;
    -webkit-transform-origin:0 0;
}

/* Signin/Register input group style */
.input-group-container .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group-container > .input-group-append,
.input-group-container.input-group-sm > .input-group-append {
    margin-left: 0;
}

.input-group-container > .input-group-append > .input-group-text,
.input-group-container.input-group-sm > .input-group-append > .input-group-text {
    border-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group-container > .input-group-append > .input-group-text .far {
    width: 20px;
}
/* End of Signin/Register input group style */

.ui-menu-item:hover {
    cursor: pointer;
    background-color: azure;
}

.banner-content {
    margin: auto;
}

/* Realtor Info */
.realtor,
.realtor-info {
    max-width: 300px;
    margin: auto;
}

.realtor .card-img-top:before {
    content: "";
    display: block;
    width: 70%;
    height: 70%;
    background: var(--primary-color);
    position: absolute;
    bottom: 0;
    left: 0;
}

.realtor .card-img-top {
    width: 80%;
    margin: auto;
    padding-bottom: 10%;
    padding-left: 10%;
    position: relative;
}

.realtor .card-img-top .card-img-container::after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.realtor .card-img-top .card-img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    object-position: 50% 50%;
    position: absolute;
}

.realtor-info {
    padding-top: 2%
}

.realtor-info:before {
    display: block;
    content: '';
    background: var(--primary-color);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 25%;
}

.realtor-info .card-body {
    margin: 0 5%;
    padding: 0;
    padding-left: 10%;
    padding-bottom: 10%;
    position: relative;
}

.realtor-info .card-text {
    padding: 5%;
    position: relative;
    z-index: 1;
    background: var(--color-black);

}

.realtor-info .description {
    word-break: break-all;
    color:var(--color-black);
    filter: grayscale(1) contrast(999) invert(1);


    /* backdrop-filter: invert(100%); */
}


.realtor-info .realtor-name {
    word-break: break-word;
    /*
    -webkit-filter: invert(100%);
    filter: invert(100%); */
    color:var(--color-black);
    filter: grayscale(1) contrast(999) invert(1);
}
.realtor-info .email {
    word-break: break-all;
    color:var(--color-black);
    filter: grayscale(1) contrast(999) invert(1);
    font-size: .725rem;

    /* backdrop-filter: invert(100%); */
}
.realtor-info .custom-title {
    word-break: break-all;
    color:var(--color-black);
    filter: grayscale(1) contrast(999) invert(1);
    font-size: .725rem;

    /* backdrop-filter: invert(100%); */
}
.realtor-info .realtor-detail {
    word-break: break-all;

    /* color:var(--color-black);

    filter: invert(1); */
    background: hsl(from var(--color-black) h s calc(l * 1.4));

}


.realtor-icon {
    word-break: break-all;
    border-radius: 6px;
    /* color:var(--color-black);

    filter: invert(1); */
    background: hsl(from var(--color-black) h s calc(l * 1.4));

}

.social-icon {

    width: 100%;
    height: 2rem;
    border-radius: 6px;
    font-size: 1.5rem;
    color:var(--color-black);

    filter: invert(1);
    /* background: hsl(from var(--color-black) h s calc(l * 1.4)); */

}

.w-fit {
    width: calc(100% - 2rem);
}

.realtor-contacts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}

.realtor-icon {
    width: 100%;
}

.realtor-icon .icon {
    width: 100%;
    height: 2rem;
    border-radius: 6px;
    font-size: 1.5rem;
}

.realtor-info .realtor-firm {
    font-size: .625rem;
}

.agent-qr-title {
    margin: auto;
}

/* Search */
.search-container {
    margin-top: 2vw;
}

.searchbar_title {
    min-height: 2.4em;
    min-width: calc(100vw * 0.45);
    font-style: normal;
    font-weight: 500;
    /* font-size: 2.75rem; */
    font-size: min(3.2vw, 2.4rem);
    line-height: 1.2;
    color: #FFFFFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.searchbar-agent-name {
    border-bottom: 5px solid var(--primary-color);
}

/* Three buttons */
.nav-link--three {
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}

.nav-link--three__text {
    padding: 9px 0;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.6rem;
    text-shadow: 3px 3px 4px #000;
    white-space: nowrap;
}

#my_listings .dropdown-menu:before {
    position: absolute;
    z-index: -5;
    bottom: 100%;
    left: 20px;
    display: block;
    width: 16px;
    height: 16px;
    content: '';
    transform: rotate(-45deg) translateY(1rem);
    border-radius: .2rem;
    background: #fff;
    box-shadow: none;
}
