﻿/*===================== 
	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%;}


/*===================== 
	@Font-Face 
=======================*/


/*===================== 
	base styles 
=======================*/

html {
    font-family: Arial, sans-serif; /* 1 */
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-text-size-adjust: 100%; /* 2 */
	}

body {
    margin: 0;
    font-family: 'Noto Sans', sans-serif!important;
	}

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;
	} 

img { border: 0;} 
	
/*===================== 
	typography 
=======================*/

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	}
	h1 {font-size: 2em;}

p {
	margin: 0;
	}

	
h1 {
}
		

h2 {
}

	
h3 {
}


h4 {
}


h5 {
}


h6 {
}

/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/
	}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/ 
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		}  

/*===================== 
	header styles 
=======================*/

header {
	margin: 0 auto;
	width: 100%;
	}

.header-logo {
    padding: 25px 0px 25px 50px;
    width: 35%;
}

.header-contact-info{
    text-align: right;
    padding: 25px 50px 10px 0px;
}

.header-contact-link {
    color: black;
    font-size: 16px;
}

.header-contact-link:hover,
.header-contact-link:active,
.header-contact-link:focus{
    color: black;
}

.red {
    color: #b60000;
}

.header-email-btn {
    background-color: #b60000!important;
    color: white!important;
    text-align: right!important;
    border: none!important;
    font-weight: bold!important;
    padding: 3px 30px!important;
    margin-bottom: 15px!important;
    margin-right: 50px!important;
    font-size: 14px!important;
    border-radius: 0px!important;
}

.header-email-btn:hover {
    background-color: #990000!important;
}

/*===================== 
	nav styles 
=======================*/

.fa-facebook {
    font-size: 18px;
}

nav.primary {
	padding:0;
	display:block;
	margin:0 auto;
	position:relative;
	text-align: center;
    background-color: #b60000;
    width: 100%;
	}

nav ul {
	padding:0px;
	margin:0;
}

nav ul li {

}

nav > ul > li {
	display:inline-block;
	list-style-type:none; 
	padding: 10px 15px;
}

nav > ul > li:hover{
    background-color: #990000;
}

nav ul li a {
    font-family: 'Noto Sans', sans-serif;
	font-size: 16px;
	font-weight: 700;
    color: white;
    text-transform: uppercase;
}	
			
nav ul li a:hover,
nav ul li a:focus,
nav ul li a:active{
	color: white!important;
}


/* Appearance of the sub-level links */

nav.primary ul li li a { 
	line-height: ;
	color: ;
	text-align:;
	font-size: ;
	font-weight:;
	}
	
nav.primary ul li li a:hover { 
	color: ;
	text-align: ;
	font-size:  ;
	font-weight: ;
	}
	
nav.primary ul li li:hover { 
	}
	
	
/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too much */
nav.primary ul ul {
	display: none;
    position: absolute; 
	max-width: 235px;
	background: ;
	/*margin-top: 21px;*/
}
nav.primary ul ul ul {
    position: absolute; 
    left: 100%;
    top:0; 
}
nav.primary ul li:hover > ul {  
    display: block;
    line-height:18px; 
    z-index: 2000 !important;
}
nav.primary ul ul li {
    float: none; 
    position: relative;
	display:block;
    margin:0;
	width:100%;
	padding-left: ;
	padding-right: ;
}

.dropdown_arrow {
	display: inline-block !important;
}

.dropdown_style {
	font-size: ;
	font-weight: ;
}


/******** End of primary Nav ***************/


/*===================== 
	mobile nav
=======================*/

#menu-button{ /* initially will need to be hidden */
	display: block;
	font-size: 32px;
	width:100%;
	position: relative;
	z-index: 400;/* needs to be lower than nav.mobile, adjust as needed */
	background-color: #b60000;
	text-align: right;
	min-height: 0 !important;
	}
	#menu-button a{
		 color: white;
		 text-decoration: none;
		 text-align: right !important;
         padding-right: 15px;
	  }

