@charset "utf-8";
/* CSS Document */


/* TYPOGRAPHY */

html, body {padding: 0px; margin: 0px;}

body {
	font-family: 'Hind', sans-serif;
	font-weight: 400;
	font-size: 1rem;
    line-height: 1.5;
}

h1 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 2.5rem;
    line-height: 1.2;
    text-transform: uppercase;
}

h2 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 2rem;
    line-height: 1.2;
    text-transform: uppercase;
}

h3 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 1.75rem;
    line-height: 1.2;
    text-transform: uppercase;
}

h4 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
}


/* HEADER */

.header{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding: 16px 0px;
    -webkit-box-shadow: 0 8px 6px -6px #888888;  /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
    -moz-box-shadow:    0 8px 6px -6px #888888;  /* Firefox 3.5 - 3.6 */
    box-shadow:         0 8px 6px -6px #888888;  /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
}
        
.item-nav {
    color: #f76502;
    font-size: 18px;
    font-family: 'Hind', sans-serif !important;
}

.itemdetails a {
    color: #f76502 !important;
    text-decoration: none !important;
}

.itemdetails {
    padding: 0px 20px;
    display: inline;
    float: left;
}

/* NAVIGATION */

.navigation {
    height: 70px;
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif !important;
}

.nav-container nav {
    float: right;
}

.nav-container nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-container nav ul li {
    float: left;
    position: relative;
}

.nav-container nav ul li a,
.nav-container nav ul li a:visited {
    display: block;
    padding: 0 20px;
    line-height: 70px;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 30px;
}

.nav-container nav ul li a:hover,
.nav-container nav ul li a:visited:hover {
    color: #f76502;
}
/* Mobile navigation */

.nav-mobile {
    display: none;
    position: relative;
    top: 0;
    right: 0;
    height: 70px;
    width: 70px;
}

@media only screen and (max-width: 815px) {
  .nav-mobile {
    display: block;
  }
  .nav-container nav {
    width: 100%;
    padding: 10px 0 10px;
  }
  .nav-container nav ul {
    display: none;
  }
  .nav-container nav ul li {
    float: none;
  }
  .nav-container nav ul li a {
    padding: 6px 15px;
    line-height: 20px;
    font-size: 22px;
  }
}

@media screen and (min-width: 816px) {
  .nav-list {
    display: block !important;
  }
}

#nav-toggle {
  position:relative;
  left: 18px;
  top: 22px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}

#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 5px;
  width: 35px;
  background: #000;
  position: absolute;
  display: block;
  content: '';
  transition: all 300ms ease-in-out;
}

#nav-toggle span:before {
  top: -10px;
}

#nav-toggle span:after {
  bottom: -10px;
}

#nav-toggle.active span {
  background-color: transparent;
}

#nav-toggle.active span:before,
#nav-toggle.active span:after {
  top: 0;
}

#nav-toggle.active span:before {
  transform: rotate(45deg);
}

#nav-toggle.active span:after {
  transform: rotate(-45deg);
}


/* SLIDESHOW */

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1400px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 2s;
  animation-name: fade;
  animation-duration: 2s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* INVENTORY SEARCH */

.inventory-search {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 10px 0px;
}

.inventory-search h3 {
    text-transform: uppercase;
    padding-right: 50px;
    text-align: center;
	font-size: 22px;

}
.searchTerm {
       background: #eeeeee;
    border: 1px solid #b5b5b5;
    width: 300px;
    transition: .3s all;
    padding: 8px;
    box-sizing: border-box;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif !important;
}

