@font-face {
  font-family: "Minion Pro";
  src: url(../assets/fonts/MinionPro-Regular.otf) format("opentype");
}
@font-face {
  font-family: "Theinhardt";
  src: url(../assets/fonts/TheinhardtReg.otf) format("opentype");
}
/* line 66, ../sass/_boilerplate.scss */
*, *:before, *:after {
  margin: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* line 75, ../sass/_boilerplate.scss */
html {
  font-size: 16px;
}

/* line 79, ../sass/_boilerplate.scss */
p, label, pre, noscript {
  font-family: "Helvetica";
}

/* line 83, ../sass/_boilerplate.scss */
section, input, textarea {
  font-family: "Helvetica";
}

/* line 87, ../sass/_boilerplate.scss */
input, textarea {
  border: none;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/* line 95, ../sass/_boilerplate.scss */
textarea {
  resize: none;
}

/* line 99, ../sass/_boilerplate.scss */
a {
  color: inherit;
  text-decoration: none;
}

/* line 104, ../sass/_boilerplate.scss */
.mobile {
  display: none !important;
}

@media screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-width: 414px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 3), screen and (device-width: 320px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 2), screen and (device-width: 320px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 3), screen and (device-width: 320px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 3), screen and (device-width: 360px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 3) {
  /* line 110, ../sass/_boilerplate.scss */
  .desktop {
    display: none !important;
  }
}
/* line 1, ../sass/_global.scss */
body {
  -o-transition: -o-transform 1s ease-in-out;
  -moz-transition: -moz-transform 1s ease-in-out;
  -webkit-transition: -webkit-transform 1s ease-in-out;
  transition: transform 1s ease-in-out;
}
/* line 4, ../sass/_global.scss */
body.notification {
  -o-transform: translateY(40px);
  -moz-transform: translateY(40px);
  -ms-transform: translateY(40px);
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
}

/* line 9, ../sass/_global.scss */
.page {
  min-height: calc(100vh - 125px);
  position: relative;
  background-color: #FFFFFF;
}

/* line 15, ../sass/_global.scss */
.text-container {
  width: 50vw;
  max-width: 1000px;
  min-width: 600px;
  position: relative;
  margin: 0 auto;
  padding: 162px 0 70px;
  color: #888888;
  font-size: 14px;
}
/* line 27, ../sass/_global.scss */
.text-container p.header, .text-container p.sub-header {
  color: #222222;
}
/* line 34, ../sass/_global.scss */
.text-container span.black {
  color: #222222;
}
/* line 38, ../sass/_global.scss */
.text-container span.gray {
  color: #888888;
}
/* line 43, ../sass/_global.scss */
.text-container img {
  width: 100%;
}

/* line 48, ../sass/_global.scss */
a:hover {
  border-bottom: 1px solid #222222;
}

/* line 52, ../sass/_global.scss */
p, label, input, textarea {
  font-family: "Theinhardt";
}
/* line 55, ../sass/_global.scss */
p.tagline, label.tagline, input.tagline, textarea.tagline {
  font-size: 42px;
}
/* line 59, ../sass/_global.scss */
p.header, label.header, input.header, textarea.header {
  font-size: 24px;
}
/* line 63, ../sass/_global.scss */
p.sub-header, label.sub-header, input.sub-header, textarea.sub-header {
  font-size: 14px;
}
/* line 67, ../sass/_global.scss */
p.copy, label.copy, input.copy, textarea.copy {
  font-size: 14px;
}
/* line 71, ../sass/_global.scss */
p.divider, label.divider, input.divider, textarea.divider {
  width: 100%;
  height: 20px;
}

/* line 77, ../sass/_global.scss */
.hero-tagline {
  position: fixed;
  top: 50vh;
  left: 50vw;
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #222222;
  cursor: pointer;
}
/* line 85, ../sass/_global.scss */
.hero-tagline a:hover {
  border: none;
}
/* line 89, ../sass/_global.scss */
.hero-tagline.white {
  color: #FFFFFF;
}

/* line 94, ../sass/_global.scss */
.hero-arrow {
  position: fixed;
  bottom: 50px;
  left: 50%;
  -o-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  padding: 30px;
  -webkit-animation: bob 1.25s infinite ease-in-out;
  animation: bob 1.25s infinite ease-in-out;
  cursor: pointer;
}
@-o-keyframes bob {
  0% {
    bottom: -10px;
  }
  50% {
    bottom: 25px;
  }
  100% {
    bottom: -10px;
  }
}
@-moz-keyframes bob {
  0% {
    bottom: -10px;
  }
  50% {
    bottom: 25px;
  }
  100% {
    bottom: -10px;
  }
}
@-ms-keyframes bob {
  0% {
    bottom: -10px;
  }
  50% {
    bottom: 25px;
  }
  100% {
    bottom: -10px;
  }
}
@-webkit-keyframes bob {
  0% {
    bottom: -10px;
  }
  50% {
    bottom: 25px;
  }
  100% {
    bottom: -10px;
  }
}
@keyframes bob {
  0% {
    bottom: -10px;
  }
  50% {
    bottom: 25px;
  }
  100% {
    bottom: -10px;
  }
}
/* line 118, ../sass/_global.scss */
.hero-arrow svg {
  width: 100%;
  height: 100%;
}
/* line 122, ../sass/_global.scss */
.hero-arrow svg * {
  fill: #222222;
}
/* line 127, ../sass/_global.scss */
.hero-arrow.white svg * {
  fill: #FFFFFF;
  stroke: #FFFFFF;
}

/* line 133, ../sass/_global.scss */
.slides {
  position: fixed;
}
/* line 136, ../sass/_global.scss */
.slides .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
/* line 147, ../sass/_global.scss */
.slides .slide.active {
  opacity: 1;
}

/* line 153, ../sass/_global.scss */
#buffer {
  background-color: #888888;
}

/* line 157, ../sass/_global.scss */
.logo-hover:hover {
  cursor: url("http://driveintl.jacoblmacdev.com:8080/assets/icons/logo.png"), auto;
}
/* line 160, ../sass/_global.scss */
.logo-hover:hover.reversed {
  cursor: url("http://driveintl.jacoblmacdev.com:8080/assets/icons/logo-reversed.png"), auto;
}

/* line 1, ../sass/_header.scss */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 162px;
  padding: 70px;
  z-index: 2;
  pointer-events: none;
}
/* line 11, ../sass/_header.scss */
#header #title {
  position: absolute;
  top: 70px;
  left: 50%;
  width: 200px;
  height: 22px;
  -o-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  pointer-events: all;
}
/* line 20, ../sass/_header.scss */
#header #title svg {
  width: 100%;
  height: 100%;
}
/* line 26, ../sass/_header.scss */
#header #cart-button {
  float: right;
  width: 22px;
  height: 22px;
  position: relative;
  pointer-events: all;
  cursor: pointer;
}
/* line 34, ../sass/_header.scss */
#header #cart-button #cart-total {
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #222222;
  color: #FFFFFF;
  text-align: center;
  line-height: 27px;
  pointer-events: none;
  opacity: 0;
}
/* line 49, ../sass/_header.scss */
#header #cart-button svg {
  width: 100%;
  height: 100%;
}
/* line 53, ../sass/_header.scss */
#header #cart-button svg * {
  fill: #222222;
}
/* line 58, ../sass/_header.scss */
#header #cart-button.active #cart-total {
  opacity: 1;
}

