﻿/***** BEGIN RESET *****/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0;	
}

ol, ul {
	list-style: none;
}

table{border-collapse:collapse; width:100%;}
td{vertical-align:top;}

/* Make HTML 5 elements display block-level for consistent styling */  
header, nav, article, footer, address {  
    display: block;  
} 

/*-------- COLORS --------

*/

/***** END RESET *****/
::-moz-selection {
    background: #242021; 
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #242021;
    color: #fff;
    text-shadow: none;
}


/* Clearfix */
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.cf {
    *zoom: 1;
}


html{
	scroll-behavior: smooth;
}
/*-------- BODY STYLES --------*/

body {
background: #fdfdfc;
}

a:link, a:visited, a:active {text-decoration:none;}
a:hover {text-decoration:none;}


hr{border:none; border-top:#f0f0f0 1px solid;}

/*--- HEADER STYLES ---------------------*/
header {}




/*---BODY--------------------------------*/

.uppercase{
	text-transform: uppercase;
}


.flex{
	display: flex;
	flex-wrap: wrap;
}
.flex-column{flex-direction: column;}
.col33{
	width: 33.33333%;
}
.col50{
	width: 50%;
}
.col66{
	width: 66.666666%;
}
.col100{
	width: 100% !important;
}
.logo img{
	max-width: 100%;
}

/* SLIDER */

.cycle-slideshow{
	position: relative !important;
	z-index: 10;
}
.slide{
	position: relative;
	min-height: 500px;
    display: flex !important;
	width: 100% !important;
	bottom: 0 !important;
	transition: ease-out background 100s;
	
	-moz-background-size: 105% auto !important;
	-o-background-size: 105% auto  !important;
	-webkit-background-size: 105% auto  !important;
	background-size: 105% auto  !important;
}
.cycle-slide-active{
	-moz-background-size: 125% auto !important;
	-o-background-size: 125% auto  !important;
	-webkit-background-size: 125% auto  !important;
	background-size: 125% auto  !important;
	transition: ease-out background 12s;
}
.slide .text-overlay{
	font-family: bai jamjuree, sans-serif;
	color: #fdfdfc;
	align-self: center;
	position: relative;
	width: 50%;
	padding: 90px 0;
}
.slide .text-overlay .heading-banner{
	background: #fdfdfc;
	padding: 0 0 0 5.6%;
}
.slide .text-overlay .heading-banner .green-banner{
	background: #fdfdfc;
    padding: 15px 2.8% 15px 5.6%;
	background: #64aa32;
}
.slide .text-overlay h1{
	font-size: 24px;
	line-height: 24px;
	letter-spacing: 0.5px;
	font-weight: 400;
    text-shadow: none;
	text-transform: uppercase;
	font-style: italic;
}
.slide .text-overlay h2{

	font-size: 54px;
	line-height: 48px;
	letter-spacing: 0px;
	font-weight: 700;
    text-shadow: 1px 0 0 #fdfdfc;
	text-transform: uppercase;
	font-style: italic;
}
.slide .text-overlay p{
	padding: 20px 2.8% 20px 0;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0.5px;
}

.slide .text-overlay .hero-pad{
	padding-left: 11.2%;
}

/* PRODUCT GRID */
.product-grid{
			display: flex; flex-wrap: wrap; gap: 10px;
			
		}
		.product-grid > div{
			width: calc(25% - 10px);
			background-size: cover;
			background-position: center center;
			min-height: 240px;
			position: relative;
			
		}
		.product-grid > div > div{
			opacity: 0;
			background: #000;
			color: #fff;
			pointer-events: none;
			padding: 20px;
			position: absolute;
			left: 0;
			right: 0;
			top: 0;
			bottom: 0;
		}
		.product-grid > div > div a{
			font-size: 14px;
			color: #fff;
		}
		.product-grid > div > div ul{
			margin: 0;
		}
		.product-grid > div:hover > div{
			opacity: 1;
			pointer-events: unset;
		}
		.product-grid > div > span{
			position: absolute;
			left: 0;
			right: 0;
			top: 0;
			bottom: 0;
			display: flex;
			justify-content: center;
			align-items: center;
			text-align: center;
			color: #fff;
			background: rgba(0,0,0,0.33);
			text-transform: uppercase;
			font-weight: 700;
			font-size: 24px;
			text-shadow: 0 0 6px rgba(0,0,0,0.8);
		}
		.product-grid > div:hover > span{
			display: none;
		}

/* Tablet */
@media (max-width: 1024px) {
    .product-grid > div {
        width: calc(50% - 10px);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .product-grid > div {
        width: 100%;
    }
}

/* RENTAL GRID */
.rental-grid{
	display: flex; flex-wrap: wrap; gap: 10px;

}
.rental-grid > a{
	width: calc(25% - 10px);
	background-size: cover;
	background-position: center center;
	min-height: 240px;
	position: relative;
	cursor: pointer;

}
.rental-grid > a > div{
	opacity: 0;
	background: #000;
	color: #fff;
	pointer-events: none;
	padding: 20px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}
.rental-grid > a > div a{
	font-size: 14px;
	color: #fff;
}
.rental-grid > a > div ul{
	margin: 0;
}
.rental-grid > a:hover > div{
	background-size: 120%; 
}
.rental-grid > a > span{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fff;
	background: rgba(0,0,0,0.33);
	text-transform: uppercase;
	font-weight: 700;
	font-size: 24px;
	text-shadow: 0 0 6px rgba(0,0,0,0.8);
}
.rental-grid > a:hover > span{
	background-size: 120%; 
}


.rental-grid > a:hover {
    background-size: 105%;
}

.rental-grid > a:hover > span {
    background: rgba(0,0,0,0.55);
}



/* Tablet */
@media (max-width: 1024px) {
    .rental-grid > a {
        width: calc(50% - 10px);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .rental-grid > a {
        width: 100%;
    }
}


/* CTA BUTTONS */

.cta{
	padding: 20px;
	font-size: 18px;
	line-height: 24px;
	letter-spacing: 0.5px;
	font-weight: 400;
	font-family: bai jamjuree, sans-serif;
	text-transform: uppercase;
	text-align: center;
	display: inline-block;
	max-width: 280px;
	width: 100%;
	box-sizing: border-box;
	margin-right: 2.8%;
	margin-bottom: 20px;
	
	background: #64aa32;
	color: #fdfdfc;
	
	-moz-transition: ease-in-out 0.2s all;
	-o-transition: ease-in-out 0.2s all;
	-webkit-transition: ease-in-out 0.2s all;
	transition: ease-in-out 0.2s all;
}

.cta:hover, .cta:active{
	transform: translateY(-4px);
	background: #70b63e;
}
.cta.white{
	background: #fdfdfc;
	color: #242021;
}
.cta.black{
	background: #242021;
	color: #fdfdfc;
}
.cta.black:hover{
	background: #333;
}

/* CTA BOXES */

#cta-boxes{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#cta-boxes a{
	font-family: bai jamjuree, sans-serif;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	
    width: 45.8%;
    position: relative;
    margin: 2.8% 1.4% 2.8% 2.8%;
	padding: 4.2% 5.6%;
	box-sizing: border-box;
	text-align: center;
}
#cta-boxes a:last-of-type{
    margin: 2.8% 2.8% 2.8% 1.4%;
}



#cta-boxes a.new{
	background: url('/siteart/new.jpg') 50% 10%;
	-moz-background-size: cover;
	-o-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
}
#cta-boxes a.used{	
	background: url('/siteart/used.jpg') center center;
	-moz-background-size: cover;
	-o-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
}


