﻿/*===================== 
	Color information
	
	-  #6a010f
	-
	-
	-
		 
=======================*/
/*===================== 
	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%;
}

/*===================== 
	base styles 
=======================*/
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 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;
}
img {
  border: 0;
}
/*===================== 
	typography 
=======================*/
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}
h1 {
  font-size: 30px;
  font-weight: bold;
  color: #6a010f;
  padding: 4% 0 1% 2%;
  margin: 0;
}
h2 {
  font-size: 30px;
  font-weight: bold;
  color: #6a010f;
  padding: 4% 2% 1% 2%;
  margin: 0;
}
h3 {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  padding: 4% 2% 0 2%;
  text-align: center;
}
p {
  font-size: 16px;
  color: #000;
  font-weight: normal;
  padding: 1% 2% 2% 2%;
  line-height: 22px;
  margin: 0;
}
.bold {
  font-weight: bold;
}
.title {
  font-size: 18px;
}
.red {
  color: #FF0004;
}
.white {
  color: #fff;
}
.center {
  font-size: 12px;
  display: block;
  text-align: center;
}
/*===================== 
	link styles 
=======================*/
a:focus {
  outline: thin dotted; /*reset*/
}
a, a:link, a:visited, a:active {
  outline: 0; /*reset*/
  color: inherit;
  text-decoration: underline;
}
a:hover {
  outline: 0; /*reset*/
  text-decoration: none;
  color: #6a010f;
}
a.lg_link {
  color: #000;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  padding: 0 0 4% 0;
  display: block;
}
a.lg_link:hover {
  text-decoration: underline;
}
/*===================== 
	header styles 
=======================*/
.header-wrap {
  position: relative;
	z-index: 1;
	background: url("../siteart/real_cf.png") repeat;
}
.header-wrap:nth-child(n) {  /*need this for IE9 to render transparent background properly*/
  filter: none;
}
header {
  margin: 0 auto;
  max-width: 1600px;
}
img.logo {
  width: 200px;
  margin: 1% 0 1% 1%;
  border-radius: 23px;
  box-shadow: 1px 1px 3px 4px rgba(0, 0, 0, 0.6);
}
/*===================== 
	nav styles 
=======================*/
#menu-button { /* hiding responsive menu button */
  display: none;
}
nav.mobile { /* hiding responsive menu */
  display: none;
}
/***** Start of primary nav ******/
nav.primary {
  display: block;
  width: 100%;
  height: 40px;
  background: #333;
  margin: -121px 0 0 0;
  padding: 0;
  font-family: Arial, sans-serif;
  border-bottom: #6a010f solid 5px;
}
nav.primary ul {
  margin: 0;
  padding: 0;
  float: right;
}
nav.primary ul li {
  margin: 0;
  pading: 0;
  display: block;
  list-style-type: none;
  float: left;
}
nav.primary ul li a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
  padding: 5px 20px;
  margin: 0;
  border-top: #333 solid 3px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
