body {
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
    background: url(../images/bg.jpg);
    background-size: cover;
    background-position: center;
}

html {
    overflow-x: hidden;
}

.header {
    width: 100%;
    height: 130px;
    margin: auto;
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid #dc352f; display: table;
}

.header .logo {
    float: left;
}

.header .rightPatch {
    float: right;
}
.header .addressBox a {
    color: #74787d;
    text-decoration: none;
}
.header .addressBox a:hover {
    text-decoration: underline;
}
.header .menu {
    width: 100%;
    max-width: 591px;
    height: auto;
    margin: auto;
    position: absolute;
    /* right: 0; */
    right: -170px;
    left: 0;
    bottom: 0px
}

.header .menu ul {
    width: auto;
    margin: 0;
    padding: 0;
    /* float: right; */
}

.header .menu ul li {
    list-style: none;
    display: inline-block;
    position: relative;
}

.header .menu ul li a {
    font-size: 15px;
    color: #35488d;
    padding: 10px 12px;
    display: block;
    font-weight: 500;
    text-decoration: none;
    transition: ease .5s;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px
}

.header .menu ul li a:hover {
    color: #ffffff;
    background: #dc352f;
    transition: ease .5s;
    text-decoration: none;
}

.header .menu ul li a.active {
    color: #ffffff;
    background: #dc352f;
    transition: ease .5s
}

/*--- Dropdown Code Start---*/
.menu ul li ul.dropdown-menu {
    background-color: #fff; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
    background: rgb(255, 0, 0); /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
    list-style: none;
    position: absolute;
    left: -9999px; /* Hide off-screen when not needed (this is more accessible than display: none;) */
    display: inline-block;
    width: 200px;
}
.menu ul li ul.dropdown-menu li {
    padding-top: 1px; /* Introducing a padding between the li and the a give the illusion spaced items */
    float: none;
    width: 100%;
}
.menu ul li ul.dropdown-menu a {
    /*white-space: nowrap;  Stop text wrapping and creating multi-line dropdown items */
    display: block;
    background-color: transparent;
}
.menu ul li:hover ul.dropdown-menu { /* Display the dropdown on hover */
    left: 0; /* Bring back on-screen when needed */
}
.menu ul li:hover a { /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
    background-color: #dc352f;
    text-decoration: underline;
    color: #fff;
}
.menu ul li:hover ul.dropdown-menu a { /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
    text-decoration: none;
    color: #fff;
}
.menu ul li:hover ul.dropdown-menu li a:hover { /* Here we define the most explicit hover states--what happens when you hover each individual link. */
    background-color: #191818;
    display: block;
    width: 100%;
    border-radius: 0;
}
/*--- Dropdown Code End---*/


.header .addressBox {
    float: right;
    margin: 17px 0 0 0
}

.header .addressBox p {
    color: #74787d;
    font-size: 15px;
    text-align: right;
    line-height: 19px;
}

.logo2 {
    display: none;
}

.welcomeBox p {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 0;
}

.welcomeBox h1 {
    font-size: 55px;
    font-weight: 700;
    line-height: 29px;
}

.welcomeBox h1 span {
    font-size: 35px;
    font-weight: 700
}

.prdBox {
    width: 100%;
    border: 1px solid #fff;
    margin: 0 auto;
    padding: 15px;
    max-width: 400px;
    box-sizing: border-box;
    border-radius: 10px;
    position: relative;
}

.prdBox .inner {
    width: 100%;
    height: auto;
}

.prdBox .inner .heading {
    width: 100%;
    background: rgba(54, 73, 142, 0.9);
    height: auto;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    color: #fff;
    line-height: 88px;
    font-size: 28px;
    font-weight: 700
}

.prdBox img {
    width: 100%
}

.prdBox .inner .footer {
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    height: auto;
    border-bottom-right-radius: 10px;
    padding: 18px 0;
    border-bottom-left-radius: 10px;
}

.prdBox .inner .footer a {
    border: 1px solid #36498e;
    font-size: 18px;
    padding: 3px 20px;
    display: table;
    margin: auto;
    color: #36498e;
    text-decoration: none;
    ;
    transition: ease .3s
}

