
/* Homepage with Login Styles */
* {
    box-sizing: border-box;
}

html{
    width:100%;
    height:100%;
}

.mls-homapage-wrapper {
    margin: 0;
    padding: 0;
    background: #ffffff;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    height: -webkit-fill-available;
    height: -moz-available;
    overflow-y: auto;
    overflow-x: hidden;
    font-family: "Open Sans", sans-serif;
}

.mls-fixed-width-container {
    max-width: 1200px;
    min-width: 768px;
    margin: 0 auto;
}

.mls-top-navbar-wrapper {
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: auto;
    display: block;
    z-index: 1;
}

.mls-top-navbar-content {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    height: 84px;
    font-size: 14px;
    padding: 0 12px;
}

.mls-top-navbar-content__segment {
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
}

.mls-top-navbar-content .mls-logo {
    display: inline-block;
}

    .mls-top-navbar-content .mls-logo img {
        height: 48px;
    }


a.mls-top-navbar-content__link {
    color: #ffffff;
    font-weight: 600;
    padding: 4px 15px;
    font-size: 14px;
    text-transform: uppercase;
    font-family: "Open Sans", sans-serif;
}
a.mls-top-navbar-content__link.ipad {
    padding: 4px 8px;
    font-size: 11px;
}

    a.mls-top-navbar-content__link:hover,
    a.mls-top-navbar-content__link:focus {
        padding: 2px 13px;
        border: 2px solid #ffffff;
        border-radius: 4px;
        text-decoration: none;
    }

    a.mls-top-navbar-content__link .new-bc-badge {
        position: absolute;
        top: 20px;
        left: auto;
        margin-left: 65px;
        font-size: 9px;
        width: auto;
        padding: 2px 4px;
        border-radius: 2px;
        background-color: #c7322c;
        color: #fff;
        line-height: 1;
        font-family: "Open Sans", sans-serif;
        text-transform: capitalize;
    }
    a.mls-top-navbar-content__link .new-bc-badge.ipad {
        margin-left: 37px;
    }


.mls-navbar-login-form {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: top;
    align-items: top;
    margin-top: 15px;
}

.mls-navbar-login-form__group {
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: 12px;
}

    .mls-navbar-login-form__group:last-child {
        margin-right: 0;
    }

    .mls-navbar-login-form__group label {
        display: block;
        color: #ffffff;
        margin-bottom: 4px;
    }

    .mls-navbar-login-form__group input[type="text"],
    .mls-navbar-login-form__group input[type="password"] {
        display: block;
        background: #E9F0FD;
        border: 1.2px solid rgba(0, 0, 0, 0.25);
        border-radius: 2px;
        width: 148px;
        height: 22px;
        padding: 5px 8px;
    }

    .mls-navbar-login-form__group a {
        display: block;
        font-size: 12px;
        margin-top: 2px;
        color: #ffffff;
    }

    .mls-navbar-login-form__group input[type="submit"] {
        display: block;
        font-size: 12px;
        background: #CACACA;
        border: 1.2px solid #575757;
        border-radius: 2px;
        height: 22px;
        padding: 3px 16px;
        margin-top: 23px;
    }

.mls-error-messages-wrapper {
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
}

.mls-error-messages {
    Font-size: 12px;
    color: #CD0A0A;
    background: #FEF1EC;
    border: 1px solid #CD0A0A;
    border-radius: 1px;
    z-index: 9999;
    display: block;
    padding: 8px;
    max-width: 1200px;
    min-width: 768px;
    margin: 0 auto;
}

.mls-bc-banner-wrapper {
    position: relative;
    height: 520px;
    background: transparent;
    overflow: hidden;
}

.bc-banner-replay-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0.7;
    cursor: pointer;
}

video.mls-bc-banner-video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    z-index: -100;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
}

.mls-fixed-width-container.mls-bc-banner {
    display: -webkit-flex;
    display: flex;
    height: 520px;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 0 12px;
}

.mls-fixed-width-container .bc-banner-image {
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
}

