﻿/*===================== 
	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;
	}

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 {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	margin: 0;
}
	
h1 {
	font-family: 'Open Sans', sans-serif;
	font-size: 30px;
}
		

h2 {
	font-family: 'Open Sans', sans-serif;
	font-size: 26px;
}

	
h3 {
	font-family: 'Open Sans', sans-serif;
	font-size: 24px;
}


h4 {
	font-family: 'Open Sans', sans-serif;
	font-size: 22px;
}


h5 {
	font-family: 'Open Sans', sans-serif;
	font-size: 20px;
}


h6 {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
}

.white {color: #FFFFFF;}
.red {color: #CB342D;}

.bold {font-weight: 800;}
.semi-bold {font-weight: 600;}
.tracking {letter-spacing: 1px;}
.semi-tracking {letter-spacing: .25px;}
.center {text-align: center;}
.caps {text-transform: uppercase;}
.italic {font-style: italic;}




/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/
	}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/
    color: #aaa; 
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		color: #ccc;
		}  




/*===================== 
	nav styles 
=======================*/

nav.primary {
	padding: 0;
	display: block;
	margin: 0 auto;
	position: relative;
	text-align: right;
	}

nav ul {
	padding: 0;
	margin: 0;
	margin-top: 60px;
}

nav ul li {

}

nav > ul > li {
	display: inline-block;
	list-style-type: none; 
	margin-left: 14px!important;
}

nav ul li a {
	font-family: 'Open Sans', sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000000!important;
}	
			
nav ul li a:hover {
	color: #cb342d!important;
	border-bottom: 2px solid #CB342D;
	padding-bottom: 2px;
}


/* Appearance of the sub-level links */

nav.primary ul li li a { 
	color: #fff!important;
	}
	
nav.primary ul li li a:hover { 
	color: #cb342d!important;
	border: none!important;
	}
	
	
	
/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too much */
nav.primary ul ul {
	display: none;
    position: absolute;
    background-color: #000;
    text-align: left;
    padding: 15px 20px 10px 15px;
    margin-top: 0px;
}
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%;
	margin-bottom: 10px;
}

.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 */
	padding: ;
	background: #000000;
	border-bottom: ;
	text-align: right;
	min-height: 0 !important;
	}
	#menu-button a{
		 color: #FFFFFF;
		 text-decoration: none;
		 text-align: right !important;
	  }

nav.mobile {
	display:block;
	position: fixed;
	top: 0;
	left: -250px;
	width: 250px;
	height: 100%;
	background: #000;
	z-index: 500; /* needs to be higher than #menu-button, adjust as needed */
	overflow:auto;
}
nav.mobile h3 { /* Menu header styles */
	position: relative;
	padding: 12px 10px;
	color: #fff;
	font-size: 1.2em;
	font-weight: 400;
	border-bottom: 4px solid #222;
}
nav.mobile .menu-toggle { /* Menu close button */
	position: absolute;
	top: 12px;
	right: 10px;
	display: inline-block;
	padding: 6px 9px 5px;
	font-family: Arial, sans-serif;
	font-weight: 700;
	line-height: 1;
	background: #222;
	color: #999;
	text-decoration: none;
	vertical-align: top;
}
.menu-toggle {
	text-align: right;
	font-size: 28px;
	color: #000;
}

.menu-toggle a:hover {
	color: #000 !important;
}

.close_mobile {
	font-size: 26px !important;
	font-weight: 900;
	text-align: 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: 14px;
	color: #ffffff!important;;
	text-decoration: none;
	font-size: 15px;
	letter-spacing: 1px;
}
nav.mobile ul li a:hover {
	color: #cb342d!important;
	border-bottom: none;
	padding-bottom: 0px;
}


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;
	margin-left: 15px;
}
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%;
}


