﻿/*===================== 
	Color information
	
	-
	-
	-
	-
		 
=======================*/
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
/*===================== 
	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 {
	margin: 0;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
}
	
h1 {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 30px;
}

.heading-lg {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 30px;
}
		

h2 {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 28px;
}

.heading-md {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 20px;
}

	
h3 {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 26px;
}


h4 {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 24px;
}


h5 {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 20px;
}


h6 {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 16px;
}

.heading-xsm {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 16px;
}


.bold {font-weight: 800;}
.semi-bold {font-weight: 600;}
.tracking {letter-spacing: 1px;}
.semi-tracking {letter-spacing: .25px;}
.caps {text-transform: uppercase;}
.center {text-align: center;}

.blue {color: #2a3e75;}
.white {color: #FFFFFF;}
.gray {color: #8D807D;}


/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/
	}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/
    color: inherit; 
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		color: #aaa;
		}  



/*===================== 
	nav styles 
=======================*/



nav.primary {
	padding:0;
	display:block;
	margin:0 auto;
	position:relative;
	text-align: center;
	background-color: #7B706D;
	}

nav ul {
	padding:0;
	margin:0;
}



nav > ul > li {
	display:inline-block;
	list-style-type:none;
	position: relative;
}

nav ul li:hover {
	background-color: #2a3e75;
}

nav ul li a {
	font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
	font-weight: 600;
	color:#FFFFFF!important;
	text-transform: uppercase;
	letter-spacing: 1px;
    padding: 12px 13px 10px 13px;
    display: block;
	cursor: pointer;
}	



/* Appearance of the sub-level links */

nav.primary ul li li a { 
    padding:0;
	}
	
nav.primary ul li li a:hover { 
	color: #8D807D!important;
	}
	
nav.primary ul li li:hover { 
	color: #8D807D!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: #2a3e75;
    width: 300px;
    padding: 15px;
    text-align: left;
    padding-top: 30px;
}

nav.primary ul .end-of-nav {
	width: 100%;
}

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: 20px;
}

.dropdown_arrow {
	display: inline-block !important;
}


.end-of-nav {
	right: 0px;
}

/******** 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: #8D807D;
	text-align: right;
	min-height: 0 !important;
	}
	#menu-button a{
		 color: #FFFFFF;
		 text-decoration: none;
		 text-align: right !important;
		 cursor: pointer;
	  }

nav.mobile {
	display:block;
	position: fixed;
	top: 0;
	left: -250px;
	width: 250px;
	height: 100%;
	background: #2a3e75;
	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: #999;
	text-decoration: none;
	font-size: 15px;
	letter-spacing: 1px;
}
nav.mobile ul li a:hover {
	color: #8D807D!important;
}


nav.mobile ul li li a { /* appearance of the sub-level links */
	position: relative;
    display: block;
    padding: 0px 10px 0px 15px;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    margin-left: 10px;
    font-weight: 500;
}
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-wrap {
    max-width: 1600px;
    display: block;
    margin: auto;
}
.header-logo {
	max-width: 300px;
    width: 100%;
    margin: 20px;
	max-height: 200px;
}
.header_trade-wrap {
	max-width: 400px;
    float: right;
	margin: 30px 0px;
}
.header_contact-wrap {
	max-width: 400px;
    float: right;
	margin: 10px 0px;
}
.header-btn {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 15px;
	background-color: #2a3e75;
	border: 2px solid #2a3e75;
	color: #FFFFFF;
	font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin: 10px auto 10px auto;
    width: 250px;
    padding: 10px 0px 8px 0px;
}
.header-btn:hover {
	background-color: transparent;
	color: #2a3e75;
}

#nav i {
	color: #fff;
	font-size: 15px;
	margin-right: 20px;
}


/*===================== 
	homepage styles 
=======================*/

.home-hero {
	background: url("../siteart/home-header.jpg") no-repeat;
    background-size: cover;
    background-position: center;
    height: auto;
    padding: 215px 0;
	clear: both;
	background-color: #2a3e75;
}

