﻿/*=====================
	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%;
}

/*=====================
	base styles
=======================*/

html {
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

body {
  font-family: 'Open Sans Condensed', sans-serif;
  margin: 0;
  padding: 0;
  background: url(../siteart/p6.png) repeat;
  color: #000;
  overflow-x: hidden;
}

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: "Open Sans Condensed", sans-serif;
  margin: 0;
  padding: 0 0 1% 0;
  font-weight: 700;
  line-height: 1.4;
  color: #b12629;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

p {
  font-family: "Open Sans Condensed", sans-serif;
  padding: 0 0 2% 0;
  font-size: 18px;
  line-height: 1.5em;
  margin: 0;
  font-weight: 600;
  color: #333333;
}

strong {
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: 700;
}

/*=====================
	link styles
=======================*/

a.link:focus {
  outline: thin dotted;
  /*reset*/
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
  color: #b12629;
}

.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;
}

.bottomlink {
  text-align: center;
}

/*=====================
	list styles
=======================*/

ul.list {
  margin: 0;
  padding: 0 0 5% 7%;
}

ul.list li {
  font-size: 16px;
}

/*=====================
	header styles
=======================*/

.topbar {
  background: #231f20;
  padding: 2px 0;
  font-size: 14px;
  color: #fff;
}

.topbar p {
  padding: 0 0 0 0;
}

.topbar i {
  margin-right: 5px;
}

.topbar ul {
  list-style: none;
}

.topbar ul li {
  float: left;
  padding: 7px 40px 7px 0;
}

.topbar ul li:last-child {
  float: right;
  padding: 7px 0 7px 0;
}

header {
  width: 100%;
  margin: 0;
  padding: 60px 0 0;
  background: url(../siteart/headerbg.jpg) center center repeat;
  color: #fff;
}

header p {
  color: #fff;
  font-weight: 600;
}

.headerwrap {
  width: 96%;
  max-width: 1170px;
  margin: 0 auto;
}

.logo {
  float: left;
  padding-bottom: 5px;
}

.address {
  text-align: right;
  padding-top: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.address p a {
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
}

.address a[href^="tel:"] {
  color: #fff !important;
}

.address p a:hover {
  opacity: 0.6 !important;
  color: #fff !important;
}

.address h2 {
  padding: 0;
  color: #000;
}

.address h5 {
  padding: 0;
  color: #000;
}

/*=====================
	nav styles
=======================*/

/* see menumaker.css for additional nav styles */

/*=====================
	content styles
=======================*/

.wrapper {
  width: 96%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0;
}

.container {
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
}

.warranty {
  background: #fff;
}

.features li {
  list-style: none;
}

/*=====================
	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, 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 0.5s ease-in-out;
}

.cycle-pager span.cycle-pager-active {
  color: #2885b3;
}

.cycle-pager > * {
  cursor: pointer;
}

/*=====================
	product styles
=======================*/

.brandgrid {
  text-align: center;
  margin: 0 auto;
  width: 100%;
}

.brandbox {
  background: #fff;
  padding: 1%;
  margin: 1%;
  width: 25%;
  display: inline-block;
  *zoom: 1;
  *display: inline;
  vertical-align: middle;
  -moz-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
}

.brandbox:hover img {
  -moz-transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.brandbar {
  background: #fff;
  width: 100%;
  margin: 0 auto;
  padding: 30px 0;
  text-align: center;
}

.white-background {
  background: #fff;
  width: 100%;
}

/*=====================
	banner styles
=======================*/

.homecopy {
  color: #fff;
  padding: 2% 0;
}

/*=====================
	Contact / Form styles
=======================*/

#formpage {
  padding: 0 10px;
}

form {
  margin: 0 0 0;
}

label {
  display: block;
  font-size: 16px;
  padding-top: 4%;
  width: 100%;
}

.contact input {
  font-family: "Open Sans", Arial, sans-serif;
  border: #999999 solid 1px;
  border-radius: 2px;
  padding: 1% 0;
  font-size: 14px;
  width: 100%;
  margin-bottom: 10px;
}

.contact 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;
}

.contact select {
  font-family: "Open Sans", Arial, sans-serif;
  border: #999999 solid 1px;
  padding: 1%;
  font-size: 14px;
  width: 102%;
}

.contact textarea {
  font-family: "Open Sans", Arial, sans-serif;
  border: #999999 solid 1px;
  border-radius: 2px;
  padding: 1% 0;
  font-size: 14px;
  width: 100%;
}