/*===================== 
	header styles 
=======================*/
header {
	margin: 0 auto;
	width: 100%;
}
.header-bkgd {
	background-color: #000000;
    padding: 15px;
}
.header-wrap {
	max-width: 1200px;
    display: block;
    margin: auto;
}
.phone-icon {
	color: #ffffff;
    margin-right: 5px;
}
.header-phone {
	display: inline-block;
    color: #ffffff!important;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
}
.header-phone:hover {
	color: #cb342d!important;
}
.header-locations-phone {
	display: inline-block;
    color: #ffffff!important;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
}
.header-locations-phone:hover {
	color: #cb342d!important;
}
.header-contact-wrap {
	float: right;
}
.falmouth-wrap {
	display: inline-block;
    color: #ffffff;
    padding-right: 13px;
    border-right: 2px solid #ffffff;
    margin-right: 13px;
	font-weight: 600;
	
}
.hermon-wrap {
	display: inline-block;
    color: #ffffff;
    padding-right: 13px;
    border-right: 2px solid #ffffff;
    margin-right: 13px;
	font-weight: 600;
}
.pembroke-wrap {
	display: inline-block;
    color: #ffffff;
	padding-right: 13px;
    border-right: 2px solid #ffffff;
    margin-right: 13px;
	font-weight: 600;
}
.augusta-wrap {
	display: inline-block;
    color: #ffffff;
	padding-right: 13px;
    border-right: 2px solid #ffffff;
    margin-right: 13px;
	font-weight: 600;
}
.fb-wrap {
	display: inline-block;
    color: #ffffff;
	vertical-align: middle;
}
.fb-wrap .fab{font-size: 24px;}
.header-logo {
	margin-bottom: 20px;
    margin-top: 20px;
	max-width: 270px!important;
	width: 100%;
}
.header-phone-wrap {
    padding-left: 10px;
}



/*===================== 
	homepage styles 
=======================*/
.home-hero {
	width: 100%;
}
.inv-link-wrap {
	max-width: 1200px;
    display: block;
    margin: 50px auto;
	text-align: center;
}
.inv-wrap {
	display: inline-table;
    max-width: 220px;
    width: 100%;
    border: 1px solid #000000;
    margin: 6px 5px;
    padding: 20px 10px 10px 10px;
    text-align: center;
    height: 190px;
}
.inv-wrap:hover {
	box-shadow: 0px 0px 6px 0 grey;
}
.inv-wrap-link {
	font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #000000!important;
}
.inv-wrap-link:hover {
	color: #cb342d!important;
}
.inv-img {
	max-width: 150px;
    width: 100%;
    display: block;
    margin: auto;
    margin-bottom: 10px;
}
.welcome-photo {}
.welcome-bkgd {
	background-image: url("/siteart/welcome-photo.jpg");
	background-position: left;
	background-repeat: no-repeat;
	background-size: contain;
	padding: 0px;
}
.welcome-wrap {
	background-color: #000000;
    max-width: 1400px;
    float: right;
    padding: 115px;
    padding-left: 200px;
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 25% 100%);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 10% 100%);
}
.welcome-btn {
	margin-top: 20px;
    background-color: #cb342d;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .5px;
    padding: 10px 30px;
    border: none;
}
.welcome-btn:hover {
	background-color: #FFFFFF;
	color: #000000;
}
.welcome-img {}
.welcome-container {
	background-color: #000000;
	padding: 50px 20px;
	text-align: center;
}
.home-loc-wrap {
	max-width: 1200px;
    display: block;
    margin: 50px auto 30px auto;
	text-align: center;
}
.loc-wrap {
	display: inline-table;
    max-width: 286px;
    width: 100%;
    border: 1px solid #CB342D;
    margin: 6px 5px;
    padding: 20px;
    text-align: center;
    height: ;
}
.loc-phone {
	color: #CB342D!important;
	font-weight: 600;
    letter-spacing: .5px;
}
.loc-phone:hover {
	color: #000000!important;
}


.home-welcome {
	background-color: #000000;
	padding: 100px 20px;
}
.home-welcome-wrap {
	max-width: 1200px;
    display: block;
    margin: auto;
}
.welcome-logo {
	max-width: 250px;
    width: 100%;
    margin-top: 50px;
}

.bobcat-hero {
    width: 100%;
    border-bottom: 2px solid #fff;
}


	
/*===================== 
	showroom page styles 
=======================*/
.showroom-hero-bkgd {
	background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.45)), url("/siteart/new_showroom-hero.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.showroom-hero-text {
	max-width: 1200px;
    display: block;
    margin: 50px auto;
    padding: 20px;
}
.showroom-bkgd {
	margin-top: 50px;
    margin-bottom: 10px;
}
.showroom-wrap {
	max-width: 1200px;
    display: block;
    margin: auto;
	text-align: center;
}
.showroom-btn {
	display: block;
    margin: auto;
    background-color: transparent;
    width: 100%;
	padding: 40px 10px;
	margin-bottom: 20px;
}
.showroom-btn:hover {
	box-shadow: 0px 0px 6px 0 grey;
}
.showroom-img {
	height: 50px;
    display: block;
    margin: auto;
}