#cta-boxes a h3{
	font-family: bai jamjuree, sans-serif;
	letter-spacing: 0.5px;
	font-style: italic;
	
	font-weight: 700;
	font-size: 36px;
	line-height: 30px;
	
	
	color: #fdfdfc;
	text-shadow: 1px 0 0 #fdfdfc;
	padding-bottom: 10px;
	
	-moz-transition: ease-in-out all 0.3s;
	-o-transition: ease-in-out all 0.3s;
	-webkit-transition: ease-in-out all 0.3s;
	transition: ease-in-out all 0.3s;
}
#cta-boxes a:hover h3, #cta-boxes a:hover p{
	transform: translateX(-10px);
}
#cta-boxes a p{
	font-size: 16px;
	line-height: 24px;
	color: #fdfdfc;
	
	-moz-transition: ease-in-out all 0.33s;
	-o-transition: ease-in-out all 0.33s;
	-webkit-transition: ease-in-out all 0.33s;
	transition: ease-in-out all 0.33s;
}
#cta-boxes a:last-of-type{
	margin-right: 2.8%;
	width: 100%;
}


#cta-boxes a:hover:before {
	right: 0%;
	opacity: 0.66;
}
#cta-boxes a:before{
	content: '';
	position: absolute;
	
	left: 0;
	right: 94.4%;
	top: 0;
	bottom: 0;
	background: #64aa32;
	-moz-transition: ease-in-out all 0.4s;
	-o-transition: ease-in-out all 0.4s;
	-webkit-transition: ease-in-out all 0.4s;
	transition: ease-in-out all 0.4s;
	
	opacity: 1;
}

