﻿/*===================== 
	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 
=======================*/
.clickbtn {padding: 5px; background-color: #FC6509; color: black !important; clear: both; float: right;  font-family: 'Montserrat', sans-serif !important; font-weight: 700; margin-top: 55px; font-size: 13px !important;}
.clickbtn:hover {background-color: white !important; cursor: pointer; transition-duration: .4s;}

/*===================== 
	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;
    background-color: black;
    color:white;
	}

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: #fc6509;}
a:hover {color: #fd8f4c;}

a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/ 
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		}  

/*===================== 
	header styles 
=======================*/
header {
	margin: 0 auto;
	width: 100%;
	}

.header-bknd {
    background-image: url("/siteart/sitebg.jpg");
    background-size: cover;
    background-position: center;
}

.header-wrap {
    max-width: 1250px;
    width: 100%;
    padding: 0px 25px;
    display: block;
    margin: auto;
}

.header-contact-info {
    padding: 7px 0px;
    color: white;
    text-align: right;
    font-size:14px;
}

.header-contact-link {
    color: white!important;
    font-weight: 400;
}

.header-contact-link:hover, .header-contact-link:active, .header-contact-link:focus {
    color: white!important;
}

.header-logo {
    max-width:100%;
}

/*===================== 
	nav styles 
=======================*/
nav.primary {
	padding:0;
	display:block;
	margin:0 auto;
	position:relative;
	text-align: center;
    background-color: #fc6509;
    width: 100%;
	}

nav ul {
	padding:0;
	margin:0;
}

nav > ul > li {
	display:inline-block;
	list-style-type:none; 
}

nav ul li a {
	font-size: 19px;
    color: black;
    display: block;
    text-transform: uppercase;
    font-weight: 700; 
    padding: 7px 25px;
    transition: .25s;
}	

nav ul li a:hover,
nav ul li a:focus,
nav ul li a:active{
	color: black;
    text-shadow: 0px 0px 15px #fff;
}


/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too much */
nav.primary ul ul {
	display: none;
    position: absolute; 
}

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%;
}

.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: #fc6509;
	text-align: right;
	min-height: 0 !important;
	}
	#menu-button a{
		 color: black;
		 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: #fc6509;
	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: 900;
	text-align: right;
    padding-right: 10px;
    float: right;
}

nav.mobile .menu-toggle:hover { /* Menu close button on hover */
	color: #fff;
}

nav.mobile ul {
	list-style: none;
	font-weight: 300;
	margin:0;
	padding:0;
}

nav.mobile ul li a {
	position: relative;
	display: block;
	padding-left: 20px;
	color: black;
	text-decoration: none;
	font-size: 16px;
    clear: both;
}

nav.mobile ul li a:hover {
	background: #e35902;
	color: black;
}

