﻿/*===================== 
	Color information
	
	- Red #d9241e
	-
	-
	-
		 
=======================*/
/*===================== 
	CSS reset/normalize 
=======================*/

/**Correct `block` display not defined in IE 8/9.**/
article,aside,details,figcaption,figure,footer,header,hgroup,
main,nav,section,summary {display: block;}
pre {white-space: pre-wrap;}
small { font-size: 80%;}


/*===================== 
	   Font
=======================*/
@import 'https://fonts.googleapis.com/css?family=Montserrat:400,700';

/*===================== 
	base styles 
=======================*/

html {
    -ms-text-size-adjust: 100%; 
    -webkit-text-size-adjust: 100%; 
	}

body {
	font-family: 'Montserrat', sans-serif;
    margin: 0;
	padding:0;
	}

svg:not(:root) {overflow: hidden;/*reset*/}
	
/* clear floats */ 
.group:before,
.group:after {content: ""; display: table;} 
.group:after {clear: both;}
.group {zoom: 1;}	
.clear { clear: both;}

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
	border-style: solid;
    height: 0;
	} 

img { border: 0;} 

.fluid{width:50%; margin:auto; display: block;}
.full{width:100%;}
	
/*===================== 
	typography 
=======================*/

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	}
	h1.banner {
		font-size: 32px;
		font-weight:400;
		text-align:center;
		line-height:40px;
		padding:3% 1% 0 2%;
		margin:auto;
		color:#000;
		width:90%;
		}
	h1.banner_right {
		font-size: 32px;
		font-weight:400;
		text-align:right;
		line-height:40px;
		padding:3% 0 3% 1%;
		color:#000;
		width:92%;
		}
	
	h1 {
		font-size: 30px;
		font-weight:700;
		padding:3% 1% 2% 1%;
		color:#d9241e;
		}
	h2 {font-size: 24px;
		border-bottom:#d9241e solid 1px;
		width:96%;
		font-weight:700;
		margin:2% 0;
		padding:2% 1% 1% 0;
		color:#d9241e;
		}
	h3.tagline {
		font-size: 24px;
		font-weight:400;
		text-align:center;
		padding:2% 1% 10% 1%;
		color:#000;
	}
	h3.tagline1 {
		font-size: 24px;
		font-weight:400;
		text-align:center;
		padding:4% 1% 2% 1%;
		color:#000;
	}
	h3 {
		font-size: 20px;
		font-weight:700;
		padding:1% 1% 0 1%;
		color:#d9241e;
		}
	h6{
		font-size:18px;
		color:#fff;
		font-weight:bold;
		padding:2% 0;
	}

p {
	margin: 0;
	font-size:18px;
	font-weight:normal;
	padding:2% 1% 1% 1%;
	}

.bold {
    font-weight: 700;
	}
.italic{
	font-style:italic;
}
.red{
	color:#d9241e;
}

ul.lists{
	padding:2%;
	margin:0;
}
ul.lists li{
	padding:8px 3px;
	line-height:26px;
	color:#000;
	font-size:18px;
	font-weight:normal;
	margin:0;
}

/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/
	}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/
    color: inherit; 
    text-decoration:underline;
	}
	a:hover  {
		outline: 0;/*reset*/
		color:#d9241e;
		text-decoration: none;
		}  
a.red_btn{
	background:#d9241e;
	color:#fff;
	font-size:16px;
	padding:1%;
	display:block;
	text-align:center;
	max-width:220px;
	border-radius:8px;
	margin: 6% auto 0 auto;
	text-decoration:none;
}
a.red_btn:hover{
	background:#000;
	text-decoration:none;
}

/*===================== 
	header styles 
=======================*/

.header-wrap {
	width: 100%;
	margin: 0;
	box-shadow:0 1px 6px 0px rgba(0,0,0,.6);
	z-index:100;
	position:relative;
	}

header {
	margin: 0 auto;
	max-width: 1600px;
	}
