/* Reset and Normalize tags */
* {
  box-sizing: border-box;
}

html, body, div, applet, object, iframe, h1, h2, h3, h4, h5, h6, p,
blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn,
em, 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, article, aside,
canvas, details, embed, figure, figcaption, footer, header, hgroup, menu,
nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  vertical-align: baseline;
}

body {
  line-height: 1;
  background-color: #FFF;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

sup {
  vertical-align: super;
  font-size: 10px;
  color: #111;
  font-family: monospace;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

strong,
b {
  font-weight: bold;
  font-family: inherit;
}

em,
i {
  font-style: italic;
  font-family: inherit;
}

u {
  font-family: inherit;
}

p {
  line-height: 1.8;
}

/* Common styles accessible via classes*/
.noScroll {
  overflow: hidden;
}

.truncateEllipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.underline {
  text-decoration: underline;
}

.capitalize {
  text-transform: capitalize;
}

.uppercase {
  text-transform: uppercase;
}

.strike {
  text-decoration: line-through;
}

.center {
  text-align: center;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.floatLeft {
  float: left;
}

.floatRight {
  float: right;
}

.highlight {
  background: url(/assets/images/ochreStroke.png) no-repeat left center;
  background-size: 100% 100%;
  padding: 5px 15px 5px 12px;
  margin: 0 -5px 0 -5px;
}

/* Basic Structural Page Elements */
html, body {
  min-width: 320px;
}

#wrapper {
  width: 100%;
}

footer {
  font-size: 12px;
  width: 100%;
  color: #FFF;
  background: url(/assets/images/footerBG.jpg) no-repeat;
  background-size: cover;
  font-family: Helvetica, Arial, sans-serif;
  padding: 0;
}
footer #footerInner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 25px 10px 10px;
}
footer .center a {
  color: white;
}
footer p {
  font-size: 11px;
  line-height: 12px;
  margin-bottom: 0;
  padding: 5px 0;
}
footer a {
  color: #666;
}

@media (max-width: 640px) {
  #wrapper {
    width: 100%;
  }
  footer #footerInner {
    max-width: 100%;
  }
}
#header {
  background-color: #000;
}
#header #headerInner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}
#header #headerInner #headerLogo {
  float: left;
}
#header #headerInner #headerLogo img {
  margin-top: 10px;
}

.stockWrapper {
  margin-top: 20px;
  float: right;
  font-size: 18px;
  color: #FFF;
}
.stockWrapper .stock {
  color: #fad625;
}
.stockWrapper img {
  margin-right: 10px;
  vertical-align: middle;
}

@media (max-width: 500px) {
  #header #headerInner #headerLogo {
    float: none;
    margin: 0 auto;
    display: block;
    text-align: center;
  }
  .stockWrapper {
    float: none;
    margin-top: 0;
    padding-top: 10px;
    text-align: center;
    margin-top: 0;
  }
}
@media (max-width: 375px) {
  #header #headerInner {
    padding: 5px;
  }
  .stockWrapper {
    font-size: 17px;
    padding-top: 2px;
  }
  .stockWrapper img {
    margin-right: 5px;
    margin-top: 0;
  }
}
#inventoryBottom {
  position: fixed;
  bottom: 0px;
  width: 100%;
  z-index: 9999;
  background-color: #900;
  display: none;
}
#inventoryBottom #inventoryBottomInner {
  color: #FFF;
  font-weight: bold;
  text-align: center;
  padding: 10px;
}
#inventoryBottom #inventoryBottomInner #counterLeft {
  padding: 2px 4px;
  background-color: #FFF;
  color: #900;
  border-radius: 5px;
}

@media (max-width: 600px) {
  #inventoryBottom #inventoryBottomInner {
    color: #FFF;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    font-size: 13px;
  }
}
/* Form Elements */
.formRow {
  position: relative;
  margin: 10px;
  line-height: 1;
  display: none;
  /* Dynamic placeholders */
}
.formRow.active {
  display: block;
}
.formRow .placeholder {
  position: absolute;
  left: 11px;
  top: 0;
  font-size: 14px;
  line-height: 50px;
  color: #999;
}
.formRow .placeholder.shifted {
  position: absolute;
  top: 7px;
  left: 7px;
  padding: 5px;
  line-height: 0;
  font-size: 12px;
}
.formRow .inlineError,
.formRow .inlineWarning {
  background-color: #B00;
  padding: 0 10px;
  margin-top: 0;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  display: none;
  width: 100%;
  margin: 0 auto;
  font-size: 15px;
  color: #FFF;
}
.formRow .inlineError p, .formRow .inlineError li,
.formRow .inlineWarning p,
.formRow .inlineWarning li {
  margin: 0;
  font-size: 14px;
  padding: 5px 0;
  line-height: 18px;
}
.formRow .inlineWarning {
  background-color: #7ac2f7;
  color: #000;
}