.prdBox .inner .footer a:hover {
    background-color: #36498e;
    color: #fff;
    padding: 3px 30px;
    transition: ease .3s;
}

.menuOpen {
    display: none;
}

/* .SandhillScroller {
    height: 188px; 
    margin-top: 50px
} */
.scrolling-wrap {
    width: 100%;
    height: 92px;
    background-color: #191818;
}
.scrolling {
    width: 100%;
    height: 92px;
}
.footer {
    background-color: #191818;
    color: #fff;
    font-size: 14px;
}

.innerCont {
    background-color: #fff;
    opacity: 0.9;
}
.innerCont h1 {
    color: #191818;
    font-size: 24px;
}
.innerCont h2 {
    color: #191818;
    font-size: 20px;
}
.innerCont p {
    color: #191818;
    font-size: 16px;
}
.lead-button {
    font-weight: 700;
    max-width: 300px;
    text-transform: uppercase;
    border-width: 1px;
    border-style: solid;
    border-color: #a40000;
    border-radius: 0;
    -webkit-border-radius: 0;
    background-color: #a40000;
    color: #fff;
    text-align: center;
    font-size: 18px;
    padding: 10px 30px;
    display: block;
    margin: 10px auto;
}

.lead-button:hover {
    background-color: #a40000d5;
    color: #ffc444;
    text-decoration: none;
}
 /* Sandhills footer class code */

 .footer a.footerlink:link, a.footerlink:visited, a.footerlink:active {
     text-decoration:underline; 
     font-family:Arial, Helvetica, sans-serif;
     font-size:13px;
     color: #fff !important;
    }
.footer a.footerlink:hover {
    text-decoration:none; 
    font-family:Arial, Helvetica, sans-serif;
    font-size:13px;
}

.footer .footertext {
    font-family:Arial, Helvetica, sans-serif;
    font-size:13px; 
    color:#999999;
}

.smallfootertext {
    font-family:Arial, Helvetica, sans-serif;
    font-size:10px; 
    color:#999999;
}

.divfooter { 
    width:450px; 
    text-align:center; 
    margin:0 auto;
}
/* custom code */
.attachment-search .checkbox {
    margin: 0 5px  0 20px !important;
}
.attachment-search .search-checkboxes label .row {
    margin-right: 0;
    margin-left: 0;
}
.innerCont .legal p {
    font-size: 12px;
}

/* Inventory Styles */

