@charset "utf-8";
/*****************
* @this - Styles for objects found throughout the whole site.
* @mobile.css - Must be defined first, styles to use for mobile devices
* @480_960.css - Overwrites styles from mobile for display on larger devices
* @960.css - Overwrites styles from mobile.css and 480_960.css for large displays
*****************/

/* CSS Document */

html, body {
  font-family: 'Roboto', sans-serif;
  font-size: 100%;
  margin: 0;
  height: 100%;
}

h1 {
  margin: 0px 0px 10px 0px;
  line-height: 1.3em;
}

h2 {
  margin: 0px 0px 10px 0px;
  line-height: 1.1em;
}

p {
  margin: 5px 0;
  line-height: 1.2em;
}

a, a:visited {
  color: #0066C0;
  text-decoration: none;  
}

a:hover {
  color: #900;
  cursor: pointer;
}

fieldset {
  margin-bottom: 20px;
  clear: both;
}

legend {
  font-weight: bold;
}

/***** PRE-STORE Styles *****/
.oa_site_container {
  float: left;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #F7F6F3;
}

.oa_content_container {
  max-width: 479px;
  margin: 4% auto;
  background-color: rgba(255,255,255,0.92);
  padding: 20px;
  text-align: center;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,.22);
}

img#logo {
  width: 100%;
  max-width: 300px;
}

/***** STORE Styles *****/

#page-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}

#header-container {
  float: left;
  width: 100%;
  min-height: 45px;
  color: #FFF;
  background: #232f3e;
  background: -moz-linear-gradient(top, #1c2632 0%, #232f3e 44%, #1c2632 100%);
  background: -webkit-linear-gradient(top, #1c2632 0%,#232f3e 44%,#1c2632 100%);
  background: linear-gradient(to bottom, #1c2632 0%,#232f3e 44%,#1c2632 100%);
}

#site-name {
  width: 100%;
  font-size: 150%;
  font-weight: bold;
  text-align: center;
  padding: 0px;
  margin-top: 5px;
}

#site-name a,
#site-name a:hover,
#site-name a:visited {
  color: #FFF;
}

#mobile-menu-toggle {
  display: none;
}

#menu-container {
  width: 250px;
  background: #E1E1E1;
}

#body-container {
  width: 100%;
  float: left;
}

#body-container.with_menu {
  width: calc(100% - 250px);
}

#content-container {
  background-color: rgba(255,255,255,0.92);
  padding: 20px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

/***** MENU Styles *****/

.nav_menu_header {
  float: left;
  width: 100%;
  font-weight: bold;
  font-size: larger;
  margin-top: 20px;
  margin-left: 10px;
  margin-bottom: 10px;
}

#menu-container ul {
  float: left;
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

#menu-container li a {
  display: block;
  color: #000;
  padding: 8px 16px;
  text-decoration: none;
}

#menu-container li a:hover {
  background-color: #555;
  color: #FFF;
}

/* Categories */
.category-container {
  float: left;
  margin: 10px;
  max-width: 300px;
}

.category-container:hover a {
  color: #900;
}

.category-image img {
  width: 100%;
  border-radius: 5%;
}

.category-name {
  width: 100%;
  text-align: center;
  font-weight: bold;
}

.category-name a {
  font-size: 125%;
  text-decoration: none;
}

/* Product List */
.product-list-container {
  position: relative;
  float: left;
  margin: 10px;
  padding: 10px;
  max-width: 200px;
  height: 335px;
  border: #ccc 1px solid;
}

.product-list-image img {
  width: 100%;
  display: block;
}

.product-list-name {
  float: left;
  width: 100%;
  margin-top: 10px;
}

.product-list-name a {
  font-weight: bold;
  text-decoration: none;
  display: block;
  line-height: 17px;
}

.product-list-brand {
  float: left;
  width: 100%;
  font-size: smaller;
}

.product-list-soldout {
  float: left;
  width: 100%;
  margin-top: 8px;
  color: #900;
  font-weight: bold;
}

.product-list-retail {
  float: left;
  width: 100%;
  margin-top: 8px;
}

