﻿/*
	Site developed by Karoline Dassie
	
	Color information
	- Dark Blue: #1b2c58
	- Red: #ed1c24
	- Dark Gray: #c9cacb
	- Light Gray: #efeff0
	
*/

/*===================== 
	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%;}

/*===================== 
	base styles 
=======================*/
	
	body {
		font-family: 'Open Sans', sans-serif;
		-webkit-text-size-adjust: none;
		padding:0;
		margin: 0;
		background:#1b2c58;
		font-size:13px;
		font-weight:normal;
		line-height:2em;
		}
	
	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;}
		
	/*image replacement*/
	.hide-text {
		text-indent:  100%;
		white-space:  nowrap;
		overflow:  hidden;
		}	
	
	hr {
		-moz-box-sizing: content-box;
		box-sizing: content-box;
		border-style: solid;
		height: 0;
		color:#c9cacb;
		margin:2em auto;
		} 
	
	img { border: 0;} 
	.center{text-align:center}
	
	.sitewidth{max-width:1150px; margin:0 auto}
	.column1 {width:100%;}
	.column2 {width:47%; *width: 47%; float:left; margin-right:6%; box-sizing: border-box;}
	.column3 {width:33.33333%; *width: 30%; float:left; padding-right: 20px; box-sizing: border-box;}
	.column4 {width:25%; *width: 25%; float:left;  box-sizing: border-box;}
	.column5 {width:20%; float:left; padding-right:1%; box-sizing: border-box;}
	.column6 {width:16.66666%; *width: 14%; float:left; padding-right: 20px; box-sizing: border-box; margin: 0 0 20px 0;}
	.twothird{width:64%; *width: 64%; float:left; padding-right: 30px; box-sizing: border-box;}
	.onethird{width:36%; *width: 36%; float:left; box-sizing: border-box; text-align:right}
	.last{padding-right:0; margin-right:0}
	
/*===================== 
	typography 
=======================*/

	::-moz-selection {
		background: #c9cacb;
		color: #fff;
		text-shadow: none;
	}
	
	::selection {
		background: #c9cacb;
		color: #fff;
		text-shadow: none;
	}
	
	strong,b { font-weight:900;}
	
	h1 {
		font-size:21px;
		color:#ed1c24!important;
		font-weight:600;
		}
	
	h2 {
		font-size:24px;
		color:#fff;
		font-weight:600;
		}
	
	h3 {
		font-size:28px;
		color:#ed1c24;
		font-weight:900;
		}
		h3 span{
			font-size:14px;
			font-weight:normal;
			color:#777777;
			}
			
	h4{
		font-size:20px;
		color:#c9cacb;
		margin:2em 0 5px 0;
		text-transform:uppercase;
	}
	
	 h5{
		font-size: 15px;
		text-transform:uppercase;
		color: #fff;
		margin-bottom: 10px;
		font-weight:900;
	 }
	 
	p {
		font-size:14px;
		font-weight:normal;
		line-height:1.7em;
		margin: 0;
		color:#777777;
	}
			
/*===================== 
	link styles 
=======================*/

	a:focus {outline: thin dotted;/*reset*/}

	a,
	a:link, 
	a:visited, 
	a:active {
		outline: 0;/*reset*/
		color:inherit; 
		text-decoration:none;
		}
		a:hover  {
			outline: 0;/*reset*/
			text-decoration: none!important;
			color: #efeff0;
			}
			
	a.homebutton span { font-weight:200	}	
	a.homebutton {
		width:99.8%;
		display:block;
		text-transform:uppercase;
		padding: 1em 0;
		position:relative;
		border-radius: 8px;
		font-size: 25px;
		text-align:center;
		font-weight: 900;
		color: #1b2c58!important;
		cursor:pointer;
		transition:background-color 300ms ease, background-color 300ms ease, all 300ms ease;
		
		border:2px solid #c9cacb;
		background: rgba(239,239,240,1);
		background: -moz-linear-gradient(top, rgba(239,239,240,1) 0%, rgba(201,202,203,1) 100%);
		background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(239,239,240,1)), color-stop(100%, rgba(201,202,203,1)));
		background: -webkit-linear-gradient(top, rgba(239,239,240,1) 0%, rgba(201,202,203,1) 100%);
		background: -o-linear-gradient(top, rgba(239,239,240,1) 0%, rgba(201,202,203,1) 100%);
		background: -ms-linear-gradient(top, rgba(239,239,240,1) 0%, rgba(201,202,203,1) 100%);
		background: linear-gradient(to bottom, rgba(239,239,240,1) 0%, rgba(201,202,203,1) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#efeff0', endColorstr='#c9cacb', GradientType=0 );
		-webkit-border-radius: 7px;
		-moz-border-radius: 7px;
		border-radius: 7px;
		-webkit-box-shadow: 0px 0px 7px 0px #c3c3c3;
		-moz-box-shadow: 0px 0px 7px 0px #c3c3c3;
		box-shadow: 0px 0px 7px 0px #c3c3c3;	
	}
	a.homebutton:hover {opacity:0.5}
	#bigbtn{margin:3em auto 6em auto}