.sendbutton:hover {
  background-color: #b12629;
  color: #fff;
  cursor: pointer;
}

.contact h5 {
  color: #333333;
}

.contact-form-one input, .contact-form-one textarea {
	width: 100%;
	font-family: 'Open Sans', sans-serif;
	padding: 10px;
	box-sizing: border-box;
}

/*=====================
	layout styles
=======================*/

.padit {
  padding: 2% 0;
}

.welcome h1 {
  color: #000;
}

.welcome {
  background: url(../siteart/bright_squares.png) repeat;
  border-bottom: #ccc 1px solid;
}

.slogan {
  background: url(../siteart/scrollingbg.jpg) repeat;
  text-align: center;
  border-bottom: #000 1px solid;
  padding: 1% 0;
}

.slogan h1,
.partshead h1,
.servicehead h1 {
  color: #fff;
  font-size: 56px;
  text-transform: uppercase;
  padding: 0 0 0 0;
}

.slogan span,
.partshead span,
.servicehead span {
  color: #cc2c2f;
}

#callus {
  text-align: center;
}

.partshero img,
.servicehero img {
  width: 100%;
}

.partshead,
.servicehead {
  width: 100%;
}

.partscopy h3 {
  text-align: center;
}

.partsthumbs {
  text-align: center;
  background-color: #fff;
}

#shortened {
  max-height: 450px;
  overflow: hidden;
}

.logos {
  background: #fff;
  text-align: center;
  margin: 0 auto;
}

.partnerlogo {
  width: 22%;
  margin: 1%;
  display: inline-block;
}

.scrolling {
  display: block;
  background: #b12629;
}

.ribbon {
  text-align: center;
  color: #fff;
  background: #38b749;
  border-bottom: #216c2b 5px solid;
  position: relative;
}

.ribbon h2 {
  color: #fff;
}

.linkbox {
  display: block;
  position: relative;
  text-align: center;
  padding: 20px;
  background: #fff;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.75);
}

.linkbox h3 {
  color: #000;
  text-transform: uppercase;
}

.linkbox a,
.modal .view a {
  margin: 5px 0;
  font-weight: 700;
  color: #fff !important;
  display: inline-block;
  *zoom: 1;
  *display: inline;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.modal .view {
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
}

.linkbox a:hover {
  color: #b12629;
}

.productbox {
  display: block;
  position: relative;
  text-align: center;
  background: #fff;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.75);
}

.productbox img {
  width: 100%;
  height: auto;
}

.productbox h3 {
  overflow: hidden;
  text-align: center;
}

.productbox p {
  padding: 10px 30px;
}

#trailercopy {
  margin-top: 60px;
}

#stockcopy {
  margin-top: 40px;
}

.specbutton {
  background: url(../siteart/specbuttonbkgd.jpg);
  padding: 5px;
  color: #fff;
  height: 20px;
  width: 50%;
  margin: 0 auto;
  margin-top: 30px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
}

.specs {
  display: inline-block;
  *zoom: 1;
  *display: inline;
  width: 100%;
  height: 100%;
}

.specbutton:hover {
  background: url(../siteart/navbg.jpg);
  color: #fff;
}

.view {
  background: url(../siteart/specbuttonbkgd.jpg);
  margin-top: 40px;
}

.viewlast {
  background: url(../siteart/specbuttonbkgd.jpg);
  margin-top: 5px;
}

.view:hover,
.viewlast:hover {
  background: url(../siteart/navbg.jpg);
}

/*.viewfinal{margin-top:8px;}*/

#maincopy {
  text-align: center;
}

.sitemap {
  background: url(../siteart/escheresque_ste.png) repeat;
  color: #fff;
}

.sitemap p {
  line-height: 2em;
}

.sitemap i {
  font-size: 42px;
  margin-right: 20px;
}

.buttonrow {
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.catbutton {
  font-size: 16px;
  font-weight: bold;
  background: #000;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 8px;
  color: #fff;
  text-align: center;
  margin: 1%;
  display: inline-block;
  *zoom: 1;
  *display: inline;
}

.catbutton:hover {
  background: #b12629;
  -moz-transition: 0.25s all ease;
  -webkit-transition: 0.25s all ease;
  -o-transition: 0.25s all ease;
  transition: 0.25s all ease;
}

/*--------Inventory Styles--------*/

.inv-wrap {
  padding: 2% 0;
}

.hosted-content .pagination > .drop-down-form select {
  width: 10% !important;
}

.hosted-content h1 {
  font-size: 30px !important;
}

.currency-capital-price-container img {
  display: none !important;
}

.scrolling-wrap {
  width: 100%;
  height: 90px;
  overflow: hidden;
}

.scrolling {
  width: 100%;
  height: 92px;
}

.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%;
}