.inputContainer {
  display: block;
  position: relative;
}
.inputContainer.inline {
  width: 33%;
  margin-right: 5%;
  margin-top: 0;
  margin-left: 0;
  float: left;
}
.inputContainer.required .placeholder::after {
  content: " *";
  color: #B00;
  font-size: 16px;
  font-weight: bold;
}

input[type=text],
input[type=password],
input[type=number],
input[type=phone],
input[type=email],
select,
textarea {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  padding: 10px;
  border: none;
  border: 1px solid #444;
  background-color: #FFF;
  font-size: 16px;
  line-height: 20px;
  border-radius: 3px;
}
input[type=text].inputError, input[type=text].inputError:focus,
input[type=password].inputError,
input[type=password].inputError:focus,
input[type=number].inputError,
input[type=number].inputError:focus,
input[type=phone].inputError,
input[type=phone].inputError:focus,
input[type=email].inputError,
input[type=email].inputError:focus,
select.inputError,
select.inputError:focus,
textarea.inputError,
textarea.inputError:focus {
  border-bottom: none;
  border-radius: 3px 3px 0 0;
  color: #B00;
  border-color: #B00;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScxMicgaGVpZ2h0PScxMicgZmlsbD0nbm9uZScgc3Ryb2tlPScjZGMzNTQ1JyB2aWV3Qm94PScwIDAgMTIgMTInPjxjaXJjbGUgY3g9JzYnIGN5PSc2JyByPSc0LjUnLz48cGF0aCBzdHJva2UtbGluZWpvaW49J3JvdW5kJyBkPSdNNS44IDMuNmguNEw2IDYuNXonLz48Y2lyY2xlIGN4PSc2JyBjeT0nOC4yJyByPScuNicgZmlsbD0nI2RjMzU0NScgc3Ryb2tlPSdub25lJy8+PC9zdmc+);
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  background-position: right calc(0.375em + 0.1875rem) center;
  padding-right: calc(1.5em + 0.75rem);
  background-repeat: no-repeat;
  animation-name: autofill-invalid;
  animation-fill-mode: both;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input[type=text].inputSuccess, input[type=text].inputSuccess:focus,
input[type=password].inputSuccess,
input[type=password].inputSuccess:focus,
input[type=number].inputSuccess,
input[type=number].inputSuccess:focus,
input[type=phone].inputSuccess,
input[type=phone].inputSuccess:focus,
input[type=email].inputSuccess,
input[type=email].inputSuccess:focus,
select.inputSuccess,
select.inputSuccess:focus,
textarea.inputSuccess,
textarea.inputSuccess:focus {
  border-radius: 3px;
  color: #000;
  background-color: #d9f2e9;
  border-color: #00aa6e;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPSc4JyBoZWlnaHQ9JzgnIHZpZXdCb3g9JzAgMCA4IDgnPjxwYXRoIGZpbGw9JyMyOGE3NDUnIGQ9J00yLjMgNi43M0wuNiA0LjUzYy0uNC0xLjA0LjQ2LTEuNCAxLjEtLjhsMS4xIDEuNCAzLjQtMy44Yy42LS42MyAxLjYtLjI3IDEuMi43bC00IDQuNmMtLjQzLjUtLjguNC0xLjEuMXonLz48L3N2Zz4=);
  padding-right: calc(1.5em + 0.75rem);
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  background-position: right calc(0.375em + 0.1875rem) center;
  padding-right: calc(1.5em + 0.75rem);
  background-repeat: no-repeat;
  animation-name: autofill-valid;
  animation-fill-mode: both;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* Hide number wheel for number-type elements...we're only using number inputs for the mobile T9 keyboard support */
input[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
  margin: 0;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}

@keyframes autofill-invalid {
  to {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScxMicgaGVpZ2h0PScxMicgZmlsbD0nbm9uZScgc3Ryb2tlPScjZGMzNTQ1JyB2aWV3Qm94PScwIDAgMTIgMTInPjxjaXJjbGUgY3g9JzYnIGN5PSc2JyByPSc0LjUnLz48cGF0aCBzdHJva2UtbGluZWpvaW49J3JvdW5kJyBkPSdNNS44IDMuNmguNEw2IDYuNXonLz48Y2lyY2xlIGN4PSc2JyBjeT0nOC4yJyByPScuNicgZmlsbD0nI2RjMzU0NScgc3Ryb2tlPSdub25lJy8+PC9zdmc+);
  }
}
@keyframes autofill-valid {
  to {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPSc4JyBoZWlnaHQ9JzgnIHZpZXdCb3g9JzAgMCA4IDgnPjxwYXRoIGZpbGw9JyMyOGE3NDUnIGQ9J00yLjMgNi43M0wuNiA0LjUzYy0uNC0xLjA0LjQ2LTEuNCAxLjEtLjhsMS4xIDEuNCAzLjQtMy44Yy42LS42MyAxLjYtLjI3IDEuMi43bC00IDQuNmMtLjQzLjUtLjguNC0xLjEuMXonLz48L3N2Zz4=);
  }
}
/* Format errors to be displayed below fields */
/* Legal Pages */
.legalWrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
}
.legalWrapper h1 {
  font-size: 30px;
  margin: 20px 0 50px;
  color: #8c241f;
}
.legalWrapper h2 {
  font-size: 20px;
  margin: 50px 0 20px;
  font-weight: bold;
}
.legalWrapper p {
  margin: 20px;
  font-size: 14px;
  line-height: 1.5;
}
.legalWrapper ul {
  margin-left: 35px;
}
.legalWrapper ul li {
  list-style-type: disc;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.legalWrapper.lightbox {
  margin: 20px;
  padding: 20px;
  max-width: 800px;
}
.legalWrapper.lightbox p {
  margin: 20px 0;
}

/* Default Button */
.button {
  text-decoration: none;
  display: block;
  cursor: pointer;
  width: 100%;
  max-width: 350px;
  margin: 0 auto 20px;
  color: #000;
  border-radius: 8px;
  background-color: #ffcc4b;
  border: solid 1px #ffb400;
  padding: 10px 0;
  font-size: 23px;
  line-height: 45px;
  position: relative;
  text-align: center;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.4);
}
.button.inset {
  box-shadow: 1px 1px 3px #c9c9c9, 0 -1px 2px #c9c9c9, inset 0 1px 0 #e58086;
}
.button::after {
  width: 100%;
  height: 50%;
  opacity: 0.6;
  border-radius: 6px;
  background-image: linear-gradient(to bottom, #F7B61B, #FAD625);
  display: block;
  position: absolute;
  bottom: 0;
  content: "";
}
.button:hover {
  background-image: linear-gradient(to top, #ffe799 3%, #ffe799);
  cursor: pointer;
}
.button:hover::after {
  opacity: 0.4;
}
.button .buttonText {
  position: relative;
  z-index: 2;
  font-family: Roboto, Helvetica, Arial, sans-serif;
}
.button .buttonText .buttonText.shadowed {
  text-shadow: 0 0 2px rgb(0, 0, 0);
}
.button .buttonTriangle {
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -8px;
  width: 0;
  height: 0;
  border-left: 8px solid #000;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

/* Print Styles */
.printOnly {
  display: none;
}

@media print {
  .printHide {
    display: none;
  }
  .printOnly {
    display: initial;
  }
}
/* VideoJS Overrides */
/* make poster background transparent */
.vjs-poster {
  background-color: rgba(0, 0, 0, 0) !important;
}

/* Fix VideoJS height rules */
.video-js .vjs-tech {
  height: auto !important;
}

/* Remove "X" from VideoJS errors */
.vjs-error .vjs-error-display:before {
  display: none !important;
}

/* Replace Gradient BG for Error Modal */
.video-js .vjs-error-display {
  background: #000 !important;
}

/* Center Play Button */
.video-js .vjs-big-play-button {
  top: 50% !important;
  left: 50% !important;
  margin-left: -45px !important;
  margin-top: -22px !important;
}

/* VidPulse automatically adds an "end screen" that we do not want to show. This forces it to be hidden */
#videoContainer iframe {
  width: 0 !important;
  height: 0 !important;
}

/* Sound Warnings */
#soundSuper {
  position: absolute;
  display: none;
  width: 100%;
  top: 0;
  background-color: rgba(255, 255, 255, 0.75);
  text-align: center;
  padding: 10px 0;
  z-index: 9999;
}
#soundSuper h2 {
  font-size: 20px;
  font-weight: bold;
  color: #8c241f;
  margin-bottom: 10px;
}
#soundSuper p {
  line-height: 1.4;
  font-size: 14px;
  font-weight: bold;
}

