@charset "utf-8";
/* CSS Document */

/***** BEGIN RESET *****/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    background:transparent;
    border:0;
    margin:0;
    padding:0;
}

ol, ul {list-style: none;}
.clear {clear: both; height:0px; margin:0;}

/***** END RESET *****/

* {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
	box-sizing: border-box;
}

::-moz-selection{background: #ffc81f; color: #000; text-shadow: none} ::selection{background: #ffc81f; color: #000; text-shadow: none;}

body {
	overflow-x: hidden;
	font-family: 'Roboto', sans-serif;
	line-height: 1.3;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

button,
input { /* 1 */
  overflow: visible;
}

button,
select { /* 1 */
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}


.width {width: 1600px; margin: 0 auto; max-width: 90%;}
.wrapper-width {width: 80%; margin: 0 auto; max-width: 1220px;}
.inventory-width {width: 90%; margin: 0 auto; padding-bottom: 40px;}
.yellow {color: #ffc81f;}
.lightgray {color: #bcc5ca;}

.homepage-content {
	position: relative;
	bottom: 60px;
}
/***************************  HEADER STYLES  *************************************/
.header {
	width: 100%;
	margin: 0 auto;
	background-image: url("../siteart/header-bg.jpg");
	background-color:#000;
	box-shadow: 0px 3px 15px rgba(0,0,0,0.2);
}

.hdr-top {
	width: 100%;
	background: #000;
	padding: 4px 5%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;	
}

.hdr-top-left {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.hdr-top-left p {
	display: inline-block;
	color: #ffc81f;
	font-size: 11px;
	letter-spacing: 1px;
	font-family: 'Roboto', sans-serif;
}

.hdr-top-left p a {
	text-decoration: none;
	color: #fff;
	margin-left: 1em;
	font-family: 'Roboto', sans-serif;
}

.hdr-top-left p a:hover {
	opacity: 0.9;
	transition: .2s ease-in-out all;
}

.hdr-top-right {
	text-align: right;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.hdr-top-right a {
	display: inline-block;
}

.hdr-top-right a .fab {
	color: #a6aeb2;
	vertical-align: middle;
	margin: 0 .25em;
}

.hdr-top-right a .fab:hover {
	color: #ffc81f;
	transition: .2s ease-in-out all;
}

#google-translate {margin-left: 1.5vw!important;}
#google-translate select {width: inherit!important; height: inherit!important; line-height: inherit!important; border-radius: inherit!important; padding: inherit!important;}


.main-logo img {
	width: 100%;
	margin: 25px 0!important;
	max-width: 260px!important;
}

/*********************  MAIN HERO STYLES **************************************/
.hero-wrapper {
	width: 100%;
	margin: 0 auto;
	display: block;
	position: relative;
	background-color: black;
}

.hero-wrapper img#main-hero {
	width: 100%;
	height: auto;
	max-height: 660px;
	background-color: black;
}

.hero-wrapper .hero-title {
	display: block;
	bottom: 10vh;
	position: absolute;
	z-index: 2;
	text-shadow: 1px 1px 4px #222222;
}

.hero-title h1 {
	position: relative;
	z-index: 2;
	text-transform: uppercase;
	color: #fff;
	font-family: 'Anton', sans-serif;
	width: 68%;
	font-size: 50px;
	letter-spacing: 1.5px;
	display: block;
	padding-left: 20px;
	border-left: 8px solid #ffc81f;
	line-height: 60px;
}

.hero-title h2 {
	position: relative;
	z-index: 2;
	text-transform: uppercase;
	color: #fff;
	font-family: 'Anton', sans-serif;
	width: 68%;
	font-size: 50px;
	letter-spacing: 1.5px;
	display: block;
	padding-left: 20px;
	border-left: 8px solid #ffc81f;
	line-height: 60px;
}

.hero-title p {
	color: #fff;
	line-height: 26px;
	font-size: 24px;
	margin: 15px 0;
}

.hero-wrapper .hero-quicklinks {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
	text-align: center;
	z-index: 2;
	width: 100%;
	margin: 0 auto;
}

.hero-quicklinks a {
	font-family: 'Roboto Condensed', sans-serif;
	display: inline-block;
	text-transform: uppercase;
	color: #fff;
	background: rgba(255, 200, 31, .5);
	text-align: center;
	line-height: 1.3;
	font-size: 18px;
	width: calc(25% - 4px);
	padding: 15px;
	font-weight: 500;
	margin: 0 2px;
	text-decoration: none;	
	box-shadow: 0px 3px 15px rgba(0,0,0,0.2);
    transition: .2s ease-in;
}

.hero-quicklinks a:hover {
	background: rgba(255, 200, 31, .6);
}

.hero-quicklinks a .fas {
	font-size: 16px;
	vertical-align: middle;
}


/****************  ABOUT SECTION STYLES **************************************/
.about-wrapper {
	width: 100%;
	height: auto;
	position: relative;
	display: block;
	margin: 0 auto;
	margin-top: -60px;
	background-image: url("../siteart/about-hero2.jpg");
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	padding: 130px 0;
	background-color:#000;
}

.about-wrapper p {
	line-height: 1.8;
	color: #fff;
	letter-spacing: 1px;
	font-family: 'Roboto Condensed', sans-serif;
	text-shadow: 1px 1px 4px #222;
}

/*=====  SCROLLING INVENTORY ===== */
.scrolling-wrap {
    width: 100%;
    height: 92px;
    overflow: hidden;
	margin-top: -4px;
    margin-bottom: -2px;
}
 
.scrolling {
    width: 100%;
    height: 100px;
}


/*********************  AUCTION PAGE STYLES **************************************/
.auction {
	width: 100%;
	margin: 0 auto;
	margin-top: 40px;
}

/*********************  PARTS PAGE STYLES **************************************/
.parts-wrapper {
	width: 100%;
	margin: 0 auto;
	display: block;
}

.page-text-wrapper {
	width: 100%;
	display: block;
	margin: 0 auto;
	padding: 40px;
	height: auto;
	position: relative;
	/*background-image: url("../siteart/header-bg.jpg");
	background-size: cover;
	background-attachment: fixed;
	background-position: center;*/
}

.page-text-wrapper h3 {
	font-family: 'Roboto Condensed', sans-serif;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.box {
	float: left;
    width: 46%;
    margin: 15px;
    padding: 25px 15px;
}

.box img {
	width: 750px;
	height: auto;
	max-width: 100%;
	display: block;
}

.box h1 {
	font-family: 'Roboto Condensed', sans-serif;
	text-transform: uppercase;
	line-height: 30px;
	letter-spacing: 1px;
	margin-bottom: 20px;
}

.box p {
	line-height: 30px;
	font-family: 'Roboto', sans-serif;
	padding: 1em;
}

.box .fas {
	color: #ffc81f;
}

.box a {
	color: #ffc81f;
	font-weight: bold;
	text-decoration: none;
}

.box a:hover {
	letter-spacing: .5px;
	transition: .3s ease-in-out all;
}

.box a.parts-btn {
	padding: 1rem;
	text-transform: uppercase;
	font-family: 'Anton', sans-serif;
	color: #f4f4f4;
	background: #2a2a2a;
	display: inline-block;
	width: 100%;
	text-decoration: none;
	letter-spacing: 1px;
	text-align: center;
	font-weight: normal!important;
}

.box a.parts-btn .fas {
	color: #ffc81f;
}

.box a.parts-btn:hover {
	color: #ffc81f;
	background: #2a2a2a;
	transition: all .2s ease-in-out;
}

div#sendrequest-btn {
	float: right; 
	width: 45%;
	display: inline-block;
	text-align: left; 
	margin: 30px;
	color: #2a2a2a;
	font-family: 'Roboto', sans-serif;
}

div#sendrequest-btn a {
	text-decoration: none;
	color: #ffc81f;
	font-weight: 600;
}

div#sendrequest-btn a:hover {
	letter-spacing: .5px;
	transition: .3s ease-in-out all;
}


/*********************  SERVICES STYLES **************************************/
.service-wrapper {
	width: 100%;
	margin: 0 auto;
	display: block;
}

.tabs h3 {
	line-height: 40px;
	margin-bottom: 25px;
	font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 30px;
	border-left: 5px solid #ffc81f;   
	padding: 0 20px;
}

.tabs p {
	line-height: 32px;
	font-size: 18px;
}

.tabs ul li {
	margin: 20px;
	font-size: 18px;
	line-height: 30px;
}

.tabs ul.overview li {
	font-size: 20px;
	text-transform: uppercase;
	font-family: 'Roboto Condensed', sans-serif;
	letter-spacing: 1px;
}

.tabs ul.overview .fas .fa-plus-square {
	color: #ffc81f;
}

.tabs .fas {
	margin-right: 5px;
}

.tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 40px 0;
}

.tabs label {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  display: block;
  padding: 1rem 2rem;
  margin: 5px;
  width: 24%;
  cursor: pointer;
  background: #f4f4f4; 
  color: #2a2a2a;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-align: center;
  font-weight: 700;
  -webkit-transition: background ease 0.2s;
  transition: background ease 0.2s;
}

.tabs label:hover {
  background: #ffc81f;
  color: #2a2a2a;
  -webkit-transition: .4s ease-in;
  -moz-transition: .2s ease-in;
  -o-transition: .2s ease-in;
  transition: .2s ease-in;
}

.tabs .tab {
  -webkit-box-ordinal-group: 100;
  -webkit-order: 99;
  -ms-flex-order: 99;
  order: 99;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
  display: none;
  padding: 4rem;
  /*box-shadow: 0px 3px 15px rgba(0,0,0,0.2);*/
}

.tabs input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.tabs input[type="radio"]:checked + label {background: #2a2a2a; color: #ffc81f;}

.tabs input[type="radio"]:checked + label + .tab {display: block;}

.tab .tab-1-left {
	width: 60%;
	float: left;
	margin-right: 40px;
}

.tab .tab-1-right {
	width: 36%;
	float: right;
	text-align: right;
}

.tab .tab-4-right {
	width: 35%;
	float: right;
	text-align: right;
}

.tab .tab-4-right img {
	max-width: 100%;
	width: 135px;
	height: auto;
}

.tab a#service-call-btn {
	background: #000;
	color: #fff;
	display: inline-block;
	padding: 10px 20px;
	letter-spacing: .5px;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 700;
	border-radius: 15px;
	text-decoration: none;
}

.tab a#service-call-btn:hover {
	color: #313233;
	background: #cdcdcd;
}

.tab a#cta-btn {
	text-decoration: none;
	color: #eb131b; 
	font-weight: 700; 
	text-transform: uppercase;
	letter-spacing: .5px;
	font-size: 12px;
}

