﻿/*===================== 
	Color information
	
	-
	-
	-
	-
		 
=======================*/
/*===================== 
	CSS reset/normalize 
=======================*/

/**Correct `block` display not defined in IE 8/9.**/
article,aside,details,figcaption,figure,footer,header,hgroup,
main,nav,section,summary {display: block;}
pre {white-space: pre-wrap;}
small { font-size: 80%;}


/*===================== 
	@Font-Face 
=======================*/


/*===================== 
	base styles 
=======================*/

html {
    font-family: Arial, sans-serif; /* 1 */
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-text-size-adjust: 100%; /* 2 */
	}

body {
    margin: 0;
	}

svg:not(:root) {overflow: hidden;/*reset*/}
	
/* clear floats */ 
.group:before,
.group:after {content: ""; display: table;} 
.group:after {clear: both;}
.group {zoom: 1;}	
.clear { clear: both;}
	
/*image replacement*/
.hide-text {
	text-indent:  100%;
	white-space:  nowrap;
	overflow:  hidden;
	}	

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
	border-style: solid;
    height: 0;
	} 

img { border: 0;} 
	
/*===================== 
	typography 
=======================*/

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	}
	h1 {font-size: 2em;}

p {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	margin: 0;
}

	
h1 {
	font-family: 'Roboto', sans-serif;
	font-size: 30px;
}
h2 {
	font-family: 'Roboto', sans-serif;
	font-size: 26px;
}
h3 {
	font-family: 'Roboto', sans-serif;
	font-size: 22px;
}
h4 {
	font-family: 'Roboto', sans-serif;
	font-size: 20px;
}
h5 {
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
}
h6 {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
}

.white {color: #FFFFFF;}
.yellow {color: #FFF200;}
.gray {color: #BCBCBC;}

.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;}
.italic {font-style: italic;}



/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/
	}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/
    color: #aaa; 
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		color: #ccc;
		}  




/*===================== 
	nav styles 
=======================*/

nav.primary {
	padding:0;
	display:block;
	margin:0 auto;
	text-align: center;
    background-color: #000;
}

nav ul {
	padding:0;
	margin:0;
}

nav ul li {

}

nav > ul > li {
	display:inline-block;
	list-style-type:none; 
	padding: 12px 0px 10px 0px;
}

nav ul li a {
	font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .75px;
    color: #fff!important;
    text-transform: uppercase;
	padding: 13px 15px 12px 15px;
}	
			
nav ul li a:hover {
	background-color: #fff200;
	color: #000!important;
}


/* Appearance of the sub-level links */

nav.primary ul li li a { 
	line-height: ;
	color: ;
	text-align:;
	font-size: ;
	font-weight:;
	}
	
nav.primary ul li li a:hover { 
	background-color: transparent;
	color: #fff200!important;
	}
	
nav.primary ul li li:hover { 
	}
	
	
/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too much */
nav.primary ul ul {
	display: none;
    position: absolute; 
	background-color: #000;
    margin-top: 10px;
    text-align: left;
    padding: 5px;
}
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: 15px 0;
	width:100%;
	padding-left: ;
	padding-right: ;
}

.dropdown_arrow {
	display: inline-block !important;
}

.dropdown_style {
	font-size: ;
	font-weight: ;
}


/******** End of primary Nav ***************/


/*===================== 
	mobile nav
=======================*/

#menu-button{ /* initially will need to be hidden */
	display: block;
	font-size: 32px;
	width:100%;
	position: relative;
	z-index: 400;/* needs to be lower than nav.mobile, adjust as needed */
	padding: ;
	background: #000;
	border-bottom: ;
	text-align: right;
	min-height: 0 !important;
	}
	#menu-button a{
		 color:#fff;
		 text-decoration: none;
		 text-align: right !important;
	  }

nav.mobile {
	display:block;
	position: fixed;
	top: 0;
	left: -250px;
	width: 250px;
	height: 100%;
	background: #000;
	z-index: 500; /* needs to be higher than #menu-button, adjust as needed */
	overflow:auto;
}
nav.mobile h3 { /* Menu header styles */
	position: relative;
	padding: 12px 10px;
	color: #fff;
	font-size: 1.2em;
	font-weight: 400;
	border-bottom: 4px solid #222;
}
nav.mobile .menu-toggle { /* Menu close button */
	position: absolute;
	top: 12px;
	right: 10px;
	display: inline-block;
	padding: 6px 9px 5px;
	font-family: Arial, sans-serif;
	font-weight: 700;
	line-height: 1;
	background: #222;
	color: #999;
	text-decoration: none;
	vertical-align: top;
}
.menu-toggle {
	text-align: right;
	font-size: 28px;
	color: #000;
}

