/*===================== 
	Color information
	
	- Light Blue: #6dc6e7;
	- Darker Blue: #2885b3;
	- Light Blue-Gray Tint: #e6ecf5;
	-
		 
=======================*/
/*===================== 
	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%;
}


/*===================== 
    landing page
=======================*/
.landing {
	width: 100%;
	border-bottom: 5px solid #fff;
}

.auctions,
.capital {
	width: 50%;
	float: left;
	margin: 0 auto;
	text-align: center;
	position: relative;
	padding: 21% 0;
}

.entrywindow {
	position: absolute;
	top: 50%;
	transform: translate(-0%, -50%);
	-webkit-transform: translate(-0%, -50%);
	-ms-transform: translate(-0%, -50%);
	left: 10%;
	right: 10%;
}

.entrybutton {
	width: 50%;
	background: #fff;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	-moz-box-shadow: 2px 2px 2px #434343;
	-webkit-box-shadow: 2px 2px 2px #434343;
	box-shadow: 2px 2px 2px #434343;
	margin: 2% auto;
}

.entrybutton h3 {
	color: #ed1c24;
	text-align: center;
	padding-top: 5px;
}

.entrybutton:hover {
	background: #000;
	-webkit-transition: all .3s ease;
	-ms-transition: all .3s ease;
	transition: all .3s ease;
}

.entrybutton:hover h3 {
	color: #fff;
}

.auctions {
	background: url(../siteart/auction_back.jpg) center center no-repeat;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
}

.capital {
	background: url(../siteart/capital_back.jpg) center center no-repeat;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
}

.black {
	height: 2px;
	width: 100%;
	background: #000;
}

.landingbottom {
	height: 100px;
	width: 100%;
	background: #fff;
	border-top: 5px solid #ed1c24;
}

.landingat {
	float: right;
	margin-top: 1%;
	padding-right: 3%;
}

.landingat img {
	transform: scale(0.90);
}

/*===================== 
	base styles 
=======================*/

html {
	-ms-text-size-adjust: 100%;
	/* 2 */
	-webkit-text-size-adjust: 100%;
	/* 2 */
}

body {
	font-family: 'Montserrat', sans-serif;
	margin: 0;
	padding: 0;
	background: url(../siteart/rubberback.jpg) center center repeat !important;
	color: #000;
}

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;
	max-width: 100%;
}

/*===================== 
	typography 
=======================*/

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Montserrat', sans-serif;
	margin: 0;
	padding: 0 0 2% 0;
	font-weight: 600;
	line-height: 1.5em;
	color: #fff;
}

h1 {
	font-size: 36px;
}

h2 {
	font-size: 30px;
}

h3 {
	font-size: 24px;
}

h4 {
	font-size: 20px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 14px;
}

p {
	font-family: 'Montserrat', sans-serif;
	padding: 0 0 2% 0;
	font-size: 18px;
	line-height: 1.5em;
	margin: 0;
	color: #fff;
}

strong {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
}

/*===================== 
	link styles 
=======================*/

a.link:focus {
	outline: thin dotted;
	/*reset*/
}

a {
	text-decoration: none;
	color: inherit;
}

a:hover {
	text-decoration: none;
	color: #000;
}

#contactblock a:hover {
	color: #ed1c24;
}

.appbutton {}

.appbutton a {
	background: #38b749;
	padding: 5px 10px;
	color: #fff;
	border-radius: 3px;
}

.appbutton a:hover {
	background: #262626;
	padding: 5px 10px;
	color: #fff;
	border-radius: 3px;
}

.financebutton {
	width: 15%;
	background: #ed1c24;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	text-align: center;
	padding: 10px 8px 5px 8px;
	float: right;
	margin: 8px 20px;
}

.financebutton p {
	color: #fff;
	padding-bottom: 0;
	font-size: 14px;
}

.financebutton:hover {
	background: #fff;
	-webkit-transition: all .3s ease;
	-ms-transition: all .3s ease;
	transition: all .3s ease;
}

.financebutton:hover p {
	color: #ed1c24;
	-webkit-transition: all .3s ease;
	-ms-transition: all .3s ease;
	transition: all .3s ease;
}

.logomark {
	width: 50%;
	margin: 0 auto;
}

.linktext {
	width: 100%;
	margin: 0 auto;
}

.inactive {
	display: block;
}

.active {
	display: none;
}

.financebutton:hover .active {
	display: block;
}

.financebutton:hover .inactive {
	display: none;
}