/* line 64, ../sass/_header.scss */
#menu-button {
  position: fixed;
  top: 0;
  left: 0;
  margin: 70px;
  width: 22px;
  height: 22px;
  z-index: 3;
  cursor: pointer;
}
/* line 74, ../sass/_header.scss */
#menu-button #hamburger {
  display: block;
  position: relative;
  top: 50%;
  width: 100%;
  height: 0;
  outline: 1px solid #222222;
  transition: outline-color 0.3s;
}
/* line 83, ../sass/_header.scss */
#menu-button #hamburger:before, #menu-button #hamburger:after {
  content: "";
  display: inherit;
  width: inherit;
  height: inherit;
  outline: 1px solid #222222;
  position: relative;
  -o-transition: -o-transform 0.3s, top 0.3s;
  -moz-transition: -moz-transform 0.3s, top 0.3s;
  -webkit-transition: -webkit-transform 0.3s, top 0.3s;
  transition: transform 0.3s, top 0.3s;
}
/* line 93, ../sass/_header.scss */
#menu-button #hamburger:before {
  top: -7px;
}
/* line 97, ../sass/_header.scss */
#menu-button #hamburger:after {
  top: 7px;
}
/* line 101, ../sass/_header.scss */
#menu-button #hamburger.active {
  outline-color: transparent;
}
/* line 104, ../sass/_header.scss */
#menu-button #hamburger.active:before, #menu-button #hamburger.active:after {
  top: 0;
}
/* line 108, ../sass/_header.scss */
#menu-button #hamburger.active:before {
  -o-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* line 112, ../sass/_header.scss */
#menu-button #hamburger.active:after {
  -o-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* line 118, ../sass/_header.scss */
#menu-button svg {
  width: 100%;
  height: 100%;
}
/* line 122, ../sass/_header.scss */
#menu-button svg * {
  fill: #222222;
}

/* line 1, ../sass/_footer.scss */
#footer {
  position: relative;
  width: 100%;
  height: 125px;
  padding: 55px;
  background-color: #FFFFFF;
  font-size: 12px;
  color: #222222;
  z-index: 2;
}
/* line 11, ../sass/_footer.scss */
#footer #copyright {
  float: left;
  line-height: 20px;
}
/* line 16, ../sass/_footer.scss */
#footer #footer-items {
  float: right;
}
/* line 19, ../sass/_footer.scss */
#footer #footer-items .footer-item {
  float: left;
  margin-left: 20px;
  cursor: pointer;
}
/* line 24, ../sass/_footer.scss */
#footer #footer-items .footer-item.link {
  line-height: 20px;
  padding-bottom: 3px;
}
/* line 33, ../sass/_footer.scss */
#footer #footer-items .footer-item.icon {
  width: 15px;
  height: 15px;
}
/* line 37, ../sass/_footer.scss */
#footer #footer-items .footer-item.icon img {
  width: 100%;
  height: 100%;
}

/* line 46, ../sass/_footer.scss */
#subscribe-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: opacity 1.0s ease-in-out;
}
/* line 58, ../sass/_footer.scss */
#subscribe-overlay .content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  min-width: 500px;
  max-width: 800px;
  height: 50%;
  min-height: 425px;
  max-height: 800px;
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 70px;
  background-color: #222222;
}
/* line 72, ../sass/_footer.scss */
#subscribe-overlay .content .close {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
/* line 77, ../sass/_footer.scss */
#subscribe-overlay .content .close svg {
  width: 100%;
  height: 100%;
}
/* line 81, ../sass/_footer.scss */
#subscribe-overlay .content .close svg * {
  fill: #FFFFFF;
  stroke: #FFFFFF;
}
/* line 88, ../sass/_footer.scss */
#subscribe-overlay .content .main-info {
  color: #FFFFFF;
  margin: 50px 0 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #888888;
}
/* line 95, ../sass/_footer.scss */
#subscribe-overlay .content .additional-info {
  color: #888888;
}
/* line 101, ../sass/_footer.scss */
#subscribe-overlay .content #mc_embed_signup .mc-field-group {
  float: left;
  width: 70%;
  position: relative;
  margin-top: 20px;
}
/* line 107, ../sass/_footer.scss */
#subscribe-overlay .content #mc_embed_signup .mc-field-group label {
  position: absolute;
  font-size: 14px;
  padding: 20px;
  color: #FFFFFF;
  line-height: 20px;
  cursor: text;
}
/* line 115, ../sass/_footer.scss */
#subscribe-overlay .content #mc_embed_signup .mc-field-group label.active {
  opacity: 0;
}
/* line 120, ../sass/_footer.scss */
#subscribe-overlay .content #mc_embed_signup .mc-field-group #mce-EMAIL {
  width: 100%;
  background-color: transparent;
  padding: 20px;
  font-size: 14px;
  border: 1px solid #888888;
  color: #FFFFFF;
}
/* line 130, ../sass/_footer.scss */
#subscribe-overlay .content #mc_embed_signup #mc-embedded-subscribe {
  width: 30%;
  float: right;
  margin-top: 20px;
  background-color: transparent;
  padding: 20px 20px 17px 20px;
  color: #FFFFFF;
  font-size: 14px;
  border: 1px solid #888888;
  border-left: 0;
  line-height: 20px;
  cursor: pointer;
}
/* line 145, ../sass/_footer.scss */
#subscribe-overlay .content #subscribe {
  width: 100%;
  padding: 20px;
  border: 1px solid #888888;
  text-align: center;
  color: #FFFFFF;
  margin-top: 30px;
}
/* line 155, ../sass/_footer.scss */
#subscribe-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* line 1, ../sass/_menu.scss */
#menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 500px;
  height: 100vh;
  -o-transform: translateX(-500px);
  -moz-transform: translateX(-500px);
  -ms-transform: translateX(-500px);
  -webkit-transform: translateX(-500px);
  transform: translateX(-500px);
  padding: 210px 70px 70px;
  background-color: #FFFFFF;
  z-index: 2;
  -o-transition: -o-transform 0.75s ease-in-out;
  -moz-transition: -moz-transform 0.75s ease-in-out;
  -webkit-transition: -webkit-transform 0.75s ease-in-out;
  transition: transform 0.75s ease-in-out;
}
/* line 13, ../sass/_menu.scss */
#menu .menu-item {
  margin-bottom: 16px;
}
/* line 16, ../sass/_menu.scss */
#menu .menu-item span {
  padding-bottom: 4px;
}
/* line 25, ../sass/_menu.scss */
#menu.active {
  -o-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -webkit-transform: none;
  transform: none;
}