.top_right{
	max-width:400px;
	float:right;
	padding:1%
}
.logo img{
	width:30%;
	float:left;
	padding:1% 1% 0 0;
}
p.phone{
	font-weight:700;
	font-size:35px;
	padding:0;
	margin:0;
}
p.address{
	font-weight:normal;
	font-size:20px;
	padding:0;
	margin:0;
	text-align:right;
}

/*===================== 
	nav styles 
=======================*/

#menu-button{ /* hiding responsive menu button */
	display: none;
	}
nav.mobile { /* hiding responsive menu */
	display:none;
}

/***** Start of primary nav ******/
nav.primary {
	margin:0;
	padding:1% 0;
	max-width:935px;
	float:right;
	}
	nav.primary ul {
		margin:0;
		padding:0;
		}
		nav.primary ul li {
			margin:0;
			padding:0;
			float:left;
			list-style-type:none;
			}
			nav.primary ul li a {
				font-size:18px;
				color:#000000;
				padding: 3px 11px;
				line-height:24px;
				border-top: #fff solid 4px;
				font-weight:normal;
				text-decoration:none;
				}	
			nav.primary ul li a:hover {
				border-top: #d9241e solid 4px;
				}
			nav.primary ul li li a { /* appearance of the sub-level links */
				font-size:18px;
				color:#000000;
				padding: 5px 11px;
				line-height:24px;
				border-top: none;
				border-bottom: 1px solid #000;
				font-weight:normal;
				background:#fff;
				display:block;
				text-decoration:none;
			}
			nav.primary ul li li a:hover { /* appearance of the sub-level links on hover */
				border-top: none;
				background: #d9241e;
				color:#fff;
			}
/* Optional-use, Begin targeting styles of first and last links */
nav.primary ul li:last-child  { /* Optional-use, this targets last li */
}
nav.primary ul li:last-child a {  /* Optional-use, this targets last link */
}
nav.primary ul li:first-child a { /* Optional-use, this targets first li */
}
  
/* Optional-use, targeting styles of first and last sub-level links*/
nav.primary ul li li:last-child  {
}
nav.primary ul li li:last-child a {
	border-bottom: none;
}
nav.primary ul li li:first-child a {
}
/* Optional-use, End targeting styles of first and last links */
  
/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too muuch */
nav.primary ul ul {
    display: none;
    position: absolute; 
}
  
nav.primary ul ul ul {
    position: absolute; 
    left: 100%;
    top:0; 
}
  
nav.primary ul li:hover > ul {  
    display: block;
    line-height:24px; 
    z-index: 100;
}
  
nav.primary ul ul li {
    float: none; 
    position: relative;
    margin:0;
}
/******** End of primary Nav ***************/

ul.footnav{
	margin:0;
	padding:0;
}

ul.footnav li{
	margin:0;
	padding:0;
	display:block;
	list-style-type:none;
}

ul.footnav li a{
	text-decoration:none;
	color:#fff;
	font-weight:400;
	font-size:14px;
}

ul.footnav li a:hover{
	text-decoration:underline;
}

/*===================== 
	content styles 
=======================*/

.btn_box{
	width:23%;
	margin:5% 1%;
	display:inline-block; 
	float:left;
	}
	.btn_box img{
		width:100%;
	}
	.btn_box img:hover{
		opacity:.7;
	}
.btn_box .overlay{
	background: rgb(0,0,0);/* Fall bac for browsers that do not support rgba */
	background: transparent\9;/* IE 9 Hack */
	background: rgba(0,0,0,.50);/* Standard RGBA for modern browsers*/
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#beffffff, endColorstr=#beffffff); /* Transparent background for IE 5.5 - 8*/
	zoom: 1;/* IE 7 Hack */
	text-align:center;
	width:100%;
	padding:2% 0;
	color:#fff;
	font-size:18px;
	position:relative;
	z-index:50;
	margin:-38px 0 0 0;
	}
	.btn_box .overlay:nth-child(n){
		filter: none;
	}