.auctionlogos {
	margin: 0 auto;
	width: 100%;
}

.atlogo {
	width: 250px;
	float: right;
	position: relative;
}

.listing-header .listing-title h1 {
	color: black !important;
}
/*===================== 
	list styles 
=======================*/
ul.list {
	margin: 0;
	padding: 0 0 5% 7%;
}

ul.list li {
	font-size: 16px;
}

/*===================== 
	header styles 
=======================*/
header {
	width: 100%;
	margin: 0;
	padding: 30px 0;
	background: #fff;
	text-align: center;
}

.headerwrap {
	width: 96%;
	max-width: 1250px;
	margin: 0 auto;
}

.logo {}

.logo img {
	margin: 0 auto !important;
}

.address {
	text-align: right;
	padding-top: 10px;
}

.address h2 {
	padding: 0;
	color: #000;
}

.address h5 {
	padding: 0;
	color: #000;
}

.headerbottom {
	height: 10px;
	background: url(../siteart/navbottom.jpg) center center repeat;
}



/*===================== 
	nav styles 
=======================*/
/* see menumaker.css for additional nav styles */


/*===================== 
	content styles 
=======================*/
.wrapper {
	width: 98%;
	max-width: 1250px;
	margin: 0 auto;
	padding: 0;
}

.container {
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
}

.icons {
	width: 30%;
	display: inline-block;
	margin: 1%;
	margin-bottom: 10px;
	vertical-align: top;
	position: relative;
	overflow: hidden;
	background-color: #ed1c24;
	color: white;
	text-align: center;
	border: white 5px solid;
	box-sizing: border-box;
	border-radius: 20px;
	height: 220px;
	/*max-width: 220px;*/
	min-width: 200px;
	padding-top: 20px;
}


.catslider {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 100;
	top: -300px;
	background: url(../siteart/black2.png) repeat;
}

.catslider a {
	display: block;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	font-size: 14px;
	padding: 10px;
}

.icons:hover .catslider {
	top: 0;
	-moz-transition: 0.3s all ease;
	-webkit-transition: 0.3s all ease;
	-ms-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
	transition: 0.3s all ease;
}

.catslider a:hover {
	background: #ed1c24;
	color: #fff;
}

#equip-links {
	text-align: center;
}




.icons:hover {
	background-color: #222;
}

#agcat {
	background-image: url(../siteart/icon-ag.png);
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: 70%;
}

#conscat {
	background-image: url(../siteart/icon-construction.png);
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: 70%;
}

#truckcat {
	background-image: url(../siteart/icon-truck.png);
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: 70%;
}

.equipment-links a div:hover {
	background-size: 90%;
}

/*===================== 
	slideshow styles 
=======================*/
.slides {
	background: url(../siteart/concrete_wall.png) repeat;
	padding: 0;
	color: #fff;
	position: relative;
}

.cycle-slideshow {
	box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, .75);
}

.cycle-slideshow img {
	width: 100%;
}

/* pager */
.cycle-pager {
	text-align: center;
	width: 100%;
	z-index: 500;
	position: absolute;
	bottom: 10px;
	overflow: hidden;
	display: none;
}

.cycle-pager span {
	font-family: arial;
	font-size: 50px;
	width: 16px;
	height: 16px;
	display: inline-block;
	*zoom: 1;
	*display: inline;
	color: #ddd;
	cursor: pointer;
	transition: all .5s ease-in-out;
}

.cycle-pager span.cycle-pager-active {
	color: #2885b3;
}

.cycle-pager>* {
	cursor: pointer;
}



/*===================== 
	banner styles 
=======================*/


/*===================== 
	Form styles 
=======================*/
.consignform {
	width: 100%;
	margin: 0 auto;
}

#formpage {
	background: rgba(0, 0, 0, 0.5);
	padding: 2% 5%;
	border: 2px solid #fff;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

#formpage strong,
#formpage span {
	color: #fff;
}

#formpage h3 {
	text-align: left;
}

form {
	margin: 0 0 0;
}

label {
	display: block;
	font-size: 16px;
	padding-top: 4%;
	width: 100%;
}

input {
	font-family: 'Open Sans', Arial, sans-serif;
	border: #999999 solid 1px;
	border-radius: 2px;
	padding: 1%;
	font-size: 14px;
	width: 98%;
	margin-bottom: 10px;
}

input:focus {
	border: #2885b3 solid 1px;
}