/* PANELS */

.nopad{
	padding: 0 !important;
}
.panel-row{
	margin-top: -2.8% !important;
}

.bg-grey{
	background: url('/siteart/bg-grey.jpg') center center fixed;
		-moz-background-attachment: fixed;
	-o-background-attachment: fixed;
	-webkit-background-attachment: fixed;
	background-attachment: fixed;
	
	
	-moz-background-size: cover;
	-o-background-size: cover;
	-wekbit-background-size: cover;
	background-size: cover;
}
.bg-black{
	background: #242021 !important;
	color: #fdfdfc !important;
}
.bg-black ul li, .bg-black ul li a{
	color: #fdfdfc !important;
}
.bg-black p a{
	color: #64aa32 !important;
}

.bg-green{
	background: #64aa32 !important;
	color: #fdfdfc !important;
}
.bg-green .heading-sm{
	border-color: #fdfdfc !important;
}
.bg-green .heading-md{
	border-color: #fdfdfc !important;
}
.bg-tillage{

	background: url('/siteart/bg-tillage.jpg') center center !important;
	-moz-background-size: cover !important;
	-o-background-size: cover !important;
	-wekbit-background-size: cover !important;
	background-size: cover !important;
}
.bg-sprayer{

	background: url('/siteart/bg-sprayer.jpg') center center !important;
	-moz-background-size: cover !important;
	-o-background-size: cover !important;
	-wekbit-background-size: cover !important;
	background-size: cover !important;
}
.bg-service{

	background: url('/siteart/service-square.jpg') 70% center !important;
	-moz-background-size: cover !important;
	-o-background-size: cover !important;
	-wekbit-background-size: cover !important;
	background-size: cover !important;
}
.bg-parts{

	background: url('/siteart/parts-square.jpg') center center !important;
	-moz-background-size: cover !important;
	-o-background-size: cover !important;
	-wekbit-background-size: cover !important;
	background-size: cover !important;
}
.bg-careers{

	background: url('/siteart/careers-square.jpg') 60% 20% !important;
	-moz-background-size: cover !important;
	-o-background-size: cover !important;
	-wekbit-background-size: cover !important;
	background-size: cover !important;
}


.panels{
	display: flex;
	flex-wrap: wrap;
}
div[class^="panel-"]{
	margin: 2.8% 0 2.8% 2.8%;
	
	
	font-family: bai jamjuree, sans-serif;
	letter-spacing: 0.5px;
	background: #fdfdfc;
}
.left div[class^="panel-"]{
	margin: 2.8% 2.8% 2.8% 0;
	
	
	font-family: bai jamjuree, sans-serif;
	letter-spacing: 0.5px;
	background: #fdfdfc;
}
.center div[class^="panel-"]{
	margin: 2.8% 2.8% 2.8% 2.8%;
	
	
	font-family: bai jamjuree, sans-serif;
	letter-spacing: 0.5px;
	background: #fdfdfc;
}


div[class^="panel-"] p{
	font-size: 16px;
	line-height: 24px;
	
	padding: 0 0 24px 0;
}
div[class^="panel-"] p a{
	color: #64aa32 !important;
}
div[class^="panel-"] p:last-of-type{
	padding: 0 0 45px 0;
}