nav.mobile ul li li a { /* appearance of the sub-level links */
	position: relative;
	display: block;
	padding: 0px 10px 0px 35px;
	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 45px;
	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-inland {padding: 0px; margin: 0px;}
.div-inland {padding: 0px;}

.center {text-align: center;}

.page-title {font-size: 32px; font-weight:700; color:#fc6509; padding:25px 0px 10px 0px;}
.subtitle {font-size:24px; font-weight:700; color:#fc6509; padding: 15px 0px 10px 0px;}
.page-text {color:white;}
.p-bottom {padding-bottom:25px;}

.blk-bknd {background-color:black;}
.texture-bknd {background-image: url("/siteart/texture1.png");}

.border-top {border-top: 1px solid #fc6509}

/*===================== 
	content styles 
=======================*/
.hero-img {
    max-width: 100%;
    width: 100%;
}

.home-wrap {
    max-width: 1250px;
    width: 100%;
    padding: 0px 25px;
    display: block;
    margin: auto;
}

.rectangle_btn {
    max-width: 400px;
    width: 100%;
    display: block;
    align-content: center;
    margin: 25px auto;
    padding-top: 180px;
    padding-bottom: 85px;
    border: none;
    color: white;
}

.rectangle_btn:hover, .rectangle_btn:active, .rectangle_btn:focus {
    color: white; 
}

.inv_button {
    background: url("/siteart/btn-inv.jpg"); 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
} 

.inv_button:hover, .equip_button:active, .equip_button:focus {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
} 

.attach_button {
    background:  url("/siteart/btn-attach.jpg");   
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.attach_button:hover, .n_attach_button:active, .n_attach_button:focus {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
} 

.stripe-button {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75));
    border: 5px solid #fc6509;;
    position: absolute; 
    transition: all .25s;
    max-width: 400px;
    width: 100%;
    display: block;
    padding-top: 110px;
    padding-bottom: 145px;
    top: 25px;
}

.stripe-button:hover, .stripe-button:active, .stripe-button:focus {
    opacity: .5;
}

.homepage-sm-btn-text {
    color: white;
    font-weight: 400;
    font-size: 22px;
    position: absolute;
    left: 15px;
    bottom: 48px;
}

.homepage-btn-text {
    color: #fc6509;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.25px;
    position: absolute;
    left: 15px;
    font-size:32px;
    bottom: 15px;
}

/*===================== 
	Scrolling Inventory styles 
=======================*/
.scroll-border {
    margin-top: 35px;
    border-top: 1px solid #fc6509;
    border-bottom: 1px solid #fc6509;
    padding: 25px 0px;
}

.scrolling-wrap {
    width:100%;
    height:90px;
    overflow:hidden;
}
 
.scrolling{
    width:100%;
    height:92px;
}

/*===================== 
	Service styles 
=======================*/
.service-li {
    color: white;
}

/*===================== 
	footer styles 
=======================*/
.footer-wrap {
    max-width: 1250px;
    width: 100%;
    padding: 0px 25px;
    display: block;
    margin: auto;
}

.footer-title {
    color: #fc6509;
    text-transform: uppercase;
    letter-spacing: 1.25px;
    text-align: center;
    padding: 25px 0px 15px 0px;
    font-weight: 700;
}

.footer-section {
    text-align: center;
    padding: 0px 10px 25px 10px;
}

.footer-bold {
    color: white;
    font-weight: 700;
    font-size:14px;
}

.footer-contact-info {
    color: white;
    font-size:14px;
}

.footer-contact-link {
    color: white!important;
}

.footer-contact-link:hover, .footer-contact-link:active, .footer-contact-link:focus {
    color: white!important;
}

.footer-ul {
    text-align: center;
    padding-bottom: 25px;
    padding-left: 0px;
}

.footer-li {
    display: inline-block;
    list-style: none;
}

.footer-quick-link {
    color: white;
    display: block;
    padding: 3px 25px;
    font-size: 16px;
}

.footer-quick-link:hover, .footer-quick-link:active, .footer-quick-link:foucs {
    color: #fc6509;
}

.copyright-text {
    padding: 15px; 
    text-align: center;
    color: #868686;
    font-size: 11px;
}

.copyright-link {
    color: #868686!important;
}

.copyright-link:hover, .copyright-link:active, .copyright-link:focus {
    color: #fc6509!important;
}

footer {
	margin: 0;
	width: 100%;
	}
	
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-inland {padding: 0px 2%;}

.contact_form {
    margin: 15px auto;
    padding: 12px 15px;
    border: 1px solid #a4a4a4;
    width: 100%;
    color: black;
}

.submit-button, .thanks-button {
    background-color: #fc6509;
    color: white;
    font-size: 18px;
    padding: 5px 15px; 
    border: 2px solid #fc6509;
    margin-top: 10px;
    margin-bottom: 30px;
}

.submit-button:hover, .thanks-button:hover{
    border: 2px solid #fc6509;
    color: #fc6509;
    background-color: white;
}

.thanks-text {
    font-size: 18px;
    text-align: center;
}

/*===================== 
	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:13px;
    line-height:20px;
    }

.CaptchaAnswerPanel {
    margin:0 0 0 0;
    padding:2px 0px 2px 0px !important;
    color:black;
    }

.CaptchaWhatsThisPanel {
        line-height:0;
        margin:0 0 0 0;
        padding:11px 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 {font-family:'Montserrat', sans-serif!important; font-size:12px!important; color:white!important;}
h5 span {font-size:18px!important; color:white!important;}
.faceted-search-content {border:1px solid #515151!important;}
.faceted-search-content .faceted-section-box, .faceted-search-content .selected-facets-container {border-bottom:1px solid #515151!important;}
.faceted-section-head.section-head {background-color:#515151!important; border-bottom:1px solid #515151!important;}
span.list-title-text {font-size:20px!important; color:white!important}
.list-content .print-this, .list-content .email-this  {border-radius:0px!important; font-size:13px!important; background-color:#202020!important; border:none!important;}
button.email-seller-link.collapsible.fa {border-radius:0px!important;}
a.email-seller-link, a.video-chat-link, a.buy-now-link.gtm-buynow, .check-availability-link {border-radius: 0px!important;}
.media-buttons button:hover, .listing-widgets a:hover {background-color:#7b7b7b!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, span.parts-listings-count {color:#fc6509!important; font-size:12px!important; position:relative; top:5px;}
.dealer-name, .dealer-data {font-family:'Montserrat', sans-serif!important; font-size:14px!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:#fc6509!important; font-size:18px!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:#fc6509!important; border-radius:0px!important; font-size:14px!important;}
.view-listing-details-link:hover {background-color:#fd8f4c!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:#fc6509!important;}
button#faceted-search:hover {background-color:#fd8f4c!important;}
.faceted-search-content .faceted-section-box .faceted-option-checkbox-container .option-name {padding-left:3px; margin-top:0px!important;}
span.faceted-show-all-btn {border-radius:0px!important; background-color:#fc6509!important; transition:.25s;}
span.faceted-show-all-btn:hover {background-color:#fd8f4c!important;}
input.leftLabel, input.rightLabel {border-radius:0px!important;}
.btn.show-all-apply-filter {border-radius:0px!important; background-color:#fc6509!important;}
input.faceted-text-input {border-radius:0px!important; font-size:14px!important;}
.noUi-connect {background:#fc6509!important;}
.noUi-draggable {cursor:default!important;}
.noUi-handle {background:#fc6509!important; box-shadow:none!important; cursor:ew-resize!important;}
.list-page-number, 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:#fc6509!important; transition:.25s;}
.paging-container .page-navs .list-page-nav:hover {background-color:#fd8f4c!important;}
.selected-facet {border-radius:0px!important; background-color:#fc6509!important; font-size:13px!important;}
.error-message {color:#fc6509!important; font-family:'Montserrat', sans-serif!important;}
.show-all-modal-content-container {background-color:#585858!important;}
.list-content .list-main-section {border: 1px solid #515151!important;}
.list-listing.listing-data-selector {background-color:black!important; border: 1px solid #515151!important;}
.listing-widgets a {background-color:#202020!important;}
.legal-text-content {color:#9b9b9b!important;}
.spec-icon {background-color:#333!important;}
.list-content .list-main-section .list-container .list-error {background-color:black!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:#fc6509!important;}
h1.detail-title {font-family:'Montserrat', sans-serif!important; color:white!important;}
.detail-category {font-size:14px!important; color:white!important;}
span.currency-selector {color:#fc6509!important; font-size:22px!important;}
button.offer-btn {font-size:18px!important; background:#fc6509!important; border-radius:0px!important; width:295px!important; z-index:5; padding:5px; box-sizing:border-box;}
button.offer-btn:hover {background:#fd8f4c!important;}
button.offer-btn span, span.gtm-noclick {font-size:18px!important;}
button.buy-btn.gtm-buynow {width: 295px!important; border-radius: 0px!important; z-index:5!important; padding:5px; box-sizing:border-box;}
button.detail-btn-calc {border-radius:0px!important; width:303px!important; padding:10px 0px!important;}
a#fin-calc-open-btn {z-index:5!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:#fc6509!important; color:#fc6509!important; background-color:transparent!important;}
button.send-email-btn:hover {color:white!important; background-color:#fc6509!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:#fc6509!important; font-family:'Montserrat', sans-serif!important; font-size:14px!important;}
.data-value {font-family:'Montserrat', sans-serif!important; font-size:14px!important; background-color:#585858!important;}
h4 span {font-size:20px!important;}

/*-- Check Availability Form --*/
h2#email-modal-title {font-family:'Montserrat', sans-serif!important;}
input#FirstName, input#LastName, input#Email, input#Phone, input#PostalCode, select#InquiryTypeID, input#RecipientEmail, textarea#Comments, select#VideoChatService, select#VideoChatTime, select#VideoChatDay, input#OfferAmount {font-size:13px!important; font-family:'Montserrat', sans-serif!important; border-radius:0px!important;}
label {font-size:18px!important; font-family:'Montserrat', sans-serif!important;}
.modal-form-el label {font-family:'Montserrat', sans-serif!important; font-size:18px!important;}
button.g-recaptcha.button {font-family:'Montserrat', sans-serif!important; background:#fc6509!important; border-radius:0px!important;}
button.g-recaptcha.button:hover {background-color:#fd8f4c!important;}
.modal-bg .modal-content {background-color:#585858!important;}
.modal-top {color:white;}



/*--------------------------------------------------------------
## 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}
img.main-image {border-radius:0px!important;}
a.fin-calc {color:#fc6509!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; color:white;}
a.mobile-done-button {background-color:#fc6509!important; border-radius:0px!important; transition:.25s;}
.faceted-search-content .mobile-done-button-container .mobile-done-button:hover {background-color:#fd8f4c!important;}
.back-button, .apply-button {color:white!important; border:none!important; border-radius:0px!important; background-color:#fc6509!important; transition:.25s;}
.back-button:hover,.back-button:active,.back-button:focus, .apply-button:hover,.apply-button:active,.apply-button:focus {color:white!important; background-color:#fd8f4c!important;}
.contact-info-heading {margin-top:10px;}
.list-content .list-listing-mobile {background-color:black!important; border: 1px solid #515151!important;}
.list-content .list-listing-mobile .dealer-phone-container .dealer-phone-call, .list-content .list-listing-mobile .dealer-phone-container .dealer-phone-text {background-color:#333!important;}
.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, .list-content .list-listing-mobile .video-chat-link:hover {background-color:#515151!important;}

/*-- View Details Page --*/
.mobile-breadcrumb {background-color:#515151!important; font-size:14px!important;}
.detail-content .print-this, .detail-content .email-this {background-color:#202020!important; border:none!important;}
a.breadcrumbs-element {font-family:'Montserrat', sans-serif!important; color:white!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:#fc6509!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:#fc6509!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:#fc6509!important; border-radius:0px!important; border:none!important; margin-bottom:20px!important;}
a#contact-bar-email {background-color:#fc6509!important;}
a.contact-bar-btn.js-phone-clicktotrack {background-color:#fc6509!important;}
a#contact-bar-check-availability {background-color:#fc6509!important;}
button.fin-calc-btn-mobile {background-color:#fc6509!important; border-radius:0px!important; border:none!important;}
.detail-content .detail-main-body .main-detail-data {background-color:#585858!important;}
.detail-content-mobile .detail-contact-bar {background-color:#515151!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;}
}


/*-----------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%;}    
    .listing-option-bar {background-color:#515151!important;}
}
/*--------------Extends the footer so that the fixed nav doesn't overlap the footer-------------*/
@media only screen and (max-width : 400px) {
	.footer-background {padding: 20px 5% 20% 5%;}
}








/*========================= 
	 Responsive styles 
===========================*/
/*==========  Non-Mobile First Method  ==========*/

@media only screen and (max-width : 1250px) {
/*========================= 
	 content styles 
===========================*/
    .home-wrap {
        max-width: 900px;
    }
}

@media only screen and (max-width : 1200px) {
	.clickbtn {margin-top: 25px; margin-bottom: 25px; }

}

@media only screen and (max-width : 991px) {
/*========================= 
	 header styles 
===========================*/
    .header-wrap {
        padding: 0px 15px;
    }
    
    .header-contact-info {
        text-align: center
    }
    
/*========================= 
	 content styles 
===========================*/
    .home-wrap {
        max-width: 700px;
        padding: 0px;
    }
    
    .rectangle_btn {
        max-width: 300px;
    }
    
    .stripe-button {
        max-width: 300px;
    }
    
    .homepage-sm-btn-text {
        font-size: 19px;
    }
    
    .homepage-btn-text {
        font-size: 28px;
    }
    
/*========================= 
	 footer styles 
===========================*/    
    .footer-wrap {
        padding: 0px 15px;
    }
    
    .footer-section {
        padding: 0px 10px 20px 10px;
    }
    
    .footer-title {
        font-size: 23px;
        padding: 25px 0px 5px 0px;
    }
    
    .footer-ul {
        padding-bottom: 15px;
    }
    
    .footer-li {
        display: block;
    }
	
	.clickbtn {text-align: center; width: 90%; display: block; margin: 20px auto; float: none;}

}

@media only screen and (max-width : 767px) {
/*========================= 
	 header styles 
===========================*/    
    .header-bknd {
        padding: 15px 0px;
    }
    
    
/*========================= 
	 content styles 
===========================*/
    .home-wrap {
        max-width: 100%;
        padding: 0px 15px;
    }
    
    .button-wrap {
        max-width: 383px;
    }

}
 
@media only screen and (max-width : 400px) {
 /*========================= 
	 content styles 
===========================*/
    .button-wrap {
        max-width: 320px;
    }
    
    .homepage-sm-btn-text {
        left: 23px;
    }
 
    .homepage-btn-text {
        left: 23px;
    }
    

}