nav.mobile {
	display:block;
	position: fixed;
	top: 0;
	left: -250px;
	width: 250px;
	height: 100%;
	background: #b60000;
	z-index: 500; /* needs to be higher than #menu-button, adjust as needed */
	overflow:auto;
}
nav.mobile .menu-toggle { /* Menu close button */
	position: absolute;
	top: 12px;
	right: 10px;
	display: inline-block;
	padding: 6px 9px 5px;
    font-family: 'Nunito Sans', sans-serif;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	vertical-align: top;
}
a.close_mobile {
	font-size: 26px !important;
	font-weight: 900;
	text-align: right;
    padding-right: 10px;
    float: right;
}

nav.mobile .menu-toggle:hover { /* Menu close button on hover */
	color: #fff;
}
nav.mobile ul {
	list-style: none;
	font-weight: 300;
	margin:0;
	padding:0;
}
nav.mobile ul li {
	padding: 8px 0 6px 0 !important;
}
nav.mobile ul li a {
	position: relative;
	display: block;
	padding-left: 20px;
	color: white;
	text-decoration: none;
	font-size: 15px;
	letter-spacing: 1px;
    clear: both;
}
nav.mobile ul li a:hover {
	background: ;
	color: #fcde66;
}
nav.mobile ul li li a { /* appearance of the sub-level links */
	position: relative;
	display: block;
	padding: 0px 10px 0px 15px;
	color: #000;
	text-decoration: none;
	text-transform: none !important;
}
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/menu-dropdown-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%;
}





/*===================== 
	content styles 
=======================*/
.hero {
    width: 100%;
}

.hero-btn {
    background-color: #b60000;
    width: 50%;
    border: none;
    text-align: center; 
    padding: 8px;
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
    color: white;
}

.hero-btn:hover {
    background-color: #990000;
    color: white;
}

.hero-title {
    font-weight: 700;
    font-style: italic;
    letter-spacing: 1.5px;
    font-size: 28px;
    text-transform: uppercase;
    color: white;
}

.hero-text {
    color: white;
    font-weight: 700;
    font-style: italic;
    font-size: 16px;
    line-height: 16px;
    padding: 10px 0px;
    letter-spacing: .5px;
    margin: 10px 0px
}

.hero-tint {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    position: absolute;
    top: 25%;
    left: 8%;
    padding: 60px 80px;
}

.welcome-wrap {
    padding: 50px 0px;
}

.home-white-wrap {
    max-width: 1200px;
    display: block;
    margin: auto;
    float: none;
}

.button-text {
    font-weight: 700;
    font-style: italic;
    letter-spacing: 1.5px;
    font-size: 28px;
    text-transform: uppercase;
}