input.button2 {
	display: block;
	width: 50%;
	margin: 0 auto 5% auto;
	border: #277e32 solid 1px;
	background-color: #38b749;
	color: #fff;
	border-radius: 2px;
}

input.button2:hover {
	background-color: #277e32;
	cursor: pointer;
}

select {
	font-family: 'Open Sans', Arial, sans-serif;
	border: #999999 solid 1px;
	padding: 1%;
	font-size: 14px;
	width: 98%;
}

textarea {
	font-family: 'Open Sans', Arial, sans-serif;
	border: #999999 solid 1px;
	border-radius: 2px;
	padding: 1%;
	font-size: 14px;
	width: 98%;
}

input[type="checkbox" i] {
	width: 20px;
}

.sendbutton {
	background: #ed1c24;
	border: 2px solid #fff;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	height: 40px;
	color: #fff;
}

.sendbutton:hover {
	cursor: pointer;
	background: #fff;
	border: 2px solid #ed1c24;
	-webkit-transition: all .3s ease;
	-ms-transition: all .3s ease;
	transition: all .3s ease;
	color: #ed1c24;
}


/*===================== 
	welcome styles 
=======================*/
.padit {
	padding: 2% 0;
}

.welcome {
	text-align: left;
	border-bottom: 6px solid #ed1c24;
}

.welcome h1 {
	text-align: center;
	padding: 0;
	line-height: 40px;
}

.welcome h3 {
	color: #bbbbbb;
	text-align: center;
	padding-top: 15px;
}

.scrolling {
	display: block;
	background: url(../siteart/scrollingbg.jpg) repeat;
	padding: 30px 0;
	border-top: #ffcd07 4px solid;
}

.read {
	background: #ed1c24;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	width: 30%;
	float: right;
	text-align: center;
	border: 5px solid #fff;
	padding: 5px;
}

.read h3 {
	padding: 0;
	color: #fff;
	font-size: 20px;
}

a:hover .read {
	background: #fff;
	border: 5px solid #ed1c24;
	-webkit-transition: all .3s ease;
	-ms-transition: all .3s ease;
	transition: all .3s ease;
}

a:hover .read h3 {
	color: #ed1c24;
}

.owners {
	text-align: left !important;
}

/*===================== 
	quicklink styles 
=======================*/
.linkbox {
	position: relative;
	display: block;
	height: 100px;
	margin: 2% auto;
	background: #ed1c24;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	width: 90%;
	float: left;
	text-align: center;
	border: 5px solid #fff;
	overflow: hidden;
}

a .linkbox {
	color: #fff;
	-webkit-transition: all .3s ease;
	-ms-transition: all .3s ease;
	transition: all .3s ease;
}

a:hover .linkbox {
	color: #000;
	background: #fff;
	border: 5px solid #ed1c24;
}

a:hover .title {
	color: #ed1c24 !important;
}

.graphic,
.title {
	float: left;
}

.graphic {
	height: 70px;
	width: 25%;
	position: absolute;
	top: 50%;
	left: 5%;
	transform: translate(-0%, -50%);
	-webkit-transform: translate(-0%, -50%);
	-ms-transform: translate(-0%, -50%);
}

.title {
	color: #fff !important;
	font-size: 18px;
	width: 60%;
	padding: 0;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(-0%, -50%);
	-webkit-transform: translate(-0%, -50%);
	-ms-transform: translate(-0%, -50%);
	padding: 0 !important;
}

#lens {
	background: url(../siteart/magnify.png) center center no-repeat;
	-moz-background-size: contain;
	-webkit-background-size: contain;
	background-size: contain;
}

#dollar {
	background: url(../siteart/cash.png) center center no-repeat;
	-moz-background-size: contain;
	-webkit-background-size: contain;
	background-size: contain;
}

#gavel {
	background: url(../siteart/gavel.png) center center no-repeat;
	-moz-background-size: contain;
	-webkit-background-size: contain;
	background-size: contain;
}

#news {
	background: url(../siteart/paper.png) center center no-repeat;
	-moz-background-size: contain;
	-webkit-background-size: contain;
	background-size: contain;
}

#finance {
	width: 30%;
	background: url(../siteart/dollar.png) center center no-repeat;
	-moz-background-size: contain;
	-webkit-background-size: contain;
	background-size: contain;
}



#other {
	background: url(../siteart/other.png) center center no-repeat;
	-moz-background-size: contain;
	-webkit-background-size: contain;
	background-size: contain;
}