/*===================== 
	header styles 
=======================*/

	header {
		padding:2em 0;
		text-align:center;
		background:#fff;
		margin:0 auto;
	}
	
	.logo img{
		width:100%;
		max-width:500px;
		margin:0 auto 10px auto;
		display:block;
	}
	.logo img:hover{opacity:0.5; transition:background-color 300ms ease, background-color 300ms ease, all 300ms ease}
	
/*===================== 
	nav styles 
=======================*/

/* See menumaker.css */


/*===================== 
	layout styles 
=======================*/
	article{background:#fff}
	
	#pad{padding:6em 0}
	.left{float:left;}
	.right{float:right;}
	
	.redwrap{background:#ed1c24; padding:3em 1.5em ; text-align:center}
	.slidewrap{background:#1b2c58; padding:1.5em 1.5em 0 1.5em }
	
	#border-it{
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		border-radius: 3px;
		-webkit-box-shadow: 0px 0px 5px 0px #c3c3c3;
		-moz-box-shadow: 0px 0px 5px 0px #c3c3c3;
		box-shadow: 0px 0px 5px 0px #c3c3c3;
		}
	
/*===================== 
	scrolling inventory
=======================*/

	.scrolling-wrap {
		height:90px;
		overflow:hidden;
		padding:15px;
		margin:10px auto 0 auto
	}
	 
	.scrolling{
		width:100%;
		height:92px;
	}
	
/*===================== 
	FRAMELESS INVENTORY
=======================*/

	.hosted-content h1{font-size:24px!important; color:#1b2c58!important; font-weight:900}
	.hosted-content h2{ color:#1b2c58}
	.hosted-content h5{ color:#1b2c58!important}
	.hosted-content .listings-wrapper .listings-list .category-banner h3{ color:#1b2c58; line-height:normal!important}
	.hosted-content .options li{padding:0 1%!important;}
	.hosted-content .options li a{min-height:33px!important}
	
	.hosted-content h3{color:#ed1c24!important; font-size:23px!important}
	body .full .has-quote-forms #listing-top-information, body .full .has-quote-forms #listing-bottom-information{width:100%!important}
	body .full .has-quote-forms .quote-forms{width:100%!important}
	.hosted-content .listings-wrapper .flex>div, .hosted-content .listings-detail-wrapper .flex>div{width:50%!important; float:left!important}
	.hosted-content .fa {margin:0 !important}
	.hosted-content .m-bottom-15{text-transform: inherit;color:#ed1c24!important}
	
	
/*===================== 
	footer styles 
=======================*/
	footer {
		width: 100%;
		text-align:center;
		color:#9f9f9f;
		line-height:1.5em;
		}
	
	.bottom {
		background:#1b2c58;
		font-size: 13px;
		line-height: 24px;
		color:#fff;
		padding:2em 0;
		}
		.bottom p{
			color:#c7c7c7; 
			font-size: 13px;
			line-height: 24px;
			}
		.bottom a{
			font-size: 13px;
			line-height: 24px;
			color: #c7c7c7;
			text-decoration:none;
			transition:background-color 300ms ease, background-color 300ms ease, all 300ms ease;
			}
			.bottom a:hover{color: #fff; font-weight:700 }
	
	a.footerlink:link,
	a.footerlink:visited, 
	a.footerlink:active {
		text-decoration: none; 
		font-size:11px;
		color:#9f9f9f;
		}
		a.footerlink:hover {
			text-decoration:underline; 
			font-size:11px;
			color:#fff;
			}
	
	.footertext {
		font-size:11px; 
		color:#9f9f9f;
		}
	
	.smallfootertext {
		font-size:11px; 
		color:#9f9f9f;
		}
	
	.divfooter {
		float:right;
		max-width:414px; 
		text-align:right; 
		}


/*====================
	Inventory styles
====================*/

.hosted-content .attachment-search .search-checkboxes label .row {margin-left:0 !important;margin-right:0 !important;margin-bottom:0px !important;}

.list-content .list-main-section .list-container .list-listing .listing-top-right .view-listing-details-link, .faceted-search-content .selected-facets-container .selected-facet, .list-content .list-listing-mobile .view-listing-details-link, .list-content .list-listing-mobile .buy-now-link, .list-content .list-listing-mobile .check-availability-link, .list-content .list-listing-mobile .email-seller-link, .detail-content .detail-main-body .main-detail-data .offer-btn, .detail-content .detail-main-body .main-detail-data .buy-btn, .detail-content-mobile .detail-main-body .main-detail-data .dealer-phone-mobile-container .dealer-phone-mobile, .detail-content-mobile .detail-main-body .main-detail-data .offer-btn-mobile, .detail-content-mobile .detail-main-body .main-detail-data .send-email-btn-mobile, .detail-content-mobile .detail-main-body .main-detail-data .send-wholesale-email-btn-mobile, .detail-content-mobile .detail-main-body .main-detail-data .fin-calc-btn-mobile {background:#ed1c24 !important; }
.list-content .list-title .list-title-text, .detail-content-mobile .detail-main-body .detail-mobile-top .detail-title {font-family:'oswaldregular' !important;font-size: 22px; line-height: 26px;}

.detail-content .detail-additional-data .data-row .data-label, .detail-content-mobile .detail-additional-data .data-row .data-label {background: #ed1c24 !important;text-transform: uppercase; letter-spacing: 1px;font-family:'oswaldregular' !important;}
.detail-content-mobile .detail-contact-bar .contact-bar-btn, .faceted-search-content .mobile-done-button-container .mobile-done-button {background: #000 !important;}

.faceted-search-content .faceted-section-head {
	background: #1b2c58!important;
}

.faceted-search-content .faceted-section-box .faceted-btn-container .faceted-show-all-btn {
	background: #ed1c24!important;
}
.faceted-search-content .faceted-section-box .faceted-search{
	background: #ed1c24!important;
}

.list-content .list-title .list-listings-count{
	color:#1b2c58!important;
}

.list-content .list-main-section .list-container .list-listing .listing-top-right .buy-now-link:hover, .list-content .list-main-section .list-container .list-listing .listing-top-right .check-availability-link:hover, .list-content .list-main-section .list-container .list-listing .listing-top-right .email-seller-link:hover, .list-content .list-main-section .list-container .list-listing .listing-top-right .video-chat-link:hover {
	background-color: #1b2c58!important;
}
.list-content .list-main-section .list-container .list-listing .listing-top-right .buy-now-link, .list-content .list-main-section .list-container .list-listing .listing-top-right .check-availability-link, .list-content .list-main-section .list-container .list-listing .listing-top-right .email-seller-link, .list-content .list-main-section .list-container .list-listing .listing-top-right .video-chat-link{
	background-color: #1b2c58!important;
}
.list-content .list-top-section .listing-option-bar .list-listings-count{
	color: #1b2c58!important;
}
.faceted-search-content .faceted-section-box .faceted-option-checkbox-container .option-name{
	margin-left:4px!important;
	
}
.faceted-search-content .faceted-section-box .faceted-option-checkbox-container label input {
height: 33px!important;

}
#parts-content .parts-bottom-section .parts-list-view .parts-list-content .parts-listing-container .email-seller-link:hover{
	background-color: #1b2c58!important;
}
#parts-content .parts-bottom-section .parts-list-view .parts-list-content .parts-listing-container .email-seller-link{
	background-color: #1b2c58!important;
}
#parts-content .parts-bottom-section .parts-list-view .parts-list-content .parts-listing-container .parts-button.view-details{
	background: #ed1c24!important;
}
#parts-content .parts-top-section .parts-title-and-breadcrumbs .parts-title .parts-listings-count{
	color: #1b2c58!important;
}
.list-content .list-main-section .list-container .list-listing .listing-top .listing-top-left .listing-main-stats{
	line-height: normal!important;
}


.button{
	display:contents!important;
}
#cssmenu ul {display: block !important;}

/*===================== 
   Responsive styles 
=======================*/

@media screen and (max-width:1150px) {
	#pad{padding:1.5em}
	.redwrap {padding:1.5em;}
	#bigbtn{margin:1em auto 3em auto}
}

@media screen and (max-width:650px) {
	h1, h2{FONT-SIZE:17PX;}
	header{padding:1em 0; margin:0 }
	.column2 {
		width:100%; 
		*width: 100%; 
		float:none; 
		margin:0 auto; 
		text-align:center;
	}
	.logo img{max-width:400px; margin:0 auto}
	
	a.homebutton {
		padding: 0.5em 0;
		font-size: 18px;
	}
	#bigbtn{margin:1em auto 2em auto}
	.divfooter{text-align:center; float:none; width:100%; max-width:100%;}
	.bottom {text-align:center;	}
	.last {margin-top:1em}
}

@media screen and (max-width:585px) {
	.twothird{
		width:100%; 
		*width:100%; 
		float:none; 
		text-align:center;
		margin-bottom:2em;
		padding-right:0;
	}
	.onethird{
		width:100%; 
		*width:100%; 
		float:none; 
		text-align:center
		}
		
}

@media screen and (max-width:500px) {
	.column4 {
		width:100%;
		margin:2em auto;
		float:none;
	}
}

@media screen and (max-width:480px) {

}

@media screen and (max-width:320px) {

}