.heading{
	
	font-family: bai jamjuree, sans-serif;
	font-size: 54px;
	line-height: 48px;
	letter-spacing: 0px;
	font-weight: 700;
    text-shadow: 1px 0 0 #fdfdfc;
	text-transform: uppercase;
	font-style: italic;
	padding: 20px 0 10px;
}
.heading i{
	color: #64aa32;
	text-shadow: none !important;
}
.subheading{
	
	font-family: bai jamjuree, sans-serif;
	font-size: 24px;
	line-height: 24px;
	letter-spacing: 0.5px;
	font-weight: 400;
    text-shadow: none;
	text-transform: uppercase;
	font-style: italic;
	padding-bottom: 40px;
}

.panels .heading{
    text-shadow: 1px 0 0 #242021;
}

.heading-sm{
	
	font-family: bai jamjuree, sans-serif;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0.5px;
	font-weight: 700;
    text-shadow: none;
	text-transform: uppercase;
	padding-left: 16px;
	border-left: 16px solid #64aa32;
}

.heading-md{
	
	font-family: bai jamjuree, sans-serif;
	font-size: 36px;
	line-height: 44px;
	letter-spacing: 0.5px;
	font-weight: 700;
    text-shadow: none;
	text-transform: uppercase;
	padding-left: 16px;
	border-left: 16px solid #64aa32;
}
.light{font-weight: 300;}
.panel-100{
	width: 94.4%;
	padding: 2.8%;
	box-sizing: border-box;
}
.panel-75{
	width: 70.8%;
	padding: 2.8%;
	box-sizing: border-box;
}
.panel-50{
	
    width: 48.6%;
	padding: 2.8%;
	box-sizing: border-box;
}
iframe.panel-50{
    height: auto !important;
    padding-right: 0;
}
.panel-25{
	width: 23.6%;
}
.panels ul{
	text-transform: uppercase;
	margin-top: 20px;
	padding-left: 0;
	font-size: 16px;
	line-height: 30px;
	font-family: bai jamjuree, sans-serif;
	letter-spacing: 0.5px;
}
.panels ul li, .panels ul li a{
	color: #242021;
	transition: ease-in-out color 0.2s;
}
.panels ul li a:hover{
	color: #64aa32 !important;
}

.check-list{
	margin: 0 !important;
}
.check-list li{
	padding-left: 30px;
	position: relative;
}
.check-list li:before{
	content: '\f14a';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
	position: absolute;
	left: 0;
	color: #64aa32;
}

.panel-100.nomargin {
	margin: 0;
	padding: 5.6% !important;
	width: 100%;
}
.nomargin{margin: 0 !important;}
/* MFG GRID */

#mfg-grid{
	display: flex;
	flex-wrap: wrap;
}
#mfg-grid a{
	width: calc(20% - 20px);
	padding: 20px;
	margin: 10px;
	background: #fff;
	box-sizing: border-box;
	text-align: center;
	
	border:#f0f0f0 1px solid;
    filter: brightness(0.993);
	
	transition:ease all 0.2s;
}
#mfg-grid a:hover{
    transform: translateY(-4px);
}
#mfg-grid a img{
	max-width: 100%;
}

.staff-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	padding: 2.8%;
}
.staff-grid > div{
	box-sizing: border-box;
	width: calc(33.3333% - 20px);
	padding: 2.8%;
	border: solid 1px #333;
}
.staff-grid > div img{
	margin-bottom: 40px;
}

/* MFG SLIDER */

.brandbar{
	background:#fff;
    width: calc(94.4% - 60px);
	margin: 0 auto;
	padding: 30px 0;
	text-align:center;
    filter: brightness(0.993);
}


/* PARTS DEPARTMENT */

#parts-list .col33{
	width: 24.93333333%;
	padding: 2.8%;
	background: #333;
	margin-right: 2.8%;
}

/*--------FORM STYLES--------------------*/
.custom-form ::-moz-selection {
    background: #64aa32; 
}
.custom-form ::selection {
    background: #64aa32;
}
.custom-form ::placeholder{
	color: #b1b1b1;
}
.custom-form .flex .flex{
	
    width: 50%;
    max-width: 300px;
	justify-content: flex-start;
	align-content: flex-start;
}