nav.primary ul li a:hover {
  border-top: #6a010f solid 3px;
  color: #fff;
}
nav.primary ul li li a { /* appearance of the sub-level links */
  display: block;
  background: #333;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  padding: 3px 60px 3px 20px;
  margin: 0;
  border-bottom: #a7a7a7 1px solid;
  border-top: none;
}
nav.primary ul li li a:nth-child(n) { /* need this for IE9 to render transparent background properly*/
  filter: none;
}
nav.primary ul li li a:hover { /* appearance of the sub-level links on hover */
  border-top: none;
  background-color: #6a010f;
  color: #fff;
}
nav.primary ul li li:last-child a {
  border-bottom: none;
}
/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too muuch */
nav.primary ul ul {
  display: none;
  position: absolute;
}
nav.primary ul ul ul {
  position: absolute;
  left: 100%;
  top: 0;
}
nav.primary ul li:hover > ul {
  display: block;
  line-height: 18px;
  z-index: 700;
}
nav.primary ul ul li {
  float: none;
  position: relative;
  margin: 0;
}
/******** End of primary Nav ***************/
/*===================== 
	content styles 
=======================*/
.parts {
  background: #A40117;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: normal;
  padding: 1%;
  margin: 1% 2% 2% 2%;
}
.manufacture img {
  display: inline-block;
  width: 14%;
  padding: 4% 1% 1% 1%;
}
.manufacture img.logo_adj{
	width: 8%;
	padding: 4% 3% 1% 3%;
}
.page_heading {
  display: block;
  background: rgb(0, 0, 0); /* Fall bac for browsers that do not support rgba */
  background: transparent\9; /* IE 9 Hack */
  background: rgba(0, 0, 0, .70); /* Standard RGBA for modern browsers*/
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#be000000, endColorstr=#be000000); /* Transparent background for IE 5.5 - 8*/
  zoom: 1; /* IE 7 Hack */
  color: #fff;
  padding: 1% 2%;
  width: 20%;
  margin: 15% 0 0 0;
  position: absolute;
  z-index: 200;
  font-size: 30px;
}
.page_heading:nth-child(n) { /* need this for IE9 to render transparent background properly*/
  filter: none;
}
.page_heading_inv {
  display: block;
  background: rgb(0, 0, 0); /* Fall bac for browsers that do not support rgba */
  background: transparent\9; /* IE 9 Hack */
  background: rgba(0, 0, 0, .70); /* Standard RGBA for modern browsers*/
  color: #fff;
  padding: 1% 2%;
  width: 20%;
  margin: 0 0 0 0;
  position: absolute;
  z-index: 200;
  font-size: 30px;
}
ul.boxlist {
  display: block;
  margin: 0;
  padding: 1% 4%;
  font-size: 14px;
}
ul.pagelist {
  display: block;
  margin: 0;
  padding: 1% 4%;
  font-size: 16px;
}
ul.pagelist li {
  padding: 1% 0;
  margin: 0;
}
/********* Form and Search Styles ***************/
form#contact {
  margin: 0 auto;
  padding: 2% 0;
  width: 96%;
}
form#contact input {
  width: 98%;
  padding: 1%;
  margin: 0 0 2% 0;
}
form#contact select {
  width: 100%;
  padding: 1%;
  margin: 0 0 2% 0;
}
form#contact label {
  padding: 1% 0 0 0;
  width: 100%;
}
form#contact textarea {
  width: 100%;
  height: 100px;
}
form#contact input[type="submit"] {
  width: 50%;
  display: block;
  background: #000;
  color: #fff;
  border: none;
  font-size: 14px;
  margin: auto;
  padding: 1% 0;
}
form#contact input[type="submit"]:hover {
  background: #6a010f;
}
form#search {
  width: 100%;
  display: block;
  margin: auto;
  padding: 0 0 8% 0;
}
form#search label {
  width: 100%;
  font-size: 14px;
  color: #fff;
  display: block;
  padding: 0 0 1% 0;
}
form#search fieldset {
	border: none;
}
form#search legend {
	color: #fff;
}
form#search select {
  width: 100%;
  padding: 1%;
}
form#search input.sidebyside {
  display: inline-block;
  zoom: 1;
  *display: inline;
  width: 43%;
  margin: 0 0 0 1%;
  padding: 1%;
}
form#search .radio-section {
  display: inline-block;
  zoom: 1;
  *display: inline;
  width: 39%;
  margin: 0 0 0 1%;
  padding: 1%;
}
form#search .radio-label {
  font-size: 14px;
  color: #fff;
}
form#search .button {
  background: #6a010f;
  border: none;
  color: #fff;
  margin: 16px 0 0 0;
  padding: 2% 6%;
}
form#search .button:hover {
  background: #A40117;
  color: #fff;
  cursor: pointer;
}
form#search .column3 {
  width: 15%;
  margin: 0 1%;
  float: left;
}
form#search .column4 {
  width: 20%;
  margin: 0 1%;
  float: left;
}
/************************************************/
/*===================== 
	slideshow styles 
=======================*/
.hero-slider img {
	width:100%;
	aspect-ratio: 7 / 2;
	object-fit: cover;
}
#ads {
  position: absolute;
	bottom: 10px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

