:root {
    --MainFontColor: #ffffff;
    --MapIconColor: #ffffff;
    --AddressFontColor: #ffffff;
    --PhoneIconColor: #ffffff;
    --PhoneFontColor: #ffffff;
    --HoursIconColor: #ffffff;
    --HoursFontColor: #ffffff;
}

.dlheader {
    /*border: 1px solid red;*/
    /*background: url('../images/header-bg.png') no-repeat right;*/
    /*background: url('../images/header-bg.png') no-repeat right;*/
    /*background-color: #cccccc;*/
    /*background-image: -webkit-linear-gradient(top, #d6d3d3 0%, #564f4f 100%);*/
    border-bottom: 7px solid #ffffff;
    font: bold 15px Arial, Helvetica, sans-serif;
    color: #ffffff;
    width: 100%;
    background: url('../images/header-bg.png');
    background-position: top right;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 79%;


}

.dlheader_top {
    /*border: 1px solid blue;*/
    display: flex;
    flex-direction: row;
    /*height: 100px;*/
    max-width: 1500px;
    min-width: 330px;
    margin: 0 auto; /*This will center it*/
    /*background-color: #212020;*/
}

/*==== Dealer Logo =======*/
.dlheader_top_logo {
    /*border: 1px solid black;*/
    display: inline-block;
    float: left;
    padding: 10px 100px 0 0;
}

#dlheader_top_logo_image {
    height: 65px;
}

.dlheader_info {
    /*border: 1px solid black;*/

    display: table;
    /*width: 175px;*/
    /*height: 100px;*/
    /*float: left;*/
    margin-left: 10px;
    margin-top: 10px;
    text-align: left;
}

.dlheader_info_row {
    display: table-row;
}

.dlheader_info_cell {
    display: table-cell;
}

.dlheader_info_sec_table {
    display: table;
}

.dlheader_info_sec_row1 {
    display: table-row;
}

.dlheader_name {
    /*border: 1px solid orange;*/
    /*display: table-cell;*/
    display: none;
}

.dlheader_info_sec_row2 {
    display: table-row;
}

.dlheader_info_sec_row2_cell {
    display: table-cell;
}

.dlheader_info a:link {
    text-decoration: none;
}

.dlheaderWrapper {
    /*background: url('../images/header-bg.png') no-repeat right;*/
    /*height: 80px;*/
    /*width: 100%;*/
    /*display: block;*/
    /*z-index: -100;*/


}

.dlheaderFnt {
    background: url('../images/header-bg-front.png');
    background-position: top right;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100%;
    width: 100px;
}

/*==== Address =======*/
.dlheader_address_container {
    /*border: 1px solid red;*/
    /*height: 42px;*/
    /*width: 500px;*/
    display: table;
    color: var(--AddressFontColor);
}

.dlheader_address_container_row {
    display: table-row;
}

.dlheader_address_image {
    /*border: 1px solid yellow;*/
    width: 20px;
    height: 20px; /*This is set the height to cover how many lines it will cover*/
    float: left;
    display: table-cell;
    margin-top: 3px;
}

.dlheader_address_icon {
    font-size: 20px;
    color: var(--MapIconColor);
}

.dlheader_address {
    /*border: 1px solid blue;*/
    display: table-cell;
    vertical-align: top;
}

.dlheader_address:hover {
    color: red;
}

.dlheader_address_street {
    /*border: 1px solid green;*/
    display: block;
}

.dlheader_city {
    /*border: 1px solid #ff00ff;*/
    display: block;
    /*width: 250px;*/
}

.dlheader_city_only {
    display: none;
}

/*===== Phone ========*/
.dlheader_phone_container_table {
    /*border: 1px solid violet;*/
    display: table;
    height: 22px;
    width: 140px;
    margin-top: 10px;
}

.dlheader_phone_container_row {
    display: table-row;
}

.dlheader_phone_image {
    /*border: 1px solid violet;*/
    display: table-cell;
    /*background: url('../images/phone.png') no-repeat;*/
    width: 20px;
    height: 20px; /*This is set the height to cover how many lines it will cover*/
    float: left;
    margin-right: 10px;
}

.dlheader_phone_icon {
    font-size: 20px;
    color: var(--PhoneIconColor);
}

.dlheader_phone_no {
    /*border: 1px solid #4c6b55;*/
    display: table-cell;
    color: var(--PhoneFontColor);
}

/* ============= Hours ===============*/
.dlheader_hours_container {
    /*border: 1px solid green;*/
    opacity: 1.0;
    /*These need to be controlled via @media. We control all aspects based on screen size*/
    /*height: 65px;*/
    /*width: 250px;*/
    /*float: right;*/
    margin-left: auto;
    order: 2;
    margin-top: 10px;
    display: flex;
    text-align: left;
}

.dlheader_hours_image {
    /* border: 1px solid #ff00ff;*/
    /*background: url('../images/timing.png') no-repeat;*/
    width: 20px;
    height: 35px;
    float: left;
    margin-top: 3px;
    margin-right: 5px;
}

.dlheader_hours_icon {
    font-size: 20px;
    color: var(--HoursIconColor);
}

.dlheader_hours_shown {
    /*border: 1px solid #b4b4b4;*/
    display: flex;
    padding-left: 5px;
    line-height: 18px;
    color: var(--HoursFontColor);
}

@media (max-width: 1300px) {
    .dlheader_top_logo {
        padding-right: 50px;
    }

}

@media (max-width: 1150px) {
    .dlheader_top_logo {
        padding-right: 30px;
    }

}

@media (max-width: 950px) {
    .dlheader_top_logo {
        padding-right: 10px;
    }

    .dlheaderFnt {
        width: 70px;
    }
}

@media (max-width: 925px) {


}

@media (max-width: 850px) {
    .dlheader_hours_container, .dlheader_info {
        font-size: 12px;
        margin-top: 10px;
    }

    #dlheader_top_logo_image {
        height: 50px;
    }


}

@media (max-width: 700px) {
    .dlheaderFnt {
        width: 20px;
        display: none;
    }
    .dlheader {
        background-size: 80%;
    }
}
@media (max-width: 650px) {

    .dlheader {
        background-size: 78%;
    }
}
@media (max-width: 650px) {

    .dlheader {
        background-size: 77%;
    }
}

@media (max-width: 600px) {
    .dlheader {
        background-size: 77%;
    }
    .dlheader_hours_container {
        display: none;
    }

    .dlheader_info {
        margin-top: 5px;
    }
}


@media (max-width: 575px) {
    .dlheader {
        background-size: 75%;
    }
}
@media (max-width: 550px){
    .dlheader {
        background-size: 73%;
    }
}
@media (max-width: 500px){
    .dlheader {
        background-size: 70%;
    }
}


@media (max-width: 450px){
    .dlheader {
        background-size: 69% 100%;
    }
}








    @media (max-width: 400px) {
    .dlheader_top {
        width: 99%;
    }

    #dlheader_top_logo_image {
        /*height: 30px;*/
    }
  .dlheader_address_street, .dlheader_city {
        display: none;
    }

    .dlheader_city_only {
        display: block;
    }

    .dlheader_info {
        /*width: 150px;*/
        /*height: 25px;*/
    }

    .dlheader_phone_container {
        width: 100px;
        margin-top: 0;
        margin-left: 0;
    }
        .dlheader {
            max-width: 500px;
            min-width: 330px;
        }

}

@media (max-width: 400px) {
    .dlheader {
        background-size: 62% 100%;
    }
}
@media (max-width: 360px) {
    .dlheader {
        background-size: 60% 100%;
    }
}