/* line 5, ../sass/_cart-review.scss */
#cart-review .checkout-row .main-info {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #222222;
  overflow: hidden;
}
/* line 11, ../sass/_cart-review.scss */
#cart-review .checkout-row .main-info .title {
  float: left;
  width: 60%;
}
/* line 16, ../sass/_cart-review.scss */
#cart-review .checkout-row .main-info .price {
  float: right;
}
/* line 21, ../sass/_cart-review.scss */
#cart-review .checkout-row .info {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #222222;
  overflow: hidden;
  position: relative;
}
/* line 28, ../sass/_cart-review.scss */
#cart-review .checkout-row .info .thumbnail {
  float: left;
  width: 30%;
  padding-bottom: 30%;
  position: relative;
  background-size: cover;
  background-position: center;
}
/* line 37, ../sass/_cart-review.scss */
#cart-review .checkout-row .info .sub-info {
  float: left;
  width: calc(50% - 20px);
  margin-left: 20px;
}
/* line 42, ../sass/_cart-review.scss */
#cart-review .checkout-row .info .sub-info .quantity-select {
  width: 120px;
  margin-top: 15px;
}
/* line 46, ../sass/_cart-review.scss */
#cart-review .checkout-row .info .sub-info .quantity-select .less, #cart-review .checkout-row .info .sub-info .quantity-select .quantity, #cart-review .checkout-row .info .sub-info .quantity-select .more {
  float: left;
  height: 30px;
  text-align: center;
}
/* line 52, ../sass/_cart-review.scss */
#cart-review .checkout-row .info .sub-info .quantity-select .less, #cart-review .checkout-row .info .sub-info .quantity-select .more {
  width: 25%;
  border: 1px solid #222222;
  line-height: 33px;
  cursor: pointer;
}
/* line 59, ../sass/_cart-review.scss */
#cart-review .checkout-row .info .sub-info .quantity-select .quantity {
  width: 50%;
  border-top: 1px solid #222222;
  border-bottom: 1px solid #222222;
  line-height: 30px;
}
/* line 68, ../sass/_cart-review.scss */
#cart-review .checkout-row .info .close {
  position: absolute;
  top: 50%;
  right: 0;
  width: 15px;
  height: 15px;
  -o-transform: translateY(calc(-50% - 20px));
  -moz-transform: translateY(calc(-50% - 20px));
  -ms-transform: translateY(calc(-50% - 20px));
  -webkit-transform: translateY(calc(-50% - 20px));
  transform: translateY(calc(-50% - 20px));
  cursor: pointer;
}
/* line 77, ../sass/_cart-review.scss */
#cart-review .checkout-row .info .close svg {
  width: 100%;
  height: 100%;
}
/* line 85, ../sass/_cart-review.scss */
#cart-review .subtotal-row {
  margin-bottom: 40px;
  overflow: hidden;
}
/* line 89, ../sass/_cart-review.scss */
#cart-review .subtotal-row .subtotal-header {
  float: left;
}
/* line 93, ../sass/_cart-review.scss */
#cart-review .subtotal-row .subtotal {
  float: right;
}
/* line 98, ../sass/_cart-review.scss */
#cart-review #checkout-button {
  width: 100%;
  height: 80px;
  text-align: center;
  line-height: 80px;
  margin: 40px 0;
  background-color: #222222;
  color: #FFFFFF;
  cursor: pointer;
  transition: background-color 0.3s;
}
/* line 109, ../sass/_cart-review.scss */
#cart-review #checkout-button:hover {
  background-color: #FFFFFF;
  color: #222222;
  border: 1px solid #222222;
}
/* line 116, ../sass/_cart-review.scss */
#cart-review #checkout-link {
  color: #888888;
  text-align: center;
  margin-bottom: 40px;
}
/* line 121, ../sass/_cart-review.scss */
#cart-review #checkout-link span {
  padding-bottom: 5px;
}
/* line 125, ../sass/_cart-review.scss */
#cart-review #checkout-link:hover span {
  border-bottom: 1px solid #888888;
}

/* line 1, ../sass/_cart.scss */
#cart {
  position: fixed;
  right: 0;
  top: 0;
  width: 500px;
  height: 100vh;
  -o-transform: translateX(500px);
  -moz-transform: translateX(500px);
  -ms-transform: translateX(500px);
  -webkit-transform: translateX(500px);
  transform: translateX(500px);
  background-color: #222222;
  overflow-y: scroll;
  z-index: 2;
  -o-transition: -o-transform 0.75s ease-in-out;
  -moz-transition: -moz-transform 0.75s ease-in-out;
  -webkit-transition: -webkit-transform 0.75s ease-in-out;
  transition: transform 0.75s ease-in-out;
}
/* line 13, ../sass/_cart.scss */
#cart .close-cart {
  position: absolute;
  top: 70px;
  right: 70px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
/* line 21, ../sass/_cart.scss */
#cart .close-cart svg {
  width: 100%;
  height: 100%;
}
/* line 25, ../sass/_cart.scss */
#cart .close-cart svg * {
  fill: #FFFFFF;
  stroke: #FFFFFF;
}
/* line 32, ../sass/_cart.scss */
#cart #cart-review {
  padding: 162px 70px 70px;
}
/* line 37, ../sass/_cart.scss */
#cart #cart-review .checkout-row .main-info {
  border-color: #FFFFFF;
}
/* line 40, ../sass/_cart.scss */
#cart #cart-review .checkout-row .main-info .title, #cart #cart-review .checkout-row .main-info .price {
  color: #FFFFFF;
}
/* line 45, ../sass/_cart.scss */
#cart #cart-review .checkout-row .info {
  border-color: #FFFFFF;
}
/* line 48, ../sass/_cart.scss */
#cart #cart-review .checkout-row .info .thumbnail {
  width: 50%;
  padding-bottom: 50%;
}
/* line 55, ../sass/_cart.scss */
#cart #cart-review .checkout-row .info .sub-info .size, #cart #cart-review .checkout-row .info .sub-info .color {
  color: #FFFFFF;
}
/* line 61, ../sass/_cart.scss */
#cart #cart-review .checkout-row .info .sub-info .quantity-select .less, #cart #cart-review .checkout-row .info .sub-info .quantity-select .quantity, #cart #cart-review .checkout-row .info .sub-info .quantity-select .more {
  color: #FFFFFF;
  border-color: #FFFFFF;
}
/* line 68, ../sass/_cart.scss */
#cart #cart-review .checkout-row .info .close svg * {
  fill: #FFFFFF;
  stroke: #FFFFFF;
}
/* line 77, ../sass/_cart.scss */
#cart #cart-review .subtotal-row .subtotal-header, #cart #cart-review .subtotal-row .subtotal {
  color: #FFFFFF;
}
/* line 82, ../sass/_cart.scss */
#cart #cart-review #checkout-button {
  border: 1px solid #FFFFFF;
}
/* line 87, ../sass/_cart.scss */
#cart.active {
  -o-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -webkit-transform: none;
  transform: none;
}

/* line 1, ../sass/_index.scss */
#notification {
  position: fixed;
  top: -40px;
  left: 0;
  width: 100vw;
  height: 40px;
  background-color: #888888;
  font-size: 12px;
  color: #222222;
  text-align: center;
  line-height: 40px;
  z-index: 1;
  -o-transition: -o-transform 1s ease-in-out;
  -moz-transition: -moz-transform 1s ease-in-out;
  -webkit-transition: -webkit-transform 1s ease-in-out;
  transition: transform 1s ease-in-out;
}
/* line 15, ../sass/_index.scss */
#notification.hide {
  -o-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