.menu-toggle a:hover {
	color: #000 !important;
}

.close_mobile {
	font-size: 26px !important;
	font-weight: 900;
	text-align: right;
}

nav.mobile .menu-toggle:hover { /* Menu close button on hover */
	color: #fff;
}
nav.mobile ul {
	list-style: none;
	font-weight: 300;
	margin:0;
	padding:0;
}
nav.mobile ul li {
	padding: 0px;
}
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 {
	background: transparent;
	color: #fff200 !important;
}

nav.mobile ul li li {
	margin-left: 10px;
}

nav.mobile ul li li a { /* appearance of the sub-level links */
	position: relative;
	display: block;
	padding: 0px 10px 0px 15px;
	color: #000;
	text-decoration: none;
	text-transform: none !important;
}
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: 1200px;
	display: block;
	margin: auto;
	padding: 20px 0px;
}
.header-logo {
	margin-bottom: 20px;
	max-width: 350px;
    width: 100%;
}
.header-contact-wrap {
	text-align: right;
	margin-top: 40px;
}
.header-phone {
	display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: .25px;
    color: #000!important;
}
.header-phone:hover {
	color: #bcbcbc!important;
}
.header-fax {
	display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .25px;
    color: #000!important;
	margin-top: 10px;
}
.header-fax:hover {
	color: #bcbcbc!important;
}