.tab a#cta-btn .fas {
	color: #000;
}

.tab a#cta-btn:hover {
	opacity: 0.7;
}


/*********************  SUPPORT STYLES **************************************/
.support-hero h2 {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 28px;
	margin: 2em 0 .35em;
	font-family: 'Roboto Condensed', sans-serif;
	letter-spacing: 2px;
	line-height: 1.3;
}

.support-hero {
	width: 100%;
	height: auto;
	position: relative;
	display: block;
	margin: 0 auto;
	background-image: url("../siteart/support-hero.jpg");
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	padding: 130px 0;
}

.support-hero img {width: 100%; height: auto;}

.support-hero .wrapper-width {
	background: rgba(42,42,42,.45);
	box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
    padding: 40px;
}

.support-hero h1.title {
	margin: 0 auto;
	max-width: 1000px;
	font-weight: 400;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 50px;
	line-height: 1.2;
	letter-spacing: 8px;
	text-transform: uppercase;
	text-align: center;
	color: #fff;
	margin-bottom: 40px;
}

.support-hero p {
	line-height: 1.5;
	color: #fff;
	letter-spacing: .5px;
	font-family: 'Roboto', sans-serif;
}

/*********************  CONTACT PAGE STYLES **************************************/
.contact-wrapper {
	width: 100%;
	display: block;
	margin: 0 auto;
}