a:hover .linkbox #other {
	background: url(../siteart/otheractive.png) center center no-repeat;
	-moz-background-size: contain;
	-webkit-background-size: contain;
	background-size: contain;
}

a:hover .linkbox #lens {
	background: url(../siteart/magnifyactive.png) center center no-repeat;
	-moz-background-size: contain;
	-webkit-background-size: contain;
	background-size: contain;
}

a:hover .linkbox #dollar {
	background: url(../siteart/cashactive.png) center center no-repeat;
	-moz-background-size: contain;
	-webkit-background-size: contain;
	background-size: contain;
}

a:hover .linkbox #gavel {
	background: url(../siteart/gavelactive.png) center center no-repeat;
	-moz-background-size: contain;
	-webkit-background-size: contain;
	background-size: contain;
}

a:hover .linkbox #news {
	background: url(../siteart/paperactive.png) center center no-repeat;
	-moz-background-size: contain;
	-webkit-background-size: contain;
	background-size: contain;
}

a:hover .linkbox #finance {
	background: url(../siteart/dollar_active.png) center center no-repeat;
	-moz-background-size: contain;
	-webkit-background-size: contain;
	background-size: contain;
}

.equipment {
	max-width: 100%;
	max-height: 100%;
}

.title:hover .conditionslide {
	bottom: 0;
}

.linkbox:hover .conditionslide {
	bottom: 0;
}

.conditionslide {
	background: #bbb;
	width: 100%;
	padding: 0 0 5px 0;
	position: absolute;
	z-index: 999;
	bottom: -110px;
	left: 0;
	-webkit-transition: .5s all ease;
	-moz-transition: .5s all ease;
	-o-transition: .5s all ease;
	transition: .5s all ease;
}

.conditionslide a {
	display: block;
	text-align: center;
	color: #fff;
	padding: 7px 0;
	font-size: 14px;
}

.conditionslide a:hover {
	color: #fff;
	background: #ed1c24;
	border-top: 1px solid #fff;
}

#salelink {
	width: 60%;
}

.sitemap {
	background: url(../siteart/escheresque_ste.png) repeat;
	color: #fff;
}

.sitemap p {
	line-height: 2em;
}

.sitemap i {
	font-size: 42px;
	margin-right: 20px;
}

/*===================== 
	contact styles 
=======================*/
.contactinfo {
	padding: 0 !important;
}

.phonenumber:hover {
	color: #ccc;
}

/*--------Scrolling Inventory--------*/
#invwrap {
	margin: 2% auto;
}

.cf {
	background: #fff;
}

.hosted-content h1 {
	color: #ed1c24 !important;
	font-size: 24px !important;
}

.hosted-content h2 {
	font-size: 22px !important;
}

.hosted-content h3 {
	font-size: 20px !important;
}

.hosted-content .listings-wrapper .listings-list .listing-banner {
	background: #000 !important;
}

.attachment-search .search-checkboxes label .row input[type="checkbox"] {
	-moz-appearance: checkbox !important;
	-webkit-appearance: checkbox !important;
	-ms-appearance: checkbox !important;
	-o-appearance: checkbox !important;
	appearance: checkbox !important;
}

.invfilters {
	width: 100%;
	margin: 1% auto;
	text-align: center;
}

.filterbutton {
	padding: 5px;
	display: inline-block;
	*zoom: 1;
	*display: inline;
	width: 28%;
	margin: 0.5%;
	background: #ed1c24;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	border: 5px solid #fff;
}

.filterbutton:hover {
	background: #fff;
	border: 5px solid #ed1c24;
	-moz-transition: 0.3s all ease;
	-webkit-transition: 0.3s all ease;
	-ms-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
	transition: 0.3s all ease;
}

.filterbutton:hover h6 {
	color: #ed1c24;
}

.mobilecontainer {
	overflow: hidden;
	/* must have this property for mobile phones and tablet display! */
	width: 100%;
	margin: 0 auto;
	height: 92px;
	padding: 0;
	background: #000;
}

iframe.banner {
	width: 100%;
	height: 92px;
	background: #000
}


/*  SECTIONS  */
.section {
	clear: both;
	padding: 0px;
	margin: 0px;
}

/*  COLUMN SETUP  */
.col {
	display: block;
	float: left;
	margin: 1% 0 1% 2.0%;
}

.col:first-child {
	margin-left: 0;
}

/*  GROUPING  */
.group:before,
.group:after {
	content: "";
	display: table;
}