/* line 20, ../sass/_index.scss */
.hero-tagline {
  -o-transition: -o-transform 0.65s;
  -moz-transition: -moz-transform 0.65s;
  -webkit-transition: -webkit-transform 0.65s;
  transition: transform 0.65s;
}
/* line 25, ../sass/_index.scss */
.hero-tagline:hover {
  -o-transform: translate(-50%, -50%) scale(1.1);
  -moz-transform: translate(-50%, -50%) scale(1.1);
  -ms-transform: translate(-50%, -50%) scale(1.1);
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}

/* line 1, ../sass/_products.scss */
#products {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1;
}
/* line 10, ../sass/_products.scss */
#products #slider img {
  height: 100%;
}
/* line 14, ../sass/_products.scss */
#products #slider .arrow {
  position: absolute;
  width: 200px;
  height: 100vh;
  top: 0;
  z-index: 1;
}
/* line 22, ../sass/_products.scss */
#products #slider .arrow div {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 37px;
  height: 37px;
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: left 0.3s;
}
/* line 32, ../sass/_products.scss */
#products #slider .arrow.left {
  left: 0;
}
/* line 35, ../sass/_products.scss */
#products #slider .arrow.left:hover div {
  left: 40%;
}
/* line 40, ../sass/_products.scss */
#products #slider .arrow.right {
  right: 0;
}
/* line 43, ../sass/_products.scss */
#products #slider .arrow.right div {
  left: calc(50% + 18px);
}
/* line 47, ../sass/_products.scss */
#products #slider .arrow.right:hover div {
  left: calc(60% + 18px);
}
/* line 54, ../sass/_products.scss */
#products #product-button {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 100px;
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #222222;
  transition: background-color 0.3s, color 0.3s;
  cursor: pointer;
}
/* line 65, ../sass/_products.scss */
#products #product-button a {
  display: block;
  width: 100%;
  height: 100%;
}
/* line 70, ../sass/_products.scss */
#products #product-button a p {
  width: 100%;
  padding: 0 20px;
  line-height: 100px;
  text-align: center;
}
/* line 78, ../sass/_products.scss */
#products #product-button:hover {
  background-color: #222222;
  color: #FFFFFF;
}

/* line 85, ../sass/_products.scss */
#products-buffer {
  width: 100vw;
  height: 100vh;
}

/* line 1, ../sass/_product.scss */
#product {
  overflow: scroll;
}
/* line 4, ../sass/_product.scss */
#product #product-id {
  display: none;
}
/* line 8, ../sass/_product.scss */
#product .hero-arrow {
  display: none;
}
/* line 12, ../sass/_product.scss */
#product #product-info {
  width: 100vw;
  min-height: 100vh;
  position: relative;
}
/* line 17, ../sass/_product.scss */
#product #product-info .slideshow {
  width: 60%;
  height: 100vh;
  overflow-y: scroll;
  background-color: #888888;
}
/* line 23, ../sass/_product.scss */
#product #product-info .slideshow img:not(.arrow-icon) {
  width: 100%;
  display: none;
  -o-transition: -o-transform 0.65s;
  -moz-transition: -moz-transform 0.65s;
  -webkit-transition: -webkit-transform 0.65s;
  transition: transform 0.65s;
}
/* line 28, ../sass/_product.scss */
#product #product-info .slideshow img:not(.arrow-icon).active {
  display: initial;
}
/* line 37, ../sass/_product.scss */
#product #product-info .slideshow::-webkit-scrollbar {
  display: none;
}
/* line 42, ../sass/_product.scss */
#product #product-info .info {
  position: absolute;
  top: 170px;
  right: 70px;
  width: calc(40% - 140px);
  max-width: 800px;
  font-family: "Theinhardt";
}
/* line 51, ../sass/_product.scss */
#product #product-info .info .close-product {
  width: 20px;
  height: 20px;
  margin-bottom: 40px;
  display: none;
}
/* line 57, ../sass/_product.scss */
#product #product-info .info .close-product svg {
  width: 100%;
  height: 100%;
}
/* line 63, ../sass/_product.scss */
#product #product-info .info .main-info {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #222222;
  overflow: hidden;
}
/* line 69, ../sass/_product.scss */
#product #product-info .info .main-info .title {
  float: left;
}
/* line 73, ../sass/_product.scss */
#product #product-info .info .main-info .price {
  float: right;
  color: #222222;
}
/* line 77, ../sass/_product.scss */
#product #product-info .info .main-info .price del {
  color: #888888;
  text-decoration: none !important;
  position: relative;
}
/* line 82, ../sass/_product.scss */
#product #product-info .info .main-info .price del:after {
  content: "";
  display: block;
  position: absolute;
  top: 34%;
  width: 100%;
  border-bottom: 2px solid #888888;
}
/* line 94, ../sass/_product.scss */
#product #product-info .info #tabs {
  margin-bottom: 30px;
  overflow: hidden;
}
/* line 98, ../sass/_product.scss */
#product #product-info .info #tabs .tab {
  float: left;
  width: 33%;
  color: #888888;
  cursor: pointer;
}
/* line 104, ../sass/_product.scss */
#product #product-info .info #tabs .tab:nth-child(2) {
  text-align: center;
}
/* line 108, ../sass/_product.scss */
#product #product-info .info #tabs .tab:nth-child(3) {
  text-align: right;
}
/* line 112, ../sass/_product.scss */
#product #product-info .info #tabs .tab.active {
  color: #222222;
}
/* line 118, ../sass/_product.scss */
#product #product-info .info #details {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #222222;
  position: relative;
  overflow: hidden;
}
/* line 125, ../sass/_product.scss */
#product #product-info .info #details .detail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 125px;
  overflow-y: scroll;
  line-height: 26px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
