.dark,
.dark:hover,
.dark:visited,
.dark:active {
  color: #333333;
}
.gray,
.gray:hover,
.gray:visited,
.gray:active {
  color: #999999;
}
.med_gray,
.med_gray:hover,
.med_gray:visited,
.med_gray:active {
  color: #cccccc;
}
.green,
.green:hover,
.green:visited,
.green:active {
  color: #7fcc2c;
}
.white,
.white:hover,
.white:visited,
.white:active {
  color: #ffffff;
}
.blue,
.blue:hover,
.blue:visited,
.blue:active {
  color: #00a0e0;
}
.red,
.red:hover,
.red:visited,
.red:active {
  color: #d83d39;
}
.bg-dark {
  background-color: #333333;
}
.bg-dark-trans {
  background-color: rgba(51, 51, 51, 0.7);
}
.bg-green {
  background-color: #7fcc2c;
}
.bg-white {
  background-color: #ffffff;
}
.bg-white-trans {
  background-color: rgba(255, 255, 255, 0.7);
}
.bg-blue {
  background-color: #00a0e0;
}
.bg-red {
  background-color: #d83d39;
}
.box-shadow {
  box-shadow: 0 0.3em 1.5em rgba(0, 0, 0, 0.2);
}
.cursor_pointer {
  cursor: pointer;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Extra small devices (phones, less than 768px) */
/* No media query since this is the default in Bootstrap */
/* Small devices (tablets, 768px and up) */
@media (max-width: 768px) {
  .flex-center {
    display: block;
    justify-content: center;
    align-items: center;
  }
}
/* Medium devices (desktops, 992px and up) */
/* Large devices (large desktops, 1200px and up) */
html {
  background: #eeeeee;
}
body {
  background-image: #ffffff;
  font-family: 'Lato', 'Ubuntu', 'Arial';
  font-weight: 400;
  font-size: 14pt;
  color: #444;
  height: 100%;
  margin: 0 auto;
}
.bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: url("../img/bg.jpg") no-repeat;
  background-size: cover;
  opacity: 0.7;
}
.normal {
  font-weight: normal;
}
.light {
  font-weight: 300;
}
.bold {
  font-weight: 700;
}
.italic {
  font-style: italic;
}
.outer-wrap {
  background-color: #ffffff;
  box-shadow: 0 0.3em 1.5em rgba(0, 0, 0, 0.2);
}
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 0.3em 1.5em rgba(0, 0, 0, 0.2);
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.975);
}
header nav a {
  color: #333333;
  font-size: 11pt;
  padding-left: 0.6em;
  padding-right: 0.6em;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  border-left: thin solid rgba(153, 153, 153, 0.4);
  display: inline-block;
}
header nav a:hover {
  color: #d83d39;
  text-decoration: none;
}
header nav a:first-child {
  border-left: none;
}
section {
  min-height: auto;
}
footer {
  background: #333333;
}
.hero {
  height: 641px;
}
.hero .slide {
  height: 641px;
  background-size: cover;
}
#view-cart table.order tr td {
  vertical-align: middle;
}
.cover {
  background-size: cover;
}
#work-with-us {
  background: url("../img/wwu_bg.jpg") no-repeat center center;
  background-size: cover;
}
.shadow-sep {
  background: url('../img/shadow.jpg') no-repeat center center;
  width: 100%;
  background-size: cover;
  height: 12px;
}
.text-glow {
  text-shadow: 0 0em 1px rgba(255, 255, 255, 0.9);
}
article.product .thumb {
  height: 200px;
  background-size: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
}
article.product .title {
  font-size: 10pt;
  font-weight: bold;
  line-height: 14px;
  color: red;
}
article.product .price {
  font-size: 10pt;
  font-weight: bold;
  line-height: 14px;
  color: black;
  text-align: right;
}
article.product:hover {
  box-shadow: 0 0.3em 1.5em rgba(0, 0, 0, 0.2);
}
.btn {
  border-radius: 0;
  transition: all .1s linear;
}
.btn.green {
  color: #ffffff;
  background-color: #7fcc2c;
  width: 100%;
}
.btn.outline {
  border: 1px solid transparent;
  background-color: transparent ;
  transition: all .1s linear;
  font-weight: lighter;
  border-radius: 0;
}
.btn.outline.white {
  border-color: #ffffff;
  color: #ffffff;
}
.btn.outline.white:hover,
.btn.outline.white:visited {
  background: rgba(255, 255, 255, 0.3);
}
.overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.overlay .white {
  background: rgba(255, 255, 255, 0.91);
  color: #444;
}
.overlay .black {
  background: rgba(65, 65, 65, 0.94);
  color: white;
}
.form-control {
  border-radius: 0;
}
select.form-control.custom {
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('../img/drop-down.png');
  background-repeat: no-repeat;
  background-position: .4em center;
  text-indent: 9px;
  background-size: 12px;
  font-weight: lighter;
}
/* for IE 11 */
select.custom::-ms-expand {
  display: none;
}
/*==================================================
=            Bootstrap 3 Media Queries             =
==================================================*/
/* Custom, iPhone Retina */
/* Extra Small Devices, Phones */
/* Small Devices, Tablets */
/* Medium Devices, Desktops */
/* Large Devices, Wide Screens */
@media only screen and (min-width: 1200px) {
  body {
    width: 1200px;
    margin: 0 auto;
  }
}
/* Large Devices, Wide Screens */
@media only screen and (min-width: 1440px) {
  body {
    width: 1400px;
    margin: 0 auto;
  }
}
@media print {
  .hidden-print {
    display: none;
  }
}