.group:after {
	clear: both;
}

.group {
	zoom: 1;
	/* For IE 6/7 */
}


/*  GRID OF TWELVE  */
.span_12_of_12 {
	width: 100%;
}

.span_11_of_12 {
	width: 91.5%;
}

.span_10_of_12 {
	width: 83%;
}

.span_9_of_12 {
	width: 74.5%;
}

.span_8_of_12 {
	width: 66%;
}

.span_7_of_12 {
	width: 57.5%;
}

.span_6_of_12 {
	width: 49%;
}

.span_5_of_12 {
	width: 40.5%;
}

.span_4_of_12 {
	width: 32%;
}

.span_3_of_12 {
	width: 23.5%;
}

.span_2_of_12 {
	width: 15%;
}

.span_1_of_12 {
	width: 6.5%;
}


/*  GRID OF FOUR  */
.span_4_of_4 {
	width: 100%;
}

.span_3_of_4 {
	width: 74.5%;
}

.span_2_of_4 {
	width: 49%;
}

.span_1_of_4 {
	width: 23.5%;
}

/*  GRID OF THREE  */
.span_3_of_3 {
	width: 100%;
}

.span_2_of_3 {
	width: 66.13%;
}

.span_1_of_3 {
	width: 32.26%;
}

.hosted-content .col {
	margin: 0 0 0 0 !important;
}



/*===================== 
	footer styles 
=======================*/

.pagebottom {
	background: #fff;
	padding: 20px 0 20px 0;
	border-top: #000 4px solid;
}

.pagebottom p {
	color: #fff;
	font-size: 14px;
}

.pagebottom a {
	color: #fff;
}

.pagebottom a:hover {
	color: #000;
}

.bottomlinks {
	text-align: center;
	padding: 1% 0;
}

.bottomlinks a {
	color: #ed1c24;
	margin: 5px;
	display: inline-block;
	*zoom: 1;
	*display: inline;
	font-size: 14px;
}

footer {
	margin: 0 auto;
	width: 100%;
	display: none;
}

a.footerlink:link,
a.footerlink:visited,
a.footerlink:active {
	text-decoration: none;
	font-size: 11px;
	color: #ccc;
	border-bottom: none;
}

a.footerlink:hover {
	text-decoration: none;
	font-size: 11px;
	color: #fff;
}

.footertext {
	font-size: 11px;
	color: #666;
}

.smallfootertext {
	font-size: 11px;
	color: #666;
}

.divfooter {
	text-align: center;
	margin: 0 auto;
}

.atfooter {
	float: right;
	margin: 2% auto;
}

.atfooter img {
	transform: scale(0.80);
}

/*===================== 
	Inventory styles 
=======================*/


#inv {
	padding: 5% 0;
}

#inv *:not(.fa):not(.far):not(.fas):not(.fab):not(.material-icons) {
	font-family: bahnschrift, urw-din, sans-serif !important;
}

/* Reset font, ignore icons */

.listing-top-right a,
.lower-detail-data-left button,
.send-email-btn,
.media-buttons a,
.media-buttons button,
.faceted-search,
.listing-dealer-info a,
.view-listing-details-link,
.main-detail-data .contact-options a,
.fin-calc-btn-mobile,
.selected-facet,
.page-nav,
.apply-button,
.back-button,
.calculator-btn,
.mobile-done-button {
	-moz-border-radius: 5px !important;
	-o-border-radius: 5px !important;
	-webkit-border-radius: 5px !important;
	border-radius: 5px !important;
}


.faceted-search-content .faceted-section-box .faceted-option-checkbox-container label input {
	margin: 2px 3px 3px 4px;
}

.faceted-text-input-searchType .search-type input[type=checkbox],
.faceted-text-input-searchType .search-type input[type=radio] {
	margin: 0px 3px 0px 6px;
}


.bread-crumbs-heading .return-links .return-links-link span,
#no-compare-listings,
.bread-crumbs-heading .return-links .return-links-link i {
	color: #ee3124 !important;
}


.hosted-content .attachment-search .search-checkboxes label .row {
	margin-left: 0 !important;
	margin-right: 0 !important;
	margin-bottom: 0px !important;
}