/* line 137, ../sass/_product.scss */
#product #product-info .info #details .detail img {
  width: 100%;
}
/* line 141, ../sass/_product.scss */
#product #product-info .info #details .detail.active {
  pointer-events: all;
  opacity: 1;
}
/* line 147, ../sass/_product.scss */
#product #product-info .info #details #scroll-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
/* line 155, ../sass/_product.scss */
#product #product-info .info #details #scroll-arrow img {
  width: 100%;
  height: 100%;
}
/* line 162, ../sass/_product.scss */
#product #product-info .info .options {
  height: 80px;
  margin-bottom: 30px;
  position: relative;
}
/* line 167, ../sass/_product.scss */
#product #product-info .info .options .size, #product #product-info .info .options .color {
  position: absolute;
  width: calc(50% - 15px);
  height: 80px;
  padding: 30px 0;
  border: 1px solid #222222;
  text-align: center;
  cursor: pointer;
}
/* line 176, ../sass/_product.scss */
#product #product-info .info .options .size .option, #product #product-info .info .options .color .option {
  line-height: 20px;
}
/* line 179, ../sass/_product.scss */
#product #product-info .info .options .size .option:not(:first-child), #product #product-info .info .options .color .option:not(:first-child) {
  opacity: 0;
  pointer-events: none;
}
/* line 185, ../sass/_product.scss */
#product #product-info .info .options .size.active, #product #product-info .info .options .color.active {
  height: auto;
  background-color: #FFFFFF;
}
/* line 189, ../sass/_product.scss */
#product #product-info .info .options .size.active .option:not(:first-child), #product #product-info .info .options .color.active .option:not(:first-child) {
  opacity: 1;
  pointer-events: all;
}
/* line 196, ../sass/_product.scss */
#product #product-info .info .options .color {
  right: 0;
}
/* line 201, ../sass/_product.scss */
#product #product-info .info #add {
  width: 100%;
  height: 80px;
  background-color: #222222;
  color: #FFFFFF;
  text-align: center;
  line-height: 80px;
  cursor: pointer;
}
/* line 210, ../sass/_product.scss */
#product #product-info .info #add p.sold-out {
  background-color: #888888;
}
/* line 217, ../sass/_product.scss */
#product #similar-products {
  padding: 162px 140px 0;
  overflow: hidden;
}
/* line 221, ../sass/_product.scss */
#product #similar-products .similar-products {
  margin-top: 40px;
}
/* line 224, ../sass/_product.scss */
#product #similar-products .similar-products .similar-product {
  width: calc(50% - 60px);
}
/* line 227, ../sass/_product.scss */
#product #similar-products .similar-products .similar-product .thumbnail {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
}
/* line 235, ../sass/_product.scss */
#product #similar-products .similar-products .similar-product .info {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #222222;
}
/* line 240, ../sass/_product.scss */
#product #similar-products .similar-products .similar-product .info .title {
  float: left;
}
/* line 244, ../sass/_product.scss */
#product #similar-products .similar-products .similar-product .info .price {
  float: right;
}
/* line 249, ../sass/_product.scss */
#product #similar-products .similar-products .similar-product:first-child {
  float: left;
}
/* line 253, ../sass/_product.scss */
#product #similar-products .similar-products .similar-product:last-child {
  float: right;
}

/* line 1, ../sass/_full-video.scss */
#video-container {
  position: fixed;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
}
/* line 8, ../sass/_full-video.scss */
#video-container #video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  overflow: hidden;
}
/* line 14, ../sass/_full-video.scss */
#video-container #video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 24, ../sass/_full-video.scss */
#buffer {
  width: 100%;
  height: 100vh;
}

/* line 1, ../sass/_about.scss */
#about {
  background-color: #FFFFFF;
  position: relative;
}

/* line 3, ../sass/_faq.scss */
#faq .faq-section {
  height: 70px;
  overflow: hidden;
  border-bottom: 1px solid #222222;
}
/* line 8, ../sass/_faq.scss */
#faq .faq-section .faq-section-header {
  line-height: 70px;
  cursor: pointer;
}
/* line 13, ../sass/_faq.scss */
#faq .faq-section .content {
  margin-bottom: 20px;
}

/* line 1, ../sass/_contact.scss */
#contact {
  width: 600px;
  min-height: 100vh;
  margin: 0 auto;
  padding-top: 162px;
}
/* line 7, ../sass/_contact.scss */
#contact #contact-form {
  border: 1px solid #222222;
  border-bottom: 0;
}
/* line 11, ../sass/_contact.scss */
#contact #contact-form .form-row {
  border-bottom: 1px solid #222222;
  height: 80px;
  position: relative;
}
/* line 16, ../sass/_contact.scss */
#contact #contact-form .form-row label {
  line-height: 80px;
  padding-left: 30px;
  position: relative;
  z-index: 1;
  cursor: text;
  transition: font-size 0.3s, line-height 0.3s, color 0.3s;
}
/* line 24, ../sass/_contact.scss */
#contact #contact-form .form-row label.active {
  opacity: 0;
}
/* line 31, ../sass/_contact.scss */
#contact #contact-form .form-row label.incorrect {
  color: #AA0000;
}
/* line 36, ../sass/_contact.scss */
#contact #contact-form .form-row input, #contact #contact-form .form-row textarea {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: 30px;
}
/* line 46, ../sass/_contact.scss */
#contact #contact-form .form-row textarea {
  padding-top: 30px;
}
/* line 50, ../sass/_contact.scss */
#contact #contact-form .form-row.large {
  height: 160px;
}
/* line 56, ../sass/_contact.scss */
#contact #send {
  width: 100%;
  height: 80px;
  text-align: center;
  line-height: 80px;
  margin: 40px 0;
  background-color: #222222;
  color: #FFFFFF;
  cursor: pointer;
}
/* line 67, ../sass/_contact.scss */
#contact .additional-contact-info {
  text-align: center;
  color: #888888;
  margin-bottom: 20px;
}
/* line 72, ../sass/_contact.scss */
#contact .additional-contact-info a {
  color: #222222;
}

/* line 1, ../sass/_checkout.scss */
#checkout {
  width: 600px;
  min-height: calc(100% - 125px);
  margin: 0 auto;
  padding-top: 162px;
}
/* line 7, ../sass/_checkout.scss */
#checkout .additional-info {
  margin: 40px 0 10px;
  text-align: center;
  color: #888888;
}
/* line 12, ../sass/_checkout.scss */
#checkout .additional-info a {
  color: #222222;
}