/*===================== 
	homepage styles 
=======================*/
.hero-bkgd {
	background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url("/siteart/equipment-hero.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.hero-text {
	max-width: 1200px;
    display: block;
    margin: 150px auto;
    padding: 20px;
}
.hero-btn {
	display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    background-color: #fff;
    color: #000;
    border: 2px solid #fff;
    padding: 10px 30px 8px 30px;
    margin-top: 20px;
}
.hero-btn:hover {
	background-color: transparent;
	color: #fff;
}
.btn-wrap {
	max-width: 1200px;
	display: block;
	margin: auto;
}
.inv-button {
	background-color: transparent;
    color: #000;
    border: 2px solid #000;
    display: block;
    margin: 50px auto;
    padding: 0px;
}
.inv-button:hover {
	border: 2px solid #fff200;
}
.inv-image {}
.inv-text {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
	display: block;
    padding: 15px 0px;
}
.first-row {}
.second-row {}

.search-bkgd {
	background-color: #000000;
}
.search-wrap {
	max-width: 1200px;
	display: block;
	margin: 50px auto;
}
.search-bar {
	background-color: #ffffff;
    color: #000000;
    border: none;
    margin: 0;
    padding: 8px 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
	width: 80%;
}
.search-btn {
	background-color: #bcbcbc;
	color: #000000;
    border: none;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
	width: 19%;
	padding: 8px;
}
.search-btn:hover {
	color: #fff;
}
.search-header {
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	padding-bottom: 6px;
	border-bottom: 2px solid #fff200;
	max-width: 360px;
	display: block;
	margin: auto;
	margin-bottom: 30px;
	
}
.map-wrap {
	max-width: 1200px;
	display: block;
	margin: 50px auto;
}

	
/*===================== 
	inventory styles 
=======================*/
/*-------- PADDING AND SUCH --------*/
.detail-content {
    padding: 3.145833VW 0;
}

.list-content {
    max-width: 1300px !important;
}


@media only screen and (max-width: 785px) {
    .body-wrapper {
        padding: 0 25px;
    }
}
/*------------------------------ General Listings Page---------------------------------*/

/*----Page Background Color----*/
.body-content .body-wrapper {
    /* background: var(--neutral2) !important; */
}

/*----Sort By----*/
.list-content .list-top-section .listing-option-bar .list-sort-order .sort-by-dropdown-container .bold {
    color: #000 !important;
}

/*----Email and Print Buttons----*/
.media-buttons button {
    background: #bcbcbc !important;
    color: #000 !important
}

.media-buttons button:hover {
    background: #949494 !important;
    color: #fff !important;
}

/*----Listing Background Color & Text Color Change----*/
.list-container .list-listing {
    background: #fff !important;
    color: #000 !important;
}

/*---Sidebar Background Color & Text Color----*/
.list-content .faceted-search-content {
    background: #fff !important;
    color: #000 !important
}

.faceted-search-content .faceted-section-box .faceted-view-more-btn {
    background: #bcbcbc !important;
    color: #000 !important;
}

/*---Sidebar Heading Background Color----*/
.faceted-search-content .faceted-section-head {
    background: #bcbcbc !important;
}

/*----Filter button color change------*/
.selected-facet {
    background: #bcbcbc !important;
    color: #000 !important;
}

input[type="submit"] {
    background: #949494 !important;
}

button[type="submit"] {
    background: #949494 !important;
}

.btn {
    background: #949494 !important;
}

.button {
    background: #949494 !important;
}

/*----View Details Button----*/
.view-listing-details-link {
    background: #bcbcbc !important;
    color: #000 !important;
}

.view-listing-details-link:hover {
    color: #fff !important;
    background: #949494 !important;
}

/*----Email Seller Button----*/
.email-seller-link {
    background-color: transparent!important;
    border: 1px solid #949494!important;
}

.email-seller-link:hover {
    background: #bcbcbc !important;
    color: #000 !important;
}

/*---Page Title----*/
.list-content .list-title .list-title-text {
    color: #000 !important;
}

/*----Listings # showing text----*/
.list-content .list-title .list-listings-count {
    color: #000 !important;
}

/*---Description text color (if different than body text color)----*/
.listing-description-text {
    color: #000 !important;
}

/*----Price----*/
.listing-main-stats .price {
    color: #000 !important;
}

/*---Listings Count----*/
.list-content .list-top-section .listing-option-bar .list-listings-count {
    color: #000 !important;
}

/*---Any Messages----*/
.info {
    color: #000 !important
}

/*------------------------------Listings Details Page---------------------------------*/
/*----Details Page Header----*/
.main-detail-data .detail-title {
    color: #000 !important
}

/*----Make an Offer Button----*/
.main-detail-data .offer-btn {
    background: #bcbcbc !important;
    color: #000 !important;
}

.main-detail-data .offer-btn:hover {
    background: #949494 !important;
    color: #fff !important;
}

/*----Details----*/
.detail-content .detail-main-body .main-detail-data {
    background: #fff !important;
}

/*----Details Price----*/
.detail-price {
    color: #000 !important;
}

.detail-content .detail-main-body .main-detail-data .detail-btn-calc:hover {
    background: #bcbcbc !important;
    color: #000 !important;
}

.detail-content .detail-main-body .main-detail-data .detail-btn-calc {
    background: #949494 !important;
}

.detail-content .detail-main-body .main-detail-data .detail-btn-calc p {
    color: #fff !important;
}

/*----Contact Information----*/
.detail-content .dealer-info {
    color: #000 !important
}

.detail-content .dealer-info .field-name {
    color: #000 !important;
}

.detail-content .dealer-info .field-value {
    color: #000 !important;
}

/*----Send Email----*/
.detail-content .dealer-info .phone-and-email .send-email-btn {
    border: none !important;
    background: #949494 !important;
    color: #fff !important;
}

/*----Spec Title Background & Color ----*/
.detail-content .data-row .data-label {
    background: #949494 !important;
    color: #fff !important;
}

/*----Breadcrumb - Search Results button----*/
.detail-content .search-results {
    color: #000 !important;
}

/*----Breadcrumb Path above Searach Results----*/
.breadcrumbs .breadcrumbs-element {
    color: #000 !important;
}

/*----Background color of widgets (if it matches the page background)----*/
.listing-widgets a {
    background: #bcbcbc !important;
    color: #000 !important
}

.listing-widgets a:hover {
    color: #fff !important;
}

.listing-widgets a:hover {
    background: #fff200 !important;
}

/*----All Details (e.g. year, manu, etc.)----*/
.detail-additional-data * {
    color: #000 !important;
}
.detail-content .detail-additional-data .data-row .data-value {
    color: #000 !important;
}

.detail-content .detail-additional-data .data-row .data-value {
    background: #fff !important;
}

/*----Commercial Financing Legal Info----*/
.legal-text-content {
    color: #000 !important;
}

/*---All Other Links----*/
.container.body-content a {
    color: #000 !important;
}

/*---Return to Listings----*/
.mobile-breadcrumb {
    background-color: #fff !important;
}


/*------------------------------Parts Page---------------------------------*/
#parts-content {
    padding: 2.145833VW 0;
}

#parts-content .parts-bottom-section .parts-list-view .parts-list-content .error-message {
    color: #000 !important;
}

.criteria-header {
    color: #000 !important;
}

#parts-content .parts-bottom-section .parts-list-view .parts-search-content .parts-search-window .parts-search-form .parts-radio {
    color: #000 !important;
}

#parts-content .parts-bottom-section .parts-list-view .parts-list-content .parts-listing-container .parts-listing-column .parts-button.view-details {
    background: #949494 !important;
}

#parts-content .parts-bottom-section .parts-list-view .parts-list-content .parts-listing-container {
    background: #fff !important;
}