.new_button {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("/siteart/btn-new.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    border: none;
    color: white;
    font-size: 24px;
    height: 300px;
    width: 95%;
    padding: 115px 0px;
    position: relative;
    margin: 50px auto;
}

.new_button:hover, .new_button:active, .new_button:focus {
    color: white;  
}    

.nw-button {
    background-color: #b60000;
    width: 175px;
    border: none;
    text-align: center; 
    padding: 8px;
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
    margin-top: 20px;
    
}

.nw-button:hover {
    background-color: #990000;
    color: white;
} 

.used_button {
    background:  linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("/siteart/btn-used.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    border: none;
    color: white;
    font-size: 24px;
    height: 300px;
    width: 95%;
    padding: 115px 0px;
    position: relative;
    margin: 50px auto;
}

.used_button:hover, .used_button:active, .used_button:focus {
    color: white;
    
}

.usd-button {
    background-color: #b60000;
    width: 175px;
    border: none;
    text-align: center; 
    padding: 8px;
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
    margin-top: 20px;
}

.usd-button:hover {
    background-color: #990000;
    color: white;
}

.parts_button {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("/siteart/btn-parts.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    border: none;
    color: white;
    font-size: 24px;
    height: 300px;
    width: 95%;
    padding: 115px 0px;
    position: relative;
    margin: 50px auto;
}

.parts_button:hover, .parts_button:active, .parts_button:focus {
    color: white;
    
}

.part-button {
    background-color: #b60000;
    width: 175px;
    border: none;
    text-align: center; 
    padding: 8px;
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
    margin-top: 20px;
}

.part-button:hover {
    background-color: #990000;
    color: white;
}

.fa-caret-right {
    font-size: 30px;
}

.homepage-location {
    max-width: 400px;
    width: 100%;
    margin-left: 25px;
}

.home-redtitle {
    color: red;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    font-size: 20px;
    margin-top: 40px;
}

.home-title {
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    padding-bottom: 15px;
}

	
/*===================== 
	Parts styles 
=======================*/
.part-phone-button {
    background-color: #b60000;
    width: 25%;
    border: none;
    text-align: center;
    padding: 12px;
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
    color: white;
} 

.hero-btn:hover {
    background-color: #990000;
    color: white;
}

.parts-title {
    font-weight: 700;
    font-style: italic;
    letter-spacing: .5px;
    font-size: 28px;
    color: white;
}

.parts-text {
    color: white;
   font-size: 16px;
    letter-spacing: .5px;
    margin: 50px 0px;
}

.parts-tint {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    position: absolute;
    top: 15%;
    padding: 50px 100px!important;
    width: 75%;
    margin-left: 12%!important;
    box-sizing: border-box;
}

/*===================== 
	About styles 
=======================*/

.about-container {
    max-width: 1200px;
    display: block;
    margin: auto;
}

.about-photos-wrap {
    padding: 75px 0px;
}

.bold-about-text {
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    margin-bottom: 15px;
}

.bold-about-text-jan-jerry {
    font-weight: 700;
    font-size: 24px;
    text-align: left;
    margin-bottom: 15px;
}

.jan-jerry-text {
    text-align: left;
}

.worker-name {
    font-weight: 700;
    font-size: 16px;
}

 .worker-info {
    margin-bottom: 15px;
}

.about-text {
    text-align: center;
}
    
.jerry-jan-info {
    padding-top: 95px;
    padding-left: 10px;
    margin-left: 30px;
}

.howard-photo {
    max-width: 400px;
    width: 100%;
}

.about-photos {
    padding: 6px;
    margin: 15px auto 5px auto;
    height: 225px;
    width: auto; 
}

.about-caption {
    padding-bottom: 25px;
}

.white-bknd {
    background-image: url("/siteart/pinstripe.png");
    padding: 50px 10px;
    width: 100%;
}

.jan-wrap {
    max-width: 1200px;
    display: block;
    margin: auto;
}

/*===================== 
	banner styles 
=======================*/



/*===================== 
	layout styles 
=======================*/

.container-fluid {
    padding: 0px;
}

.row-howards {
    padding: 0px;
    margin: 0px;
}

.div-howards {
    padding: 0px;
}

.center {
    text-align: center;
}



/*===================== 
	footer styles 
=======================*/

.right-align {
    text-align: right;
}

.footer-line {
    width: 95%;
    margin-left: 2.5%;
    border-bottom: 1px solid white;
    position: relative;
    top: 125px;
}

.footer-contact-section {
    text-align: left;
    float: right;
    display: inline-block;
    padding-right: 50px;
}

.footer-logo {
    padding: 35px 0px 10px 50px;
    width: 60%;
}

.footer-title {
    text-transform: uppercase;
    color: #b60000;
    font-weight: 700;
    font-style: italic;
    font-size: 18px;
    padding: 35px 25px 5px 50px;
}

.footer-contact-info {
    padding-left: 50px;
}

.footer-contact-link {
    color: white!important;
    font-size: 14px; 
}

.footer-contact-link:hover,
.footer-contact-link:active,
.footer-contact-link:focus{
    color: white; 
}

.footer-contact-link-red {
    color: white!important;
    font-size: 14px; 
}

.footer-contact-link-red:hover,
.footer-contact-link-red:active,
.footer-contact-link-red:focus{
    color: #b60000!important; 
}

.footer-logos {
    padding: 50px 40px 25px 0px!important;
    box-sizing: border-box;
}

.footer-photos {
    float: right;
    padding: 15px 0px 0px 7px; 
    width: 15%;
}

footer {
	margin: 0;
	width: 100%;
    background-color: black;
    color: white;
	}
	
a.footerlink:link,
a.footerlink:visited, 
a.footerlink:active {
	text-decoration: none; 
	font-size:10px;
    line-height: 1.25px;
	color: white;
	}
	a.footerlink:hover {
		text-decoration:none; 
		color: #b60000;
		}

.footertext {
	font-size:10px;
    line-height: 1.25px;
	color:white;
	}

.smallfootertext {
	font-size:10px;
    line-height: 1.25px;
	color:white;
	}

.divfooter {
	max-width:500px; 
	text-align:left; 
    padding: 50px 0px 25px 50px;
	}

/*===================== 
	contact form styles 
=======================*/

.form-howards {
    padding: 0px 2%;
}

.contact-text {
    margin-top: 30px;
    margin-bottom: 0px;
}

.contact_form {
    margin: 15px auto;
    padding: 15px;
    border: 1px solid gray;
    width: 100%;
}

.contact-header {
    color: #b60000;
    font-size: 36px;
    font-weight: 700;
}

.contact-p {
    font-size: 14px;
}

.submit-button {
    background-color: #b60000;
    color: white;
    font-size: 18px;
    padding: 5px 15px; 
    border: 2px solid #b60000;
    margin-top: 10px;
    margin-bottom: 30px;
}

.submit-button:hover{
    border: 2px solid #b60000;
    color: #b60000;
    background-color: white;
}

/*===================== 
	search styles 
=======================*/
input.homepage-submit-btn {
    background-image: url("/siteart/search-icon1.png")!important;
    border: none;
    padding: 8px 15px;
}

input.homepage-search-area {
    width: 80%;
    padding: 6px;
}

.homepage-seach {
    background: url("/siteart/search-bknd.jpg");
    padding: 50px 0px;
    background-color: black;
    background-size: cover
}

.search-title {
    padding-bottom: 5px;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-style: italic;
}

.search-text {
    padding-bottom: 25px;
    color: white;
}

/*===================== 
	thank you styles 
=======================*/

.thanksrow {
    text-align: center;
}

.thankyou {
    padding: 25px 0px;
    font-weight: 700;
    font-size: 36px;
    text-align: center;
    color: #b60000;
}

.thanks-text {
    font-size: 18px;
    text-align: center;
}

.thanks-button {
    color: white;
    background-color: #b60000;
    padding: 10px 25px;
    border: 2px solid #b60000;
    margin: 30px auto;
    font-size: 20px;
}

.thanks-button:hover{
    border: 2px solid #b60000;
    color: #b60000;
    background-color: white;
}

/*===================== 
	captcha styles 
=======================*/

/*control the 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;
    }

.CaptchaMessagePanel {
    padding:0 0 0 0 !important;
    margin:0 0 0 0 !important;
    font-weight:normal !important;
    font-size:12px;
    line-height:14px;
    }

.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;} 

/*--------------------------------------------------------------
## NEW INVENTORY LAYOUT STYLES
--------------------------------------------------------------*/
.body-wrapper {font-family: 'Noto Sans', sans-serif;}
.body-content {padding: 50px 0!important;}

/*-----FONTS-----*/
.list-content .list-title .list-title-text {font-family: 'Noto Sans', sans-serif!important; font-size: 25px; text-transform: uppercase;}
.list-content .listing-portion-title {font-family: 'Noto Sans', sans-serif; font-size: 20px;}
.list-content .list-title .list-listings-count {color: #b60000!important; font-size:12px!important;}
.compare-title h3 {color: #555555!important;}
.compare-listings-container .compare-container .compare-price {color: #b60000!important;}

.list-listing-title {font-family: 'Noto Sans', sans-serif!important;}
.listing-portion-title {font-family: 'Noto Sans', sans-serif!important;}
.list-content .list-main-section .list-container .list-listing .listing-top-right .listing-dealer-info .dealer-name {font-family: 'Noto Sans', sans-serif;}
.list-content .list-main-section .list-container .list-listing .listing-top .listing-top-left .listing-main-stats .price {color: #b60000!important; font-family: 'Noto Sans', sans-serif;}
.list-content .list-top-section .listing-option-bar .list-listings-count {color: #b60000!important;}
.faceted-search-content .faceted-section-head h5 {font-family: 'Noto Sans', sans-serif; border-radius: 0px!important;}
.listing-portion-title.description-title {font-family: 'Noto Sans', sans-serif;}
.faceted-search-content .faceted-section-box .faceted-search {border-radius: 0px!important;}
.faceted-search-content .faceted-section-box .faceted-btn-container .faceted-show-all-btn {border-radius: 0px!important;}
.detail-content .detail-main-body .main-detail-data .detail-price {color: #b60000!important; font-family: 'Noto Sans', sans-serif;}
.detail-content .detail-main-body .main-detail-data .detail-title {font-family: 'Noto Sans', sans-serif!important; font-size: 25px; text-transform: uppercase; color: #000; font-weight: 800;}
.detail-content .dealer-info h3 {font-family: 'Noto Sans', sans-serif; font-size: 20px;}
.contact-information {font-family: 'Noto Sans', sans-serif!important;}
.breadcrumbs {font-family: 'Noto Sans', sans-serif!important; font-size: 14px!important;}
.listing-widgets {font-family: 'Noto Sans', sans-serif!important;}
.detail-additional-data {font-family: 'Noto Sans', sans-serif!important;}
.detail-additional-data h4 {font-family: 'Noto Sans', sans-serif!important;}
.detail-content .search-results{color: #b60000!important;}
.legal-text-content {font-family: 'Noto Sans', sans-serif!important; font-size: 12px; font-style: italic;}
.mc-debuginfo {display: none;}

/*-----BUTTONS-----*/
.view-listing-details-link, .fin-calc-mobile > a, .contact-options a, .cs-btns a {background: #b60000!important; font-family: 'Noto Sans', sans-serif; border-radius: 0px!important;}
.view-listing-details-link:hover, .fin-calc-mobile > a:hover, .contact-options a:hover, .cs-btns a:hover {color:#fff!important;background: #555555!important;}
.email-seller-link {border-radius: 0px!important;}
.faceted-search-content .selected-facets-container .selected-facet{background: #b60000!important; font-family: 'Noto Sans', sans-serif; border-radius: 0px!important;}
.noUi-connect {background: #b60000!important;}
.noUi-handle  {background: #b60000!important;}
.list-content .listing-bottom .listing-widgets a {border-radius: 0px!important; font-family: 'Noto Sans', sans-serif!important;}
.detail-content .print-this, .detail-content .email-this {border-radius: 0px!important; font-family: 'Noto Sans', sans-serif;}
.offer-btn {border-radius: 0px!important; font-family: 'Noto Sans', sans-serif; background-color: #b60000!important;}
.offer-btn:hover {background-color: #555555!important;}
.send-email-btn {font-family: 'Noto Sans', sans-serif!important; border-radius: 0px!important; border-color: #b60000!important; color: #b60000!important;}
.detail-content .detail-additional-data .data-row .data-label {background: #555555!important;}
.print-this, .email-this {font-family: 'Noto Sans', sans-serif!important; border-radius: 0px!important;}
.detail-content .detail-main-body .main-detail-data .addthis_inline_share_toolbox .at-share-btn-elements {display: inline-block!important;}
.detail-content .detail-main-body .main-detail-data .addthis_inline_share_toolbox .at-share-btn-elements {width: auto!important;}
.paging-container .page-navs .list-page-nav {background: #b60000!important; font-family: 'Noto Sans', sans-serif;}
.list-container-flexrow .buy-now-link, .list-container-flexrow .check-availability-link, .list-container-flexrow .email-seller-link, .list-container-flexrow .dealer-phone-call {border-radius: 0px!important;}
.detail-content .search-results span {font-size: 14px!important;}


/*-----Mobile Styles-----*/
.price {color: #b60000!important; font-family: 'Noto Sans', sans-serif;}
.list-content .list-listing-mobile .dealer-phone-container .dealer-phone-call, .list-content .list-listing-mobile .dealer-phone-container .dealer-phone-text {color:#b60000!important; border-color: #b60000!important; border-radius: 0px!important;}
.specs-container {font-family: 'Noto Sans', sans-serif!important;}
.spec-container {font-family: 'Noto Sans', sans-serif!important;}
.mobile-breadcrumb {background-color: #555555!important;}
.detail-title {font-family: 'Noto Sans', sans-serif!important;}
.detail-content-mobile .detail-main-body .main-detail-data .detail-price {color: #b60000!important;}
.detail-content-mobile .dealer-info h3 {font-family: 'Noto Sans', sans-serif!important;}
.field-value {font-family: 'Noto Sans', sans-serif;}
.contact {font-family: 'Noto Sans', sans-serif;}

.detail-content-mobile .detail-main-body .main-detail-data .dealer-phone-mobile-container .dealer-phone-mobile {background-color: #b60000!important; font-family: 'Noto Sans', sans-serif!important; border-radius: 0px!important;}
.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 {background-color: #b60000!important; font-family: 'Noto Sans', sans-serif!important; border-radius: 0px!important; border: none!important;}
.detail-content-mobile .detail-contact-bar .contact-bar-btn {background-color: #b60000!important; font-family: 'Noto Sans', sans-serif!important; border-radius: 0px!important;}
.data-label {background-color: #555555!important;}
.faceted-search-content .mobile-done-button-container .mobile-done-button {background-color: #333!important; border-radius: 0px; font-family: 'Noto Sans', sans-serif;}
.faceted-search-content .mobile-done-button-container .mobile-done-button:hover {background-color: #b60000!important; border-radius: 0px; font-family: 'Noto Sans', sans-serif;}
.faceted-search-content .faceted-section-box .show-all-modal .show-all-modal-content-container .show-all-modal-content .title-close-row .apply-button {background: #b60000!important;}
.faceted-search-content .faceted-section-box .show-all-modal .show-all-modal-content-container .show-all-modal-content .title-close-row .back-button {color: #b60000!important; border: 1px solid #b60000!important;}

/*--------------------------------------------------------------
## INVENTORY SEARCH ON SEPARATE PAGE E.G. https://nextraninventory.com.wpdev - pull in with function.php
--------------------------------------------------------------*/
/*--------------YOU MAY NOT NEED THIS but if you want to pull in search on homepage use functions.php or separaate file-------------*/
.faceted-search-content .faceted-section-box .faceted-slider {
    width: 100%;
    margin: 0;
    padding: 0;
}
.leftslider {padding: 0 1%!important;}
.rightslider {padding: 0 1%!important;}


/*-----------NEW INVENTORY MEDIA QUERIES-----------*/
/*--------------You may not need this but it prevents a weird layout thing to happen around these pixel points-------------*/
@media (max-width : 795px) and (min-width : 786px) {
	.has-search-bar {width: calc(72% - .75%)!important;}
}
@media only screen and (max-width : 785px) {
	.footer-background {padding: 20px 5% 15% 5%;}
    .list-listing-wrapper {width: 95%!important; display: block!important; margin: auto!important; }
    .list-content .list-title {padding: 0px 12px 12px 12px!important;}
}
/*--------------Extends the footer so that the fixed nav doesn't overlap the footer-------------*/
@media only screen and (max-width : 400px) {
	.footer-background {padding: 20px 5% 20% 5%;}
}




















/*========================= 
	 Responsive styles 
===========================*/

/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1700px) {
/*========================= 
	 Parts styles 
===========================*/    
    .parts-tint {
        top: 10%;
        width: 80%;
        margin-left: 10%!important;
    }
}

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1600px) {
/*========================= 
	 Parts styles 
===========================*/    
    .parts-title {
        font-size: 26px;
    }
    
    .parts-text {
        margin: 30px 0px;
    }
}

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1500px) {
/*========================= 
	 header styles 
===========================*/  
    .header-logo {
        width: 45%;
    }
    
/*========================= 
	 Parts styles 
===========================*/   
    .parts-title {
        font-size: 22px;
    }
    
    .parts-text {
        font-size: 14px;
    }
    
    .part-phone-button {
        font-size: 14px;
        padding: 8px;
    }

/*========================= 
	 footer styles 
===========================*/ 
    .footer-photos {
        width: 20%;
    }
}

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1400px) {
/*========================= 
	 Parts styles 
===========================*/    
    .parts-title {
        font-size: 21px;
    }
    
    .parts-tint {
        top: 6%;
    }
}

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1300px) {
/*========================= 
	 Parts styles 
===========================*/    
    .parts-title {
        font-size: 21px;
    }
    
    .parts-tint {
        width: 80%;
        margin-left: 10%!important;
        padding: 45px 50px!important;
    }
    
    .parts-text {
        margin: 20px auto;
    }    
}

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1220px) {
/*========================= 
	 content styles 
===========================*/
    .welcome-wrap {
        padding: 50px 20px;
    }
    
/*========================= 
	 about styles 
===========================*/
    .about-container {
        padding: 0px 20px;
    }
    
    .jan-wrap {
        padding: 0px 20px;
    }
}


/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

/*========================= 
	 header styles 
===========================*/
    .header-logo {
        width: 55%;
    }
    
    .header-contact-link {
        font-size: 14px;
        
    }
    
    .header-contact-info {
        padding: 25px 50px 5px 0px;
    }
    
/*========================= 
	 content styles 
===========================*/
    .hero-tint {
        padding: 25px 35px;
        top: 15%;
    }
    
    .hero-title {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .hero-text {
        font-size: 14px;
    }    
    
    .button-text {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .home-title {
        font-size: 26px;
    }
    
/*========================= 
	 about styles 
===========================*/  
    .about-photos {
        height: 200px;
    }    

/*========================= 
	 Parts styles 
===========================*/      
    .parts-tint {
        width: 90%;
        margin-left: 5%!important;
    }

/*========================= 
	 footer styles 
===========================*/
    .footer-photos {
        width: 22%;
    }
    
    .footer-logo {
        width: 75%;
    }
    
}

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1100px) {
/*========================= 
	 Parts styles 
===========================*/    
    .parts-tint {
        padding: 30px 35px!important;
    } 
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 991px) {
/*========================= 
	 Header styles 
===========================*/
    .header-logo {
        width: 65%;
        padding: 25px 0px 25px 25px;
    }
    
    .header-contact-info {
        padding: 25px 25px 5px 0px;
    }
    
    .header-email-btn {
        margin-right: 25px;
    }
    
/*========================= 
	 Nav styles 
===========================*/   
    nav > ul > li {
        padding: 10px;
    }
    
/*========================= 
	 content  styles 
===========================*/ 
    .homepage-location {
        display: block;
        margin: auto;
        margin-top: 20px;
    }
    
    .home-redtitle {
        margin-top: 0px;
    }
    
    .welcome-wrap {
        text-align: center;
    }
    
/*========================= 
	 about styles 
===========================*/  
    .about-photos {
        height: 150px;
    }
    
    .jerry-jan-info {
        padding-top: 12%;
    }
    
/*========================= 
	 Parts styles 
===========================*/      
    .parts-tint {
        width: 100%;
        margin: auto!important;
        position: relative;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9))
    }    
    
/*========================= 
	 Footer styles 
===========================*/
    .footer-logo {
        padding: 25px 0px 10px 25px;
        width: 80%;
    }
    
    .footer-contact-section {
        padding-right: 25px;
        padding-top: 25px;
    }
    
    .footer-title {
        padding: 0px;
    }
    
    .footer-contact-info {
        padding-left: 0px;
    }
    
    .footer-line {
        top: 100px;
    }
    
    .footer-logos {
        padding: 15px 25px 25px 0px!important;
    }
    
    .footer-photos {
        width: 34%;
    }
    
    .divfooter {
        padding: 25px 0px 25px 25px;
    }
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 991px) {
/*========================= 
	 about styles 
===========================*/
    .jerry-jan-info {
        padding-top: 10%;
    }
}
@media only screen and (max-width : 930px) {   
    nav ul li a {
        font-size: 14px;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 767px) {
/*========================= 
	 Header styles 
===========================*/
    .header-logo-div {
        text-align: center;
    }
    
    .header-logo {
        padding: 25px 0px;
        width: 35%;
    }
  
    .header-email-btn {
        margin: 5px 0px!important; 
    }
    
/*========================= 
	 content styles 
===========================*/  
    .search-text {
        padding: 0px 25px 25px 25px;
    }
    
    i.fab.fa-facebook {
        color: #b60000;
        padding-bottom: 15px;
    }
  
    .hero-tint {
        display: none; 
    }
    
    .new_button {
        float: none;
        margin: 25px auto 0px auto;
    }
    
    .used_button {
        margin: 15px auto;
    }
    
    .parts_button {
        margin: 0px auto 25px auto;
        float: none;        
    }
    
    .home-redtitle {
        text-align: center;
    }
    
    .home-title {
        text-align: center;
    }
    
/*========================= 
	 search styles 
===========================*/  
    input.homepage-search-area {
        text-align: center;
    }
    
    input.homepage-submit-btn {
        border: none;
        background-repeat: no-repeat;
        background-position: center;
        background-color: #b60000;
        padding: 8px 15px;
        width: 80%;
        clear: both;
        text-align: center;
        margin-top: 5px;
    }
    
/*========================= 
	 about styles 
===========================*/ 
    .about-photos-wrap {
        padding: 50px 0px;
    }
    
    .jerry-jan-info {
        padding-top: 50px;
        padding-left: 0px;
        margin-left: 0px;
    }
    
    .bold-about-text-jan-jerry {
        text-align: center;
    }
    
    .jan-jerry-text {
        text-align: center;
    }
    
    .about-caption {
        padding-bottom: 0px;
    }
    
    .howard-photo {
        width: 50%;
    }
        
    .bold-about-text {
        font-size: 20px;
    }
    
/*========================= 
	 Parts styles 
===========================*/ 
    .part-phone-button {
        width: 50%;
    }
    
/*========================= 
	 footer styles 
===========================*/    
    .footer-logos {
        padding: 25px 10px 25px 10px!important;
    }
    
    .footer-photos {
        float: none;
        width: 150px;
        padding: 0px 5px 10px 5px;
    }
    
    .divfooter {
        text-align: center;
        max-width: 100%;
        padding: 25px 20px;
    }
    
    .footer-line {
        top: 170px;
    }  

}
 

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
/*========================= 
	 Header styles 
===========================*/  
    .header-logo {
        width: 60%;
    }
    
/*========================= 
	 about styles 
===========================*/     
    .howard-photo {
        width: 100%;
    }    
 
}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {


}