/* Mute & Unmute */
.mutedOverlay {
  display: none;
  position: absolute;
  left: 50%;
  margin-left: -125px;
  top: 50%;
  margin-top: -82px;
  width: 250px;
  z-index: 1;
  border: 2px solid #FFF;
  border-radius: 10px;
  text-align: center;
  padding: 15px;
  cursor: pointer;
  background-color: rgba(204, 0, 0, 0.75);
}
.mutedOverlay img {
  width: 80px;
  margin-bottom: 20px;
}
.mutedOverlay h2 {
  font-size: 20px;
  color: #FFF;
  line-height: 1.3;
}

/* Idle Overlay */
.idleOverlay {
  display: none;
  position: absolute;
  left: 50%;
  margin-left: -125px;
  top: 50%;
  margin-top: -82px;
  width: 250px;
  z-index: 1;
  border: 2px solid #FFF;
  border-radius: 10px;
  text-align: center;
  padding: 15px;
  cursor: pointer;
  background-color: rgba(204, 0, 0, 0.75);
}
.idleOverlay img {
  width: 80px;
  margin-bottom: 20px;
}
.idleOverlay h2 {
  font-size: 20px;
  color: #FFF;
  line-height: 1.3;
}

/* Loading Banner */
.loadingBanner {
  position: absolute;
  display: none;
  width: 100%;
  top: 0;
  background-color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 10px 0;
  z-index: 9999;
}
.loadingBanner h2 {
  font-size: 16px;
  font-weight: bold;
  color: #BB0000;
  margin-bottom: 5px;
}
.loadingBanner h3 {
  font-size: 14px;
  font-weight: bold;
  color: #111;
}