#part-detail-content .part-detail-body .part-body-data .part-main-data {
	background-color: #FFFFFF!important;
}

#part-detail-content .part-detail-additional-data .data-row .data-label {
	background: #949494 !important;
    color: #fff !important;
}

#part-detail-content .part-detail-additional-data .data-row .data-value {
	background-color: #FFFFFF!important;
}

#part-detail-content .part-detail-body .part-body-data .part-contact-info .part-contact-container .contact-button-container .send-email-btn {
	border: none !important;
    background: #949494 !important;
    color: #fff !important;
}

/*---Mobile Buttons----*/
.detail-content-mobile .detail-main-body .main-detail-data .dealer-phone-mobile-container .dealer-phone-mobile {
    background: #949494 !important;
    border: #000 !important;
}

.detail-content-mobile .detail-main-body .main-detail-data .buy-btn-mobile {
    background: #949494 !important;
    border: #000 !important;
}

.detail-content-mobile .detail-main-body .main-detail-data .offer-btn-mobile {
    background: #949494 !important;
    border: #000 !important;
}

.detail-content-mobile .detail-main-body .main-detail-data .send-email-btn-mobile {
    background: #949494 !important;
    border: #000 !important;
}

.detail-content-mobile .detail-main-body .main-detail-data .send-wholesale-email-btn-mobile {
    background: #949494 !important;
    border: #000 !important;
}

.detail-content-mobile .detail-contact-bar .contact-bar-btn {
    background: #949494 !important;
    border: #000 !important;
}

.detail-content-mobile .detail-contact-bar .contact-bar-btn {
    background: #949494 !important;
    border: #000 !important;
}

.detail-content-mobile .detail-additional-data .data-row .data-label {
    background: #949494 !important;
    border: #000 !important;
}

.detail-content-mobile .detail-main-body .main-detail-data .fin-calc-btn-mobile {
    background: #949494 !important;
    border: #000 !important;
}

.detail-content-mobile .detail-additional-data .data-row .data-label {
    color: #fff !important;
}



.detail-content-mobile * {
    color: #fff !important;
}

.detail-content-mobile .detail-main-body .detail-mobile-top .detail-category {
    color: #000 !important;
}

.detail-content-mobile .detail-additional-data .data-row .data-value {
    background: #fff !important;
}

.currency-selector select {
    color: #000 !important;
}

span.currency-selector {
    color: #000 !important;
}

h1.detail-title {
    color: #000 !important;
}

.detail-content-mobile .dealer-info .address-and-contact * {
    color: #000 !important;
}

.detail-content-mobile .dealer-info h3 {
    color: #000 !important;
}

.fin-calc p {
    color: #000 !important;
}

.fin-calc p strong {
    color: #000 !important;
}

.listing-widgets * {
    color: #000 !important;
}


/*----All Details (e.g. year, manu, etc.)----*/
.detail-additional-data * {
    color: #000 !important;
}
.detail-content .detail-additional-data .data-row .data-value {
    color: #000 !important;
}
.detail-content-mobile .share-listing {
    color: #000 !important;
}

/* CSS Document */
.col-xs-12.footer-bkgd {box-sizing: border-box;}
.col-xs-12.copyright-bkgd {box-sizing: border-box;}
.col-xs-12 {box-sizing: border-box;}
.col-xs-12.col-sm-4 {box-sizing: border-box;}
.col-xs-12.col-sm-8 {box-sizing: border-box;}
.hidden-xs.col-sm-12.col-md-12.primary {box-sizing: border-box;}
.col-xs-12 #menu-button {box-sizing: border-box;}
.hidden-sm.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;}