.list-content, .detail-content, .detail-content-mobile{text-align: left;}
.compare-chkbox-container .compare-listings .fa-check{top: 4px !important; left 2px !important;}
.contact-options{color: #FFF;}

#inv{padding: 5% 0;}
#inv *:not(.fa):not(.far):not(.fas):not(.fab):not(.material-icons){font-family: bahnschrift, urw-din, sans-serif!important;} /* Reset font, ignore icons */

.listing-top-right a, .lower-detail-data-left button, .send-email-btn, .media-buttons a, .media-buttons button, .faceted-search, .listing-dealer-info a, .view-listing-details-link, .main-detail-data .contact-options a, .fin-calc-btn-mobile, .selected-facet, .page-nav, .apply-button, .back-button, .calculator-btn, .mobile-done-button {
    -moz-border-radius: 90px !important;
    -o-border-radius: 90px !important;
    -webkit-border-radius: 90px !important;
    border-radius: 90px !important;
}


.faceted-search-content .faceted-section-box .faceted-option-checkbox-container label input {margin: 2px 3px 3px 4px;}
.faceted-text-input-searchType .search-type input[type=checkbox], .faceted-text-input-searchType .search-type  input[type=radio] {margin: 0px 3px 0px 6px;}


.bread-crumbs-heading .return-links .return-links-link span, #no-compare-listings, .bread-crumbs-heading .return-links .return-links-link i {color:#ee3124 !important;}


.hosted-content .attachment-search .search-checkboxes label .row {margin-left:0 !important;margin-right:0 !important;margin-bottom:0px !important;}

.view-listing-details-link, .selected-facet, .view-listing-details-link, .buy-now-link, .check-availability-link, .email-seller-link, .offer-btn, .buy-btn, .dealer-phone-mobile, .offer-btn-mobile, .send-email-btn-mobile, .send-wholesale-email-btn-mobile, .fin-calc-btn-mobile, .mobile-breadcrumb, .main-detail-data .contact-options a, button.g-recaptcha.button, .page-nav, .apply-button, .mobile-done-button, .dealer-btns-bottom a {background:#ee3124 !important;}

.selected-facet, .dealer-phone-mobile, .offer-btn, .offer-btn-mobile, .fin-calc-btn-mobile, .send-wholesale-email-btn-mobile, .send-email-btn-mobile, .buy-now-link, .view-listing-details-link, .main-detail-data .contact-options a, button.g-recaptcha.button, .page-nav, .apply-button, .mobile-done-button{border: solid 1px #ee3124 !important; transition: ease all 0.2s !important;}

.selected-facet:hover, .dealer-phone-mobile:hover, .offer-btn:hover, .offer-btn-mobile:hover, .fin-calc-btn-mobile:hover, .send-wholesale-email-btn-mobile:hover, .send-email-btn-mobile:hover, .buy-now-link:hover, .view-listing-details-link:hover, .main-detail-data .contact-options a:hover, button.g-recaptcha.button:hover, .page-nav:hover, .apply-button:hover, .mobile-done-button:hover, .dealer-btns-bottom a:hover {background: #fff !important; color: #ee3124 !important;}

.check-availability-link, .email-seller-link, .video-chat-link, .faceted-search, .faceted-show-all-btn, .cs-btns a, .calculator-btn {background: #000 !important; border: solid 1px #000 !important; transition: ease all 0.2s !important;}
.check-availability-link:hover, .email-seller-link:hover, .video-chat-link:hover, .faceted-search:hover, .faceted-show-all-btn:hover, .cs-btns a:hover, .calculator-btn:hover {background: #fff !important; color: #000 !important;}

.list-content .list-title .list-listings-count, .list-content .list-main-section .list-container .list-listing .listing-top .listing-top-left .listing-main-stats .price, #parts-content .parts-top-section .parts-title-and-breadcrumbs .parts-title .parts-listings-count, #inv .error-message, #inv .info, .detail-content .detail-main-body .main-detail-data .detail-price, .detail-content .search-results, .list-content .list-top-section .listing-option-bar .list-listings-count, .detail-price, .compare-price, .compare-title {color: #000 !important;}
 
/* heading */
.list-content .list-title .list-title-text, .detail-content-mobile .detail-main-body .detail-mobile-top .detail-title, .main-detail-data .detail-title, .parts-title-text {
	padding-left: 4px; 
}

.detail-content .detail-additional-data .data-row .data-label, .detail-content-mobile .detail-additional-data .data-row .data-label, .part-detail-additional-data .data-label, .part-detail-content .detail-contact-bar {background: #000 !important;}
.detail-content-mobile .detail-contact-bar .contact-bar-btn, .list-page-nav, .contact-options a {background: #000 !important;}
.list-main-section .contact-options a {border: #000 solid 1px !important; transition: ease all 0.2s !important;}
.list-main-section .contact-options a:hover {background: transparent !important; color: #000!important;}

.detail-content .dealer-info .phone-and-email .send-email-btn, .list-content .list-listing-mobile .dealer-phone-container a, .back-button {border-color: #000!important; color: #000!important;}

.material-icons, .collapsible-content a {color:#fff!important;}

#parts-content .parts-bottom-section .parts-list-view .parts-list-content .parts-listing-container .parts-listing-column .parts-button.view-details {background-color: #000!important;}

.detail-content-mobile .detail-main-body .main-detail-data .dealer-phone-mobile-container .dealer-phone-mobile{margin-right:0!important;}

.detail-content .detail-main-body .main-detail-data .details-fin-calc .detail-btn-calc{height: 48px !important; box-sizing: border-box;}

@media screen and (max-width:1440px) {
    .prdBox .inner .heading {
        font-size: 32px;
    }
    .header .logo {
        float: left;
        margin-left: -140px;
    }
}

@media screen and (max-width:1366px) {
    .prdBox .inner .heading {
        font-size: 28px;
    }
    .header .logo {
        float: left;
        margin-left: -180px;
    }
    .prdBox .inner .footer a {
        border: 1px solid #36498e;
        font-size: 18px;
    }
    .header .rightPatch {
        float: right;
        margin-right: -70px;
    }
}

@media screen and (max-width:1280px) {
    .header .rightPatch {
        float: right;
        margin-right: -110px;
    }
    .header .menu {
        left: 65px;
    }
}

@media only screen and (max-width: 1200px) and (min-width: 768px) {
 
  
.welcomeBox{padding-top:80px!important }

    
    .prdBox .inner .heading {
        font-size: 24px;
    }
    .header {
        border: 0
    }
    .header .rightPatch {
        float: right;
        margin-right: -110px;
        display: none;
    }
    
    .header {
        width: 100%;
        height: auto;
        margin: auto;
    }
    .header .menu {
        width: 100%;
        max-width: none;
        height: auto;
        margin: auto;
        position: absolute;
        right: 0;
        left: 0;
        bottom: -42px; background:#324382;
        text-align: center;
        z-index: 9;
    }

    .header .menu ul{
        margin: auto;    
        width: fit-content;
    }

    .header .menu ul li a {
        color: #ffffff;
        transition: ease .5s; 
        border-radius: 0;
    }

    .header .menu ul li a:hover {
        color: #ffffff;background: #dc352f;
        transition: ease .5s; 
        border-radius: 0;
    }
    .header .menu ul li a.active {
        color: #ffffff;
        background: #dc352f;
        transition: ease .5s;
    }
    .header .addressBox {
        float: right;
        margin: 17px 32px 0 0;
    }

}



 @media screen and (max-width:767px) {
    .prdBox {
        width: 42%;
        display: inline-block;
        vertical-align: top;
        border: 1px solid #fff;
        margin: 11px;
        padding: 15px;
        box-sizing: border-box;
        border-radius: 10px;
        position: relative;
    }
    .header .menu {
        width: 100%;
        max-width: none;
        height: auto;
        margin: auto;
        position: relative;
        right: 0;
        left: 0;
        bottom: 0;
        clear: both;
    }
    .header .menu ul li {
        width: 100%;
        border-top: 1px solid #dc352f
    }
    .header .menu ul li a {
        border-radius: 0
    }
    .menuOpen {
        display: block;
        float: right;
        margin: 30px 11px 0 0
    }
    .header {
        background: rgba(255, 255, 255, 1);
    }
    .menu {
        display: none
    }
 
 
    .logo {
        display: none;
    }
    .logo2 {
        display: block;
        width: 250px;
        float: left;
    }

    .prdBox {
        width: 100%;
        display: inline-block;
        vertical-align: top;
        border: 1px solid #fff;
        margin: 11px 0;
        padding: 15px;
        box-sizing: border-box;
        border-radius: 10px;
        position: relative;
    }
   
    .welcomeBox h1 {
        font-size: 34px;
        font-weight: 700;
        line-height: 39px;
    }
    .header .rightPatch {
        display: none;
    }

    .header .addressBox {
        float: none;
        margin: auto;
        clear: both;
        padding-top: 24px; border-top: 1px solid #dc352f;
    }
    .header .addressBox p {
        color: #74787d;
        font-size: 15px;
        text-align: center;
        line-height: 19px;
    }

    .header {
        border-bottom:0px solid #dc352f;
    }
    .menu ul li ul.dropdown-menu {
        position: relative;
        width: 100%;
        background-color: #dc352f;
        display: none;
    }

} 

@media screen and (max-width:540px) {

    body {
        font-family: 'Roboto', sans-serif;
        overflow-x: hidden;
        background: #243265;
    }
    .welcomeBox h1 {
        margin-top: 10px;
        font-size: 30px;
        text-align: center;
    }
    .welcomeBox {
        padding-top: 10px!important;
    }
    /* .mobBanner {
        background: url(../images/mobBanner.jpg);
        background-size: cover;
        margin-bottom: 23px;
    } */

    }
