.modalWrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999; }
  .modalWrapper .underlay {
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer; }
  .modalWrapper .modal {
    background: #fff;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    margin: auto;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    border-radius: 4px;
    max-width: 90%;
    z-index: 2;
    -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
            box-shadow: 0 0 25px rgba(0, 0, 0, 0.8); }
  .modalWrapper .modal-title {
    font-size: 35px;
    text-align: center;
    padding: 10px;
    font-weight: 900; }
  .modalWrapper .modal-body {
    padding: 15px; }
  .modalWrapper .modal-closer {
    position: absolute;
    right: 10px;
    top: 7px;
    z-index: 10; }
    .modalWrapper .modal-closer a {
      display: inline-block;
      font-size: 25px;
      color: #000;
      cursor: pointer; }

.modal-header {
  padding: 15px;
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 20px;
  font-weight: 300; }

.couponCopier {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 15px 0; }

#coupon {
  display: inline-block;
  border: 2px dashed #454545;
  margin: 0 15px 0 0;
  padding: 5px; }

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; }

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite; }

.animated.hinge {
  -webkit-animation-duration: 2s;
          animation-duration: 2s; }

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
          animation-duration: .75s; }

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
            transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
            transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
            transform: translate3d(0, -4px, 0); } }

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
            transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
            transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
            transform: translate3d(0, -4px, 0); } }

.bounce {
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom; }

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

@keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

.flash {
  -webkit-animation-name: flash;
          animation-name: flash; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1); } }
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1); } }

.pulse {
  -webkit-animation-name: pulse;
          animation-name: pulse; }

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
            transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
            transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
            transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
            transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
            transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1); } }

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
            transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
            transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
            transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
            transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
            transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1); } }

.rubberBand {
  -webkit-animation-name: rubberBand;
          animation-name: rubberBand; }

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0); } }

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0); } }

.shake {
  -webkit-animation-name: shake;
          animation-name: shake; }

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
            transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
            transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
            transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
            transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0); } }

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
            transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
            transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
            transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
            transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0); } }

.headShake {
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
          animation-name: headShake; }

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
            transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
            transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
            transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
            transform: rotate3d(0, 0, 1, -5deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg); } }

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
            transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
            transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
            transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
            transform: rotate3d(0, 0, 1, -5deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg); } }

.swing {
  -webkit-transform-origin: top center;
      -ms-transform-origin: top center;
          transform-origin: top center;
  -webkit-animation-name: swing;
          animation-name: swing; }

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1); } }

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1); } }

.tada {
  -webkit-animation-name: tada;
          animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
            transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
            transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
            transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
            transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
            transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
            transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: none;
            transform: none; } }
@keyframes wobble {
  from {
    -webkit-transform: none;
            transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
            transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
            transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
            transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
            transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
            transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: none;
            transform: none; } }

.wobble {
  -webkit-animation-name: wobble;
          animation-name: wobble; }

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
            transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
            transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
            transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
            transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
            transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
            transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
            transform: skewX(0.39062deg) skewY(0.39062deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
            transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
            transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
            transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
            transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
            transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
            transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
            transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
            transform: skewX(0.39062deg) skewY(0.39062deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
            transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

.jello {
  -webkit-animation-name: jello;
          animation-name: jello;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center; }

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
            transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
            transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
            transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1); } }

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
            transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
            transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
            transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1); } }

.bounceIn {
  -webkit-animation-name: bounceIn;
          animation-name: bounceIn; }

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
            transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
            transform: none; } }

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
            transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
            transform: none; } }

.bounceInDown {
  -webkit-animation-name: bounceInDown;
          animation-name: bounceInDown; }

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
            transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
            transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
            transform: none; } }

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
            transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
            transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
            transform: none; } }

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
          animation-name: bounceInLeft; }

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
            transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
            transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
            transform: none; } }

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
            transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
            transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
            transform: none; } }

.bounceInRight {
  -webkit-animation-name: bounceInRight;
          animation-name: bounceInRight; }

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
            transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
            transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

.bounceInUp {
  -webkit-animation-name: bounceInUp;
          animation-name: bounceInUp; }

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
            transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3); } }

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
            transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3); } }

.bounceOut {
  -webkit-animation-name: bounceOut;
          animation-name: bounceOut; }

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0); } }

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0); } }

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
          animation-name: bounceOutDown; }

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
            transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0); } }

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
            transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0); } }

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
          animation-name: bounceOutLeft; }

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
            transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0); } }

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
            transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0); } }

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
          animation-name: bounceOutRight; }

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0); } }

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0); } }

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
          animation-name: bounceOutUp; }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn; }

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none; } }

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none; } }

.fadeInDown {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown; }

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none; } }

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none; } }

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
          animation-name: fadeInDownBig; }

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none; } }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none; } }

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft; }

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none; } }

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none; } }

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
          animation-name: fadeInLeftBig; }

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none; } }

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none; } }

.fadeInRight {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight; }

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none; } }

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none; } }

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
          animation-name: fadeInRightBig; }

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none; } }

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none; } }

.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp; }

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none; } }

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none; } }

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
          animation-name: fadeInUpBig; }

@-webkit-keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

.fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut; }

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0); } }

@keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0); } }

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
          animation-name: fadeOutDown; }

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0); } }

@keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0); } }

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
          animation-name: fadeOutDownBig; }

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0); } }

@keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0); } }

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
          animation-name: fadeOutLeft; }

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0); } }

@keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0); } }

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
          animation-name: fadeOutLeftBig; }

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0); } }

@keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0); } }

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
          animation-name: fadeOutRight; }

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0); } }

@keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0); } }

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
          animation-name: fadeOutRightBig; }

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0); } }

@keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0); } }

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
          animation-name: fadeOutUp; }

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0); } }

@keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0); } }

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
          animation-name: fadeOutUpBig; }

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
            transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
            transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
            transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in; } }

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
            transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
            transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
            transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in; } }

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
          animation-name: flip; }

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
            transform: perspective(400px); } }

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
            transform: perspective(400px); } }

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
          animation-name: flipInX; }

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
            transform: perspective(400px); } }

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
            transform: perspective(400px); } }

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
          animation-name: flipInY; }

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
            transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
            transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

.flipOutX {
  -webkit-animation-name: flipOutX;
          animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
            transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
            transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
          animation-name: flipOutY; }

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
            transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
            transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
            transform: skewX(-5deg);
    opacity: 1; }
  to {
    -webkit-transform: none;
            transform: none;
    opacity: 1; } }

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
            transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
            transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
            transform: skewX(-5deg);
    opacity: 1; }
  to {
    -webkit-transform: none;
            transform: none;
    opacity: 1; } }

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
          animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out; }

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
            transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

@keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
            transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
          animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in; }

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
            transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: none;
            transform: none;
    opacity: 1; } }

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
            transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: none;
            transform: none;
    opacity: 1; } }

.rotateIn {
  -webkit-animation-name: rotateIn;
          animation-name: rotateIn; }

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1; } }

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1; } }

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
          animation-name: rotateInDownLeft; }

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1; } }

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1; } }

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
          animation-name: rotateInDownRight; }

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1; } }

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1; } }

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
          animation-name: rotateInUpLeft; }

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
            transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1; } }

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
            transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1; } }

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
          animation-name: rotateInUpRight; }

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
            transform-origin: center;
    opacity: 1; }
  to {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
            transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
            transform-origin: center;
    opacity: 1; }
  to {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
            transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

.rotateOut {
  -webkit-animation-name: rotateOut;
          animation-name: rotateOut; }

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
          animation-name: rotateOutDownLeft; }

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
          animation-name: rotateOutDownRight; }

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
          animation-name: rotateOutUpLeft; }

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
            transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
            transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
          animation-name: rotateOutUpRight; }

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
            transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out; }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
            transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
            transform: translate3d(0, 700px, 0);
    opacity: 0; } }

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
            transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out; }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
            transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
            transform: translate3d(0, 700px, 0);
    opacity: 0; } }

.hinge {
  -webkit-animation-name: hinge;
          animation-name: hinge; }

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
            transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom; }
  50% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg); }
  70% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg); }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); } }

@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
            transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom; }
  50% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg); }
  70% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg); }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); } }

.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
          animation-name: jackInTheBox; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
            transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none; } }
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
            transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none; } }

.rollIn {
  -webkit-animation-name: rollIn;
          animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
            transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }
@keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
            transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

.rollOut {
  -webkit-animation-name: rollOut;
          animation-name: rollOut; }

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