.contact-wrapper img#main-hero {
	width: 100%;
	height: 300px;
    max-height: 100%;
    position: absolute;
    z-index: 3;
	background-color:#000;
}

.contact-wrapper .title {
	margin: 0 auto;
	max-width: 1000px;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400; 
	font-size: 50px;
	line-height: 1.2;
	letter-spacing: 8px;
	text-transform: uppercase;
	text-align: center;
	color: #fff;
	position: relative;
    z-index: 4;
	padding: 0 10%;
    clear: both;
    top: 7vw;
}
.contact-wrapper .title .fas {
	color: #ffc81f;
}

.contact-wrapper .title a .fas:hover {
	color: #bcc5ca;
	-webkit-transition: .4s ease-in;
    -moz-transition: .2s ease-in;
    -o-transition: .2s ease-in;
    transition: .2s ease-in;
}

.contact-wrapper p {
	font-family: 'Roboto Condensed', sans-serif;
	color: #2a2a2a;
	line-height: 30px;
	text-align: center;
	margin: 40px 0;
	border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
	padding: 1em;
}

.contact-wrapper p a {
	text-decoration: none;
	color: #ffc81f;
	font-size: 18px;
}

.contact-wrapper p a:hover {
	text-decoration: underline;
}

.contact-form {
	width: 100%;
	display: block;
	padding: 40px;
	max-width: 1200px;
	margin: 0 auto 2em;
	background: #f4f4f4;
}