.home-hero h1 {
	color: #fff;
	font-weight: 700;
	font-size: 50px;
	text-align: center;
	max-width: 600px;
    margin: 0 auto;
}

.home-hero .wrapper {
	padding-left: 15px;
	padding-right: 15px;
}

.home-hero .wrapper > a {
	margin: 0 auto;
    display: block;
    width: 250px;
}

.button-wrap {
	background-image: url("/siteart/stripes-light.png");
	background-repeat: repeat;
	padding: 80px 40px 80px 40px;
	clear:both;
}
.button-container1 {
	max-width: 1600px;
	display: block;
	margin: auto;
}
.button-info-wrap {
	margin-bottom: 40px;
}
.flex-container1{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.flex-container1 div{
	width:25%;
	margin: 10px;
	height: 210px;
	overflow-y: hidden;
/*	background-color: #BCB1AF;*/
	background-color: #7B706D;
	position: relative;
}

.flex-container1 div > a > img {
	width: 100%;
    object-fit: cover;
    height: 100%;
}

.flex-container1 div:hover > a > img {
	opacity: .01;
}

.equipment-button {
	position: absolute;
	top: 0;
	left: 0;
	background: none;
	border: none;
	color: #fff;
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 40px;
    width: 100%;
	display: block;
    margin: auto;
	height: 100%;
}
/*
.equipment-icon {
	display: block;
    margin: auto;
	max-width: 100px;
	width: 100%;
	max-height: 100px;
}
*/
.auction-time-wrap {
	padding: 80px 40px;
}
.auction-time-container1 {
	max-width: 1600px;
	display: block;
	margin: auto;
}

.auction-info-wrap {
	margin-top: 60px;
}

.auction-img {
	max-width: 600px;
    width: 100%;
    display: block;
	max-height: 400px;
    margin:0 auto;
}

.auction-time-logo {
	max-width: 300px;
    width: 100%;
    display: block;
	max-height: 150px;
    margin: auto;
	margin-top: 35px;
}
.auction-time-btn {
	font-family: 'Roboto Condensed', sans-serif;
    font-size: 15px;
    background-color: #2a3e75;
    border: 2px solid #2a3e75;
    color: #FFFFFF;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 25px;
    width: 250px;
    padding: 10px 0px 8px 0px;
}
.auction-time-btn:hover {
	background-color: transparent;
	color: #2a3e75;
}
.auction-info-wrap {}
.trade-wrap {
	background-image: url("/siteart/stripes-light.png");
	background-repeat: repeat;
	padding: 80px 40px;
}
.trade-container1 {
	max-width: 1600px;
	display: block;
	margin: auto;
}
.trade-info-wrap {
	margin-top: 60px;
}

.shelby-flooring-wrap {
	padding: 80px 40px;
}

.trade-btn, .hero-btn {
	font-family: 'Roboto Condensed', sans-serif;
    font-size: 15px;
    background-color: #2a3e75;
    border: 2px solid #2a3e75;
    color: #FFFFFF;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 25px;
    width: 250px;
    padding: 10px 0px 8px 0px;
}
.trade-btn:hover, .hero-btn:hover {
	background-color: transparent;
	color: #2a3e75;
}

.hero-btn {
	background-color: #fff!important;
	color: #2a3e75!important;
	border: 2px solid #fff;
}
.hero-btn:hover {
	background-color: transparent!important;
	color: #fff!important;
}
.construction-img {
	display: block;
    margin: auto;
	max-width: 600px;
	width: 100%;
	max-height: 400px;
}

.par-big > p:nth-child(2) {
	margin-top: 12px;
	margin-bottom: 12px;
}

.trade-info-wrap > .semi-tracking, .auction-info-wrap > .semi-tracking {
	margin-bottom: 12px;
}

.auction-info-wrap .flex {
	display: flex;
}

.auction-info-wrap .flex .logo-flex {
	margin-top: 10px!important;
	margin-left: 30px!important;
	margin-bottom: 0!important;
}

.brand-slider .demo {
	max-width: 1100px;
    display: block;
    margin: auto;
}

.brand-slider {
	background-image: url(/siteart/stripes-light.png);
    background-repeat: repeat;
    padding: 80px 40px;
}

.brand-slider h2 {
	text-align: center;
}

.slick-prev:before {
	color: #2a3e75!important;
}

.slick-next:before {
	color: #2a3e75!important;
}

/*===================== 
	about page styles 
=======================*/
.about-container1 {
	max-width: 1600px;
	display: block;
	margin: auto;
}
.about-wrap {
	padding: 80px 40px;
}

/*===================== 
	Shelby page styles 
=======================*/

.flooring-select-cont {
    max-width: 1400px;
    margin:20px auto 0 auto;
}
.flooring-img-1 {
    max-width: 100%;
    max-height: 144px;
    display: block;
    margin:10px auto;
}
.flooting-prod-cont {
    display: flex;
    justify-content: space-between;
}
.flooting-prod-cont img {
    max-width: 400px;
    width:50%;
    max-height: 600px;
    display: block;
    margin:10px 0;
    padding:5px;
    box-sizing: border-box;
}

.flooting-prod-cont .middle-img {
	max-width: 790px;
}

.flooting-prod-cont img:first-child, .flooting-prod-cont img:last-child {
    width:25%;
}

/* Style the tab */
.tab {
    width:100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Style the buttons inside the tab */
.tab button {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 15px;
    background-color: #2a3e75;
    border: 2px solid #2a3e75;
    color: #FFFFFF;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    width: 24.5%;
    padding: 10px 0px 8px 0px; 
    box-sizing: border-box;
}

/* Change background color of buttons on hover */


/* Create an active/current tablink class */
.tab button.active {
  background-color: #fff;
    color:#2a3e75;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 20px 12px;
  border: 1px solid #ccc;
  border-top: none;
}


.flooring-info-cont-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.flooring-info-cont-1 .column-1 {
    width:66%;
}
.flooring-info-cont-1 .column-2 {
    width:33%;
}
.flooring-info-cont-1 .column-2 img {
    max-width: 321px;
    width: 100%;
    max-height: 230px;
    display: block;
    height: auto;
}
.flooring-cta {
    border: 2px solid #2a3e75;
    padding:10px;
    width:100%;
    text-align: center;
    margin:20px 0;
}

.flooring-cta h4 {
    padding:10px 0 0 0;
}

/*===================== 
	thank you styles 
=======================*/
.thank-you-wrap {
	padding: 80px 40px;
}
.thank-you-container1 {
	max-width: 1600px;
	display: block;
	margin: auto;
}
.thank-you-btn {
	font-family: 'Roboto Condensed', sans-serif;
    font-size: 15px;
    background-color: #2a3e75;
    border: 2px solid #2a3e75;
    color: #FFFFFF;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
	display: block;
	margin: auto;
    margin-top: 25px;
    width: 250px;
    padding: 10px 0px 8px 0px;
}
.thank-you-btn:hover {
	background-color: transparent;
	color: #2a3e75;
}



/*================================ 
	Our servies pages styles 
==================================*/
.btn-flex {display: flex; gap: 10px; justify-content: space-around; flex-wrap: wrap;}
legend {margin-bottom: 0; border-bottom: none; font-size: 18px;}

.col-xs-12.pad-fix {padding: 0;}

form span {color: #B10104;}


/*================================ 
	value your trade page styles 
==================================*/
.services-list {
	padding-left: 15px;
}

.services-list li {
	margin-bottom: 10px;
}

.form-wrapper {
	padding: 40px;
}
.form-container1 {
	max-width: 1600px;
	display: block;
	margin: auto;
	box-sizing: border-box;
	padding:1%;
	background:#f4f4f4;
}
.year {width: 100%;}
.make {width: 100%;}
.model {width: 100%;}
.hours {width: 100%;}
.miles {width: 100%;}
.condition {width: 100%;}
.info {width: 100%;}
.name {width: 100%;}
.email {width: 100%;}
.phone {width: 100%;}
.zip {width: 100%;}
.submit-button {
	font-family: 'Roboto Condensed', sans-serif;
    font-size: 15px;
    background-color: #2a3e75;
    border: 2px solid #2a3e75;
    color: #FFFFFF;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin: 10px auto 0px auto;
    width: 250px;
    padding: 10px 0px 8px 0px;
}
.submit-button:hover {
    background-color: transparent;
    color: #2a3e75;
}
.contact_form {
	border: 2px solid #2a3e75;
	border-radius: 0px;
	margin: 10px auto;
	padding: 10px;
}
/*control the Captcha */
.CaptchaPanel {
    clear: both;
    margin: 25px 0 0 0 !important;
    padding: 25px 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;} 

.cycle-slideshow img{
	width:100%;
}

select {
	padding: 10px;
	margin: 10px auto;
	border-radius: 0;
	border: 2px solid #2a3e75;
}

select {
	-webkit-appearance: none;
}

/*===================== 
	preferred partners page styles 
=======================*/
.partner-group {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
	justify-content: center;
}
.partner-group .partner {
	text-align: center;
}
.partner-group .partner img {
	max-height: 80px;
	max-width: 400px;
}
.partner-group .partner h2 {
	padding-top: 10px;
}



/*===================== 
	contact page styles 
=======================*/
.contact-wrap {
	padding: 40px 40px;
}
.contact-container1 {
	max-width: 1600px;
	display: block;
	margin: auto;
}
.contact-email {
	color: #000000!important;
}
.contact-email:hover {
	color: #8D807D!important;
}
.contact-phone {
	color: #000000!important;
}
.contact-phone:hover {
	color: #8D807D!important;
}


.contact-container1 img{
	width: 100%;
	max-width: 600px;
	padding-top: 10px;
}




/*===================== 
	auction page styles 
=======================*/
.auction-wrap {
	padding: 80px 40px;
}
.auction-container1 {
	max-width: 1600px;
	display: block;
	margin: auto;
	text-align: center;
}



	
/*===================== 
	inventory styles 
=======================*/

.inventory-heading p {
	color: #2a3e75;
	text-align: center;
	font-weight: 800;
	font-family: 'Roboto Condensed', sans-serif;
    font-size: 40px;
	margin-top: 20px;
}

.body-content .body-wrapper {padding:2% 0; font-family: 'Roboto', sans-serif;}

/*--- FONTS ---*/
.list-content .list-title .list-title-text {font-family: 'Roboto', sans-serif!important; font-size: 25px; text-transform: uppercase; color:#000 !important;}
.list-content .listing-portion-title {font-family: 'Roboto', sans-serif; font-size: 20px;}
.list-content .list-title .list-listings-count {color: #2a3e75!important;}
.list-listing-title {font-family: 'Roboto', sans-serif!important;}
.listing-portion-title {font-family: 'Roboto', sans-serif!important;}
.list-content .list-main-section .list-container1 .list-listing .listing-top-right .listing-dealer-info .dealer-name {font-family: 'Roboto', sans-serif;}
.list-content .list-main-section .list-container1 .list-listing .listing-top .listing-top-left .listing-main-stats .price {color: #2a3e75!important; font-family: 'Roboto', sans-serif;}
.list-content .list-top-section .listing-option-bar .list-listings-count {color: #2a3e75!important;}
.faceted-search-content .faceted-section-head h5 {font-family: 'Roboto', sans-serif; border-radius: 0px!important;}
.listing-portion-title.description-title {font-family: 'Roboto', sans-serif;}
.faceted-search-content .faceted-section-box .faceted-search {border-radius: 0px!important;}
.faceted-search-content .faceted-section-box .faceted-btn-container1 .faceted-show-all-btn {border-radius: 0px!important;}
.detail-content .detail-main-body .main-detail-data .detail-price {color: #2a3e75!important; font-family: 'Roboto', sans-serif;}
.detail-content .detail-main-body .main-detail-data .detail-title {font-family: 'Roboto', sans-serif!important; font-size: 25px; text-transform: uppercase; color: #000; font-weight: 800;}
.detail-content .dealer-info h3 {font-family: 'Roboto', sans-serif; font-size: 20px;}
.contact-information {font-family: 'Roboto', sans-serif!important;}
.breadcrumbs {font-family: 'Roboto', sans-serif!important;}
.listing-widgets {font-family: 'Roboto', sans-serif!important;}
.detail-additional-data {font-family: 'Roboto', sans-serif!important;}
.detail-additional-data h4 {font-family: 'Roboto', sans-serif!important;}
.detail-content .search-results{color: #2a3e75!important;}
.legal-text-content {font-family: 'Roboto', sans-serif!important; font-size: 12px; font-style: italic;}
.list-content .list-top-section .listing-option-bar .list-sort-order .sort-by-dropdown-container1 .list-sort-order-select {font-size: 1.15rem!important;}
.list-content .list-title .list-listings-count {font-size: 1.15rem!important;}

/*--- BUTTONS ---*/
.view-listing-details-link {background: #2a3e75!important; color:#fff !important; font-family: 'Roboto', sans-serif; border-radius: 0px!important;}
.view-listing-details-link:hover {background: #555555!important;}
.email-seller-link {border-radius: 0px!important;}
.faceted-search-content .selected-facets-container1 .selected-facet{background: #2a3e75!important; font-family: 'Roboto', sans-serif; border-radius: 0px!important;}
.noUi-connect {background: #2a3e75!important;}
.noUi-handle  {background: #2a3e75!important;}
.list-content .listing-bottom .listing-widgets a {border-radius: 0px!important; font-family: 'Roboto', sans-serif!important;}
.detail-content .print-this, .detail-content .email-this {border-radius: 0px!important; font-family: 'Robotos', sans-serif;}
.offer-btn {border-radius: 0px!important; font-family: 'Roboto', sans-serif; background-color: #2a3e75!important;}
.offer-btn:hover {background-color: #555555!important;}
.send-email-btn {font-family: 'Roboto', sans-serif!important; border-radius: 0px!important; border-color: #2a3e75!important; color: #2a3e75!important;}
.detail-content .detail-additional-data .data-row .data-label {background: #555555!important;}
.print-this, .email-this {font-family: 'Roboto', sans-serif!important; border-radius: 0px!important;}
.detail-content .detail-main-body .main-detail-data .addthis_inline_share_toolbox .at-share-btn-elements {display: inline-block!important;}
.detail-content .detail-main-body .main-detail-data .addthis_inline_share_toolbox .at-share-btn-elements {width: auto!important;}
.paging-container1 .page-navs .list-page-nav {background: #2a3e75!important; font-family: 'Roboto', sans-serif;}
.list-container1-flexrow .buy-now-link, .list-container1-flexrow .check-availability-link, .list-container1-flexrow .email-seller-link, .list-container1-flexrow .dealer-phone-call {border-radius: 0px!important;}

/*--- Mobile Styles ---*/
.price {color: #2a3e75!important; font-family: 'Roboto', sans-serif;}
.list-content .list-listing-mobile .dealer-phone-container1 .dealer-phone-call, .list-content .list-listing-mobile .dealer-phone-container1 .dealer-phone-text {color:#2a3e75!important; border-color: #2a3e75!important; border-radius: 0px!important;}
.specs-container1 {font-family: 'Roboto', sans-serif!important;}
.spec-container1 {font-family: 'Roboto', sans-serif!important;}
.mobile-breadcrumb {background-color: #555555!important;}
.detail-title {font-family: 'Roboto', sans-serif!important;}
.detail-content-mobile .detail-main-body .main-detail-data .detail-price {color: #2a3e75!important;}
.detail-content-mobile .dealer-info h3 {font-family: 'Roboto', sans-serif!important;}
.field-value {font-family: 'Roboto', sans-serif;}
.contact {font-family: 'Roboto', sans-serif;}

.detail-content-mobile .detail-main-body .main-detail-data .dealer-phone-mobile-container1 .dealer-phone-mobile {background-color: #2a3e75!important; font-family: 'Roboto', sans-serif!important; border-radius: 0px!important;}
.detail-content-mobile .detail-main-body .main-detail-data .send-email-btn-mobile, .detail-content-mobile .detail-main-body .main-detail-data .send-wholesale-email-btn-mobile {background-color: #2a3e75!important; font-family: 'Robotos', sans-serif!important; border-radius: 0px!important; border: none!important;}
.detail-content-mobile .detail-contact-bar .contact-bar-btn {background-color: #2a3e75!important; font-family: 'Roboto', sans-serif!important; border-radius: 0px!important;}
.data-label {background-color: #555555!important;}
.faceted-search-content .mobile-done-button-container1 .mobile-done-button {background-color: #333!important; border-radius: 0px; font-family: 'Roboto', sans-serif;}
.faceted-search-content .mobile-done-button-container1 .mobile-done-button:hover {background-color: #2a3e75!important; border-radius: 0px; font-family: 'Roboto', sans-serif;}

.col-xs-12.col-sm-12.col-md-4 {box-sizing: border-box;}
.col-xs-12.col-sm-12.col-md-8 {box-sizing: border-box;}
.hidden-xs.hidden-sm.col-md-8 {box-sizing: border-box;}
.col-xs-12.col-sm-12.col-md-4 {box-sizing: border-box;}
.col-xs-12 {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.footer-bkgd {box-sizing: border-box;}
.col-xs-12.col-sm-12.col-md-7.col-lg-5 {box-sizing: border-box;}
.col-xs-12.col-sm-6.col-md-6.col-lg-6 {box-sizing: border-box;}
.col-xs-12.col-sm-6.col-md-6.col-lg-6 {box-sizing: border-box;}
.hidden-xs.hidden-sm.col-md-5.col-lg-4 {box-sizing: border-box;}
.hidden-xs.hidden-sm.hidden-md.col-lg-3 {box-sizing: border-box;}




/*--- 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%;}
}





/*===================== 
	footer styles 
=======================*/

footer {
	margin: 0;
	width: 100%;
	}
	
a.footerlink:link,
a.footerlink:visited, 
a.footerlink:active {
	text-decoration: none; 
	font-size: 12px;
	color: #000000;
	font-weight: 600;
	}
	a.footerlink:hover {
		text-decoration: none; 
		font-size: 12px;
		color: #8D807D;
		}

.footertext {
	font-size: 12px; 
	color: #000000;
}
.smallfootertext {
	font-size: 12px; 
	color: #000000;
}
.divfooter {
	max-width: 1080px;
    text-align: center;
    margin: 0 auto;
    clear: both;
    padding: 20px;
    line-height: 1.25;
}
.footer-bkgd {
	background-color: #2a3e75;
	padding: 20px;
}
.footer-logo {
	max-width: 300px;
    width: 100%;
	margin-top: 55px;
	max-height: 200px;
}
.footer_contact-wrap {
	margin-top: 45px;
}
.footer-phone {
	font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #ffffff!important;
    letter-spacing: .25px;
    display: block;
    font-weight: 600;
}
.footer-phone:hover {
	color: #8D807D!important;
}
.footer-email {
	font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #ffffff!important;
    letter-spacing: .25px;
    display: block;
	margin: 15px 0px;
}
.footer-email:hover {
	color: #8D807D!important;
}
.stock-wrap {
	background-color: #ffffff;
    height: 211px;
    padding: 10px;
}
.weather-wrap {}
.qr-wrap{
	height: 200px;
}
.qr-code{
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
    max-height: 260px;
    max-width: 261px;
}





/*========================= 
	 Responsive styles 
===========================*/

/*==========  Non-Mobile First Method  ==========*/

@media only screen and (max-width : 1300px) {
	.header_trade-wrap {margin-right: 50px;}

}

@media only screen and (max-width : 1241px) {
	nav ul li a {
		padding: 12px 10px 10px 10px;
	}

	nav.primary ul .end-of-nav {
		padding: 12px;
	}
}

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1199px) {
.flex-container1{
	flex-wrap: wrap;
	}
.flex-container1 div{
	width:45%;
	margin: 10px;
}
	
	.weather-wrap {
		display: none;
	}

}

@media only screen and (max-width : 1080px) {
	.header_trade-wrap {display: none;}
}

@media only screen and (max-width : 990px) {
	.auction-info-wrap .flex {
		justify-content: center;
	}
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 991px) {
	.footer-logo {display: block; margin: auto; margin-top: 0px;}
	.footer_contact-wrap {margin-top: 0px;}
	.equipment-button {margin: 10px auto;}
	.auction-info-wrap {text-align: center; margin-top: 25px;}
	.auction-time-logo {margin-top: 0px; margin-bottom: 25px;}
	.trade-info-wrap {text-align: center; margin-top: 0px; margin-bottom: 25px;}
	.construction-img {margin-top: 25px;}

    .tab button {
         width:49.5%; 
        margin-top: 10px;
    }
    .flooring-info-cont-1 .column-1 {
        width:49%;
    }
    .flooring-info-cont-1 .column-2 {
        width:49%;
    }
	
	.qr-wrap {
		display: none;
	}

}

@media only screen and (max-width : 900px) {
	.form-wrapper {
		padding: 20px 0;
	}
	
	.services-wrapper {
		padding-left: 15px;
		padding-right: 15px;
	}
}

/* Small Devices, Tablets */
@media only screen and (max-width : 767px) {
	.header-logo {display: block; margin: 20px auto;}
	.header_contact-wrap {float: none; max-width: 100%; margin-bottom: 25px;}
	.footer_contact-wrap {margin-top: 25px; text-align: center;}
	.about-container1 {text-align: center;}
	.flex-container1 div{
		width:90%;
		margin: 10px auto;
/*		height: auto;*/
		overflow-y: visible;
	}
    .flooring-info-cont-1 .column-1 {
        width:100%;
        order:2;
    }
    .flooring-info-cont-1 .column-2 {
        width:100%;
        order:1;
        padding:0 0 20px 0;
    }
    .flooring-info-cont-1 .column-2 img {
        margin:0 auto;
    }
	
	.services-list li {
		list-style: none;
	}
}

/* Extra Small Devices, Phones */ 

@media only screen and (max-width : 636px) {
	.auction-info-wrap .flex {
		flex-direction: column;
		align-items: center;
	}
	
	.auction-info-wrap .flex .logo-flex {
		margin-left: auto!important;
		margin-top: 30px !important;
	}
	
	.trade-wrap {
		padding: 80px 15px;
	}
	
	.auction-time-wrap, .shelby-flooring-wrap {
		padding: 80px 15px;
	}
}

@media only screen and (max-width : 520px) {
	.about-wrap {
		padding: 80px 15px;
	}
	
	.contact-wrap {
		padding: 40px 15px;
	}
	
	.button-wrap {
		padding: 80px 15px;
	}
	
	.home-hero {
		padding: 100px 0;
	}
}

@media only screen and (max-width : 480px) {
     .tab button {
         width:100%; 
        margin-top: 10px;
    }
	
	.home-hero h1 {
		font-size: 40px;
	}
 
}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 385px) {
	.flooring-cta h4 {
		font-size: 20px;
	}

}

@media only screen and (max-width : 330px) {
	.flooring-cta h4 {
		font-size: 18px;
	}
	
	.home-hero {
		padding: 60px 0;
	}

}