.mls-fixed-width-container .bc-banner-content {
    bottom: 0;
    left: 0;
    position: absolute;
    width: 100%;
    display: block;
    height: auto;
}

    .mls-fixed-width-container .bc-banner-content .bc-tagline {
        -webkit-flex: 0 0 auto;
        flex: 0 0 auto;
        font-family: "Open Sans", sans-serif;
        font-weight: 100;
        font-size: 32px;
        color: #FFFFFF;
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        margin-bottom: 24px;
    }

    .mls-fixed-width-container .bc-banner-content span.bc-view-magazine-cta,
    .mls-fixed-width-container .bc-banner-content span.bc-view-magazine-cta:hover {
        -webkit-flex: 0 0 auto;
        flex: 0 0 auto;
        background: #C7322C;
        color: #fff;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        border-radius: 4px;
        padding: 8px 20px;
        font-family: "Open Sans", sans-serif;
        font-weight: bold;
        font-size: 16px;
        -webkit-align-self: flex-start;
        align-self: flex-start;
        text-transform: uppercase;
        text-decoration: none;
        cursor: pointer;
    }

.mls-quicksearch-wrapper {
    /*background-color: rgba(0,0,0,0.2);*/
    background-color: transparent;
    width: 100%;
}

.mls-fixed-width-container-inject {
    max-width: 768px;
    white-space: nowrap;
    width: 768px;
}

.mls-quicksearch-wrapper #injectQuickSearch {
    /*margin: 32px auto;*/
    padding: 0 0 15px 0;
    border: none;
}

.mls-quicksearch-wrapper div#guestForm {
    border: none;
}

.mls-quicksearch-wrapper #chklstPropType label.ui-state-default {
    background: transparent;
    text-align: left;
}

    .mls-quicksearch-wrapper #chklstPropType label.ui-state-default span {
        border-left: 1px solid #afacab;
        background: #F4F4F4;
        margin-left: 0;
        padding: 8px;
        padding-left: 15px;
        width: 194px;
        font-family: Open Sans;
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
    }

.mls-quicksearch-wrapper #chklstPropType label.ui-state-active {
    text-align: left;
    margin-left: 0;
}

    .mls-quicksearch-wrapper #chklstPropType label.ui-state-active span {
        background-color: #456A96;
        background-image: url("../images/arrow-select-icon.svg");
        background-repeat: no-repeat;
        background-position: right 10px center;
        width: 195px;
        padding-top: 5px;
        padding-left: 15px;
        font-family: "Open Sans", sans-serif;
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
    }

.mls-quicksearch-wrapper div#guestForm ul li.BedsBaths div.Pricing,
.mls-quicksearch-wrapper div#guestForm ul li.BedsBaths div {
    background: url('../images/arrow-input-select-icon.svg') no-repeat center right 8px white;
    color: #575757;
    border: 1.2px solid rgba(87, 87, 87, 0.4);
    border-radius: 2px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 18px;
}

.mls-quicksearch-wrapper #txtSearchBox {
    border: 1.2px solid rgba(87, 87, 87, 0.4);
    border-right: none;
    border-radius: 2px;
    width: calc(100% - 35px);
    font-size: 14px;
}

.mls-quicksearch-wrapper input.btn_nop {
    background: url('../images/quick-search-search-icon.svg') no-repeat center #3062A1;
    border-radius: 0 2px 2px 0;
    border: 1.2px solid rgba(87, 87, 87, 0.4);
}

.mls-quicksearch-wrapper div#guestForm ul li.AdvancedSearch a {
    margin-right: 0;
    color: #ffffff;
}

.mls-quicksearch-wrapper div#guestForm ul li.AdvancedSearch:hover a {
    color: #ffffff;
    text-decoration: underline;
}

#injectQuickSearch {
    background-color: transparent !important;
}

div#guestForm ul li.BedsBaths label {
    color: #ffffff;
}

.mls-footer-wrapper {
    background-color: #fff;
    /*box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);*/
    margin-bottom: 144px;
}

    .mls-footer-wrapper #dvAd1Background {
        text-align: center;
    }

        .mls-footer-wrapper #dvAd1Background a img {
            margin-top: 0;
        }

    .mls-footer-wrapper #dvAd2Background a img {
        margin-top: 0;
    }