/* Lightbox */
/* Core */
.lity, .lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  outline: 0 !important;
}

.lity, .lity-content:after, .lity-wrap {
  bottom: 0;
  right: 0;
  left: 0;
}

.lity-container, .lity-wrap:before {
  vertical-align: middle;
  display: inline-block;
}

.lity, .lity-container, .lity-wrap {
  outline: 0 !important;
}

.lity-content:after, .lity-wrap:before {
  content: "";
}

.lity {
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  box-sizing: border-box;
}

.lity-wrap {
  text-align: center;
}

.lity-wrap:before {
  height: 100%;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
}

.lity-close, .lity-close:active, .lity-close:focus, .lity-close:hover, .lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background: 0 0;
  outline: 0;
  border: 0;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.lity-closed .lity-content, .lity-loading .lity-content {
  transform: scale(0.8);
}

.lity-content:after {
  position: absolute;
  top: 0;
  display: block;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:active, .lity-close:focus, .lity-close:hover, .lity-close:visited {
  box-shadow: none;
}

.lity-close:active {
  top: 1px;
}

.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

.lity-iframe .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}

/* Custom */
.lightbox {
  overflow: auto;
  padding: 20px;
  max-width: 500px;
  border-radius: 6px;
  max-height: 965px;
  background: #fdfdf6;
}

.lightbox h2 {
  color: #111;
  font-size: 22px;
}

.lightbox p {
  width: 100%;
}

.lightbox img {
  max-width: 100%;
}

.lityClose {
  display: none;
}

.lightbox .lityClose {
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  color: #666;
  text-decoration: underline;
  cursor: pointer;
}

/* PushWoosh Notifications Prompt */
/* Hide Widgets by default */
#pushwoosh-subscription-widget-root, #pushwooshBellWidget {
  display: none;
}

/* Modifications to style of modal widget */
#pushwoosh-subscription-widget-root {
  top: 100px;
}

.pushwoosh-subscription-widget__body {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.7) !important;
  background-color: rgba(255, 255, 255, 0.95) !important;
}

.pushwoosh-subscription-widget__header {
  font-size: 26px !important;
  font-family: "Roboto", sans-serif !important;
  text-align: center;
  font-weight: bold !important;
  line-height: 1.3;
  color: #C00 !important;
}

.pushwoosh-subscription-widget__description {
  font-size: 18px !important;
  text-align: left;
  color: #111 !important;
}

.pushwoosh-subscription-widget__controls {
  justify-content: center !important;
}

.pushwoosh-subscription-widget__control_decline,
.pushwoosh-subscription-widget__control_accept {
  height: 50px !important;
  font-size: 17px !important;
  line-height: 1.3;
}

.pushwoosh-subscription-widget__control_accept {
  background-color: #005881 !important;
  color: #FFF !important;
}

.pushwoosh-subscription-widget__control_decline {
  background-color: #EEE !important;
  border-color: #EEE !important;
  color: #444 !important;
}

/* Animations */
/* Pulse Animation */
.pulse {
  max-width: 100%;
  animation-name: pulse;
  -webkit-animation-name: pulse;
  -moz-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  -moz-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.9);
  }
}/*# sourceMappingURL=global.css.map */