.contact-form h2 {
	margin: 0 auto;
    max-width: 1000px;
	font-size: 30px;
	line-height: 1.2;
	font-weight: 400;
	font-family: 'Roboto Condensed', sans-serif; 
    letter-spacing: 8px;
    text-transform: uppercase;
    text-align: center;
    color: #2a2a2a;
}

#formpage { vertical-align:top; margin: 0 auto; font-family: 'Roboto', sans-serif;}

#formpage div {
	vertical-align:top;
	padding:10px 10px;
	font-family: 'Roboto Condensed', sans-serif;
	line-height: 26px;
}

#formpage input {
	padding:10px;
	border:1px solid #dadada;
	font-size:15px;
	background:#fff;
	border-radius: 0;
	width: 100%;
	/*margin-top: 5px;*/
}

#formpage textarea {
	width:100%;
    height:150px;
	padding:10px;
	border:1px solid #dadada;
	color:#000;
	font-size:15px;
	background:#fff;
	margin-top: 5px;
	border-radius: 0;
}

/* selects have similar styles to input & textarea fields, but with no padding. Text in a dropdown select is positioned differently */
#formpage select {
	border:1px solid #dadada;
	color:#202e3b;
	vertical-align:middle;
	font-size:15px;
	line-height:normal;
	padding:10px;
	width:100%;
	border-radius: 0;
}

.formfield {
	width:100%; 
	float:left; 
	margin-right: 12px; 
	margin-top: 10px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 2;
}
 
#formpage input.larger  {
    width:100%;
}

#formpage input.checkbox {
    padding:0; 
    border:0;
    margin:0 5px 0 15px;
    width:15px;
    height:15px;
    display:inline;
    background-color:#fff;
	color:black;
	text-transform:uppercase;
 }


#formpage input.radio {
    padding:0; 
    border:0;
    margin:0 5px 0 0;
    width:15px;
    height:15px;
    display:inline;
	
 }
#formpage .textbox {display: inline-block; width: 100%; text-align: left; font-size: 16px;}

/* focus states of various types of fields */
#formpage input:focus,
#formpage textarea:focus,
#formpage select:focus {
	background:#fff; 
	border:1px solid #a6aeb2;
	outline-style:none;
}

#formpage input.radio:focus,
#formpage input.checkbox:focus {
	background:none; 
	border:0;
	outline-style:none;
}

#formpage input.button,
#formpage input.button:focus {
    width: 200px;
	display: inline-block;
    line-height:14px;
    color:#fff;
	background: #000; 
	padding: 10px 0px;
	font-size: 14px;
	font-weight: 600;
	text-decoration:none; 
	border-bottom: none!important;
	text-transform: uppercase;
	font-family: 'Roboto', sans-serif;
	letter-spacing: 1px;
	border-radius: 5px;
	border: none;
	transform: none!important;
	cursor: pointer;
}

#formpage input.button:hover {
    background: #000; 
    color:#ffc81f;
	transition: all .2s ease-in-out;
}

/* for plain text next to an input field, if not using a table structure */
#formpage label.basic {
    color:#212121;
    font-size:13px;
    text-align:left;
} 

/*control the Captcha */
#formpage .captcha .CaptchaWhatsThisPanel a {text-align: center !important; margin-top: 10px;}