.custom-form .flex .flex input{
    width: 20px;
    margin-right: 10px;
    height: 17px;
    margin-left: 10px;
}

.custom-form label{
	
	margin: 0 0 20px 0;
}

.custom-form input{
	padding: 20px;
	background: #242021;
	color: #fdfdfc;
	width: 50%;
	box-sizing: border-box;
	
	border: solid 1px #fdfdfc;
	outline: none;
	
	font-family: bai jamjuree, sans-serif;
	font-weight: 400;
	

	-moz-border-radius: 0 !important;
	-o-border-radius: 0 !important;
	-webkit-border-radius: 0 !important;
	border-radius: 0 !important;
}

.custom-form select{
	padding: 20px;
	background: #242021;
	color: #fdfdfc;
	width: 100%;
	box-sizing: border-box;
	
	border: solid 1px #fdfdfc;
	outline: none;
	
	font-family: bai jamjuree, sans-serif;
	font-weight: 400;
	

	-moz-border-radius: 0 !important;
	-o-border-radius: 0 !important;
	-webkit-border-radius: 0 !important;
	border-radius: 0 !important;
}

.custom-form textarea{
	padding: 20px;
	background: #242021;
	color: #fdfdfc;
	width: 100%;
	box-sizing: border-box;
	
	border: solid 1px #fdfdfc;
	outline: none;
	
	font-family: bai jamjuree, sans-serif;
	font-weight: 400;
	
	resize: vertical;
	
	height: 140px;
	-moz-border-radius: 0 !important;
	-o-border-radius: 0 !important;
	-webkit-border-radius: 0 !important;
	border-radius: 0 !important;
}

.custom-form button{
	border: none !important;
	outline: none !important;
	cursor: pointer;
	-moz-border-radius: 0 !important;
	-o-border-radius: 0 !important;
	-webkit-border-radius: 0 !important;
	border-radius: 0 !important;
}

.CaptchaPanel{
	text-align: left !important;
}
.CaptchaPanel, .CaptchaAnswerPanel, .CaptchaImagePanel, .CaptchaMessagePanel{
	padding-left: 0 !important;
	padding-right: 0 !important;
}

#CaptchaAnswer{
	width: 100%;
}
.CaptchaWhatsThisPanel a{
	color: #64aa32 !important;
}

.CaptchaMessagePanel{
	font-weight: 400 !important;
}
/*-------- FOOTER STYLES ----------------*/
footer{}


.footer{
	display: flex;
	flex-wrap: wrap;
	border-top: solid 1px #f0f0f0;
	font-family: bai jamjuree, sans-serif;
	letter-spacing: 0.5px;
}
.footer .footer-heading{
	background: #242021;
	color: #fdfdfc;
	font-size: 24px;
    line-height: 24px;
    letter-spacing: 2px;
    font-style: italic;
    font-weight: 700;
    text-shadow: 1px 0 0 #fdfdfc;
	padding: 8px 12px;
	border-right: 1px solid #fdfdfc;
}
.footer ul{
	text-transform: uppercase;
	margin-top: 20px;
	padding-left: 14px;
	font-size: 14px;
	line-height: 30px;
}
.footer ul li, .footer ul li a{
	color: #242021;
	transition: ease-in-out color 0.2s;
}
.footer ul li a:hover{
	color: #64aa32;
}

.footer > .col25{
	width: 25%;
	box-sizing: border-box;
	padding: 2.8%;
}
.border-left{
	border-left: solid 1px #f0f0f0;
}
.footer > .col75{
	width: 75%;
	box-sizing: border-box;
	padding: 2.8%;
}


.foottext{
	background: #242021;
	padding: 1.4%;
	color: #fdfdfc;
	text-transform: uppercase;
	text-align: center;
	font-family: bai jamjuree, sans-serif;
	letter-spacing: 0.5px;
	font-size: 14px;
}

/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/





#inv *:not(.fa):not(.far):not(.fas):not(.fab):not(.fa-solid):not(.material-icons){font-family: bai jamjuree, sans-serif;} /* Reset font, ignore icons */

#inv *:not(.loading-spinner):not(.loader):not(.lds-ring *){border-radius: 0!important;}