/*===================== 
	contact styles 
=======================*/
.contact-hero-bkgd {
	background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url("/siteart/dozer-hero.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.contact-hero-text {
	max-width: 1200px;
    display: block;
    margin: 150px auto;
    padding: 20px;
}
.contact-hero-btn {
	display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    background-color: #fff;
    color: #000;
    border: 2px solid #fff;
    padding: 10px 30px 8px 30px;
    margin-top: 20px;
}
.contact-hero-btn:hover {
	background-color: transparent;
	color: #fff;
}
.contact-location-wrap {
	max-width: 1200px;
	display: block;
	margin: auto;
}
.contact-location {
	border: 2px solid #fff200;
    width: 100%;
    padding: 20px;
    text-align: center;
	height: 128px;
	margin: 50px 0px;
}
.phone-location {
	border: 2px solid #fff200;
    width: 100%;
    padding: 20px;
    text-align: center;
	height: 128px;
	margin: 50px 0px;
}
.mail-location {
	border: 2px solid #fff200;
    width: 100%;
    padding: 20px;
    text-align: center;
	height: 128px;
	margin: 50px 0px;
}
.contact-location h5 {
	margin-bottom: 10px;
}
.phone-location h5 {
	margin-bottom: 10px;
}
.mail-location h5 {
	margin-bottom: 10px;
}
.location-address {}
.contact-phone {
	display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .25px;
    color: #000!important;
    margin: 7px 0px;
}
.contact-phone:hover {
	color: #bcbcbc!important
}
.contact-fax {
	display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .25px;
    color: #000!important;
    margin: 7px 0px;
}
.contact-fax:hover {
	color: #bcbcbc!important
}
.contact-btn-wrap {
	max-width: 1200px;
	display: block;
	margin: auto;
}
.contact-btn {
	border: 2px solid #bcbcbc;
    width: 100%;
    padding: 20px;
    text-align: center;
	min-height: 125px;
	height: 130px;
}
.contact-btn h5 {
	margin-bottom : 10px;
}
.contact-email {
	display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .25px;
    color: #000!important;
    margin: 7px 0px;
}
.contact-email:hover {
	color: #bcbcbc!important
}



/*===================== 
	auction page styles 
=======================*/
.auction-wrap {
	margin: 25px auto; 
	max-width: 1200px; 
	text-align: center;
}



/*===================== 
	footer styles 
=======================*/

footer {
	margin: 0;
	width: 100%;
	}
	
a.footerlink:link,
a.footerlink:visited, 
a.footerlink:active {
	text-decoration: none; 
	font-size: 10px;
	color: #fff;
	}
	a.footerlink:hover {
		text-decoration:none; 
		font-size: 10px;
		color: #fff200;
		}

.footertext {
	font-size: 10px; 
	color: #fff;
	}

.smallfootertext {
	font-size: 10px; 
	color: #fff;
	}

.divfooter {
	max-width: 600px;
    text-align: center;
    margin: 0 auto;
    line-height: 1;
}
.footer-bkgd {
	background-color: #bcbcbc;
    padding: 15px;
}
.footer-wrap {
	max-width: 1200px;
    display: block;
    margin: auto;
    text-align: center;
}
.footer-address {
	display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .25px;
    color: #fff!important;
    padding-right: 15px;
    border-right: 2px solid #fff;
    margin-right: 15px;
}
.footer-address:hover {
	color: #000!important;
}
.footer-phone {
	display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #fff!important;
    padding-right: 15px;
    border-right: 2px solid #fff;
    margin-right: 15px;
}
.footer-phone:hover {
	color: #000!important;
}
.footer-fax {
	display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #fff!important;
}
.footer-fax:hover {
	color: #000!important;
}
.copyright-bkgd {
	background-color: #000;
    padding: 30px;
    color: #fff;
}





/*========================= 
	 Responsive styles 
===========================*/

/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1199px) {


}


/* Medium Devices, Desktops */
@media only screen and (max-width : 991px) {
	.header-contact-wrap {margin-top: 30px;}
	.hero-text {margin: 75px auto; text-align: center;}
	.hero-btn {margin: auto; margin-top: 20px;}
	.first-row {margin-bottom: 10px;}
	.second-row {margin-top: 10px;}
	.contact-hero-text {margin: 75px auto; text-align: center;}
	.contact-hero-btn {margin: auto; margin-top: 20px;}
	.contact-location {margin-bottom: 20px;}
	.phone-location {margin-bottom: 20px; margin-top: 0px;}
	.mail-location {margin-bottom: 20px; margin-top: 0px;}
	.contact-btn {margin-bottom: 20px;}

}


/* Small Devices, Tablets */
@media only screen and (max-width : 767px) {
	.header-logo {display: block; margin: auto;}
	.header-contact-wrap {text-align: center; margin: 20px 0px;}
	.inv-button {margin: 15px auto;}
	.first-row {margin-bottom: 15px;}
	.second-row {margin-top: 15px;}
	.map-wrap {margin: 15px auto;}
	.mail-location {margin-bottom: 50px;}
	.search-bar {width: 100%; border-radius: 0px!important;}
	.search-btn {width: 100%; border-radius: 0px !important; margin-top: 10px;}
	.auction-wrap {margin: 0px auto;}
	.auction-wrap img {display: block; margin: 20px auto!important; float: none!important;}
	

}

@media only screen and (max-width : 650px) {
	.footer-address {display: block; margin-bottom: 10px; margin-right: 0px; padding-right: 0px; border: none;}

}


/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
	
 
}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {
	

}