.CaptchaPanel {margin:0 auto !important;padding:0 0 0 0 !important;line-height:normal !important;color:#000;width: 50%;text-align: center; }

.CaptchaImagePanel {
margin: 0 auto;	
text-align: center !important;	
margin-top: 10px;
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;
text-align: center;
}

.CaptchaAnswerPanel {
margin:0 0 0 0;
padding:2px 0px 2px 0px !important;
}

.CaptchaWhatsThisPanel {
	line-height:0;
	margin:0 0 10px 0;
	padding:10px 0 10px 0 !important;
}

.CaptchaWhatsThisPanel a {color:#000; text-align: center !important; border: none;}

.CaptchaWhatsThisPanel a:hover {text-decoration:none; background: none; color: #000;} 

/* thank you pages */
.thankyou-wrapper h2 {
	font-size: 24px;
	font-family: 'Roboto Condensed', sans-serif;
	margin: 0 auto;
    max-width: 1000px;
	font-weight: 400;
	line-height: 1.2;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    text-align: center;
	text-shadow: 2px 2px 8px #222222;
}

h2#thankyou .fas {
	margin-right: 5px;
	color: #ffc81f;
}

p#thankyou {
	font-family: 'Roboto Condensed', sans-serif;
	letter-spacing: .5px;
	color: #fff;
	line-height: 30px;
	font-size: 16px;
	border: none; 
	padding: 0;
	margin: 30px 0;
	text-shadow: 2px 2px 8px #222222;
    -webkit-text-shadow: 2px 2px 8px #222222;
    -moz-text-shadow: 2px 2px 8px #222222;
    -ms-text-shadow: 2px 2px 8px #222222;
}

/* locations */
.location-wrapper {
	width: 100%;
	margin: 0 auto;
	display: block;
	padding: 30px 10px;
	margin-top: 180px;
}

.location-info {
	margin: 40px 0;
	font-family: 'Roboto Condensed', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: center;
	display: inline-block;
	width: 100%;
}

.location-info h2 {
	color: #ffc81f;
	line-height: 60px;
	background: #2a2a2a;
	font-size: 20px;
	font-weight: 500;
	border-bottom: 5px solid #ffc81f;
}

.location-info p {
	margin: 0; 
	background: #f4f4f4;
	font-size: 18px;
	color: #2a2a2a;
}

.location-info-left {
	float: left;
	width: 49%;
}

.location-info-right {
	float: right;
	width: 49%;
}

/*********************  FOOTER STYLES **************************************/
.footer {
	width: 100%;
	display: inline-block;
	margin-top: -4px;
	background: #2a2a2a;
	border-top: 3px solid #ffc81f;
}

.site-host {
	width: 100%;
	display: inline-block;
	margin: 0 auto;
	background: #000;
	padding: 20px 5%;
}

.site-host p, .site-host .footer-icons {
	vertical-align: middle;
	display: inline-block;
}

.site-host p {
	text-transform: uppercase;
	color: #888;
	letter-spacing: 1px;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 11px; 
	line-height: 1.6;
	text-align: left;
}

.site-host .footer-icons {
	color: #fff;
	text-align: right;
	float: right;
	width: 10%;
}

.site-host .footer-icons .fab {
	color: #a6aeb2;
	vertical-align: middle;
	margin: 0 2px;
}

.site-host .footer-icons .fab:hover {
	color: #ffc81f;
	transition: .3s ease-in-out all;
}

.site-host a {color: #888; text-decoration: none;}
.site-host a:hover {color: #a6aeb2; transition: .3s ease-in-out all;}

.footer-left, .footer-right {
	margin: 50px 0;
}

.footer-left {
	float: left;
	width: 45%; 
	display: inline-block;
}

.footer-left h2 {
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #ffc81f;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 20px;
	margin-bottom: 20px;
}

.footer-left ul {
	font-family: 'Roboto Condensed', sans-serif;
	column-count: 2;
}

.footer-left ul li a {
	text-decoration: none;
	color: #fff;
	line-height: 26px;
}

.footer-left ul li a:hover {
	color: #f4f4f4;
	transition: .2s ease-in;
}

.footer-left ul li {
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1px;
	margin: 5px 0;
}

.footer-right {
	float: right;
	width: 45%;
	display: inline-block;
}

.footer-right h2 {
	letter-spacing: 1.5px;
	color: #ffc81f;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 18px;
	line-height: 1.4;
	max-width: 500px;
}

.footer-right p {
	color: #a6aeb2;
	font-size: 13px;
	letter-spacing: 1px;
	line-height: 1.5;
	margin: 10px 0;
}

/* newsletter styles */
#captcha-content {display: none; width: 100%;}
.mail-list #formpage .CaptchaAnswerPanel input, .mail-list #formpage .CaptchaMessagePanel, .mail-list #formpage .CaptchaWhatsThisPanel a {color: #fff!important;}
.mail-list #formpage .CaptchaMessagePanel {line-height: 1.5;}
.mail-list #formpage .CaptchaWhatsThisPanel a {font-size: 12px;}
.mail-list #formpage .CaptchaImage {margin-top: 1em;}
.mail-list #formpage div {padding: 0;}
.mail-list #formpage .CaptchaPanel {width: 100%; max-width: 300px; margin: 0 auto;}
.mail-list #formpage input {
	font-size: 13px!important;
	letter-spacing: normal;
	padding: 10px 8px;
	line-height: 16px!important;
	width: 100%;
	background: none;
    border: none;
    border-bottom: 1px solid #a6aeb2;
    border-radius: 0;
	text-transform: none;
	color: #fff;
}

.mail-list #formpage input::placeholder {text-transform: uppercase; letter-spacing: 1px;}

.mail-list #formpage {
	width: 100%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	box-sizing: border-box;
}
.mail-list-button, #submit-btn{
	position:relative;
	margin:0;
	width:100%;
	font-size: 13px;
	display:inline-block;
	cursor: pointer;
	background: #000;
	color: #fff;
	border-radius: 0 0 10px 10px;
	border: none;
	outline: none;	
	padding:12px;
	text-align:center;
	border-bottom: none!important;
	transition:ease-in .3s;
	font-weight: 600;
	letter-spacing: 1px;
}