#ads img {
	max-width: 550px;
}
/*===================== 
	layout styles 
=======================*/
#pagebg img {
  width: 100%;
  margin: -76px 0 0 0;
}
#pagebg_inv {
  width: 100%;
  background: url(../siteart/pagebg2.jpg) no-repeat;
  background-size: cover;
  padding: 18% 0;
}
.wrap {
  width: 100%;
  margin: 0;
  background-color: #f4f4f4;
}
.wrap2 {
  width: 100%;
  margin: -4px 0 0 0;
  background-color: #f4f4f4;
}
.search_wrap {
  width: 100%;
  margin: -124px 0 0 0;
  background-color: #333;
}
.search_wrap2 {
  width: 100%;
  margin: -4px 0 0 0;
  background-color: #333;
}
.map_wrap {
  background: url(../siteart/map_bg.jpg) no-repeat;
  background-size: cover;
  width: 100%;
  border-top: #6a010f solid 4px;
}
.map_text {
  padding: 5% 0;
  text-align: center;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
}
.col-1-6 {
  width: 16%;
}
.col-1-5 {
  width: 20%;
}
.col-1-4 {
  width: 18%;
  height: 220px;
  background: #fff;
  display: inline-block;
  zoom: 1;
  *display: inline;
  padding: 2%;
  margin: 1%;
  float: left;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .75);
}
.col-1-4 img {
  max-width: 100%;
}
.col-1-3 {
  width: 30%;
  float: left;
  padding: 1% 2%;
}
.col-1-2 {
  width: 44%;
  float: left;
  padding: 1% 2%;
}
.col-2-3 {
  width: 62%;
  float: left;
  padding: 1% 2%;
}
.col-3-4 {
  width: 75%;
}
/*===================== 
	footer styles 
=======================*/
footer {
  margin: 0;
  width: 100%;
  background-color: #000;
  color: #fff;
}
a.footerlink:link, a.footerlink:visited, a.footerlink:active {
  text-decoration: none;
  font-size: 13px;
  color: #fff;
}
a.footerlink:hover {
  text-decoration: none;
  font-size: 13px;
  color: #fff;
}
.footertext {
  font-size: 13px;
  color: #fff;
}
.smallfootertext {
  font-size: 10px;
  color: #fff;
}
.divfooter {
  width: 50%;
  text-align: left;
  float: left;
  padding: 4% 2%;
}
.contact_area {
  float: right;
  text-align: right;
  width: 40%;
  padding: 1% 2%;
}
.contact_area p {
  color: #fff;
}
.detail-content .detail-main-body .main-detail-data .detail-price, .detail-content .detail-main-body .main-detail-data .alternate-retail-price, .detail-content .dealer-info h3, .compare-listings-container .compare-container .comp-header-img .comp-title-close-cont .compare-title h3, .compare-listings-container .compare-container .compare-price, .detail-content-mobile .detail-main-body .main-detail-data .detail-price, h3.detail__specs-heading {
  color: #000 !important;
}
.view-listing-details-link, .buy-now-link {
  background-color: #6a010f !important;
  color: #fff !important;
}
.detail-content .detail-main-body .main-detail-data .offer-btn, .detail-content .detail-main-body .main-detail-data .buy-btn, .compare-listings-container .compare-container .button {
  background-color: #6a010f !important;
  color: #fff !important;
}
.rent-title-details, .lease-title-details, .fractional-title-details {
  color: #6a010f !important;
}
.detail-content .detail-additional-data .data-row .data-label, .send-a-message-form button, .contact-options a, .fin-calc-mobile > a, .detail-content-mobile .detail-contact-bar .contact-bar-btn, .faceted-search-content .selected-facets-container .selected-facet {
  background-color: #6a010f !important;
}
.detail-content .dealer-info .phone-and-email .send-email-btn {
  border-color: #6a010f !important;
  color: #6a010f !important;
}
.detail-content-mobile .detail-additional-data .data-row .data-label {
  background-color: #000 !important;
}

