﻿/*===================== 
	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: 'Montserrat', 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 {color: #00ac4e;}
a:hover {color: #008039;}

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%;
    box-shadow: 1px 1px 5px 2px #f1f1f1;
	}

.header-wrap {
    padding: 10px 50px 0px 50px;
}

.header-logo {
    max-width: 360px;
    width: 100%;
}

.header-contact-btn {
    max-width: 220px;
    width: 100%;
    display: block;
    border: none;
    background-color: #00ac4e;
    transition: .2s;
    margin-bottom: 10px;
    float: right;
    padding: 0px;
}

.header-contact-btn:hover,
.header-contact-btn:active,
.header-contact-btn:focus {
    background-color: #008039;
}

.header-contact-btn-link {
    color: white!important;
    font-weight: 600;
    font-size: 18px;
    padding: 10px;
    display: block;
}

.header-contact-btn-link:hover,
.header-contact-btn-link:active,
.header-contact-btn-link:focus{
    color: white!important;
}

/*===================== 
	nav styles 
=======================*/

nav.primary {
	padding:0;
	display:block;
	margin:0 auto;
	position:relative;
	text-align: right;
    width: 100%;
    top: 35px;
	}

nav ul {
	padding:0;
	margin:0;
}

nav > ul > li {
	display:inline-block;
	list-style-type:none; 
}

nav ul li a {
	font-size: 19px;
    font-weight: 500;
    color: black;
    display: block;
    transition: .2s;
    padding: 5px 10px;
}	

nav ul li a:hover,
nav ul li a:focus,
nav ul li a:active{
	color: #00ac4e;
}


/* 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: white;
    box-shadow: 0px 0px 3px 1px #d2d2d2;
    padding-bottom: 5px;
}
nav.primary ul ul ul {
    position: absolute; 
    left: 100%;
    top:0; 
}
nav.primary ul li:hover > ul {  
    display: block;
    z-index: 2000 !important;
}
nav.primary ul ul li {
    float: none; 
    position: relative;
	display:block;
    margin:0;
	width:100%;
	padding: 5px 5px 0px 5px;
}

nav.primary ul ul li a {
    font-size: 18px;
}

.dropdown_arrow {
	display: inline-block !important;
}



/******** 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: black;
	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: black;
	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: 'Montserrat', sans-serif;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	vertical-align: top;
}
a.close_mobile {
	font-size: 26px !important;
	font-weight: 700;
	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 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 {
	color: #00ac4e;
}
nav.mobile ul li li a { /* appearance of the sub-level links */
	position: relative;
	display: block;
	padding: 5px 10px 5px 25px;
	color: white;
	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%;
}

/*===================== 
	General styles 
=======================*/

.container-fluid {
    padding: 0px;
}

.row-green {
    padding: 0px;
    margin: 0px;
}

.div-green {
    padding: 0px;
}

.center {
    text-align: center;
}