/*============================ 
	financing request styles 
==============================*/
.financing-line {
	margin-top: 20px;
    border-top: 1px solid #CB342D;
    padding-top: 30px;
}
.financing-line h6 {
	margin-bottom: 15px;
}
.financing-hero-bkgd {
	background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.45)), url("/siteart/finance-hero.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.financing-hero-text {
	max-width: 1200px;
    display: block;
    margin: 150px auto;
    padding: 20px;
}
.financing-bkgd {
	margin-top: 50px;
    margin-bottom: 30px;
}
.financing-wrap {
	max-width: 1200px;
    display: block;
    margin: auto;
}



/*============================ 
	parts request styles 
==============================*/
.parts-hero-bkgd {
	background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.45)), url("/siteart/parts-hero.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.parts-hero-text {
	max-width: 1200px;
    display: block;
    margin: 150px auto;
    padding: 20px;
}
.parts-bkgd {
	margin-top: 50px;
    margin-bottom: 30px;
}
.parts-wrap {
	max-width: 1200px;
    display: block;
    margin: auto;
}



/*============================ 
	service request styles 
==============================*/
.service-hero-bkgd {
	background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.45)), url("/siteart/service-hero.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.service-hero-text {
	max-width: 1200px;
    display: block;
    margin: 150px auto;
    padding: 20px;
}
.service-bkgd {
	margin-top: 50px;
    margin-bottom: 30px;
}
.service-wrap {
	max-width: 1200px;
    display: block;
    margin: auto;
}

.p-form {
	font-weight: 600;
    margin-bottom: 3px;
}
.contact-form {
	width: 100%;
    margin-bottom: 15px;
    border: 1px solid #000;
    background-color: transparent;
    border-radius: 0px;
    padding: 8px;
}
.submit-button {
	display: block;
	margin: auto;
	margin-top: 20px;
    background-color: #cb342d;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .5px;
    padding: 10px 30px;
    border: 2px solid #cb342d;
}
.submit-button:hover {
	background-color: #FFFFFF!important;
	color: #cb342d;
}

/*control the Captcha */
.CaptchaPanel {
margin:30px 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;} 
        

/*============================ 
	contact page styles 
==============================*/
.contact-hero-bkgd {
	background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.45)), url("/siteart/contact-hero.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.contact-hero-text {
	max-width: 1200px;
    display: block;
    margin: 150px auto;
    padding: 20px;
}
.contact-bkgd {
	margin-top: 50px;
    margin-bottom: 30px;
}
.contact-wrap {
	max-width: 1200px;
    display: block;
    margin: auto;
}
.contact-loc-wrap {
	max-width: 1400px;
    display: block;
    margin: auto;
    text-align: center;
    margin-bottom: 50px;
}
.contact-loc {
	display: inline-table;
    max-width: 279px;
    width: 100%;
    border: 1px solid #CB342D;
    margin: 6px 5px;
    padding: 20px;
    text-align: center;
}
.contact-loc-phone {
	color: #CB342D!important;
	font-weight: 600;
    letter-spacing: .5px;
}
.contact-loc-phone:hover {
	color: #000000!important;
}
.contact-loc-fax {
	display: block;
	color: #CB342D!important;
	font-weight: 600;
    letter-spacing: .5px;
}
.contact-loc-fax:hover {
	color: #000000!important;
}
.contact-map {
	margin-bottom: 20px;
}
a.loc-btn{
	display: block;
	background:#CB342D;
	color:#fff;
	text-align: center;
	width: 90%;
	padding:5px 0;
	margin: 12px auto 0 auto;
}

/*============================ 
	Location pages styles 
==============================*/
.flex-col{
	display: flex;
	flex-wrap: wrap;
	flex-direction:row;
}
.col-1-2{width:50%; box-sizing: border-box; padding:1% 2%;}