.view-listing-details-link,
.selected-facet,
.view-listing-details-link,
.buy-now-link,
.check-availability-link,
.email-seller-link,
.offer-btn,
.buy-btn,
.dealer-phone-mobile,
.offer-btn-mobile,
.send-email-btn-mobile,
.send-wholesale-email-btn-mobile,
.fin-calc-btn-mobile,
.mobile-breadcrumb,
.main-detail-data .contact-options a,
button.g-recaptcha.button,
.page-nav,
.apply-button,
.mobile-done-button,
.dealer-btns-bottom a {
	background: #ee3124 !important;
}

.selected-facet,
.dealer-phone-mobile,
.offer-btn,
.offer-btn-mobile,
.fin-calc-btn-mobile,
.send-wholesale-email-btn-mobile,
.send-email-btn-mobile,
.buy-now-link,
.view-listing-details-link,
.main-detail-data .contact-options a,
button.g-recaptcha.button,
.page-nav,
.apply-button,
.mobile-done-button {
	border: solid 1px #ee3124 !important;
	transition: ease all 0.2s !important;
}

.selected-facet:hover,
.dealer-phone-mobile:hover,
.offer-btn:hover,
.offer-btn-mobile:hover,
.fin-calc-btn-mobile:hover,
.send-wholesale-email-btn-mobile:hover,
.send-email-btn-mobile:hover,
.buy-now-link:hover,
.view-listing-details-link:hover,
.main-detail-data .contact-options a:hover,
button.g-recaptcha.button:hover,
.page-nav:hover,
.apply-button:hover,
.mobile-done-button:hover,
.dealer-btns-bottom a:hover {
	background: #fff !important;
	color: #ee3124 !important;
}

.check-availability-link,
.email-seller-link,
.video-chat-link,
.faceted-search,
.faceted-show-all-btn,
.cs-btns a,
.calculator-btn {
	background: #000 !important;
	border: solid 1px #000 !important;
	transition: ease all 0.2s !important;
}

.check-availability-link:hover,
.email-seller-link:hover,
.video-chat-link:hover,
.faceted-search:hover,
.faceted-show-all-btn:hover,
.cs-btns a:hover,
.calculator-btn:hover {
	background: #fff !important;
	color: #000 !important;
}

.list-content .list-title .list-listings-count,
.list-content .list-main-section .list-container .list-listing .listing-top .listing-top-left .listing-main-stats .price,
#parts-content .parts-top-section .parts-title-and-breadcrumbs .parts-title .parts-listings-count,
#inv .error-message,
#inv .info,
.detail-content .detail-main-body .main-detail-data .detail-price,
.detail-content .search-results,
.list-content .list-top-section .listing-option-bar .list-listings-count,
.detail-price,
.compare-price,
.compare-title,
.dealer-contact__header .dealer-contact__heading {
	color: #000 !important;
}

/* heading */
.list-content .list-title .list-title-text,
.detail-content-mobile .detail-main-body .detail-mobile-top .detail-title,
.main-detail-data .detail-title,
.parts-title-text {
	padding-left: 4px;
}

.detail-content .detail-additional-data .data-row .data-label,
.detail-content-mobile .detail-additional-data .data-row .data-label,
.part-detail-additional-data .data-label,
.part-detail-content .detail-contact-bar {
	background: #000 !important;
}

.detail-content-mobile .detail-contact-bar .contact-bar-btn,
.list-page-nav,
.contact-options a {
	background: #000 !important;
}

.list-main-section .contact-options a {
	border: #000 solid 1px !important;
	transition: ease all 0.2s !important;
}

.list-main-section .contact-options a:hover {
	background: transparent !important;
	color: #000 !important;
}

.detail-content .dealer-info .phone-and-email .send-email-btn,
.list-content .list-listing-mobile .dealer-phone-container a,
.back-button {
	border-color: #000 !important;
	color: #000 !important;
}

.material-icons,
.collapsible-content a {
	color: #fff !important;
}

#parts-content .parts-bottom-section .parts-list-view .parts-list-content .parts-listing-container .parts-listing-column .parts-button.view-details {
	background-color: #000 !important;
}

.detail-content-mobile .detail-main-body .main-detail-data .dealer-phone-mobile-container .dealer-phone-mobile {
	margin-right: 0 !important;
}

.detail-content .detail-main-body .main-detail-data .details-fin-calc .detail-btn-calc {
	height: 48px !important;
	box-sizing: border-box;
}


input[type=checkbox] {
	background-color: initial;
	cursor: default;
	appearance: auto;
	box-sizing: border-box;
	margin: 3px 3px 3px 4px;
	padding: initial;
	border: initial;
}