.btn_box .caption{
	text-align:center;
	font-weight:700;
	font-size:16px;
	padding:3% 0 0 0;
	color:#000 !important;
}

/*********** Homepage Forms **********/

form.search{
	display:inline-block; 
	zoom:1; 
	*display:inline;
	width:95%;
	padding: 0 0 3% 0;
}
form.search label{
	width:100%;
	display:block;
	color:#000;
	padding:2px 0;
	border-bottom:1px solid #000;
	margin:0 0 4% 0;
}
form.search input{
	display:inline-block; 
	zoom:1; 
	*display:inline;
	float:left;
	border:none;
	}
	form.search input.text{
		width:65%;
		padding:6px;
	}
	form.search input.search_btn{
		width:30%;
		border:none;
		background:#d9241e;
		color:#fff;
		padding:6px;
		font-size:13px;
		border-radius:0 !important;
		margin:0 !important;
		border:none;
		
	}
	form.search input.search_btn:hover{
		background:#000;
		cursor:pointer;
	}
/***********Contact Page Form***********/
form#contact{
	width:100%;
	margin:0;
	padding:2% 0 0 0;
}
form#contact label{
	width:98%;
	display:block;
	color:#000;
	font-size:16px;
	padding: 2% 0 0 0;
}
form#contact input{
	width:98%;
	padding:3px;
}
form#contact select{
	width:100%;
	padding:3px;
}
form#contact textarea{
	width:98%;
	height:100px;
}
form#contact input.button{
	width:60%;
	display:block;
	margin:auto;
	background:#d9241e;
	border:none;
	border-radius: 6px;
	padding:6px 0;
	color:#fff;
}
form#contact input.button:hover{
	cursor:pointer;
	background:#000;
}
/**************************************/

.thumb{
	float:left;
	width: 135px;
	height:102px;
	padding:0 1% 2% 1%;
}

/*===================== 
    Scrolling styles 
=======================*/
.scrolling{
	width:100%;
	height:90px;
	overflow:hidden;
}

.banner {
	width:100%;
	height:90px;
	}

/*===================== 
    Slideshow styles 
=======================*/
.cycle-slideshow img{width:100%;}

.pager img{width:40px; height: 40px; display: inline; margin: 5px 2px;}

/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
	background:url(../siteart/site-bg.jpg) repeat;
	}

.container {
	max-width: 1100px;
	margin: 0 auto;
	}
.lg_container {
	max-width: 1400px;
	margin: 0 auto;
	}
.img_wrap{
	width:100%;
	background:url('../siteart/truckrow.jpg') no-repeat;
	background-size:cover;
}
.button_wrap{
	width: 100%;
	margin: 0;
	background:#fff;
	border-top: #d9241e solid 3px;
	border-bottom: #d9241e solid 3px;
}
.extend{
	padding-bottom:10%;
}
	
.col-1-6 { 
	width: 16%;

	}
.col-1-5 { 
	width: 17%;
	display:inline-block; 
	zoom:1; 
	*display:inline;
	float:left;
	padding:3% 3% 2%;
}
.col-1-4 { 
	width: 24%;
}
.col-1-3 { 
	width: 30%;
	display:inline-block; 
	zoom:1; 
	*display:inline;
	float:left;
	padding: 2% 1%;
}
.col-1-2 { 
	width: 48%;
	display:inline-block; 
	zoom:1; 
	*display:inline;
	float:left;
	padding:3% 1% 2% 1%
	}
.col-2-3 { 
	width: 62%;
	display:inline-block; 
	zoom:1; 
	*display:inline;
	float:left;
	padding:1%;
}
.col-3-4 { width: 75%;}

/*===================== 
	footer styles 
=======================*/

footer {
	margin: 0;
	width: 100%;
	background:#333;
	}
	