/* line 1, ../sass/_loading-overlay.scss */
#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 1000000;
}
/* line 10, ../sass/_loading-overlay.scss */
#loading-overlay .logo {
  position: fixed;
  top: 50%;
  left: 50%;
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/* line 16, ../sass/_loading-overlay.scss */
#loading-overlay .logo img {
  width: 50px;
  height: 50px;
  animation: rotating 1s linear infinite;
}
@-o-keyframes rotating {
  from {
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes rotating {
  from {
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-ms-keyframes rotating {
  from {
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotating {
  from {
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@media only screen and (min-device-width: 375px) and (max-device-width: 667px), screen and (min-device-width: 414px) and (max-device-width: 736px), screen and (min-device-width: 320px) and (max-device-width: 568px), screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* line 10, ../sass/_mobile.scss */
  .text-container {
    padding-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
    min-width: 0px;
    width: auto;
    max-width: auto;
  }

  /* line 19, ../sass/_mobile.scss */
  #video-container {
    position: static;
    height: auto;
    padding-top: 90px;
    pointer-events: all;
  }
  /* line 25, ../sass/_mobile.scss */
  #video-container #video {
    position: static;
    min-height: initial;
  }
  /* line 29, ../sass/_mobile.scss */
  #video-container #video iframe {
    position: static;
  }
  /* line 34, ../sass/_mobile.scss */
  #video-container .hero-tagline {
    position: static;
    -o-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
    text-align: center;
    font-size: 24px !important;
    padding: 20px;
    width: 100%;
  }

  /* line 44, ../sass/_mobile.scss */
  .hero-tagline {
    width: 90%;
    text-align: center;
  }

  /* line 49, ../sass/_mobile.scss */
  input {
    border-radius: 0;
  }

  /* line 57, ../sass/_mobile.scss */
  body.mobile-homepage #video-container {
    top: 0;
    padding-top: 200px;
  }

  /* line 63, ../sass/_mobile.scss */
  #mobile-homepage-buffer {
    width: 100vw;
  }

  /* line 72, ../sass/_mobile.scss */
  #header {
    z-index: 3;
    padding: 30px 20px 20px;
    height: auto;
  }
  /* line 77, ../sass/_mobile.scss */
  #header a #title {
    top: 30px;
  }

  /* line 82, ../sass/_mobile.scss */
  #menu-button {
    margin: 30px 20px 20px;
  }

  /* line 87, ../sass/_mobile.scss */
  #menu {
    padding: 20px;
    padding-top: 114px;
  }

  /* line 96, ../sass/_mobile.scss */
  #cart {
    z-index: 3;
    width: 100vw;
  }
  /* line 100, ../sass/_mobile.scss */
  #cart #cart-review {
    padding: 80px 20px 0;
  }
  /* line 103, ../sass/_mobile.scss */
  #cart #cart-review .checkout-row .info .thumbnail {
    width: 30%;
    padding-bottom: 30%;
  }
  /* line 109, ../sass/_mobile.scss */
  #cart .close-cart {
    top: 30px;
    right: 20px;
  }

  /* line 145, ../sass/_mobile.scss */
  #checkout {
    width: auto;
    padding-top: 80px;
  }
  /* line 149, ../sass/_mobile.scss */
  #checkout #cart-review {
    padding: 0 20px;
  }

  /* line 158, ../sass/_mobile.scss */
  #footer {
    font-size: 18px;
    height: 235px;
    padding: 25px 20px 20px;
  }
  /* line 163, ../sass/_mobile.scss */
  #footer #copyright {
    float: none;
  }
  /* line 168, ../sass/_mobile.scss */
  #footer #footer-items {
    float: none;
    padding-top: 20px;
  }
  /* line 172, ../sass/_mobile.scss */
  #footer #footer-items .footer-item {
    float: none;
    margin-left: 0px;
  }
  /* line 176, ../sass/_mobile.scss */
  #footer #footer-items .footer-item.link {
    line-height: 22px;
  }
  /* line 179, ../sass/_mobile.scss */
  #footer #footer-items .footer-item.link:hover {
    border: none;
  }
  /* line 184, ../sass/_mobile.scss */
  #footer #footer-items .footer-item.icon {
    float: left;
    margin-right: 10px;
    margin-top: 15px;
  }

  /* line 193, ../sass/_mobile.scss */
  #subscribe-overlay {
    background-color: #222222;
    z-index: 5;
  }
  /* line 197, ../sass/_mobile.scss */
  #subscribe-overlay .content {
    width: 100%;
    min-width: initial;
    max-width: initial;
    height: 60%;
    min-height: initial;
    max-height: initial;
    padding: 20px;
  }
  /* line 208, ../sass/_mobile.scss */
  #subscribe-overlay .content #mc_embed_signup .mc-field-group {
    width: 60%;
  }
  /* line 212, ../sass/_mobile.scss */
  #subscribe-overlay .content #mc_embed_signup #mc-embedded-subscribe {
    width: 40%;
  }

  /* line 223, ../sass/_mobile.scss */
  #contact {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  /* line 232, ../sass/_mobile.scss */
  #contact #contact-form .form-row label {
    padding-left: 20px;
  }
  /* line 236, ../sass/_mobile.scss */
  #contact #contact-form .form-row input, #contact #contact-form .form-row textarea {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* line 248, ../sass/_mobile.scss */
  #products {
    padding-top: 80px;
    min-height: auto !important;
    position: absolute;
  }
  /* line 253, ../sass/_mobile.scss */
  #products #slider {
    overflow-x: hidden;
  }
  /* line 256, ../sass/_mobile.scss */
  #products #slider .slick-list img {
    height: auto;
    width: 100%;
  }
  /* line 261, ../sass/_mobile.scss */
  #products #slider .arrow {
    height: 100%;
    width: 55px;
  }
  /* line 265, ../sass/_mobile.scss */
  #products #slider .arrow.right div {
    left: 50%;
  }
  /* line 269, ../sass/_mobile.scss */
  #products #slider .arrow.left div {
    left: calc(50% + 18px);
  }
  /* line 274, ../sass/_mobile.scss */
  #products #slider .polite .slick-track .slick-slide {
    height: auto;
  }
  /* line 279, ../sass/_mobile.scss */
  #products #product-button {
    position: relative;
    left: 0;
    width: calc(100% - 40px);
    height: 70px;
    margin: 20px;
    -o-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
  }
  /* line 287, ../sass/_mobile.scss */
  #products #product-button a p {
    line-height: 70px;
    font-size: 22px;
    padding: 0 10px;
  }
  /* line 294, ../sass/_mobile.scss */
  #products #products-buffer {
    height: 0px;
  }

  /* line 300, ../sass/_mobile.scss */
  #product {
    padding-top: 80px;
  }
  /* line 305, ../sass/_mobile.scss */
  #product #product-info .slideshow {
    width: 100%;
    height: auto;
    overflow: visible;
  }
  /* line 310, ../sass/_mobile.scss */
  #product #product-info .slideshow .mobile-slideshow {
    display: none;
    width: 100%;
    height: 300px;
  }
  /* line 315, ../sass/_mobile.scss */
  #product #product-info .slideshow .mobile-slideshow .slick-track img {
    display: block;
    width: 100vw;
    height: auto;
  }
  /* line 321, ../sass/_mobile.scss */
  #product #product-info .slideshow .mobile-slideshow .arrow {
    position: absolute;
    width: 100px;
    height: 100%;
    top: 0;
    z-index: 1;
    cursor: pointer;
  }
  /* line 329, ../sass/_mobile.scss */
  #product #product-info .slideshow .mobile-slideshow .arrow div {
    position: absolute;
    top: 50%;
    width: 37px;
    height: 37px;
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: left 0.3s;
  }
  /* line 337, ../sass/_mobile.scss */
  #product #product-info .slideshow .mobile-slideshow .arrow div img {
    width: 100%;
    height: 100%;
  }
  /* line 343, ../sass/_mobile.scss */
  #product #product-info .slideshow .mobile-slideshow .arrow.left {
    left: 0;
  }
  /* line 346, ../sass/_mobile.scss */
  #product #product-info .slideshow .mobile-slideshow .arrow.left div {
    left: 10px;
  }
  /* line 351, ../sass/_mobile.scss */
  #product #product-info .slideshow .mobile-slideshow .arrow.right {
    right: 0;
  }
  /* line 354, ../sass/_mobile.scss */
  #product #product-info .slideshow .mobile-slideshow .arrow.right div {
    right: 10px;
  }
  /* line 360, ../sass/_mobile.scss */
  #product #product-info .slideshow .mobile-slideshow.active {
    display: block;
  }
  /* line 366, ../sass/_mobile.scss */
  #product #product-info .info {
    position: static;
    width: 100%;
    min-width: initial;
    max-width: initial;
    padding: 30px 20px 20px;
  }
  /* line 375, ../sass/_mobile.scss */
  #product #product-info .info .main-info .title {
    width: 100%;
  }
  /* line 379, ../sass/_mobile.scss */
  #product #product-info .info .main-info .price {
    float: left;
    margin-top: 15px;
  }
  /* line 385, ../sass/_mobile.scss */
  #product #product-info .info #details .detail {
    max-height: initial;
  }
  /* line 389, ../sass/_mobile.scss */
  #product #product-info .info #add {
    margin-bottom: 50px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* line 404, ../sass/_mobile.scss */
  .text-container {
    padding-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
    min-width: 0px;
    width: auto;
    max-width: auto;
  }

  /* line 413, ../sass/_mobile.scss */
  #video-container {
    position: static;
    height: auto;
    padding-top: 90px;
    pointer-events: all;
  }
  /* line 419, ../sass/_mobile.scss */
  #video-container #video {
    position: static;
    min-height: initial;
  }
  /* line 423, ../sass/_mobile.scss */
  #video-container #video iframe {
    position: static;
  }
  /* line 428, ../sass/_mobile.scss */
  #video-container .hero-tagline {
    position: static;
    -o-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
    text-align: center;
    font-size: 24px !important;
    padding: 20px;
    width: 100%;
  }

  /* line 438, ../sass/_mobile.scss */
  .hero-tagline {
    width: 90%;
    text-align: center;
  }

  /* line 447, ../sass/_mobile.scss */
  body.mobile-homepage #video-container {
    position: fixed;
    top: 0;
    padding-top: 200px;
  }

  /* line 453, ../sass/_mobile.scss */
  #mobile-homepage-buffer {
    width: 100vw;
    height: 100vh;
  }

  /* line 462, ../sass/_mobile.scss */
  #header {
    z-index: 3;
    padding: 30px 20px 20px;
    height: auto;
  }
  /* line 467, ../sass/_mobile.scss */
  #header a #title {
    top: 30px;
  }

  /* line 472, ../sass/_mobile.scss */
  #menu-button {
    margin: 30px 20px 20px;
  }

  /* line 477, ../sass/_mobile.scss */
  #menu {
    padding: 20px;
    padding-top: 114px;
  }

  /* line 486, ../sass/_mobile.scss */
  #cart {
    z-index: 3;
  }
  /* line 489, ../sass/_mobile.scss */
  #cart #cart-review {
    padding: 170px 20px 70px 150px;
  }
  /* line 494, ../sass/_mobile.scss */
  #cart #cart-review .checkout-row .info .thumbnail {
    width: 70%;
    padding-bottom: 70%;
  }
  /* line 499, ../sass/_mobile.scss */
  #cart #cart-review .checkout-row .info .sub-info {
    margin: 20px 0 0;
  }
  /* line 505, ../sass/_mobile.scss */
  #cart .close-cart {
    top: 50px;
    left: 150px;
  }

  /* line 515, ../sass/_mobile.scss */
  #checkout {
    width: auto;
    padding-top: 80px;
  }
  /* line 519, ../sass/_mobile.scss */
  #checkout #cart-review {
    padding: 0 20px;
  }

  /* line 528, ../sass/_mobile.scss */
  #footer {
    font-size: 18px;
    height: 235px;
    padding: 25px 20px 20px;
  }
  /* line 533, ../sass/_mobile.scss */
  #footer #copyright {
    float: none;
  }
  /* line 538, ../sass/_mobile.scss */
  #footer #footer-items {
    float: none;
    padding-top: 20px;
  }
  /* line 542, ../sass/_mobile.scss */
  #footer #footer-items .footer-item {
    float: none;
    margin-left: 0px;
  }
  /* line 546, ../sass/_mobile.scss */
  #footer #footer-items .footer-item.link {
    line-height: 22px;
  }
  /* line 549, ../sass/_mobile.scss */
  #footer #footer-items .footer-item.link:hover {
    border: none;
  }
  /* line 554, ../sass/_mobile.scss */
  #footer #footer-items .footer-item.icon {
    float: left;
    margin-right: 10px;
    margin-top: 15px;
  }

  /* line 563, ../sass/_mobile.scss */
  #subscribe-overlay {
    background-color: #222222;
    z-index: 5;
  }
  /* line 567, ../sass/_mobile.scss */
  #subscribe-overlay .content {
    width: 100%;
    min-width: initial;
    max-width: initial;
    height: 60%;
    min-height: initial;
    max-height: initial;
    padding: 20px;
  }
  /* line 578, ../sass/_mobile.scss */
  #subscribe-overlay .content #mc_embed_signup .mc-field-group {
    width: 60%;
  }
  /* line 582, ../sass/_mobile.scss */
  #subscribe-overlay .content #mc_embed_signup #mc-embedded-subscribe {
    width: 40%;
  }

  /* line 593, ../sass/_mobile.scss */
  #contact {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  /* line 602, ../sass/_mobile.scss */
  #contact #contact-form .form-row label {
    padding-left: 20px;
  }
  /* line 606, ../sass/_mobile.scss */
  #contact #contact-form .form-row input, #contact #contact-form .form-row textarea {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* line 618, ../sass/_mobile.scss */
  #products {
    padding-top: 80px;
  }
  /* line 623, ../sass/_mobile.scss */
  #products #slider .slick-list img {
    height: auto;
    width: 100%;
  }
  /* line 628, ../sass/_mobile.scss */
  #products #slider .arrow {
    height: 100%;
    width: 55px;
  }
  /* line 634, ../sass/_mobile.scss */
  #products #product-button {
    position: relative;
    left: 0;
    width: calc(100% - 40px);
    height: 70px;
    margin: 20px;
    -o-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
  }
  /* line 642, ../sass/_mobile.scss */
  #products #product-button a p {
    line-height: 70px;
  }
  /* line 647, ../sass/_mobile.scss */
  #products #products-buffer {
    height: calc(100vh + 100px);
  }

  /* line 652, ../sass/_mobile.scss */
  #product {
    padding-top: 80px;
  }
  /* line 657, ../sass/_mobile.scss */
  #product #product-info .slideshow {
    width: 100%;
    height: auto;
    overflow: visible;
  }
  /* line 662, ../sass/_mobile.scss */
  #product #product-info .slideshow .mobile-slideshow {
    display: none;
    width: 100%;
    height: 300px;
  }
  /* line 667, ../sass/_mobile.scss */
  #product #product-info .slideshow .mobile-slideshow .slick-track img {
    display: block;
    width: 100vw;
    height: auto;
  }
  /* line 673, ../sass/_mobile.scss */
  #product #product-info .slideshow .mobile-slideshow .arrow {
    position: absolute;
    width: 100px;
    height: 100%;
    top: 0;
    z-index: 1;
    cursor: pointer;
  }
  /* line 681, ../sass/_mobile.scss */
  #product #product-info .slideshow .mobile-slideshow .arrow div {
    position: absolute;
    top: 50%;
    width: 37px;
    height: 37px;
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: left 0.3s;
  }
  /* line 689, ../sass/_mobile.scss */
  #product #product-info .slideshow .mobile-slideshow .arrow div img {
    width: 100%;
    height: 100%;
  }
  /* line 695, ../sass/_mobile.scss */
  #product #product-info .slideshow .mobile-slideshow .arrow.left {
    left: 0;
  }
  /* line 698, ../sass/_mobile.scss */
  #product #product-info .slideshow .mobile-slideshow .arrow.left div {
    left: 10px;
  }
  /* line 703, ../sass/_mobile.scss */
  #product #product-info .slideshow .mobile-slideshow .arrow.right {
    right: 0;
  }
  /* line 706, ../sass/_mobile.scss */
  #product #product-info .slideshow .mobile-slideshow .arrow.right div {
    right: 10px;
  }
  /* line 712, ../sass/_mobile.scss */
  #product #product-info .slideshow .mobile-slideshow.active {
    display: block;
  }
  /* line 718, ../sass/_mobile.scss */
  #product #product-info .info {
    position: static;
    width: 100%;
    min-width: initial;
    max-width: initial;
    padding: 30px 20px 20px;
  }
  /* line 727, ../sass/_mobile.scss */
  #product #product-info .info .main-info .title {
    width: 100%;
  }
  /* line 731, ../sass/_mobile.scss */
  #product #product-info .info .main-info .price {
    float: left;
    margin-top: 15px;
  }
  /* line 737, ../sass/_mobile.scss */
  #product #product-info .info #details .detail {
    max-height: initial;
  }
  /* line 741, ../sass/_mobile.scss */
  #product #product-info .info #add {
    margin-bottom: 50px;
  }

  	/*
  
  	#video-container {
  		position: static;
  		height: auto;
  		padding-top: 70px;
  		pointer-events: all;
  
  		#video {
  			position: static;
  			min-height: initial;
  
  			iframe {
  				position: static;
  			}
  		}
  
  		.hero-tagline {
  			position: static;
  			@include transform(none);
  			text-align: center;
  			font-size: 24px !important;
  			padding: 20px;
  			width: 100%;
  		}
  	}
  
  	.hero-tagline {
  		width: 90%;
  		text-align: center;
  	}
  
  	// ////////////////////////////////
  	// H O M E P A G E
  	// //////////////////////////////////////////////
  
  	body.mobile-homepage #video-container {
  		position: fixed;
  		top: 0;
  		padding-top: 200px;
  	}
  
  	#mobile-homepage-buffer {
  		width: 100vw;
  		height: 100vh;
  	}
  
  	// ////////////////////////////////
  	// P R O D U C T S
  	// //////////////////////////////////////////////
  	/*
  	#products {
  
  		//padding-top: 70px;
  
  		#slider {
  
  			.slick-list img {
  				height:auto;
  				width:100%;
  			}
  
  			.arrow {
  				height:100%;
  				width:55px;
  			}
  		}
  
  		#product-button {
  			position:relative;
  			left: calc(50% - 200px);
  			//width: calc(100% - 40px);
  			//height: 70px;
  			//margin: 20px;
  			@include transform(translateY(-255%));
  
  			a p {
  				//line-height: 70px;
  			}
  		}
  
  		#products-buffer {
  			//height:calc(100vh + 100px);
  		}
  	}
  
  	//
  
  	#product {
  		padding-top: 70px;
  
  		.hero-arrow {
  			z-index:999;
  			display:block;
  		}
  
  		#product-info {
  
  			.slideshow {
  				width: 100%;
  				height: auto;
  				overflow: visible;
  
  				.mobile-slideshow {
  					display: none;
  					width: 100%;
  					height: 300px;
  
  					.slick-track img {
  						display: block;
  						width: 100vw;
  						height: auto;
  					}
  
  					.arrow {
  						position: absolute;
  						width: 100px;
  						height: 100%;
  						top: 0;
  						z-index: 1;
  						cursor: pointer;
  
  						div {
  							position: absolute;
  							top: 50%;
  							width: 37px;
  							height: 37px;
  							@include transform(translateY(-50%));
  							transition: left 0.3s;
  
  							img {
  								width: 100%;
  								height: 100%;
  							}
  						}
  
  						&.left {
  							left: 0;
  							
  							div {
  								left: 10px;
  							}
  						}
  
  						&.right {
  							right: 0;
  
  							div {
  								right: 10px;
  							}
  						}
  					}
  
  					&.active {
  						display: block;
  					}
  				}
  			}
  
  			.info {
  				position: relative;
  				width: 100%;
  				min-width: initial;
  				max-width: initial;
  				padding: $global-padding-m;
  				z-index:1000;
  				background-color: white;
  				left:0;
  
  				.main-info {
  
  					.title {
  						width: 100%;
  					}
  
  					.price {
  						float: left;
  						margin-top: 15px;
  					}
  				}
  
  				#details .detail {
  					max-height: initial;
  				}
  
  				#add {
  					margin-bottom: 50px;
  				}
  			}
  		}
  	}
  	#products {
  		padding-top: 160px;
  
  		#slider {
  
  			.slick-list img {
  				height:auto;
  				width:100%;
  			}
  
  			.arrow {
  				height:100%;
  				width:55px;
  			}
  		}
  
  		#product-button {
  			position:relative;
  			left: 0;
  			width: calc(100% - 40px);
  			height: 70px;
  			margin: 20px;
  			@include transform(none);
  
  			a p {
  				line-height: 70px;
  			}
  		}
  
  		#products-buffer {
  			height:calc(100vh + 100px);
  		}
  	}
  
  	#product {
  		padding-top: 160px;
  
  		#product-info {
  
  			.slideshow {
  				width: 100%;
  				height: auto;
  				overflow: visible;
  
  				.mobile-slideshow {
  					display: none;
  					width: 100%;
  					height: 300px;
  
  					.slick-track img {
  						display: block;
  						width: 100vw;
  						height: auto;
  					}
  
  					.arrow {
  						position: absolute;
  						width: 100px;
  						height: 100%;
  						top: 0;
  						z-index: 1;
  						cursor: pointer;
  
  						div {
  							position: absolute;
  							top: 50%;
  							width: 37px;
  							height: 37px;
  							@include transform(translateY(-50%));
  							transition: left 0.3s;
  
  							img {
  								width: 100%;
  								height: 100%;
  							}
  						}
  
  						&.left {
  							left: 0;
  							
  							div {
  								left: 10px;
  							}
  						}
  
  						&.right {
  							right: 0;
  
  							div {
  								right: 10px;
  							}
  						}
  					}
  
  					&.active {
  						display: block;
  					}
  				}
  			}
  
  			.info {
  				position: static;
  				width: 100%;
  				min-width: initial;
  				max-width: initial;
  				padding: 30px $global-padding-m $global-padding-m;
  
  				.main-info {
  
  					.title {
  						width: 100%;
  					}
  
  					.price {
  						float: left;
  						margin-top: 15px;
  					}
  				}
  
  				#details .detail {
  					max-height: initial;
  				}
  
  				#add {
  					margin-bottom: 50px;
  				}
  			}
  		}
  	} */
}