/*-----------------------  BROKER CARAVAN DROPDOWN  ------------------------------*/

.mls-homapage-wrapper .jBox-Tooltip .jBox-container {
    box-shadow: 0 8px 10px rgba(0,0,0,0.35);
}

.mls-homapage-wrapper .bc-tooltip-container {
    width: 364px;
    height: 150px;
    display: block;
    float: left;
    overflow: hidden;
}

    .mls-homapage-wrapper .bc-tooltip-container .bc-left-wrapper,
    .mls-homapage-wrapper .bc-tooltip-container .bc-right-wrapper {
        display: inline-block;
        height: 100%;
        float: left;
    }

    .mls-homapage-wrapper .bc-tooltip-container .bc-left-wrapper {
        width: 138px;
        background: rgba(190,190,190,1);
        background: -moz-linear-gradient(-45deg, rgba(190,190,190,1) 0%, rgba(183,185,191,1) 22%, rgba(132,137,147,1) 65%, rgba(98,105,122,1) 86%, rgba(73,80,96,1) 100%);
        background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(190,190,190,1)), color-stop(22%, rgba(183,185,191,1)), color-stop(65%, rgba(132,137,147,1)), color-stop(86%, rgba(98,105,122,1)), color-stop(100%, rgba(73,80,96,1)));
        background: -webkit-linear-gradient(-45deg, rgba(190,190,190,1) 0%, rgba(183,185,191,1) 22%, rgba(132,137,147,1) 65%, rgba(98,105,122,1) 86%, rgba(73,80,96,1) 100%);
        background: -o-linear-gradient(-45deg, rgba(190,190,190,1) 0%, rgba(183,185,191,1) 22%, rgba(132,137,147,1) 65%, rgba(98,105,122,1) 86%, rgba(73,80,96,1) 100%);
        background: -ms-linear-gradient(-45deg, rgba(190,190,190,1) 0%, rgba(183,185,191,1) 22%, rgba(132,137,147,1) 65%, rgba(98,105,122,1) 86%, rgba(73,80,96,1) 100%);
        background: linear-gradient(135deg, rgba(190,190,190,1) 0%, rgba(183,185,191,1) 22%, rgba(132,137,147,1) 65%, rgba(98,105,122,1) 86%, rgba(73,80,96,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bebebe', endColorstr='#495060', GradientType=1 );
    }

    .mls-homapage-wrapper .bc-tooltip-container .bc-right-wrapper {
        width: calc(100% - 138px);
    }

        .mls-homapage-wrapper .bc-tooltip-container .bc-right-wrapper .img-bc-logo {
            padding: 0 15px 0 15px;
            height: 44px;
            margin-top: 15px;
        }

    .mls-homapage-wrapper .bc-tooltip-container .bc-left-wrapper .img-bcTooltip {
        width: 100%;
        float: left;
        height: 100%;
        padding: 16px 16px 0;
    }

.mls-homapage-wrapper .bc-tooltip-span {
    display: block;
    float: left;
    width: 226px;
    height: auto;
    font-size: 16px;
    font-weight: 400;
    padding: 6px 15px 18px;
    box-sizing: border-box;
}

.mls-homapage-wrapper .bc-tooltip-button {
    display: inline-block;
    background-color: transparent;
    font-family: 'Open Sans';
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 0;
    height: auto;
    width: auto;
    border: 0;
    background-color: #c7322c;
    color: #fff;
    text-align: center;
    box-shadow: 0 2px 2px rgba(0,0,0,.35);
    font-size: 14px;
    padding: 5px 10px;
    margin-left: 15px;
    float: left;
}

    .mls-homapage-wrapper .bc-tooltip-button:hover {
        background-color: #fff;
        color: #c7322c;
        cursor: pointer;
    }

    .mls-homapage-wrapper .bc-tooltip-button:focus {
        border: 0;
        outline: none;
    }