.page-title {
    color: #00ac4e;
    font-size: 36px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-text {
    font-size: 16px;
}

/*========================= 
	 Slideshow styles 
===========================*/ 
.carousel-control.left,
.carousel-control.right {
	background-repeat: no-repeat;
	text-shadow: none;
}

.carousel-control .hero-left, 
.carousel-control .hero-right, 
.carousel-control .icon-prev, 
.carousel-control .icon-next {
	position: absolute;
	top: 43%;
	z-index: 5;
	display: inline-block;
}

.carousel-control.left span:hover,
.carousel-control.right span:hover {
	opacity: .7;
	filter: alpha(opacity=70);
}

.carousel-control {
    width: 5%;
}

.hero-arrows {
    font-size: 36px;
}

/* Carousel Header Styles */
.header-text {
    position: absolute;
    left: auto;
    right: auto;
    width: 100%;
    padding: 0px 9% 0px 10%;
    animation: text-slide 2.5s;
    animation-timing-function: ease-in-out;
}

/* animation */
@keyframes text-slide {
	from {left: -2000px;}
	to {left: 0%;}
}

.header-text h1 {
    font-size: 50px;
    font-weight: 900;
}

.header-top-black {
    color: black;
    top: 5vw;
    padding-left: 15vw;
    text-shadow: 0px 0px 10px white, 0px 0px 10px white;
}

.header-top-white {
    color: white;
    top: 5vw;
    padding-left: 15vw;
    text-shadow: 0px 0px 10px #000;
}

.header-bottom-white {
    color: white;
    bottom: 5vw;
    padding-left: 15vw;
    text-shadow: 0px 0px 10px #000;
}

/*===================== 
	content styles 
=======================*/
.textured-bknd {
    background-image: url("/siteart/dark-triangles.png");
}

.home-title {
    color: #00ac4e;
    font-weight: 900;
    font-size: 50px;
    padding: 25px 50px 10px 50px;
    text-align: center;
    text-transform: uppercase;
}

.home-text {
    padding: 0px 50px 25px 50px;
    color :white;
    text-align: center;
    font-size: 20px;
}

.btn-wrap {
    max-width: 1200px;
    display: block;
    margin: auto;
    margin-top: 15px;
}

.green-line {
    border-right: 1px solid #00ac4e;
    margin-bottom: 35px;
}

.content {
    margin: auto;
    overflow: hidden;
    max-width: 350px;
}

.content-overlay {
    background: rgba(0,0,0,0.3);
    position: absolute;
    height: 301px;
    width: 100%;
    max-width: 351px;
    left: 124px;
    top: -25px;
    bottom: 0;
    opacity: 1;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    margin-top: 25px;
}

.content:hover .content-overlay{
    background: rgba(0,0,0,0.65);
}

.content-image{
    width: 100%;
    max-width: 350px;
    text-align: center;
}

.content-details {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.content .content-details{
    top: 50%;
    left: 50%;
    opacity: 1;
}

.thin-btn-text {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px!important;
}

.content-details h3{
    color: #fff;
    margin-bottom: 0.5em;
    font-weight: 600;
    font-size: 36px;
    text-transform: uppercase;
}

.fadeIn-top{
    top: 20%;
}

.brands-wrap {
    padding: 15px 340px;
    text-align: center;
}

.brand-img {
    max-width: 300px;
    width: 100%;
    padding: 0px 15px 20px 15px;
}

.brand-poly {
    margin: 35px auto!important;
}

/*===================== 
	banner styles 
=======================*/
.green-bknd {
    background-color: #00ac4e;
    height: 91px;
    margin: 14px auto;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    position: absolute;
    z-index: 5;
    width: 335px;
    text-align: right;
    padding-right: 45px;
}

.green-bknd-right {
    background-color: #00ac4e;
    height: 91px;
    margin: 14px auto;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    position: absolute;
    z-index: 5;
    width: 335px;
    right: 0px;
}

.scroll-small {
    font-size: 23px!important;
    color: white;
    font-weight: 600;
    font-style: italic;
}

.scroll-text {
    padding: 0px 0px 0px 50px;
    font-size: 44px;
    line-height: 30px;
    color: white;
    font-weight: 600;
    font-style: italic;
}

/*  scrolling inventory
------------------------------------------------*/
.scrolling-wrap {
    width:100%;
    height:90px;
    overflow:hidden;
    margin: 15px auto;
}
 
.scrolling{
    width:100%;
    height:92px;
}

/*===================== 
	About styles 
=======================*/
.about-bknd {
    background-image: url("/siteart/about.jpg");
    background-size: cover;
    background-position: bottom;
}

.about-wrap {
    max-width: 1250px;
    padding: 20px 50px 50px 50px;
    display: block;
    margin: 50px auto;
    background: linear-gradient(rgba(255,255,255,.95), rgba(255,255,255,.95));
    min-height: 450px;
}

.about-text {
    font-weight: 500;
    line-height: 28px;
}

/*===================== 
	footer styles 
=======================*/
.footer-wrap {
    padding: 10px 50px;
}

.green-footer-text {
    color: #00ac4e;
    text-transform: uppercase;
    font-size: 40px;
    padding: 25px 10px;
    text-decoration: underline;
}

.footer-contact-info {
    padding: 35px 10px;
}

.footer-contact-link {
    color: white!important;
    font-size: 18px;
    transition: .2s;
}

.footer-contact-link:hover {
    color: #00ac4e!important;
}

.footer-email-tom {
    display: none;
}

.footer-logo {
    max-width: 350px;
    width: 100%;
    float: right;
    padding-left: 15px;
}

.copyright-link {
    color: #868686!important;
    transition: .2s;
}

.copyright-link:hover {
    color: #00ac4e!important;
}

.copyright {
    background-color: #212121;
    padding: 10px 50px;
    text-align: center;
    color: #868686;
    font-size: 13px;
}

footer {
	margin: 0;
	width: 100%;
    background-color: black;
	}
	
a.footerlink:link,
a.footerlink:visited, 
a.footerlink:active {
	text-decoration: none; 
	font-size:13px;
	color: #222;
	}
	a.footerlink:hover {
		text-decoration:none; 
		font-size:13px;
		color: #fff;
		}

.footertext {
	font-size:13px; 
	color:#666;
	}

.smallfootertext {
	font-size:10px; 
	color:#666;
	}

.divfooter {
	max-width:1200px; 
	text-align:center; 
	margin:0 auto;
	}

/*===================== 
	form styles 
=======================*/

.form-green {
    padding: 0px 2%;
}

.contact-text {
    margin-top: 30px;
    margin-bottom: 0px;
}

.contact_form {
    margin: 15px auto;
    padding: 15px;
    border: 1px solid #4D4D4D;
    width: 100%;
}

.contact-header {
    color: #00ac4e;
    font-size: 36px;
    font-weight: 700;
}

.contact-p {
    font-size: 14px;
}

.submit-button {
    background-color: #00ac4e;
    color: white;
    font-size: 18px;
    padding: 5px 15px; 
    border: 2px solid #00ac4e;
    margin-top: 10px;
    margin-bottom: 30px;
}

.submit-button:hover{
    border: 2px solid #00ac4e;
    color: #00ac4e;
    background-color: white;
}

/*===================== 
	thank you styles 
=======================*/
.thankyou {
    padding: 25px 0px;
    font-weight: 700;
    font-size: 36px;
    text-align: center;
    color: #00ac4e;
}

.thanks-text {
    font-size: 18px;
    text-align: center;
}

.thanks-button {
    color: white;
    background-color: #00ac4e;
    padding: 10px 25px;
    border: 2px solid #00ac4e;
    margin: 30px auto;
    font-size: 20px;
}

.thanks-button:hover{
    border: 2px solid #00ac4e;
    color: #00ac4e;
    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:'Montserrat', sans-serif!important;}
header * {box-sizing:border-box!important;}
footer * {box-sizing:border-box!important;}
/*-- Initial page styles --*/
span.list-title-text {font-size:20px!important;}
.check-availability-link {border-radius:0px!important;}
.list-content .print-this, .list-content .email-this  {border-radius:0px!important; font-size:13px!important;}
a.email-seller-link {border-radius: 0px!important;}
a.video-chat-link {border-radius: 0px!important;}
.list-content .list-top-section .listing-option-bar .list-sort-order .sort-by-dropdown-container {font-size:14px!important;}
select#sort {border-radius:0px!important; font-size:14px!important; font-family:'Montserrat', sans-serif!important;}
span.list-listings-count {color:#00ac4e!important; font-size:12px!important; position:relative; top:5px;}
.dealer-name {font-family:'Montserrat', sans-serif!important; font-size:14px!important;}
.dealer-data {font-family:'Montserrat', sans-serif!important; font-size:14px!important;}
span {font-family:'Montserrat', sans-serif!important; font-size:12px!important;}
.listing-portion-title {font-family:'Montserrat', sans-serif!important;}
.list-content .list-main-section .list-container .list-listing .listing-top .listing-top-left .listing-main-stats .price {color:#00ac4e!important;}
.list-content .list-main-section .list-container .list-listing .listing-top .listing-top-left .listing-main-stats .listing-category {font-size:13px!important;}
.view-listing-details-link {background-color:#00ac4e!important; border-radius:0px!important; font-size:14px!important;}
.view-listing-details-link:hover {background-color:#008039!important;}
.machine-location.machine-location-desktop {font-size:14px!important;}
.list-content .listing-bottom .listing-widgets a {border-radius:0px!important;}
button#faceted-search {border-radius:0px!important; background-color:#00ac4e!important;}
button#faceted-search:hover {background-color:#008039!important;}
.faceted-search-content .faceted-section-box .faceted-option-checkbox-container .option-name {padding-left:3px; margin-top:2px!important;}
span.faceted-show-all-btn {border-radius:0px!important; background-color:#00ac4e!important; transition:all .25s;}
span.faceted-show-all-btn:hover {background-color:#008039!important;}
input.leftLabel {border-radius:0px!important;}
input.rightLabel {border-radius:0px!important;}
.btn.show-all-apply-filter {border-radius:0px!important; background-color:#00ac4e!important;}
h5 span {font-size:18px!important;}
input.faceted-text-input {border-radius:0px!important; font-size:14px!important;}
.noUi-connect {background:#00ac4e!important;}
.noUi-draggable {cursor:default!important;}
.noUi-handle {background:#00ac4e!important; box-shadow:none!important; cursor:ew-resize!important;}
.list-page-number {font-size:24px!important; font-family:'Montserrat', sans-serif!important;}
span.page-number {font-size:24px!important; font-family:'Montserrat', sans-serif!important;}
span#ui-id-2-button {border-radius:0px!important; font-family:'Montserrat', sans-serif!important;}
button.list-page-nav {border-radius:0px!important; font-size:14px!important; font-family:'Montserrat', sans-serif!important;}
.paging-container .list-page-number {color:#555555!important; font-family:'Montserrat', sans-serif!important;}
span.ui-selectmenu-text {color:#555555!important; font-family:'Montserrat', sans-serif!important; font-size:22px!important;}
.overflow li {color:#555555!important; font-family:'Montserrat', sans-serif!important;}
.paging-container .page-number {color:#555555!important;}
.paging-container .page-navs .list-page-nav {background-color:#00ac4e!important;}
.paging-container .page-navs .list-page-nav:hover {background-color:#008039!important;}
.selected-facet {border-radius:0px!important; background-color:#00ac4e!important; font-size:13px!important;}

/*-- View Details Page --*/
.detail-content {padding-top:25px!important;}
.detail-content .print-this, .detail-content .email-this {border-radius:0px!important; font-size:13px!important;}
.breadcrumbs {font-size:15px!important;}
.search-results {color:#00ac4e!important;}
h1.detail-title {font-family:'Montserrat', sans-serif!important;}
.detail-category {font-size:14px!important;}
span.currency-selector {color:#00ac4e!important; font-size:22px!important;}
button.offer-btn {background:#00ac4e!important; font-size:18px!important; border-radius:0px!important; width:295px!important; z-index:5;}
button.offer-btn:hover {background:#008039!important;}
button.offer-btn span {font-size:18px!important;}
button.detail-btn-calc {border-radius:0px!important; width:303px!important; padding:10px 0px!important;}
.detail-content .dealer-info h3 {font-family:'Montserrat', sans-serif!important; font-size:15px!important;}
.dealer-company-header {font-family:'Montserrat', sans-serif!important; font-size:14px!important;}
button.send-email-btn {border-radius:0px!important; border-color:#00ac4e!important; color:#00ac4e!important;}
button.send-email-btn:hover {color:white!important; background-color:#00ac4e!important;}
a.check-availability-btn {border-radius:0px!important;}
.detail-content .listing-widgets a {border-radius:0px!important;}
section.detail-additional-data h4 {padding-top:15px;}
.data-label {background-color:#00ac4e!important; font-family:'Montserrat', sans-serif!important; font-size:14px!important;}
.data-value {font-family:'Montserrat', sans-serif!important; font-size:14px!important;}
h4 span {font-size:20px!important;}

/*-- Check Availability Form --*/
h2#email-modal-title {font-family:'Montserrat', sans-serif!important;}
input#FirstName {font-size:13px!important; font-family:'Montserrat', sans-serif!important; border-radius:0px!important;}
input#LastName {font-size:13px!important; font-family:'Montserrat', sans-serif!important; border-radius:0px!important;}
input#Email {font-size:13px!important; font-family:'Montserrat', sans-serif!important; border-radius:0px!important;}
input#Phone {font-size:13px!important; font-family:'Montserrat', sans-serif!important; border-radius:0px!important;}
input#PostalCode {font-size:13px!important; font-family:'Montserrat', sans-serif!important; border-radius:0px!important;}
select#InquiryTypeID {font-size:13px!important; font-family:'Montserrat', sans-serif!important; border-radius:0px!important;}
textarea#Comments {font-size:13px!important; font-family:'Montserrat', sans-serif!important; border-radius:0px!important;}
label {font-size:18px!important;}
.modal-form-el label {font-family:'Montserrat', sans-serif!important; font-size:18px!important;}
button.g-recaptcha.button {background:#00ac4e!important; border-radius:0px!important;}
button.g-recaptcha.button:hover {background-color:#008039!important;}





/*--------------------------------------------------------------
## MOBILE STYLES
--------------------------------------------------------------*/
/*-- Initial page styles --*/
.list-content .list-listing-mobile .dealer-phone-container .dealer-phone-call, .list-content .list-listing-mobile .dealer-phone-container .dealer-phone-text {background-color:#f2f2f2!important; border:none!important; border-radius:0px!important; color:#555555!important; font-family:'Montserrat', sans-serif!important;}
.listing-category {font-size:13px!important}
span.price {color:#00ac4e!important;}
img.main-image {border-radius:0px!important;}
a.fin-calc {color:#00ac4e!important; font-size:14px!important;}
.machine-location.machine-location-mobile {font-size:14px!important;}
.description-and-expander {margin-top:0px!important; margin-bottom:15px!important;}
.list-content .list-listing-mobile .price-container .fin-stacked.purchase-today-link {background:transparent!important;}
p.listing-description-text {margin-bottom:15px;}
.listing-description {font-family:'Montserrat', sans-serif!important;}
a.mobile-done-button {background-color:#00ac4e!important;}
.faceted-search-content .mobile-done-button-container .mobile-done-button:hover {background-color:#008039!important;}
.back-button {color:white!important; border:none!important; border-radius:0px!important; background-color:#00ac4e!important;}
.back-button:hover,.back-button:active,.back-button:focus {color:white!important; background-color:#008039!important;}
.apply-button {color:white!important; border:none!important; border-radius:0px!important; background-color:#00ac4e!important;}
.apply-button:hover,.apply-button:active,.apply-button:focus {color:white!important; background-color:#008039!important;}

/*-- View Details Page --*/
.mobile-breadcrumb {background-color:#00ac4e!important; font-size:14px!important;}
a.breadcrumbs-element {font-family:'Montserrat', sans-serif!important;}
.detail-content-mobile .dealer-info h3 {font-family:'Montserrat', sans-serif!important; font-size:16px!important;}
.dealer-info {font-family:'Montserrat', sans-serif!important; font-size:14px!important;}
a.field-value.js-phone-clicktotrack.dealer-phone-mobile {margin-right:0px!important; border-radius:0px!important; background-color:#00ac4e!important; justify-content:left!important;}
.detail-content-mobile .detail-main-body .main-detail-data .dealer-phone-mobile-container .dealer-phone-mobile span {margin-left:20px!important;}
button.offer-btn-mobile {border-radius:0px!important; background-color:#00ac4e!important; border:none!important;}
.detail-content-mobile .detail-main-body .main-detail-data .buy-btn-mobile span, .detail-content-mobile .detail-main-body .main-detail-data .offer-btn-mobile span {margin-left:20px!important;}
button#send-email-btn-mobile {background-color:#00ac4e!important; border-radius:0px!important; border:none!important; margin-bottom:20px!important;}
a#contact-bar-email {background-color:#00ac4e!important;}
a.contact-bar-btn.js-phone-clicktotrack {background-color:#00ac4e!important;}
a#contact-bar-check-availability {background-color:#00ac4e!important;}
button.fin-calc-btn-mobile {background-color:#00ac4e!important; border-radius:0px!important; border:none!important;}


@media only screen and (max-width : 991px) {
    .acc-container .acc-top .btn {font-size:13px;} 
}

@media only screen and (max-width : 767px) {
    .body-wrapper {margin: 0px 15px!important;}  
    .acc-container .acc-top .btn {font-size:10px;}
}


/*--------------------------------------------------------------
## 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%;}
}
/*--------------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 : 1500px) {
/*========================= 
	Header styles 
===========================*/
    .header-contact-btn {
        width: 95%;
    }
    
    
/*========================= 
	 Footer styles 
===========================*/
    .green-footer-text {
        font-size: 32px;
    }
}

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1310px) {
/*========================= 
	Header styles 
===========================*/
    .header-contact-btn-link {
        font-size: 17px;
        padding: 7px 10px;
    }
    
/*========================= 
	Nav styles 
===========================*/    
    nav ul li a {
        font-size: 18px;
    }
    
    nav.primary {
        top: 25px;
    }
    
/*========================= 
	Content styles 
===========================*/ 
    .header-text h1 {
        font-size: 42px;
    }
    
    .green-bknd {
        width: 272px;
    }
    
    .green-bknd-right {
        width: 272px;
    }
    
    .scroll-text {
        font-size: 36px;
        line-height: 28px;
        padding: 6px 0px 0px 50px;
    }
    
    .scroll-small {
        font-size: 20px!important;
    }
    
    .home-title {
        font-size: 46px;
    }
    
    .home-text {
        font-size: 18px;
    }
    
    .brand-poly {
        margin: 25px auto!important;
    }
    
/*========================= 
	About styles 
===========================*/
    .about-wrap {
        max-width: 900px;
    }
    
/*========================= 
	 Footer styles 
===========================*/
    .footer-contact-link {
        font-size: 16px;
    }
}

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1215px) {
/*========================= 
	 Header styles 
===========================*/
    .header-wrap {
        padding: 10px 25px 0px 25px;
    }
    
    .header-logo {
        width: 90%;
    }
    
    .header-contact-btn-link {
        font-size: 15px;
    }
    
/*========================= 
	 Nav styles 
===========================*/
    nav ul li a {
        font-size: 16px;
    }
    
/*========================= 
	 Content styles 
===========================*/    
    .header-text h1 {
        font-size: 40px;
    }
    
    .header-bottom-white {
        bottom: 8vw
    }
    
    .green-bknd {
        width: 243px;
        padding-right: 35px;
    }
    
    .green-bknd-right {
        width: 243px;
        padding-right: 35px;
    }
    
    .scroll-text {
        font-size: 32px;
        padding: 7px 0px 0px 50px;
    }
    
    .scroll-small {
        font-size: 18px!important;
    }
    
    .home-title {
        font-size: 40px;
    }
    
    .btn-wrap {
        max-width: 870px;
    }

    .content {
        max-width: 300px;
    }
    
    .content-overlay {
        height: 240px;
        max-width: 301px;
        left: 67px;
    }
    
    .content-details h3 {
        font-size: 30px;
    }
    
    .brands-wrap {
        padding: 7px 215px;;
    }
    
    .brand-img {
        padding: 0px 15px 7px 15px;
        width: 257px
    }
    
    .brand-poly {
        margin: 15px auto!important;
    }
    
/*========================= 
	 Footer styles 
===========================*/     
    .footer-wrap {
        padding: 10px 25px;
    }
    
    .green-footer-text {
        font-size: 27px;
    }
    
    .footer-full-email {
        display: none;
    }
    
    .footer-email-tom {
        display: inherit;
    }
    
    .footer-logo {
        width: 250px;
        padding-top: 10px;
    }
}

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}


/* Medium Devices, Desktops */
@media only screen and (max-width : 991px) {
/*========================= 
	 Header styles 
===========================*/
    .header-contact-btn {
        max-width: 260px;
    }
    
/*========================= 
	 Nav styles 
===========================*/
    nav.primary {
        top: 0px;
    }
    
    nav ul {
        padding: 10px;
    }
    
    nav ul li a {
        font-size: 18px;
        padding: 7px 10px;
    }
    
/*========================= 
	 Content styles 
===========================*/
    .header-text h1 {
        font-size: 31px;
    }
    
    .green-bknd {
        display: none;
    }
    
    .green-bknd-right {
        display: none;
    }
    
    .home-title {
        padding: 25px 25px 10px 25px;
    }
    
    .home-text {
        font-size: 17px;
        padding: 0px 25px 25px 25px
    }
    
    .btn-wrap {
        max-width: 730px;
    }
    
    .content {
        max-width: 270px;
    }
    
    .content-overlay {
        height: 216px;
        left: 47px;
        max-width: 271px;
    }
    
    .content-details h3 {
        font-size: 26px;
    }
    
    .brands-wrap {
        padding: 15px 25px;
    }
    
/*========================= 
	About styles 
===========================*/
    .about-wrap {
        max-width: 550px;
    }    
    
/*========================= 
	 Footer styles 
===========================*/
    .footer-wrap {
        padding: 15px 25px;
    }
    
    .green-footer-text {
        padding: 15px 0px 0px 0px;
    }
    
    .footer-contact-info {
        padding: 15px 0px 0px 0px;
    }
    
    .footer-logo {
        float: none;
        padding: 0px;
        margin:  15px auto 0px auto;
    }

}


/* Small Devices, Tablets */
@media only screen and (max-width : 767px) {
/*========================= 
	 Header styles 
===========================*/
    .header-wrap {
        padding: 0px;
    }
    
    .header-contact-btn {
        width: 100%;
        max-width: 100%;
    }
    
    .white-line {
        border-right: 1px solid white;
    }
    
    .header-logo {
        display: block;
        margin: 15px auto;
    }
    
/*========================= 
	 Content styles 
===========================*/
    .header-text h1 {
        text-align: center;
        font-size: 24px;
    }
    
    i.fas.fa-angle-right.hero-left.hero-arrows {
        right: 15px;
    }
    
    .home-title {
        font-size: 36px;
        padding: 25px 15px 10px 15px;  
    }
    
    .home-text {
        padding: 0px 15px 25px 15px;
    }
    
    .btn-wrap {
        max-width: 550px;
        margin-bottom: 35px;
    }
    
    .content-overlay {
        left: 140px;
    }
    
    .green-line {
        border-right: none;
    }
    
    .brands-wrap {
        padding: 0px;
    }
    
    .brand-img {
        padding: 15px;
    }
}

@media only screen and (max-width : 600px) {
/*========================= 
	 Header styles 
===========================*/
    .header-logo {
        width: 75%;
    }
    
/*========================= 
	 Content styles 
===========================*/
    .header-top-black {
        top: 50%;
    }
    
    .header-top-black {
        top: 50%;
    }
    
    .header-bottom-white {
        bottom: 50%;
    }
    
    .content {
        max-width: 100%;
        text-align: center;
    }
    
    .content-image {
        max-width: 100%;
        width: 85%;
    }
    
    .content-overlay {
        left: 7.5%; 
        height: auto;
        margin: auto;
        width: 85%;
        max-width: 100%;
        top: 0px;
    }
 
/*========================= 
	About styles 
===========================*/
    .about-wrap {
        max-width: 100%;
        margin: auto;
        padding: 20px 15px 25px 15px;
    }   
    
}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) { 
/*========================= 
	 Content styles 
===========================*/
     .header-top-black {
        top: 11%;
    }
    
    .header-top-black {
        top: 11%;
    }
    
    .header-bottom-white {
        top: 11%;
    }
}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {


}