.phone-block{
	padding: 3% 2%;
	box-sizing: border-box;
}
.phone-block a{
	font-size: 19px;
	font-weight: bold;
	color:#000;
}
.phone-block a:hover{
	text-decoration: underline;
}

/*============================ 
	thank you page styles 
==============================*/
.thanks-bkgd {
	padding-top: 50px;
    margin-bottom: 30px;
    border-top: 5px solid #cb342d;
}
.thanks-wrap {
	max-width: 1200px;
	display: block;
	margin: auto;
}
.thanks-btn {
	display: block;
	margin: auto;
	margin-top: 20px;
    background-color: #cb342d;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .5px;
    padding: 10px 30px;
    border: 2px solid #cb342d;
}
.thanks-btn:hover {
	background-color: #FFFFFF;
	color: #cb342d;
}


/*============================ 
	inventory landing styles 
==============================*/
.inv-landing-bkgd {
	padding-top: 50px;
    margin-bottom: 30px;
    border-top: 5px solid #cb342d;
}
.inv-landing-wrap {
	max-width: 1200px;
	display: block;
	margin: auto;
}
.inv-landing-paragraph {
	margin-top: 20px;
    border-top: 1px solid #000;
    padding-top: 20px;
}
.inv-landing-contact {
	margin-top: 20px;
    text-align: center;
    margin-bottom: 100px;
	font-weight: 600;
}
.inv-landing-btn {
	display: block;
	margin: auto;
	margin-top: 20px;
    background-color: #cb342d;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .5px;
    padding: 10px 30px;
    border: 2px solid #cb342d;
}
.inv-landing-btn:hover {
	background-color: #FFFFFF;
	color: #cb342d;
}
.inv-landing-img {
	max-height: 50px;
    display: block;
    margin: auto;
	margin-top: 50px;
}

/* construction supplies */
.con-img {
	display: block;
    margin: 15px auto;
}

/* ground engaging supplies */
.engage-img {
	display: block;
    margin: 15px auto;
}


/*============================ 
	about page styles 
==============================*/
.about-hero-bkgd {
	background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.45)), url("/siteart/about-us-hero_2.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.about-hero-text {
	max-width: 1200px;
    display: block;
    margin: 150px auto;
    padding: 20px;
}
.about-bkgd {
	margin-top: 50px;
    margin-bottom: 30px;
}
.about-wrap {
	max-width: 1200px;
    display: block;
    margin: auto;
}
.about-tagline {
	text-align: center;
    text-transform: uppercase;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 30px;
}
.about-paragraph {}
.about-pembroke {
	margin-top: 20px;
    margin-bottom: 20px;
}
.about-hermon {}


/*===================== 
	footer styles 
=======================*/
footer {
	margin: 0;
	width: 100%;
}	
.slider-container {
	border-top: 5px solid #000000;
    margin-top: 20px;
    padding: 20px 0px;
}
.footer-bkgd {
	background-color: #000000;
    padding: 20px;
}
.footer-wrap {
	max-width: 1200px;
    display: block;
    margin: auto;
}
.footer-contact-wrap {
	color: #ffffff;
    font-weight: 600;
    letter-spacing: .25px;
}
.footer-header {
	color: #cb342d;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .25px;
	margin-bottom: 10px;
}
.footer-phone {
	color: #ffffff!important;
	font-weight: 600;
    letter-spacing: .25px;
}
.footer-phone:hover {
	color: #cb342d!important;
}
.footer-quick-wrap {}
.quick-link-list {
	padding: 0px;
    list-style-type: none;
}
.quick-link-item {}
.quick-link-link {
	color: #ffffff!important;
	font-weight: 600;
    letter-spacing: .25px;
}
.quick-link-link:hover {
	color: #cb342d!important;
}
.footer-showroom-wrap {
	padding: 0px;
    list-style-type: none;
}
.showroom-list {
	padding: 0px;
    list-style-type: none;
}
.showroom-item {}
.showroom-link {
	color: #ffffff!important;
	font-weight: 600;
    letter-spacing: .25px;
}
.showroom-link:hover {
	color: #cb342d!important;
}
.footer-logo {
	max-width: 200px!important;
    width: 100%;
    float: right;
	margin-right: 10px;
	margin-top: 20px;
}
.copyright-wrap {
	float: right;
    display: block;
    clear: both;
    margin-top: 20px;
}
.copyright-text {
	color: #ffffff;
    font-size: 11px;
    letter-spacing: .25px;
    text-align: center;
}
.copyright-link {
	color: #ffffff!important;
}
.copyright-link:hover {
	color: #cb342d!important;
}




