﻿/*====================================== 
	
	Color information
	
	-
		 
========================================*/

/*====================================== 
		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%;}
svg:not(:root) {overflow: hidden;}

/* Hides giant arrows that show up on inventory pages on Chrome *smh* */
.container.cf .widgets svg[class*="fa"], .container.cf .widgets-details svg[class*="fa"] {display: none !important;}

/*====================================== 

			BASE STYLES 

========================================*/
* {box-sizing: border-box;}

html {-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;}
.clear {clear: both;}
img {border: 0;max-width:100%;} 

body {
    font-family: roboto, sans-serif;
	font-weight: 200;
    margin: 0;
	padding:0;
	background-color: #fff;
	color: #111;
}

hr {width: 90%; margin: 10px auto; background-color: #fff; height: 1px;}

.border-bottom {border-bottom: 1px solid rgba(255,255,255,0.7);}
.border-top {border-top: 1px solid rgba(255,255,255,0.7);}
.border-bottom-dk {border-bottom: 1px solid rgba(0,0,0,0.7);}
.border-top-dk {border-top: 1px solid rgba(0,0,0,0.7);}

.padding.top {padding-top: 20px;}
.padding.bottom {padding-bottom: 20px;}
.padding.left {padding-left: 3%;}
.padding.right {padding-right: 3%;}

.padding-small.top {padding-top: 8px;}
.padding-small.bottom {padding-bottom: 8px;}
.padding-small.left {padding-left: 8px;}
.padding-small.right {padding-right: 8px;}


	
/*====================================== 

			TYPOGRAPHY

=======================================*/

@font-face {
	font-family: "roboto";
	src: url(../webfonts/roboto.ttf);	
}

@font-face {
	font-family: "robotol";
	src: url(../webfonts/roboto-light.ttf);	
}

@font-face {
	font-family: "robotob";
	src: url(../webfonts/roboto-bold.ttf);	
}

@font-face {
	font-family: "oswald";
	src: url(../webfonts/oswald.ttf);	
}

@font-face {
	font-family: "oswaldl";
	src: url(../webfonts/oswald-light.ttf);	
}

h1, h2, h3, h4, h5, h6 {
    font-family: oswald, sans-serif ;
	font-weight: 400;
	margin: 5px 0;
	color: #303030;
	text-transform: uppercase;
}

h1.light, h2.light, h3.light, h4.light, h5.light, h6.light {
	font-family: robotol, sans-serif;
	font-weight: 200;
}

h1.white, h2.white, h3.white, h4.white, h5.white, h6.white, p.white {
	color: #fff;
}

h1.black, h2.black, h3.black, h4.black, h5.black, h6.black, p.black {
	color: #000;
}

h1.red, h2.red, h3.red, h4.red, h5.red, h6.red, p.red {
	color: #9b0c10;
}

h1.inline, h2.inline, h3.inline, h4.inline, h5.inline, h6.inline, p.inline {
	display: inline-block; vertical-align: middle;
}

h1.not-caps, h2.not-caps, h3.not-caps, h4.not-caps, h5.not-caps, h6.not-caps {
	text-transform: none;
}

h1.huge {font-size: 2.9rem;}
h1 {font-size: 36px;}
h2 {font-size: 30px;}
h3 {font-size: 24px;}
h4 {font-size: 22px;}
h5 {font-size: 18px;}
h6 {font-size: 16px;}

p, li {
	font-size: 12px;
	line-height: 1.4em;
	margin: 0;
	font-family: roboto, sans-serif;
	padding: 5px 2%;
}

p.small {font-size: 10px;}
p.medium {font-size: 16px;}
p.large {font-size: 20px;}

p.nopadding {padding: 0;}

strong {font-family: robotob, sans-serif;}
.text-center {text-align: center;}
.text-center2 {text-align: center; white-space: nowrap;}
.stencil {font-family: stencil, sans-serif;}
.small {font-size: 10px;}
p.oswald {font-family: oswald, sans-serif;}

img.inline {display: inline-block !important;}

/*====================================== 

			LINK STYLES

=======================================*/

a {
    text-decoration:none;
	color: #9b0c10;
}

a:hover  {
	color: #111;
    text-decoration:none;
} 

a.white {color: #fff !important;}
a.black {color: #000 !important;}
a.red {color:#9b0c10 !important;}
a.dark {color: #333}
a.hov-under:hover {text-decoration: underline;}




/*======================================

		TOPBAR/HEADER STYLES 

=======================================*/

header{
	width:100%;
	margin:0;
	background-image: url('../siteart/red-bg.jpg');
	background-repeat: repeat-x;
	display: block;
	position: fixed;
	z-index: 999999;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
}





/*======================================

		See menu.css for Nav Styles 

=======================================*/





/*======================================

			Content Styles

=======================================*/


@keyframes fadein {
    from {opacity:0;}
    to {opacity:1;}}
@-moz-keyframes fadein { /* Firefox */
    from {opacity:0;}
    to {opacity:1;}}
@-webkit-keyframes fadein { /* Safari and Chrome */
    from {opacity:0;}
    to {opacity:1;}}
@-o-keyframes fadein { /* Opera */
    from {opacity:0;}
	to {opacity: 1;}}

.container-fluid.main {max-width: 1200px;}

#wrapper{
	width:100%;
	position: absolute;
	top: 172.6px;
	left: 0;
	right: 0;
	margin: auto; 
	transition: 0.5s;
	background: url(../siteart/bkg.jpg) no-repeat fixed;
	
	animation: fadein 0.5s;
    -moz-animation: fadein 0.5s; /* Firefox */
    -webkit-animation: fadein 0.5s; /* Safari and Chrome */
    -o-animation: fadein 0.5s; /* Opera */
}

.tile-bg {background: url(../siteart/tile-bg.png) repeat; color: #fff;} 
.white-bg {background-color: white;}
.dark-bg {background-color: #222;}
.red-bg {background-color: #9b0c10;}

img.full-width {width: 100%;}




/*======================================

			Hero Slider Styles

======================================*/
.home--sliderdots {
	position: absolute;
	bottom: 10px;
	width: 100%;
	text-align: center;
	z-index: 9;
}

.home--sliderdot {
	display: inline-block;
	margin: 0 4px;
	border-radius: 100%;
	background-color: #ffffff;
	width: 12px;
	height: 12px;
	border: 2px solid #ffffff;
	cursor: pointer;
}

.home--sliderdot:first-of-type {
	background-color: #4097C5;
}

.hero-images img {
	position: absolute;
	max-width: 100%;
	top: 0;
	transition: 0.3s;
	opacity: 0;
	left: 0;
}

.hero-images img:first-of-type {
	opacity: 1;
	position: relative;
}

#slide-left, #slide-right {
	position: absolute;
	bottom: 0;
	color: #aaa;
	cursor: pointer;
	font-size: 20px;
}

#slide-left {left: 25%;}
#slide-right {right: 25%;}

#slide-left:hover, #slide-right:hover {
	color: #9b0c10;
}





/*======================================

		Scrolling Inventory Styles

======================================*/
.scrolling-wrap {
    width:100%;
    height:90px;
    overflow:hidden;
}
 
.scrolling{
    width:100%;
    height:92px;
}







/*======================================

			Contact Form Styles

======================================*/
#contact-form input, #contact-form textarea {
	width: 100%;
	margin: 10px 0;
	padding: 5px 8px;
	border: 1px solid #ddd;
}

#contact-form input:focus, #contact-form textarea:focus {
	border: 1px solid #888;
}

/* One line Captcha */
.CaptchaPanel {
	margin:0 0 0 0 !important;
	padding:0 0 0 0 !important;
	text-align: center;
	line-height:normal !important;
}

.CaptchaImagePanel {
	margin:0 0 0 0;
	padding:0 0 0 0;
	width: 50%;
	display: inline-block;
	float: left;
}

.CaptchaMessagePanel {
	padding:0 0 0 0 !important;
	margin:0 0 0 0 !important;
	font-weight:normal !important;
	font-size:11px;
	line-height:13px;
	width: 50%;
	display: inline-block;
	float: left;
}

.CaptchaAnswerPanel {
	margin:0 0 0 0;
	padding:2px 0px 2px 0px !important;
}

.CaptchaWhatsThisPanel {
	line-height:0;
	margin:0 0 0 0;
	padding:8px 0 8px 0 !important;
}

.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:none;} 
#CaptchaImage {margin-top: 10px !important;}
#CaptchaAnswer {width: 40% !important;}







/*======================================

			Footer Styles

======================================*/

.footer {
	background-color: #ccc;
	color: #444;
}

.footer-nav {list-style-type: none; margin: 0;}
.footer-nav li {display: inline-block; padding: 8px 3%;}


/*======================================

		   Inventory Styles

======================================*/

nav.primary ul li:not(#navbar--header){box-sizing: border-box !important;}

.fa-share-alt{margin-right:7px;}
.faceted-search-content .faceted-section-box .faceted-option-checkbox-container .option-name{margin-top: 0 !important;}
.fa-calculator{color: #000;}
.fin-calc .fa-calculator{margin-right:3px;}
.contact-options{color:#FFF;}
.compare-chkbox-container .compare-listings .fa-check{top:4px !important; left:2px !important;}

#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:#c4393c !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:#c4393c !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 #c4393c !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: #c4393c !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;}

.flex {display:flex; justify-content:center; text-align:center; gap:10px; }

.col-md-10.text-center{
	margin: 0 auto;
}

.info-text {font-size:15px;}
.line-height {line-height:30px;}


/*======================================

		  Responsive Styles

======================================*/

@media screen and (max-width: 1167px) {
.info-text {font-size:13px;}
}

@media screen and (max-width: 1120px) {
	
}

@media screen and (max-width: 1014px) {
.info-text {font-size:12px;}
}


/*===== Responsive navbar breakpoint =====*/
@media screen and (max-width: 970px) {
	#wrapper {top: 114px;}
	
	.homelink i {display: none;}	
	
	.home-about__header .col-sm-6 {width: 100%; max-width: 100%; flex: auto;}
	.home-about__header .phone, .home-about__header .email {width: 50%; max-width: 50%; flex: auto;}
}

@media screen and (max-width: 800px) {
	.homelink-text h5 {display: none;}
}

@media screen and (max-width: 670px) {
	.learn-more .row .col-sm-4 h2 {height: 2.4em;}
}

/*===== Bootstrap col-sm breakpoint =====*/
@media screen and (max-width: 575px) {
	.disappear {display: none;}
}

@media only screen and (max-width: 480px) {
	
}

@media screen and (max-width: 447px){
	
}

@media screen and (max-width: 414px){
	
}
	