.mail-list-button:hover, #submit-btn:hover {
	color: #ffc81f;
	transition: .3s ease-in-out all;
}

.newsletter-wrapper iframe {width: 100%; height: 200px;}
.newsletter-thanks {color: #cacaca; margin: 20px 0; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; transition:ease-in .3s; font-weight: 600; font-family: 'Roboto Condensed', sans-serif; line-height: 22px;}
.newsletter-thanks a {color: #cacaca; text-decoration: none;}
.newsletter-thanks a:hover {color: #fff; transition: .3s ease-in-out all;}



/* NOUI SLIDER 
.detailed-search-wrap .hp-slider .example-val {padding: 5px 0;}
.detailed-search-wrap .noUi-target{position: relative; direction: ltr}
.detailed-search-wrap .noUi-origin{position: absolute; right: 0; top: 0; left: 0; bottom: 0; border-radius: 2px}
.detailed-search-wrap .noUi-handle{position: relative; z-index: 1}
.detailed-search-wrap .noUi-marker, .detailed-search-wrap .noUi-pips, .detailed-search-wrap .noUi-tooltip, .detailed-search-wrap .noUi-value{position: absolute}
.detailed-search-wrap .noUi-horizontal{height: 12px; z-index: 0}
.detailed-search-wrap .noUi-horizontal .noUi-handle{width: 25px; height: 21px; left: -13px; top: -6px}
.detailed-search-wrap .noUi-background{background: #ccc;}
.detailed-search-wrap .noUi-connect{background: #fff !important; border: 1px #000 solid;}
.detailed-search-wrap .noUi-target{width: calc(95% - 15px); margin: 15px auto 0 auto;}
.detailed-search-wrap .noUi-handle{background: #ffc81f !important; border: 1px solid #ccc; border-radius: 3px;}
.detailed-search-wrap .noUi-handle:after, .detailed-search-wrap .noUi-handle:before{content: ""; display: block; position: absolute; height: 12px; width: 1px; background: #E8E7E6; left: 10px; top: 3px}
.detailed-search-wrap .noUi-handle:after{left: 12px}
.detailed-search-wrap .noUi-pips-horizontal{padding: 5px 0; height: 10px; top: 100%; left: 0; width: 100%}
.detailed-search-wrap .noUi-marker-horizontal.noUi-marker{margin-left: -1px; width: 1px; height: 5px; background: #777;}
.detailed-search-wrap .example-val{font-size: 12px; font-weight: 600; color: #fff;} .detailed-search-wrap .example-val span{font-weight: 400;}

.detailed-search-wrap #slider-price-value-lower:before, .detailed-search-wrap #slider-price-value-upper:before{content: '$'; padding-right: 2px} */


/**********************  MEDIA QUERIES (RWD) *************************/
@media screen and (max-width: 1280px) {
	.hero-wrapper .hero-title {bottom: 8em;}
	.hero-title h1 {font-size: 45px; line-height: 50px;}
	.hero-title p {font-size: 20px;}
	
	.tabs label {width: 49%;}
}

@media screen and (max-width: 1130px) {
	.tabs label {width: 100%;}
	.tabs .tab {padding: 2rem 1rem;}
}

@media screen and (max-width: 930px) {
	.wrapper-width {width: 85%;}
	
	.main-logo {width: 100%; max-width: 240px; text-align: center; display: block!important; margin: 25px auto!important;}
	.main-logo img {width: 100%; max-width: 240px!important; margin: 0 auto!important; display: block!important;}
	
	.hero-wrapper img#main-hero {margin-bottom: -4px;}
	.hero-wrapper .hero-quicklinks {padding-bottom: 4px;}
	
	.hero-title h1 {font-size: 32px; line-height: 36px;}
	.hero-wrapper .hero-title {margin: 0 45px;}
	.hero-title p {font-size: 16px;}

	.hero-quicklinks a {width: calc(50% - 4px); margin: 2px; background: #ffc81f!important; box-shadow: none;}
	.hero-quicklinks a:hover {background: #f4f4f4!important; color: #2a2a2a!important;}
	.hero-quicklinks .wrapper-width {max-width: 100%; width: 100%;}
	.homepage-content {width: 100%; max-width: 100%; bottom: 0;}
	.about-wrapper {margin-top: -2px;}	
	.about-wrapper p {padding: 0 10px;}

	.box {float: none; width: 100%; margin: 0 auto;}
	.page-text-wrapper {padding: 40px 10px;}
	.page-text-wrapper .width {max-width: 100%;}
	.box img {margin: 0 auto;}
	div#sendrequest-btn {float: none; width: 100%;}
	
	.support-hero {padding: 55px 0; background-attachment: inherit;}
	.support-hero .title {font-size: 35px; margin-bottom: 0px;}
	.support-hero p span {font-size: 20px!important; display: block!important; margin-bottom: 10px;}
	
	.contact-wrapper img#main-hero {height: 150px;}
	.location-wrapper {margin-top: 30px;}
	.location-info p {font-size: 16px;}
	.contact-wrapper .title {font-size: 35px;}
	
	.site-host p {text-align: center; width: 100%;}
	.site-host .footer-icons {text-align: center; float: none; width: 100%;}
}

@media screen and (max-width: 700px) {	
	
	.hero-quicklinks a {width: 100%; margin: 2px 0;}
	.hero-wrapper .hero-title {margin: 0 20px; width: 100%; top: -8em;}
	
	.hdr-top {flex-direction: column; justify-content: center; padding: 10px 1em;}
	
	.footer-left, .footer-right {float: none; width: 100%;}
	.footer-right {margin-top: 0px!important;}
}

@media screen and (max-width: 620px) {	
		
	.location-info-left, .location-info-right {float: none; width: 100%;}
	.location-info-left {margin-bottom: 10px;}
	.contact-form {padding: 40px 20px;}
}

@media screen and (max-width: 580px) {	
	.hero-wrapper .hero-title {top: -6em;}
	.hero-title h1 {font-size: 24px; line-height: 28px; width: 65%;}
	.hero-title p {font-size: 14px; margin: 5px 0;}
	.hero-quicklinks a {font-size: 14px; padding: 10px;}
	
	.support-hero {text-align: center;}
	
	.tabs p {font-size: 16px;}
	.tabs ul.overview li {font-size: 18px;}
	.tabs ul li {font-size: 16px;}
}

@media screen and (max-width: 480px) {
	.hero-wrapper .hero-title {top: -90px;}
	.hero-title p {font-size: 12px;}
	.hero-title h1 {font-size: 17px; line-height: 22px;}
	.hero-title p {font-size: 11px;}
}