a.footerlink:link,
a.footerlink:visited, 
a.footerlink:active {
	text-decoration: none; 
	font-size:10px;
	color: #fff;
	}
	a.footerlink:hover {
		text-decoration:underline; 
		font-size:10px;
		color: #fff;
		}

.footertext {
	font-size:10px; 
	color:#fff;
	}

.smallfootertext {
	font-size:10px; 
	color:#fff;
	}
.divfooter {
	text-align:left; 
	margin:0 auto;
	color:#fff;
	}
.fb_logo{
	width:18px;
	padding:4px 3px 0 0;
}
/*==============================
	INV Styles			
================================*/

#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: 0px !important;
    -o-border-radius: 0px !important;
    -webkit-border-radius: 0px !important;
    border-radius: 0px !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;}

.view-listing-details-link, .buy-now-link{color: white !important; text-decoration: none !important;}
.bread-crumbs-heading .return-links .return-links-link span, #no-compare-listings, .bread-crumbs-heading .return-links .return-links-link i {color:#da2114 !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:#da2114 !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 #da2114 !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: #da2114 !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;}



/*==============================
	Responsive Styles			
================================*/
@media screen and (max-width: 1050px)  {
h1.banner {
	font-size: 28px;
	padding:3% 1% 0 1%
	}
h1.banner_right{
	font-size: 28px;
	padding:3% 1% 3% 1%;
	wdith:20%;
}
h3.tagline {
	font-size: 20px;
	padding:2% 1% 7% 1%;
}
h3.tagline1 {font-size: 20px;}
}
@media screen and (max-width: 940px)  {
	h1.banner {
		font-size: 22px;
		padding:3% 1% 0 1%;
		line-height:24px;
		}
	h1.banner_right{
		line-height:30px;
		font-size: 22px;
		padding:3% 1% 3% 1%;
		wdith:20%;
	}
	nav.primary ul li a {font-size:16px; padding: 3px 10px;}
}
@media screen and (max-width: 835px)  {
	nav.primary ul li a {font-size:16px; padding: 3px 5px;}
}
@media screen and (max-width: 760px)  {
nav.primary{
	display:none;
}

/*==============================
	Mobile Nav Styles			
================================*/	
#menu-button{ /* initially will need to be hidden */
	display: block;
	font-size: 32px;
	width:100%;
	position: relative;
	z-index: 800;/* needs to be lower than nav.mobile, adjust as needed */
	padding: .1em 0 .1em 0.8em;
	}
	#menu-button a{
		 color:#000;
		 text-decoration: none;
	  }
nav.mobile {
	display:block;
	position: fixed;
	top: 0;
	left: -250px;
	width: 250px;
	height: 100%;
	background: #333;
	z-index: 900; /* needs to be higher than #menu-button, adjust as needed */
	overflow:auto;
}
nav.mobile h3 { /* Menu header styles */
	position: relative;
	padding: 12px 10px;
	color: #fff;
	font-size: 1.2em;
	font-weight: 400;
	border-bottom: 4px solid #222;
}
nav.mobile .menu-toggle { /* Menu close button */
	position: absolute;
	top: 12px;
	right: 10px;
	display: inline-block;
	padding: 6px 9px 5px;
	font-family: Arial, sans-serif;
	font-weight: bold;
	line-height: 1;
	background: #222;
	color: #999;
	text-decoration: none;
	vertical-align: top;
}
nav.mobile .menu-toggle:hover { /* Menu close button on hoveer */
	color: #fff;
}
nav.mobile ul {
	list-style: none;
	font-weight: 300;
	border-top: 1px solid #151515;
	border-bottom: 1px solid #454545;
	margin:0;
	padding:0;
}
nav.mobile ul li {
	border-top: 1px solid #454545;
	border-bottom: 1px solid #151515;
}
nav.mobile ul li a {
	position: relative;
	display: block;
	padding: 10px;
	color: #999;
	text-decoration: none;
}
nav.mobile ul li a:hover {
	background: #000;
	color: #fff;
}
nav.mobile ul li li a { /* appearance of the sub-level links */
	background: #444;
	position: relative;
	display: block;
	padding: 10px 10px 10px 15px;
	color: #ccc;
	text-decoration: none;
}
nav.mobile ul li li li a { /* appearance of third level sub-level links if needed */
	background: #666;
	position: relative;
	display: block;
	padding: 10px 10px 10px 25px;
	color: #000;
	text-decoration: none;
}
nav.mobile ul li span.click{/* dropdown menu idicator arrow be sure to include this image with your image files */ 
	background:url(../siteart/arrow.png) 10px 12px no-repeat;
	background-size:55%;
	position:relative;
	display:block;
	float:right;
	margin:-44px 0 0 0;
	cursor:pointer;
	z-index: 12399994;
	width:44px;
	height:44px;
	-webkit-transition:background-size .3s ease-in-out;
	-moz-transition:background-size .3s ease-in-out;
	transition:background-size .3s ease-in-out;
}
nav.mobile ul li span.click:hover{
	background-size:60%;
}
/*************** End Mobile Nav ********************/