.col:first-child {
  margin-left: 0;
}

#first {
  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%;
}

/*=====================
	footer styles
=======================*/

.pagebottom {
  background: url(../siteart/footerbg.jpg) center center no-repeat;
  padding: 10px 0;
  border-top: #474747 1px solid;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}

.pagebottom p {
  color: #fff;
  font-size: 14px;
}

.pagebottom a {
  color: #fff;
}

.pagebottom a:hover {
  color: #ffcd07;
}

footer {
  margin: 0 auto;
  width: 100%;
}

.pagebottom li {
  display: inline-block;
  *zoom: 1;
  *display: inline;
}

#footernav {
  text-align: center;
  font-family: 'Open Sans Condensed', sans-serif!important;
}

#footernav a {
  padding: 10px;
  font-size: 18px;
  text-transform: uppercase;
}

a.footerlink:link,
a.footerlink:visited,
a.footerlink:active {
  text-decoration: none;
  font-size: 12px;
  color: #ccc;
  border-bottom: none;
}

a.footerlink:hover {
  text-decoration: none;
  font-size: 12px;
  color: #fff;
}

.footertext {
  font-size: 12px;
  color: #ccc;
}

.smallfootertext {
  font-size: 12px;
  color: #ccc;
}

.divfooter {
  text-align: left;
  margin: 0 auto;
  font-family: 'Open Sans Condensed', sans-serif!important;
}

.footerlogo {
  padding: 20px 0;
}

/*=====================
	Responsive styles
=======================*/

@media screen and (max-width: 1500px) {
  #shortened {
    max-height: 450px;
  }
}

@media screen and (max-width: 1350px) {
  .brandbar {
    width: 90% !important;
  }
}

@media screen and (max-width: 1024px) {
  .linkbox h3 {
    font-size: 18px;
  }

  .view {
    margin-top: 40px;
  }

  .viewlast {
    margin-top: 13px;
  }

  .address p {
    font-size: 14px;
  }

  .productbox p {
    padding: 10px 30px;
  }

  .productbox h3 {
    padding: 20px 30px 0 30px;
  }

  .specbutton {
    margin-bottom: 15px;
  }

  .brandbar {
    width: 80% !important;
  }
}

@media screen and (max-width: 800px) {
  .logo,
  .logo img {
    float: none;
    text-align: center;
    margin: 0 auto !important;
  }

  .address {
    text-align: center;
    padding-top: 10px;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

  h4 {
    font-size: 16px;
  }

  h5 {
    font-size: 14px;
  }

  p {
    font-size: 12px;
  }

  .address p,
  .logo p {
    font-size: 16px;
  }

  .view {
    margin-top: 40px;
  }

  .viewlast {
    margin-top: 8px;
  }

  .brandbox {
    width: 40%;
    margin: 2%;
  }
}

@media screen and (max-width: 600px) {
  .topbar ul li {
    float: none;
    padding: 7px 0 7px 0;
  }

  .topbar ul li:last-child {
    float: none;
    padding: 7px 0 7px 0;
  }

  .arrowdown {
    display: none;
  }

  #trailercopy {
    margin-top: 0px;
  }

  #stockcopy {
    margin-top: 0px;
  }

  .view,
  .viewlast {
    margin-top: 30px;
  }
}

/*  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%;
  }

  .divfooter {
    text-align: center;
  }

  .footerlogo img {
    margin: 0 auto !important;
  }

  .catbutton {
    width: 80%;
    display: block;
    margin: 2% auto;
  }
}

@media screen and (max-width: 447px) {
  .topbar {
    font-size: 12px;
    text-align: center;
  }

  .address h2 {
    font-size: 24px;
  }

  .pagebottom {
    padding: 20px 0;
    text-align: center;
  }

  .divfooter {
    text-align: center;
  }

  .footerlogo {
    padding: 20px 0;
    display: none;
  }
}

@media screen and (max-width: 414px) {
  h1 {
    font-size: 16px;
  }

  h2 {
    font-size: 15px;
  }

  h3 {
    font-size: 14px;
  }
}