.zoomIn {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn; }

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInDown {
  -webkit-animation-name: zoomInDown;
          animation-name: zoomInDown; }

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
          animation-name: zoomInLeft; }

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInRight {
  -webkit-animation-name: zoomInRight;
          animation-name: zoomInRight; }

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInUp {
  -webkit-animation-name: zoomInUp;
          animation-name: zoomInUp; }

@-webkit-keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

.zoomOut {
  -webkit-animation-name: zoomOut;
          animation-name: zoomOut; }

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
          animation-name: zoomOutDown; }

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
            transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
            transform-origin: left center; } }

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
            transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
            transform-origin: left center; } }

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
          animation-name: zoomOutLeft; }

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
            transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
            transform-origin: right center; } }

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
            transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
            transform-origin: right center; } }

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
          animation-name: zoomOutRight; }

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
          animation-name: zoomOutUp; }

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

.slideInDown {
  -webkit-animation-name: slideInDown;
          animation-name: slideInDown; }

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

.slideInLeft {
  -webkit-animation-name: slideInLeft;
          animation-name: slideInLeft; }

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

.slideInRight {
  -webkit-animation-name: slideInRight;
          animation-name: slideInRight; }

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

.slideInUp {
  -webkit-animation-name: slideInUp;
          animation-name: slideInUp; }

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0); } }

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0); } }

.slideOutDown {
  -webkit-animation-name: slideOutDown;
          animation-name: slideOutDown; }

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0); } }

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0); } }

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
          animation-name: slideOutLeft; }

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0); } }

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0); } }

.slideOutRight {
  -webkit-animation-name: slideOutRight;
          animation-name: slideOutRight; }

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0); } }

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0); } }

.slideOutUp {
  -webkit-animation-name: slideOutUp;
          animation-name: slideOutUp; }

[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
  display: none !important; }

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  line-height: 1.5; }

*, html, body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

img {
  max-width: 100%; }

a {
  cursor: pointer; }

.loader {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 9999;
  background: #fff; }

.cartContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media (max-width: 900px) {
    .cartContainer {
      display: block;
      padding: 15px; } }
  .cartContainer .addressDetails {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0 15px 0 0; }
  .cartContainer .cart {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }

.shippingDetails, .billingDetails {
  margin: 0 0 15px 0; }
  .shippingDetails .title, .billingDetails .title {
    font-size: 18px;
    font-weight: 300; }
  .shippingDetails .sideBySide, .billingDetails .sideBySide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -5px; }
    .shippingDetails .sideBySide label, .billingDetails .sideBySide label {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      margin: 5px 5px 20px 5px; }
  .shippingDetails .outsideUsMessage p, .billingDetails .outsideUsMessage p {
    font-style: italic; }

.shippingDetails label, .billingDetails label, .creditCardForm label {
  display: block;
  margin: 0 0 20px 0;
  font-size: 14px;
  text-transform: uppercase; }

.shippingDetails input[type="text"], .shippingDetails input[type="tel"], .shippingDetails input[type="number"], .shippingDetails select, .shippingDetails input[type="email"], .billingDetails input[type="text"], .billingDetails input[type="tel"], .billingDetails input[type="number"], .billingDetails select, .billingDetails input[type="email"], .creditCardForm input[type="text"], .creditCardForm input[type="tel"], .creditCardForm input[type="number"], .creditCardForm select, .creditCardForm input[type="email"] {
  display: block;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.3) !important;
  padding: 5px;
  font-family: "Roboto", sans-serif;
  border-radius: 1px;
  -webkit-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.15);
          box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.15);
  font-size: 18px;
  background: rgba(0, 0, 0, 0.03); }
  .shippingDetails input[type="text"]:focus, .shippingDetails input[type="tel"]:focus, .shippingDetails input[type="number"]:focus, .shippingDetails select:focus, .shippingDetails input[type="email"]:focus, .billingDetails input[type="text"]:focus, .billingDetails input[type="tel"]:focus, .billingDetails input[type="number"]:focus, .billingDetails select:focus, .billingDetails input[type="email"]:focus, .creditCardForm input[type="text"]:focus, .creditCardForm input[type="tel"]:focus, .creditCardForm input[type="number"]:focus, .creditCardForm select:focus, .creditCardForm input[type="email"]:focus {
    -webkit-box-shadow: inset 1px 1px 3px rgba(106, 134, 235, 0.8);
            box-shadow: inset 1px 1px 3px rgba(106, 134, 235, 0.8); }

.checkoutButton {
  margin: 0 0 5px 0; }

.termsCheckout {
  margin: 0 0 55px 0; }

.generatedBOM textarea {
  width: 100%;
  min-height: 300px;
  font-size: 11px;
  font-family: "Roboto", sans-serif;
  padding: 3px; }

