/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/*              EVHQ official variables start           */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

:root {
    --dark_blue: #00205b;
    --bright_blue: #00a0dc;
    --grey: #dde2e6;
    --bright_green: #39b04a;
}

@font-face {
    font-family: Avenir;
    src: url(../../fonts/avenir/AvenirNextLTPro-Regular.otf);
}

@font-face {
    font-family: Avenir;
    src: url(../../fonts/avenir/AvenirNextLTPro-Bold.otf);
    font-weight: 600;
}

@font-face {
    font-family: Avenir;
    src: url(../../fonts/avenir/AvenirNextLTPro-It.otf);
    font-style: italic;
}

@font-face {
    font-family: Avenir;
    src: url(../../fonts/avenir/AvenirNextLTPro-Bold-Italic.ttf);
    font-style: italic;
    font-weight: bold;
}

* {
    font-family: Avenir, Arial, Helvetica, sans-serif;
}

body {
    font-family: Avenir, Arial, Helvetica, sans-serif;
    font-size: 15px;
    width: 100%;
    margin: 0;
}

.evhq-container{
    margin-left: 6%;
    margin-right: 6%;
}

.evhq-logo{
    position: absolute;
    top: 30px;
    .logo-image{
        width: 475px;
        height: 40px;
    }
}

.evhq-banner{
    width: 100%;
    display: flex;
    background: #dde2e6;
    height: 280px;
    .left-banner{
        width: 60%;
        .banner-img{
            height: 100%;
        }
    }
    .right-banner{
        width: 40%;
        text-align: right;
        margin-top: 110px;
        margin-right: 35px;
        .banner-text{
            color: black;
            border-right: 7px solid var(--bright_blue);
            padding-right: 20px;
            font-size: 24px;
            line-height: 1.5;
            height: 100px;
        }
    }
}

.evhq-body{
    font-family: Avenir, Arial, Helvetica, sans-serif;
    padding: 0px 40px 0px 40px;
    
    .title{
        text-align: center;
        padding-top: 5px;
        padding-bottom: 5px;
        font-weight: 600;
        color: var(--bright_green);
        font-size: 24px;
    }
    .para{
        padding: 0 10%;
        text-align: center;
        padding-bottom: 35px;
        font-size: 15px;
        line-height: 1.5;
        color: #212529;
    }
}

.evhq-search-container{
    font-family: Avenir, Arial, Helvetica, sans-serif;
    padding: 0px 40px 0px 40px;
    .evhq-search-form{
        padding: 0 20%;
        .address-bar{
            display: flex;
            flex-direction: column;
            padding-bottom: 10px;
            font-size: 16px;
            color: #212529;
            .address-title{
                font-size: 16px;
                line-height: 1.5;
                margin: 0;
            }
            .address-input{
                height: 45px;
                border-color: var(--grey);
                padding: 0 10px;
                font-size: inherit;
                line-height: inherit;
            }
        }
        .optional-bar{
            font-size: 16px;
            .optional-select{
                display: flex;
                align-items: center;
                justify-content: space-between;
            }
            .select-bar{
                width: 48%;
            }
        }
    }
    .search-bar{
        padding-top: 35px;
        display: flex;
        justify-content: center;
        .search-btn{
            background: var(--dark_blue);
            color: white;
            font-weight: 400;
            display: flex;
            height: 45px;
            justify-content: center;
            align-items: center;
            border: none;
            width: 200px;
            font-size: 15px;
            padding-top: 5px;
            cursor: pointer;
            text-decoration: none;
        }
    }
}
.evhq-signup{
    display: flex;
    font-family: Avenir, Arial, Helvetica, sans-serif;
    align-items: center;
    background: var(--grey);
    padding: 10px 0;
    justify-content: center;
    text-decoration: none;
    color: black;
    cursor: pointer;
    margin-top: 35px;
    .sign_up_icon {
        width: 70px;
        height: 70px;
        margin-right: 25px;
    }
    .sign_up_text{
        margin: 0;
        font-size: 18px;
        font-weight: 500;
    }
}

.evhq-footer{
    padding: 20px 40px;
    font-size: 12px;
    .footer-top{
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0px 3%;
        .left-footer-icon{
            width: 60%;
            height: 75px;
            .footer-left-img{
                width: 70%;
            }
        }
        .right-footer-icon{
            width: 40%;
            height: auto;
            .footer-right-img{
                float: right;
                height: 75px;
                padding-right: 40px;
            }
        }
    }
}

.footer-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: Avenir, Arial, Helvetica, sans-serif;
    padding: 15px 3% 0 3%;
}

.evhq-rev-number{
    position: fixed;
    bottom: 32px;
    left: 97%;
}

.select2-container {
    width: 100% !important;
}

span.select2-selection.select2-selection--single {
    height: 45px;
    align-items: center;
    display: flex;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px;
    right: 0px;
    width: 40px;
    top: 0;
    background: var(--dark_blue);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #fff transparent transparent transparent;
}

span.select2.select2-container.select2-container--default.select2-container--disabled {
    opacity: .4;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #fff transparent;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    height: 23px;
}