.list-content .listing-portion-title,
.list-content .list-listing .listing-top-right .listing-dealer-info .dealer-name,
.list-content .listing-bottom .listing-description-text,
.ts-modal-title,
.des-modal-title,
.contact-info-heading h2,
.detail-additional-data h3,
.list-title-text,
.no-listings-found,
.detail-title,
.fin-calc p,
.dealer-info h3,
.additional-information h4,
.disclaimer {
	color: #000;
}


.faceted-search-content .faceted-section-box .faceted-option-checkbox-container label {
	font-size: inherit;
	padding-top: 0px;
	width: auto;
}




/*===================== 
	Responsive styles 
=======================*/

@media screen and (max-width: 1260px) {
	.entrywindow img {
		transform: scale(0.85);
	}

	#footerleft,
	#footerright {
		width: 100%;
		display: block;
		margin: 2% auto;
		text-align: center;
		float: none;
	}

	.bottomlinks {
		text-align: center;
	}

	.pagebottom {
		padding: 5px 0;
	}

	.atfooter {
		float: none;
		text-align: center;
		margin: 10px auto;
	}

	#footerleft img,
	.atfooter img {
		margin: 0 auto !important;
	}
}

@media screen and (max-width: 1100px) {
	.linkbox {
		width: 90%;
	}

	.title {
		font-size: 16px;
	}
}

@media screen and (max-width: 1000px) {

	.capital,
	.auctions {
		padding: 40% 0;
	}

	.entrybutton {
		width: 60%;
	}

	.bottomlinks a {
		font-size: 14px;
	}

	.graphic {
		width: 20%;
		left: 5%;
	}

	.title {
		right: 5%;
		font-size: 15px;
	}

	.read {
		width: 40%;
		margin: 2% auto;
	}

	.filterbutton span {
		display: block;
	}
}

@media screen and (max-width: 900px) {
	.landingat {
		padding-right: 0;
	}

	.landingat img {
		transform: scale(0.80);
	}

	h1 {
		font-size: 30px;
	}

	h2 {
		font-size: 26px;
	}

	h3 {
		font-size: 22px;
	}

	h4 {
		font-size: 18px;
	}

	h5 {
		font-size: 16px;
	}

	p {
		font-size: 16px;
	}

	.logo,
	#footerleft img {
		transform: scale(0.85);
	}

	.bottomlinks a {
		margin: 5px 8px;
	}

	.linkbox {
		width: 95%;
		height: 90px;
	}

	#salelink {
		width: 70%;
	}

	.title {
		font-size: 14px;
		right: 5%;
	}

	.conditionslide a {
		font-size: 13px;
		padding: 6px 0;
	}

	.read h3 {
		font-size: 18px;
	}

	.atlogo {
		width: 180px;
	}
}

@media screen and (max-width: 800px) {
	.entrybutton h3 {
		font-size: 20px;
	}

	.logo {
		float: none;
		text-align: center;
	}

	.linkbox {
		height: 75px;
	}

	.title {
		font-size: 14px;
		width: 65%;
		right: 2%;
	}

	.conditionslide a {
		font-size: 13px;
		padding: 4px 0;
	}

	.hosted-content h1 {
		font-size: 24px;
	}

	.financebutton {
		width: 23%;
	}

	.hosted-content h1 {
		font-size: 20px !important;
	}

	.hosted-content h2 {
		font-size: 18px !important;
	}

	.hosted-content h3 {
		font-size: 16px !important;
	}

	.bottomlinks a {
		font-size: 13px;
	}
}

@media screen and (max-width: 750px) {

	.capital,
	.auctions {
		padding: 21% 0;
	}

	.icons {
		width: 100%;
	}

	.equipment-links a div:first-child {
		background-size: 30%;
		height: 180px;
	}
}

@media screen and (max-width: 700px) {
	.entrybutton h3 {
		font-size: 18px;
	}

	#equip-links {
		width: 70%;
		margin-left: 15%;
		margin-right: 15%;
	}

	.title {
		font-size: 14px;
	}

	#linkbuttons,
	#welcometext {
		display: block;
		float: none;
		text-align: center;
	}

	#linkbuttons {
		width: 100%;
		margin: 0 auto;
	}

	.linkbox {
		width: 29%;
		margin: 1%;
		display: inline-block;
		*zoom: 1;
		*display: inline;
		float: none;
		vertical-align: top;
	}

	#salelink {
		display: none;
	}

	#bottomrow {
		margin-bottom: 4%;
	}

	#bottomrow img {
		margin-top: 8px;
	}

	#welcometext,
	#contactblock {
		width: 96%;
		margin: 2%;
	}

	#welcometext h2,
	#welcometext p,
	#linkbuttons h2,
	#linkbuttons p {
		text-align: left;
	}

	.read h3 {
		font-size: 16px;
	}

	.filterbutton {
		width: 43%;
		margin: 1%;
	}

	.conditionslide a {
		font-size: 11px;
	}
}