.creditCardForm {
  border: 1px solid rgba(0, 0, 0, 0.2);
  text-align: left;
  padding: 15px;
  color: #000;
  border-radius: 10px;
  margin: 0 0 15px 0; }
  .creditCardForm label {
    color: #000;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4); }
  .creditCardForm .cardExpiry {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .creditCardForm .cardExpiry select {
      width: 150px;
      margin: 0 15px 0 0; }
    .creditCardForm .cardExpiry .card-expiry-year {
      width: 100px; }
  .creditCardForm .card-cvc {
    width: 110px !important; }
  .creditCardForm .primaryBTN {
    background: #000; }

.totals {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px;
  border-radius: 10px;
  margin: 15px 0; }
  .totals .total {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 12px; }
    .totals .total .label {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      font-weight: bold; }
    .totals .total .value {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto; }
    .totals .total .info {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      margin-top: 10px;
      text-align: center;
      color: #1888ff !important; }
  .totals .grandTotal {
    font-size: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 0 0 0;
    margin: 10px 0 0 0; }

.cartTitle {
  font-size: 18px;
  margin: 0 0 10px 0; }

.cartItems .cartItem {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0;
  margin: 0 0 15px 0; }
  .cartItems .cartItem .itemControls {
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .cartItems .cartItem .itemControls div {
      margin: 0 5px 0 0; }
  .cartItems .cartItem .itemTitle {
    background: rgba(0, 0, 0, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .cartItems .cartItem .itemTitle div {
      margin: 0 10px 0 0; }
    .cartItems .cartItem .itemTitle .quantity {
      width: 30px; }
      .cartItems .cartItem .itemTitle .quantity input[type="text"] {
        width: 100%;
        text-align: center;
        font-family: "Roboto", sans-serif; }
    .cartItems .cartItem .itemTitle .title {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      font-size: 14px;
      font-weight: bold; }
    .cartItems .cartItem .itemTitle .total {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto; }
  .cartItems .cartItem .itemData {
    padding: 0 10px; }
    .cartItems .cartItem .itemData .productHeader {
      font-size: 14px;
      font-weight: bold;
      margin: 15px 0 0 0; }
    .cartItems .cartItem .itemData .itemValues {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      background: rgba(0, 0, 0, 0.05);
      padding: 5px;
      margin: 0 0 5px 0; }
      .cartItems .cartItem .itemData .itemValues .label {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        font-size: 13px;
        font-weight: 900;
        font-family: "Roboto", sans-serif; }
      .cartItems .cartItem .itemData .itemValues .value {
        font-size: 12px; }
      .cartItems .cartItem .itemData .itemValues .price {
        font-size: 12px;
        color: #666;
        margin: 0 5px 0 0; }

.itemData.group {
  padding: 0 !important; }
  .itemData.group .groupLabel, .itemData.group .itemValues {
    margin: 0 5px 0 0; }

.itemData.firstGroup {
  padding: 0 0 0 10px !important;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; }
  .itemData.firstGroup .groupLabel {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }

.subSettingWrapper {
  margin: 0;
  padding: 0;
  list-style: none; }
  .subSettingWrapper li {
    margin: 0;
    padding: 0;
    list-style: none; }

.cart .notes textarea {
  resize: vertical;
  width: 100%;
  padding: 10px;
  font-family: "Roboto", sans-serif;
  display: block;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.3) !important;
  padding: 5px;
  font-family: "Roboto", sans-serif;
  border-radius: 1px;
  -webkit-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.15);
          box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.15);
  font-size: 18px;
  background: rgba(0, 0, 0, 0.03); }
  .cart .notes textarea:focus {
    -webkit-box-shadow: inset 1px 1px 3px rgba(106, 134, 235, 0.8);
            box-shadow: inset 1px 1px 3px rgba(106, 134, 235, 0.8); }

.cart .controlButtons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 15px 0;
  font-size: 12px;
  white-space: nowrap; }

.cart .adminSettings {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .cart .adminSettings div {
    margin: 0 10px; }

.smallBTN {
  display: inline-block;
  background: rgba(0, 0, 0, 0.1);
  padding: 3px 8px;
  font-size: 14px;
  color: #666;
  border: none;
  cursor: pointer; }

.ISRInfo {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 10px;
  margin: 25px 0; }
  .ISRInfo .label {
    font-weight: 900;
    font-size: 16px; }

.receipt {
  width: 700px;
  max-width: 100%;
  margin: 0 auto;
  background: #fff;
  padding: 15px;
  margin: 20px auto;
  border-radius: 15px; }

.receipt .addressGroup {
  background: rgba(0, 0, 0, 0.1);
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 15px 0; }
  .receipt .addressGroup .addressData {
    padding: 15px; }
    .receipt .addressGroup .addressData .title {
      font-size: 18px; }

.container {
  width: 1100px;
  margin: 0 auto;
  max-width: 98%; }

.topBar {
  background: #000;
  color: #fff;
  padding: 15px 0;
  font-weight: bold; }
  .topBar a {
    color: #fff;
    text-decoration: none; }
    .topBar a.primaryBTN {
      background: #fff;
      color: #000;
      padding: 10px; }
  .topBar .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .topBar .container .left {
      white-space: nowrap; }
    .topBar .container .left, .topBar .container .mid, .topBar .container .right {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1; }
    .topBar .container .right {
      text-align: right; }
    .topBar .container .mid {
      text-align: center; }
    @media (max-width: 750px) {
      .topBar .container {
        display: block; }
        .topBar .container .mid {
          margin: 30px 0; }
        .topBar .container .right {
          text-align: center;
          margin: 0 0 15px 0; } }

.header {
  padding: 20px 0; }
  .header .search {
    margin: 0 10px; }
  .header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .header .logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 200px; }
  .header .menu {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0 15px;
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .header .menu a {
      color: #000;
      text-decoration: none;
      text-transform: uppercase;
      display: inline-block;
      margin: 0 10px;
      font-size: 12px;
      font-weight: bold; }
  .header .right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .header .right .guarantee {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto; }
      @media (max-width: 440px) {
        .header .right .guarantee {
          display: none; } }
      .header .right .guarantee img {
        height: 40px; }
    .header .right .cart {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      margin: 0 0 0 5px; }
      .header .right .cart a {
        color: #000;
        text-decoration: none;
        font-size: 18px; }
      .header .right .cart .cartCount {
        background: #000;
        color: #fff;
        padding: 5px;
        border-radius: 3px;
        margin: 0 0 0 3px; }

.homeCategoryGrid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .homeCategoryGrid .gridItem {
    width: calc(100% / 3 - 10px);
    margin: 5px;
    text-align: center; }
    @media (max-width: 600px) {
      .homeCategoryGrid .gridItem {
        width: calc(100% / 2 - 10px); } }
    @media (max-width: 910px) {
      .homeCategoryGrid .gridItem {
        width: calc(100% / 2 - 10px); } }
    .homeCategoryGrid .gridItem .title a {
      display: block;
      color: #000;
      font-size: 25px;
      font-weight: bold;
      text-decoration: none;
      text-transform: uppercase;
      margin: 0 0 25px 0; }
      @media (max-width: 600px) {
        .homeCategoryGrid .gridItem .title a {
          font-size: 14px; } }

.footer {
  background: #333;
  color: #fff;
  padding: 25px 0 100px 0;
  margin: 50px 0 0 0; }
  .footer .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 720px) {
      .footer .container {
        display: block; } }
    .footer .container .location {
      margin: 0 15px 0 0;
      font-size: 12px; }
      .footer .container .location .copyright {
        font-size: 11px;
        margin: 15px 0 0 0; }
      .footer .container .location .warranty {
        margin: 25px 0 0 0; }
        .footer .container .location .warranty img {
          width: 80px; }
    .footer .container .footerLinks {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
      .footer .container .footerLinks .section {
        margin: 0 15px 15px 15px; }
      .footer .container .footerLinks .title {
        font-size: 18px;
        font-weight: bold;
        margin: 0 0 15px 0;
        white-space: nowrap; }
      .footer .container .footerLinks .links a {
        display: block;
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
        margin: 0 0 5px 0; }

.categoryDescription {
  margin: 0 0 50px 0; }

.productGrid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .productGrid .productGridItem {
    width: calc(100% / 4 - 10px);
    margin: 5px;
    text-align: center; }
    @media (max-width: 730px) {
      .productGrid .productGridItem {
        width: calc(100% / 3 - 10px); } }
    @media (max-width: 560px) {
      .productGrid .productGridItem {
        width: calc(100% / 2 - 10px); } }
    @media (max-width: 300px) {
      .productGrid .productGridItem {
        width: 100%; } }
    .productGrid .productGridItem .productGridImage img {
      display: block;
      width: 100%; }
    .productGrid .productGridItem .productGridTitle a {
      font-size: 16px;
      text-decoration: none;
      color: #000; }
    .productGrid .productGridItem .productGridPrice {
      font-weight: bold; }
      .productGrid .productGridItem .productGridPrice .retail {
        color: rgba(0, 0, 0, 0.5);
        text-decoration: line-through;
        display: block; }

@media (max-width: 926px) {
  .mobileHide {
    display: none !important; } }

.mobileShow {
  display: none; }
  @media (max-width: 924px) {
    .mobileShow {
      display: block; } }

.product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media (max-width: 790px) {
    .product {
      display: block; } }
  .product .topLeft {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .product .topLeft .gallery {
      margin: 0 10px 0 0; }
  .product .left, .product .right {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
  .product .left {
    margin: 0 15px 0 0; }
  .product .left .gallery {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto; }
  .product .left .mainImage {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }

.mobileGallery {
  margin: 0 0 25px 0;
  position: relative; }
  .mobileGallery .leftArrow {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -20px; }
  .mobileGallery .rightArrow {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -20px; }
  .mobileGallery .item {
    width: 60%;
    margin: 0 auto;
    position: relative;
    pointer-events: none; }
  .mobileGallery .dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 25px 0 0 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .mobileGallery .dots .dot {
      background: rgba(0, 0, 0, 0.2);
      width: 12px;
      height: 12px;
      border-radius: 100px;
      margin: 0 8px; }
      .mobileGallery .dots .dot.active {
        background: rgba(0, 0, 0, 0.8); }

.artPricing .bigPrices {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 15px 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative; }
  .artPricing .bigPrices .bigPrice {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
    .artPricing .bigPrices .bigPrice .value {
      font-size: 28px; }
    .artPricing .bigPrices .bigPrice .label {
      font-size: 14px;
      font-weight: bold;
      text-transform: uppercase; }
  .artPricing .bigPrices .quantity {
    position: absolute;
    top: 0;
    right: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: right;
    display: inline-block; }
    .artPricing .bigPrices .quantity select {
      font-size: 18px;
      font-weight: bold;
      padding: 5px; }

.share {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
  margin: -10px 0 25px 0; }
  .share .shareSection2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .share .shareSection2 div {
      margin: 0 10px 0 0; }
    .share .shareSection2 img {
      width: 20px;
      -webkit-filter: grayscale(100%);
              filter: grayscale(100%); }
      .share .shareSection2 img:hover {
        -webkit-filter: grayscale(0%);
                filter: grayscale(0%); }

.productExplainer {
  text-align: center;
  padding: 30px 0; }
  .productExplainer .primaryTitle {
    font-size: 28px;
    margin: 0 0 25px 0; }

.features {
  text-align: center; }
  .features .title {
    font-size: 28px;
    margin: 0 0 25px 0; }
  .features .mainUse {
    margin: 0 0 15px 0; }
  .features .areas {
    font-size: 12px; }
  .features .relatedProducts {
    padding: 15px; }

.productAssignments {
  margin: 0 0 5px 0; }
  .productAssignments .setupMessage {
    font-size: 13pt;
    font-weight: 900;
    margin: 0 0 15px 0;
    font-family: "Roboto", sans-serif;
    text-transform: none; }

.productType .assignmentOptions .imageSelector {
  width: 100%; }
  .productType .assignmentOptions .imageSelector .choice {
    cursor: pointer; }

.productType .assignmentOptions .explainer {
  display: inline-block;
  font-size: 11px;
  margin: 0 0 0 15px;
  padding: 3px 0 0 0; }
  .productType .assignmentOptions .explainer a {
    color: #666; }
    .productType .assignmentOptions .explainer a:hover {
      color: #000; }

.productType .assignmentOptions:last-child {
  margin: 0 0 25px 0; }

.productType .inlineOption {
  display: inline-block; }
  .productType .inlineOption .groupLabel {
    display: inline-block;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 5px 0 0; }
  .productType .inlineOption .selectBox {
    display: inline-block; }
    .productType .inlineOption .selectBox .optionHeader {
      display: inline-block;
      text-transform: uppercase; }
  .productType .inlineOption select {
    border: 1px solid #000;
    padding: 5px;
    color: #000;
    font-weight: 900;
    text-align: center; }
    .productType .inlineOption select option {
      text-align: left; }

.productType .imageSelector .choices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .productType .imageSelector .choices .choice {
    padding: 3px;
    width: calc(100% / 3 - 20px);
    margin: 5px;
    text-align: center; }
  @media (max-width: 926px) {
    .productType .imageSelector .choices {
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      overflow-x: auto; }
      .productType .imageSelector .choices .choice {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
        width: 90px; }
        .productType .imageSelector .choices .choice .label {
          font-size: 12px !important; } }
  .productType .imageSelector .choices .meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .productType .imageSelector .choices .meta .label {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      font-size: 13px;
      font-weight: 400; }
    .productType .imageSelector .choices .meta .price {
      color: #666;
      font-size: 12px; }
    .productType .imageSelector .choices .meta input[type="radio"] {
      display: none; }

.productType .optionHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 5px 0; }
  .productType .optionHeader .dropper {
    margin: 0 5px 0 0;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .productType .optionHeader .dropper .number {
      margin: 0 10px 0;
      font-size: 11pt;
      color: #fff;
      background: #666;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: 30px;
      height: 30px;
      border-radius: 100px;
      display: none; }
  .productType .optionHeader .label {
    cursor: pointer; }
  .productType .optionHeader .optionLabel {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 900; }
  .productType .optionHeader .input {
    color: #000;
    font-weight: 400;
    font-size: 14px; }
  .productType .optionHeader .price {
    font-size: 12px;
    color: #666;
    margin: 0 5px 0 5px; }

.configurator {
  position: relative; }
  .configurator .productLoader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    opacity: 0.9;
    background-color: #fff; }
    .configurator .productLoader img {
      width: 200px; }

.productIncluder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12pt;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.1);
  padding: 10px; }
  .productIncluder .checkbox {
    margin: 0 5px 0 0; }
  .productIncluder .label {
    margin: 0 10px 0 0;
    color: #000;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
  .productIncluder .yes, .productIncluder .no {
    margin: 0 10px; }

.textInput {
  margin: 15px 0;
  width: 100%; }
  .textInput input[type="text"], .textInput textarea {
    width: 100%;
    padding: 5px;
    font-family: "Roboto", sans-serif;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 3px; }
  .textInput .optionHeader {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0; }

.configuratorBottomData {
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
  padding: 18px 0 18px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-top: 30px; }
  @media (max-width: 460px) {
    .configuratorBottomData {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }
  .configuratorBottomData .share {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto; }
    @media (max-width: 460px) {
      .configuratorBottomData .share {
        width: 100%;
        margin: 15px 0 0 0; } }
  .configuratorBottomData .cartAdder {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
  .configuratorBottomData .quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .configuratorBottomData .quantity .input input[type="text"] {
      background: none;
      border: none;
      width: 30px;
      height: 30px;
      margin: 0 5px 0 0;
      text-align: center;
      background: url("https://res.cloudinary.com/rustica/image/upload/v1636945822/newqty_g01pu2_1_dgrzom.svg");
      background-repeat: no-repeat;
      line-height: 1;
      font-size: 12px;
      background-position: 0 1px;
      background-size: 30px;
      font-family: "Roboto", sans-serif;
      font-weight: 600; }
    .configuratorBottomData .quantity .label {
      text-transform: uppercase;
      font-size: 14px;
      font-weight: 900;
      margin: 0 5px 0 0; }
  .configuratorBottomData .primaryBTN {
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 14px;
    padding: 3px 8px; }

.checklistActive {
  background: #f7f7f7;
  padding: 30px 5px;
  position: relative; }
  .checklistActive .closer {
    position: absolute;
    top: 5px;
    right: 15px; }
  .checklistActive .steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    width: 390px;
    max-width: 100%;
    margin: 0 auto; }
    .checklistActive .steps .line {
      background: #d8d8d8;
      position: relative;
      top: 13px;
      left: 0;
      height: 3px;
      z-index: 1;
      -webkit-box-flex: 0.5;
          -ms-flex: 0.5;
              flex: 0.5;
      margin: 0 -50px; }
      .checklistActive .steps .line.active {
        background: #8fa194; }
    .checklistActive .steps .step {
      position: relative;
      z-index: 2;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      text-align: center;
      cursor: pointer; }
      .checklistActive .steps .step .label {
        font-size: 14px;
        font-weight: 700;
        line-height: 1.1; }
      .checklistActive .steps .step .num {
        background: #d8d8d8;
        border-radius: 100px;
        width: 30px;
        height: 30px;
        margin: 0 auto;
        color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        font-weight: 900; }
      .checklistActive .steps .step.active .num {
        background: #8fa194; }

.designConfig {
  max-width: 100%; }

.setupMessage {
  border-top: 4px solid #000;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 22pt;
  color: #000;
  padding: 5px 0;
  letter-spacing: 0.55pt;
  margin-bottom: 0 !important; }

.optionHeader {
  border: 1px solid #666;
  padding: 5px; }
  .optionHeader .artOptionLabel {
    font-size: 14pt;
    letter-spacing: -0.28pt;
    font-weight: 500; }
  .optionHeader .label {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .optionHeader .label .artOptionLabel {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1; }

.imageSelector.active, .selectBox.active, .groupedProducts.active {
  background: #fff; }

.productType .assignmentOptions .explainer {
  font-size: 12px;
  margin: 25px;
  display: block; }

.choices .active img {
  border: 4px solid #417505; }

.productType .imageSelector .choices .meta {
  display: block; }
  .productType .imageSelector .choices .meta .label {
    font-size: 12pt; }
  .productType .imageSelector .choices .meta .price {
    font-weight: 900;
    font-size: 11pt;
    color: #000; }

.productType .selectBox .optionHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: none; }

.productType .selectBox {
  margin: 0; }

.groupChoices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .groupChoices .groupChoice {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 5px; }
    .groupChoices .groupChoice .choices {
      width: 100%; }

.groupChoices select, .selectBox select {
  width: 100%;
  font-size: 14pt;
  padding: 10px;
  border-radius: 5px; }

.nextPrev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .nextPrev .divider {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
  .nextPrev a {
    color: red;
    font-size: 16pt;
    font-weight: bold; }

.artConfigureBottom {
  text-align: left;
  margin: 15px 0 25px 0; }
  .artConfigureBottom .artButton {
    text-transform: uppercase; }

.choiceMade {
  margin: 0 0 0 10px; }

.choice.noImage {
  border: 1px solid #666;
  border-radius: 2px;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 10px !important; }

.choice.noImage.active {
  border: 4px solid red; }

.artPricing {
  position: relative; }

.idData {
  font-size: 10px;
  position: absolute;
  bottom: -35px;
  right: 0; }

.imageSelector.active, .selectBox.active, .groupedProducts.active {
  background: #fff; }

.choiceShower {
  border: 1px solid #666;
  margin: 0 0 5px 0;
  padding: 5px;
  position: relative;
  top: -6px; }

.artButton {
  background: #000;
  font-weight: 900;
  color: #fff;
  text-align: center;
  border: none;
  font-size: 18px;
  text-align: center;
  padding: 20px;
  display: inline-block;
  cursor: pointer; }

.cartAdder .artButton {
  font-size: 25px; }

.tabs .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #b3b3b3;
  border-bottom: 1px solid #b3b3b3;
  background: #fff; }
  .tabs .menu a {
    border-top: 1px solid #b3b3b3;
    margin-top: -4px;
    padding: 13pt 16pt 13pt 16pt;
    font-size: 13pt;
    font-weight: 700;
    letter-spacing: -0.28pt;
    color: #4a4a4a;
    text-transform: uppercase; }
    .tabs .menu a.active {
      background: #fff;
      margin-top: -2px;
      border-bottom: 4px solid #000;
      position: relative;
      top: 1px; }

.tabs .description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0;
  font-size: 14pt; }
  .tabs .description .mainTitle {
    font-weight: 900;
    margin: 0 0 15px 0; }
  .tabs .description .left {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
  .tabs .description .right {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }

.craftsmanGuarantee {
  margin: 25px 0;
  padding: 50px 0;
  border-top: 10px solid #000;
  border-bottom: 10px solid #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media (max-width: 640px) {
    .craftsmanGuarantee {
      display: block; } }
  .craftsmanGuarantee .left {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0 15px 0 0; }
    .craftsmanGuarantee .left img {
      width: 100%; }
  .craftsmanGuarantee .right {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 20px; }

.galleryPopup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .galleryPopup .galleryThumbnails {
    width: 60px;
    margin: 0 15px 0 0;
    overflow-y: auto; }
  .galleryPopup img {
    max-height: 80vh; }
  .galleryPopup .image {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: center; }

.editLinkWrapper {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 12px; }
  .editLinkWrapper a {
    color: #000; }

.hiddenAdmin {
  opacity: 0.5; }

.paymentTabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .paymentTabs .tab a {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px;
    display: inline-block;
    border-radius: 5px;
    margin: 0 10px 10px 0;
    color: #000; }
  .paymentTabs .tab a.active {
    background: rgba(0, 0, 0, 0.1); }

.breadButton iframe {
  width: 100% !important; }

.primaryBTN {
  background: #000;
  color: #fff;
  padding: 5px;
  text-decoration: none;
  border: none; }

.coupon input[type="text"] {
  font-size: 18px;
  margin: 0 5px 0 0;
  font-family: "Roboto", sans-serif;
  border: 1px solid rgba(0, 0, 0, 0.8);
  padding: 3px; }

.customCharge label {
  font-size: 12px; }

.customCharge input[type="text"], .customCharge textarea {
  display: block;
  padding: 5px;
  font-size: 16px;
  margin: 0 0 15px 0; }

.rewardEarnings {
  text-align: center;
  padding: 10px;
  background: #9F1A45;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1; }
  .rewardEarnings small {
    font-size: 10px;
    line-height: 1; }

.cartHeading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .cartHeading .cartTitle {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
  .cartHeading .clearCart {
    font-size: 12px;
    position: relative;
    top: -5px; }

.mobileMenu {
  display: none; }
  @media (max-width: 1026px) {
    .mobileMenu {
      display: block;
      font-size: 28px;
      margin: 0 15px 0 0; } }

.marketMenu {
  position: relative;
  top: 5px;
  margin: 0 10px; }
  @media (max-width: 1026px) {
    .marketMenu {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1; }
      .marketMenu .dropMenu {
        display: none; } }
  .marketMenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .marketMenu ul li {
      list-style: none;
      margin: 0 10px;
      padding: 0; }
      .marketMenu ul li a {
        font-family: "Roboto", sans-serif;
        font-weight: 500;
        font-size: 12px;
        text-transform: uppercase;
        white-space: nowrap;
        color: #000;
        text-decoration: none; }
        .marketMenu ul li a.active {
          border-bottom: 3px solid #666666; }
  .marketMenu .menuDropdown {
    position: absolute;
    top: 18px;
    left: 0;
    width: 100%;
    background: white;
    z-index: 9999;
    text-align: left;
    padding: 30px;
    -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
            box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3); }
    .marketMenu .menuDropdown .container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
    .marketMenu .menuDropdown .featurePromoLinks {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      .marketMenu .menuDropdown .featurePromoLinks .link {
        width: 180px;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
        display: block;
        position: relative;
        margin: 0 15px 15px 0; }
        .marketMenu .menuDropdown .featurePromoLinks .link .linkContainer {
          width: 100%;
          height: 100%;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          text-align: center; }
          .marketMenu .menuDropdown .featurePromoLinks .link .linkContainer .text {
            top: 0;
            left: 0;
            color: black;
            font-size: 14pt;
            text-transform: none; }
          .marketMenu .menuDropdown .featurePromoLinks .link .linkContainer img {
            display: block; }
    .marketMenu .menuDropdown .featureImageLinks .link {
      margin: 0 15px;
      position: relative; }
      .marketMenu .menuDropdown .featureImageLinks .link img {
        display: block; }
      .marketMenu .menuDropdown .featureImageLinks .link .text {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        font-size: 30pt;
        color: #fff;
        text-align: center;
        line-height: 1;
        text-transform: none;
        font-weight: 300;
        background: rgba(0, 0, 0, 0.35); }
    .marketMenu .menuDropdown .left {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1; }
    .marketMenu .menuDropdown .featuredLinks {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      white-space: nowrap;
      padding: 0 25px 0 25px;
      border-left: 1px solid rgba(0, 0, 0, 0.4); }
    .marketMenu .menuDropdown .linkSection {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      margin: 0 10px -20px 0;
      width: calc(100% / 2 - 40px);
      white-space: nowrap; }
      .marketMenu .menuDropdown .linkSection .title {
        font-weight: 900;
        font-size: 14pt;
        color: #666666;
        white-space: nowrap; }
      .marketMenu .menuDropdown .linkSection .links {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        margin: 0 15px 15px 0; }
        .marketMenu .menuDropdown .linkSection .links a {
          display: block;
          font-size: 11pt;
          color: #333;
          font-weight: 500;
          line-height: 1.5;
          text-transform: none;
          margin: 0 0 0 15px;
          white-space: pre-wrap;
          margin-bottom: 5px; }

.minHeight {
  min-height: 80vh; }

.mobileMenuDrop {
  position: absolute;
  top: 122px;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 10px;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2); }
  .mobileMenuDrop a {
    display: block;
    color: #000;
    text-decoration: none;
    font-size: 16px; }
  .mobileMenuDrop ul {
    list-style: none;
    padding: 0;
    margin: 0; }
    .mobileMenuDrop ul li {
      list-style: none;
      padding: 0;
      margin: 0; }
    .mobileMenuDrop ul .menuDropdown {
      list-style: none;
      margin: 0;
      padding: 0 0 0 5px; }
      .mobileMenuDrop ul .menuDropdown a {
        font-size: 12px; }

.page .title {
  font-size: 50px;
  text-align: center;
  margin: 25px 0;
  text-transform: uppercase; }

.page .mainHeading {
  font-size: 14px;
  margin: 0 0 15px 0;
  text-align: center; }

.page .subHeading {
  margin: 0 0 25px 0;
  font-size: 12px;
  text-align: center; }

.grid12-6.videos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .grid12-6.videos h3 {
    font-size: 16px; }
  .grid12-6.videos .video {
    width: calc(100% / 2 - 10px);
    margin: 5px; }
    @media (max-width: 900px) {
      .grid12-6.videos .video {
        width: 100%; } }
  .grid12-6.videos iframe {
    width: 100%;
    height: 280px; }
  .grid12-6.videos h4 {
    margin: 50px 0 0 0; }

.grid12-6 h4 {
  margin: 50px 0 0 0; }

.secondaryBTN {
  background: rgba(0, 0, 0, 0.3);
  padding: 5px;
  border-radius: 3px;
  color: #fff;
  text-decoration: none; }

.contactSection {
  line-height: 1.8;
  width: 400px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center; }
  .contactSection .heading {
    font-weight: bold; }
  .contactSection .detail {
    font-size: 16px; }
  .contactSection .smallDetail {
    font-size: 12px; }

.instructionsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .instructionsList .instruction {
    width: calc(100% / 5 - 10px);
    margin: 5px; }
    .instructionsList .instruction a {
      background: rgba(0, 0, 0, 0.4);
      color: #fff;
      padding: 10px;
      display: inline-block;
      text-align: center;
      text-decoration: none;
      width: 100%; }

.inspirationArticle_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .inspirationArticle_1 .inspirationSection_1 {
    width: calc(100% / 4 - 20px);
    background: rgba(0, 0, 0, 0.1);
    padding: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 3px;
    font-size: 12px;
    margin: 10px; }
    .inspirationArticle_1 .inspirationSection_1 p {
      display: inline-block; }
    .inspirationArticle_1 .inspirationSection_1 a {
      color: #000;
      text-decoration: none; }

.ideaBookSection .header {
  font-size: 28px;
  font-weight: bold; }

.distributorMessage {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 999; }
  .distributorMessage .message {
    background: #000;
    margin: 0 auto;
    width: 80%;
    color: #fff;
    padding: 10px;
    font-size: 14px;
    white-space: nowrap;
    position: relative;
    z-index: 999;
    padding: 15px 0; }
    .distributorMessage .message a {
      display: inline-block;
      color: #fff; }

.contentContainer .date {
  margin: 0 0 25px 0;
  font-size: 12px; }

.blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .blog .left {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
    .blog .left .blogLoop {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
      .blog .left .blogLoop .blogItem {
        display: block;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        width: 100%;
        padding: 0 10px 10px 10px;
        margin: 0 0 15px 0; }
        .blog .left .blogLoop .blogItem .left {
          width: 100% !important; }
          .blog .left .blogLoop .blogItem .left a.image {
            display: block;
            width: 100%; }
          .blog .left .blogLoop .blogItem .left img {
            width: 100%; }
        @media (max-width: 640px) {
          .blog .left .blogLoop .blogItem {
            display: block; }
            .blog .left .blogLoop .blogItem .left {
              text-align: center; } }
        .blog .left .blogLoop .blogItem .date {
          font-size: 15pt;
          color: #414141; }
        .blog .left .blogLoop .blogItem .left {
          -webkit-box-flex: 0;
              -ms-flex: 0 0 auto;
                  flex: 0 0 auto;
          width: 350px;
          max-width: 100%; }
          @media (max-width: 890px) {
            .blog .left .blogLoop .blogItem .left {
              -webkit-box-flex: 1;
                  -ms-flex: 1;
                      flex: 1;
              width: auto; } }
        .blog .left .blogLoop .blogItem .right {
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          margin: 10px 0; }
          .blog .left .blogLoop .blogItem .right .titleStuff {
            -webkit-box-flex: 1;
                -ms-flex: 1;
                    flex: 1; }
          @media (max-width: 640px) {
            .blog .left .blogLoop .blogItem .right {
              margin: 0; } }
          @media (max-width: 926px) {
            .blog .left .blogLoop .blogItem .right {
              display: block; } }
        .blog .left .blogLoop .blogItem .titleText {
          display: block;
          font-family: "Roboto", sans-serif;
          font-size: 25px;
          line-height: 1.2;
          color: #333;
          margin-bottom: 15px; }
        .blog .left .blogLoop .blogItem .excerpt {
          -webkit-box-flex: 1.5;
              -ms-flex: 1.5;
                  flex: 1.5;
          font-size: 16pt;
          color: #666;
          font-family: "Roboto", sans-serif;
          margin: 0 0 15px 15px;
          color: #999999; }
  @media (max-width: 926px) {
    .blog .right {
      display: none; } }

.mainImage .gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  margin: 0 -5px; }
  .mainImage .gallery .thumbnail {
    margin: 0 5px; }

.savedCart {
  text-align: center; }
  .savedCart .saveSuccess {
    font-size: 25px; }
  .savedCart .description {
    font-size: 18px;
    margin: 25px 0; }
  .savedCart input[type="text"] {
    font-size: 25px;
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.5);
            box-shadow: 0 3px 3px rgba(0, 0, 0, 0.5); }

.tradeApplication {
  background: rgba(0, 0, 0, 0.1);
  padding: 15px;
  width: 500px;
  margin: 0 auto;
  max-width: 100%;
  border-radius: 3px; }
  .tradeApplication label {
    display: block;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase; }
    .tradeApplication label input[type="text"], .tradeApplication label input[type="email"], .tradeApplication label textarea {
      display: block;
      font-family: "Roboto", sans-serif;
      font-size: 16px;
      padding: 8px;
      border: 1px solid rgba(0, 0, 0, 0.5);
      border-radius: 3px;
      margin: 0 0 15px 0;
      width: 100%; }

.blackFridayContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 1165px;
  margin: 0 auto;
  max-width: 100%; }
  .blackFridayContainer .blackProductBar {
    max-width: 100%;
    background-color: #C4B783;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 20px 0;
    font-size: 23pt;
    color: #fff;
    font-weight: bold;
    font-family: adelle, serif; }
    @media (max-width: 900px) {
      .blackFridayContainer .blackProductBar {
        font-size: 18px; } }
  .blackFridayContainer .productSale {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: -25px;
    margin-right: 0;
    width: 100%;
    -ms-flex-item-align: center;
        align-self: center; }
    .blackFridayContainer .productSale .product {
      display: block;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: calc(100% / 4 - 50px);
      margin: 25px;
      text-align: center;
      position: relative; }
      .blackFridayContainer .productSale .product a {
        text-decoration: none; }
      @media (max-width: 900px) {
        .blackFridayContainer .productSale .product {
          width: calc(100% / 2 - 50px); } }
      .blackFridayContainer .productSale .product .image img {
        width: 100%; }
      .blackFridayContainer .productSale .product .title {
        font-size: 16px;
        color: #000;
        font-family: "Roboto", sans-serif; }
      .blackFridayContainer .productSale .product .crossedPrice {
        color: #999;
        font-family: "Roboto", sans-serif;
        text-decoration: line-through;
        font-weight: bold; }
      .blackFridayContainer .productSale .product .price {
        color: #000;
        font-family: "Roboto", sans-serif;
        font-weight: bold; }

.customOrderBox label {
  display: block;
  margin: 0 0 15px 0; }
  .customOrderBox label input[type="text"], .customOrderBox label textarea {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 3px;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    border-radius: 3px; }

.productQuoteForm label {
  display: block;
  margin: 0 0 5px 0; }
  .productQuoteForm label input[type="text"], .productQuoteForm label input[type="email"], .productQuoteForm label textarea {
    font-size: 16px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    padding: 5px;
    width: 100%;
    border-radius: 3px;
    font-family: "Roboto", sans-serif; }

.productQuoteForm .description {
  font-size: 18px;
  margin: 0 0 15px 0; }

.productQuoteForm .or {
  font-size: 22px; }

.productQuoteForm .requestBox {
  background: rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin: 15px 0; }
  .productQuoteForm .requestBox .requestHeader {
    font-size: 20px;
    font-weight: 900; }

.fixedPrice .bigPrices {
  position: fixed;
  z-index: 999;
  top: 0px;
  background: #fff;
  width: 705px;
  max-width: 100%;
  padding: 10px;
  border-bottom: 4px solid #3C441D;
  opacity: 0.9; }

.customDoorForm {
  margin: 50px auto;
  background: #f7f7f7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 100%; }
  .customDoorForm .formTitle {
    -ms-flex-item-align: center;
        align-self: center;
    font-size: 28px;
    color: #acacac;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    margin: 35px 0 0 0; }
  .customDoorForm form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-item-align: center;
        align-self: center;
    width: 100%;
    padding: 57px; }
    .customDoorForm form input {
      margin: 12px 0;
      width: 100%;
      height: 60px;
      text-align: center;
      font-size: 24px;
      color: #9d9d9d; }
    .customDoorForm form textarea {
      resize: none;
      margin: 12px 0;
      width: 100%;
      height: 60px;
      text-align: center;
      font-size: 24px;
      color: #9d9d9d; }
    .customDoorForm form ::-webkit-input-placeholder {
      text-align: center;
      color: #9d9d9d;
      font-size: 24px;
      text-transform: uppercase; }
    .customDoorForm form :-ms-input-placeholder {
      text-align: center;
      color: #9d9d9d;
      font-size: 24px;
      text-transform: uppercase; }
    .customDoorForm form ::-ms-input-placeholder {
      text-align: center;
      color: #9d9d9d;
      font-size: 24px;
      text-transform: uppercase; }
    .customDoorForm form ::placeholder {
      text-align: center;
      color: #9d9d9d;
      font-size: 24px;
      text-transform: uppercase; }
  .customDoorForm .fileUpload {
    margin: 38px 0 0 0;
    -ms-flex-item-align: center;
        align-self: center;
    font-size: 24px;
    color: #9d9d9d;
    text-align: center;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .customDoorForm .fileUpload .uploadButton {
      text-decoration: underline;
      color: #9d9d9d; }
    .customDoorForm .fileUpload .primaryBTN {
      width: 150px;
      padding: 10px;
      font-size: 20px;
      margin: 30px 0 0 0; }

.flashMessage {
  position: fixed;
  bottom: 10px;
  height: 6vh;
  width: 100%;
  background: #fff;
  z-index: 9;
  text-align: center;
  padding: 10px; }
  .flashMessage .message {
    background: green;
    padding: 10px;
    color: #fff;
    font-size: 18px;
    width: 300px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    top: -10px; }

.specialMessages .notice {
  background: rgba(0, 0, 0, 0.1);
  padding: 5px;
  margin: 10px 0 45px 0;
  font-size: 20px;
  border: 1px solid rgba(0, 0, 0, 0.3); }

.searchPopin {
  position: absolute;
  top: 82px;
  left: 0;
  width: 100%;
  height: 138px;
  background: rgba(255, 255, 255, 0.9);
  z-index: 9999; }
  .searchPopin .closer {
    position: absolute;
    top: 15px;
    right: 50px;
    font-size: 20px; }
  .searchPopin .container form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  @media (max-width: 900px) {
    .searchPopin {
      top: 228px; } }
  .searchPopin .container {
    text-align: center;
    width: 400px;
    margin: 0 auto;
    max-width: 100%;
    padding-top: 15px; }
  .searchPopin input[type="text"] {
    border: none;
    font-size: 30pt;
    font-family: "Roboto", sans-serif;
    padding: 10px;
    background: none;
    border-bottom: 1px solid #000;
    outline: none !important; }
    .searchPopin input[type="text"]:focus {
      border: none;
      border-bottom: 1px solid #000; }

.siteSearch .searching {
  font-size: 25px;
  font-weight: 900;
  margin: 0 0 15px 0; }

.siteSearch .results .result {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0 0 15px 0;
  margin: 0 0 15px 0; }
  .siteSearch .results .result a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .siteSearch .results .result a .left {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 150px; }
    .siteSearch .results .result a .right {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      margin: 0 0 0 15px; }
      .siteSearch .results .result a .right .title {
        font-size: 20px;
        font-weight: bold; }

.searchResults {
  position: absolute;
  text-align: left;
  left: 50%;
  margin-left: -200px;
  top: 75px;
  background: #fff;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
          box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  z-index: 11;
  width: 400px;
  max-width: 100%; }
  .searchResults .price {
    font-size: 10px; }
  .searchResults .result {
    padding: 5px;
    margin: 5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2); }
    .searchResults .result:last-child {
      border: none; }
    .searchResults .result:hover {
      background: rgba(0, 0, 0, 0.1); }
    .searchResults .result a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .searchResults .result a .image {
        margin: 0 10px 0 0; }
      .searchResults .result a .left {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
        width: 90px; }
      .searchResults .result a .right {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1; }
      .searchResults .result a .title {
        font-weight: 900;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1; }

.pageList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .pageList .page {
    margin: 0 10px; }

.responsibilitesImage {
  max-width: 650px;
  margin-bottom: 20px; }

.ambassadorsContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }

.ambassadorsHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center; }

.ambassadorText {
  font-size: 18px;
  color: #999999;
  font-family: "Roboto", sans-serif;
  margin: 20px 0; }

.ambassadorTitle {
  font-size: 18px;
  color: #000;
  font-family: "Roboto", sans-serif;
  margin: 20px 0; }
  .ambassadorTitle ul li {
    font-family: "Roboto", sans-serif;
    color: #999999;
    font-size: 18px; }

.cardCheckout iframe {
  height: 20px; }

.cardCheckout #paymentCardContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  border: 3px solid #999;
  border-radius: 5px;
  -webkit-box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.4);
          box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.4);
  margin: 15px 0; }
  .cardCheckout #paymentCardContainer #payjs-cnum {
    font-size: 28px !important; }

#paymentCardErrorContainer {
  margin: 0 0 15px 0;
  text-transform: uppercase;
  font-weight: bold; }

.methods .heading {
  font-weight: bold;
  margin: 15px 0 0 0; }

.xray {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 500px;
  background: rgba(255, 255, 255, 0.95);
  overflow-y: auto;
  padding: 15px; }
  .xray .xraySettings {
    background: rgba(0, 0, 0, 0.2);
    text-align: right;
    margin: -15px;
    padding: 10px 10px 25px 0; }
    .xray .xraySettings label {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      font-size: 14px;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end; }
  .xray .section {
    margin: 0 0 25px 0; }
  .xray .sectionHeading {
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 900;
    margin: 0 -15px; }

.bomGenerator {
  text-align: center;
  margin: 15px;
  font-size: 20px; }

.bomParts {
  background: rgba(0, 0, 0, 0.1);
  margin: 0 -15px; }
  .bomParts .part {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 0 10px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .bomParts .part .name {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1; }
    .bomParts .part .price {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      margin: 0 10px; }
    .bomParts .part .quantity {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      min-width: 50px;
      text-align: center;
      background: rgba(0, 0, 0, 0.8);
      color: #fff;
      font-size: 12px; }
    .bomParts .part .attributes {
      width: 100%;
      background: rgba(0, 0, 0, 0.1);
      font-size: 11px; }
      .bomParts .part .attributes .attribute {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin: 5px;
        padding: 0 3px;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.2); }
        .bomParts .part .attributes .attribute:last-child {
          border: none;
          margin-bottom: 2px; }
        .bomParts .part .attributes .attribute .name {
          padding: 5px 0; }
        .bomParts .part .attributes .attribute .value {
          background: rgba(0, 0, 0, 0.8);
          color: #fff;
          padding: 2px 8px;
          font-size: 10px; }

.bdhHeading {
  margin: 30px 0; }
  .bdhHeading .top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .bdhHeading .top .logo {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1; }
    .bdhHeading .top .phone {
      font-size: 35px; }
      @media (max-width: 670px) {
        .bdhHeading .top .phone {
          font-size: 20px;
          margin: 0 0 0 15px; } }
      .bdhHeading .top .phone a {
        text-decoration: none;
        color: #666; }
  .bdhHeading .bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .bdhHeading .bottom .menu {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      margin: 15px 0 0 0; }
      @media (max-width: 670px) {
        .bdhHeading .bottom .menu {
          display: none; } }
      .bdhHeading .bottom .menu ul {
        position: relative;
        z-index: 1;
        list-style: none;
        margin: 0;
        padding: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin: 0 -15px; }
        .bdhHeading .bottom .menu ul li {
          list-style: none;
          margin: 0;
          padding: 0;
          position: relative; }
          .bdhHeading .bottom .menu ul li a {
            margin: 0 15px;
            font-size: 16px;
            text-transform: uppercase;
            color: #53857d;
            text-decoration: none; }
          .bdhHeading .bottom .menu ul li .dropdown {
            display: none; }
          .bdhHeading .bottom .menu ul li:hover .dropdown {
            display: block;
            background: #fff;
            top: 22px;
            left: 10px;
            width: 300px;
            max-width: 100%;
            position: absolute;
            -webkit-box-shadow: 0 3px 2px rgba(0, 0, 0, 0.3);
                    box-shadow: 0 3px 2px rgba(0, 0, 0, 0.3);
            padding: 5px; }
            .bdhHeading .bottom .menu ul li:hover .dropdown a {
              display: block;
              font-size: 14px;
              margin: 10px;
              padding: 0; }
    .bdhHeading .bottom .rightBottom {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto; }
      @media (max-width: 670px) {
        .bdhHeading .bottom .rightBottom {
          display: none; } }
      .bdhHeading .bottom .rightBottom .cart {
        font-size: 22px; }
        .bdhHeading .bottom .rightBottom .cart a {
          color: #000; }

.mobileBars {
  display: none; }
  @media (max-width: 670px) {
    .mobileBars {
      display: block;
      margin: 0 15px 0 0;
      font-size: 25px; } }

.mainHeading {
  text-align: center;
  background: #f7f7f7;
  padding: 30px 0;
  font-size: 30px; }
  .mainHeading h1 {
    font-size: 30px;
    text-transform: uppercase;
    color: #53857d; }

.homeCategoryGrid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px -5px; }
  .homeCategoryGrid .item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: calc(100% / 3 - 10px);
    margin: 5px;
    text-align: center;
    text-decoration: none; }
    @media (max-width: 600px) {
      .homeCategoryGrid .item {
        width: calc(100% / 2 - 10px); } }
    @media (max-width: 300px) {
      .homeCategoryGrid .item {
        width: 100%; } }
    .homeCategoryGrid .item .text {
      color: #666;
      text-decoration: none;
      font-size: 22px;
      text-transform: uppercase; }

.bdhFeatured {
  margin: 40px 0; }
  .bdhFeatured .heading {
    font-size: 30px;
    margin: 0 0 10px 0; }

.bdhProductGrid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .bdhProductGrid .item {
    margin: 10px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: calc(100% / 3 - 20px);
    text-align: center; }
    @media (max-width: 600px) {
      .bdhProductGrid .item {
        width: calc(100% / 2 - 20px); } }
    @media (max-width: 300px) {
      .bdhProductGrid .item {
        width: 100%; } }
    .bdhProductGrid .item .title a {
      text-decoration: none;
      color: #666;
      font-size: 18px; }
    .bdhProductGrid .item .price {
      color: #999;
      font-size: 14px;
      font-weight: bold; }

.primaryBlurb {
  margin: 40px 0; }
  .primaryBlurb .heading {
    font-size: 28px; }
  .primaryBlurb .subHeading {
    font-size: 23px;
    margin: 15px 0; }
  .primaryBlurb .text {
    font-size: 18px;
    font-weight: 300; }

.experts {
  text-align: center; }
  .experts .heading {
    font-size: 30px; }
  .experts .phone a {
    font-size: 25px;
    color: #666; }

.bdhFooter {
  background: #f7f7f7;
  padding: 20px;
  margin: 50px 0 0 0; }
  .bdhFooter .container .top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 700px) {
      .bdhFooter .container .top {
        display: block; } }
    .bdhFooter .container .top .left {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 250px;
      font-size: 14px; }
      .bdhFooter .container .top .left .social {
        margin: 10px 0 0 0;
        font-size: 25px; }
    .bdhFooter .container .top .links {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin: 0 0 0 25px; }
      @media (max-width: 400px) {
        .bdhFooter .container .top .links {
          display: block;
          margin: 10px 0; } }
      .bdhFooter .container .top .links ul {
        list-style: none;
        margin: 0;
        padding: 0; }
        .bdhFooter .container .top .links ul li {
          list-style: square;
          margin: 10px;
          color: #666; }
      .bdhFooter .container .top .links .linkSection {
        margin: 0 10px;
        background: rgba(0, 0, 0, 0.1);
        padding: 15px; }
        .bdhFooter .container .top .links .linkSection a {
          color: #666;
          text-decoration: none; }
  .bdhFooter .bottom {
    text-align: center;
    background: #eaeaea;
    margin: 20px -20px -20px -20px;
    padding: 15px;
    font-size: 12px; }

.leadTimeChoice {
  color: #9F1A45;
  font-weight: 900;
  font-size: 12px; }

.landingGrid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 50px 0; }
  .landingGrid .landingCategory {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 10px; }
    .landingGrid .landingCategory a {
      text-decoration: none;
      color: #000; }
    .landingGrid .landingCategory .image img {
      width: 300px;
      max-width: 100%; }
    .landingGrid .landingCategory .landingTitle {
      text-align: center;
      font-size: 18px;
      font-style: "Roboto", sans-serif; }

.featureItems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .featureItems .item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: calc(100% / 3 - 10px);
    margin: 5px; }

.dividerHeader {
  font-size: 30px;
  font-weight: bold;
  margin: 25px 0 10px 0; }

.textCallout {
  font-size: 40px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  text-align: center; }

.byBrand {
  font-size: 14px;
  color: #666; }

.mobileMenu {
  position: absolute;
  top: 68px;
  left: 0;
  background: #fff;
  padding: 15px;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
          box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  width: 90%; }
  .mobileMenu ul {
    list-style: none;
    margin: 0;
    padding: 0; }
    .mobileMenu ul li {
      list-style: none;
      margin: 0;
      padding: 0; }
      .mobileMenu ul li a {
        font-size: 12px;
        color: #000;
        text-decoration: none;
        margin: 5px 0;
        padding: 5px 0; }
      .mobileMenu ul li .dropdown {
        margin: 0 0 0 10px; }
        .mobileMenu ul li .dropdown a {
          display: block;
          font-size: 11px; }

.faqContainer {
  width: 1140px;
  max-width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media (max-width: 700px) {
    .faqContainer {
      display: block; } }

.faqSection {
  width: 50%;
  padding: 10px; }
  .faqSection h2 {
    font-family: "Roboto", sans-serif;
    font-size: 40px; }
  @media (max-width: 700px) {
    .faqSection {
      width: 100%; } }

.question {
  color: #000;
  font-size: 18px;
  font-weight: 900; }

.answer {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 10px; }

.marketNewsletter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #8fa194;
  padding: 15px 0; }
  @media (max-width: 870px) {
    .marketNewsletter {
      display: block;
      text-align: center; } }
  .marketNewsletter .title {
    font-size: 20pt;
    margin: 0 15px 0 0;
    color: #fff; }
  .marketNewsletter .footerNewsletter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (max-width: 870px) {
      .marketNewsletter .footerNewsletter {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; } }
    @media (max-width: 515px) {
      .marketNewsletter .footerNewsletter {
        display: block; } }
    .marketNewsletter .footerNewsletter input[type="email"] {
      margin: 0 15px 0 0;
      background: #fff;
      padding: 10px 20px;
      font-weight: 500;
      font-family: "Roboto", sans-serif;
      font-size: 12pt;
      border-radius: 5px;
      border: none; }
      @media (max-width: 515px) {
        .marketNewsletter .footerNewsletter input[type="email"] {
          margin: 0 0 15px 0; } }

.systemDown {
  font-size: 24px; }

#card-element {
  border: 2px solid rgba(0, 0, 0, 0.2);
  padding: 5px;
  border-radius: 3px; }

.testCard {
  position: fixed;
  bottom: 0;
  left: 0;
  font-size: 12px;
  background: orange;
  color: #fff;
  padding: 5px; }

.searchPopin {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 138px;
  background: rgba(255, 255, 255, 0.9);
  z-index: 9999; }
  .searchPopin .closer {
    position: absolute;
    top: 15px;
    right: 50px;
    font-size: 20px; }
  .searchPopin .container form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .searchPopin .container {
    text-align: center;
    width: 400px;
    margin: 0 auto;
    max-width: 100%;
    padding-top: 15px; }
  .searchPopin input[type="text"] {
    border: none;
    font-size: 30pt;
    font-family: "Roboto", sans-serif;
    padding: 10px;
    background: none;
    border-bottom: 1px solid #000;
    outline: none !important; }
    .searchPopin input[type="text"]:focus {
      border: none;
      border-bottom: 1px solid #000; }

.searchIcon {
  margin: 0 25px 0 0;
  font-size: 30px; }

.text-muted {
  opacity: 0.6; }

.hover {
  cursor: pointer;
  opacity: 1; }

.hover:hover {
  opacity: 0.8; }

.wishlistSaver {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 15px 0;
  font-size: 16pt; }
  .wishlistSaver .image {
    margin: 0 5px 0 0; }

.categorySlogan {
  background: #58595b;
  color: #fff;
  width: 455px;
  margin: 0 auto;
  text-align: center;
  text-transform: uppercase;
  padding: 5px 0;
  font-size: 15px;
  max-width: 100%; }

.wishListGrid .productGridItem {
  max-width: 250px;
  padding: 15px; }

.wishListGrid .productGridTitle {
  text-align: center; }

.wishListGrid .productGridButton a {
  text-align: center; }

.wishHeader {
  width: 100%;
  position: relative;
  overflow-x: hidden; }
  .wishHeader img {
    width: 100%;
    display: block;
    min-width: 1442px;
    min-height: 187px; }
  .wishHeader .content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center; }
    .wishHeader .content .title {
      background: #53857d !important;
      width: 455px;
      padding: 15px;
      color: #fff;
      font-family: "Roboto", sans-serif;
      font-weight: 100;
      font-size: 40px;
      line-height: 1;
      margin: 0;
      margin: 0 auto;
      max-width: 100%; }

.wishlistEmailGrab input[type="email"] {
  display: block;
  margin: 5px 0;
  font-size: 16px;
  padding: 5px;
  width: 300px;
  max-width: 100%; }

.wishlistLink {
  display: none; }
  @media (max-width: 924px) {
    .wishlistLink {
      display: block; } }

.wishlistShower {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: left; }
  .wishlistShower a {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 3px 10px;
    font-size: 14px; }

.wishlistFooter {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  padding: 10px;
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  overflow-x: auto; }
  .wishlistFooter .wishListHider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: left; }
    .wishlistFooter .wishListHider a {
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      padding: 3px 10px;
      font-size: 12px;
      display: inline-block;
      position: relative;
      top: -3px; }
  .wishlistFooter .label {
    white-space: nowrap;
    font-size: 14px;
    -ms-flex-item-align: center;
        align-self: center;
    margin: 0 15px 0 0;
    font-weight: 900;
    color: #000;
    text-decoration: none;
    text-transform: uppercase; }
    @media (max-width: 924px) {
      .wishlistFooter .label {
        font-size: 10px; } }
  .wishlistFooter .wishlistItem {
    width: 70px;
    max-width: 100%;
    margin: 0 15px 0 0; }
    .wishlistFooter .wishlistItem .productGridImage {
      margin: 0; }
  .wishlistFooter .remover a {
    color: #666;
    font-size: 11px;
    position: relative;
    top: -10px; }

.flex-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.ms {
  margin-left: 16px; }

.me {
  margin-right: 16px; }

.mt {
  margin-top: 16px; }

.mt-sm {
  margin-top: 8px; }

.mt-0 {
  margin-top: 0; }

.mb {
  margin-bottom: 16px; }

.mb-sm {
  margin-bottom: 8px; }

.mb-0 {
  margin-bottom: 0; }

.justify-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important; }

.text-muted {
  opacity: 0.4; }

.danger {
  color: #EF4C45; }

.w-100 {
  width: 100%; }

.mt-1 {
  margin-top: 8px; }

.mt-2 {
  margin-top: 16px; }

.mt-3 {
  margin-top: 24px; }

.shippingBullets {
  background-color: #ddd;
  margin: 0 auto;
  padding: 10px;
  margin-bottom: 10px; }
  .shippingBullets li {
    padding: 5px 0px; }
  .shippingBullets li::marker {
    color: #a22240; }
  @media (max-width: 700px) {
    .shippingBullets {
      max-width: 75%; } }

.shippingHeader {
  margin: 0 auto;
  text-align: center; }
  .shippingHeader h1 {
    color: #a22240; }
  @media (max-width: 700px) {
    .shippingHeader {
      max-width: 75%; } }

.shippingImgHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto; }
  .shippingImgHeader img {
    max-width: 25%; }
  @media (max-width: 700px) {
    .shippingImgHeader {
      max-width: 75%; } }

.shippingVideo {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  display: block; }
  .shippingVideo iframe {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    padding: 20px; }

.modal-sm {
  max-width: 800px !important; }

/*# sourceMappingURL=maps/style.css.map */