/*============================ 
	inventory styles 
==============================*/

.col-xs-12.header-bkgd {box-sizing: border-box;}
.col-xs-12.col-sm-3 {box-sizing: border-box;}
.hidden-xs.col-sm-9 {box-sizing: border-box;}
.col-xs-12 {box-sizing: border-box;}
.col-xs-12.col-sm-12.col-md-4.col-lg-3 {box-sizing: border-box;}
.col-xs-12.col-sm-12.col-md-8.col-lg-9 {box-sizing: border-box;}
.hidden-xs.hidden-sm.col-md-12.primary {box-sizing: border-box;}
.col-xs-12 #menu-button {box-sizing: border-box;}
.hidden-md.hidden-lg.hidden-xl.menu-toggle {box-sizing: border-box;}
.col-xs-12.hidden-md.hidden-lg.hidden-xl.mobile {box-sizing: border-box;}
.col-xs-12.slider-container {box-sizing: border-box;}
.col-xs-12.footer-bkgd {box-sizing: border-box;}
.hidden-xs.col-sm-6.col-md-4.col-lg-3 {box-sizing: border-box;}
.hidden-xs.hidden-sm.col-md-2.col-lg-2 {box-sizing: border-box;}
.hidden-xs.hidden-sm.col-md-2.col-lg-2 {box-sizing: border-box;}
.col-xs-12.col-sm-6.col-md-4.col-lg-5 {box-sizing: border-box;}

.inventory-line {
	margin-bottom: 15px;
    border-top: 5px solid #cb342d;
}

.detail-content {
    padding: 3.145833VW 0;
}