#inv h1, #inv h2, #inv h3, #inv h4, #inv h5, #inv h6, #inv h1 span, #inv h2 span, #inv h3 span, #inv h4 span, #inv h5 span, #inv h6 span{
	color: #242021;
	font-family: bai jamjuree, serif !important;
	font-weight: 700;
	text-transform: uppercase;
	text-shadow: 1px 0 0 #242021;
	letter-spacing: 0;
	font-style: italic;
}



#inv{
	padding: 2.8% 0;
}
.faceted-search-content .faceted-section-box .faceted-option-checkbox-container label input {margin: 2px 3px 3px 4px !important;}
.faceted-text-input-searchType .search-type input[type=checkbox], .faceted-text-input-searchType .search-type  input[type=radio] {margin: 0px 3px 0px 6px !important;}

.faceted-search-content .faceted-section-box .faceted-option-checkbox-container .option-name{
	margin-top: 0 !important;
}

span.compare-label{padding-left: 4px !important;}


.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, .mobile-breadcrumb, .main-detail-data .contact-options a, button.g-recaptcha.button, .cs-btns a, .apply-button, .Manufacturer-button, .des-view-listingDetails { 
	background: #64aa32 !important; 
	color: #fff !important; 
	text-decoration: none !important; 
	border-radius: 5px !important;
	
	transition: ease-in 0.2s all;
}
.list-content .list-main-section .list-container .list-listing .listing-top-right .view-listing-details-link:hover, .faceted-search-content .selected-facets-container .selected-facet:hover, .list-content .list-listing-mobile .view-listing-details-link:hover, .list-content .list-listing-mobile .buy-now-link:hover, .list-content .list-listing-mobile .check-availability-link:hover, .list-content .list-listing-mobile .email-seller-link:hover, .detail-content .detail-main-body .main-detail-data .offer-btn:hover, .detail-content .detail-main-body .main-detail-data .buy-btn:hover, .detail-content-mobile .detail-main-body .main-detail-data .dealer-phone-mobile-container .dealer-phone-mobile:hover, .detail-content-mobile .detail-main-body .main-detail-data .offer-btn-mobile:hover, .detail-content-mobile .detail-main-body .main-detail-data .send-email-btn-mobile:hover, .detail-content-mobile .detail-main-body .main-detail-data .send-wholesale-email-btn-mobile:hover, .detail-content-mobile .detail-main-body .main-detail-data .fin-calc-btn-mobile:hover, .main-detail-data .contact-options a:hover, button.g-recaptcha.button:hover, .cs-btns a:hover, .apply-button:hover, .Manufacturer-button:hover, .des-view-listingDetails:hover { 
	background: #70b63e !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, .faceted-search, .faceted-show-all-btn, .mobile-done-button {background: #242021 !important;	transition: ease-in 0.2s all;}
.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, .faceted-search:hover, .faceted-show-all-btn:hover, .contact-btn:hover, .contact-options a:hover, .mobile-done-button:hover {background: #333 !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, .return-links *, .compare-title, .compare-price {color: #242021 !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: #242021 !important;}
.detail-content-mobile .detail-contact-bar .contact-bar-btn, .faceted-search-content .mobile-done-button-container .mobile-done-button, .list-page-nav, .contact-options a, .list-error-container .info button {background: #242021 !important;}

.detail-content .dealer-info .phone-and-email .send-email-btn, .back-button {border-color: #242021!important; color: #242021!important;}

.material-icons, .collapsible-content a, .breadcrumbs-element {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: #242021!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; box-sizing: border-box;}







/*---------- RESPONSIVE STYLES ----------*/

@media only screen and (max-width: 1450px) {

	
	.slide{
		-moz-background-size: auto 105% !important;
		-o-background-size: auto 105%  !important;
		-webkit-background-size: auto 105%  !important;
		background-size: auto 105%  !important;
	}
	.cycle-slide-active{
		-moz-background-size: auto 120% !important;
		-o-background-size: auto 120%  !important;
		-webkit-background-size: auto 120%  !important;
		background-size: auto 120%  !important;
	}
}
@media only screen and (max-width: 1350px) {
	.hide-md{
		display: none !important;
	}
}

@media only screen and (max-width: 1200px) {
	
}


@media only screen and (max-width: 1023px) {
	
	.column-reverse{
		flex-direction: column-reverse;
	}
	.slide{
		-moz-background-position: 75% 20% !important;
		-o-background-position: 75% 20% !important;
		-webkit-background-position: 75% 20% !important;
		background-position: 75% 20% !important;
	}	
.slide .text-overlay{
	width: 94.4%;
}
	.darken-md{
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: #242021;
		opacity: 0.6;
	}
	
	
	
	.panel-50, .panel-75{
		width: 94.4%;
	}
	
	.panel-25 {
		width: 94.4%;
		height: 240px;
		margin-top: 0 !important;
	}
	.column-reverse .panel-25 {
		margin-top: 2.8% !important;
	}
	
	.column-reverse div[class^="panel-"]:first-child {
		margin-top: 0 !important;
	}
	
	
	iframe.panel-50 {
		width: 100%;
		height: 450px !important;
		padding-top: 2.8%;
		padding-right: 2.8%;
	}
	
#parts-list .col33{
	width: 100%;
	margin-right: 0%;
}
	
	.footer{
		flex-direction: column-reverse;
	}
	.footer > .col75{
		width: 100%;
	}
	.footer > .col25{

		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-evenly;
	}
	.footer .logo img{
		max-width: 80%;
		margin:  0 auto;
		display: block;
	}
	.border-left{
		border: none;
	}
	
	
	#mfg-grid a{
		width: calc(33.3333% - 20px);
	}
	
	.slide, .cycle-slide-active{
		-moz-background-size: auto 105% !important;
		-o-background-size: auto 105%  !important;
		-webkit-background-size: auto 105%  !important;
		background-size: auto 105%  !important;
		transition: none !important;
	}
}
@media only screen and (min-width: 768px) {
	.show-sm{
		display: none;
	}
}
@media only screen and (max-width: 767px) {
	.hide-sm{
		display: none !important;
	}
	.slide .text-overlay h1,  .subheading{
		font-size: 20px;
		line-height: 24px;
	}	
	.slide .text-overlay h2, .heading {
		font-size: 48px;
		line-height: 42px;
	}
	.slide .text-overlay .hero-pad {
    padding-left: 5.6%;
}
	.cta{
		max-width: none;
	}
	#cta-boxes a{
		width: 88.8% !important;
		margin: 5.6% 5.6% 0 !important;
	}
	#cta-boxes a:last-child{
		margin: 5.6% !important;
	}
	
	div[class^="panel-"] {
		margin: 2.8% 2.8% 0% 2.8%;
		font-family: bai jamjuree, sans-serif;
		letter-spacing: 0.5px;
		background: #fdfdfc;
	}
	.panel-75:last-child, .panel-25:last-child, .panel-50:last-child:not(iframe) {
		margin: 5.6% !important;
	}
	.panel-100{
		margin: 0 !important;
	}
		
	iframe.panel-50 {
		padding-top: 5.6%;
		width: 97.2%;
	}
.col50, .col33, .col66, .custom-form input, .custom-form .flex .flex{
	width: 100%;
}
		
#parts-list .col33{
	width: 105.6%;
	margin: 0 -2.8%;
}
	
.staff-grid {
	padding: 5.6%;
}
.staff-grid > div{
	width: calc(50% - 20px);
	padding: 5.6%;
}
	
	.panel-75, .panel-100, .panel-50{
		width: 100%;
		margin: 0 !important;
		padding: 5.6%;
	}
	.panel-25{
		width: 88.8%;
		height: 240px;
	}
	
	#mfg-grid a{
		width: calc(50% - 20px);
	}
	
	.footer{padding-top: 30px;}
	
	.footer > div[class^="col"]{
		width: 100% !important;
		flex-wrap: wrap;
		padding: 20px 5.6%;
	}
	.footer .col33{
		width: 100%;
		margin-bottom: 25px;
	}
	
	.foottext{
		padding: 30px 12px;
	}
	
}

@media only screen and (max-width: 480px){
	
.heading-md{
	font-size: 16px;
	line-height: 24px;
}
	
	#mfg-grid a{
		width: 100%;
		margin: 10px 0;
	}
	

.staff-grid > div{
	width: 100%;
}
	
	
}