.top_right{
	max-width:400px;
	float:none;
	margin:auto;
	padding:1%
}
.logo img{
	width:33%;
	float:none;
	margin:auto;
	display:block;
	padding:1% 0 0 0;
}
p.phone{
	font-weight:700;
	font-size:24px;
	padding:0;
	margin:0;
	text-align:center;
}
p.address{
	font-weight:normal;
	font-size:18px;
	padding:0;
	margin:0;
	text-align:center;
}
h1.banner {
	font-size: 20px;
	padding:3% 1% 0 2%;
	line-height:24px;
	}
h1.banner_right{
	line-height:30px;
	font-size: 20px;
	padding:3% 2% 3% 1%;
	wdith:20%;
}

.btn_box{
	width:25%;
	}
.btn_box .overlay{
	font-size:16px;
	margin:-32px 0 0 0;
	}
.btn_box .caption{
	font-size:12px;
}

.col-1-5 { 
	width: 40%;
	display:inline-block; 
	zoom:1; 
	*display:inline;
	float:left;
	padding:3% 0% 2% 5%;
}
.col-1-2 { 
	width: 90%;
	display:block; 
	float:none;
	margin:auto;
	padding:3% 1% 1% 1%;
}
.col-1-3 { 
	width: 90%;
	display:block;
	float:none;
	padding: 2% 1%;
}
}

@media screen and (max-width: 660px)  {
.logo img{
	width:50%;
}
}
@media screen and (max-width: 550px)  {
.btn_box{
	width:50%;
	display:block;
	float:none;
	margin:6% auto;
	}
.btn_box .overlay{
	font-size:16px;
	margin:-36px 0 0 0;
	}
.btn_box .caption{
	font-size:16px;
}
h1.banner {
	padding:3% 0% 0% 0%;
	line-height:24px;
	float:none;
	width:98%;
	text-align:center;
	}
h1.banner_right{
	font-size: 20px;
	padding:1% 0% 3% 0%;
	width:98%;
	float:none;
	text-align:center;
}

h3.tagline {
	font-size: 16px;
	padding:2% 1% 7% 1%;
}
h3.tagline1 {
		font-size: 16px;
		padding: 2% 1%;
	}
.col-1-2 { 
	width: 90%;
	display:block; 
	float:none;
	padding:2% 1%;
	margin:auto;
	}
}
@media screen and (max-width: 460px)  {
.logo img{
	width:60%;
}
p.phone{
	font-size:18px;
}
p.address{
	font-size:14px;
}
.btn_box .overlay{
	font-size:14px;
	margin:-33px 0 0 0;
	}
.btn_box .caption{
	font-size:13px;
}
.col-1-5 { 
	width: 90%;
	display:block; 
	float:none;
	padding:2% 0% 2% 5%;
}
}