.product-list-retail .retail-currency,
.product-list-retail .retail-dollars,
.product-list-retail .retail-cents {
  float: left;
}

.product-list-retail .retail-currency,
.product-list-retail .retail-cents {
  font-size: 12px;
  line-height: 14px;
  margin-top: 1px;
}

.product-list-retail .retail-cents {
  margin-left: 2px;
}

.product-list-retail .retail-dollars {
  font-size: 21px;
  line-height: 21px;
}

/* Product Page */
.product-container {
  display: inline-block;  
}

.product-container  .product_image {
  float: left;
  margin-right: 20px;
}

#product-image-container {
  float: left;
}

.product-details-container .product_name h2 {
  margin-bottom: 0px;
  line-height: 1em;
}

.product-details-container {
  float: left;
  width: 365px;
}

.product-details-container .product_retail_lbl,
.product-details-container .product_quantity_lbl {
  float: left;
  margin-right: 5px;
  font-weight: bold;
}

.product_attribute_container .product_attribute_lbl {
  float: left;
  margin-right: 5px;
  font-weight: bold;
}

.product_attribute_container .product_attribute_desc {
  font-size: smaller;
}

input.product_quantity {
  text-align: right;
  max-width: 50px;
}

.gallery-container {
  float: left;
  clear: both;
}

.gallery-image {
  float: left;
  position: relative;
  width: 100px;
  height: 100px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.gallery-image .youtube_cover {
  position: absolute;
  width: 100%;
  height: 100%;
}


/* BUTTONS */
.greenButton,
.greenButton_small {
  display: inline-block;
  margin: 5px 5px 5px 0px;
  padding: 4px 10px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #FFF;
  white-space: nowrap;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
  cursor: pointer;
  text-decoration: none;

  /*Background*/
  background-color: #9AC63C;
  background-image: -moz-linear-gradient(top, #679010, #9AC63C);
  background-image: -ms-linear-gradient(top, #679010, #9AC63C);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#679010), to(#9AC63C));
  background-image: -webkit-linear-gradient(top, #679010, #9AC63C);
  background-image: -o-linear-gradient(top, #679010, #9AC63C);
  background-image: linear-gradient(top, #679010, #9AC63C);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#679010', endColorstr='#9AC63C', GradientType=0);

  /*Border*/
  border: 1px solid;
  border-color: #9AC63C #9AC63C #000000;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -khtml-border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.greenButton_small {
  font-size: 14px;
}

.greenButton:hover,
.greenButton_small:hover {
  color: #FFF;
  background-color: #9AC63C;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
  -moz-transition: background-position 0.1s linear;
  -ms-transition: background-position 0.1s linear;
  -o-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear;
}

.greenButton:visited,
.greenButton_small:visited {
  color: #FFF;
}

.redButton,
.redButton_small {
  display: inline-block;
  margin: 5px 5px 5px 0px;
  padding: 4px 10px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #FFF;
  white-space: nowrap;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
  cursor: pointer;
  text-decoration: none;

  /*Background*/
  background-color: #f20a00;
  background-image: -moz-linear-gradient(top, #AA0300, #f20a00);
  background-image: -ms-linear-gradient(top, #AA0300, #f20a00);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#AA0300), to(#f20a00));
  background-image: -webkit-linear-gradient(top, #AA0300, #f20a00);
  background-image: -o-linear-gradient(top, #AA0300, #f20a00);
  background-image: linear-gradient(top, #AA0300, #f20a00);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#AA0300', endColorstr='#f20a00', GradientType=0);
  
  /*Border*/
  border: 1px solid;
  border-color: #f20a00 #f20a00 #000000;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -khtml-border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.redButton_small {
  font-size: 14px;
}

.redButton:hover,
.redButton_small:hover {
  color: #FFF;
  background-color: #f20a00;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
  -moz-transition: background-position 0.1s linear;
  -ms-transition: background-position 0.1s linear;
  -o-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear;
}

.redButton:visited,
.redButton_small:visited {
  color: #FFF;
}