@media screen and (max-width: 600px) {
	.landingat img {
		transform: scale(0.70);
	}

	.entrybutton {
		width: 70%;
	}

	.title {
		font-size: 13px;
	}

	h1 {
		font-size: 26px;
	}

	h2 {
		font-size: 24px;
	}

	h3 {
		font-size: 20px;
	}

	h4 {
		font-size: 18px;
	}

	h5 {
		font-size: 16px;
	}

	p {
		font-size: 16px;
	}

	.linkbox {
		width: 40%;
	}

	#bottomrow img {
		margin-top: 3px;
	}

	.equipment-links a div:first-child {
		background-size: 32%;
		height: 160px;
	}

	.auctionlogos {
		text-align: center;
		display: block;
		float: none;
		margin: 0 auto;
	}

	.atlogo,
	.financebutton {
		float: none;
		display: inline-block;
	}

	.financebutton {
		width: 26%;
	}
}

/*  GO FULL WIDTH BELOW 480 PIXELS */
@media only screen and (max-width: 480px) {
	.col {
		margin: 4% 0 4% 0%;
	}

	.span_1_of_4,
	.span_2_of_4,
	.span_3_of_4,
	.span_4_of_4 {
		width: 100%;
	}

	.span_3_of_3,
	.span_2_of_3,
	.span_1_of_3 {
		width: 100%;
	}

	.span_1_of_12,
	.span_2_of_12,
	.span_3_of_12,
	.span_4_of_12,
	.span_5_of_12,
	.span_6_of_12,
	.span_7_of_12,
	.span_8_of_12,
	.span_9_of_12,
	.span_10_of_12,
	.span_11_of_12,
	.span_12_of_12 {
		width: 100%;
	}

	.auctions,
	.capital {
		width: 100%;
		display: block;
		float: none;
		padding: 30% 0;
	}

	.entrywindow img {
		transform: scale(0.70);
	}

	.landingat {
		float: none;
		margin: 4% 0 0 0;
		text-align: center;
	}

	h1 {
		font-size: 24px;
	}

	h2 {
		font-size: 22px;
	}

	h3 {
		font-size: 20px;
	}

	h4 {
		font-size: 18px;
	}

	h5 {
		font-size: 16px;
	}

	p {
		font-size: 15px;
	}

	.logo,
	#footerleft img,
	.atfooter img {
		transform: scale(0.75);
	}

	.slides {
		display: none;
	}

	.linkbox {
		width: 70%;
		float: none;
	}

	#linkbuttons {
		width: 100%;
	}

	#bottomrow {
		margin-bottom: 2%;
		position: relative;
	}

	#bottomrow img {
		margin-top: 0px;
		max-width: 85%;
		position: absolute;
		left: 5%;
		top: -3px;
	}

	.graphic {
		left: 10%;
	}

	.title {
		width: 55%;
	}

	.read {
		width: 50%;
	}

	.financebutton {
		width: 30%;
	}

	.filterbutton {
		width: 40%;
	}

	.filterbutton h6 {
		font-size: 12px;
	}
}

@media screen and (max-width: 447px) {
	.title {
		width: 70%;
		right: 0;
	}

	.read h3 {
		font-size: 14px;
	}

	.equipment-links a div:first-child {
		background-size: 30%;
		height: 130px;
	}

	.pagebottom {
		padding: 20px 0;
		text-align: center;
	}

	.divfooter {
		text-align: center;
	}
}

@media screen and (max-width: 414px) {
	.pagebottom a {
		display: block;
		margin: 8px auto;
	}

	.title {
		width: 60%;
	}

	.graphic {
		left: 7%;
	}

	#bottomrow img {
		top: 2px;
		left: 2%;
	}

	.financebutton {
		width: 37%;
		margin: 8px 10px;
	}
}

@media screen and (max-width: 360px) {
	#bottomrow img {
		top: 7px;
		left: 2%;
	}

	.financebutton {
		width: 45%;
	}

	.filterbutton {
		width: 90%;
		margin: 2% auto;
	}
}