.list-content .listing-portion-title {
	color: #000 !important;
}
h3.dealer-name{ color:#000;}



/* NOUI SLIDER */
.detailed-search {background: #333;}
.detailed-search .hp-slider .example-val {padding: 5px 0;}
.detailed-search .noUi-target{position: relative; direction: ltr}
.detailed-search .noUi-origin{position: absolute; right: 0; top: 0; left: 0; bottom: 0; border-radius: 2px}
.detailed-search .noUi-handle{position: relative; z-index: 1}
.detailed-search .noUi-marker, .detailed-search .noUi-pips, .detailed-search .noUi-tooltip, .detailed-search .noUi-value{position: absolute}
.detailed-search .noUi-horizontal{height: 12px; z-index: 0}
.detailed-search .noUi-horizontal .noUi-handle{width: 25px; height: 21px; left: -13px; top: -6px}
.detailed-search .noUi-background{background: #ccc;}
.detailed-search .noUi-connect{background: #fff !important; border: 1px #000 solid;}
.detailed-search .noUi-target{width: calc(95% - 15px); margin: 15px auto 0 auto;}
.detailed-search .noUi-handle{background: #6a010f !important; border: 1px solid #ccc; border-radius: 3px;}
.detailed-search .noUi-handle:after, .detailed-search .noUi-handle:before{content: ""; display: block; position: absolute; height: 12px; width: 1px; background: #E8E7E6; left: 10px; top: 3px}
.detailed-search .noUi-handle:after{left: 12px}
.detailed-search .noUi-pips-horizontal{padding: 5px 0; height: 10px; top: 100%; left: 0; width: 100%}
.detailed-search .noUi-marker-horizontal.noUi-marker{margin-left: -1px; width: 1px; height: 5px; background: #777;}
.detailed-search .example-val{font-size: 14px; color: #fff;} .example-val span{font-weight: 400;}
.detailed-search #slider-price-value-lower:before, .detailed-search #slider-price-value-upper:before{content: '$'; padding-right: 2px}


/*======================== 
	Responsive styles 
==========================*/
@media screen and (max-width: 1370px) {
  nav.primary ul li a {
    font-size: 14px;
    padding: 5px 14px;
  }
  #ads {
    margin: -300px 0 0 0;
  }
}
@media screen and (max-width: 1110px) {
  #ads {
    margin: -240px 0 0 0;
  }
	img.logo {
	  width: 160px;
	}
  nav.primary ul li a {
    font-size: 14px;
    padding: 5px 10px;
    font-weight: normal;
  }
  nav.primary ul li li a { /* appearance of the sub-level links */
    font-size: 12px;
    padding: 3px 40px 3px 10px;
  }
}
@media screen and (max-width: 1008px) {
 
  #ads {
    margin: -218px 0 0 0;
  }
}
@media screen and (max-width: 940px) {
  .header-wrap {
    height: 34px;
  }
  nav.primary ul li a {
    font-size: 14px;
    padding: 5px 10px;
    font-weight: normal;
  }
  #ads {
    margin: -230px 0 0 0;
  }
  img.logo {
    width: 18%;
  }
  nav.primary {
    display: none;
  }
  .header-wrap {
    height: auto;
    border-bottom: #6a010f solid 5px;
  }
  #ads {
    display: none;
  }
  #pagebg img {
    width: 100%;
    margin: 0 0 0 0;
  }
  img.logo {
    width: 18%;
    float: none;
    display: block;
    margin: 0 auto;
    padding: 1% 0 1% 1%;
    box-shadow: none;
    border-radius: none;
  }
  .page_heading {
    visibility: hidden;
  }
  .col-1-4 {
    width: 26%;
  }
  .search_wrap {
    margin: 0;
  }
  form#search .column3 {
    width: 50%;
    margin: 0 0 2% 20%;
    float: none;
  }
  form#search .column4 {
    width: 60%;
    margin: 0 0 2% 20%;
    float: none;
  }
/*==============================
	Mobile Nav Styles			
================================*/
  #menu-button {
    display: block;
    float: left;
    font-size: 32px;
    width: 10%;
    position: absolute;
    z-index: 1990; /* needs to be lower than nav.mobile, adjust as needed */
    padding: 0 3%;
    margin: -15% 0 0 0;
  }
  #menu-button a {
    color: #fff;
    text-decoration: none;
  }
  nav.mobile {
    font-family: Arial, sans-serif;
    display: block;
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: #333;
    z-index: 2000; /* 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: 0px 9px 5px 9px;
    line-height: 1;
    background: #222;
    color: #999;
    text-decoration: none;
    vertical-align: top;
    font-size: 27px;
  }
  nav.mobile .menu-toggle:hover { /* Menu close button on hoveer */
    color: #fff;
  }
  nav.mobile ul {
    list-style: none;
    font-weight: 300;
    border-top: 1px solid #151515;
    border-bottom: 1px solid #454545;
    margin: 0;
    padding: 0;
  }
  nav.mobile ul li {
    border-top: 1px solid #454545;
    border-bottom: 1px solid #151515;
  }
  nav.mobile ul li a {
    position: relative;
    display: block;
    padding: 10px;
    color: #999;
    text-decoration: none;
  }
  nav.mobile ul li a:hover {
    background: #000;
    color: #fff;
  }
  nav.mobile ul li li a { /* appearance of the sub-level links */
    background: #444;
    position: relative;
    display: block;
    padding: 10px 10px 10px 15px;
    color: #ccc;
    text-decoration: none;
  }
  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/arrow.png') 10px 10px no-repeat;
    background-size: 55%;
    position: relative;
    display: block;
    float: right;
    margin: -44px 0 0 0;
    cursor: pointer;
    z-index: 2000;
    width: 45px;
    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%;
  }
}
@media screen and (max-width: 630px) {
  .divfooter {
    width: 90%;
    text-align: center;
    float: left;
    margin: auto;
    padding: 4% 2%;
  }
  .contact_area {
    float: none;
    text-align: center;
    width: 90%;
    margin: auto;
    padding: 3% 2%;
  }
  .col-1-3 {
    width: 95%;
    float: none;
    margin: auto;
  }
  .col-1-2 {
    width: 95%;
    float: none;
    margin: auto;
  }
  .col-2-3 {
    width: 95%;
    float: none;
    margin: auto;
  }
  .col-1-4 {
    width: 42%;
  }
  h1 {
    font-size: 24px;
    font-weight: normal;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 28px;
  }
  p {
    font-size: 14px;
  }
  a.lg_link {
    font-size: 24px;
  }
  ul.pagelist {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  #menu-button {
    font-size: 24px;
    margin: -14% 0 0 0;
  }
  img.logo {
    width: 18%;
  }
}
@media screen and (max-width: 380px) {
  .col-1-4 {
    width: 80%;
    height: 210px;
    float: none;
    display: block;
    margin: 1% auto;
    padding: 4%;
  }
}