.searchButton {
    background: #fff;
    border: none;
    font-size: 20px;
    color: #f76502;
	cursor: pointer;
	transition:.3s all;
}
.searchButton:hover{color:#333;}

/* SCROLLING INVENTORY */

.scrolling-wrap {
    width:100%;
    height:90px;
    overflow:hidden;
    border-top: 5px solid #f76502;
    border-bottom: 5px solid #f76502;
}
 
.scrolling {
    width:100%;
    height:92px;
}


/* WELCOME */

.welcome {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 50px 0px;
    background-image: url(/../siteart/woodbg.jpg);
    background-repeat: repeat;
	background-color: #000;
    color: #fff;
}

.welcome h1 {
    padding: 0px 50px;
}

.welcomecontent, .contactcontent {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1050px;
}

.welcomeleft, .contactleft {
    width: 60%;
    padding: 0px 50px;
}

.welcomeright, .contactright {
    width: 40%;
    padding: 0px 50px;
}

.hourstitle {
    text-transform: uppercase;
    font-size: 24px;
    color: #f76502;
}

.hours {
    font-size: 20px;
    color: #f76502;
}

/* MANUFACTURERS */

.manu, .manuhead {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.manuhead {width: 100%;}

.manu {padding: 30px 0px;}

.manuhead {padding: 10px 0px;}

.logo {
    max-height: 100px;
    padding: 10px 30px;
}

/* CONTACT US */

.contact-us {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 0px;
    background-image: url(/../siteart/woodbg.jpg);
    background-repeat: repeat;
	background-color: #000;
    color: #fff;
}

.contact-us h1 {
    padding: 0px 50px;
    width: 100%;
    text-align: center;
}

/*control the Captcha */
.CaptchaPanel {
margin:auto !important;
padding:0 0 0 0 !important;
text-align: center;
line-height:normal !important;
}

.CaptchaImagePanel {
margin:0 0 0 0;
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;
}

.CaptchaAnswerPanel {
margin:0 0 0 0;
padding:2px 0px 2px 0px !important;
}

.CaptchaWhatsThisPanel {
	line-height:0;
	margin:0 0 0 0;
	padding:8px 0 8px 0 !important;
}
.CaptchaWhatsThisPanel a {color:#fff !important;padding: 10px 0 !important;display: block !important;}
.CaptchaWhatsThisPanel a:hover {text-decoration:none;} 



/* FOOTER */

footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: #000;
    color: #fff;
    font-size: 14px;
    padding: 20px;
    text-align: center;
}

footer a {
    color: #fff; 
    text-decoration: underline;
}

.footertext{
    width: 50%;
}

/* FORMS */

/* contact form fields */
.flex-outer,
.flex-inner {
  list-style-type: none;
  padding: 0;
}

.flex-outer {
  max-width: 815px;
  margin: 0 auto;
}

.flex-outer li,
.flex-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.flex-inner {
  padding: 0 8px;
  justify-content: space-between;  
}

.flex-outer > li:not(:last-child) {
  margin-bottom: 20px;
}

.flex-outer li label,
.flex-outer li p {
  padding: 8px;
  font-weight: 300;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.flex-outer > li > label,
.flex-outer li p {
  flex: 1 0 120px;
  max-width: 220px;
}

.flex-outer > li > label + *,
.flex-inner {
  flex: 1 0 284px;
}

.flex-outer li p {
  margin: 0;
}

.flex-outer li input:not([type='checkbox']),
.flex-outer li textarea {
  padding: 15px;
  border: none;
	font-family: 'Montserrat', sans-serif;
}

.formbutton {
  margin: auto;
  padding: 8px 16px;
  border: none;
  background: #f76502;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .09em;
  border-radius: 2px;
}

.flex-inner li {
  width: 100px;
}


/* LAYOUT */

.w-100 {width: 100% !important;}

.mr {margin-right: .5em;}


/* MEDIA QUERIES */

/*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575px) { 
    .searchTerm {width: 200px;}
    
    .welcomeleft, .welcomeright {width: 100%; padding: 0px 30px; text-align: center;}
    
    .contactleft, .contactright {width: 100%; padding: 0px 30px;}
    
    .contactright {text-align: center;}
    
    .formbutton {margin: 10px auto;}
    
    .welcome h1 {font-size: 1.8em; padding: 0px 30px; text-align: center;}
    
    .manu h2 {font-size: 1.5em; text-align: center;}
    
    .footertext{width: 100%;}

}

/*Small devices (landscape phones, less than 768px)*/
@media (min-width: 576px) and (max-width: 767px) {
    
    .welcomeleft, .welcomeright, .contactleft, .contactright {width: 100%;}
    
    .contactright {text-align: center;}
    
    .footertext{width: 100%;}
 
}

/*Medium devices (tablets, less than 992px)*/
@media (min-width: 768px) and (max-width: 991px) {

}

/*Large devices (desktops, less than 1200px)*/
@media (min-width: 992px) and (max-width: 1199px) {
    

}

/*Extra large devices (large desktops)*/
@media (min-width: 1200px) {

    
}

/*Extra EXTRA large devices (Extra large desktops)*/
@media (min-width: 1400px) {   

   
}

/*Extra EXTRA large devices (Extra large desktops)*/
@media (min-width: 1600px) {   

}