.list-redesign .contact-container .shared .dealer-data .phone-link, .list-redesign .contact-container .seller a, .jordanequipmentcomhdev-x3fm4k, .jordanequipmentcomhdev-9gup2g, .jordanequipmentcomhdev-9uiqsl, .jordanequipmentcomhdev-5hssqm {color: #000 !important;}


@media only screen and (max-width: 785px) {
    .body-wrapper {
        padding: 0 25px;
    }
}

/*----Page Background Color----*/
.body-content .body-wrapper {
    /* background: var(--neutral2) !important; */
}

/*----Sort By----*/
.list-content .list-top-section .listing-option-bar .list-sort-order .sort-by-dropdown-container .bold {
    color: #000 !important;
}

/*----Email and Print Buttons----*/
.media-buttons button {
    background: #b5b5b5 !important;
    color: #000 !important
}

.media-buttons button:hover {
    background: #cb342d !important;
    color: #fff !important;
}

/*----Listing Background Color & Text Color Change----*/
.list-container .list-listing {
    background: #fff !important;
    color: #000 !important;
}

/*---Sidebar Background Color & Text Color----*/
.list-content .faceted-search-content {
    background: #fff !important;
    color: #000 !important
}

.faceted-search-content .faceted-section-box .faceted-view-more-btn {
    background: #b5b5b5 !important;
    color: #000 !important;
}

/*---Sidebar Heading Background Color----*/
.faceted-search-content .faceted-section-head {
    background: #b5b5b5 !important;
}

/*----Filter button color change------*/
.selected-facet {
    background: #b5b5b5 !important;
    color: #000 !important;
}

input[type="submit"] {
    background: #cb342d !important;
}

button[type="submit"] {
    background: #cb342d !important;
}

.btn {
    background: #cb342d !important;
}

.button {
    background: #cb342d !important;
}

/*----View Details Button----*/
.view-listing-details-link {
    background: #b5b5b5 !important;
    color: #000 !important;
}

.view-listing-details-link:hover {
    color: #fff !important;
    background: #cb342d !important;
}

/*----Email Seller Button----*/
.email-seller-link {
    background: #cb342d !important;
}

.email-seller-link:hover {
    background: #b5b5b5 !important;
    color: #000 !important;
}

/*---Page Title----*/
.list-content .list-title .list-title-text {
    color: #000 !important;
}

/*----Listings # showing text----*/
.list-content .list-title .list-listings-count {
    color: #000 !important;
}

/*---Description text color (if different than body text color)----*/
.listing-description-text {
    color: #000 !important;
}

/*----Price----*/
.listing-main-stats .price {
    color: #000 !important;
}

/*---Listings Count----*/
.list-content .list-top-section .listing-option-bar .list-listings-count {
    color: #000 !important;
}

/*---Any Messages----*/
.info {
    color: #000 !important
}

/*------------------------------Listings Details Page---------------------------------*/
/*----Details Page Header----*/
.main-detail-data .detail-title {
    color: #000 !important
}

/*----Make an Offer Button----*/
.main-detail-data .offer-btn {
    background: #b5b5b5 !important;
    color: #000 !important;
}

.main-detail-data .offer-btn:hover {
    background: #cb342d !important;
    color: #fff !important;
}

/*----Details----*/
.detail-content .detail-main-body .main-detail-data {
    background: #fff !important;
}

/*----Details Price----*/
.detail-price {
    color: #000 !important;
}

.detail-content .detail-main-body .main-detail-data .detail-btn-calc:hover {
    background: #b5b5b5 !important;
    color: #000 !important;
}

.detail-content .detail-main-body .main-detail-data .detail-btn-calc {
    background: #cb342d !important;
}

.detail-content .detail-main-body .main-detail-data .detail-btn-calc p {
    color: #fff !important;
}

/*----Contact Information----*/
.detail-content .dealer-info {
    color: #000 !important
}

.detail-content .dealer-info .field-name {
    color: #000 !important;
}

.detail-content .dealer-info .field-value {
    color: #797979 !important;
}

/*----Send Email----*/
.detail-content .dealer-info .phone-and-email .send-email-btn {
    border: none !important;
    background: #cb342d !important;
    color: #fff !important;
}

/*----Spec Title Background & Color ----*/
.detail-content .data-row .data-label {
    background: #cb342d !important;
    color: #fff !important;
}

/*----Breadcrumb - Search Results button----*/
.detail-content .search-results {
    color: #000 !important;
}

/*----Breadcrumb Path above Searach Results----*/
.breadcrumbs .breadcrumbs-element {
    color: #000 !important;
}

/*----Background color of widgets (if it matches the page background)----*/
.listing-widgets a {
    background: #b5b5b5 !important;
    color: #000 !important
}

.listing-widgets a:hover {
    color: #fff !important;
}

.listing-widgets a:hover {
    background: #797979 !important;
}

/*----All Details (e.g. year, manu, etc.)----*/
.detail-additional-data * {
    color: #000 !important;
}
.detail-content .detail-additional-data .data-row .data-value {
    color: #000 !important;
}

.detail-content .detail-additional-data .data-row .data-value {
    background: #fff !important;
}

/*----Commercial Financing Legal Info----*/
.legal-text-content {
    color: #000 !important;
}

/*---Return to Listings----*/
.mobile-breadcrumb {
    background-color: #fff !important;
}


/*------------------------------Parts Page---------------------------------*/
#parts-content {
    padding: 2.145833VW 0;
}

#parts-content .parts-bottom-section .parts-list-view .parts-list-content .error-message {
    color: #fff !important;
}

.criteria-header {
    color: #fff !important;
}

#parts-content .parts-bottom-section .parts-list-view .parts-search-content .parts-search-window .parts-search-form .parts-radio {
    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: #cb342d !important;
}

#parts-content .parts-bottom-section .parts-list-view .parts-list-content .parts-listing-container {
    background: #fff !important;
}

/*---Mobile Buttons----*/
.detail-content-mobile .detail-main-body .main-detail-data .dealer-phone-mobile-container .dealer-phone-mobile {
    background: #cb342d !important;
    border: #000 !important;
}

.detail-content-mobile .detail-main-body .main-detail-data .buy-btn-mobile {
    background: #cb342d !important;
    border: #000 !important;
}

.detail-content-mobile .detail-main-body .main-detail-data .offer-btn-mobile {
    background: #cb342d !important;
    border: #000 !important;
}

.detail-content-mobile .detail-main-body .main-detail-data .send-email-btn-mobile {
    background: #cb342d !important;
    border: #000 !important;
}

