﻿/* RESET 
------------------------------------------------*/
*{ 
    margin: 0;  
    padding: 0;  
    border: 0;  
    outline: 0;  
    background: transparent;  
}

ol, ul {}
blockquote, q {quotes: none;}  
blockquote:before, blockquote:after, q:before, q:after {content: '';}  


:root {
	--white:#fff;
	--nearwhite: #fafafa;
	--offwhite:#efefef;
	
	
	
	
	--grantred:#fd2a0c;
	
	--lightgray: #b9b9b9;
	--gray:#2e2e2e;
	
	--darkgray: #3a3a3a;
	
	--nearblack: #282828;
	--black: #0c0c0c;
}


/* TEXT/LINK FORMATTING
------------------------------------------------*/

	/* LINKS */
	a:link, a:visited {
		color:#a7200c;
		text-decoration:none;
	}
	a:hover, a:active {
		color:#828282;
		text-decoration:underline;
	}

	/* PARAGRAPH/LIST/GENERAL TEXT */
	p, ul, li {font-size: 12px;}

	/* HEADERS */
	h1, h2, h3, h4 ,h5 ,h6 {line-height: normal;}
	h1 {font-size:26px; font-family: 'source_sans_prolight'; font-weight:100; color:#e01d01;}
	h2 {font-size:14px; font-family: 'source_sans_prolight'; font-weight:100; color:#252525;}
	h3 {font-size:28px; font-family: 'source_sans_prolight'; font-weight:100;}
	h4 {font-size:22px; font-family: 'source_sans_prolight'; font-weight:100; color:#fff;}
	h5 {font-size:17px; font-family: 'source_sans_prolight'; font-weight:100; color:#252525;}
	h6 {font-size:14px;}


/* GLOBAL SITE FRAMEWORK
------------------------------------------------*/
.clear {clear: both;}
.left {float:left;}
.right {float:right;}

body {
	margin:0;
	line-height:12px;
	font-family: 'source_sans_proregular', sans-serif !important;
	background:#040404 !important;
}

.content {
	width:960px;
	margin:0 auto;
}

.content-full {
	width:1020px;
	margin:0 auto;
}


/* SELECTION
------------------------------------------------*/	
::selection {
	color:#fff;
	background: #7E7E7E;
}
::-moz-selection {
	color:#fff;
	background: #7E7E7E;
}


/* HEADER
------------------------------------------------*/	
header {
	padding:30px 0 35px 0;
	background:#fff;
}	
	

/* LOGO
------------------------------------------------*/	
.logo {
    float:left;
	position:relative;
}	

.logo h2{
	text-align:right;
	margin:0 9px 0 0;
}


/*  ASIDE
------------------------------------------------*/
aside {
	float:right;
	position:relative;
}

aside .social-media {
	float:right;
	position:relative;
}

aside .social-media a {
	float:right;
	position:relative;
	margin:0 5px;	
}

aside h3.phone {
	float:left;
	position:relative;
	margin:0 20px 0 0;	
}


/*  FORM
------------------------------------------------*/
aside h3.search {
	text-align:right;
	font-size:20px;
	line-height:20px;
	margin:18px 0 0 0;		
}

.search-form {
	width: 100%;
	margin:8px 0 30px 0;
	padding: 0;
	background: #fafbfa;
	border: 1px solid #d6d6d6;
	
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.search-form input[type=text]{
	width: 74%;
	height: 35px;	
	color: #171616;
	float:left;
	position:relative;
	border:none;
	content:'Search Inventory';
	background:none;
	font-size:17px;
	margin:0 0 0 4%;
	font-family: 'source_sans_prolight';
}

.searchButton {
	float:right;
	position: absolute;
	background:none;
	border:none;

	margin:0 12% 0 0;
	height: 35px;
	cursor: pointer;
	color:#363636;
	font-family: 'web_symbolsregular';
}

#form input {
/*	color:#363636;
	width: 100%;
	border:1px solid #DFDFDF;
	margin: 5px 0 15px;*/
	
	-webkit-box-sizing: border-box; /* For legacy WebKit based browsers */
     -moz-box-sizing: border-box; /* For legacy (Firefox <29) Gecko based browsers */
          box-sizing: border-box;

}

	
/*  NAVIGATION
------------------------------------------------*/
#menu-button{
	display: none;
}

nav.mobile {
	display:none;
}

nav.primary {
	padding:0;
	margin:0;
	width:100%;
	background: #fd2a0c;
	border-bottom:3px #fff solid;
}

nav.primary ul {
	max-width:1200px;
	margin:0 auto;
	padding:0;
}

nav.primary ul li {
	margin:0;
	padding:0;
	float:left;
	list-style-type:none;	
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

nav.primary ul li:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
		
nav.primary ul li:hover, nav.primary ul li:focus, nav.primary ul li:active {
  color: #202020;
}
nav.primary ul li:hover:before, nav.primary ul li:focus:before, nav.primary ul li:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
				
nav.primary ul li a {
	display:block;
	color:#f3f3f3;
	font-weight:normal;
	font-size:24px;
	line-height:60px;
	text-decoration:none;
	padding:0px 33px;
	margin:0;
	-webkit-transition:.5s ease-in;  
	-moz-transition:.5s ease-in;  
	-o-transition:.5s ease-in;  
	transition:.5s ease-in;
	font-family: 'source_sans_prolight';
}	

nav.primary ul li a:hover {
	color:#fff;
	background: #3f3f3f; 

}


/*  MAIN
------------------------------------------------*/	
.main {
	background:#fff;
	border-top:5px #6b6b6b solid;
}


/*  SLIDESHOW
------------------------------------------------*/
.cycle-slideshow {
	width:100%;
	border-bottom:5px #bebebe solid;
	line-height:0;
	margin:0 0 35px 0;
}

.cycle-slideshow img{
	width:100%;
}

/* pager */
.cycle-pager { 
    text-align: center; width: 100%; z-index:250; position: absolute; bottom: 10px; overflow: hidden;
}
.cycle-pager span { 
    font-family:Arial, Helvetica, sans-serif; font-size: 45px; line-height:45px; margin:0 5px 0 0; width: 16px; height: 16px; 
    display: inline-block; color: #fff; cursor: pointer; 
}
.cycle-pager span.cycle-pager-active {color: #FD2A0C;}
.cycle-pager > * {cursor: pointer;}


/*  ARTICLE
------------------------------------------------*/
article {
	padding:0 0 45px 0;
}

article h1{
	margin:0 0 3px 0;
}

article p{
	font-size:15px;
	line-height:20px;
}


/*  INVENTORY WRAP
------------------------------------------------*/
.inv-wrap {padding:45px 8% 55px 8%;}


/*  HOSTED CONTENT
------------------------------------------------*/	
.hosted-content {line-height:22px;}
.hosted-content h1 {font-size:35px; text-transform:none; margin:0 0 8px 0;}
.hosted-content .listings-wrapper .listings-list .listing-banner {background:#e0e0e0 !important;}
.hosted-content h2 {font-size:26px !important; letter-spacing:1px; line-height: 2em; }
.hosted-content h3 {font-size:24px; line-height:1.8em;}
.hosted-content h5 {font-size:18px !important;}
.hosted-content .listings-wrapper .listings-list .listing-name {font-size:18px; line-height:24px !important;}
.hosted-content .listings-wrapper .listings-list .equip-details {font-size:16px; line-height:22px !important;}
.hosted-content .listings-wrapper .listings-list .price {font-size:16px;}
.hosted-content .listings-wrapper .listings-list .dealer-info {font-size:16px; line-height:22px !important;}
.hosted-content .listings-detail-wrapper .listing-details ._DetailListingPrice select {margin:12px 5px 0 5px;}
.hosted-content label {font-size:16px !important; line-height:22px !important;}
.hosted-content .listings-wrapper .listings-list {font-size:14px !important;}
.hosted-content .widget-express, .hosted-content .widget-nah, .hosted-content .widget-ps {}


/*  CATEGORY
------------------------------------------------*/
.catergory {
	width:29.3%;
	margin:20px 2%;
	float:left;
	position:relative;	
	background:#ECECEC;
}

.catergory a:link, .catergory a:visited{
	text-decoration:none;
}

.catergory a:hover, .catergory a:active {
	text-decoration:none !important;
}

.catergory img {
	width:100%;	
}

.catergory h5 {
	padding:8px 0;
	text-align:center;	
}


/*  BRANDS
------------------------------------------------*/
.brands {
	margin:0 0 35px 0;
}

.brands a{
	display:block;
	width:29.3%;
	margin:0 2% 20px 2%;
	float:left;
	position:relative;		
}

.brands img {
	width:100%;	
}

/*  CONTACTS
------------------------------------------------*/
.contacts {
	width:25%;
	float:left;
	position:relative;	
}


/*  SCROLLING INVENTORY
------------------------------------------------*/
.scrolling-wrap {
	width:100%;
	height:92px;
	overflow:hidden;
	margin:0 0 35px 0;
}

.scrolling{
	width:100%;
	height:92px;
}


/*  SECTION
------------------------------------------------*/
section.banner-wrap {
	padding:30px 0;
	background:#757575;
	margin:0 0 35px 0;
}

section.banner-wrap .banner-link {
	width:20%;
	margin:0 2.5%;
	float:left;
	position:relative;
	text-align:center;
}

section.banner-wrap .banner-link a:link, section.banner-wrap .banner-link a:visited{
	color:#fff;
	text-decoration:none;
}

section.banner-wrap .banner-link a:hover, section.banner-wrap .banner-link a:active{
	color:#676767;
	text-decoration:none;
}


/* ADDRESS
------------------------------------------------*/	
address {
	font-style:normal;
	padding:0 0 15px 0;
}

address p {
	font-size:19px;
	line-height:23px;
	float:left;
	position:relative;
	font-family: 'source_sans_prolight';
} 

address span {
	font-size:19px;
	line-height:23px;
	text-align:right;
	float:right;
	position:relative;
	font-family: 'source_sans_prolight';
} 


/*  FOOTER
------------------------------------------------*/
footer {
	padding:45px 0;
	border-top:6px #fd2a0c solid;
}




/*  INVENTORY LISTINGS
------------------------------------------------*/
.list-top-section .list-listings-count,.listing-prices__alternate-retail-price,.listing-prices__discount-formatted-price,.listing-prices__exclusive-wholesale-price,.listing-prices__retail-price,.parts-list-content .parts-title-and-breadcrumbs .parts-listings-count,.thumb-container .thumb .thumb-details .title{color:var(--grantred) !important}.faceted-search-content .mobile-done-button-container .mobile-done-button,.faceted-search-content .selected-facets-container .selected-facet,.faceted-search-content button.faceted-search,.list-container-flexrow .dealer-phone-text,.list-container-flexrow .dealer-phone-text,.list-container-flexrow .view-listing-details-link,.list-container-flexrow .view-listing-details-link,.list-content .list-error-container .info button:not(.login-button),.show-all-modal .apply-button{color:var(--white) !important;background:var(--grantred) !important}.show-all-modal .back-button{color:var(--grantred) !important;border:1px solid var(--grantred) !important}.list-container-flexrow .price-container .price{color:var(--nearblack) !important}.detail__title{font-weight:800 !important;font-family:"source_sans_proregular" sans-serif !important}.detail__specs-label,.detail__specs-label_showroom{font-weight:800 !important}.listing-carousel .recommended-auctions-section .view-all-link,.listing-carousel .recommended-listings-section .view-all-link{color:var(--white) !important;background:var(--nearblack) !important}.listing-carousel .recommended-auctions-section .section-title,.listing-carousel .recommended-listings-section .section-title{padding:5px 12px !important}.detail__specs-heading{margin:0 0 10px 5px !important;font-size:1.1rem !important;font-weight:700 !important}.listing-carousel .recommended-auctions-section,.listing-carousel .recommended-listings-section{padding:10px 0 !important}.scrollToTop a{color:#fff !important}.detail__legal-notices{font-size:0.95rem !important;line-height:1.75 !important;font-weight:300 !important}.inv-main .slick-dots li.slick-active button:before{color:var(--grantred) !important}.inv-main .slick-dots li button:before{font-size:25px !important;color:var(--nearblack) !important}.inv-main .slick-dots{bottom:-34px !important}






/************************************************ Responsive Styles **/
@media screen and (max-width: 1225px) {
    nav.primary ul {max-width:845px;}
	nav.primary ul li a {font-size:20px; line-height:60px; padding:0px 18px;}
}

@media screen and (max-width: 1024px) {
	.content {width:93.6%; margin:0 3.2%;}
	.content-full{width:100%; margin:0;}
    
    nav.primary{display:none;}
	
	#menu-button{ /* initially will need to be hidden */
		display: block;
		font-size: 28px;
		width:90px;
		position: relative;
		z-index: 400;/* needs to be lower than nav.mobile, adjust as needed */
		padding:25px 0;
		background: #fd2a0c;
		width:100%;
	}
	#menu-button a{
		color:#fff;
		text-decoration: none;
		padding:0 0 0 .8em;
	}
	nav.mobile {
		display:block;
		position: fixed;
		top: 0;
		left: -250px;
		width: 250px;
		height: 100%;
		background: #333;
		z-index: 500; /* 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 {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: 15px 0px 15px 20px;
		color: #999;
		font-size:15px;
		text-decoration: none;
	}
	nav.mobile ul li a:hover {background: #e01d01; color: #fff;}
	
	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%;}
}

@media screen and (max-width: 975px) {
	.catergory {width:29.3%;}
}


@media screen and (max-width: 900px) {
	.logo {
		float:left;
		position:relative;
	}	

	.logo h2{
		text-align:right;
		margin:0 9px 0 0;
	}
	
	
	
	aside {width:100%; margin:0 0 45px 0;}
	
	aside .social-media {
		float:right;
		position:relative;
	}
	
	aside .social-media a {
		float:right;
		position:relative;
		margin:0 5px;	
	}
	
	aside h3.search {text-align:center;}
	
	aside h3.phone {
		float:left;
		position:relative;
		margin:0 20px 0 0;	
	}
	
	
	
	nav.primary{display:none;}
	
	#menu-button{ /* initially will need to be hidden */
		display: block;
		font-size: 28px;
		width:90px;
		position: relative;
		z-index: 400;/* needs to be lower than nav.mobile, adjust as needed */
		padding:25px 0;
		background: #fd2a0c;
		width:100%;
	}
	#menu-button a{
		color:#fff;
		text-decoration: none;
		padding:0 0 0 .8em;
	}
	nav.mobile {
		display:block;
		position: fixed;
		top: 0;
		left: -250px;
		width: 250px;
		height: 100%;
		background: #333;
		z-index: 500; /* 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 {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: 15px 0px 15px 20px;
		color: #999;
		font-size:15px;
		text-decoration: none;
	}
	nav.mobile ul li a:hover {background: #f75a0e; color: #fff;}
	
	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%;}
}


@media screen and (max-width: 800px) {
	section.banner-wrap .banner-link {width:45%; margin:25px 2.5%;}
}

@media screen and (max-width: 700px) {
	.contacts {width:100%; margin:3px 0 12px 0;}
}

@media screen and (max-width: 600px) {
	.logo img{width:100%;}	
}

@media screen and (max-width: 550px){
	address p {width:100%; text-align:center; margin:0 0 15px 0;}
	address span {width:100%; text-align:center; margin:0 0 5px 0;}
	
	.catergory {width:46%;}
	.brands a{width:46%;}
}

@media screen and (max-width: 460px) {
	.logo h2{text-align:center;}
}

@media screen and (max-width: 400px){
	section.banner-wrap .banner-link {width:95%; margin:25px 2.5%;}
}

@media screen and (max-width: 350px){
	.catergory {width:96%;}
	.brands a{width:96%;}
}

@media screen and (max-width: 300px){
	aside .social-media {display:none;}
}