.detail-content-mobile .detail-main-body .main-detail-data .send-wholesale-email-btn-mobile {
    background: #cb342d !important;
    border: #000 !important;
}

.detail-content-mobile .detail-contact-bar .contact-bar-btn {
    background: #cb342d !important;
    border: #000 !important;
}

.detail-content-mobile .detail-contact-bar .contact-bar-btn {
    background: #cb342d !important;
    border: #000 !important;
}

.detail-content-mobile .detail-additional-data .data-row .data-label {
    background: #cb342d !important;
    border: #000 !important;
}

.detail-content-mobile .detail-main-body .main-detail-data .fin-calc-btn-mobile {
    background: #cb342d !important;
    border: #000 !important;
}

.detail-content-mobile .detail-additional-data .data-row .data-label {
    color: #fff !important;
}



.detail-content-mobile * {
    color: #fff !important;
}

.detail-content-mobile .detail-main-body .detail-mobile-top .detail-category {
    color: #000 !important;
}

.detail-content-mobile .detail-additional-data .data-row .data-value {
    background: #fff !important;
}

.currency-selector select {
    color: #000 !important;
}

span.currency-selector {
    color: #000 !important;
}

h1.detail-title {
    color: #000 !important;
}

.detail-content-mobile .dealer-info .address-and-contact * {
    color: #000 !important;
}

.detail-content-mobile .dealer-info h3 {
    color: #000 !important;
}

.fin-calc p {
    color: #000 !important;
}

.fin-calc p strong {
    color: #000 !important;
}

.listing-widgets * {
    color: #000 !important;
}


/*----All Details (e.g. year, manu, etc.)----*/
.detail-additional-data * {
    color: #000 !important;
}
.detail-content .detail-additional-data .data-row .data-value {
    color: #000 !important;
}
.detail-content-mobile .share-listing {
    color: #000 !important;
}

/*---- additional ----*/
.faceted-search-content .faceted-section-box .show-all-modal .show-all-modal-content-container .show-all-modal-content .title-close-row .apply-button {
	color: #cb342d!important;
}
.faceted-search-content .mobile-done-button-container .mobile-done-button {
	color: #cb342d!important;
}
.list-content .list-listing-mobile .price-container .price {
	color: #cb342d!important;
}



/*========================= 
	 Responsive styles 
===========================*/

/*==========  Non-Mobile First Method  ==========*/
@media only screen and (max-width : 1600px) {
	.welcome-wrap {max-width: 1200px;}
	
}

@media only screen and (max-width : 1400px) {
	.welcome-wrap {max-width: 800px;}
	
}

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1220px) {
	nav ul {padding: 0px 10px;}
	.header-phone-wrap {padding-left: 0px;}

}

@media only screen and (max-width : 1189px) {
	nav ul li a {font-size: 14px;}
	.header-locations-phone {display: block;}
	.falmouth-wrap {padding-right: 20px; margin-right: 20px; text-align: center;}
	.hermon-wrap {padding-right: 20px; margin-right: 20px; text-align: center;}
	.pembroke-wrap {text-align: center;}
	.header-phone-wrap {margin-top: 11px;}
	.header-location-dash {display: none;}

}
@media only screen and (max-width : 1071px) {
	nav ul li a {font-size: 12px;}

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 991px) {
	.header-logo {display: block; margin: 35px auto;}
	.footer-logo {margin-top: 0px;}
	.welcome-wrap {max-width: 600px; padding: 50px 10px 50px 100px;}
	.showroom-hero-text {margin: 75px auto; text-align: center;}
	.service-hero-text {margin: 75px auto; text-align: center;}
	.home-welcome-wrap {text-align: center;}
	
	
}


/* Small Devices, Tablets */
@media only screen and (max-width : 767px) {
	.header-phone-wrap {margin-top: 0px; text-align: center;}
	.footer-logo {float: none; display: block; margin: auto;}
	.copyright-wrap {float: none;}
	.inv-landing-img {margin-bottom: 50px;}
	.flex-col{flex-direction:column;}
	.col-1-2{width:100%; box-sizing: border-box; padding:1% 2%;}
}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
 	.inv-landing-wrap {text-align: center;}

}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {


}

