@charset "UTF-8";

@import url(animate.min.css);

#toggle--debug {
  position: fixed;
  z-index: 9999999999;
  bottom: 7px;
  left: 7px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 15px;
  background-color: rgba(0, 0, 0, 0.8);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  cursor: pointer;
}

#toggle--debug:hover {
  color: white;
}

#debug {
  display: none;
  position: fixed;
  z-index: 9999999999;
  bottom: 37px;
  left: 37px;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  font-family: monospace;
  width: 300px;
  font-size: 13px;
}

#debug table {
  margin: 7px 0;
}

#debug table:first-of-type {
  margin: 0;
}

#debug table thead {
  background-color: rgba(0, 0, 0, 0.25);
  width: 100%;
  padding: 5px 10px;
  margin: 0 0 0;
  font-weight: bold;
}

#debug table thead tr {
}

#debug table tbody tr td {
  padding: 5px 10px;
}

#debug table tbody tr td span {
  color: #aee200;
}

#debug table tbody tr td:last-child {
  text-align: right;
  color: #83d9f0;
  font-weight: bold;
}

#debug #debug__viewport {
  color: #fa4c90;
}

#debug .color-number {
  color: #ac80ff !important;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

html.remodal-is-locked {
  overflow: hidden;
  touch-action: none;
}

.remodal, [data-remodal-id] {
  display: none;
}

.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

.remodal-overlay, .remodal-wrapper {
  backface-visibility: hidden;
}

.remodal {
  position: relative;
  outline: none;
  text-size-adjust: 100%;
}

.remodal-is-initialized {
  display: inline-block;
}

.remodal-bg.remodal-is-opening, .remodal-bg.remodal-is-opened {
  filter: blur(3px);
}

.remodal-overlay {
  background: rgba(0, 0, 0, 0.8);
}

.remodal-overlay.remodal-is-opening, .remodal-overlay.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  animation-name: remodal-overlay-closing-keyframes;
}

.remodal-wrapper {
  padding: 10px 10px 0;
}

.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
  background: #none;
}

.remodal.remodal-is-opening, .remodal.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  animation-name: remodal-closing-keyframes;
}

.remodal, .remodal-wrapper:after {
  vertical-align: middle;
}

.remodal-close {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: visible;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  color: #fff;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover, .remodal-close:focus {
  color: #bebebe;
}

.remodal-close:before {
  font-family: 'icomoon';
  font-size: 28px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "\e903";
  text-align: center;
}

.remodal-confirm, .remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover, .remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover, .remodal-cancel:focus {
  background: #ef5350;
}

.remodal-confirm::-moz-focus-inner, .remodal-cancel::-moz-focus-inner, .remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

@keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0;
  }

  to {
    transform: none;
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1;
  }

  to {
    transform: scale(0.95);
    opacity: 0;
    filter: blur(0);
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 1100px;
  }
}

.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}

.glide {
  position: relative;
  width: 100%;
  height: 100%;
}

.glide__wrapper {
  overflow: hidden;
}

.glide__track {
  position: relative;
  width: 100%;
  height: 100%;
  list-style: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -ms-touch-action: pan-Y;
  touch-action: pan-Y;
  overflow: hidden;
  padding: 0;
}

.glide__track.dragging {
  cursor: grabbing;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.glide__slide {
  width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.glide__slide a {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.glide__arrows {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.glide__arrow {
  cursor: pointer;
}

.glide__bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.glide--slider .glide__slide {
  float: left;
  clear: none;
}

.glide--carousel.glide--vertical .glide__track {
  overflow: visible;
}

.glide--carousel .glide__slide {
  float: left;
  clear: none;
}

.glide--slideshow .glide__wrapper {
  height: 100%;
}

.glide--slideshow .glide__slide {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transform-style: preserve-3d;
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.glide--slideshow .glide__slide.active {
  z-index: 1;
}

.glide__arrows {
  position: absolute;
}

.glide--horizontal .glide__arrows {
  top: 50%;
  width: 94%;
  margin-left: 3%;
}

.glide--vertical .glide__arrows {
  left: 50%;
  height: 88%;
  margin-top: 6%;
}

.glide__arrow {
  position: absolute;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  font: 11px Arial, sans-serif;
  padding: 9px 0px;
  background-color: transparent;
  border: 0px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  opacity: 1;
  -webkit-transition: opacity 150ms ease, border 300ms ease-in-out;
  transition: opacity 150ms ease, border 300ms ease-in-out;
}

.glide__arrow.disabled {
  opacity: 0.33;
}

.glide__arrow:focus {
  outline: none;
}

.glide__arrow:hover {
  border-color: white;
}

.glide--horizontal .glide__arrow {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.glide--horizontal .glide__arrow.prev {
  left: 0;
}

.glide--horizontal .glide__arrow.next {
  right: 0;
}

.glide--vertical .glide__arrow {
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.glide--vertical .glide__arrow.prev {
  top: 0;
}

.glide--vertical .glide__arrow.next {
  bottom: 0;
}

.glide__bullets {
  position: absolute;
  z-index: 2;
  list-style: none;
}

.glide--horizontal .glide__bullets {
  bottom: 7%;
  left: 0;
  width: 100%;
  height: 12px;
  text-align: center;
}

.glide--vertical .glide__bullets {
  top: 50%;
  right: 8%;
  width: 12px;
  height: auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.glide__bullets > * {
  display: inline-block;
  background-color: rgba(168, 168, 168, 0.2);
  width: 8px;
  height: 8px;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid transparent;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.glide--horizontal .glide__bullets > * {
  margin: 0 5px;
}

.glide--vertical .glide__bullets > * {
  vertical-align: middle;
}

.glide__bullets > *.active {
  background-color: rgba(168, 168, 168, 0.9);
}

.glide__bullets > *:focus {
  outline: none;
}

.glide__bullets > *:hover, .glide__bullets > *:focus {
  border: 2px solid white;
  background-color: rgba(168, 168, 168, 0.9);
}

.blog-slide-show-container .glide--horizontal .glide__arrows {
  top: 40%;
  width: 95%;
  margin-left: 2%;
}

.blog-main .blog-slide-show-container ul li {
  list-style: none !important;
}

.blog-slide-show-container .glide--carousel .glide__slide {
}

.blog-slide-show-container .glide--horizontal .glide__bullets {
  top: 67%;
}

.blog-slide-show-container .glide__bullets > * {
  background-color: rgba(255, 255, 255, 0.5);
}

.blog-slide-show-container .glide__bullets > *.active {
  background-color: rgba(255, 255, 255, 1);
}

@media only screen and (max-width: 1024px) {
  .blog-slide-show-container .glide--horizontal .glide__bullets {
    top: 58%;
  }
}

@media only screen and (max-width: 755px) {
  .blog-slide-show-container .glide--horizontal .glide__bullets {
    top: 51%;
  }
}

@media only screen and (max-width: 655px) {
  .blog-slide-show-container .glide--horizontal .glide__bullets {
    top: 39%;
  }

  .blog-slide-show-container .glide--horizontal .glide__arrows {
    top: 27%;
  }
}

@media only screen and (max-width: 480px) {
  .blog-slide-show-container .glide--horizontal .glide__bullets {
    top: 40%;
  }

  .blog-slide-show-container .glide--horizontal .glide__arrows {
    top: 24%;
  }
}

.mini-currency {
  font-size: 0.3em;
  font-weight: 600;
  margin-left: -3px;
}

.product-price-compare-strike .mini-currency {
  font-size: 0.9em;
  margin-left: 0px;
}

.clearfix {
  *zoom: 1;
}

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

html, body {
  padding: 0;
  margin: 0;
}

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

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

.grid, .grid--rev, .grid--full, .grid-uniform {
  *zoom: 1;
}

.grid:after, .grid--rev:after, .grid--full:after, .grid-uniform:after {
  content: '';
  display: table;
  clear: both;
}

.grid__item.clear {
  clear: both;
}

.grid, .grid--rev, .grid--full, .grid-uniform {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -30px;
}

.grid__item {
  float: left;
  min-height: 1px;
  vertical-align: top;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.grid--rev {
  direction: rtl;
  text-align: left;
}

.grid--rev > .grid__item {
  direction: ltr;
  text-align: left;
  float: right;
}

.grid--full {
  margin-left: 0;
}

.grid--full > .grid__item {
  padding-left: 0;
}

.one-whole {
  width: 100%;
}

.one-half, .two-quarters, .three-sixths, .four-eighths, .five-tenths, .six-twelfths {
  width: 50%;
}

.one-third, .two-sixths, .four-twelfths {
  width: 33.333%;
}

.two-thirds, .four-sixths, .eight-twelfths {
  width: 66.666%;
}

.one-quarter, .two-eighths, .three-twelfths {
  width: 25%;
}

.three-quarters, .six-eighths, .nine-twelfths {
  width: 75%;
}

.one-fifth, .two-tenths {
  width: 20%;
}

.two-fifths, .four-tenths {
  width: 40%;
}

.three-fifths, .six-tenths {
  width: 60%;
}

.four-fifths, .eight-tenths {
  width: 80%;
}

.one-sixth, .two-twelfths {
  width: 16.666%;
}

.five-sixths, .ten-twelfths {
  width: 83.333%;
}

.one-eighth {
  width: 12.5%;
}

.three-eighths {
  width: 37.5%;
}

.five-eighths {
  width: 62.5%;
}

.seven-eighths {
  width: 87.5%;
}

.one-tenth {
  width: 10%;
}

.three-tenths {
  width: 30%;
}

.seven-tenths {
  width: 70%;
}

.nine-tenths {
  width: 90%;
}

.one-twelfth {
  width: 8.333%;
}

.five-twelfths {
  width: 41.666%;
}

.seven-twelfths {
  width: 58.333%;
}

.eleven-twelfths {
  width: 91.666%;
}

.show {
  display: block !important;
}

.hide {
  display: none !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.img-center {
  margin: 0 auto !important;
}

.left {
  float: left !important;
}

.right {
  float: right !important;
}

@media only screen and (max-width: 480px) {
  .small--one-whole {
    width: 100%;
  }

  .small--one-half, .small--two-quarters, .small--three-sixths, .small--four-eighths, .small--five-tenths, .small--six-twelfths {
    width: 50%;
  }

  .small--one-third, .small--two-sixths, .small--four-twelfths {
    width: 33.333%;
  }

  .small--two-thirds, .small--four-sixths, .small--eight-twelfths {
    width: 66.666%;
  }

  .small--one-quarter, .small--two-eighths, .small--three-twelfths {
    width: 25%;
  }

  .small--three-quarters, .small--six-eighths, .small--nine-twelfths {
    width: 75%;
  }

  .small--one-fifth, .small--two-tenths {
    width: 20%;
  }

  .small--two-fifths, .small--four-tenths {
    width: 40%;
  }

  .small--three-fifths, .small--six-tenths {
    width: 60%;
  }

  .small--four-fifths, .small--eight-tenths {
    width: 80%;
  }

  .small--one-sixth, .small--two-twelfths {
    width: 16.666%;
  }

  .small--five-sixths, .small--ten-twelfths {
    width: 83.333%;
  }

  .small--one-eighth {
    width: 12.5%;
  }

  .small--three-eighths {
    width: 37.5%;
  }

  .small--five-eighths {
    width: 62.5%;
  }

  .small--seven-eighths {
    width: 87.5%;
  }

  .small--one-tenth {
    width: 10%;
  }

  .small--three-tenths {
    width: 30%;
  }

  .small--seven-tenths {
    width: 70%;
  }

  .small--nine-tenths {
    width: 90%;
  }

  .small--one-twelfth {
    width: 8.333%;
  }

  .small--five-twelfths {
    width: 41.666%;
  }

  .small--seven-twelfths {
    width: 58.333%;
  }

  .small--eleven-twelfths {
    width: 91.666%;
  }

  .small--show {
    display: block !important;
  }

  .small--hide {
    display: none !important;
  }

  .small--text-left {
    text-align: left !important;
  }

  .small--text-right {
    text-align: right !important;
  }

  .small--text-center {
    text-align: center !important;
  }

  .small--left {
    float: left !important;
  }

  .small--right {
    float: right !important;
  }

  .small--mt20 {
    margin-top: 20px !important;
  }

  .small--mt40 {
    margin-top: 40px !important;
  }

  .small--img-center {
    margin: 0 auto !important;
  }

  .grid-uniform .small--one-half:nth-child(2n+1), .grid-uniform .small--two-quarters:nth-child(2n+1), .grid-uniform .small--three-sixths:nth-child(2n+1), .grid-uniform .small--four-eighths:nth-child(2n+1), .grid-uniform .small--five-tenths:nth-child(2n+1), .grid-uniform .small--six-twelfths:nth-child(2n+1), .grid-uniform .small--one-third:nth-child(3n+1), .grid-uniform .small--two-sixths:nth-child(3n+1), .grid-uniform .small--four-twelfths:nth-child(3n+1), .grid-uniform .small--one-quarter:nth-child(4n+1), .grid-uniform .small--two-eighths:nth-child(4n+1), .grid-uniform .small--three-twelfths:nth-child(4n+1), .grid-uniform .small--one-fifth:nth-child(5n+1), .grid-uniform .small--two-tenths:nth-child(5n+1), .grid-uniform .small--one-sixth:nth-child(6n+1), .grid-uniform .small--two-twelfths:nth-child(6n+1), .grid-uniform .small--two-sixths:nth-child(3n+1), .grid-uniform .small--three-sixths:nth-child(2n+1), .grid-uniform .small--two-eighths:nth-child(4n+1), .grid-uniform .small--four-eighths:nth-child(2n+1), .grid-uniform .small--five-tenths:nth-child(2n+1), .grid-uniform .small--one-twelfth:nth-child(12n+1), .grid-uniform .small--two-twelfths:nth-child(6n+1), .grid-uniform .small--three-twelfths:nth-child(4n+1), .grid-uniform .small--four-twelfths:nth-child(3n+1), .grid-uniform .small--six-twelfths:nth-child(2n+1) {
    clear: both;
  }
}

@media only screen and (min-width: 481px) and (max-width: 1023px) {
  .medium--one-whole {
    width: 100%;
  }

  .medium--one-half, .medium--two-quarters, .medium--three-sixths, .medium--four-eighths, .medium--five-tenths, .medium--six-twelfths {
    width: 50%;
  }

  .medium--one-third, .medium--two-sixths, .medium--four-twelfths {
    width: 33.333%;
  }

  .medium--two-thirds, .medium--four-sixths, .medium--eight-twelfths {
    width: 66.666%;
  }

  .medium--one-quarter, .medium--two-eighths, .medium--three-twelfths {
    width: 25%;
  }

  .medium--three-quarters, .medium--six-eighths, .medium--nine-twelfths {
    width: 75%;
  }

  .medium--one-fifth, .medium--two-tenths {
    width: 20%;
  }

  .medium--two-fifths, .medium--four-tenths {
    width: 40%;
  }

  .medium--three-fifths, .medium--six-tenths {
    width: 60%;
  }

  .medium--four-fifths, .medium--eight-tenths {
    width: 80%;
  }

  .medium--one-sixth, .medium--two-twelfths {
    width: 16.666%;
  }

  .medium--five-sixths, .medium--ten-twelfths {
    width: 83.333%;
  }

  .medium--one-eighth {
    width: 12.5%;
  }

  .medium--three-eighths {
    width: 37.5%;
  }

  .medium--five-eighths {
    width: 62.5%;
  }

  .medium--seven-eighths {
    width: 87.5%;
  }

  .medium--one-tenth {
    width: 10%;
  }

  .medium--three-tenths {
    width: 30%;
  }

  .medium--seven-tenths {
    width: 70%;
  }

  .medium--nine-tenths {
    width: 90%;
  }

  .medium--one-twelfth {
    width: 8.333%;
  }

  .medium--five-twelfths {
    width: 41.666%;
  }

  .medium--seven-twelfths {
    width: 58.333%;
  }

  .medium--eleven-twelfths {
    width: 91.666%;
  }

  .medium--show {
    display: block !important;
  }

  .medium--hide {
    display: none !important;
  }

  .medium--text-left {
    text-align: left !important;
  }

  .medium--text-right {
    text-align: right !important;
  }

  .medium--text-center {
    text-align: center !important;
  }

  .medium--left {
    float: left !important;
  }

  .medium--right {
    float: right !important;
  }

  .medium--pr30 {
    padding-right: 30px !important;
  }

  .medium--mt20 {
    margin-top: 20px !important;
  }

  .medium--mt40 {
    margin-top: 40px !important;
  }

  .medium--mt50 {
    margin-top: 50px !important;
  }

  .medium--positionreset {
    position: relative !important;
    top: 0 !important;
    bottom: 0 !important;
    transform: translate(0%, 0%) !important;
    -webkit-transform: translate(0%, 0%) !important;
    -moz-transform: translate(0%, 0%) !important;
  }

  .grid-uniform .medium--one-half:nth-child(2n+1), .grid-uniform .medium--two-quarters:nth-child(2n+1), .grid-uniform .medium--three-sixths:nth-child(2n+1), .grid-uniform .medium--four-eighths:nth-child(2n+1), .grid-uniform .medium--five-tenths:nth-child(2n+1), .grid-uniform .medium--six-twelfths:nth-child(2n+1), .grid-uniform .medium--one-third:nth-child(3n+1), .grid-uniform .medium--two-sixths:nth-child(3n+1), .grid-uniform .medium--four-twelfths:nth-child(3n+1), .grid-uniform .medium--one-quarter:nth-child(4n+1), .grid-uniform .medium--two-eighths:nth-child(4n+1), .grid-uniform .medium--three-twelfths:nth-child(4n+1), .grid-uniform .medium--one-fifth:nth-child(5n+1), .grid-uniform .medium--two-tenths:nth-child(5n+1), .grid-uniform .medium--one-sixth:nth-child(6n+1), .grid-uniform .medium--two-twelfths:nth-child(6n+1), .grid-uniform .medium--two-sixths:nth-child(3n+1), .grid-uniform .medium--three-sixths:nth-child(2n+1), .grid-uniform .medium--two-eighths:nth-child(4n+1), .grid-uniform .medium--four-eighths:nth-child(2n+1), .grid-uniform .medium--five-tenths:nth-child(2n+1), .grid-uniform .medium--one-twelfth:nth-child(12n+1), .grid-uniform .medium--two-twelfths:nth-child(6n+1), .grid-uniform .medium--three-twelfths:nth-child(4n+1), .grid-uniform .medium--four-twelfths:nth-child(3n+1), .grid-uniform .medium--six-twelfths:nth-child(2n+1) {
    clear: both;
  }
}

@media only screen and (max-width: 1023px) {
  .medium-down--one-whole {
    width: 100%;
  }

  .medium-down--one-half, .medium-down--two-quarters, .medium-down--three-sixths, .medium-down--four-eighths, .medium-down--five-tenths, .medium-down--six-twelfths {
    width: 50%;
  }

  .medium-down--one-third, .medium-down--two-sixths, .medium-down--four-twelfths {
    width: 33.333%;
  }

  .medium-down--two-thirds, .medium-down--four-sixths, .medium-down--eight-twelfths {
    width: 66.666%;
  }

  .medium-down--one-quarter, .medium-down--two-eighths, .medium-down--three-twelfths {
    width: 25%;
  }

  .medium-down--three-quarters, .medium-down--six-eighths, .medium-down--nine-twelfths {
    width: 75%;
  }

  .medium-down--one-fifth, .medium-down--two-tenths {
    width: 20%;
  }

  .medium-down--two-fifths, .medium-down--four-tenths {
    width: 40%;
  }

  .medium-down--three-fifths, .medium-down--six-tenths {
    width: 60%;
  }

  .medium-down--four-fifths, .medium-down--eight-tenths {
    width: 80%;
  }

  .medium-down--one-sixth, .medium-down--two-twelfths {
    width: 16.666%;
  }

  .medium-down--five-sixths, .medium-down--ten-twelfths {
    width: 83.333%;
  }

  .medium-down--one-eighth {
    width: 12.5%;
  }

  .medium-down--three-eighths {
    width: 37.5%;
  }

  .medium-down--five-eighths {
    width: 62.5%;
  }

  .medium-down--seven-eighths {
    width: 87.5%;
  }

  .medium-down--one-tenth {
    width: 10%;
  }

  .medium-down--three-tenths {
    width: 30%;
  }

  .medium-down--seven-tenths {
    width: 70%;
  }

  .medium-down--nine-tenths {
    width: 90%;
  }

  .medium-down--one-twelfth {
    width: 8.333%;
  }

  .medium-down--five-twelfths {
    width: 41.666%;
  }

  .medium-down--seven-twelfths {
    width: 58.333%;
  }

  .medium-down--eleven-twelfths {
    width: 91.666%;
  }

  .medium-down--show {
    display: block !important;
  }

  .medium-down--hide {
    display: none !important;
  }

  .medium-down--text-left {
    text-align: left !important;
  }

  .medium-down--text-right {
    text-align: right !important;
  }

  .medium-down--text-center {
    text-align: center !important;
  }

  .medium-down--left {
    float: left !important;
  }

  .medium-down--right {
    float: right !important;
  }

  .grid-uniform .medium-down--one-half:nth-child(2n+1), .grid-uniform .medium-down--two-quarters:nth-child(2n+1), .grid-uniform .medium-down--three-sixths:nth-child(2n+1), .grid-uniform .medium-down--four-eighths:nth-child(2n+1), .grid-uniform .medium-down--five-tenths:nth-child(2n+1), .grid-uniform .medium-down--six-twelfths:nth-child(2n+1), .grid-uniform .medium-down--one-third:nth-child(3n+1), .grid-uniform .medium-down--two-sixths:nth-child(3n+1), .grid-uniform .medium-down--four-twelfths:nth-child(3n+1), .grid-uniform .medium-down--one-quarter:nth-child(4n+1), .grid-uniform .medium-down--two-eighths:nth-child(4n+1), .grid-uniform .medium-down--three-twelfths:nth-child(4n+1), .grid-uniform .medium-down--one-fifth:nth-child(5n+1), .grid-uniform .medium-down--two-tenths:nth-child(5n+1), .grid-uniform .medium-down--one-sixth:nth-child(6n+1), .grid-uniform .medium-down--two-twelfths:nth-child(6n+1), .grid-uniform .medium-down--two-sixths:nth-child(3n+1), .grid-uniform .medium-down--three-sixths:nth-child(2n+1), .grid-uniform .medium-down--two-eighths:nth-child(4n+1), .grid-uniform .medium-down--four-eighths:nth-child(2n+1), .grid-uniform .medium-down--five-tenths:nth-child(2n+1), .grid-uniform .medium-down--one-twelfth:nth-child(12n+1), .grid-uniform .medium-down--two-twelfths:nth-child(6n+1), .grid-uniform .medium-down--three-twelfths:nth-child(4n+1), .grid-uniform .medium-down--four-twelfths:nth-child(3n+1), .grid-uniform .medium-down--six-twelfths:nth-child(2n+1) {
    clear: both;
  }
}

@media only screen and (min-width: 1024px) {
  .large--one-whole {
    width: 100%;
  }

  .large--one-half, .large--two-quarters, .large--three-sixths, .large--four-eighths, .large--five-tenths, .large--six-twelfths {
    width: 50%;
  }

  .large--one-third, .large--two-sixths, .large--four-twelfths {
    width: 33.333%;
  }

  .large--two-thirds, .large--four-sixths, .large--eight-twelfths {
    width: 66.666%;
  }

  .large--one-quarter, .large--two-eighths, .large--three-twelfths {
    width: 25%;
  }

  .large--three-quarters, .large--six-eighths, .large--nine-twelfths {
    width: 75%;
  }

  .large--one-fifth, .large--two-tenths {
    width: 20%;
  }

  .large--two-fifths, .large--four-tenths {
    width: 40%;
  }

  .large--three-fifths, .large--six-tenths {
    width: 60%;
  }

  .large--four-fifths, .large--eight-tenths {
    width: 80%;
  }

  .large--one-sixth, .large--two-twelfths {
    width: 16.666%;
  }

  .large--five-sixths, .large--ten-twelfths {
    width: 83.333%;
  }

  .large--one-eighth {
    width: 12.5%;
  }

  .large--three-eighths {
    width: 37.5%;
  }

  .large--five-eighths {
    width: 62.5%;
  }

  .large--seven-eighths {
    width: 87.5%;
  }

  .large--one-tenth {
    width: 10%;
  }

  .large--three-tenths {
    width: 30%;
  }

  .large--seven-tenths {
    width: 70%;
  }

  .large--nine-tenths {
    width: 90%;
  }

  .large--one-twelfth {
    width: 8.333%;
  }

  .large--five-twelfths {
    width: 41.666%;
  }

  .large--seven-twelfths {
    width: 58.333%;
  }

  .large--eleven-twelfths {
    width: 91.666%;
  }

  .large--show {
    display: block !important;
  }

  .large--hide {
    display: none !important;
  }

  .large--text-left {
    text-align: left !important;
  }

  .large--text-right {
    text-align: right !important;
  }

  .large--text-center {
    text-align: center !important;
  }

  .large--left {
    float: left !important;
  }

  .large--right {
    float: right !important;
  }

  .large--dark-grey {
    color: #2e2e2f;
  }

  .large--orange {
    color: #C24D00;
  }

  .large--white {
    color: white;
  }

  .large--pl10 {
    padding-left: 50px !important;
  }
  
  .large--ml10 {
    margin-left: 10px !important;
  }

  .large--mt40 {
    margin-top: 40px !important;
  }

  .large--mb40 {
    margin-bottom: 40px !important;
  }

  .large--ml20 {
    margin-left: 20px !important;
  }

  .large--pr40 {
    padding-right: 40px !important;
  }

  .large--pr20 {
    padding-right: 20px !important;
  }

  .large--pl20 {
    padding-left: 20px !important;
  }

  .large--pl30 {
    padding-left: 50px !important;
  }

  .large--pl40 {
    padding-left: 50px !important;
  }

  .large--pl50 {
    padding-left: 50px !important;
  }

  .large--pt50 {
    padding-top: 50px !important;
  }

  .large--vh100 {
    height: 100vh !important;
  }

  .grid-uniform .large--one-half:nth-child(2n+1), .grid-uniform .large--two-quarters:nth-child(2n+1), .grid-uniform .large--three-sixths:nth-child(2n+1), .grid-uniform .large--four-eighths:nth-child(2n+1), .grid-uniform .large--five-tenths:nth-child(2n+1), .grid-uniform .large--six-twelfths:nth-child(2n+1), .grid-uniform .large--one-third:nth-child(3n+1), .grid-uniform .large--two-sixths:nth-child(3n+1), .grid-uniform .large--four-twelfths:nth-child(3n+1), .grid-uniform .large--one-quarter:nth-child(4n+1), .grid-uniform .large--two-eighths:nth-child(4n+1), .grid-uniform .large--three-twelfths:nth-child(4n+1), .grid-uniform .large--one-fifth:nth-child(5n+1), .grid-uniform .large--two-tenths:nth-child(5n+1), .grid-uniform .large--one-sixth:nth-child(6n+1), .grid-uniform .large--two-twelfths:nth-child(6n+1), .grid-uniform .large--two-sixths:nth-child(3n+1), .grid-uniform .large--three-sixths:nth-child(2n+1), .grid-uniform .large--two-eighths:nth-child(4n+1), .grid-uniform .large--four-eighths:nth-child(2n+1), .grid-uniform .large--five-tenths:nth-child(2n+1), .grid-uniform .large--one-twelfth:nth-child(12n+1), .grid-uniform .large--two-twelfths:nth-child(6n+1), .grid-uniform .large--three-twelfths:nth-child(4n+1), .grid-uniform .large--four-twelfths:nth-child(3n+1), .grid-uniform .large--six-twelfths:nth-child(2n+1) {
    clear: both;
  }
}

[class*="push--"] {
  position: relative;
}

.push--one-whole {
  left: 100%;
}

.push--one-half, .push--two-quarters, .push--three-sixths, .push--four-eighths, .push--five-tenths, .push--six-twelfths {
  left: 50%;
}

.push--one-third, .push--two-sixths, .push--four-twelfths {
  left: 33.333%;
}

.push--two-thirds, .push--four-sixths, .push--eight-twelfths {
  left: 66.666%;
}

.push--one-quarter, .push--two-eighths, .push--three-twelfths {
  left: 25%;
}

.push--three-quarters, .push--six-eighths, .push--nine-twelfths {
  left: 75%;
}

.push--one-fifth, .push--two-tenths {
  left: 20%;
}

.push--two-fifths, .push--four-tenths {
  left: 40%;
}

.push--three-fifths, .push--six-tenths {
  left: 60%;
}

.push--four-fifths, .push--eight-tenths {
  left: 80%;
}

.push--one-sixth, .push--two-twelfths {
  left: 16.666%;
}

.push--five-sixths, .push--ten-twelfths {
  left: 83.333%;
}

.push--one-eighth {
  left: 12.5%;
}

.push--three-eighths {
  left: 37.5%;
}

.push--five-eighths {
  left: 62.5%;
}

.push--seven-eighths {
  left: 87.5%;
}

.push--one-tenth {
  left: 10%;
}

.push--three-tenths {
  left: 30%;
}

.push--seven-tenths {
  left: 70%;
}

.push--nine-tenths {
  left: 90%;
}

.push--one-twelfth {
  left: 8.333%;
}

.push--five-twelfths {
  left: 41.666%;
}

.push--seven-twelfths {
  left: 58.333%;
}

.push--eleven-twelfths {
  left: 91.666%;
}

@media only screen and (min-width: 481px) and (max-width: 1023px) {
  .push--medium--one-whole {
    left: 100%;
  }

  .push--medium--one-half, .push--medium--two-quarters, .push--medium--three-sixths, .push--medium--four-eighths, .push--medium--five-tenths, .push--medium--six-twelfths {
    left: 50%;
  }

  .push--medium--one-third, .push--medium--two-sixths, .push--medium--four-twelfths {
    left: 33.333%;
  }

  .push--medium--two-thirds, .push--medium--four-sixths, .push--medium--eight-twelfths {
    left: 66.666%;
  }

  .push--medium--one-quarter, .push--medium--two-eighths, .push--medium--three-twelfths {
    left: 25%;
  }

  .push--medium--three-quarters, .push--medium--six-eighths, .push--medium--nine-twelfths {
    left: 75%;
  }

  .push--medium--one-fifth, .push--medium--two-tenths {
    left: 20%;
  }

  .push--medium--two-fifths, .push--medium--four-tenths {
    left: 40%;
  }

  .push--medium--three-fifths, .push--medium--six-tenths {
    left: 60%;
  }

  .push--medium--four-fifths, .push--medium--eight-tenths {
    left: 80%;
  }

  .push--medium--one-sixth, .push--medium--two-twelfths {
    left: 16.666%;
  }

  .push--medium--five-sixths, .push--medium--ten-twelfths {
    left: 83.333%;
  }

  .push--medium--one-eighth {
    left: 12.5%;
  }

  .push--medium--three-eighths {
    left: 37.5%;
  }

  .push--medium--five-eighths {
    left: 62.5%;
  }

  .push--medium--seven-eighths {
    left: 87.5%;
  }

  .push--medium--one-tenth {
    left: 10%;
  }

  .push--medium--three-tenths {
    left: 30%;
  }

  .push--medium--seven-tenths {
    left: 70%;
  }

  .push--medium--nine-tenths {
    left: 90%;
  }

  .push--medium--one-twelfth {
    left: 8.333%;
  }

  .push--medium--five-twelfths {
    left: 41.666%;
  }

  .push--medium--seven-twelfths {
    left: 58.333%;
  }

  .push--medium--eleven-twelfths {
    left: 91.666%;
  }

  .world-stat-block {
    width: 33%;
  }

  .medium--dark-grey {
    color: #2e2e2f;
  }

  .medium--white {
    color: white;
  }

  .medium--orange {
    color: #C24D00;
  }
}

@media only screen and (max-width: 481px) {
  .push--small--one-whole {
    left: 100%;
  }

  .push--small--one-half, .push--small--two-quarters, .push--small--three-sixths, .push--small--four-eighths, .push--small--five-tenths, .push--small--six-twelfths {
    left: 50%;
  }

  .push--small--one-third, .push--small--two-sixths, .push--small--four-twelfths {
    left: 33.333%;
  }

  .push--small--two-thirds, .push--small--four-sixths, .push--small--eight-twelfths {
    left: 66.666%;
  }

  .push--small--one-quarter, .push--small--two-eighths, .push--small--three-twelfths {
    left: 25%;
  }

  .push--small--three-quarters, .push--small--six-eighths, .push--small--nine-twelfths {
    left: 75%;
  }

  .push--small--one-fifth, .push--small--two-tenths {
    left: 20%;
  }

  .push--small--two-fifths, .push--small--four-tenths {
    left: 40%;
  }

  .push--small--three-fifths, .push--small--six-tenths {
    left: 60%;
  }

  .push--small--four-fifths, .push--small--eight-tenths {
    left: 80%;
  }

  .push--small--one-sixth, .push--small--two-twelfths {
    left: 16.666%;
  }

  .push--small--five-sixths, .push--small--ten-twelfths {
    left: 83.333%;
  }

  .push--small--one-eighth {
    left: 12.5%;
  }

  .push--small--three-eighths {
    left: 37.5%;
  }

  .push--small--five-eighths {
    left: 62.5%;
  }

  .push--small--seven-eighths {
    left: 87.5%;
  }

  .push--small--one-tenth {
    left: 10%;
  }

  .push--small--three-tenths {
    left: 30%;
  }

  .push--small--seven-tenths {
    left: 70%;
  }

  .push--small--nine-tenths {
    left: 90%;
  }

  .push--small--one-twelfth {
    left: 8.333%;
  }

  .push--small--five-twelfths {
    left: 41.666%;
  }

  .push--small--seven-twelfths {
    left: 58.333%;
  }

  .push--small--eleven-twelfths {
    left: 91.666%;
  }

  .small--dark-grey {
    color: #2e2e2f;
  }

  .small--white {
    color: white;
  }

  .small--pt30 {
    padding-top: 30px !important;
  }

  .small--pt50 {
    padding-top: 50px !important;
  }

  .small--mb70 {
    margin-bottom: 70px !important;
  }

  .small--pb70 {
    padding-bottom: 70px !important;
  }
}

@media only screen and (max-width: 1023px) {
  .push--medium-down--one-whole {
    left: 100%;
  }

  .push--medium-down--one-half, .push--medium-down--two-quarters, .push--medium-down--three-sixths, .push--medium-down--four-eighths, .push--medium-down--five-tenths, .push--medium-down--six-twelfths {
    left: 50%;
  }

  .push--medium-down--one-third, .push--medium-down--two-sixths, .push--medium-down--four-twelfths {
    left: 33.333%;
  }

  .push--medium-down--two-thirds, .push--medium-down--four-sixths, .push--medium-down--eight-twelfths {
    left: 66.666%;
  }

  .push--medium-down--one-quarter, .push--medium-down--two-eighths, .push--medium-down--three-twelfths {
    left: 25%;
  }

  .push--medium-down--three-quarters, .push--medium-down--six-eighths, .push--medium-down--nine-twelfths {
    left: 75%;
  }

  .push--medium-down--one-fifth, .push--medium-down--two-tenths {
    left: 20%;
  }

  .push--medium-down--two-fifths, .push--medium-down--four-tenths {
    left: 40%;
  }

  .push--medium-down--three-fifths, .push--medium-down--six-tenths {
    left: 60%;
  }

  .push--medium-down--four-fifths, .push--medium-down--eight-tenths {
    left: 80%;
  }

  .push--medium-down--one-sixth, .push--medium-down--two-twelfths {
    left: 16.666%;
  }

  .push--medium-down--five-sixths, .push--medium-down--ten-twelfths {
    left: 83.333%;
  }

  .push--medium-down--one-eighth {
    left: 12.5%;
  }

  .push--medium-down--three-eighths {
    left: 37.5%;
  }

  .push--medium-down--five-eighths {
    left: 62.5%;
  }

  .push--medium-down--seven-eighths {
    left: 87.5%;
  }

  .push--medium-down--one-tenth {
    left: 10%;
  }

  .push--medium-down--three-tenths {
    left: 30%;
  }

  .push--medium-down--seven-tenths {
    left: 70%;
  }

  .push--medium-down--nine-tenths {
    left: 90%;
  }

  .push--medium-down--one-twelfth {
    left: 8.333%;
  }

  .push--medium-down--five-twelfths {
    left: 41.666%;
  }

  .push--medium-down--seven-twelfths {
    left: 58.333%;
  }

  .push--medium-down--eleven-twelfths {
    left: 91.666%;
  }
}

@media only screen and (min-width: 1024px) {
  .push--large--one-whole {
    left: 100%;
  }

  .push--large--one-half, .push--large--two-quarters, .push--large--three-sixths, .push--large--four-eighths, .push--large--five-tenths, .push--large--six-twelfths {
    left: 50%;
  }

  .push--large--one-third, .push--large--two-sixths, .push--large--four-twelfths {
    left: 33.333%;
  }

  .push--large--two-thirds, .push--large--four-sixths, .push--large--eight-twelfths {
    left: 66.666%;
  }

  .push--large--one-quarter, .push--large--two-eighths, .push--large--three-twelfths {
    left: 25%;
  }

  .push--large--three-quarters, .push--large--six-eighths, .push--large--nine-twelfths {
    left: 75%;
  }

  .push--large--one-sixths {
    left: 16.6666%;
  }

  .push--large--one-fifth, .push--large--two-tenths {
    left: 20%;
  }

  .push--large--two-fifths, .push--large--four-tenths {
    left: 40%;
  }

  .push--large--three-fifths, .push--large--six-tenths {
    left: 60%;
  }

  .push--large--four-fifths, .push--large--eight-tenths {
    left: 80%;
  }

  .push--large--one-sixth, .push--large--two-twelfths {
    left: 16.666%;
  }

  .push--large--five-sixths, .push--large--ten-twelfths {
    left: 83.333%;
  }

  .push--large--one-eighth {
    left: 12.5%;
  }

  .push--large--three-eighths {
    left: 37.5%;
  }

  .push--large--five-eighths {
    left: 62.5%;
  }

  .push--large--seven-eighths {
    left: 87.5%;
  }

  .push--large--one-tenth {
    left: 10%;
  }

  .push--large--three-tenths {
    left: 30%;
  }

  .push--large--seven-tenths {
    left: 70%;
  }

  .push--large--nine-tenths {
    left: 90%;
  }

  .push--large--one-twelfth {
    left: 8.333%;
  }

  .push--large--five-twelfths {
    left: 41.666%;
  }

  .push--large--seven-twelfths {
    left: 58.333%;
  }

  .push--large--eleven-twelfths {
    left: 91.666%;
  }
}

html {
  background-color: #f2f2f2;
}

body {
  background-color: #fff;
}

.wrapper {
  *zoom: 1;
  max-width: 1170px;
  margin: 0 auto;
}

.wrapper:after {
  content: '';
  display: table;
  clear: both;
}

@media screen and (min-width: 480px) {
  .wrapper {
    padding: 0 30px;
  }

  #collections .wrapper {
    padding: 0 0px;
  }
}

.main-content {
  display: block;
  margin-top: 30px;
  padding-bottom: 60px;
}

.display-table {
  display: table;
  table-layout: fixed;
  width: 100%;
}

.display-table-cell {
  display: table-cell;
  vertical-align: middle;
  float: none;
}

@media (max-width: 1023px) {
  .single-product-features__overlay {
    background-color: rgba(33, 33, 33, 0) !important;
  }
}

@media (max-width: 767px) {
  #pro-deal-form iframe {
    min-height: 850px !important;
  }

  .logo-small {
    width: 100px;
  }

  .rti-small {
    width: 275px;
    padding-top: 80px;
  }

  .new {
    display: none;
  }

  .product-tech.without-curtain {
    height: 925px !important;
  }

  #collections .table-cell {
    vertical-align: middle;
  }

  #emergency-lighting .table-cell {
    vertical-align: middle;
  }

  #collections .hero.hero--tight {
    height: 300px;
  }

  #emergency-lighting .hero.hero--tight {
    height: 300px;
  }

  #biolite-outdoor-amp-off-grid-energy-free-shipping-75-and-up .story-grid__header h3 {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }

  #biolite-outdoor-amp-off-grid-energy-free-shipping-75-and-up .single-product-features .nav-circles li {
    margin: 0 10px;
  }

  #biolite-outdoor-amp-off-grid-energy-free-shipping-75-and-up .home-feature {
    padding-left: 15px !important;
    padding-right: 15px !important;
    text-align: center;
  }

  #biolite-outdoor-amp-off-grid-energy-free-shipping-75-and-up .single-product-features {
    min-height: 455px;
  }
}

#pro-deal-form iframe {
  min-height: 900px;
}

@media screen and (min-width: 769px) {
  .large--display-table {
    display: table;
    table-layout: fixed;
    width: 100%;
  }

  .large--display-table-cell {
    display: table-cell;
    vertical-align: middle;
    float: none;
  }
}

body, input, textarea, button, select {
  font-size: 14px;
  line-height: 18px;
  font-family: "reader-regular","HelveticaNeue","Helvetica Neue",Helvetica,Arial,sans-serif;
  color: #333;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: reader-regular,"HelveticaNeue","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 700;
  margin: 0 0 0.5em;
  line-height: 1.4;
}

h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
  text-decoration: none;
  font-weight: inherit;
}

h1, .h1 {
  font-size: 2.57143em;
}

h2, .h2 {
  font-size: 2em;
}

h3, .h3 {
  font-size: 1.57143em;
}

h4, .h4 {
  font-size: 1.42857em;
}

h5, .h5 {
  font-size: 1.14286em;
}

h6, .h6 {
  font-size: 1em;
}

p {
  margin: 0 0 15px 0;
}

p img {
  margin: 0;
}

em {
  font-style: italic;
}

b, strong {
  font-weight: bold;
}

small {
  font-size: 0.9em;
}

sup, sub {
  position: relative;
  font-size: 60%;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.5em;
}

blockquote {
  font-size: 1.125em;
  line-height: 1.45;
  font-style: italic;
  margin: 0 0 30px;
  padding: 15px 30px;
  border-left: 1px solid #e5e5e5;
}

blockquote p {
  margin-bottom: 0;
}

blockquote p + cite {
  margin-top: 15px;
}

blockquote cite {
  display: block;
  font-size: 0.75em;
}

blockquote cite:before {
  content: '\2014 \0020';
}

code, pre {
  background-color: #faf7f5;
  font-family: Consolas,monospace;
  font-size: 1em;
  border: 0 none;
  padding: 0 2px;
  color: #51ab62;
}

pre {
  overflow: auto;
  padding: 15px;
  margin: 0 0 30px;
}

hr {
  clear: both;
  border-top: solid #e5e5e5;
  border-width: 1px 0 0;
  margin: 30px 0;
  height: 0;
}

hr.hr--small {
  margin: 15px 0;
}

hr.hr--clear {
  border-top-color: transparent;
}

.section-header {
  margin-bottom: 20px;
}

@media screen and (min-width: 769px) {
  .section-header {
    display: table;
    width: 100%;
  }

  .section-header--title {
    margin-bottom: 12px;
  }

  .section-header--left {
    display: table-cell;
    vertical-align: middle;
    margin-bottom: 0;
  }

  .section-header--left h1, .section-header--left .h1, .section-header--left h2, .section-header--left .h2, .section-header--left h3, .section-header--left .h3, .section-header--left h4, .section-header--left .h4, .section-header--left .h1, .section-header--left .h2, .section-header--left .h3, .section-header--left .h4 {
    margin-bottom: 0;
  }

  .section-header--right {
    display: table-cell;
    vertical-align: middle;
    text-align: right;
    width: 335px;
  }
}

@media screen and (min-width: 769px) and (max-width: 768px) {
  .section-header--right {
    margin-bottom: 30px;
  }
}

.section-header--right .form-horizontal, .section-header--right .collection-view {
  display: inline-block;
  vertical-align: middle;
}

@media screen and (min-width: 481px) {
  .section-header--right label + select, .section-header--right .collection-view {
    margin-left: 15px;
  }
}

.collection-view {
  display: inline-block;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  padding: 11px;
  height: 37px;
}

.lt-ie9 .collection-view {
  display: none;
}

@media screen and (min-width: 769px) {
  .collection-view {
    display: inline-block;
  }
}

.collection-view a {
  display: block;
  float: left;
  opacity: 0.7;
  cursor: pointer;
}

.collection-view a + a {
  margin-left: 10px;
}

.collection-view a.collection-view--active {
  opacity: 1;
  cursor: default;
}

.collection-view img {
  display: block;
  opacity: inherit;
}

.rte {
  margin-bottom: 15px;
}

.rte h1, .rte .h1, .rte h2, .rte .h2, .rte h3, .rte .h3, .rte h4, .rte .h4, .rte h5, .rte .h5, .rte h6, .rte .h6 {
  margin-top: 2em;
}

.rte h1:first-child, .rte .h1:first-child, .rte h2:first-child, .rte .h2:first-child, .rte h3:first-child, .rte .h3:first-child, .rte h4:first-child, .rte .h4:first-child, .rte h5:first-child, .rte .h5:first-child, .rte h6:first-child, .rte .h6:first-child {
  margin-top: 0;
}

.rte > div {
  margin-bottom: 15px;
}

.rte ul, .rte ol {
  margin-left: 35px;
}

.rte li {
  margin-bottom: 0.4em;
}

.rte-header {
  margin-bottom: 0;
}

a {
  color: #747474;
  text-decoration: underline;
  background: transparent;
}

a:hover, a:focus {
  color: #9a9a9a;
}

button {
  overflow: visible;
}

button[disabled], html input[disabled] {
  cursor: default;
}

ul, ol {
  margin: 0 0 30px;
  padding: 0;
}

ul {
  list-style: none outside;
}

ol {
  list-style: decimal;
}

ul ul, ul ol, ol ol, ol ul {
  margin: 4px 0 5px 20px;
}

li {
  margin-bottom: 0.2em;
}

ol, ul.square, ul.disc, .rte ul {
  margin-left: 45px;
  margin-bottom: 15px;
}

ul.square {
  list-style: square outside;
}

ul.disc, .rte ul {
  list-style: disc outside;
}

ol.alpha {
  list-style: lower-alpha outside;
}

.inline-list li {
  display: inline-block;
  margin-bottom: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

table.full {
  width: 100%;
  margin-bottom: 1em;
}

.table-wrap {
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

th {
  font-weight: bold;
}

th, td {
  text-align: left;
  padding: 15px;
  border: 1px solid #e5e5e5;
}

.media, .media-flex {
  overflow: hidden;
  _overflow: visible;
  zoom: 1;
}

.media-img {
  float: left;
  margin-right: 30px;
}

.media-img-right {
  float: right;
  margin-left: 30px;
}

.media-img img, .media-img-right img {
  display: block;
}

img {
  border: 0 none;
}

svg:not(:root) {
  overflow: hidden;
}

img.auto, .grid__item img, .grid__item iframe {
  max-width: 100%;
}

.video-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  height: auto;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

form {
  margin-bottom: 30px;
}

input, textarea, button, select {
  font-size: 1em;
}

button, input[type="text"], input[type="search"], input[type="password"], input[type="email"], input[type="file"], input[type="number"], input[type="tel"], input[type="submit"], textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input, textarea, select, fieldset {
  border-radius: 3px;
  max-width: 100%;
}

input.input-full, textarea.input-full, select.input-full, fieldset.input-full {
  width: 100%;
}

input, select, textarea {
  padding: 8px 10px;
  line-height: 1.42;
}

input, select, textarea {
  font-size: 15px !important;
  background-color: white;
  border-radius: 3px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  color: #b3b3b5;
}

fieldset {
  border: 1px solid #e5e5e5;
  padding: 15px;
}

legend {
  border: 0;
  padding: 0;
}

optgroup {
  font-weight: bold;
}

input {
  display: inline-block;
  width: auto;
}

button, input[type="submit"] {
  cursor: pointer;
}

input[type="text"], input[type="search"], input[type="password"], input[type="email"], input[type="file"], input[type="number"], input[type="tel"], textarea, select {
  border: 1px solid #e5e5e5;
  width: 100%;
  max-width: 100%;
  display: block;
  margin: 0 0 1em;
}

input[type="text"]:focus, input[type="search"]:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="file"]:focus, input[type="number"]:focus, input[type="tel"]:focus, textarea:focus, select:focus {
  border: 1px solid #ccc;
}

input[type="text"][disabled], input[type="text"].disabled, input[type="search"][disabled], input[type="search"].disabled, input[type="password"][disabled], input[type="password"].disabled, input[type="email"][disabled], input[type="email"].disabled, input[type="file"][disabled], input[type="file"].disabled, input[type="number"][disabled], input[type="number"].disabled, input[type="tel"][disabled], input[type="tel"].disabled, textarea[disabled], textarea.disabled, select[disabled], select.disabled {
  cursor: default;
  background-color: #f6f6f6;
  border-color: #b6b6b6;
}

textarea {
  min-height: 100px;
}

input[type="checkbox"], input[type="radio"] {
  display: inline;
  margin: 0;
  padding: 0;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url("//cdn.shopify.com/s/files/1/0383/9765/t/3/assets/ico-select.svg?v=1415738759");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: transparent;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer;
}

.ie9 select, .lt-ie9 select {
  padding-right: 10px;
  background-image: none;
}

select::-ms-expand {
  display: none;
}

label, legend {
  display: block;
  margin-bottom: 2px;
  font-weight: bold;
}

label.inline, legend.inline {
  display: inline;
}

.form-horizontal label.label--hidden, label.label--hidden, .form-horizontal legend.label--hidden, legend.label--hidden {
  height: 0;
  width: 0;
  margin-bottom: 0;
  overflow: hidden;
}

.ie9 .form-horizontal label.label--hidden, .lt-ie9 .form-horizontal label.label--hidden, .ie9 label.label--hidden, .lt-ie9 label.label--hidden, .ie9 .form-horizontal legend.label--hidden, .lt-ie9 .form-horizontal legend.label--hidden, .ie9 legend.label--hidden, .lt-ie9 legend.label--hidden {
  height: auto;
  margin-bottom: 2px;
  overflow: visible;
}

input[type="checkbox"] + label, input[type="radio"] + label {
  font-weight: normal;
}

label[for] {
  cursor: pointer;
}

.label-hint {
  color: #999;
}

form.form-horizontal, .form-horizontal {
  margin-bottom: 0;
}

form.form-horizontal input[type="text"], form.form-horizontal input[type="search"], form.form-horizontal input[type="password"], form.form-horizontal input[type="email"], form.form-horizontal input[type="file"], form.form-horizontal input[type="number"], form.form-horizontal input[type="tel"], form.form-horizontal textarea, form.form-horizontal select, form.form-horizontal label, .form-horizontal input[type="text"], .form-horizontal input[type="search"], .form-horizontal input[type="password"], .form-horizontal input[type="email"], .form-horizontal input[type="file"], .form-horizontal input[type="number"], .form-horizontal input[type="tel"], .form-horizontal textarea, .form-horizontal select, .form-horizontal label {
  display: inline-block;
  margin-bottom: 0;
  width: auto;
}

input[type="text"].error, input[type="search"].error, input[type="password"].error, input[type="email"].error, input[type="file"].error, input[type="number"].error, input[type="tel"].error, textarea.error {
  border-color: #d02e2e;
  background-color: #fff6f6;
  color: #d02e2e;
}

label.error {
  color: #d02e2e;
}

.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}

.input-group .input-group-field:first-child, .input-group .input-group-btn:first-child, .input-group .input-group-btn:first-child > .btn, .input-group .input-group-btn:first-child > .btn--secondary, .input-group .input-group-btn:first-child > input[type="submit"], .input-group input[type="hidden"]:first-child + .input-group-field, .input-group input[type="hidden"]:first-child + .input-group-btn > .btn, .input-group input[type="hidden"]:first-child + .input-group-btn > .btn--secondary, .input-group input[type="hidden"]:first-child + .input-group-btn > input[type="submit"] {
  border-radius: 3px 0 0 3px;
}

.input-group .input-group-field:last-child, .input-group .input-group-btn:last-child > .btn, .input-group .input-group-btn:last-child > .btn--secondary, .input-group .input-group-btn:last-child > input[type="submit"] {
  border-radius: 0 3px 3px 0;
}

.input-group input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin-top: -1px;
  margin-bottom: -1px;
}

.input-group-field, .input-group-btn {
  display: table-cell;
  vertical-align: middle;
  margin: 0;
}

.input-group .btn, .input-group .btn--secondary, .input-group input[type="submit"], .input-group .input-group-field {
  height: 37px;
}

.input-group .input-group-field {
  width: 100%;
  margin-bottom: 0;
}

.input-group-btn {
  position: relative;
  white-space: nowrap;
  width: 1%;
  padding: 0;
}

.icon-fallback-text .icon {
  display: none;
}

.supports-fontface .icon-fallback-text .icon {
  display: inline-block;
}

.supports-fontface .icon-fallback-text .fallback-text {
  clip: rect(0 0 0 0);
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px;
}

.payment-icons {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  cursor: default;
}

.payment-icons li {
  margin: 0 7.5px 7.5px;
  color: #bbbbbb;
  cursor: default;
}

.payment-icons .icon {
  font-size: 30px;
  line-height: 30px;
}

.payment-icons .fallback-text {
  text-transform: capitalize;
}

.social-icons li {
  margin: 0 15px 15px;
  vertical-align: middle;
}

@media screen and (min-width: 481px) {
  .social-icons li {
    margin-left: 0;
  }
}

.social-icons li .icon {
  font-size: 30px;
  line-height: 26px;
}

.social-icons li a {
  color: #bbbbbb;
}

.social-icons li a:hover {
  color: #a2a2a2;
}

.pagination {
  margin-bottom: 1em;
}

.pagination-custom {
  display: inline-block;
  padding-left: 0;
  margin: 0 0 30px;
  border-radius: 3px;
}

.pagination-custom > li {
  display: inline;
}

.pagination-custom > li > a, .pagination-custom > li > span {
  position: relative;
  float: left;
  padding: 5px 10px;
  margin-left: -1px;
  line-height: 1.42;
  text-decoration: none;
  border: 1px solid #e5e5e5;
}

.pagination-custom > li:first-child > a, .pagination-custom > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

.pagination-custom > li:last-child > a, .pagination-custom > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.pagination-custom > .active > a, .pagination-custom > .active > span, .pagination-custom > .active > a:hover, .pagination-custom > .active > span:hover, .pagination-custom > .active > a:focus, .pagination-custom > .active > span:focus {
  z-index: 2;
  cursor: default;
  color: #333;
}

.pagination-custom > .disabled > span, .pagination-custom > .disabled > a, .pagination-custom > .disabled > a:hover, .pagination-custom > .disabled > a:focus {
  color: #999999;
  cursor: not-allowed;
}

.pagination-custom-lg > li > a, .pagination-custom-lg > li > span {
  padding: 10px 16px;
  font-size: 1.28571em;
}

.pagination-custom-lg > li:first-child > a, .pagination-custom-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}

.pagination-custom-lg > li:last-child > a, .pagination-custom-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.pagination-custom-sm > li > a, .pagination-custom-sm > li > span {
  padding: 5px 10px;
  font-size: 0.85714em;
}

.pagination-custom-sm > li:first-child > a, .pagination-custom-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

.pagination-custom-sm > li:last-child > a, .pagination-custom-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.site-header {
  padding: 15px 0;
}

@media screen and (min-width: 769px) {
  .site-header {
    padding: 30px 0;
  }
}

@media screen and (min-width: 769px) {
  .site-header .grid, .site-header .grid--rev, .site-header .grid--full {
    display: table;
    table-layout: fixed;
    width: 100%;
  }

  .site-header .grid > .grid__item, .site-header .grid--rev > .grid__item, .site-header .grid--full > .grid__item {
    float: none;
    display: table-cell;
    vertical-align: middle;
  }
}

.header-logo {
  text-align: center;
  font-size: 2.85714em;
  margin: 0 auto 15px;
  max-width: 450px;
}

@media screen and (min-width: 769px) {
  .header-logo {
    margin-bottom: 0;
  }
}

.header-logo a, .header-logo a:hover, .header-logo a:focus {
  text-decoration: none;
}

.header-logo a, .header-logo img {
  display: block;
}

.header-logo img {
  margin: 0 auto;
}

.site-header--text-links {
  margin-bottom: 0;
}

.search-bar {
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .search-bar {
    margin: 0 auto;
  }
}

.nav-bar {
  background-color: #f2f2f2;
}

.nav-bar ul {
  margin: 0;
}

.nav-bar li {
  margin: 0;
}

.site-nav {
  font-size: 1.14286em;
  cursor: default;
}

.site-nav li {
  margin: 0;
  display: block;
}

.site-nav > li {
  position: relative;
  display: inline-block;
}

.site-nav > li:first-child a {
  padding-left: 0;
}

@media screen and (max-width: 931px) {
  .site-nav {
    margin: 0 auto;
    text-align: center;
  }
}

.site-nav__link {
  display: block;
  text-decoration: none;
  padding: 15px;
  white-space: nowrap;
  color: #333;
}

.site-nav__link:hover, .site-nav__link:active, .site-nav__link:focus {
  color: #0d0d0d;
}

.site-nav--active .site-nav__link {
  font-weight: bold;
}

.site-nav__dropdown {
  display: none;
  position: absolute;
  left: 0;
  z-index: 5;
}

.supports-no-touch .site-nav--has-dropdown:hover .site-nav__dropdown, .site-nav--has-dropdown.nav-hover .site-nav__dropdown, .nav-focus + .site-nav__dropdown {
  display: block;
}

.site-nav__dropdown a {
  background-color: #f2f2f2;
}

.site-nav__dropdown a:hover, .site-nav__dropdown a:active, .site-nav__dropdown a:focus {
  background-color: #d8d8d8;
}

.nav-search {
  position: relative;
  padding: 7px 0;
}

@media screen and (max-width: 768px) {
  .nav-search {
    padding: 0 0 15px;
    margin: 0 auto;
    text-align: center;
  }
}

.nav-search .input-group, .nav-search .input-group-field {
  margin-bottom: 0;
}

.site-footer {
  background-color: #f2f2f2;
  border-top: 1px solid #e5e5e5;
  padding: 30px 0;
  color: #636363;
}

@media screen and (min-width: 769px) {
  .site-footer {
    padding: 60px 0;
  }
}

.grid__image {
  display: block;
  margin: 0 auto 15px;
}

.grid__image img {
  display: block;
  margin: 0 auto;
}

.filter--active {
  font-weight: bold;
}

.breadcrumb {
  margin-bottom: 30px;
}

.breadcrumb a, .breadcrumb span {
  display: inline-block;
  padding: 15px 7px 15px 0;
  margin-right: 7px;
}

.breadcrumb a:first-child, .breadcrumb span:first-child {
  padding-left: 0;
}

.product-single__variants {
  display: none;
}

.no-js .product-single__variants {
  display: block;
}

@media screen and (min-width: 769px) {
  .selector-wrapper select, .product-single__variants select {
    max-width: 40%;
  }
}

.product-single__photos {
  margin-bottom: 30px;
}

.product-single__photos a, .product-single__photos img, .product-single__thumbnails a, .product-single__thumbnails img {
  display: block;
  margin: 0 auto;
}

.product-single__photos li, .product-single__thumbnails li {
  margin-bottom: 30px;
}

.comment {
  margin-bottom: 30px;
}

.comment + .comment {
  border-top: 1px solid #e5e5e5;
  padding-top: 30px;
}

.note, .errors {
  border-radius: 3px;
  padding: 6px 12px;
  margin-bottom: 15px;
  border: 1px solid transparent;
  font-size: 0.9em;
  text-align: left;
}

.note ul, .note ol, .errors ul, .errors ol {
  margin-top: 0;
  margin-bottom: 0;
}

.note li:last-child, .errors li:last-child {
  margin-bottom: 0;
}

.note p, .errors p {
  margin-bottom: 0;
}

.note {
  border-color: #e5e5e5;
}

.errors ul {
  list-style: disc outside;
  margin-left: 20px;
}

.form-success {
  color: #56ad6a;
  background-color: #ecfef0;
  border-color: #56ad6a;
}

.form-success a {
  color: #56ad6a;
  text-decoration: underline;
}

.form-success a:hover {
  text-decoration: none;
}

.form-error, .errors {
  color: #d02e2e;
  background-color: #fff6f6;
  border-color: #d02e2e;
}

.form-error a, .errors a {
  color: #d02e2e;
  text-decoration: underline;
}

.form-error a:hover, .errors a:hover {
  text-decoration: none;
}

.cart__row {
  position: relative;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e5e5e5;
}

.small-cart-currency {
  font-size: 24 px !important;
}

.cart__row:first-child {
  margin-top: 0;
}

.cart__row:first-child {
  padding-top: 0;
  border-top: 0 none;
}

.cart__row .js-qty {
  margin: 0;
}

@media screen and (min-width: 769px) {
  .cart__row--table-large {
    display: table;
    table-layout: fixed;
    width: 100%;
  }

  .cart__row--table-large .grid__item {
    display: table-cell;
    vertical-align: middle;
    float: none;
  }
}

.cart__image {
  display: block;
}

.cart__image img {
  display: block;
}

.cart__subtotal {
  margin: 0 0 0 10px;
  display: inline;
}

.cart__mini-labels {
  display: block;
  margin: 10px 0;
  font-size: 0.85714em;
}

@media screen and (min-width: 769px) {
  .cart__mini-labels {
    display: none;
  }
}

.icomoon {
  display: inline-block;
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.easeInSine {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

.easeOutSine {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

.easeInOutSine {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.easeInQuad {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.easeOutQuad {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.easeInOutQuad {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.easeInCubic {
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.easeOutCubic {
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.easeInOutCubic {
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

.easeInQuart {
  transition-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.easeOutQuart {
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.easeInOutQuart {
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

.easeInQuint {
  transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}

.easeOutQuint {
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.easeInOutQuint {
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.easeInExpo {
  transition-timing-function: cubic-bezier(0.95, 0.05, 0.795, 0.035);
}

.easeOutExpo {
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.easeInOutExpo {
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
}

.easeInCirc {
  transition-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.easeOutCirc {
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.easeInOutCirc {
  transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.easeInBack {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

.easeOutBack {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.easeInOutBack {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

*[data-control-target] li {
  display: none;
}

.svg-biolite_emblem--small {
  width: 15px;
  height: 19px;
}

.svg-biolite_emblem .st0 {
  clip-path: url(#SVGID_2_);
  fill: #FDB913;
}

.svg-biolite_emblem .st1 {
  clip-path: url(#SVGID_2_);
  fill: #008fa1;
}

.svg-biolite_emblem--white .st0 {
  clip-path: url(#SVGID_2_);
  fill: #ffffff;
}

.svg-biolite_emblem--white .st1 {
  clip-path: url(#SVGID_2_);
  fill: #ffffff;
}

#loader-full {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #f3f3f3;
  transition: all 250ms linear;
  opacity: 0;
}

#loader-full > div {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -20%;
  margin-top: -20%;
  width: 40%;
  height: 40%;
}

#svg-biolite, #svg-biolite--clone {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#svg-biolite {
  display: none;
}

#svg-biolite path {
  fill: transparent;
  stroke-width: 1px;
}

#svg-biolite .st0 {
  path: #FDB913;
  stroke: #FDB913;
  line: #FDB913;
}

#svg-biolite .st1 {
  path: #008fa1;
  stroke: #008fa1;
  line: #008fa1;
}

#svg-biolite--clone {
  opacity: 0;
  transition: all 1s linear;
}

#svg-biolite--clone.show {
  opacity: 1;
}

#svg-biolite--clone .st0 {
  fill: #FDB913;
}

#svg-biolite--clone .st1 {
  fill: #008fa1;
}

.svg-icon--circle_border {
  position: relative;
  display: inline-block;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.8);
  width: 36px;
  height: 36px;
  border-radius: 18px;
  text-align: center;
  cursor: pointer;
  font-weight: normal;
  font-size: 17px;
  line-height: 32px;
}

.svg-icon--circle_border svg {
  display: inline-block;
  position: relative;
  top: 4px;
  padding-left: 1px;
  fill: white;
  width: 30px;
  height: 28px;
}

body.show--loader_full #loader-full {
  opacity: 1;
  z-index: 1000;
}

body.show--modal_overlay #wrap:before {
  content: '';
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.65);
  visibility: visible;
  opacity: 1;
}

.hidden {
  display: none !important;
}

.rel {
  position: relative !important;
}

.primary {
  color: #008fa1;
}

.yellow {
  color: #d9ab27;
}

.orange {
  color: #C24D00;
}

.primary-warm {
  color: #20a09d;
}

.secondary {
  color: #ecb351;
}

.white {
  color: white;
}

.offwhite {
  color: #f1f1f1;
}

.offwhite a {
  color: inherit;
  text-decoration: underline;
}

.gray-warm {
  color: #444444;
}

.dark-grey {
  color: #2e2e2f;
}

.red {
  color: #e73f34;
}

.purple {
  color: #8e90b4;
}

.gray {
  color: #d7d7d7;
}

.gray-medium {
  color: #747475;
}

.gray-light {
  color: #a8a8a8;
}

.gray-lighter {
  color: #e4e4e4;
}

.gray-lightest {
  color: #f3f3f3;
}

.border-primary, .border-green {
  border-color: #008fa1;
}

.border-primary-warm {
  border-color: #20a09d;
}

.border-secondary, .border-orange {
  border-color: #ecb351;
}

.light {
  font-weight: 300;
}

.reader {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

.light-condensed {
  font-weight: 200;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.black {
  font-weight: 800;
}

.tight-title {
  line-height: 0.9;
}

.italics {
  font-style: italic;
}

.caps {
  text-transform: uppercase;
}

.underline {
  text-decoration: underline;
}

.small {
  font-size: 15px;
}

.caption {
  font-size: 10px;
  line-height: 14px;
}

.smaller {
  font-size: 12.5px;
  line-height: 17px;
}

.tiny {
  font-size: 10px;
}

.center {
  margin: 0 auto;
  float: none !important;
}

.table {
  display: table !important;
  height: 100%;
}

.table-cell {
  display: table-cell !important;
  vertical-align: middle;
}

.block {
  display: block;
}

.block--full {
  display: block;
  width: 100%;
  height: 100%;
}

.bg--centered {
  background-size: auto auto;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.bg--white {
  background-color: white;
}

.bg--offwhite {
  background-color: #f3f3f3;
}

.bg--primary {
  background-color: #008fa1;
}

.bg--secondary {
  background-color: #ecb351;
}

.bg-image--bottom_right {
  position: relative;
  background-repeat: no-repeat;
  background-position: 100% 100%;
}

.bg-image--top_right {
  position: relative;
  background-repeat: no-repeat;
  background-position: 100% 0%;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-links a {
  text-decoration: underline;
  color: inherit;
}

.list-inline {
  display: inline-block;
}

.list-inline li {
  position: relative;
  display: inline-block;
}

.list-inline.list-inline--has_divider li:before {
  position: relative;
  top: -1px;
  content: '|';
  padding: 0 5px;
}

.list-inline.list-inline--has_divider li:first-child:before {
  display: none;
}

.list-icons {
  margin: 0;
  width: 100%;
}

.list-icons li {
  position: relative;
  padding-left: 60px;
  color: white;
  margin-bottom: 15px;
}

.list-icons li .fa {
  position: absolute;
  top: 5px;
  left: 0;
  width: 44px;
  text-align: center;
  font-size: 30px;
}

.clearfix:after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  visibility: hidden;
  clear: both;
}

.inline {
  display: inline !important;
}

.vertical-center {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
}

.float-left, .pull-left {
  float: left !important;
}

.float-right, .pull-right {
  float: right !important;
}

.baseline {
  margin: 0;
  padding: 0;
  line-height: 1;
}

.m0 {
  margin: 0px !important;
}

.mt0 {
  margin-top: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.p0 {
  padding: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.m10 {
  margin: 10px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.p10 {
  padding: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.m20 {
  margin: 20px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.p20 {
  padding: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.m30 {
  margin: 30px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.p30 {
  padding: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.m40 {
  margin: 40px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.p40 {
  padding: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.m50 {
  margin: 50px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.p50 {
  padding: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.m60 {
  margin: 60px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.p60 {
  padding: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.m70 {
  margin: 70px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.p70 {
  padding: 70px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.p80 {
  padding: 80px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.m80 {
  margin: 80px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.p80 {
  padding: 80px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.m90 {
  margin: 90px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.ml90 {
  margin-left: 90px !important;
}

.p90 {
  padding: 90px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pl90 {
  padding-left: 90px !important;
}

.m100 {
  margin: 100px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mr100 {
  margin-right: 100px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.ml100 {
  margin-left: 100px !important;
}

.p100 {
  padding: 100px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pr100 {
  padding-right: 100px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pl100 {
  padding-left: 100px !important;
}

.invisible {
  visibility: hidden;
}

.o0 {
  opacity: 0;
}

.z0 {
  z-index: 0;
}

.z1 {
  z-index: 1;
}

.z2 {
  z-index: 2;
}

.z3 {
  z-index: 3;
}

.z4 {
  z-index: 4;
}

.z5 {
  z-index: 5;
}

.z5 {
  z-index: 5;
}

.z10 {
  z-index: 10;
}

.lh1-1 {
  line-height: 1.1;
}

.lh1-2 {
  line-height: 1.2;
}

.lh1-3 {
  line-height: 1.3;
}

.lh1-4 {
  line-height: 1.4;
}

.lh1-5 {
  line-height: 1.5;
}

.grid {
  box-sizing: content-box;
  overflow: hidden;
}

.grid__item--p0 {
  padding: 0;
}

.grid__item--center {
  margin: 0 auto;
  float: none !important;
}

.wrapper--medium {
  max-width: 768px;
  margin: 0 auto;
}

.wrapper--large {
  max-width: 1040px;
}

.wrapper--xlarge {
  max-width: 1180px;
}

.wrapper--xxlarge {
  max-width: 1240px;
    margin: 0 auto;

}

.wrapper--xxxlarge {
  max-width: 1400px;
}

.wrapper--max {
  max-width: 1600px;
  margin: 0 auto;
}

.wrapper--full {
  max-width: 1170px;
  margin: 0 auto;
}

.nav-horizontal--products .wrapper--full {
  max-width: 1280px;
  padding: 0 55px;
}

.wrapper--max_height {
  height: 100%;
  padding: 0;
}

.category-arrows {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: #444444;
  position: relative;
  padding: 0 6px 0 6px;
  letter-spacing: -1px;
  top: -1px;
}

.twentytwenty-horizontal .twentytwenty-handle:before, .twentytwenty-horizontal .twentytwenty-handle:after, .twentytwenty-vertical .twentytwenty-handle:before, .twentytwenty-vertical .twentytwenty-handle:after {
  content: " ";
  display: block;
  background: white;
  position: absolute;
  z-index: 30;
  -webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-horizontal .twentytwenty-handle:before, .twentytwenty-horizontal .twentytwenty-handle:after {
  width: 3px;
  height: 9999px;
  left: 50%;
  margin-left: -1.5px;
}

.twentytwenty-vertical .twentytwenty-handle:before, .twentytwenty-vertical .twentytwenty-handle:after {
  width: 9999px;
  height: 3px;
  top: 50%;
  margin-top: -1.5px;
}

.twentytwenty-before-label, .twentytwenty-after-label, .twentytwenty-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.twentytwenty-before-label, .twentytwenty-after-label, .twentytwenty-overlay {
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.twentytwenty-before-label, .twentytwenty-after-label {
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  transition-property: opacity;
}

.twentytwenty-before-label:before, .twentytwenty-after-label:before {
  color: white;
  font-size: 13px;
  letter-spacing: 0.1em;
}

.twentytwenty-before-label:before, .twentytwenty-after-label:before {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  line-height: 38px;
  padding: 0 20px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.twentytwenty-horizontal .twentytwenty-before-label:before, .twentytwenty-horizontal .twentytwenty-after-label:before {
  top: 50%;
  margin-top: -19px;
}

.twentytwenty-vertical .twentytwenty-before-label:before, .twentytwenty-vertical .twentytwenty-after-label:before {
  left: 50%;
  margin-left: -45px;
  text-align: center;
  width: 90px;
}

.twentytwenty-left-arrow, .twentytwenty-right-arrow, .twentytwenty-up-arrow, .twentytwenty-down-arrow {
  width: 0;
  height: 0;
  border: 6px inset transparent;
  position: absolute;
}

.twentytwenty-left-arrow, .twentytwenty-right-arrow {
  top: 50%;
  margin-top: -6px;
}

.twentytwenty-up-arrow, .twentytwenty-down-arrow {
  left: 50%;
  margin-left: -6px;
}

.twentytwenty-container {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  z-index: 0;
  overflow: hidden;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.twentytwenty-container img {
  max-width: 100%;
  position: absolute;
  top: 0;
  display: block;
}

.twentytwenty-container.active .twentytwenty-overlay, .twentytwenty-container.active :hover.twentytwenty-overlay {
  background: rgba(0, 0, 0, 0);
}

.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-before-label, .twentytwenty-container.active .twentytwenty-overlay .twentytwenty-after-label, .twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-before-label, .twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-after-label {
  opacity: 0;
}

.twentytwenty-container * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.twentytwenty-before-label {
  opacity: 0;
}

.twentytwenty-before-label:before {
  content: attr(data-content);
}

.twentytwenty-after-label {
  opacity: 0;
}

.twentytwenty-after-label:before {
  content: attr(data-content);
}

.twentytwenty-horizontal .twentytwenty-before-label:before {
  left: 10px;
}

.twentytwenty-horizontal .twentytwenty-after-label:before {
  right: 10px;
}

.twentytwenty-vertical .twentytwenty-before-label:before {
  top: 10px;
}

.twentytwenty-vertical .twentytwenty-after-label:before {
  bottom: 10px;
}

.twentytwenty-overlay {
  -webkit-transition-property: background;
  -moz-transition-property: background;
  transition-property: background;
  background: rgba(0, 0, 0, 0);
  z-index: 25;
}

.twentytwenty-overlay:hover {
  background: rgba(0, 0, 0, 0.5);
}

.twentytwenty-overlay:hover .twentytwenty-after-label {
  opacity: 1;
}

.twentytwenty-overlay:hover .twentytwenty-before-label {
  opacity: 1;
}

.twentytwenty-before {
  z-index: 20;
}

.twentytwenty-after {
  z-index: 10;
}

.twentytwenty-handle {
  height: 38px;
  width: 38px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -22px;
  margin-top: -22px;
  border: 3px solid white;
  -webkit-border-radius: 1000px;
  -moz-border-radius: 1000px;
  border-radius: 1000px;
  -webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  z-index: 40;
  cursor: pointer;
}

.twentytwenty-horizontal .twentytwenty-handle:before {
  bottom: 50%;
  margin-bottom: 22px;
  -webkit-box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-horizontal .twentytwenty-handle:after {
  top: 50%;
  margin-top: 22px;
  -webkit-box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-vertical .twentytwenty-handle:before {
  left: 50%;
  margin-left: 22px;
  -webkit-box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-vertical .twentytwenty-handle:after {
  right: 50%;
  margin-right: 22px;
  -webkit-box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-left-arrow {
  border-right: 6px solid white;
  left: 50%;
  margin-left: -17px;
}

.twentytwenty-right-arrow {
  border-left: 6px solid white;
  right: 50%;
  margin-right: -17px;
}

.twentytwenty-up-arrow {
  border-bottom: 6px solid white;
  top: 50%;
  margin-top: -17px;
}

.twentytwenty-down-arrow {
  border-top: 6px solid white;
  bottom: 50%;
  margin-bottom: -17px;
}

ul.slides {
  margin: 0;
  padding: 0;
  min-width: 100%;
}

ul.slides:after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  visibility: hidden;
  clear: both;
}

ul.slides li {
  position: relative;
}

.flex-viewport {
  width: 100%;
  height: 100%;
}

.flex-control-nav {
  width: 100%;
}

.flex-control-thumbs {
  overflow: hidden;
}

.flex-control-thumbs:after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  visibility: hidden;
  clear: both;
}

.flex-control-thumbs li {
  width: 25%;
  margin: 0;
  float: left;
}

.flex-control-thumbs li img {
  max-width: 100%;
  min-height: 100%;
}

.icomoon {
  font-size: 32px;
}

.icon-grid {
  margin: 0;
  padding: 0;
  width: 100%;
}

.icon-grid:after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  visibility: hidden;
  clear: both;
}

.icon-grid li {
  display: block;
  float: left;
  width: 20%;
  min-height: 50px;
  text-align: center;
  margin: 0;
  padding: 0;
  color: #444;
  margin-bottom: 30px;
}

.icon-grid li .icomoon {
  font-size: 60px;
  padding: 10px 0;
}

.icon-grid li p {
  margin: 0;
}

@font-face {
  font-family: 'reader-bold';src: url('reader-bold.eot');src: url('reader-bold.eot?#iefix') format('embedded-opentype'), url('reader-bold.woff2') format('woff2'), url('reader-bold.woff') format('woff'), url('reader-bold.ttf') format('truetype');font-weight: normal;font-style: normal;
}

@font-face {
  font-family: 'reader-regular';src: url('reader-regular.eot');src: url('reader-regular.eot?#iefix') format('embedded-opentype'), url('reader-regular.woff2') format('woff2'), url('reader-regular.woff') format('woff'), url('reader-regular.ttf') format('truetype');font-weight: normal;font-style: normal;
}

@font-face {
  font-family: reader-regular;src: url("reader-regular-BoldItalic.eot");src: url("reader-regular-BoldItalic.eot?#iefix") format("embedded-opentype"), url("reader-regular-BoldItalic.woff") format("woff"), url("reader-regular-BoldItalic.ttf") format("truetype"), url("reader-regular-BoldItalic.svg#reader-regular") format("svg");font-style: italic;font-weight: bold;
}

@font-face {
  font-family: reader-regular;src: url("reader-regular.eot");src: url("reader-regular.eot?#iefix") format("embedded-opentype"), url("reader-regular.woff") format("woff"), url("reader-regular.ttf") format("truetype"), url("reader-regular.svg#reader-regular") format("svg");font-style: normal;font-weight: 300;
}

@font-face {
  font-family: reader-regular;src: url("reader-regular-LightItalic.eot");src: url("reader-regular-LightItalic.eot?#iefix") format("embedded-opentype"), url("reader-regular-LightItalic.woff") format("woff"), url("reader-regular-LightItalic.ttf") format("truetype"), url("reader-regular-LightItalic.svg#reader-regular") format("svg");font-style: italic;font-weight: 300;
}

@font-face {
  font-family: reader-regular;src: url("reader-bold.eot");src: url("reader-bold.eot?#iefix") format("embedded-opentype"), url("reader-bold.woff") format("woff"), url("reader-bold.ttf") format("truetype"), url("reader-bold.svg#reader-bold") format("svg");font-style: normal;font-weight: bold;
}

@font-face {
  font-family: reader-regular;src: url("reader-bold.eot");src: url("reader-bold.eot?#iefix") format("embedded-opentype"), url("reader-bold.woff") format("woff"), url("reader-bold.ttf") format("truetype"), url("reader-bold.svg#reader-bold") format("svg");font-style: normal;font-weight: 600;
}

@font-face {
  font-family: reader-regular;src: url("reader-bold.eot");src: url("reader-bold.eot?#iefix") format("embedded-opentype"), url("reader-bold.woff") format("woff"), url("reader-bold.ttf") format("truetype"), url("reader-bold.svg#reader-bold") format("svg");font-style: normal;font-weight: 700;
}

body {
  -webkit-animation-duration: 0.1s;
  -webkit-animation-name: fontfix;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
  -webkit-animation-delay: 0.1s;
}

@-webkit-keyframes fontfix {
  from {
    opacity: 1;
  }

  to {
    opacity: 1;
  }
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

a {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  margin: 0.75rem 0;
  font-weight: normal;
}

h1 {
  font-size: 60px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
}

h1.large {
  font-size: 80px;
}

h1.tight {
  letter-spacing: -3px;
}

h2 {
  font-size: 42px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
}

h2.alt {
  font-size: 48px;
}

h3 {
  font-size: 34px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
}

h3.alt {
  font-size: 32px;
  font-weight: 300;
}

h4 {
  font-size: 28px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
}

h4.alt {
  font-size: 20px;
  font-weight: 700;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h4.sans {
  font-style: italic;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h5 {
  font-size: 20px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h5.alt {
  font-size: 14px;
  font-weight: 700;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h6 {
  font-size: 18px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
}

h6.alt {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

h7 {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

p.alt {
  font-size: 15px;
}

small {
  font-size: 14px;
}

small.alt {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

em {
  font-style: italic;
}

strong {
  font-weight: bold;
}

.medium {
  font-weight: 500;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

ul li {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
  padding: 0;
  display: block;
}

table td, table th {
  border: none;
  padding: 10px;
}

hr {
  border-color: #d2d2d2;
  margin: 15px 0;
}

.btn {
  display: inline-block;
  padding: 15px 18px;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  user-select: none;
  appearance: none;
  border-radius: 5px;
  background-color: #747474;
  color: #fff;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
}

.btn-large {
  display: inline-block;
  padding: 20px 24px;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  user-select: none;
  appearance: none;
  border-radius: 4px;
  background-color: #747474;
  color: #fff;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.btn-tight {
  display: inline-block;
  padding: 10px 12px;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  user-select: none;
  appearance: none;
  border-radius: 3px;
  color: #fff;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 12px;
  background-color: #008fa1;
}

.btn-tight:hover {
  color: #fff;
  background-color: #008fa1;
}

.btn-tight-trans {
  display: inline-block;
  padding: 10px 12px;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  opacity: 0.3;
  border: 1px solid transparent;
  user-select: none;
  appearance: none;
  border-radius: 3px;
  color: #fff;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 12px;
  background-color: #888888;
}

.btn-tight-trans:hover {
  color: #fff;
  background-color: #008fa1;
}

.btn-tight-outline {
  display: inline-block;
  padding: 10px 12px;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid #008fa1;
  user-select: none;
  appearance: none;
  border-radius: 3px;
  color: #008fa1;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 12px;
  background-color: transparent;
}

.btn-tight-outline:hover {
  color: #fff;
  background-color: #008fa1;
}

.btn.btn-primary, .btn.btn-green {
  background-color: #008fa1;
}

.btn.btn-primary:hover, .btn.btn-green:hover {
  color: #fff;
  background-color: #028b96;
}

.btn.btn-orange {
  background-color: #C24D00;
}

.btn.btn-orange:hover {
  color: #fff;
  background-color: #ba4c03;
}

.btn.btn-purple {
  background-color: #8e90b4;
}

.btn.btn-purple:hover {
  color: #fff;
  background-color: #8183a8;
}

.btn.btn-white {
  color: #444444;
  background-color: #fff;
}

.btn.btn-white:hover {
  color: #444444;
  background-color: #f2f2f2;
}

.btn-large.btn-large-primary, .btn.btn-green {
  background-color: #008fa1;
}

.btn-large.btn-large-primary:hover, .btn.btn-green:hover {
  color: #fff;
  background-color: #028b96;
}

.btn-large.btn-large-white {
  color: #444444;
  background-color: #fff;
}

.btn-large.btn-large-white:hover {
  color: #444444;
  background-color: #fff;
}

.btn-large.btn-large-orange {
  background-color: #C24D00;
}

.btn-large.btn-large-orange:hover {
  color: #fff;
  background-color: #ab4501;
}

.btn.btn-darkorange, .btn.btn-darkorange {
  background-color: #C24D00;
}

.btn.btn-darkorange:hover, .btn.btn-darkorange:hover {
  color: #fff;
  background-color: #b54a03;
}

.btn.btn-pink {
  background-color: #eb1478;
}

.btn.btn-pink:hover {
  color: #fff;
  background-color: #db106f;
}

.btn.btn-yellow {
  background-color: #d9ab27;
}

.btn.btn-yellow:hover {
  color: #fff;
  background-color: #d6a826;
}

.btn:active {
  text-decoration: none;
}

a:active {
  text-decoration: none !important;
}

.btn.btn-primary--light, .btn.btn-green--light {
  background-color: #1f9f9d;
}

.btn.btn-primary--light:hover, .btn.btn-green--light:hover {
  color: #fff;
  background-color: #1d9290;
}

.btn.btn-frontier {
  background-color: #E4744D;
}

.btn.btn-frontier:hover {
  color: #fff;
  background-color: #dc6f48;
}

.btn.btn-secondary {
  background-color: #C24D00;
}

.btn.btn-secondary:hover {
  color: #fff;
  background-color: #b84901;
}

.btn.btn-gray {
  background-color: #4e585a;
}

.btn.btn-gray:hover {
  color: #fff;
  background-color: #475052;
}

.btn.btn-outline-white {
  background-color: transparent;
  border: 1px solid white;
}

.btn.btn-outline-white:hover {
  color: #333;
  background-color: white;
}

.btn.btn-outline-orange {
  background-color: #fff;
  border: 1px solid #C24D00;
  color: #C24D00;
}

.btn.btn-outline-orange:hover {
  color: #ba4c03;
  background-color: white;
  color: #C24D00;
}

.btn.btn-outline-none {
  background-color: transparent;
  border: 0px solid white;
  cursor: default;
  padding-left: 0px !important;
}

.btn.btn-outline-none:hover {
  color: #fff;
}

.btn.btn-outline-yellow {
  background-color: transparent;
  border: 1px solid #d9ab27;
}

.btn.btn-outline-yellow:hover {
  color: #d5a827;
  background-color: rgba(255, 255, 255, 0.05);
}

.btn.btn-outline-transparent-yellow {
  background-color: transparent;
  border: 1px solid #d9ab27;
  background-color: rgba(0, 0, 0, 0.50);
}

.btn.btn-outline-transparent-yellow:hover {
  color: #e3b42d;
  background-color: rgba(0, 0, 0, 0.10);
}

.btn.btn-outline-primary, .btn.btn-outline-green {
  background-color: transparent;
  color: #008fa1;
  border: 1px solid #008fa1;
}

.btn.btn-outline-primary:hover, .btn.btn-outline-green:hover {
  color: white;
  background-color: #008fa1;
}

.btn.btn-transparent-primary, .btn.btn-transparent-green {
  background-color: rgba(32, 160, 157, 0.85);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.btn.btn-transparent-carbon {
  background-color: rgba(255, 255, 255, 0.10);
  color: white;
  border: 1px solid #ffffff;
}

.btn.btn-transparent-primary:hover, .btn.btn-transparent-green:hover {
  color: white;
  background-color: #008fa1;
  box-shadow: none;
}

.btn.btn-full {
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  color: white;
}

.full-width-button {
  display: inline-block;
  width: 100%;
}

.btn.btn-wide {
  padding-left: 45px;
  padding-right: 45px;
}

.btn.btn-xwide {
  padding-left: 60px;
  padding-right: 60px;
}

.btn.btn-large {
  font-size: 16px;
  padding-left: 60px;
  padding-right: 60px;
}

.btn.btn-wide {
  font-size: 16px;
  padding-left: 60px;
  padding-right: 60px;
  width: 100%;
}

.btn.btn-icon span {
  position: relative;
  top: 0px;
}

.btn.btn-icon.btn-icon--full span {
  top: -2px;
}

.btn.btn-icon.btn-icon--right span {
  padding-right: 10px;
}

.btn.btn-icon.btn-icon--left span {
  padding-left: 10px;
}

.btn-icon {
  position: relative;
  top: 2px;
  padding: 0 0 0 10px;
  font-size: 17px !important;
}

.btn-icon-left {
  position: relative;
  top: 2px;
  padding: 0 10px 0 0px;
  font-size: 17px !important;
}

.btn.btn-plain-primary {
  background-color: transparent;
  color: #008fa1;
  text-transform: uppercase;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
}

.btn.btn-plain-primary:hover {
  background-color: transparent;
  color: #008fa1;
  text-decoration: underline;
}

.btn.btn-center {
  display: block;
  margin: 0 auto;
}

.btn-circle-tab {
  display: inline-block;
  padding: 0;
  width: 46px;
  height: 46px;
  line-height: 46px;
  border: 1px solid #d0d0d0;
  border-radius: 23px;
  background-clip: padding-box;
  background-color: #fff;
  text-align: center;
  cursor: pointer;
}

.btn-circle-tab .fa {
  color: #d0d0d0;
  font-size: 24px;
  font-weight: bold;
  padding-left: 2px;
}

.btn-circle-tab:hover {
  border-color: #d7d7d7;
  background-color: #fafafa;
}

.btn-circle-tab:hover .fa {
  color: #d7d7d7;
}

.btn-circle-tab.btn-circle-tab--bottom {
  position: absolute;
  left: 50%;
  margin-left: -22px;
  bottom: -22px;
  line-height: 50px;
}

.btn-circle-tab.btn-circle-tab--transparent {
  background-color: rgba(255, 255, 255, 0.15);
  line-height: 44px;
  border: 2px solid white;
  background-clip: padding-box;
  opacity: 0.9;
}

.btn-circle-tab.btn-circle-tab--transparent .fa {
  font-size: 15px;
  color: white;
}

.btn-circle-tab.btn-circle-tab--transparent:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

button {
  display: inline-block;
}

button:focus {
  outline: none;
  border: inherit;
}

form {
  margin: 0;
}

select, textarea {
  font-size: 15px !important;
  background-color: white;
  border-radius: 3px;
  font-weight: 500;
  color: #747475 !important;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border: none;
  background-color: #f5f5f5;
}

input, select {
  height: 50px;
}

textarea {
  height: auto;
}

textarea:focus {
  background-color: white;
  border: 1px solid #36a9a7;
}

::-webkit-input-placeholder, :-moz-placeholder, ::-moz-placeholder, :-ms-input-placeholder {
  color: #9d9d9d;
}

.input-wrap {
  position: relative;
  height: 50px;
}

.input-icon {
  position: relative;
}

.input-icon input, .input-icon select {
  padding-left: 50px;
}

.input-icon label {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 100%;
  line-height: 50px;
  text-align: center;
  font-size: 21px;
  color: #1f1e1e;
}

.input-inline {
  display: inline-block;
  position: relative;
  border-radius: 5px 0 0 5px;
  max-width: 375px;
  height: 50px;
}

.input-inline:after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  visibility: hidden;
  clear: both;
}

.input-inline input {
  border-radius: 5px 0 0 5px;
}

.input-inline button {
  border-radius: 0 5px 5px 0;
}

.input-inline .input-inline__input {
  display: block;
  float: left;
  width: 80%;
  height: 100%;
}

.input-inline .input-inline__submit {
  display: block;
  float: left;
  width: 20%;
  border-radius: 0 5px 5px 0;
  background-color: #008fa1;
  color: white;
  appearance: none;
  height: 100%;
  border: none;
  outline: none;
  text-align: center;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 300;
}

.label-icon {
  font-weight: 700;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 17px 10px 17px 18px;
  font-size: 12px;
  color: #b3b3b5;
}

.label-icon .fa {
  padding-right: 7px;
}

.input-complex {
  position: relative;
  height: 50px;
  line-height: 1;
  background-color: #f5f5f5;
  border-radius: 5px;
  margin-bottom: 10px;
}

.input-complex:after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  visibility: hidden;
  clear: both;
}

.input-complex.input-complex--white {
  background-color: white;
}

.input-complex label {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 270px;
  height: 50px;
  margin: 0;
  background-color: transparent;
  max-width: 200px;
  border-radius: 5px 0 0 5px;
  border-top: 1px solid #e5e3e3;
  border-right: 1px solid #e5e3e3;
  border-bottom: 1px solid #e5e3e3;
  border-left: 1px solid #e5e3e3;
  z-index: 1;
}

.input-complex input {
  position: relative;
  display: block;
  float: right;
  width: 100%;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  padding: 15px 15px 15px 215px;
  font-size: 16px;
  background-color: transparent;
  border-right: 1px solid #e5e3e3;
  border-top: 1px solid #e5e3e3;
  border-bottom: 1px solid #e5e3e3;
  border-left: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  color: #242424;
}

.input-complex input:focus + label {
  border-top: 1px solid #36a9a7;
  border-bottom: 1px solid #36a9a7;
  border-left: 1px solid #36a9a7;
  color: #36a9a7;
}

.input-complex input:focus {
  outline: none;
  border-top: 1px solid #36a9a7;
  border-right: 1px solid #36a9a7;
  border-bottom: 1px solid #36a9a7;
  border-left: none;
}

.form-radio-label {
  display: inline !important;
  font-family: reader-regular !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  position: relative;
  top: -18px;
  padding: 0 0 0 10px;
  color: #444;
}

.radio-form-wrapper {
  display: block;
  margin-top: -20px;
  padding: 0 0 0 20px;
}

.form-comments {
  color: #747475;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-weight: 500;
  font-size: 15px;
  padding: 10px 0 0 0;
}

.form-comments-wrapper {
  position: relative;
  left: 0px;
  display: block;
  padding: 20px 0 12px 0;
}

.input-select {
  position: relative;
  height: 50px;
  margin-bottom: 10px;
}

.input-select label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  border: 1px solid #e5e3e3;
  border-radius: 5px;
  padding: 15px 10px 15px 18px;
}

.input-select label .fa:first-child {
  padding-right: 7px;
}

.input-select label span {
  display: inline-block;
  width: 60%;
  height: 15px;
  overflow: hidden;
}

.input-select label .fa:last-child {
  float: right;
  position: relative;
  top: 2px;
}

.input-select select {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.input-select select:focus + label {
  border: 1px solid #36a9a7;
  color: #36a9a7;
}

.input-checkbox {
  position: relative;
}

.input-checkbox label {
  display: block;
  position: relative;
  float: left;
  z-index: 2;
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #e5e3e3;
  background-color: white;
  border-radius: 5px;
}

.input-checkbox label:before {
  display: none;
  content: '\f00c';
  font-family: "FontAwesome", FontAwesome;
  color: #36a9a7;
  text-align: center;
  font-size: 13px;
  position: absolute;
  line-height: 18px;
  top: 0;
  left: 0;
  width: 100%;
  padding-left: 1px;
}

.input-checkbox input {
  cursor: pointer;
  opacity: 0;
}

.input-checkbox input:hover + label {
  border-color: #36a9a7;
}

.input-checkbox input:checked + label {
  border-color: #36a9a7;
}

.input-checkbox input:checked + label:before {
  display: block;
}

.input-checkbox span {
  display: block;
  position: absolute;
  top: 0;
  left: 30px;
  color: #646464;
}

.input-wrap:after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  visibility: hidden;
  clear: both;
}

.input--one-third {
  float: left;
  width: 32%;
  margin-right: 1.5%;
}

.input--two-thirds {
  float: left;
  width: 66.5%;
}

.fieldset {
  margin-bottom: 30px;
}

.fieldset--half {
  padding-right: 30px;
}

.input-description {
  display: inline-block;
  width: 100%;
  text-align: center;
  color: #646464;
  font-size: 13px;
  margin: 0 0 0 5px 0;
}

.input-description.input-description--push-down {
  margin-top: 40px;
}

.nav-horizontal {
  width: 100%;
  height: 46px;
  z-index: 100;
  background-color: #f3f3f3;
}

.nav-horizontal--products .nav-horizontal__action i {
  display: none;
}

.nav-horizontal--products .nav-horizontal__menu .icomoon, .mobile-shop-with-impact .icomoon {
  font-size: 18px;
  vertical-align: middle;
  margin-right: 7px;
}

@media (max-width: 767px) {
  #pro-deal-form iframe {
    min-height: 850px !important;
  }
}

.nav-horizontal-carbon {
  width: 100%;
  height: 70px;
  z-index: 100;
  background-color: #242424;
}

.nav-horizontal.nav-horizontal--icons {
  height: 100px;
}

.nav-horizontal.nav-horizontal--icons .nav-horizontal__menu {
  text-align: center;
  height: 100%;
}

.nav-horizontal.nav-horizontal--icons .nav-horizontal__menu ul {
  display: inline-block;
  margin: 0 auto;
  height: 100%;
  width: auto;
}

.nav-horizontal.nav-horizontal--icons .nav-horizontal__menu ul li {
  display: inline-block;
  line-height: 1.1;
  height: 100%;
}

.nav-horizontal.nav-horizontal--icons .nav-horizontal__menu ul li a {
  padding: 20px 35px 0 35px;
  position: relative;
  color: #a8a8a8;
  font-size: 16px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.carbon-menu {
  color: #ffffff;
}

.nav-horizontal.nav-horizontal--icons .nav-horizontal__menu ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -15px;
  height: 4px;
  width: 30px;
  background-color: transparent;
}

.nav-horizontal.nav-horizontal--icons .nav-horizontal__menu ul li .fa, .nav-horizontal.nav-horizontal--icons .nav-horizontal__menu ul li .icomoon {
  display: block;
  margin: 0 auto 10px auto;
  border-color: #c1c1c2;
  color: #c1c1c2;
}

.nav-horizontal.nav-horizontal--icons .nav-horizontal__menu ul li .icomoon {
  font-size: 20px;
  line-height: 28px;
}

.nav-horizontal.nav-horizontal--icons .nav-horizontal__menu ul li.active a {
  border-bottom: none;
  color: #3a3a3a;
}

.nav-horizontal.nav-horizontal--icons .nav-horizontal__menu ul li.active a .fa, .nav-horizontal.nav-horizontal--icons .nav-horizontal__menu ul li.active a .icomoon {
  color: #008fa1;
  border-color: #008fa1;
}

.nav-horizontal.nav-horizontal--icons .nav-horizontal__menu ul li.active a:after {
  background-color: #008fa1;
}

.nav-horizontal.nav-horizontal--icons .nav-horizontal__menu ul li:hover a {
  border-bottom: none;
  color: #3a3a3a;
}

.nav-horizontal.nav-horizontal--icons .nav-horizontal__menu ul li:hover a .fa, .nav-horizontal.nav-horizontal--icons .nav-horizontal__menu ul li:hover a .icomoon {
  color: #008fa1;
  border-color: #008fa1;
}

.nav-horizontal__title {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  padding: 15px 0;
  text-align: center;
}

.nav-horizontal__menu {
  padding: 0 30px;
}

.nav-horizontal__menu ul {
  display: table;
  width: 100%;
  height: 70px;
  margin: 0;
  padding: 0;
}

.nav-horizontal__menu ul li {
  display: table-cell;
  vertical-align: top;
  text-align: center;
  line-height: 70px;
  height: 70px;
  margin: 0;
  padding: 0;
}

.nav-horizontal__menu ul li.active a {
  border-bottom: 4px solid #cccccc;
}

.nav-horizontal__menu ul a {
  display: block;
  text-decoration: none;
  height: 100%;
}

.nav-horizontal__action {
  text-align: right;
  height: 100%;
  text-align: right;
}

.nav-horizontal__action .btn {
  width: 80%;
  font-size: 14px !important;
  top: -1px;
  padding: 18px 0;
}

.nav-circles {
  margin: 0;
  padding: 0;
  width: 100%;
  margin-bottom: 30px;
}

.nav-circles:after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  visibility: hidden;
  clear: both;
}

.nav-circles li {
  display: block;
  float: left;
  margin-right: 45px;
  color: #bdbdbd;
  text-align: center;
  cursor: pointer;
}

.nav-circles li .circle {
  width: 80px;
  height: 80px;
  line-height: 80px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-clip: padding-box;
  border: 4px solid #f3f3f3;
  margin: 0 auto;
}

.nav-circles li .circle .fa, .nav-circles li .circle .icomoon {
  font-size: 26px;
}

.nav-circles li > span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: normal;
}

.nav-circles li:last-child {
  margin-right: 0;
}

.nav-circles li.active .icomoon, .nav-circles li.active .fa {
  color: #e9a634;
}

.nav-circles li.active .circle {
  border-color: #edb75c;
}

.nav-circles.nav-circles--transparent li .circle {
  border-color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
}

.nav-circles.nav-circles--transparent li.active .circle {
  border-color: #f3f3f3;
  background-color: rgba(255, 255, 255, 0.3);
  color: #f3f3f3;
}

.nav-circles.nav-circles--dark li .circle {
  border-color: #e0e0e0;
  color: #b6b7b7;
}

.nav-circles.nav-circles--dark li.active .circle {
  border-color: #e9a634;
  color: #e9a634;
}

.menu-main {
  display: inline-block;
  margin: 0;
  padding: 0;
  height: 100%;
  margin-right: -4px;
}

.menu-main:after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  visibility: hidden;
  clear: both;
}

.menu-main li {
  position: relative;
  margin: 0;
  text-transform: uppercase;
  display: block;
  float: left;
  height: 100%;
}

.menu-main li.active {
  font-weight: bold;
}

.menu-main li.active:after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -6px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgba(37, 39, 41, 0.8);
}

.menu-main li.active:hover:after {
  border-color: rgba(15, 15, 15, 0.15);
}

.menu-main li:hover > a {
  background-color: rgba(15, 15, 15, 0.15);
}

.menu-main li a {
  display: block;
  height: 100%;
  min-width: 90px;
  text-align: center;
  padding: 21px 20px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.menu-main li:hover .menu-dropdown {
  visibility: visible;
  opacity: 1;
  top: 80px;
}

.menu-dropdown {
  position: absolute;
  width: 200px;
  left: -50%;
  top: 100px;
  margin: 0;
  padding: 0;
  border-top: 7px solid transparent;
  transition: all 150ms ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.menu-dropdown li {
  width: 100%;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  background-color: rgba(37, 39, 41, 0.8);
}

.menu-dropdown li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-dropdown li a {
  font-weight: normal;
  text-transform: none;
  padding: 15px 10px;
}

.menu-dropdown li a:hover {
  background-color: rgba(15, 15, 15, 0.15);
}

.menu-cart {
  display: inline-block;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  margin: 0;
  padding: 0;
  height: 100%;
  min-width: 85px;
}

.menu-cart:after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  visibility: hidden;
  clear: both;
}

.menu-cart li {
  position: relative;
  display: block;
  width: 100%;
  float: left;
  text-align: center;
}

.menu-cart li a {
  display: block;
  padding: 22px 10px;
  transition: opacity 150ms linear;
  color: #fff;
}

.menu-cart li a .fa {
  opacity: 0.8;
}

.menu-cart li a:hover {
  background-color: rgba(15, 15, 15, 0.15);
}

.menu-cart li a:hover .fa {
  opacity: 1.0;
}

.menu-footer-top {
  font-size: 18px;
}

.menu-footer-top li {
  display: inline-block;
  margin-right: 35px;
}

.menu-footer-top li a {
  color: inherit;
}

.nav-icons {
  background-color: rgba(37, 39, 41, 0.7);
  height: 170px;
  width: 100%;
}

.menu-footer-location, .menu-footer-auth {
  color: white;
}

.menu-footer-location li, .menu-footer-auth li {
  margin-right: 25px;
}

.menu-footer-location a, .menu-footer-auth a {
  color: inherit;
  font-size: 15px;
  color: #afafaf;
}

.menu-footer-location a .fa-circle-border, .menu-footer-auth a .fa-circle-border {
  border-color: #afafaf;
  width: 30;
  height: 30;
  font-size: 13px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  line-height: 30px;
  margin-right: 5px;
}

.menu-footer-location a:hover, .menu-footer-auth a:hover {
  color: white;
}

.menu-footer-location a:hover .fa, .menu-footer-auth a:hover .fa {
  color: white;
  border-color: white;
}

.flex-columns {
  height: 100%;
}

.flex-columns:after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  visibility: hidden;
  clear: both;
}

.flex-columns .flex-sidebar {
  width: 30%;
  max-width: 375px;
  min-width: 300px;
  float: left;
}

.flex-columns .flex-content {
  width: 70%;
  float: left;
}

.nav-sidebar {
  background-color: #f3f3f3;
}

.nav-sidebar__header {
  padding: 35px 60px;
  border-top: 20px solid white;
  border-bottom: 20px solid white;
}

#product-instruction-manuals-biolite .nav-sidebar__header {
    padding: 136px 60px 0 60px;
    border-top: 20px solid white;
    border-bottom: 20px solid white;
}

@media screen and (max-width: 768px) {
  #faq-biolite-official .nav-sidebar__content {
    height: 355px !important;
  }
  
  #product-instruction-manuals-biolite .nav-sidebar__content {
    height: 755px !important;
  }
}

#faq-biolite-official .nav-sidebar__content {
  padding: 35px 60px;
  border-right: 1px solid #fff;
  height: 3970px;
}

#product-instruction-manuals-biolite .nav-sidebar__content {
  padding: 0px 60px;
  border-right: 1px solid #fff;
  height: 3970px;
}


.nav-sidebar__content {
  padding: 35px 60px;
  border-right: 1px solid #f8f8f8;
}

.menu-social {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menu-social li {
  display: inline-block;
  margin-right: 25px;
}

.menu-social li:last-child {
  margin-right: 0;
}

.menu-social li a {
  font-size: 18px;
}

.menu-social li a:hover {
  color: #008fa1;
}

#wrap {
  position: relative;
  overflow-x: hidden;
}

#wrap:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 100ms ease-in-out;
}

#content {
  width: 100%;
  background-color: #fff;
}

#content:after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  visibility: hidden;
  clear: both;
}

.section-tight {
  padding: 0px 0;
}

.section-xsmall {
  padding: 15px 0;
}

.section-small {
  padding: 25px 0;
}

.section {
  padding: 40px 0;
}

.section-top {
  padding: 40px 0 0 0;
}

.section-large {
  padding: 60px 0;
}

.section-xlarge {
  padding: 90px 0;
}

.section-xxlarge {
  padding: 120px 0;
}

#header {
  width: 100%;
  background-color: rgba(37, 39, 41, 0.8);
  z-index: 100;
  height: 64px;
  transition: all 150ms linear;
}

#header.header--absolute {
  position: absolute;
  top: 0;
  left: 0;
}

#header .header-left, #header .header-right {
  height: 64px;
}

#header .header-left {
  padding: 20px 30px 20px 55px;
}

#header .header-nav {
  color: #fff;
  height: 100%;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 830px;
}

.hero:after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  visibility: hidden;
  clear: both;
}

.hero.hero--medium {
  height: 710px;
}

.hero.hero--xmedium {
  height: 760px;
}

.hero.hero--small {
  height: 600px;
}

.hero.hero--tight {
  height: 500px;
}

.hero.hero--tiny {
  height: 400px;
}

.hero.hero--carousel {
  height: 100vh;
  max-height: none;
  opacity: 0;
  transition: opacity 150ms ease-in;
}

.hero.hero--carousel .hero-carousel {
  position: relative;
}

.hero.hero--carousel.show {
  opacity: 1;
}

.hero.hero--carousel .hero__viewport {
  height: 75vh;
}

.hero.hero--carousel .hero-carousel ul.slides {
  height: 100%;
}

.hero.hero--carousel .hero-carousel ul.slides.show {
  opacity: 1;
}

.hero.hero--carousel .hero-carousel ul.slides > li {
  height: 100%;
  display: none;
}

.hero.hero--carousel.hero--carousel-small {
  height: 100vh;
}

.hero.hero--carousel.hero--carousel-small .hero-carousel ul.slides {
  height: 100%;
  color: white;
}

.hero.hero--carousel.hero--carousel-small .hero-carousel ul.slides.show {
  opacity: 1;
}

.hero.hero--carousel.hero--carousel-small .hero-carousel ul.slides > li {
  height: 100%;
  display: none;
}

.hero .hero__viewport {
  position: relative;
  margin: 0;
  padding: 0;
  height: 100%;
}

.hero .hero__inner {
  display: table;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(75, 75, 71, 0);
  z-index: 2;
}

.hero .hero__inner.hero__inner--light {
  background-color: rgba(75, 75, 71, 0.35);
}

.hero .hero__inner.hero__inner--light .table-cell {
  vertical-align: middle;
}

.hero .hero__inner.hero__inner--xlight {
  background-color: rgba(75, 75, 71, 0);
}

.hero .hero__inner.hero__inner--no_overlay {
  background-color: transparent;
}

.hero .hero__body {
  color: white;
}

.hero .hero__image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.hero .hero-half {
  width: 100%;
}

#hero .flex-control-nav {
  margin-left: 0px;
  position: absolute;
  bottom: 0px;
  text-align: center;
}

#hero .flex-control-nav li {
  display: inline-block;
}

#hero .flex-control-nav li a {
  color: transparent;
  cursor: pointer;
  border: 2px solid white;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  margin-right: 15px;
  font-size: 1px;
  display: inline-block;
  box-shadow: 0 1px 5px 0 rgba(0,0,0,0.17);
}

#hero .flex-control-nav li a:hover {
  background-color: rgba(255,255,255,0.8);
}

#hero .flex-control-nav li a.flex-active {
  background-color: white;
}

@media only screen and (max-width : 768px) {
  #hero .flex-direction-nav .flex-prev, .hero .flex-direction-nav .flex-next {
    display: none !important;
  }

  #hero.hero.hero--carousel {
    height: 80vh;
  }

  #hero.hero.hero--carousel .hero__viewport {
    height: 80vh;
  }

  #hero.hero.hero--carousel .hero__viewport .table-cell {
    vertical-align: middle;
  }
}

#hero .flex-direction-nav .flex-prev, #hero .flex-direction-nav .flex-next {
  position: absolute;
  font-size: 50px;
  color: transparent;
  top: 45%;
  text-decoration: none !important;
  border: 0px solid white !important;
  outline: none !important;
}

#hero .flex-direction-nav .flex-prev:hover, #hero .flex-direction-nav .flex-next:hover {
  color: white !important;
}

#hero .flex-direction-nav .flex-prev {
  left: 20px;
}

#hero .flex-direction-nav .flex-next {
  right: 20px;
}

.interstitial {
  position: relative;
  width: 100%;
  min-height: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  color: white;
}

.interstitial.interstitial--huge {
  padding-top: 125px;
  padding-bottom: 205px;
}

.interstitial.interstitial--circle_clip:before {
  content: '';
  position: absolute;
  z-index: 2;
  top: -24px;
  left: 50%;
  width: 48px;
  height: 48px;
  background-color: #fff;
  border-radius: 24px;
  margin-left: -24px;
}

.interstitial .interstitial__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.interstitial .interstitial__overlay.interstitial__overlay--green {
  background-color: transparent;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABXwAAAHJCAIAAAC5W2bZAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAxJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NzIyOEZBRjI4MzEzMTFFNDg3NzVCQzlCOTQ3OTlEQUQiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NzIyOEZBRjE4MzEzMTFFNDg3NzVCQzlCOTQ3OTlEQUQiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiBNYWNpbnRvc2giPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0iRDkxM0RCM0Y0OEE3MjJDMUFCOTNGRDU2MTkxMzBENkIiIHN0UmVmOmRvY3VtZW50SUQ9IkQ5MTNEQjNGNDhBNzIyQzFBQjkzRkQ1NjE5MTMwRDZCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+ac632wAAGZBJREFUeNrs3W1u3TqWBdC6imbTQ22gZlxSN8DChWCbeWbCbZLSWj+ElJ8ikUfUR3YZOPv//Pt//wWzer1eX/5827bocWr717QeZ7b9R82r9byt17dV63lXGU96nKPGv0odeKbzPJcY53EcS9eh1/h7jXPUeFrPWzt+7Tit+4867+rjTF9fGGVTAgAAACBB6AAAAABECB0AAACACKEDAAAAECF0AAAAACKEDgAAAECE0AEAAACI2JWAGbxer6mOU7NtW9N5W/cfpde8ep03fX17jX+28cx2X6z+PJnNbHUepbVf/Srr8DzPqdZVrzrX6tBrvr3G32uco8bTet7W93vtOOn106vOq4xz1HMA4u8aJQAAAAAShA4AAABAhNABAAAAiBA6AAAAABFCBwAAACBC6AAAAABECB0AAACAiF0JmFmvvvS147T2UR8139Z+2q379zLqvOn102udjKr/bPWcbV6rrEP61vM4jqnm1brOz/Ocqs6t9azNt9e8auMfNc5e4xlVh17v/dp5W/dPr/9e85ptPcOwd7cSAAAAAAlCBwAAACBC6AAAAABECB0AAACACKEDAAAAECF0AAAAACKEDgAAAEDErgT8pNY+5Onj1NT6Ibf2bU6PM31dRs1rVN16nbe1v/1dx7nKdV+lPsx5fY/jmOp+Oc9zqnq21ic9r9nG2TqedH1avwdmW/+t41xlXq3Xd7bnA/iiAgAAACKEDgAAAECE0AEAAACIEDoAAAAAEUIHAAAAIELoAAAAAEQIHQAAAICIXQm4k1q/5Vq/4lXGmd4/Pa+aXuNpPe+o+bZavT7pea1eB+793qk5jmOq++s8zyH1aa1DbV69xt9rnLM9V2v16TXf1uOk95/tOZCe1+rrlge9K5UAAAAASBA6AAAAABFCBwAAACBC6AAAAABECB0AAACACKEDAAAAECF0AAAAACJ2JWAGrX3O0+et9bseNc7Z6rD6OpltXrONZ/Xx3/U+5d7P2+M4prp/z/Ncog6jxp8ej3Uydr217r9KHVa/jiz87lMCAAAAIEHoAAAAAEQIHQAAAIAIoQMAAAAQIXQAAAAAIoQOAAAAQITQAQAAAIjYlYCEWh/gXsep9U9uVfotl7Nct+lxjtq/l9b6p8eTPm+v9TbbdZlt/KPm5Tk8p6f1jW9d5+X99fPrZ5Xr0mv8tevSWv9R9Ww9b6/5th4nvf/P1Lmc5brt9d04al7Q7R2nBAAAAECC0AEAAACIEDoAAAAAEUIHAAAAIELoAAAAAEQIHQAAAIAIoQMAAAAQsSsBP6m1D3mr1r7Hq/ex71X/2eqQXieznXeV+0j971Hnp9Xnrn3sa/fLcRxDrkuvOqfn1Wv8o+q/ynnvet99Z3Vd11itDnddJ1Bdk0oAAAAAJAgdAAAAgAihAwAAABAhdAAAAAAihA4AAABAhNABAAAAiBA6AAAAABG7EvA37tpnvtbfuDbf9P6z1WG29TBb3XqNp7X+q9QtPS/PQxLX5TzPpd9fx3EMqXOvuo2a16j12Vq31vqkr1evOrTOa7b9V1k/s60HbvhvKyUAAAAAEoQOAAAAQITQAQAAAIgQOgAAAAARQgcAAAAgQugAAAAARAgdAAAAgIhdCZhBa3/mVqV/cjnLdbuKWh1a6zbbrHtd31Hn7VXPUXW46/VNP5fwnrpapY997X4s78d169ZrXr3GOarOq3/XPa0+6sbT+E0HAAAAIELoAAAAAEQIHQAAAIAIoQMAAAAQIXQAAAAAIoQOAAAAQITQAQAAAIjYlYAVtfYxru3P7+vWWv9R152xdWtdP3etA+6v7zjPc4nn/3EcLu6E6yq9flrPa/38WR1G1c31Ytg9ogQAAABAgtABAAAAiBA6AAAAABFCBwAAACBC6AAAAABECB0AAACACKEDAAAAELErAQm1PsCrjLPWp3q2/a2Hnzlvr/qn65BeJ6vc16vfL9xbbX2e57nEc/s4jiXq0Gv8vcaZruds522tZ+s4Z9t/tvv3ac8rFvi3gBIAAAAACUIHAAAAIELoAAAAAEQIHQAAAIAIoQMAAAAQIXQAAAAAIoQOAAAAQMSuBHxHr773vY5TU/onl7Nct3dV6yO9+qzvfdXWXVfWCfz8ej7Pc4nnQ3n/zl+H9Pjvuk5az7t6nX/mOpbqXbfp9Tzb84QHfVsqAQAAAJAgdAAAAAAihA4AAABAhNABAAAAiBA6AAAAABFCBwAAACBC6AAAAABE7ErADGp9hmt9ob9/nNKRuPU4T6tzzd/Xf8559ZrvqDo8bT27f9e6j2r94em7/svbjdWvS+2+S99Ho87L51V0XUu19VO7Lp4DLPONoQQAAABAgtABAAAAiBA6AAAAABFCBwAAACBC6AAAAABECB0AAACACKEDAAAAELErASuq9Zeu9c1u3b+m1/HffZU/t2iGP16fve6ju873rs+9p42z1q/e8+HD+2WS697res02X+vhZ8bfuq5+/fr1nvV12+v46f1ne2573tJtjSkBAAAAkCB0AAAAACKEDgAAAECE0AEAAACIEDoAAAAAEUIHAAAAIELoAAAAAETsSsDfWKVv/GzzKn2kP2vtI13bfxWjxt/rvHdd/3h+3qluT+szX3u+nec51fWa7br0Gmev+q9St9nW2/W8ZWxlu8pzoIy2zOK6heXf3UoAAAAAJAgdAAAAgAihAwAAABAhdAAAAAAihA4AAABAhNABAAAAiBA6AAAAABG7ErCi0m/52oG51in6meNp7WPfOtrW44+aF3PWbezdof7W/3ee56yi9jw5z1NxOt4vve6L9PH5mfvFfUfzva8EAAAAQILQAQAAAIgQOgAAAAARQgcAAAAgQugAAAAARAgdAAAAgAihAwAAABCxKwFXtb67vY6zSr/60i+6zOK6rfk8r9KpuFc9GSu9bu+6Tu46r1WeY/S9vuW9cL/7sbyt1Pmu62G2687vXa/L9fuztt5av7dXf46x8LtVCQAAAIAEoQMAAAAQIXQAAAAAIoQOAAAAQITQAQAAAIgQOgAAAAARQgcAAAAgYlcCZlDrM1zz69ev6Hg+9zcunZNbx/nut3xttuz63v68o9T6cqOe5NaDvvf8zfvo/Z1AU91a78fy3Viqfd32Ov5s84Xp3qFKAAAAACQIHQAAAIAIoQMAAAAQIXQAAAAAIoQOAAAAQITQAQAAAIgQOgAAAAARuxIws1pf4tb9W/se99r/+l+v217jd93Xctfr+LT1CU+4f8/zNK+F3o/HcVjMv3G97tfvsV51a70uriOP+zedEgAAAAAJQgcAAAAgQugAAAAARAgdAAAAgAihAwAAABAhdAAAAAAihA4AAABAxK4EkPO5D3PpFF3rH5426ryk1xXqyWzr5zgOxblxPZ923VvnW/veKF9B6ul+5HFrSQkAAACABKEDAAAAECF0AAAAACKEDgAAAECE0AEAAACIEDoAAAAAEUIHAAAAIGJXAr5DH/tnXpenXXfr3PWF9Hpbpb/96/X68ufnebq43F5Z/2W1X7fGA3/4TlQCAAAAIEHoAAAAAEQIHQAAAIAIoQMAAAAQIXQAAAAAIoQOAAAAQITQAQAAAIjYlYCZlX7mpTvxdWs88POsdoCfea6e53nL867iWofr9175DgRa+U0HAAAAIELoAAAAAEQIHQAAAIAIoQMAAAAQIXQAAAAAIoQOAAAAQITQAQAAAIjYlQDopdb3+67nBWi1bV///z3HcSjOwPfFeZ6Kw1+uq7KKrlv3Bfz33acEAAAAQILQAQAAAIgQOgAAAAARQgcAAAAgQugAAAAARAgdAAAAgAihAwAAABCxKwFPVvqil+7E123N5/7qpYPx7/8WT2M9jPX5PgXuel+X9zgw8/dP+Vrm0c9wJQAAAAAShA4AAABAhNABAAAAiBA6AAAAABFCBwAAACBC6AAAAABECB0AAACAiF0JAOZU60sPAN95XxzHoTi/8Xq9yh/O83xv/8D1L5Zjlu1s9bdOGLb2lAAAAABIEDoAAAAAEUIHAAAAIELoAAAAAEQIHQAAAIAIoQMAAAAQIXQAAAAAInYleKZ3X+JJjvM0737O12bOALDo98P7vQYzrM+yIC1LmITfdAAAAAAihA4AAABAhNABAAAAiBA6AAAAABFCBwAAACBC6AAAAABECB0AAACAiF0J4Od96HP+7iNd639+V9sm9wQA+nh/UH34rPrw89bvtKnmVcZWtsdxuOis8c2vBAAAAECC0AEAAACIEDoAAAAAEUIHAAAAIELoAAAAAEQIHQAAAIAIoQMAAAAQsSsBAACwitfrpQiwEL/pAAAAAEQIHQAAAIAIoQMAAAAQIXQAAAAAIoQOAAAAQITQAQAAAIgQOgAAAAARuxLAzzvPs/yhNJrWbhoAoPU76oP3B1XZobbbHx8f+DN+0wEAAACIEDoAAAAAEUIHAAAAIELoAAAAAEQIHQAAAIAIoQMAAAAQIXQAAAAAInYleKZ/7G9M1Ic6vy/H0+p/HMeXP982eSjASt8PMOH6fH9Wrb5uy0TKLK5bWIUvewAAACBC6AAAAABECB0AAACACKEDAAAAECF0AAAAACKEDgAAAECE0AEAAACI2JWAv1HrEvxujAz8seM4vvz5tsmLAaDzd+z787X2fVtT/mL5W9ct8N9vVyUAAAAAEoQOAAAAQITQAQAAAIgQOgAAAAARQgcAAAAgQugAAAAARAgdAAAAgIhdCQAAmNlxHIqgPlgnLMpvOgAAAAARQgcAAAAgQugAAAAARAgdAAAAgAihAwAAABAhdAAAAAAihA4AAABAxK4EPNm2fczdzvP8/+3r9fpy/9LfuPzX65Zr9T57WpXUYaxaH/LP9zvMsz4Z+3wG94X7i+C/uZQAAAAASBA6AAAAABFCBwAAACBC6AAAAABECB0AAACACKEDAAAAECF0AAAAACJ2JWBm2/YxFysdgF+vl+LwYVV8Zp0AsOL7667nXUX5fihVum6/U8/yd8v2OA7FhH/5TQcAAAAgROgAAAAARAgdAAAAgAihAwAAABAhdAAAAAAihA4AAABAhNABAAAAiNiVAL5v2z7mdKUzc+nGfD+1/tKf62C+T1DrUr7K+nd9mWG9rX6/A2Pvx/LOLdvVnzM86N9QSgAAAAAkCB0AAACACKEDAAAAECF0AAAAACKEDgAAAECE0AEAAACIEDoAAAAAEbsS8B3629/jutT6rpduz7gfAeZ8vhnnvec7Wz2v30vlG6lsn3bdoRdfqAAAAECE0AEAAACIEDoAAAAAEUIHAAAAIELoAAAAAEQIHQAAAIAIoQMAAAAQsSsBd1Lrn7xtW3T/X79+ffnz//znP+UP1ybPHcf/jwd8yHVcxbXv952u4+rzuut6Y+z6Yc7nEs+sf3kflVFdt3i+8TN8UQEAAAARQgcAAAAgQugAAAAARAgdAAAAgAihAwAAABAhdAAAAAAihA4AAABAxK4EzKzWH3jbvs7LSh/mn1fr9vxhPO/dRo1zlG/W5zbn5ZnPH565Hu76fMY6nHl91upQ2//98/KHf1z2rcfvtT/clS8nAAAAIELoAAAAAEQIHQAAAIAIoQMAAAAQIXQAAAAAIoQOAAAAQITQAQAAAIjYlYCf1Nr3/vV6/eY45b9et2PnNc94GLtujbOo9Sdf/e5YZT3Q9/ryzDr3GmfteTjqOfw0H+rwfg211qf8xfK3rtvEaL9zfNeXVfhCAgAAACKEDgAAAECE0AEAAACIEDoAAAAAEUIHAAAAIELoAAAAAEQIHQAAAICIXQm4qvX7fTc0/uHjrGLbti8rMGq+tb7in8f5Z9er9fi4X57AfXGP6/W054x58eT7orxnyyq6br+z3srfLdvZ6lYbT6/7xX1H87+VlAAAAABIEDoAAAAAEUIHAAAAIELoAAAAAEQIHQAAAIAIoQMAAAAQIXQAAAAAInYlYEWf+96XjsGlW/L8Sv/ka4fnVUY+Q92+sx5+r9Zf+q5XoVfdelH/1ucbiTrfVe3+cl2s5xnW22zzuo7/+j02apyzjQe6/dtNCQAAAIAEoQMAAAAQIXQAAAAAIoQOAAAAQITQAQAAAIgQOgAAAAARQgcAAAAgYlcC/katb/BsfeZbx5nev3RdLt2Yrz2Z+x5/frX+3quMP73+V6+P+fZdV61mew6n5/s0tfvFfMeuw1HXZfX1UBt/7brU9n///MMnVu090nr8Xvt7DvM0ftMBAAAAiBA6AAAAABFCBwAAACBC6AAAAABECB0AAACACKEDAAAAECF0AAAAACJ2JWBmf9b3uHRjvm5HKeOcZzw/M9/Ptm275Xldr7HPgXvfTbnryz3eg9Ybrtc/3i/v18Rs99Gffd/CunyRAwAAABFCBwAAACBC6AAAAABECB0AAACACKEDAAAAECF0AAAAACKEDgAAAEDErgR8R62f8LsB8l8ep9aXeNvacrHP+5czto6zl9nG01rnXtd91Hobdd5e63lUfdLjX32dwE+u59nUng+r1KHX+HuNM13PUddllXmNUt5TparXba/vZ5iN33QAAAAAIoQOAAAAQITQAQAAAIgQOgAAAAARQgcAAAAgQugAAAAARAgdAAAAgIhdCeCz1n7I27YtsX/pC/0crfVZfTy1ddvrus9Wz1F1gMT6XOX5ifXzk99Xtf3fPy9/eP/PVZ7z13mVMZdtr/uu1zpZfb0xD7/pAAAAAEQIHQAAAIAIoQMAAAAQIXQAAAAAIoQOAAAAQITQAQAAAIgQOgAAAAARuxKQUOszvG3bVOcdNc7Vr1etb3OtP3avOreet5dR58V15H7rjZ+pT+29M2qcvcaTPu8q6/bDON+P8dr4a3VI77/K9x6k+U0HAAAAIELoAAAAAEQIHQAAAIAIoQMAAAAQIXQAAAAAIoQOAAAAQITQAQAAAIjYlYCZ1foJb9vXedm7UfOXxyn/9bpVt9/XTX1+r9avu7WevcaTHueo8ae19qV/2v3Cn62T1Z+Hq9St1/hnu76rrLf0+rnT0+O6fdpzBvymAwAAABAhdAAAAAAihA4AAABAhNABAAAAiBA6AAAAABFCBwAAACBC6AAAAABE7ErA36j1E27tY9/rODXbtn15xtrxa32nPx9nzv171S29HlrnNWr9jNKrPqPq1tq/vde8Rq3zmtXX4dPeX3fVej+q55x1nu28reuhNs70/jPUobwLyrZ1nK11cP8yG7/pAAAAAEQIHQAAAIAIoQMAAAAQIXQAAAAAIoQOAAAAQITQAQAAAIgQOgAAAAARuxLwk2p9hrdtG3Le4to5uWyfprXfdfp6rb4+a/VcZXWNGv9d11uv/ufPfDrl6nnX59Vd699rvr3GP9t40ucdtd5Gfeek97/r8wFq/KYDAAAAECF0AAAAACKEDgAAAECE0AEAAACIEDoAAAAAEUIHAAAAIELoAAAAAETsSsDMWvseb9vXOVqtv/3n/csZa/untc4rvX/6Otbq3GucrecdtZ5bx7PKdRx1Xzzteci91db/Xddbr/nOdr/0Gs+o9dDrO611/1WU92CZ3XXbq26wOr/pAAAAAEQIHQAAAIAIoQMAAAAQIXQAAAAAIoQOAAAAQITQAQAAAIgQOgAAAAARuxKQUOs/XPoYr6vWP3nbti77z1af1j7StXmNqv8q5+11v4yqz6j7vbWfeboO8JPrOX3/3nW+dx1nr+s723xbv0PS+39nnOXdV7a96tnrPh11v4MvMAAAACBC6AAAAABECB0AAACACKEDAAAAECF0AAAAACKEDgAAAECE0AEAAACI2JWAGdT6GG9bn1ystQ9z7byl6/L89Unv32ucteuSrnOv86bX7Sr3V7rOq9cB77UZ1O7H1evQa169xjlqPOnr2/od1br/KnrV4a7PGajxpQUAAABECB0AAACACKEDAAAAECF0AAAAACKEDgAAAECE0AEAAACIEDoAAAAAEbsS8JNq/Ypfr1eX49T6FW9bNl9rPW/r/q31GTWvVcaZXp+zjSc9zl7PgZr0uurV5zxdN8Y+T1Z5n961br3m22ucs42n13lHravW77r0/k+rP6T5QgIAAAAihA4AAABAhNABAAAAiBA6AAAAABFCBwAAACBC6AAAAABECB0AAACAiF0JmFmtj/G29cnLWvs21877er2WqM+oebWet3ZdWsfTa/3cdTyj7rte9+mo+661bq1G1fmu74vV1db/Xevca769xrn6eHqdt3ac1u+o2dbzd6p93a5y361VZ57Alw0AAAAQIXQAAAAAIoQOAAAAQITQAQAAAIgQOgAAAAARQgcAAAAgQugAAAAAROxKwJ209ovetmzu1nre1v1fr9cS9ayNs/U4tfGk69Ban9bx9Fqf6fq09glP31+tfchHrZN0nbnHe+pp6222OjxtnbS+30etw9Zx9prX9Tjl3VG26XHCXflNBwAAACBC6AAAAABECB0AAACACKEDAAAAECF0AAAAACKEDgAAAECE0AEAAACI2JWAGdT6FZeuyJ/V+h5v2xYdT+t5a+Nv1Xre9P7p67v6+uml1zhb+4GPWrejnjOtetWHe7+/ZlO7H1evT6959RrnqDrXzttrXq3fRa37z3b/znYdV3/+gN90AAAAACKEDgAAAECE0AEAAACIEDoAAAAAEUIHAAAAIELoAAAAAEQIHQAAAICIXQl4slo/5G3bpjrv6/Waqm6tfa1b67nKdWmtz2zX8Wn3XXr9u773oO/9nHWrPTdGjXO28Ywa/6jvilF1ax0nUPyfAAMAnQ83q6Vd0R0AAAAASUVORK5CYII=");
  opacity: 0.82;
}

.interstitial .interstitial__overlay.interstitial__overlay--light {
  background-color: rgba(0, 0, 0, 0.15);
}

.interstitial .interstitial__content {
  position: relative;
  z-index: 1;
}

.review-stars:before {
  position: relative;
  display: inline-block;
  font-family: "FontAwesome", FontAwesome;
  font-size: 21px;
  color: #ecb660;
  letter-spacing: 4px;
}

.review-stars.review-stars--1:before {
  content: '\f005 \f006 \f006 \f006 \f006';
}

.review-stars.review-stars--1_5:before {
  content: '\f005 \f123 \f006 \f006 \f006';
}

.review-stars.review-stars--2:before {
  content: '\f005 \f005 \f006 \f006 \f006';
}

.review-stars.review-stars--2_5:before {
  content: '\f005 \f005 \f123 \f006 \f006';
}

.review-stars.review-stars--3:before {
  content: '\f005 \f005 \f005 \f006 \f006';
}

.review-stars.review-stars--3_5:before {
  content: '\f005 \f005 \f005 \f123 \f006';
}

.review-stars.review-stars--4:before {
  content: '\f005 \f005 \f005 \f005 \f006';
}

.review-stars.review-stars--4_5:before {
  content: '\f005 \f005 \f005 \f005 \f123';
}

.review-stars.review-stars--5:before {
  content: '\f005 \f005 \f005 \f005 \f005';
}

.review-rating {
  display: inline-block;
  color: #ecb660;
  font-size: 18px;
  color: #ecb660;
}

.stat-columns {
  background-color: #008fa1;
  padding: 35px;
  color: white;
}

.stat-column {
  text-align: center;
}

.stat-column__icon {
  color: white;
  color: rgba(255, 255, 255, 0.65);
  border-color: white;
  border-color: rgba(255, 255, 255, 0.65);
  line-height: 27px;
  font-size: 24px;
}

.stat-column__number {
  font-size: 40px;
  font-family: "reader-regular-condensed";
  font-weight: 300;
  line-height: 1;
  margin: 15px 0 0 0;
}

.stat-column__title {
  color: white;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin: 0;
}

.carbon-neutral {
  position: relative;
  color: inherit;
  font-size: 15px;
  line-height: 22px;
}

.carbon-neutral.carbon-neutral--has_emblem:before {
  content: '';
  position: absolute;
  top: -5px;
  left: 0;
  width: 35px;
  height: 35px;
  background-repeat: no-repeat;
  background-size: 35px 35px;
  background-position: 50% 50%;
}

.carbon-neutral li {
  position: relative;
  padding-left: 21px;
  display: inline-block;
}

.carbon-neutral li.active {
  font-weight: bold;
}

.carbon-neutral li a {
  color: inherit;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  color: #E4E4E4;
}

.carbon-neutral li a:hover {
  text-decoration: underline;
}

.breadcrumbs {
  position: relative;
  color: inherit;
  font-size: 15px;
  line-height: 22px;
}

.breadcrumbs.breadcrumbs--has_emblem {
  padding-left: 22px;
}

.breadcrumbs.breadcrumbs--has_emblem:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 20px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAATCAYAAABPwleqAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo0MjNDQ0I3OTc3NUExMUU0QUU2RkQzMTJDMDUzOEIxRCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo0MjNDQ0I3QTc3NUExMUU0QUU2RkQzMTJDMDUzOEIxRCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQyM0NDQjc3Nzc1QTExRTRBRTZGRDMxMkMwNTM4QjFEIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjQyM0NDQjc4Nzc1QTExRTRBRTZGRDMxMkMwNTM4QjFEIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+NXO2wAAAAYVJREFUeNqUkztLA0EUhSfLhlWXVbARRRsNgrg+0MoqWtmEqIUp0qa0tMxfsFErNWAjpLAQG8tgEzAYbAQJaBMJKRULFXyt5y5ncVicoBc+Zs7cc3dm52EFQaAM7INCh7xSHZJnoAl8k8dS5hgESbAFfvWZikfAAPvTYP0/xcsxvQESfy1ejekUmDEVz4Ii6AKjYI7jl6DJ/hLzRfrD3XZBHbTBPNhk/wb087hEbzPfpt+VmfNgCNTAFVjkTHvggeMSDvMX9OelOMPkDn9jkvqUbYvtoywU7FJnxOyDT1AFLv9L4p5ttMt1tlX6fSnuBi/gDbyCL5qSbCeYr1CL71nqLC7H46zv/C+JBe0kjuhT9PWGGrtW5g5meWfT1IfaPba0fpb5sogcxTlwaJDjaYFU7DE49Ik/JwM2qHCgpH1gODajjB/QJ347SoyBhraCFeAx51FHMzboV4nwUf/c3xIY166v7HKPpm9BAdyFZ6gVS9h8fmtgCvSBJ3ANTsAx+IjM3wIMALGgju/XOO21AAAAAElFTkSuQmCC");
  background-repeat: no-repeat;
  background-size: auto auto;
  background-position: 50% 50%;
}

.breadcrumbs li {
  position: relative;
  padding-left: 20px;
  display: inline-block;
}

.breadcrumbs li:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  font-size: 14px;
  line-height: 24px;
  font-weight: normal;
  font-family: "FontAwesome", FontAwesome;
  content: '\f105';
  text-align: center;
}

.breadcrumbs li.active {
  font-weight: bold;
}

.breadcrumbs li a {
  color: inherit;
}

.breadcrumbs li a:hover {
  text-decoration: underline;
}

.badge-wrap {
  display: inline-block;
  position: relative;
}

.badge {
  display: block;
  position: absolute;
  z-index: 2;
  top: -8px;
  right: -8px;
  width: 26px;
  height: 26px;
  border-radius: 13px;
  background-clip: padding-box;
  background-color: #ebad15;
  color: white;
  text-align: center;
  line-height: 24px;
  font-size: 13px;
  font-weight: bold;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

ul.list {
  list-style-type: disc;
  margin-left: 20px;
}

.label--small {
  display: inline-block;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: #a8a8a8;
  text-transform: uppercase;
  margin: 0;
}

.alert-bar {
  position: relative;
  z-index: 1000;
  width: 100%;
  height: 35px;
  line-height: 35px;
  background-color: rgba(37, 39, 41, 0.8);
  text-align: center;
  font-size: 14px !important;
  color: #1b1b1b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
}

.alert-bar span {
  color: #a8a8a8;
}

.alert-bar em {
  color: #696969;
}

.color-blocks:after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  visibility: hidden;
  clear: both;
}

.color-block {
  display: inline-block;
  width: 165px;
  height: 165px;
  margin: 10px;
  float: left;
  padding: 65px 15px;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
}

.color-block p {
  line-height: 1;
  margin-bottom: 15px;
}

.color-block.color-block--red {
  background-color: #ed432d;
}

.color-block.color-block--green {
  background-color: #20a09d;
}

.color-block.color-block--yellow {
  background-color: #e9a634;
}

.color-block.color-block--dark_gray {
  background-color: #2e2e2f;
}

.color-block.color-block--light_gray {
  background-color: #f3f3f3;
  color: rgba(0, 0, 0, 0.55);
}

.photo-header {
  width: 100%;
  background-color: #f5f5f5;
  background-repeat: no-repeat;
  background-position: 90% 50%;
  overflow: hidden;
  height: 300px;
  margin-bottom: 90px;
}

.photo-header.photo-header--cropped {
  height: 150px;
}

.list-toggles {
  margin-left: 15px;
}

.pro-deal-toggles {
  margin: 10px 0 0 20px;
}

.pro-deal-toggles .toggle-list-icon {
  padding: 0 10px 0 0px;
}

#more {
  display: none;
}

#readMoreFAQ {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  background: none;
  border: none;
  font-weight: 700;
  color: #008fa1;
}

.faq-list {
}

.list-toggle {
  margin-bottom: 15px;
}

.list-toggle.list-toggle__active .list-toggle__content {
  display: block;
}

#faq-biolite-official .list-toggle__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 0.9;
  cursor: pointer;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#faq-biolite-official .list-toggle__content {
  display: none;
  padding: 12px 35px;
  color: #2e2e2f;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.2em;
}

.list-toggle__title {
  font-size: 21px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  margin:0 0 12px 0;
}

.list-toggle__title .fa {
  color: #e8e8e8;
  margin-right: 5px;
}

.list-toggle__title:hover {
  color: #000;
}

.list-toggle__title:hover .fa {
  color: #008fa1;
}

.list-toggle__content {
  display: none;
  padding: 12px 35px;
  color: #a8a8a8;
}

.list-toggle__content p {
  margin: 0 0 5px 0;
}

.list-toggle__content p:last-child {
  margin: 0;
}

.sidebar {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  width: 380px;
  height: 100%;
  background-color: #f1f1f1;
  border-left: 1px solid #eaeaea;
  box-shadow: 0px 0 45px 0 rgba(0, 0, 0, 0.2);
  transition-property: all;
  transition-duration: 150ms;
  -webkit-transform: translate3d(105%, 0, 0);
  transform: translate3d(105%, 0, 0);
}

.sidebar.show {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.sidebar__inner {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0 15px;
  top: 0;
  left: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}

.sidebar__header {
  position: relative;
  width: 100%;
  padding: 25px 0 25px 0;
  text-align: center;
}

.sidebar__header h4.alt {
  font-weight: 100;
}

.sidebar__close {
  position: absolute;
  top: 0;
  right: 0;
  color: #b4b4b5;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  z-index: 10000;
}

.sidebar__close .fa {
  border-color: #b4b4b5;
}

.sidebar__close:hover {
  color: #9f9fa1;
}

.sidebar__close:hover .fa {
  border-color: #9f9fa1;
}

.sidebar__footer {
  width: 100%;
  padding-top: 35px;
}

.sidebar__footer:after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  visibility: hidden;
  clear: both;
}

.sidebar__footer .sidebar__logo {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}

.sidebar__footer .sidebar__logo img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
}

.cart-item {
  margin-top: 10px;
  width: 100%;
  background-color: white;
  padding: 16px 0;
  max-height: 100%;
  animation-duration: 750ms;
}

.cart-item:after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  visibility: hidden;
  clear: both;
}

.cart-item .cart-item__image {
  width: 27%;
  float: left;
  text-align: center;
  padding: 0 20px;
}

.cart-item .cart-item__image img {
  margin-top: 10px;
  max-width: 100%;
  width: auto;
}

.cart-item .cart-item__desc {
  width: 48%;
  float: left;
  text-align: left;
  padding: 20px 0 20px 0;
}

.cart-item .cart-item__desc .cart-item__name {
  font-weight: normal;
  font-size: 16px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.cart-item .cart-item__desc .cart-item__price {
  display: inline-block;
  margin-top: 5px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #bdbdbd;
  font-weight: 600;
}

.cart-item .cart-item__message {
  display: inline-block;
  margin-top: 5px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #008fa1;
  font-size: 13px;
  font-weight: 700;
  display: block;
}

.cart-item .cart-item__actions {
  width: 25%;
  float: left;
  text-align: center;
  padding: 22px 0;
}

.cart-item .cart-item__actions:after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  visibility: hidden;
  clear: both;
}

.cart-item .cart-item__actions .fa {
  color: #b3b3b5;
  font-size: 20px;
}

.cart-item .cart-item--remove {
  position: absolute;
  top: 50%;
  margin-top: -15px;
  right: 20px;
}

.cart-item .cart-item--quantity {
  font-size: 12px;
  padding: 4px 0;
  text-align: center;
  position: relative;
  display: inline-block;
  float: left;
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  width: 30px;
  height: 34px;
  background-color: #f4f4f4;
  border: 1px solid #ededed;
}

.cart-summary {
  width: 100%;
}

.cart-summary__subtotal {
  margin: 0 0 0px 0;
}

.cart-summary__action {
  margin-top: 30px;
}

.cart_checkout_button .btn.btn-wide {
  width: 100%;
  font-size: 18px;
  font-weight: 100;
}

.cart-summary .label--small {
  color: #2e2e2f;
}

.sidebar-cart-update {
  text-transform: uppercase;
  font-size: 11px;
  margin-right: 10px;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 650px;
  max-width: 90%;
  background-color: white;
  transition: all 100ms ease-in-out;
  -webkit-transition: all 100ms ease-in-out;
  transform: translate3d(-50%, -50%, 0) scale3d(0.5, 0.5, 0.5);
  -webkit-transform: translate3d(-50%, -50%, 0) scale3d(0.5, 0.5, 0.5);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}

.modal.show {
  z-index: 999999;
  visibility: visible;
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale3d(1, 1, 1);
  -webkit-transform: translate3d(-50%, -50%, 0) scale3d(1, 1, 1);
}

.modal__header {
  height: 80px;
  background-color: #252729;
  background-color: rgba(37, 39, 41, 0.9);
}

.modal__header:after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  visibility: hidden;
  clear: both;
}

.modal__title {
  line-height: 80px;
  color: white;
  font-weight: 300;
  font-size: 24px;
  float: left;
  padding-left: 25px;
  padding-right: 25px;
}

.modal__content {
  padding: 40px;
  min-height: 355px;
}

.modal__content.modal__content--video {
  padding: 0;
}

.modal__content.modal__content--video iframe, .modal__content.modal__content--video video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.modal-close-button {
  font-size: 28px !important;
}

.modal--close {
  float: right;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  color: white;
  cursor: pointer;
}

.modal--close .fa {
  opacity: 0.8;
}

.modal--close:hover {
  background-color: rgba(15, 15, 15, 0.15);
}

.modal--close:hover .fa {
  opacity: 1.0;
}

@media only screen and (max-width: 849px) {
  #collections .modal__content {
    min-height: 530px;
  }
}

#location-switcher-modal .modal {
  width: 550px;
}

#location-switcher-modal .modal__content {
  padding: 14px;
  min-height: 220px;
}

#location-switcher-modal select {
  font-size: 16px;
  height: 40px;
  width: 350px;
  margin-bottom: 2px;
}

#location-switcher-modal .modal--close {
  height: 36px;
  line-height: 36px;
  width: 36px;
}

#location-switcher-modal .modal--close i {
  color: black;
}

@media screen and (min-width: 740px) {
  .story-grid {
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .story-grid:after {
    display: block;
    content: '';
    width: 0;
    height: 0;
    visibility: hidden;
    clear: both;
  }

  .story-grid .story-grid-item {
    display: block;
    position: relative;
    width: 25%;
    height: 210px;
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-right: 20px;
    box-sizing: border-box;
    overflow: hidden;
    cursor: pointer;
  }

  .story-grid .story-grid-item:first-child {
    border-left: none;
  }

  .story-grid .story-grid-item:nth-child(5n) {
    border-left: none;
  }

  .story-grid .story-grid-item:nth-child(4n) {
    border-right: none;
  }

  .story-grid .story-grid-item.story-grid-item--fallback .story-grid-item__content {
    visibility: visible;
    opacity: 1.0;
    background-color: transparent;
    color: #2e2e2f;
  }

  .story-grid .story-grid-item.story-grid-item--fallback .story-grid-item__content .fa, .story-grid .story-grid-item.story-grid-item--fallback .story-grid-item__content .icomoon {
    color: #008fa1;
    border-color: #008fa1;
    opacity: 1.0;
  }

  .story-grid .story-grid-item:hover .story-grid-item__content {
    background-color: rgba(32, 160, 157, 0.9);
  }

  .story-grid .story-grid-item:hover .story-grid-item__content > div {
    visibility: visible;
    opacity: 1.0;
    transform: scale3d(1, 1, 1);
  }

  .story-grid .story-grid-item:hover .story-grid-item__content > div small {
    height: 50px;
    visibility: visible;
    opacity: 1;
  }

  .story-grid .story-grid-item:hover .story-grid-item__content > div .fa, .story-grid .story-grid-item:hover .story-grid-item__content > div .icomoon {
    opacity: 0.7;
    transform: scale3d(1, 1, 1);
    visibility: visible;
  }

  .story-grid .story-grid-item:hover .story-grid-item__content > div .icomoon {
    font-size: 20px;
    line-height: 27px;
  }

  .story-grid .story-grid-item:hover .story-grid-item__content:before {
    opacity: 0.35;
  }

  .story-grid .story-grid-item__inner {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #f3f3f3;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
  }

  .story-grid .story-grid-item__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    color: white;
    text-align: center;
    padding: 30px 25px;
    transition: opacity 150ms ease-in-out;
  }

  .story-grid .story-grid-item__content.story-grid-item__content--gradient:before {
    content: '';
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.55) 75%, rgba(0, 0, 0, 0.75) 100%);
    transition: opacity 150ms ease-in-out;
  }

  .story-grid .story-grid-item__content h4 {
    line-height: 1.35;
    font-size: 23px;
    margin-bottom: 0;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
  }

  .story-grid .story-grid-item__content > div {
    transition: opacity 150ms ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: scale3d(0.5, 0.5, 1);
  }

  .story-grid .story-grid-item__content .fa, .story-grid .story-grid-item__content .icomoon {
    opacity: 0.7;
    margin-right: 10px;
  }

  .story-grid.story-grid--thirds .story-grid-item {
    width: 33.3333333333337%;
    height: 295px;
  }

  .story-grid.story-grid--green .story-grid-item .story-grid-item__content {
    position: relative;
  }

  .story-grid.story-grid--green .story-grid-item .story-grid-item__content > div {
    position: relative;
    vertical-align: bottom;
    z-index: 3;
    opacity: 1;
    visibility: visible;
    transform: scale3d(1, 1, 1);
    -webkit-transform: scale3d(1, 1, 1);
  }

  .story-grid.story-grid--green .story-grid-item .story-grid-item__content small {
    display: block;
    height: 0;
    visibility: hidden;
    transition: height 150ms ease-in-out, opacity 250ms linear;
    opacity: 0;
    margin-top: 7px;
    overflow: hidden;
  }

  .story-grid.story-grid--green .story-grid-item .story-grid-item__content .fa, .story-grid.story-grid--green .story-grid-item .story-grid-item__content .icomoon {
    visibility: hidden;
    opacity: 0;
    margin-bottom: 7px;
    transform: scale3d(0.8, 0.8, 1);
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transition: opacity 250ms ease-in-out;
  }

  .story-grid.story-grid--green .story-grid-item.story-grid-item--fallback .story-grid-item__content {
    background-color: transparent;
  }

  .story-grid.story-grid--green .story-grid-item.story-grid-item--fallback .story-grid-item__content > div {
    visibility: visible;
    vertical-align: middle;
    opacity: 1;
    transform: scale3d(1, 1, 1);
    -webkit-transform: scale3d(1, 1, 1);
  }

  .story-grid.story-grid--green .story-grid-item.story-grid-item--fallback .story-grid-item__content:before {
    display: none;
  }

  .story-grid.story-grid--green .story-grid-item.story-grid-item--fallback .story-grid-item__content .btn {
    margin-top: 20px;
  }

  .story-grid.story-grid--green .story-grid-item.story-grid-item--fallback:hover .story-grid-item__content {
    background-color: transparent;
  }

  .story-grid.story-grid--green .story-grid-item:hover .story-grid-item__content {
    background-color: rgba(32, 160, 157, 0.9);
  }

  .story-grid.story-grid--green .story-grid-item:hover .story-grid-item__content > div {
    visibility: visible;
    opacity: 1.0;
    transform: scale3d(1, 1, 1);
    -webkit-transform: scale3d(1, 1, 1);
  }

  .story-grid.story-grid--green .story-grid-item:hover .story-grid-item__content > div small {
    height: 49px;
    visibility: visible;
    opacity: 1;
  }

  .story-grid.story-grid--green .story-grid-item:hover .story-grid-item__content > div .fa, .story-grid.story-grid--green .story-grid-item:hover .story-grid-item__content > div .icomoon {
    opacity: 0.7;
    transform: scale3d(1, 1, 1);
    -webkit-transform: scale3d(1, 1, 1);
    visibility: visible;
  }

  .story-grid.story-grid--green .story-grid-item:hover .story-grid-item__content:before {
    opacity: 0.35;
  }

  .story-grid.story-grid--masonry {
    overflow: hidden;
  }

  .story-grid.story-grid--masonry .wrapper {
    position: relative;
    max-width: 1280px;
  }

  .story-grid.story-grid--masonry .wrapper:after {
    display: block;
    content: '';
    width: 0;
    height: 0;
    visibility: hidden;
    clear: both;
  }

  .story-grid.story-grid--masonry .story-grid-item {
    float: left;
    width: 33.3333333333337%;
    max-width: 450px;
    padding: 0;
    padding-right: 5px;
    padding-left: 5px;
    margin-bottom: 10px;
    margin-top: 0;
  }

  .story-grid.story-grid--masonry .story-grid-item.story-grid-item--size-250 {
    height: 250px;
  }

  .story-grid.story-grid--masonry .story-grid-item.story-grid-item--size-280 {
    height: 280px;
  }

  .story-grid.story-grid--masonry .story-grid-item.story-grid-item--size-300 {
    height: 300px;
  }

  .story-grid.story-grid--masonry .story-grid-item.story-grid-item--size-330 {
    height: 330px;
  }

  .story-grid.story-grid--masonry .story-grid-item.story-grid-item--size-420 {
    height: 420px;
  }

  .story-grid.story-grid--masonry .story-grid-item img {
    max-width: 100%;
    max-height: 100%;
  }
}

.footer-social {
  width: 100%;
  background-color: #080302;
  color: white;
}

.footer-default {
  width: 100%;
  background-color: #080302;
  color: white;
  border-top: 1px solid #363738;
}

.footer-default .footer-default__header {
  padding: 10px 0 30px 0;
  border-bottom: 1px solid #616161;
}

.footer-default .footer-default__content {
  padding: 20px 0;
  border-bottom: 0px solid #616161;
  font-size: 15px;
  color: #e1e1e1;
}

#header > div > div > div.grid__item.large--one-half.small--eight-twelfths.medium--eight-twelfths.header-left {
  text-align: left;
}

#header > div > div > div.grid__item.large--one-half.small--eight-twelfths.medium--eight-twelfths.header-left a {
  display: inline-block;
}

header img.logo {
  margin: 0;
}

.mission-navigation {
  width: 33px;
  position: absolute;
  left: -21px;
  top: -10px;
  opacity: 0.4;
}

img.logo {
  display: inline-block;
  width: 112px;
  position: relative;
  bottom: 1px;
}

@media only screen and (max-width: 1100px) {
  img.logo {
    display: inline-block;
    max-height: 35px;
    position: relative;
    bottom: 0px;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  #header .header-left {
    padding: 0;
  }
}

.upsell-section .one-third {
  width: 33%;
}

@media only screen and (max-width: 651px) {
  img.logo {
    margin-left: 38px !important;
    position: relative;
    top: 2px;
  }
}

.footer-default .footer-default__content ul li {
  font-weight: 600;
  margin-bottom: 3px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 23px;
  color: white;
}

.footer-default .footer-default__content ul li a {
  font-weight: 300;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: #D4D4D4;
}

.footer-default .footer-default__footer {
  padding: 20px 0;
  color: #e1e1e1;
}

.footer-legal {
  width: 100%;
  background-color: #080302;
  color: #8c8c8c;
  padding: 40px 0;
}

.single-product-features {
  min-height: 755px;
}

.single-product-features.single-product-features--tall {
  padding: 20px 0 40px 0;
  background-position: 90% 50%;
  background-repeat: no-repeat;
}

.single-product-features.single-product-features--tall .single-product-features__left {
  height: 805px;
}

.single-product-features.single-product-features--tall .single-product-features__right {
  height: 805px;
}

.single-product-features.single-product-features--short {
  padding: 30px 0;
  background-position: 90% 10%;
  background-repeat: no-repeat;
}

.single-product-features.single-product-features--short .single-product-features__left {
  height: 570px;
}

.single-product-features.single-product-features--short .single-product-features__right {
  height: 570px;
}

.single-product-features .single-product-features__left {
  padding-top: 175px;
  padding-bottom: 25px;
  height: 755px;
}

.single-product-features .single-product-features__left.single-product-features__left--pull_up {
  padding-top: 50px;
}

.single-product-features .single-product-features__right {
  padding: 25px 0;
  height: 755px;
}

.single-product-features .single-product-features__right ul {
  max-height: 100%;
}

.single-product-features .single-product-features__right ul li {
  max-height: 100%;
}

.single-product-features .single-product-features__right ul img {
  max-height: 100%;
}

.single-product-features .single-product-features__bottom {
  float: left;
  clear: both;
  width: 100%;
  padding: 25px 0;
}

.single-product-features.single-product-features--photo_bg {
  position: relative;
  height: 740px;
  background-color: #333;
  margin-top: 15px;
}

.single-product-features.single-product-features--photo_bg .single-product-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.single-product-features.single-product-features--photo_bg .single-product-slides li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

.single-product-features.single-product-features--photo_bg .single-product-features__inner {
  text-align: left;
  position: relative;
  padding-top: 200px;
  z-index: 2;
  color: white;
}

.single-product-features.single-product-features--offwhite {
  position: relative;
  height: 740px;
  background-color: #333;
  margin-top: 15px;
  background-color: #f5f5f5;
}

.single-product-features.single-product-features--offwhite .single-product-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.single-product-features.single-product-features--offwhite .single-product-slides li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: 50% 50%;
}

.single-product-features.single-product-features--offwhite .single-product-features__inner {
  text-align: left;
  position: relative;
  padding-top: 200px;
  z-index: 2;
  color: #2e2e2f;
}

.single-product-features__overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 33, 33, 0.15);
  box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.2) inset;
}

.product-cards {
  width: 100%;
}

.product-cards:after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  visibility: hidden;
  clear: both;
}

.product-cards .product-card {
  position: relative;
  width: 50%;
  float: left;
}

.product-cards .product-card.product-card--bg_right {
  background-color: #f5f5f5;
}

.product-cards .product-card.product-card--bg_right .product-card__inner {
  background-size: auto auto;
  background-position: 100% 100%;
}

.product-cards .product-card.product-card--bg_right .product-card__content {
  color: #2e2e2f;
}

.product-cards .product-card:first-child .product-card__inner {
  border-right: 8px solid white;
}

.product-cards .product-card:last-child .product-card__inner {
  border-left: 8px solid white;
}

.product-cards .product-card .product-card__inner {
  position: relative;
  display: table;
  top: 0;
  height: 100%;
  min-height: 310px;
  max-height: 420px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  padding: 40px 60px;
}

.product-cards .product-card .product-card__inner:before {
  content: '';
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.product-cards .product-card .product-card__content {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  color: white;
}

.product-cards .product-card.product-card--green_overlay {
  border-top: 10px solid white;
  border-bottom: 10px solid white;
}

.product-cards .product-card.product-card--green_overlay:first-child {
  border-right: 5px solid white;
}

.product-cards .product-card.product-card--green_overlay:last-child {
  border-left: 5px solid white;
  border-right: none;
}

.product-cards .product-card.product-card--green_overlay .product-card__inner {
  background-size: auto auto;
  background-position: 50% 50%;
}

.product-cards .product-card.product-card--green_overlay .product-card__inner:before {
  background-color: rgba(32, 160, 157, 0.75);
}

.product-cards .product-card.product-card--green_overlay .product-card__content {
  color: white;
}

.product-cards .product-card.product-card--gray {
  border-top: 10px solid white;
  border-bottom: 10px solid white;
}

.product-cards .product-card.product-card--gray:first-child {
  border-right: 5px solid white;
}

.product-cards .product-card.product-card--gray:last-child {
  border-left: 5px solid white;
  border-right: none;
}

.product-cards .product-card.product-card--gray .product-card__inner {
  background-size: auto auto;
  background-position: 50% 50%;
}

.product-cards .product-card.product-card--gray_overlay .product-card__inner:before {
  background-color: rgba(188, 188, 188, 1);
}

.product-cards .product-card.product-card--gray_overlay .product-card__content {
  color: white;
}

.product-cards .product-card.product-card--darkblue_overlay .product-card__inner:before {
  background-color: rgba(4, 164, 162, 0.7);
}

.product-cards .product-card.product-card--darkblue_overlay .product-card__content {
  color: white;
}

.product-tech {
  position: relative;
  width: 100%;
  height: 810px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  overflow: hidden;
}

.product-tech li ol {
  font-weight: 300 !important;
}

.product-tech:after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  visibility: hidden;
  clear: both;
}

.product-tech.product-tech-curtain--hide .product-tech-curtain {
  display: none;
}

.product-tech.without-curtain {
  height: 650px;
}

.product-tech .product-tech-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(32, 160, 157, 0.9);
}

.product-tech .product-tech-overlay .product-tech-overlay__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  text-align: center;
  color: white;
  padding: 55px 0;
}

.product-tech .product-tech-curtain {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 80%;
  transition: all 250ms linear;
  -webkit-transform: translate3d(0, -80%, 0);
  transform: translate3d(0, -80%, 0);
}

.product-tech .product-tech-curtain.show {
  -webkit-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0);
}

.product-tech .product-tech-curtain.show .product-tech-curtain__content {
  visibility: visible;
  opacity: 1.0;
}

.product-tech .product-tech-curtain footer {
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 100%;
  text-align: center;
}

.product-tech .product-tech-curtain .product-tech-curtain__content {
  transition: all 250ms linear;
  visibility: hidden;
  opacity: 0;
}

.product-tech .product-tech-curtain .product-tech-curtain__body {
  max-height: 440px;
}

.product-tech .product-tech-curtain .product-tech-curtain__body:after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  visibility: hidden;
  clear: both;
}

.product-tech .product-tech-curtain .product-tech-curtain__img {
  display: block;
  height: 380px;
  width: auto;
  margin: 50px auto;
}

.product-tech .product-tech-curtain .product-tech-curtain__list {
  position: relative;
  margin-top: 40px;
  margin-left: 20px;
  padding-left: 60px;
  min-height: 100px;
}

.product-tech .product-tech-curtain .product-tech-curtain__list:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 36px;
  height: 100%;
  border: 1px dashed #929393;
}

.product-tech .product-tech-curtain .product-tech-curtain__list.icons-hidden {
  padding-left: 0;
}

.product-tech .product-tech-curtain .product-tech-curtain__list.icons-hidden:before {
  display: none;
}

.product-tech .product-tech-curtain .product-tech-curtain__list li {
  position: relative;
  min-height: 110px;
  width: 100%;
  padding-left: 30px;
  margin-bottom: 25px;
}

.product-tech .product-tech-curtain .product-tech-curtain__list li.list-item--red .symbol i {
  border-color: #ed442e;
  color: #ed442e;
}

.product-tech .product-tech-curtain .product-tech-curtain__list li.list-item--red h4 {
  color: #ed442e;
}

.product-tech .product-tech-curtain .product-tech-curtain__list li.list-item--yellow .symbol i {
  border-color: #e9a634;
  color: #e9a634;
}

.product-tech .product-tech-curtain .product-tech-curtain__list li.list-item--yellow h4 {
  color: #e9a634;
}

.product-tech .product-tech-curtain .product-tech-curtain__list li.list-item--green .symbol i {
  border-color: #20a09d;
  color: #20a09d;
}

.product-tech .product-tech-curtain .product-tech-curtain__list li.list-item--green h4 {
  color: #20a09d;
}

.product-tech .product-tech-curtain .product-tech-curtain__list li .symbol {
  position: absolute;
  top: 25px;
  left: -42px;
  width: 34px;
  height: 72px;
  background-color: #262729;
}

.product-tech .product-tech-curtain .product-tech-curtain__list li .symbol:before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  margin-left: -5px;
  width: 10px;
  height: 10px;
  background-size: auto auto;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyRjcyRjA2RjhFMDUxMUU0ODBCOThBMzc0Njk3Q0Q2MSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyRjcyRjA3MDhFMDUxMUU0ODBCOThBMzc0Njk3Q0Q2MSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjJGNzJGMDZEOEUwNTExRTQ4MEI5OEEzNzQ2OTdDRDYxIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjJGNzJGMDZFOEUwNTExRTQ4MEI5OEEzNzQ2OTdDRDYxIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+669ouQAAALNJREFUeNpinDR5sjUDA8P7vNzca0Ca4f///yCKgZGREUwD5UWAlC0jkMEHZJwF4q9AvBSIjwCxOBBzAnE0EDsDsQsjVJc5kDoOMghkKBD/gCoEgVagbTVMIBaQcRJIzYJKMCIpugdSCGIwMSBAJRC/ZUAFBbk5Od9B7oYrBJr6Hkj1ICk6CRTbDOMwoZkwBcnUBgZ8AOixViC+AuODrAVhFixqZwDxAwZiANBERnQTAQIMAP43Pam/nbtEAAAAAElFTkSuQmCC");
}

.product-tech .product-tech-curtain .product-tech-curtain__list li .symbol i {
  display: block;
  margin-top: 20px;
  width: 34px;
  height: 34px;
  line-height: 30px;
  font-style:normal !important;
  border: 2px solid black;
  color: black;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  font-size: 35px;
}

.product-tech .product-tech-curtain .product-tech-curtain__list li p {
  color: #2e2e2f;
  margin-top: 5px;
  font-weight: 300;
}

.product-tech .product-tech-curtain .product-tech-curtain__list li {
  font-weight: 300;
}

.product-tech .product-tech-curtain .product-tech-curtain__tab {
  border-color: transparent;
}

.product-tech .product-tech-curtain .product-tech-curtain__tab:hover {
  background-color: white;
}

.product-tech .product-tech-curtain .product-tech-curtain__tab .icomoon {
  font-size: 32px;
  margin-top: 7px;
  line-height: 1;
  color: #ecb351;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  border: 1px solid #ecb351;
}

.product-tech .product-tech-curtain .product-tech-curtain__tab .icomoon:before {
  top: -1px;
}

.product-tech .product-tech__content {
  color: white;
}

.product-tech .product-tech__content p {
  color: #d4d4d4;
}

.product-single__mini-slider {
  display: block;
  vertical-align: middle;
}

.product-video-play {
  font-size: 28px !important;
  position: relative;
  top: 4px;
  padding: 0 3px 0 0;
}

@media only screen and (max-width: 480px) {
  .product-video-play {
    font-size: 28px !important;
    position: relative;
    top: 4px;
    padding: 0 3px 0 0;
  }
}

.product-single__mini-slider .product-single__thumbnails li {
  cursor: pointer;
}

.product-single__mini-slider .product-single__thumbnails li img {
  max-width: 100px;
}

.product-specs__header {
  margin-bottom: 30px;
}

.product-specs__expander {
  position: relative;
  max-height: 240px;
  transition: all 250ms ease-in-out;
  height: auto;
}

.product-specs__expander:after {
  content: '';
  width: 100%;
}

.product-specs__expander.show {
  max-height: 1500px;
}

.product-specs__body {
  position: relative;
  width: 100%;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  margin: 40px 0px;
  overflow: hidden;
  max-height: inherit;
}

.product-specs__body:after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  visibility: hidden;
  clear: both;
}

.product-specs__body .border-top {
  border-top: 1px solid #d8d8d8;
}

.product-specs__body .border-right {
  border-right: 1px solid #d8d8d8;
}

.product-specs__body .border-bottom {
  border-bottom: 1px solid #d8d8d8;
}

.product-specs__body .border-left {
  border-left: 1px solid #d8d8d8;
}

.product-specs__table {
  font-weight: 300;
}

.product-specs__table tr {
  border-bottom: 20px solid transparent;
}

.product-specs__table tr:last-of-type {
  border-bottom: none;
}

.product-specs__table tr.border-bottom-none {
  border-bottom: none;
}

.product-specs__table tr.border-bottom-none td {
  padding-bottom: 0;
}

.product-specs__table .spec-title {
  width: 125px;
  font-size: 21px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  vertical-align: top;
}

.product-specs__table .spec-desc {
  color: #a8a8a8;
}

.product-specs__img {
  display: block;
  max-height: 145px;
  width: auto;
  margin-left: 10px;
}

.product-specs__top {
  margin-bottom: 35px;
}

.product-specs__top > div {
  border-top: 35px solid #fff;
  border-bottom: 35px solid #fff;
}

.product-specs__middle {
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
}

.product-specs__middle > div {
  margin-top: 35px;
  margin-bottom: 35px;
}

.product-specs__middle > div:first-child {
  border-right: 1px solid #d8d8d8;
}

.product-specs__middle > div:last-child table {
  margin-left: 30px;
}

.product-specs__header-icon {
  margin: 0 auto 35px auto;
  width: 165px;
  height: 65px;
  text-align: center;
  padding-top: 25px;
  border-bottom: 1px solid #d8d8d8;
}

.product-specs__bottom {
  margin-top: 35px;
  margin-bottom: 35px;
}

.product-specs li {
  margin-bottom: 0;
}

.product-specs__footnote {
  float: right;
  color: #a8a8a8;
  font-size: 13px;
}

.product-specs__expander-btn .fa {
  font-size: 21px;
}

.product-grid {
  overflow: hidden;
}

.product-grid.hidden {
  display: none !important;
}

.product-grid-item {
  position: relative !important;
  top: auto !important;
  left: auto !important;
}

.product-grid-item .you-save {
  top: -20px;
  height: 27px;
  margin-bottom: 10px;
}

.product-grid-item .fake-you-save {
  top: -20px;
  height: 27px;
  margin-bottom: 10px;
}

.you-save {
  border: 1px solid #008fa1;
  display: inline-block;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 17px;
  position: relative;
  padding: 0px;
  margin: 0px;
  font-weight: 700;
}

.you-save .left-side, .you-save-category .left-side {
  padding: 3px 6px 3px 6px;
  color: #008fa1;
  display: inline-block;
}

.you-save .left-side-long, .you-save-category .left-side-long {
  padding: 4px 15px 4px 15px;
  color: #008fa1;
  display: inline-block;
}

.you-save .right-side, .you-save-category .right-side {
  padding: 3px 6px 3px 6px;
  background-color: #008fa1;
  color: white;
  height: 100%;
  display: inline-block;
  font-weight: bold;
}

.you-save-white {
  border: 1px solid #fff;
  display: inline-block;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 17px;
  position: relative;
  padding: 0px;
  margin: 0px;
  font-weight: 700;
}

.you-save-white .left-side-long-white {
  padding: 5px 16px 6px 16px;
  color: #fff;
  display: inline-block;
}

.mobile-shop-with-impact {
  display: none;
}

.product-grid-item {
  display: block;
  backface-visibility: hidden;
}

.soldout {
  display: block;
  position: absolute;
  top: 39%;
  left: 32%;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 5px 20px;
}

.product-grid-item__thumb:hover {
  opacity: 1;
}

#product-content {
  padding-left: 50px;
  padding-top: 40px;
}

#product-content p a {
  color: #008fa1;
  font-weight: 600;
  text-decoration: underline;
}

@-moz-document url-prefix() {
  #product-content {
    padding-left: 0px !important;
  }
}

#product-content h1 {
  font-size: 34px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 0px;
  line-height: 34px;
}

#product-content h2 {
  margin-top: 0px;
  font-size: 20px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 20px;
  margin-bottom: 0px;
}

#product-carousels {
  display: none;
}

#product-thumbnails .you-save-container {
  text-align: center;
}

#product-thumbnails .product-single__thumbnails {
  text-align: center;
}

#product-thumbnails .product-single__thumbnails li {
  border: 1px solid #ebebeb;
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 2px;
  float: none;
  position: relative;
  margin-top: 12px;
}

.product-single__image li {
  text-align: center;
  width: 585px;
  margin: 0 auto;
}

.mobile-show {
  display: none;
}

.hero-width {
  width: 630px;
  margin-left: 34px;
  text-align: center;
}

#product-thumbnails .product-single__thumbnails li > img {
  max-width: 100%;
}

#product-thumbnails #product-single__colors {
  text-align: center;
  margin-bottom: 30px;
}

#product-thumbnails #product-single__colors .color-circle {
  height: 36px;
  width: 36px;
  border: 2px solid #ebebeb;
  padding: 3px;
  display: inline-block;
  margin-right: 15px;
  cursor: pointer;
  background: transparent !important;
}

.color-circle > .color-container {
  height: 100%;
  background-color: #ddd;
}

.color-circle.color-black > .color-container {
  background-color: #616161;
}

.color-circle.color-orange > .color-container {
  background-color: #e98b31;
}

.color-circle.color-teal > .color-container, .select-menu .color-circle.color-teal {
  background-color: #78c4c7;
}

.color-circle.color-red > .color-container, .select-menu .color-circle.color-red {
  background-color: #f11010;
}

.color-circle.color-green > .color-container, .select-menu .color-circle.color-green {
  background-color: #869053;
}

.color-circle.color-yellow > .color-container, .select-menu .color-circle.color-yellow {
  background-color: #f8bf1d;
}

.color-circle.color-red-Backordered > .color-container, .select-menu .color-circle.color-red-Backordered {
  background-color: #f11010;
}

.color-circle.color-yellow-Backordered > .color-container, .select-menu .color-circle.color-yellow-Backordered {
  background-color: #f8bf1d;
}

.color-circle.color-teal > .color-container, .select-menu .color-circle.color-teal {
  background-color: #78c4c7;
}

.color-circle.color-gray > .color-container, .select-menu .color-circle.color-gray {
  background-color: #636363;
}

.color-circle.color-teal-Backordered > .color-container, .select-menu .color-circle.color-teal-Backordered {
  background-color: #78c4c7;
}

.color-circle.color-gray-Backordered > .color-container, .select-menu .color-circle.color-gray-Backordered {
  background-color: #636363;
}

.color-circle, .color-circle > .color-container {
  border-radius: 100%;
}

#product-thumbnails .product-single__thumbnails li:nth-last-child(0) {
  margin-right: 0px;
  height: 100px;
  position: relative;
}

#product-thumbnails .product-single__thumbnails li.video_thumbnail {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}

#product-thumbnails .product-single__thumbnails li.video_thumbnail img {
  height: 100px;
  margin: 0px;
  max-width: 100%;
  width: 100%;
}

.template-product #product-thumbnails .product-single__thumbnails li.video_thumbnail .btn {
  border: 2px solid #008fa1;
  background-color: rgba(255,255,255,0.9);
}

.template-product #product-thumbnails .product-single__thumbnails li.video_thumbnail .btn i {
  color: #008fa1;
}

#product-thumbnails .product-single__thumbnails li.video_thumbnail .btn {
  position: absolute;
  top: 6px;
  left: 11%;
  z-index: 10;
}

#product-thumbnails .you-save {
  top: -20px;
  font-size: 12px;
}

#product-thumbnails .you-save .left-side, #product-thumbnails .you-save .right-side {
  padding: 3px 6px 3px 6px;
  font-weight: 700;
}

.you-save {
  border: 1px solid #008fa1;
  display: inline-block;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 11px;
  position: relative;
  padding: 0px;
  margin: 0px;
}

.you-save .left-side {
  padding: 4px 6px 4px 6px;
  color: #008fa1;
  display: inline-block;
}

.you-save .right-side {
  padding: 4px 15px 4px 15px;
  background-color: #008fa1;
  color: white;
  height: 100%;
  display: inline-block;
  font-weight: bold;
}

.product-grid-item:hover .product-grid-item__actions {
  bottom: 20px;
  opacity: 1.0;
  visibility: visible;
}

.product-grid-item:hover .product-grid-item__price {
  color: #008fa1;
}

.product-grid-item__thumb {
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: 65%;
  background-position: 50% 50%;
  width: 100%;
  height: 100%;
  transition: all 150ms ease-in-out;
}

#product-features-and-specs {
  margin-top: 60px;
}

.template-product .product-reviews-mobile {
  display: none;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 0px;
  border-radius: 5px;
  border: 1px solid #DADADA;
  -webkit-box-shadow: 1px 1px 2px 0px rgba(50, 50, 50, 0.16);
  -moz-box-shadow: 1px 1px 2px 0px rgba(50, 50, 50, 0.16);
  box-shadow: 1px 1px 2px 0px rgba(50, 50, 50, 0.16);
  margin-bottom: 40px;
}

.template-product .product-reviews-mobile .left-side, .product-reviews-mobile .right-side {
  width: 50%;
  text-align: center;
  padding: 0px 10px;
  vertical-align: middle;
  text-align: center !important;
  display: inline-block;
}

.product-reviews-mobile .right-side a {
  float: none;
  padding-right: 0px;
  margin-right: 0px;
}

.template-product .product-reviews-mobile .right-side {
  border-left: 1px solid #DADADA;
  box-sizing: border-box;
}

.template-product .product-reviews-mobile .right-side a {
  font-size: 14px;
  text-decoration: none;
}

#product-features-and-specs .tabs {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  height: 48px;
}

#product-features-and-specs .tabs > li {
  width: 16%;
  background-color: #f3f3f3;
  text-align: center;
  display: inline-block;
  font-size: 14px;
  line-height: 25px;
  font-weight: 600;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 10px;
  color: #9b9b9b;
  cursor: pointer;
  transition: all 0.2s ease-in;
}

#product-features-and-specs .tabs > li:hover {
  background-color: #028b96;
  color: white;
}

#product-features-and-specs .tabs > li.active {
  padding-bottom: 13px;
  background-color: #008fa1;
  color: white;
}

#product-features-and-specs .tabs-content {
  width: 100%;
  min-height: 200px;
  background-color: #f3f3f3;
}

#product-features-and-specs .tabs-content .content-section {
  display: none;
}

#product-features-and-specs .tabs-content .content-section.active {
  display: block;
}

.product-grid-item__inner {
  position: relative;
  width: 100%;
  height: 270px;
}

.product-grid-item__innerFull {
  position: relative;
  width: 100%;
  height: 380px;
  display: block;
}

.product-grid-item__footer {
  width: 100%;
  text-align: center;
}

.product-grid-item__title {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  font-size: 22px;
  line-height: 28px;
  color: #2d2d2d;
  font-weight: 600;
}

.product-grid-item__sub-title {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  margin-top: 2px;
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 12px;
  color: #828282;
}

#product-specs-new .row {
  box-sizing: border-box;
  height: 150px;
  background: #fff;
  padding: 20px;
  border: 7px solid #f3f3f3;
}

#product-specs-new .row-full {
  box-sizing: border-box;
  height: 100%;
  background: #fff;
  padding: 20px;
  border: 7px solid #f3f3f3;
}

#product-specs-new .row-tight {
  box-sizing: border-box;
  height: 95px;
  background: #fff;
  padding: 20px;
  border: 7px solid #f3f3f3;
}

#product-specs-new .row-medium {
  box-sizing: border-box;
  height: 125px;
  background: #fff;
  padding: 20px;
  border: 7px solid #f3f3f3;
}

#product-specs-new .spec-title {
  color: #3b3b3b;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  width: 40%;
  display: inline-block;
  vertical-align: top;
  padding-right: 20px;
  padding-top: 6px;
  line-height: 1em;
  text-transform: uppercase;
  font-weight: 700;
}

#product-specs-new .spec-title-long {
  color: #3b3b3b;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  width: 20%;
  display: inline-block;
  vertical-align: top;
  padding-right: 20px;
  padding-top: 4px;
  line-height: 1em;
  text-transform: uppercase;
  font-weight: 700;
}

#product-specs-new .spec-desc {
  color: #2e2e2f;
  line-height: 1.3em;
  width: 50%;
  display: inline-block;
}

#product-specs-new .spec-desc-long {
  color: #2e2e2f;
  line-height: 1.3em;
  width: 70%;
  display: inline-block;
}

#product-full_features ol>li {
  color: #2e2e2f;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
}

#product-full_features ul>li {
  color: #2e2e2f;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  list-style: disc;
  margin-left: 40px;
}

#product-full_features ol>li span {
  color: #636466;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
}

.new-label {
  display: inline;
  height: 14px;
  padding-left: 7px;
  position: relative;
  top: 3px;
}

#product-full_features ol {
  counter-reset: item;
  padding-left: 60px;
}

#product-full_features ol>li {
  counter-increment: item;
  list-style-type: none;
  text-indent: -1.7em;
  color: #2e2e2f;
}

#product-full_features ol>li strong {
  color: #5e5f61;
  font-weight: bold;
}

#product-full_features ol>li:before {
  display: inline-block;
  width: 1.5em;
  padding-right: 0.5em;
  font-weight: bold;
  text-align: right;
  content: counter(item) ".";
  color: #818181;
}

#product-features-and-specs h3 {
  display: none;
}

.product-grid-item .price-and-cart-add {
  margin-top: 20px;
}

.product-grid-item__price {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  color: #a8a8a8;
  transition: color 150ms ease-in-out;
}

.product-grid-item__price.primary {
  color: #008fa1;
}

.product-featurette:after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  visibility: hidden;
  clear: both;
}

.product-featurette .product-featurette__image img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.product-featurette .product-featurette__content {
  padding: 45px 55px 25px 55px;
  position: relative;
}

.template-product .product-featurette .product-featurette__content .spr-summary {
  border-top: 1px solid #d8d8d8;
  padding: 20px 10px 20px 30px;
  border-bottom: 1px solid #d8d8d8;
}

.template-product .product-reviews-mobile {
  display: none;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 0px;
  border-radius: 5px;
  border: 1px solid #DADADA;
  -webkit-box-shadow: 1px 1px 2px 0px rgba(50, 50, 50, 0.16);
  -moz-box-shadow: 1px 1px 2px 0px rgba(50, 50, 50, 0.16);
  box-shadow: 1px 1px 2px 0px rgba(50, 50, 50, 0.16);
  margin-bottom: 40px;
}

.template-product .product-reviews-mobile .top-side, .product-reviews-mobile .bottom-side {
  width: 100%;
  text-align: center;
  padding: 0px 10px;
  vertical-align: middle;
  text-align: center !important;
  display: inline-block;
}

.product-reviews-mobile .bottom-side a {
  float: none;
  padding-right: 0px;
  margin-right: 0px;
}

.template-product .product-reviews-mobile .bottom-side {
  border-left: 1px solid #DADADA;
  box-sizing: border-box;
}

.template-product .product-reviews-mobile .bottom-side a {
  font-size: 14px;
  text-decoration: none;
}

.template-product .spr-load-more {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px;
  border: 2px solid;
  color: #008fa1;
}

.template-product .spr-load-more:hover {
  color: white;
  background-color: #008fa1;
}

.template-product .product-featurette .product-featurette__content .spr-summary .spr-summary-caption {
  display: block;
}

.template-product .product-featurette .product-featurette__content .spr-summary-actions-newreview, .template-product .product-featurette .product-featurette__content .spr-summary-actions-allreviews {
  padding: 10px 35px;
  background-color: #008fa1;
  color: #fff;
  text-decoration: none !important;
  border-radius: 5px;
  position: absolute;
  top: 65px;
  right: 80px;
  margin: 0px !important;
  float: none !important;
}

.related-products .related-product:hover .related-product__image {
  opacity: 0.15;
}

.related-products .related-product {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 40px;
}

.mobile-video {
  color: #008fa1;
  font-size: 18px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.mobile-video .btn-circle-tab {
  display: inline-block;
  padding: 0;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border: 1px solid #008fa1;
  border-radius: 23px;
  background-clip: padding-box;
  background-color: #fff;
  text-align: center;
  cursor: pointer;
  margin-right: 10px;
}

.mobile-video p {
  display: inline-block;
}

a.mobile-video {
    color: #cc4e20;
    font-size: 1.4rem;
    font-weight: 700;
}

i.product-video-play {
  top: 8px;
  font-size: 1.5em !important;
  color: #008fa1;
}

.icon-playbutton-01:before {
  content: "\e650";
}

.related-products .related-product__price {
  font-size: 17px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 200;
  vertical-align: middle;
  color: #2e2e2f;
  display: inline-block;
}

.related-products h5 {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  color: #444;
  margin-bottom: 0px;
}

.related-products .grid__item img {
  padding: 10px;
}

.related-products__header {
  margin-bottom: 50px;
  text-align: center;
}

.product-stats {
  border-top: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
  padding: 25px 0 20px 0;
}

.product-stats:after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  visibility: hidden;
  clear: both;
}

.product-stats .product-stat {
  width: 20%;
  float: left;
  text-align: center;
}

.product-stats .product-stat__icon {
  color: #e9a634;
  font-size: 32px;
}

.product-stats .product-stat__number {
  color: #676869;
  font-size: 40px;
  line-height: 1;
  margin: 15px 0 5px 0;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.product-stats .product-stat__number span {
  font-size: 28px;
}

.product-stats .product-stat__title {
  color: #676869;
  font-weight: 300;
  font-style: italic;
}

@media screen and (max-width: 768px) {
  .product-stats .product-stat {
    width: 100%;
    float: none;
  }

  #product-specs-new .row-tight {
    height: 100%;
    margin-bottom: 40px;
  }

  #product-specs-new .row {
    height: 100%;
    margin-bottom: 40px;
  }

  #product-specs-new .row-medium {
    height: 100%;
    margin-bottom: 40px;
  }

  #product-full_features ol {
    padding-left: 20px;
  }

  .product-tech .product-tech-curtain .product-tech-curtain__img {
    height: 100% !important;
    width: 100% !important;
  }
}

@media screen and (max-width: 480px) {
  #product-specs-new .row-tight, #product-specs-new .row, #product-specs-new .row-medium, #product-specs-new .row-full {
    padding: 15px 0 31px 0;
    border-bottom: 7px solid #f3f3f3;
    border-right: 0;
    border-left: 0;
    border-top: 0;
    margin-bottom: 15px;
  }

  #product-content h2 {
    margin-bottom: 12px;
  }

  #product-specs-new .spec-title-long {
    width: 90%;
  }

  #product-specs-new .spec-title {
    width: 46%;
  }

  #product-specs-new .spec-desc-long {
    width: 100%;
  }
}

#shopify-product-reviews {
  margin-top: 0px !important;
}

#shopify-product-reviews.show-rating .spr-summary-actions {
  display: none;
}

#shopify-product-reviews.show-rating .spr-summary-actions-newreview {
  text-decoration: underline;
}

#shopify-product-reviews.show-rating .spr-container {
  padding: 0;
  border: none;
}

#shopify-product-reviews.show-rating .spr-icon {
  color: #ecb660;
}

#shopify-product-reviews.show-rating .spr-review-reportreview {
  opacity: 0;
  text-decoration: underline;
  bottom: 35px;
  position: absolute;
  right: 20px;
}

#shopify-product-reviews.show-rating .spr-review:hover .spr-review-reportreview {
  opacity: 1;
}

#shopify-product-reviews.show-rating .spr-header-title {
  display: none;
}

#shopify-product-reviews.show-rating .spr-review {
  position: relative;
  padding: 20px 8% 20px 8% !important;
  border: none !important;
}

#shopify-product-reviews.show-rating .spr-review:nth-child(even) {
  background-color: #f3f3f3;
}

#shopify-product-reviews.show-rating .spr-review .spr-review-header {
  height: 40px;
}

#shopify-product-reviews.show-rating .spr-review .spr-review-header .spr-review-header-starratings {
  position: absolute;
  height: 20px;
  top: 42px;
}

#shopify-product-reviews.show-rating .spr-review .spr-review-header .spr-review-header-title {
  position: absolute;
  top: 20px;
  color: #2e2e2f;
  font-weight: normal;
}

#shopify-product-reviews.show-rating .spr-review .spr-review-content {
  margin-top: 20px;
  color: #747475;
}

#shopify-product-reviews.show-rating .spr-review .spr-review-header .spr-review-header-byline {
  bottom: 20px;
  position: absolute;
  color: #2F2F2F;
  opacity: 1;
}

#shopify-product-reviews.show-rating .spr-review .spr-review-footer {
  height: 40px;
}

#shopify-product-reviews.show-rating .spr-pagination {
  display: none;
}

#product-rating .spr-summary-actions-allreviews, #product-rating .spr-summary-actions-newreview, #product-rating .spr-summary-actions-hidereviews {
  float: left;
  margin: -15px 10px 0 0;
  text-decoration: underline;
}

#shopify-product-reviews.show-rating .spr-review:nth-child(even) {
  background-color: #f3f3f3;
}

#shopify-product-reviews.show-rating .spr-review .spr-review-header {
  height: 40px;
}

#shopify-product-reviews.show-rating .spr-review .spr-review-header .spr-review-header-starratings {
  position: absolute;
  height: 20px;
  top: 42px;
}

#shopify-product-reviews.show-rating .spr-review .spr-review-header .spr-review-header-title {
  position: absolute;
  top: 20px;
  color: #5C5C5D;
  font-weight: normal;
}

#shopify-product-reviews.show-rating .spr-review .spr-review-content {
  margin-top: 20px;
  color: #444444;
}

#shopify-product-reviews.show-rating .spr-review .spr-review-header .spr-review-header-byline {
  bottom: 20px;
  position: absolute;
  color: #2F2F2F;
  opacity: 1;
}

#shopify-product-reviews.show-rating .spr-review .spr-review-footer {
  height: 40px;
}

#shopify-product-reviews.show-rating .spr-pagination {
  display: none;
}

.compare-product-title {
  color: #00a8bd;
  font-weight: 800;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 16px;
  display: block;
  text-transform: none;
}

.compare-product-desc {
  color: #4e4e4e;
  font-weight: 700;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11px;
  line-height: 16px;
  text-transform: none;
}

.HL-mode-wrapper {
  display: block;
  padding: 3px 0 8px 0;
  border-bottom: 1px solid #dedede;
  height: 33px;
}

.table-longform {
  font-size: 12px;
  line-height: 16px;
  padding-top: 18px !important;
  padding-bottom: 21px !important;
}

.table-caption {
  color: #4e4e4e;
  font-weight: 500;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11px;
  line-height: 16px;
  text-transform: none;
}

.HL-mode-icons {
  width: 20px;
  display: inline-block;
  padding: 0 4px 0 0;
  position: relative;
  top: 4px;
}

.mode-dim {
  width: 14px;
  top: 3px;
  margin-left: -23px;
}

.HL-mode-label {
  color: #2e2e2f;
  font-weight: 700;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11px;
  line-height: 14px;
  text-transform: none;
}

.row-full .HL-mode-icons {
  width: 25px;
  display: inline-block;
  padding: 0 4px 0 0;
  position: relative;
  top: 4px;
}

.row-full .HL-mode-label {
  color: #2e2e2f;
  font-weight: 700;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 14px;
  text-transform: none;
}

.row-full .mode-dim {
  width: 14px;
  top: 3px;
  margin-left: 0;
}

.row-full .HL-mode-wrapper {
  border-bottom: none;
  text-align: left;
}

#product-full_features .features-list-no-desc li {
  line-height: 34px;
}

.hl750-features-img {
  padding: 0 20px 0 90px;
}

@media screen and (max-width: 480px) {
  .hl750-features-img {
    padding: 0 0px 10px 0px;
  }
}

.slimfit-logo-new {
  width: 200px;
}

.hl750-tech-img {
  padding: 0;
}

.compare-table {
  margin: 0 auto;
  padding-top: 30px;
}

.compare-table-mobile {
  display: none;
}

.compare-table .active {
  background-color: #008fa1;
  color: white;
}

.compare-table tbody tr > :first-child, .compare-table thead tr > th:first-child, .compare-table tfoot tr > td:first-child {
  color: #777777;
  font-weight: bold;
  text-transform: uppercase;
  text-align: left;
  width: 22%;
  padding-left: 30px;
}

#product-compare .fa-check.fa-circular {
  background-color: transparent;
  border-radius: 20px;
  width: 20px;
  height: 20px;
  line-height: 18px;
  text-align: center;
  color: #008fa1;
  border: 2px solid #008fa1;
  font-size: 12px;
  position: absolute;
  right: 10px;
}

.charge-table {
  font-size: 56px !important;
  margin-left: auto;
  margin-right: auto;
  color: #727272 !important;
  margin-bottom: 15px;
  display: block;
}

#product-compare .product-compare {
  max-width: 100%;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

#product-compare .product-compare-tight {
  max-width: 840px;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.product-compare-tight .compare-table td, .product-compare-tight .compare-table th {
  text-align: left;
  font-weight: 300;
  border-right: 1px dashed #cfcfd0;
  height: 42px;
  width: 20%;
  position: relative;
  padding: 10px 20px 10px 40px;
  vertical-align: top;
}

.compare-table th {
  color: #2e2e2f;
  font-weight: 700;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 18px;
}

.compare-table td {
  color: #111111;
}

.compare-table td, .compare-table th {
  text-align: left;
  font-weight: 300;
  border-right: 1px dashed #cfcfd0;
  height: 70px;
  position: relative;
  padding: 0 20px 0 40px;
}

.compare-table compare-tight td, .compare-table compare-tight th {
  text-align: left;
  font-weight: 300;
  width: 33%;
  border-right: 1px dashed #cfcfd0;
  height: 70px;
  position: relative;
  padding: 0 20px 0 40px;
}

ol.li-number-bold {
  counter-reset: item;
}

ol.li-number-bold>li {
  counter-increment: item;
  list-style-type: none;
}

ol.li-number-bold>li:before {
  display: inline-block;
  width: 1.5em;
  padding-right: 0.5em;
  font-weight: bold;
  text-align: right;
  content: counter(item) ".";
}

.compare-table.table-with-footer {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.compare-table.table-with-footer tbody tr > :first-child, .compare-table.table-with-footer thead tr > th:first-child, .compare-table.table-with-footer tfoot tr > td:first-child {
  width: 15%;
}

.compare-table tbody tr:nth-last-child(even) {
}

.compare-table tbody tr:nth-child(odd) {
  background-color: #fff;
}

.compare-table tfoot tr {
  background-color: white;
  border-bottom: 5px solid #f3f3f3;
}

.compare-table thead tr {
  border-bottom: 1px solid #a3a3a4;
}

.compare-table tfoot td {
  padding-top: 20px;
  padding-bottom: 20px;
}

.ansi-table {
  max-width: 100%;
  width: 100%;
  padding: 0 8px 0 8px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.ansi-table tbody tr > :first-child, .ansi-table thead tr > th:first-child, .ansi-table tfoot tr > td:first-child {
  color: #4e4e4e;
  font-weight: bold;
  text-transform: uppercase;
  text-align: right;
  width: 25%;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding-left: 21px;
}

#product-rating .spr-summary-actions-allreviews, #product-rating .spr-summary-actions-newreview, #product-rating .spr-summary-actions-hidereviews {
  float: left;
  margin: -15px 10px 0 0;
  text-decoration: underline;
}

.grid-wrap {
  overflow: hidden;
}

.staff-grid {
  margin-left: -8px;
  margin-right: -8px;
  padding-top: 120px;
  padding-bottom: 70px;
  overflow: hidden;
}

.staff-grid:after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  visibility: hidden;
  clear: both;
}

.staff-grid-item {
  min-height: 220px;
  padding-left: 8px;
  padding-right: 8px;
  cursor: pointer;
}

.staff-grid-item:hover .staff-grid-item__overlay {
  opacity: 1;
  visibility: visible;
}

.staff-grid-item:hover .staff-grid-item__content {
  transform: scale3d(1, 1, 1);
}

.staff-grid-item__photo {
  height: 220px;
  position: relative;
  background-color: #f2f2f2;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  text-align: center;
}

.staff-grid-item__overlay {
  display: table;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(32, 160, 157, 0.95);
  width: 100%;
  height: 100%;
  padding: 30px;
  color: white;
  transition: all 150ms ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.staff-grid-item__content {
  transition: all 150ms ease-in-out;
  transform: scale3d(0.5, 0.5, 0.5);
}

.staff-grid-item__content ul {
  margin: 0;
}

.staff-grid-item__content ul li {
  font-size: 21px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
}

.staff-grid-item__content ul li span {
  font-size: 16px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.staff-grid-item__footer {
  width: 100%;
  padding: 25px 18px;
  text-align: center;
}

.faq {
  margin-bottom: 90px;
}

.faq-nav {
  width: 28%;
}

.faq-content {
  width: 72%;
  padding: 52px 60px 30px 80px;
}

.faq-categories li {
  cursor: pointer;
  margin-bottom: 12px;
  color: #2e2e2f;
  font-size: 18px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
}

.faq-categories li:hover {
  text-decoration: underline;
}

.faq-categories li.active {
  color: #008fa1;
}

.faq-categories li.active:hover {
  text-decoration: none;
}

@media only screen and (max-width: 1600px) {
  .wrapper--max {
    padding: 0 30px;
  }
}

@media only screen and (max-width: 480px) {
  a.mobile-video {
    font-size: 1.4rem;
  }

  .wrapper--max {
    padding: 0 10px;
  }

  .modal__content {
    min-height: 470px;
  }

  .modal--close {
    width: 60px;
    height: 60px;
    line-height: 120px;
  }
}

@media only screen and (max-width: 1170px) {
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
  }

  .wrapper {
    padding: 0 20px;
  }

  .wrapper.wrapper--full {
    padding: 0px;
  }

  .grid {
    margin: 0;
  }

  .large--two-quarters.nav-horizontal__menu {
    padding: 0;
  }
}

@media only screen and (max-width: 1280px) {
  .nav-horizontal--products .wrapper.wrapper--full {
    padding: 0 55px 0;
  }
}

@media only screen and (max-width: 1170px) {
  .nav-horizontal--products .wrapper.wrapper--full {
    padding: 0 55px 0 55px;
  }
}

@media only screen and (max-width: 1024px) {
  .nav-horizontal--products .wrapper.wrapper--full {
    padding: 0 0 0 55px;
  }
}

@media only screen and (max-width: 768px) {
  .nav-horizontal--products .wrapper.wrapper--full {
    padding: 0 0 0 20px;
  }
}

@media only screen and (max-width: 768px) {
  #gift-card-image {
    margin-top: 0px;
  }

  h1 {
    font-size: 36px;
  }

  h1.large {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  h3.alt {
    font-size: 26px;
  }

  h4 {
    font-size: 26px;
  }

  h4.alt {
    font-size: 19px;
  }

  h5 {
    font-size: 22px;
  }

  h6 {
    font-size: 18px;
  }

  .wrapper {
    padding: 0 20px;
  }

  .section-xsmall {
    padding: 15px 0;
  }

  .section-small {
    padding: 20px 0;
  }

  .section {
    padding: 30px 0;
  }

  .section-large {
    padding: 40px 0;
  }

  .section-xlarge {
    padding: 50px 0;
  }

  ::-webkit-scrollbar {
    display: none;
  }

  #header > div > div > div.grid__item.large--one-half.small--eight-twelfths.medium--eight-twelfths.header-left {
    text-align: center;
  }

  .mobile-menu-content-wrap {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: scroll;
  }

  .mobile-menu-content-wrap.menu-open {
    position: fixed;
    overflow: hidden;
  }

  #wrap {
    -webkit-transition: -webkit-transform 150ms;
    transition: transform 150ms;
  }

  .mobile-menu-content-wrap.menu-open #wrap {
    width: 100%;
    -webkit-transform: translate3d(300px,0,0);
    transform: translate3d(300px,0,0);
  }

  #hamburger-icon {
    display: inline-block;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    height: 60px;
    color: #fff;
    text-align: center;
    font-size: 20px;
    padding-top: 14px;
    cursor: pointer;
  }

  .menu-open #mobile-menu {
    -webkit-transform: translate3d(0px,0,0);
    transform: translate3d(0px,0,0);
  }

  #mobile-menu {
    display: block !important;
    -webkit-transform: translate3d(-300px,0,0);
    transform: translate3d(-300px,0,0);
    -webkit-transition: -webkit-transform 150ms;
    transition: transform 150ms;
    background-color: #2e2e2f;
    position: absolute;
    width: 300px;
    height: 100%;
    z-index: 9999;
    overflow-y: scroll;
  }

  #mobile-menu a {
    text-decoration: none !important;
  }

  #mobile-menu .close-btn-container {
    font-size: 16px;
    padding-top: 10px;
    padding-left: 30px;
    height: 60px;
    text-align: left;
  }

  #mobile-menu .close-btn-container a {
    color: white;
  }

  #mobile-menu .secondary-menu {
    padding: 20px 0px 10px 0px;
    margin: 0;
    width: 100%;
  }

  #mobile-menu .secondary-menu li {
    width: 100%;
    padding-left: 30px;
    margin-bottom: 20px;
    margin-left: 0px;
    margin-right: 0px;
    color: white;
  }

  #mobile-menu .secondary-menu li a {
    display: block;
    padding: 0;
    margin: 0;
    color: white;
    display: inline-block;
  }

  #mobile-menu .footer-menu {
    padding: 0;
    margin: 0;
    width: 100%;
  }

  #mobile-menu .footer-menu li {
    width: 100%;
    padding-left: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: 0px;
    margin-right: 0px;
    color: white;
    border-top: 1px solid rgba(255,255,255,0.2);
  }

  #mobile-menu .footer-menu li:nth-last-child(1) {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 10px;
  }

  #mobile-menu .footer-menu li a {
    text-transform: uppercase;
    display: block;
    padding: 0;
    margin: 0;
    color: white;
    display: inline-block;
    width: 100%;
    font-size: 14px;
  }

  #mobile-menu .footer-menu li a i.icomoon {
    font-size: 14px;
    margin-right: 10px;
  }

  #mobile-menu .footer-menu #locations {
    height: inherit;
    color: white;
    float: none;
    padding-left: 0px;
  }

  #mobile-menu .footer-menu #locations_chooser {
    float: none;
    display: inline-block;
    padding-left: 0px;
    width: 85%;
    position: relative;
  }

  #mobile-menu .footer-menu #locations_chooser .fa {
    position: absolute;
    top: 1px;
    right: 20px;
    font-size: 20px;
  }

  #mobile-menu .primary-menu {
    padding: 20px 0px 10px 0px;
    background-color: #313234;
    margin: 0;
    width: 100%;
  }

  #mobile-menu .primary-menu li {
    width: 100%;
    padding-left: 30px;
    margin-bottom: 20px;
    margin-left: 0px;
    margin-right: 0px;
    color: white;
  }

  #mobile-menu .primary-menu li a {
    text-transform: uppercase;
    display: block;
    padding: 0;
    margin: 0;
    color: white;
    display: inline-block;
  }

  #mobile-menu .primary-menu li a.collapsable-link {
    position: relative;
    width: 100%;
  }

  #mobile-menu .primary-menu .sub-nav {
    padding: 20px 0px 10px 0px;
    background-color: #2e2e2f;
    height: 0;
    overflow: hidden;
    -webkit-transition: height 200ms;
    transition: height 200ms;
    margin-bottom: 20px;
  }

  #mobile-menu .primary-menu .sub-nav.off {
    padding: 0px !important;
    margin: 0px !important;
  }

  #mobile-menu .primary-menu .sub-nav li a {
    text-transform: inherit;
    color: rgba(255,255,255,0.8);
  }

  #mobile-menu .primary-menu .sub-nav ul {
    margin-bottom: 25px;
    margin-left: 0px;
  }

  #mobile-menu .primary-menu .sub-nav ul li {
    margin-bottom: 5px;
  }

  #mobile-menu .primary-menu .sub-nav li a.white {
    color: white;
    font-weight: bold !important;
  }

  #header {
    height: 60px;
  }

  #header .header-left {
    height: 60px;
    padding: 0 15px;
    padding-top: 5px;
    text-align: center;
  }

  #header #menu-main {
    display: none;
  }

  #header .header-left {
    padding-top: 10px;
  }

  #header .header-right {
    height: 60px;
  }

  #header .menu-main {
    padding-right: 10px;
  }

  #header .menu-main li a {
    min-width: 0px;
    padding: 0 5px;
    font-size: 14px;
    line-height: 60px;
  }

  #header .menu-cart {
    width: 100%;
  }

  #header .menu-cart {
    min-width: 0px;
  }

  #header .menu-cart a {
    padding-top: 13px;
    text-align: center;
  }

  #header .menu-cart .badge {
    width: 22px;
    height: 22px;
    line-height: 22px;
    top: -2px;
    border-radius: 11px;
  }

  #header .menu-cart .fa-circle-border {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 14px;
    border-radius: 16px;
  }

  .sidebar {
    width: 290px;
  }

  .sidebar__header {
    padding: 20px 0;
  }

  .cart-item {
    padding: 6px 0;
  }

  .cart-item .cart-item__desc, .cart-item .cart-item__actions {
    padding: 10px 0;
  }

  .sidebar__footer .grid__item.large--one-third {
    width: 33.333333%;
  }

  .sidebar__footer .grid__item.large--one-third img {
    width: 80%;
  }

  .footer-social .large--one-third, .footer-default .large--one-third {
    padding-top: 30px;
  }

  .footer-social h4 + h6 {
    margin-bottom: 30px;
  }

  .footer-social form {
    margin: 0 auto;
  }

  .footer-social .grid__item {
    padding-left: 0;
    text-align: center;
  }

  .footer-default .footer-default__header li {
    margin: 0 10px;
    text-align: center;
  }

  .footer-default .text-right {
    text-align: center !important;
  }

  .footer-default .menu-footer-top {
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-default .menu-footer-auth {
    width: 100%;
  }

  .footer-default .footer-default__content {
    font-size: 14px;
  }

  .footer-default .footer-default__content > ul {
    width: 49%;
    display: inline-block;
    margin-bottom: 20px;
    float: none;
  }

  .footer-default .footer-default__content > ul:last-of-type {
    margin-bottom: 0;
  }

  .footer-default .footer-default__footer .grid__item + .grid__item {
    margin-top: 20px;
  }

  .footer-legal {
    font-size: 13px;
    text-align: center;
  }

  .footer-legal .text-right {
    text-align: center !important;
  }

  .footer-legal .grid__item + .grid__item {
    margin-top: 10px;
  }

  #links-footer-menu .grid__item {
    height: 22px;
    overflow: hidden;
    -webkit-transition: height 200ms;
    transition: height 200ms;
  }

  #links-footer-menu .grid__item li:first-child {
    cursor: pointer;
    position: relative;
  }

  #links-footer-menu {
    border: 0px solid white !important;
  }

  #links-footer-menu .grid__item.on li:first-child:after {
    opacity: 0;
  }

  #links-footer-menu .grid__item:nth-last-child(1) {
    width: 60%;
  }

  #links-footer-menu .grid__item li:first-child:after {
    display: inline-block;
    font-family: 'icomoon';
    font-size: 11px !important;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: opacity 200ms;
    transition: opacity 200ms;
    content: "\e65a";
    display: inline-block;
    margin-left: 10px;
    opacity: 1;
  }

  #actions-footer-menu {
    display: none;
  }

  .hero {
    height: 400px;
  }

  .hero.hero--small {
    height: 400px;
  }

  .hero.hero--medium {
    height: 450px;
  }

  .hero.hero--xmedium {
    height: 475px;
  }

  .nav-circles li .circle .fa, .nav-circles li .circle .icomoon {
    font-size: 20px;
  }

  .story-grid {
    padding: 0;
  }

  .story-grid.story-grid--thirds .story-grid-item, .story-grid.story-grid--masonry .story-grid-item.story-grid-item--size-250, .story-grid.story-grid--masonry .story-grid-item.story-grid-item--size-280, .story-grid.story-grid--masonry .story-grid-item.story-grid-item--size-300, .story-grid.story-grid--masonry .story-grid-item.story-grid-item--size-330, .story-grid.story-grid--masonry .story-grid-item {
    width: 100%;
    max-width: 100%;
    height: 200px;
  }

  .story-grid .story-grid-item .story-grid-item__inner {
    height: 100%;
  }

  .story-grid .story-grid-item {
    padding: 0;
    margin-top: 10px;
    text-align: center;
    position: relative !important;
    top: inherit !important;
  }

  .story-grid .story-grid-item h4 {
    color: white;
  }

  .story-grid .story-grid-item small {
    color: white;
  }

  .story-grid .story-grid-item .icomoon {
    text-align: center;
    color: white;
  }

  .story-grid .story-grid-item__content {
    padding: 15px 15px 20px;
  }

  .story-grid.story-grid--green .story-grid-item .story-grid-item__content {
    background-color: rgba(32, 160, 157, 0.5);
  }

  .story-grid.story-grid--green .story-grid-item .story-grid-item__content h4 {
    font-size: 18px;
    line-height: 1.25;
  }

  .story-grid.story-grid--green .story-grid-item .story-grid-item__content div {
    visibility: visible;
    opacity: 1;
  }

  .story-grid.story-grid--green .story-grid-item .story-grid-item__content .fa, .story-grid.story-grid--green .story-grid-item .story-grid-item__content .icomoon {
    font-size: 12px;
    margin: 0 5px 0;
    visibility: visible;
    opacity: 1;
  }

  .story-grid.story-grid--green .story-grid-item .story-grid-item__content .icomoon {
    font-size: 20px;
    line-height: 27px;
  }

  .story-grid.story-grid--green .story-grid-item .story-grid-item__content small {
    height: auto;
    visibility: visible;
    opacity: 1;
    font-size: 12px;
  }

  .story-grid.story-grid--green .story-grid-item.story-grid-item--fallback .story-grid-item__content h5 + .btn {
    margin-top: 10px;
  }

  .story-grid .story-grid-item:last-child {
    background-color: transparent;
  }

  .story-grid #user-story-share .story-grid-item__content {
    background-color: white;
  }

  .nav-horizontal.nav-horizontal--icons .nav-horizontal__menu ul li {
    float: left;
  }

  .nav-horizontal.nav-horizontal--icons .nav-horizontal__menu ul li a {
    padding: 15px 10px 0;
    font-size: 11px;
  }

  .nav-horizontal__menu {
    padding: 0;
  }

  #story-grid-filter.nav-horizontal .nav-horizontal__menu ul li {
    width: 20%;
    float: left;
  }

  #product-grid-filter.nav-horizontal .nav-horizontal__menu ul li {
    width: 20%;
  }

  .product-grid-item {
    margin-bottom: 30px;
  }

  .product-grid-item__thumb {
    max-height: 140px;
    background-size: auto 100%;
  }

  .product-grid-item__actions {
    bottom: 15px;
    visibility: visible;
    opacity: 1;
  }

  .stat-columns .stat-column + .stat-column {
    margin-top: 30px;
  }

  .single-product-features {
    min-height: 0;
  }

  .single-product-features .nav-circles li:last-child {
    margin-right: 8px;
  }

  .single-product-features .grid__item {
    text-align: center;
  }

  .single-product-features .single-product-features__left, .single-product-features .single-product-features__right {
    height: auto;
    padding-top: 100px;
  }

  .single-product-features.single-product-features--short .single-product-features__right, .single-product-features.single-product-features--short .single-product-features__left {
    height: auto;
    padding-top: 0;
  }

  .single-product-features #single-product-images > li {
    height: auto;
  }

  .single-product-features #single-product-images > li img {
    max-height: 200px;
    display: block;
    margin: 0 auto;
  }

  .single-product-features .grid__item.single-product-features__right {
    padding: 20px 0 0;
  }

  #single-product-descriptions li > h3 {
    margin-top: 30px;
  }

  #single-product-descriptions h6 + .btn {
    margin-top: 20px;
  }

  .product-stats .product-stat + .product-stat {
    margin-top: 20px;
  }

  .single-product-features.single-product-features--tall {
    height: auto;
    background-size: 50%;
    background-position: 50% 90%;
  }

  .single-product-features.single-product-features--tall .grid__item {
    min-height: 0;
    padding: 0;
  }

  .single-product-features.single-product-features--tall .grid__item h3 {
    font-size: 22px;
  }

  .single-product-features.single-product-features--tall .grid__item h6 {
    font-size: 16px;
  }

  .single-product-features.single-product-features--tall .product-single__thumbnails .grid__item {
    padding: 20px 0 0;
    margin-bottom: 0;
  }

  .product-single__mini-slider .product-single__thumbnails li.grid__item.one-quarter {
    width: 33.3333333%;
    min-height: 0;
  }

  .product-single__mini-slider .product-single__thumbnails li.grid__item.one-quarter.active {
    display: none;
  }

  .product-single__mini-slider .product-single__thumbnails li.grid__item.one-quarter img {
    max-width: 100%;
  }

  .quote-company_logo .quote-company_logo__body {
    padding-top: 40px;
  }

  .quote-company_logo .quote-company_logo__body:before {
    top: 0;
  }

  .quote-company_logo .quote-company_logo__logo {
    padding-top: 10px;
  }

  .product-cards .product-card {
    width: 100%;
  }

  .product-cards .product-card__inner {
    border-right: none;
    border-bottom: 4px solid #fff;
  }

  .single-product-features.single-product-features--photo_bg {
    height: 400px;
  }

  .single-product-features.single-product-features--photo_bg .single-product-features__inner {
    padding-top: 70px;
  }

  .single-product-features.single-product-features--photo_bg .single-product-features__inner .pr30 {
    padding-right: 0 !important;
  }

  .single-product-features.single-product-features--photo_bg .single-product-slides, .single-product-features.single-product-features--photo_bg .single-product-slides li {
    background-position: 50% 50%;
    background-size: cover;
  }

  #bundled-offer.product-cards .product-card__inner {
    min-height: 0;
    padding: 20px;
    border-right: none;
    border-left: none;
  }

  #bundled-offer.product-cards .product-card__inner + .product-card__inner {
    border-top: 4px solid #fff;
  }

  #bundled-offer.product-cards .product-card .product-card__content {
    vertical-align: top;
  }

  .product-tech .product-tech-curtain h3 {
    font-size: 24px;
  }

  .product-tech .product-tech-curtain .product-tech-curtain__content.pt50.pb50 {
    padding: 20px 10px !important;
  }

  .product-tech .product-tech-curtain .product-tech-curtain__img {
    height: 150px;
    margin: 0 auto;
  }

  .product-tech .product-tech-curtain .product-tech-curtain__list {
    margin-top: 30px;
    padding-right: 20px;
    font-size: 12px;
  }

  .product-tech .product-tech-curtain .product-tech-curtain__list h4 {
    font-size: 16px;
  }

  .product-tech .product-tech-curtain .product-tech-curtain__list li {
    min-height: 0;
    padding-left: 10px;
  }

  .product-tech .product-tech-curtain footer {
    bottom: 25px;
  }

  .product-specs__middle > div {
    padding: 0;
  }

  .product-specs__middle > div:first-child {
    border-right: none;
  }

  .product-specs__middle > div:last-child table {
    margin-left: 0;
  }

  .product-specs__body {
    font-size: 12px;
  }

  .product-specs__table tr {
    border-bottom: none;
  }

  .product-specs__table .spec-title {
    font-size: 16px;
  }

  .product-specs__img {
    margin: 10px auto 0;
  }

  .product-specs__header-icon {
    margin-bottom: 20px;
  }

  .product-specs__body .border-right, .product-specs__body .border-left {
    border-left: none;
    border-right: none;
  }

  .product-specs__top > div > table {
    border-top: 0;
    border-bottom: 0;
  }

  .product-specs__body {
    margin: 20px 0;
  }

  .product-specs__body img {
    max-height: 200px;
  }

  .product-specs__top {
    margin: 0;
    padding-bottom: 20px;
  }

  .product-specs__bottom {
    margin: 0;
    padding-top: 20px;
  }

  .spec-desc ol {
    margin-bottom: 0;
  }

  .spec-desc ol br {
    display: none;
  }

  #product-rating .spr-summary-actions-allreviews, #product-rating .spr-summary-actions-newreview {
    margin-top: 0;
  }

  .related-products .related-product__image {
    width: 50%;
    background-position: 50% 50%;
  }

  .related-products h5.related-product__title {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .related-products h4.related-product__price {
    font-size: 18px;
  }

  .related-products .related-product__content {
    width: 50%;
    height: auto;
    top: 25%;
    left: auto;
    right: 0;
    padding: 0;
    opacity: 1;
  }

  .product-grid-item__price.h1 {
    font-size: 30px;
  }
}

@media only screen and (max-width: 880px) {
  .product-grid-item {
    width: 50%;
  }

  .product-grid-item .you-save {
    top: 0px;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .product-grid-item .fake-you-save {
    top: 0px;
    margin-top: 20px;
    margin-bottom: 6px;
    height: 27px;
  }

  .product-grid {
    padding-bottom: 40px;
  }
}

@media only screen and (max-width: 1024px) {
  .template-product #product-content .product-reviews-mobile {
    margin-top: 40px;
    margin-bottom: 40px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  #header .header-left {
  }

  .compare-table {
    display: none;
  }

  #product-compare .product-compare {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
  }

  .compare-table-mobile {
    border: 1px solid #858686;
    display: block;
    margin-bottom: 30px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .compare-table-mobile tbody tr > :first-child, .compare-table-mobile thead tr > th:first-child, .compare-table-mobile tfoot tr > td:first-child {
    color: #777777;
    font-weight: bold;
    text-transform: uppercase;
    text-align: left;
  }

  .compare-table-mobile th.active {
    color: #008fa1;
  }

  .compare-table-mobile th {
    color: #606162;
    font-weight: bold;
    text-align: left;
    border-bottom: 1px dashed #cfcfd0;
    padding: 20px 15px 20px 10px;
  }

  .compare-table-mobile img {
    max-width: 125px;
  }

  .compare-table-mobile tr:last-child > * {
    border-bottom: 0px;
  }

  #product-compare .compare-table-mobile .fa-check.fa-circular {
    top: 35%;
  }

  .compare-table-mobile td {
    text-align: left;
    color: #111111;
    border-bottom: 1px dashed #cfcfd0;
    padding: 20px 15px 20px 10px;
    position: relative;
  }

  .ansi-table-text-tight {
    font-size: 10px;
    line-height: 12px;
  }

  .table-with-footer th {
    background-color: #f3f3f3;
    border-bottom: 1px dashed #cfcfd0 !important;
    text-align: center !important;
  }

  .compare-table-mobile tbody tr:nth-child(even) {
    background-color: #f3f3f3;
  }

  .compare-table-mobile tbody tr:nth-child(odd) {
    background-color: white;
  }

  #product-features > .wrapper > .grid__item {
    width: 100%;
    padding-right: 0px !important;
  }

  .single-product-features .nav-circles {
    margin-bottom: 50px;
    text-align: center;
  }

  #product-thumbnails, #product-content {
    width: 100%;
  }

  .single-product-features .nav-circles li {
    display: inline-block;
    float: none;
    margin: 0 8px;
  }

  .table-cell {
    vertical-align: top;
  }

  #biolite-outdoor-amp-off-grid-energy-free-shipping-75-and-up .table-cell {
    vertical-align: middle;
  }

  #product-carousels .flex-viewport {
    max-width: 355px;
    margin-left: auto;
    margin-right: auto;
  }

  .hide-on-mobile {
    display: none !important;
  }

  .show--alert_bar .sticky-wrapper.is-sticky {
    margin-top: 0px;
  }

  .product-grid-item .you-save {
    top: 0px;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .template-product .mobile-product-content {
    display: block !important;
  }

  .template-product #header.header--absolute {
    position: relative;
  }

  .template-product #product-overview {
    min-height: 0px;
  }

  .template-product .interstitial, .template-product .product-tech--sitelight {
    display: none;
  }

  .template-product .hero--product {
    display: none;
  }

  .template-product #product-thumbnails .product-single__thumbnails {
    text-align: center;
  }

  .template-product #product-thumbnails .product-single__thumbnails li {
    display: inline-block;
    float: none;
    padding: 0;
    width: 60px;
    height: 60px;
  }

  .template-product .product-single__mini-slider .product-single__thumbnails li img {
    max-width: 100%;
  }

  .template-product #product-thumbnails .product-single__thumbnails li.video_thumbnail {
    height: 72px;
    overflow-x: hidden;
    overflow-y: hidden;
  }

  .template-product #product-thumbnails .product-single__thumbnails li.video_thumbnail .btn {
    top: 13px;
    left: 17%;
  }

  .template-product #product-overview #product-content {
    padding: 0px;
  }

  #product-carousels {
    display: block;
  }

  #qty-select {
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    width: 90% !important;
    display: block !important;
  }

  .mobile-video {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .mobile-show {
    display: block;
  }

  .hero-width {
    width: 100%;
    margin-left: 0;
  }

  .nav-horizontal--products {
    height: 48px !important;
  }

  .nav-horizontal--products .wrapper--full {
    height: 48px;
    border-bottom: 0px solid #eeeded;
  }

  .mobile-shop-with-impact {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #f3f3f3;
    color: #008fa1;
    text-align: center;
    display: block;
    z-index: 5;
    position: relative;
    font-size: 12px;
  }

  .sticky-wrapper {
    z-index: 5;
    position: relative;
  }

  #shop-with-impact-dropdown .dropdown .fa {
    border: 2px solid white;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 30px !important;
    height: 30px !important;
    line-height: 28px;
    text-align: center;
    color: inherit;
    font-size: 18px !important;
    padding-top: 0px !important;
  }

  #shop-with-impact-dropdown .dropdown {
    height: 400px;
    background-position: center bottom;
  }

  #shop-with-impact-dropdown .dropdown h2 {
    margin-top: 40px;
    text-align: center;
    width: 100%;
  }

  #shop-with-impact-dropdown .dropdown p {
    width: 100% !important;
    text-align: center;
  }@  media screen and (max-width: 768px) {
    #shop-with-impact-dropdown .dropdown p {padding-right: 0px !important;
  }
}

.mobile-shop-with-impact p {
  margin: 0px;
}

.mobile-shop-with-impact a {
  color: #008fa1;
  text-decoration: underline;
}

.nav-horizontal--products .nav-horizontal__title {
  border-right: 0px solid !important;
}

.nav-horizontal--products .nav-horizontal__title a {
  font-size: 14px;
}

.carousel .flex-direction-nav .flex-prev, .carousel .flex-direction-nav .flex-next {
  position: absolute;
  font-size: 16px;
  color: #9a9a9a !important;
  top: 45%;
  text-decoration: none !important;
  border: 0px solid #9a9a9a !important;
  outline: none !important;
}

.carousel .flex-direction-nav > li a {
  border-radius: 50%;
  padding: 4px;
  background-color: #eeeeee;
  text-align: center;
}

.carousel .flex-direction-nav {
  position: absolute;
  display: block;
  height: 30px;
  top: 45%;
  margin-left: 0;
  margin-right: 0;
  left: 0;
  right: 0;
}

.carousel .flex-direction-nav > li {
  display: inline-block;
}

.carousel .flex-direction-nav .flex-prev {
  left: 10px;
}

.carousel .flex-direction-nav .flex-next {
  right: 10px;
}

.carousel {
  margin-bottom: 20px;
}

.carousel .hero-carousel {
  position: relative;
}

.carousel .flex-control-nav {
  margin-left: 0px;
  position: absolute;
  bottom: 0px;
  text-align: center;
}

.carousel .flex-control-nav li {
  display: inline-block;
}

.carousel .flex-control-nav li a {
  color: transparent;
  cursor: pointer;
  border: 2px solid #9a9a9a;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  margin-right: 15px;
  font-size: 1px;
  display: inline-block;
  box-shadow: 0 1px 5px 0 rgba(0,0,0,0.17);
}

.carousel .flex-control-nav li a:hover {
  background-color: rgba(255,255,255,0.8);
}

.carousel .flex-control-nav li a.flex-active {
  background-color: #9a9a9a;
}

#product-color-images-container, #product-color-thumbnails-container {
  display: none !important;
}

#color-select {
  margin-left: auto;
  margin-right: auto;
  width: 90% !important;
  display: block !important;
}

#AddSingleToCartForm {
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  width: 90% !important;
}

.template-product .product-reviews-mobile {
  display: block;
}

.template-product .mobile-wrapper {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5px;
  display: block;
}

.template-product .mobile-wrapper .mobile-title {
  display: block;
}

.template-product .mobile-wrapper.closed .mobile-wrapper-content {
  display: none;
}

.template-product .footer-social {
  margin-top: 30px;
}

.template-product .mobile-wrapper.open {
  border-top: solid 2px #E6E0E0;
}

.template-product .mobile-wrapper.open .mobile-title {
  margin-bottom: 0px;
  font-size: 19px;
  font-weight: bold;
  color: #C7C5C5;
  padding-left: 20px;
  position: relative;
}

.template-product .mobile-wrapper.open .mobile-title:after {
  content: "-";
  display: inline;
  position: absolute;
  right: 30px;
}

.template-product .mobile-wrapper.closed .mobile-title:after {
  content: "+";
  display: inline;
  position: absolute;
  right: 30px;
}

.template-product .mobile-wrapper.closed {
  border-top: solid 2px #f3f3f3;
  border-bottom: solid 2px #f3f3f3;
  background-color: #f3f3f3;
}

.template-product .mobile-wrapper.closed .mobile-title {
  font-size: 19px;
  font-weight: bold;
  color: #464545;
  padding-left: 20px;
  margin: 15px 0px;
  position: relative;
}

#product-features-and-specs {
  margin-top: 0px;
}

#product-features-and-specs .content-section {
  display: block !important;
}

#product-features-and-specs .tabs-content {
  background-color: transparent;
  min-height: 0px;
}

#product-features-and-specs .tabs {
  display: none;
}

.mobile-wrapper #product-tech {
  margin-bottom: 40px;
}

.mobile-wrapper #product-specs {
  padding-top: 0px;
  margin-bottom: 20px;
}

.template-product .mobile-description {
  display: block;
  margin-top: 40px;
  margin-bottom: 40px;
}

.template-product .mobile-wrapper.open #product-content {
  display: block;
}

.template-product .mobile-wrapper #product-content {
  padding-left: 0px;
  width: 100%;
  padding-top: 0px !important;
}

.template-product #product-features {
  width: 120%;
  left: -12%;
  height: auto;
  min-height: 0px;
  margin-top: 50px;
  margin-bottom: 20px;
}

.template-product .single-product-features.single-product-features--photo_bg .single-product-slides {
  position: relative;
}

.template-product .single-product-features.single-product-features--photo_bg .single-product-slides li {
  height: 300px;
  position: relative;
}

.template-product #single-product-slide-content > li {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.template-product .single-product-features .nav-circles {
  position: absolute;
  top: -30px;
}

.nav-circles-right {
  top: -60px !important;
}

.template-product .nav-circles.nav-circles--transparent li .circle, .nav-circles.nav-circles--transparent li.active .circle, .nav-circles.nav-circles--transparent li .circle {
  background-color: white !important;
}

.template-product .nav-circles.nav-circles--transparent li .circle.icomoon:before, .nav-circles li .circle.icomoon:before {
  color: #D0D0D0 !important;
}

.template-product .nav-circles.nav-circles--transparent li.active .circle.icomoon:before, .nav-circles li.active .circle.icomoon:before {
  color: rgba(0, 178, 176, 1) !important;
}

.template-product .single-product-features .nav-circles li {
  margin: 0px 8px;
  font-size: 40px;
}

.template-product .single-product-features #single-product-slide-content {
  text-align: center;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.template-product .single-product-features h6 {
  font-size: 14px;
}

.template-product #product-features > .wrapper {
  height: auto;
  padding-top: 30px;
}

.template-product .product-specs__expander {
  max-height: none !important;
  border-bottom: 0px;
  margin-top: 20px;
}

.product-specs__top > div {
  border: 0px;
}

.product-specs__expander .product-specs__body {
  border: none;
  margin: 0 !important;
  padding: 0 !important;
}

.template-product .product-specs__expander-btn {
  display: none;
}

.template-product .product-specs-curtain__footer {
  display: none;
}

.template-product .product-specs__header, .template-product .product-tech__header, .template-product .product-reviews__header {
  display: none;
}

.template-product .product-reviews-container .product-featurette__image h3 {
  text-align: center;
}

.template-product .product-reviews-container .product-featurette__image #AddReviewedToCartForm {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}

.template-product .product-reviews-container .product-featurette__image #AddReviewedToCartForm button {
  width: 100%;
}

.template-product .product-reviews-container .product-featurette__image #ProductPrice {
  display: inline-block;
  text-align: center;
  width: 100%;
  margin-top: 20px;
}

#shopify-product-reviews .spr-summary {
  padding: 20px 0px 80px 0px;
  border-top: none;
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}

.product-reviews-container {
  width: 120%;
  margin-left: -10%;
}

.product-reviews-container .wrapper {
  width: 100%;
}

.product-reviews-container .product-featurette__image {
  display: none;
}

.product-reviews-container .product-featurette__content {
  width: 100%;
  padding-top: 0px !important;
}

.product-reviews-container .product-featurette__content, .product-reviews-container #product-rating, .product-reviews-container .spr-container, .product-reviews-container .spr-content, #shopify-product-reviews {
  overflow: visible !important;
}

.mobile-wrapper.reviews.open .mobile-title {
  margin-bottom: 0px;
}

.spr-reviews {
  width: 108%;
  margin-left: -4% !important;
}

#shopify-product-reviews.show-rating .spr-review {
  width: 100%;
}

.product-reviews-container .spr-starrating.spr-summary-starrating {
  font-size: 18px;
  font-weight: 300;
}

.product-reviews-container .spr-summary-actions-togglereviews {
  font-size: 22px;
  font-weight: 300;
}

.product-reviews-container .spr-review-header-title {
  font-size: 22px;
}

.product-reviews-container .spr-review-content-body {
  font-size: 14px;
}

.template-product .product-featurette .product-featurette__content .spr-summary-actions-newreview, .template-product .product-featurette .product-featurette__content .spr-summary-actions-allreviews {
  top: 90px;
  left: 35px;
  right: inherit;
  text-align: center;
}

#shopify-product-reviews .spr-starrating.spr-summary-starrating {
  margin-left: auto;
  margin-right: auto;
}

#shopify-product-reviews .spr-review-header-title {
  width: 80%;
  overflow: hidden;
  white-space: nowrap;
}

#bundled-offer {
  display: none;
}

.single-product-features.single-product-features--offwhite {
  height: auto;
}

.single-product-features.single-product-features--offwhite .single-product-features__inner {
  padding: 100px 0 150px;
}

.single-product-features.single-product-features--offwhite .single-product-slides li {
  background-size: auto 50%;
  background-position: 100% 100%;
}

.single-product-features.single-product-features--tall {
  background-size: 80%;
  background-position: 50% 90%;
}

.single-product-features.single-product-features--tall .grid__item h3 {
  font-size: 22px;
}

.single-product-features.single-product-features--tall .grid__item h6 {
  font-size: 16px;
}

.product-cards .product-card .product-card__inner {
  padding: 30px;
}

.product-cards .product-card.product-card--bg_right .product-card__inner, .product-cards .product-card.product-card--bg_left .product-card__inner {
  background-size: 50%;
}

.single-product-features .pr30 {
  padding-right: 0;
}

.single-product-features .nav-circles {
  margin-bottom: 0;
}

.single-product-features .nav-circles li {
  margin: 0 5px;
}

.single-product-features .nav-circles li .circle {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 30px;
}

.product-specs__expander {
  max-height: 250px;
}

.product-specs__expander .product-specs__body {
  padding: 20px 0;
}

.review-quote {
  padding: 20px 20px 0 20px;
}

.review-quote h6 {
  font-size: 14px;
  line-height: 1.5;
}

.review-quote .review-quote__author {
  font-size: 18px;
}

.review-quote .review-quote__body {
  width: 100%;
  padding-right: 20px;
  border-right: none;
  border-bottom: 4px solid #fff;
}

.review-quote .review-quote__quote {
  padding-left: 0;
}

.review-quote .review-quote__details {
  width: 100%;
}

.product-featurette .product-featurette__image img {
  max-height: 200px;
}

.related-products .related-product {
  width: 100%;
  height: 150px;
}

.related-products .related-product__image {
  background-size: 80%;
}}

@media only screen and (max-width: 1024px) {
  #topdropdown {
    display: none;
  }

  .menu-main > li.first > a {
    background: none;
  }

  .menu-main > li.mission > a {
    background: none;
  }
}

.menu-cart .fa-circle-border.fa-circle-border--medium {
  font-weight: bold;
}

@media only screen and (min-width: 1024px) {
  .menu-main > li.first > a {
    background: url('nav-plus.png') 10px -6px no-repeat;
    font-weight: bold;
  }

  .menu-main > li.first > a.active {
    background-position: 10px -85px;
  }

  .menu-main > li.mission > a {
    background: url('nav-plus.png') 10px -6px no-repeat;
    font-weight: bold;
  }

  .menu-main > li.mission > a.active {
    background-position: 10px -85px;
  }
}

#topdropdown {
  transition: all 250ms ease;
  z-index: -1000;
}

#missiondropdown {
  transition: all 250ms ease;
  z-index: -1000;
}

.shop-dropdown {
  background: rgba(40, 42, 43, 0.98);
  position: absolute;
  right: 0px;
  width: 425px;
  top: 83px;
  box-shadow: 1px 1px 3px rgba(0,0,0,0.11);
  opacity: 0;
  transform-origin: 50% 0%;
  border-bottom: 2px solid #20A09D;
  transform: scale(1,0);
}

.shop-dropdown.show {
  transform: scale(1,1);
  opacity: 1;
}

.mission-dropdown {
  background: rgba(40, 42, 43, 0.98);
  position: absolute;
  right: 0px;
  width: 425px;
  top: 83px;
  box-shadow: 1px 1px 3px rgba(0,0,0,0.11);
  opacity: 0;
  transform-origin: 50% 0%;
  border-bottom: 2px solid #20A09D;
  transform: scale(1,0);
}

.mission-dropdown.show {
  transform: scale(1,1);
  opacity: 1;
}

.top-nav {
  background: rgb(48, 50, 51);
  height: 50px;
  margin: 0px;
  clear: both;
}

.top-nav li {
  background: rgb(48, 50, 51);
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  height: 50px;
  line-height: 50px;
  width: 50%;
  transition: all 250ms ease;
}

.top-nav li.shop-all {
  border-right: 1px solid #3c3e3e;
  width: 50%;
}

.top-nav li.shop-all span {
  display: inline-block;
  padding-left: 20px;
  position: relative;
}

.top-nav li.shop-all span:before {
  background: url('shoping-cart.png') center center no-repeat;
  content: '';
  height: 14px;
  left: 0;
  position: absolute;
  top: 18px;
  width: 14px;
}

.top-nav li.new {
  border-right: 1px solid #3c3e3e;
  width: 50%;
}

.top-nav li.new span {
  display: inline-block;
  padding-left: 20px;
  position: relative;
}

.top-nav li.new span:before {
  background: url('https://cdn.shopify.com/s/files/1/0666/9741/files/star_r2.png?9688189924266996229') center center no-repeat;
  content: '';
  height: 14px;
  left: 0;
  position: absolute;
  top: 18px;
  width: 14px;
}

.top-nav li:hover {
  background: #20A09D;
}

.top-nav li a {
  font-size: 13px;
  min-width: 1px;
  padding: 0px;
}

.left-nav {
  float: left;
  margin: 30px 0 8px 0;
  text-transform: none;
  width: 45%;
}

.left-nav li {
  display: block;
  float: none;
}

.left-nav li:hover > a {
  background: none;
}

.left-nav > li {
  padding-bottom: 15px;
}

.gearkitsdropdown .left-nav > li {
  padding-bottom: 0;
}

.left-nav li a {
  transition: all 250ms ease;
  font-size: 16px;
  padding: 2px 0px 2px 30px;
  text-align: left;
  text-transform: none;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.left-nav li a:hover {
  background: rgb(32, 160, 157);
}

.left-nav > li > a {
  font-weight: bold;
}

.left-nav .sub {
  margin: 0px;
}

.left-nav .sub li a {
  font-size: 15px;
  padding-left: 45px;
}

.image-wrapper {
  float: left;
  position: relative;
  top: 20px;
  width: 55%;
}

.image {
  transition: opacity 500ms ease;
  opacity: 0;
}

.top-nav:after, .left-nav:after, .image-wrapper:after {
  clear: both;
}

#AddToCart {
  width: 100%;
  padding: 15px 20px;
}

.price-qty-container {
  border-top: 0px solid #f3f3f3;
  margin-top: 10px;
  padding-top: 10px;
}

.price-container {
  margin-top: 12px;
}

.top-review-container {
  background-color: white;
  padding: 15px 10px;
  border-radius: 5px;
  float: left;
  width: 100%;
  margin-top: 20px;
  border: 1px solid #ebebeb;
}

.mobile-product-content {
  display: none;
}

#product-content {
  display: none;
}

.mobile-title {
  display: none;
}

.template-product .mobile-product-content {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
  display: none;
}

.template-product .mobile-product-content .add-to-cart-container {
  display: inline-block;
  vertical-align: middle;
  float: none;
  padding-right: 0px;
  width: 50%;
  margin-right: 10px;
  margin-bottom: 10px;
}

.template-product .mobile-product-content .add-to-cart-container button {
  margin-top: 0px !important;
  width: 100%;
}

.template-product .mobile-product-content .add-to-cart-container button span {
  font-size: 16px;
}

.template-product .mobile-product-content .price-container {
  display: inline-block;
  vertical-align: middle;
  margin-top: 0px;
  text-align: left;
  float: none;
}

.template-product .mobile-product-content .price-container #ProductPrice > .money {
  color: #444444;
  font-weight: 300;
  font-size: 23px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.template-product .mobile-product-content .price-container .compare-at {
  font-size: 20px;
  float: none;
  position: relative;
  margin-top: -5px;
}

.template-product .mobile-product-content .price-container .compare-at span {
  display: inline-block;
  line-height: 13px;
}

.template-product .mobile-product-content .price-container .product-price-compare-strike .money {
  text-decoration: line-through;
}

.product-reviews-mobile {
  display: none;
}

.press-review {
  float: left;
  width: 60%;
}

.star-container-top {
  display: inline-block;
  margin-right: 15px;
}

.template-product #ProductPrice.h4 {
  color: #5D5D5D;
}

#color-select {
  cursor: pointer;
  position: relative;
  width: 100%;
  background-color: #f3f3f3;
  border: 1px solid #008fa1;
  padding: 10px;
  display: inline-block;
  margin-top: 13px;
  margin-bottom: 10px;
}

#color-select:before {
  position: absolute;
  top: 25%;
  right: 5%;
  display: block;
  font: normal normal normal 14px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f0d7";
  color: black;
  font-size: 22px;
}

#color-select.open:before {
  content: "\f0d8";
}

#color-select.open {
  border-bottom: 0px solid;
}

#color-select #color-select-hidden {
  display: none;
}

#color-select .select-menu {
  transition: all 250ms ease;
  transform: scale(1,0);
  -webkit-transform: scale(1,0);
  transform-origin: 50% 0%;
  display: block;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 101%;
  background-color: #f3f3f3;
  z-index: 3;
}

#color-select.open .select-menu {
  transform: scale(1,1);
  -webkit-transform: scale(1,1);
}

.product-grid-item .color-control {
  position: absolute;
  z-index: 2;
  width: 100%;
  text-align: center;
  bottom: 0px;
  cursor: pointer;
}

.color-control .color-circle {
  height: 26px;
  width: 26px;
  border: 1px solid #ebebeb;
  padding: 3px;
  display: inline-block;
  margin-right: 15px;
  cursor: pointer;
  background-color: transparent;
}

#color-select .color-circle {
  height: 16px;
  width: 16px;
  margin-right: 10px;
  border-radius: 100%;
  display: inline-block;
  vertical-align: middle;
}

.color-control .color-container.color-orange {
  border: 1px solid #e98b31;
}

.color-control .color-container.color-black {
  border: 1px solid #616161;
}

.color-control .color-container.color-teal {
  border: 1px solid #73c2c6;
}

.color-control .color-container.color-red {
  border: 1px solid #f40701;
}

.color-control .color-container.color-red-Backordered {
  border: 1px solid #f40701;
}

.color-control .color-container.color-gray {
  border: 1px solid #616161;
}

.color-control .color-container.color-yellow {
  border: 1px solid #fabf01;
}

.color-control .color-container.color-yellow-Backordered {
  border: 1px solid #fabf01;
}

.color-orange {
  background-color: #e98b31;
}

.color-black {
  background-color: #616161;
}

.color-teal {
  background-color: #73c2c6;
}

.color-red {
  background-color: #f40701;
}

.color-red-Backordered {
  background-color: #f40701;
}

.color-gray {
  background-color: #616161;
}

.color-yellow {
  background-color: #fabf01;
}

.color-yellow-Backordered {
  background-color: #fabf01;
}

#color-select .select-menu li {
  padding: 20px 30px;
  border-top: 1px solid #d6d6d6;
}

#color-select .select-menu li:hover {
  background-color: #d6d6d6;
}

#color-select .select-body {
  text-transform: capitalize;
}

#qty-select {
  position: relative;
  width: 50%;
  padding: 15px 0 10px 0;
  display: inline-block;
  box-sizing: border-box;
}

#qty-select > div {
  display: inline-block;
  width: 50%;
  text-align: right;
}

#qty-select .qty-controls {
  text-align: center;
  font-weight: bold;
}

#qty-select .qty-controls .qty-text {
  font-size: 16px;
  margin-left: 6px;
  margin-right: 6px;
  top: 4px;
  position: relative;
  color: #5d5d5d;
}

.qty-controls .icomoon {
  font-size: 18px;
  vertical-align: top;
  padding-top: 3px;
  cursor: pointer;
  color: #5d5d5d;
}

.product-page-view {
  position: relative;
}

#shop-with-impact-dropdown.show {
  transform: translateX(0px) scaleX(1);
  opacity: 1;
  -webkit-transform: translateX(0px) scaleX(1);
}

#shop-with-impact-dropdown .dropdown {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 800px;
  background-color: rgba(0,0,0,0.9);
  background-position: center center;
  background-repeat: no-repeat;
}

#shop-with-impact-dropdown .dropdown h2 {
  margin-top: 20px;
  color: #008fa1;
  font-weight: 700;
}

#shop-with-impact-dropdown .dropdown p {
  color: white;
  width: 60%;
}

#shop-with-impact-dropdown .dropdown .icomoon {
  color: white;
  margin-top: 60px;
  font-size: 45px;
  padding-top: 12px;
  cursor: pointer;
}

#shop-with-impact-dropdown {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  transform: translateY(-200px) scaleY(0);
  opacity: 0;
  -webkit-transform: translateY(-200px) scaleY(0);
  transform-origin: 50% 0%;
  transition: 150ms all ease-in;
  background-color: rgba(0,0,0,0.8);
}

.top-review-horizontal-rule {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.product-reviews-top {
  clear: right;
}

.bottom-side a {
  margin-right: 15px;
}

.product-reviews-top .top-side {
  width: 100%;
  display: inline-block;
}

.product-reviews-top .top-side img {
  vertical-align: middle;
}

.product-reviews-top .top-side img.long-logo {
  width: 100%;
}

.product-reviews-top .top-side p {
  font-size: 10px;
  display: inline-block;
  width: 60%;
  margin-left: 10px;
  vertical-align: middle;
  margin-bottom: 0px;
  color: #606162;
}

.product-reviews-top .top-side p .quote-author {
  font-weight: bold;
}

.product-reviews-top .top-write-a-review, .product-reviews-top .top-see-all {
  float: none !important;
}

.product-reviews-top .bottom-side {
  width: 100%;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
}

.star-container-top .spr-icon-star {
  font-size: 11px !important;
  margin-right: 2px;
  color: #fdb813;
}

.star-container-top .spr-icon-star-empty {
  font-size: 11px !important;
  margin-right: 2px;
}

.compare-at {
  line-height: 0px;
  display: inline;
  top: 2px;
  position: relative;
}

.compare-at .product-price-compare-strike {
  font-size: 13px;
  margin-bottom: 10px;
  font-weight: 300;
}

.add-to-cart-container {
  float: left;
  width: 70%;
}

.impact-icon-container {
  float: left;
  width: 10%;
}

.free-shipping-callout {
  margin: 15px 0 0 0;
}

.free-ship-pdp {
  width: 17px;
  position: relative;
  top: 2px;
  margin: 0 2px 0 0;
}

.free-shipping-title {
  font-size: 13px;
  font-weight: 700;
  display: inline;
  color: #747474;
}

.impact-text-container {
  float: left;
  width: 20%;
  top: 20px;
  position: relative;
  line-height: 11px !important;
  padding-left: 1px;
}

.impact-text a {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700 !important;
  font-size: 10px !important;
  line-height: 11px !important;
  position: relative;
  top: 2px;
  color: #008fa1 !important;
}

.impact-icon {
  margin-right: 7px;
  margin-left: 15px;
  top: 25px;
  max-width: 19px !important;
  position: relative;
}

.shipping-notice {
  margin-top: 10px;
  margin-bottom: 5px;
}

.shipping-icon {
  font-size: 20px !important;
  position: relative;
  top: 5px;
  color: #ecb351;
}

.notice-icon {
  font-size: 20px !important;
  position: relative;
  top: 4px;
  color: #cc4e20;
}

.soldout-icon {
  font-size: 20px !important;
  position: relative;
  top: 4px;
  color: #C24D00;
}


.shipping-notice-message {
  color: #cc4e20;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding:0 0 0 3px;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px !important;
  display: inline-block;
  margin: 0 0 5px 0;
}

.special-notice-message-disclaimer {
  color: #747474;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 12px !important;
  padding: 0;
  display: block;
  margin: 4px 0 15px 0;
}

.GWP-desc {
  padding: 7px 0 0 0;
}

#product-content .special-notice-message {
  color: #cc4e20;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 17px !important;
  padding: 5px 0 0 0;
  margin: 0 0 7px 0;
  display: inline-block;
}

#product-content .special-notice-message-title {
  background-color: #cc4e20;
  color: #fff;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 6px 7px 4px 7px;
  border-radius: 1px;
  margin: 10px 5px 3px 0;
  font-weight: 700;
  font-size: 15px;
  line-height: 17px !important;
  display: inline-block;
}

.soldout-notice-message {
  color: #cc4e20;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  padding: 10px 0 10px 3px;
  font-size: 14px;
  line-height: 18px !important;
}

.preorder-notice-message {
  color: #2e2e2f;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 15px !important;
  padding: 0px 0 5px 0;
  display: block;
  margin-top: 10px;
}

.preorder-message {
  padding: 5px 0 15px 0;
}

.number-reviews-top {
  font-size: 12px;
  color: #999;
  margin-right: 10px;
}

.price-container {
  float: left;
  width: 50%;
  text-align: left;
}

.press-review {
  font-size: 12px;
  margin-right: 10px;
  width: 70%;
  border-right: 1px solid #eee;
  padding: right;
}

.press-review .quote {
  font-style: italic;
}

.press-review .quote-source {
  display: block;
  font-weight: bold;
}

.press-review .logo-image {
  float: left;
  padding: 10px;
}

.top-see-all {
  line-height: 2em;
  padding-right: 5px;
  font-size: 12px;
  text-decoration: underline;
  margin-right: 2px;
}

.top-write-a-review {
  line-height: 2em;
  font-size: 12px;
  text-decoration: underline;
}

.product-reviews-top .show-rating {
  min-height: 26px !important;
}

.upsell-section {
  border-top: 1px solid #f3f3f3;
  padding: 25px 0 0 0;
  margin: 20px 0 0 0;
}

@-moz-document url-prefix() {
  .upsell-section {
    max-width: 437px;
  }
}

#upsell-details {
  padding-left: 25px;
  margin-top: 8px;
}

#upsell-details-thirds {
  margin-top: 8px;
  text-align: center;
  padding: 0 5px 0 5px;
  margin-left: auto;
  margin-right: auto;
}

.upsell-title {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #5D5D5D;
  display: block;
  margin-bottom: 15px;
}

.upsell-product-title {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #2e2e2f;
  display: block;
  white-space: nowrap;
  padding: 0 0 5px 0;
}

.upsell-image {
  border: 1px solid #f3f3f3;
}

.upsell-image-third {
  padding: 0px 5px 10px 5px;
  text-align: center;
}

.upsell-product-desc {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: #5D5D5D;
  display: inline-block;
}

.upsell-cart {
  margin-top: 9px;
  padding: 0 0 15px 0;
  border: 1px solid #fff;
}

.upsell-cart-large {
  margin-top: 9px;
  padding: 0 0 51px 0;
  border: 1px solid #fff;
}

.upsell-product-price {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #5D5D5D;
  display: inline;
  margin-left: 6px;
}

.upsell-product-price-compare {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: #9d9d9d;
  display: block;
  margin-left: 6px;
  text-decoration: line-through;
  padding: 0;
  line-height: 8px;
}

.upsell-button {
  display: inline;
  padding: 4px 6px 0 0;
}

.upsell-price {
  display: inline;
}

@media only screen and (max-width: 1024px) {
  .price-qty-container {
    border-top: 0px solid #f3f3f3;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    margin-bottom: 10px;
  }

  .preorder-message {
    padding: 0px 20px 15px 20px !important;
    text-align: center !important;
  }

  .add-to-cart-container {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    float: none;
  }

  .impact-icon-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
    padding-bottom: 6px;
  }

  .impact-text-container {
    width: 100%;
    display: block;
    text-align: center;
  }

  .impact-text {
    font-size: 15px;
  }

  #qty-select {
    margin-bottom: 10px;
    width: 50% !important;
    display: inline !important;
    text-align: center;
  }

  #qty-select .qty-controls .qty-text {
    margin-left: 12px;
    margin-right: 12px;
  }

  .qty-controls .icomoon {
    padding-top: 4px;
  }

  .compare-at {
    text-align: center;
    line-height: 0px;
    display: inline-block;
    padding-top: 4px;
  }

  .price-container {
    text-align: center;
    margin-top: 6px;
  }

  #qty-select > div {
    text-align: center;
  }

  .single-product-features.single-product-features--tall {
    padding: 16px 0 20px 0;
  }

  .template-product #ProductPrice.h4 {
    font-size: 20px !important;
    text-align: center !important;
  }

  .shipping-notice {
    margin-left: auto;
    margin-right: auto;
    width: 95%;
    text-align: center;
  }
}

.interstitial .interstitial__overlay.interstitial__overlay--gray {
  background-color: transparent;
  background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/overlay_gray.png?445656494052131437");
  opacity: 0.91;
}

.interstitial .interstitial__overlay.interstitial__overlay--light-gray {
  background-color: #f8f8f8;
}

#biolite-outdoor-amp-off-grid-energy-free-shipping-75-and-up .badge-hero img {
  width: 400px;
  height: 400px;
}

@media only screen and (max-width: 768px) {
  #biolite-outdoor-amp-off-grid-energy-free-shipping-75-and-up .badge-hero img {
    width: 250px;
    height: 250px;
  }
}

.blog-divider-white {
  width: 85px;
  height: 1px;
  background-color: #fff;
  margin-top: 20px;
  margin-right: auto;
  margin-bottom: 20px;
  margin-left: auto;
}

#mobile-menu {
  display: none;
}

.interstitial-tight {
  min-height: 200px !important;
}

#coupon-landing #product-grid-img {
  min-height: 343px;
  background-position: -10px 0;
  background-repeat: no-repeat;
  background-size: 45%;
  position: relative;
  margin-bottom: 0px;
}

#coupon-landing #product-grid-img .title-and-reviews {
  font-size: 18px;
  font-style: italic;
  text-align: left;
  line-height: 18px;
  margin-top: 10%;
  margin-left: 50%;
}

#coupon-landing #product-grid-img .title {
  display: inline-block;
  margin-bottom: 5px;
}

@media only screen and (min-width: 769px) and (max-width: 1004px) {
  .menu-main li a {
    padding: 28px 5px;
  }
}

.interstitial .interstitial__overlay.interstitial__overlay--blue {
  background-color: #008fa1;
  opacity: 0.82;
}

.primary-blue {
  color: #35A8A5;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .tablet-portrait-hidden {
    display: none !important;
  }

  .template-product #product-content .mobile-product-content {
    display: block;
  }

  .template-product .top-review-container {
    display: none;
  }

  .template-product .mobile-product-content #AddSingleToCartForm {
    text-align: left !important;
  }

  .template-product #product-thumbnails .product-single__thumbnails {
    text-align: center;
  }

  .template-product #product-thumbnails .product-single__thumbnails li {
    display: inline-block;
    float: none;
    padding: 0;
    width: 72px;
    height: 72px;
  }

  .template-product .product-single__mini-slider .product-single__thumbnails li img {
    max-width: 100%;
  }

  .template-product #product-thumbnails .product-single__thumbnails li.video_thumbnail {
    height: 72px;
    overflow-x: hidden;
    overflow-y: hidden;
  }

  .template-product #product-thumbnails .product-single__thumbnails li.video_thumbnail .btn {
    top: 13px;
    left: 17%;
  }

  #product-features {
    height: 500px;
    min-height: 0px;
  }

  #product-features #single-product-slide-content {
    padding-left: 10px;
    width: 70%;
  }

  .product-tech .product-tech-curtain .product-tech-curtain__img {
    width: 90%;
    height: auto;
  }

  .product-tech .product-tech-curtain .grid__item {
    margin-top: 30px;
  }

  .product-tech .product-tech-curtain__list {
    margin-top: 0px;
  }

  .inside-tech--kettlecharge {
    height: 500px !important;
  }

  .inside-tech--campstove, .inside-tech--basecamp {
    height: 650px !important;
  }

  .product-tech .product-tech-curtain {
    height: 65% !important;
  }

  .product-tech .product-tech__content {
    height: 65%;
  }

  .product-tech .product-tech-overlay .product-tech-overlay__content {
    bottom: 140px;
  }

  .product-tech .product-tech-curtain {
    height: 65%;
  }

  .inside-tech--powerlight .product-tech .product-tech-overlay .product-tech-overlay__content {
    bottom: 230px;
  }

  .inside-tech--bundle {
    height: 680px;
  }

  .inside-tech--nanogrid .product-tech .product-tech-overlay .product-tech-overlay__content {
    bottom: 220px;
  }

  #product-tech-curtain--powerlight, #product-tech-curtain--nanogrid {
    height: 55% !important;
  }

  .inside-tech--powerlight, .inside-tech--nanogrid {
    height: 590px !important;
  }

  .inside-tech--nanogrid #product-tech {
    height: 900px !important;
  }

  .product-specs__expander.show {
    max-height: none;
  }

  .product-specs__expander.show .product-specs__body {
    padding-bottom: 40px;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1) {
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
  .compare-table-mobile {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (min-device-width: 600px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .tablet-portrait-hidden {
    display: none !important;
  }

  .template-product #product-content .product-reviews-mobile {
    margin-top: 40px;
    margin-bottom: 40px;
    display: block;
  }

  .template-product #product-content .mobile-product-content {
    display: block;
  }

  .template-product .top-review-container {
    display: none;
  }

  .template-product .mobile-product-content #AddSingleToCartForm {
    text-align: left !important;
  }

  .template-product #product-thumbnails .product-single__thumbnails {
    text-align: center;
  }

  .template-product #product-thumbnails .product-single__thumbnails li {
    display: inline-block;
    float: none;
    padding: 0;
    width: 72px;
    height: 72px;
  }

  .template-product .product-single__mini-slider .product-single__thumbnails li img {
    max-width: 100%;
  }

  .template-product #product-thumbnails .product-single__thumbnails li.video_thumbnail {
    height: 72px;
    overflow-x: hidden;
    overflow-y: hidden;
  }

  .template-product #product-thumbnails .product-single__thumbnails li.video_thumbnail .btn {
    top: 13px;
    left: 17%;
  }

  #product-features {
    height: 500px;
    min-height: 0px;
  }

  #product-features #single-product-slide-content {
    padding-left: 10px;
    width: 70%;
  }

  .product-tech .product-tech-curtain .product-tech-curtain__img {
    width: 90%;
    height: auto;
  }

  .product-tech .product-tech-curtain .grid__item {
    margin-top: 30px;
  }

  .nav-horizontal--products .nav-horizontal__action i {
    display: none;
  }

  .nav-horizontal--products .nav-horizontal__action .btn span {
    font-size: 14px !important;
  }

  .product-tech.without-curtain {
    height: 450px;
  }

  .product-tech li {
    font-weight: 300;
  }

  #shopify-product-reviews.show-rating .spr-review {
    padding: 20px 55px !important;
  }

  .template-product .product-featurette .product-featurette__content .spr-summary-actions-newreview, .template-product .product-featurette .product-featurette__content .spr-summary-actions-allreviews {
    top: 100px;
    left: 85px;
    right: inherit;
    text-align: center;
  }

  .template-product .single-product-features .nav-circles {
    position: absolute;
    top: -30px;
    text-align: center;
    width: 100%;
  }

  .nav-circles.nav-circles--transparent li .circle.icomoon:before, .nav-circles li .circle.icomoon:before {
    font-size: 64px !important;
  }

  .nav-circles.nav-circles--transparent li .circle.icomoon, .nav-circles li .circle.icomoon {
    line-height: 64px !important;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
}

#energy-everywhere-special .hero .hero__viewport h1.large {
  font-size: 68px;
}

#energy-everywhere-special .nav-horizontal__title {
  font-size: 12px;
}

#energy-everywhere-special .product-specs__body .border-bottom {
  border-bottom: none;
}

#press-amp-media-biolite-official .staff-grid {
  padding-top: 20px;
}

#press-amp-media-biolite-official .staff-grid-item__photo {
  background-color: #fff !important;
  border: 1px solid #f3f3f3 !important;
}

.story-grid.story-grid--green .story-grid-item .story-grid-item__content > div .prep {
  position: relative;
  vertical-align: middle !important;
  z-index: 3;
  opacity: 1;
  visibility: visible;
  transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
}

.align-middle {
  vertical-align: middle !important;
}

.story-grid-item:hover .height-80 {
  height: 80px !important;
}

#campstove-carbon .nav-horizontal {
  background-color: #242424 !important;
}

#preorder-biolite-2016-products .list-toggle__content {
  color: #2e2e2f;
  padding: none;
}

#preorder-biolite-2016-products .product-specs__body {
  border-top: none;
  border-bottom: none;
  margin: 0px 0px;
}

#preorder-biolite-2016-products .product-specs__body .border-bottom {
  border-bottom: none;
}

.shop-dropdown {
  top: 64px;
  background: #ffffff;
  color: #222;
  width: 1280px;
  border: 0;
}

.mission-dropdown {
  top: 64px;
  background: #ffffff;
  color: #222;
  width: 1280px;
  border: 0;
}

.left-nav-holder {
  width: 68.75%;
  float: left;
  padding: 15px 40px 20px 70px;
  text-align: left;
}

.left-nav {
  width: 100%;
  float: none;
}

.left-nav > li {
  display: inline-block;
  vertical-align: top;
  margin: 0 50px 0 0;
}

.left-nav > li:last-child {
  margin-right: 0px;
}

.left-nav > li > a {
  color: #008fa1;
  text-transform: uppercase;
  font-weight: 600;
}

.left-nav > li > a:hover {
  color: #008fa1;
}

.left-nav > li > a > img {
  margin: 2px 5px 0 0;
  position: relative;
}

.left-nav li a {
  padding: 0px 10px;
}

.left-nav li a:hover {
  background: transparent;
}

.left-nav .sub li a {
  color: #2f3639;
  font-size: 15px;
  line-height: 25px;
  display: inline-block;
  margin: 3px 0;
  font-weight: 600;
  padding-left: 10px;
}

.left-nav .sub li a:hover, .left-nav .sub-list li a:hover {
  color: #008fa1;
  background: #f3f3f3;
}

.left-nav .sub-list {
  margin-left: 0;
}

.left-nav .sub-list > li > a {
  font-weight: 100;
  font-size: 15px;
  line-height: 25px;
  display: inline-block;
  margin: 3px 0;
}

.left-nav .left-nav-sep {
  display: block;
  width: 21px;
  border-top: 1px dashed #d9d9da;
  margin: 7px 20px 7px 12px;
}

.left-nav .nav-vert-sep {
  display: block;
  height: 45px;
  border-right: 1px dashed #d9d9da;
  margin: 8px 0 0 0;
}

.left-nav-holder .horiz-sep {
  border-bottom: 1px solid #d9d9da;
  margin-left: 10px;
  padding: 10px 0 0 0;
}

.left-nav-holder .shop-all a {
  color: #008fa1;
  font: 600 16px/24px reader-regular;
  text-align: left;
  text-transform: uppercase;
  display: inline-block;
  padding: 20px 0 0 10px;
}

.left-nav-holder .shop-all a:hover {
  color: #008fa1;
}

.left-nav-holder .shop-all a img {
  position: relative;
  top: 2px;
}

.nav-featured-area {
  width: 31.25%;
  float: left;
}

.nav-featured-area .featured-item-1 {
  background: #f3f3f3;
  padding: 40px 40px 40px 20px;
  text-align: left;
}

.nav-featured-area .featured-item-2 {
  background: #f3f3f3;
  padding: 40px 40px 40px 20px;
  text-align: left;
}

a.nav-featured-area-link {
  padding: 0 !important;
}

a.nav-featured-area-link:hover {
  text-decoration: none !important;
  opacity: 0.7;
}

a.nav-featured-area-link:hover .featured-item {
  background-color: rgba(236, 236, 236, 0.2);
  text-decoration: none;
}

a.nav-featured-area-link:active .featured-item {
  text-decoration: none;
}

.nav-featured-area .featured-item:after {
  clear: both;
}

.nav-featured-area .featured-item-1 {
  border-bottom: 4px solid #fff;
  background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/CampStove_nav_sprite.jpg?15930133224507647743");
  background-repeat: no-repeat;
  background-position: 0 0;
}

.nav-featured-area .featured-item-1:hover {
  border-bottom: 4px solid #fff;
  background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/CampStove_nav_sprite.jpg?15930133224507647743");
  background-repeat: no-repeat;
  background-position: 0 -230px;
}

.nav-featured-area .featured-item-2 {
  border-bottom: 4px solid #fff;
  background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/PowerLightMini_navFeature.png?17968198694838721997");
  background-repeat: no-repeat;
  background-position: center;
}

.nav-featured-area .featured-item-heading {
  color: #008fa1;
  font-size: 11px;
  line-height: 15px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 10px 0 18px 0;
}

.nav-featured-area .featured-item-heading img {
  margin: 0 4px 0 0;
  position: relative;
  top: 1px;
}

.nav-featured-area .featured-item-image {
  float: right;
  margin: 0 6px 0 24px;
}

.nav-featured-area .featured-item-image {
  padding: 0;
}

.nav-featured-area .featured-item-title {
  font: 600 16px/24px reader-regular;
  text-transform: none;
  margin: 0 0 4px 0;
  padding: 0;
  text-align: left;
  display: inline-block;
}

.nav-featured-area .featured-item-description {
  font: 100 16px/16px reader-regular;
  text-transform: none;
}

.nav-featured-area .featured-item-description:hover {
  text-decoration: none;
}

.nav-featured-area .featured-item-description:active {
  text-decoration: none;
}

#mobile-menu .primary-menu li a {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 100;
}

#mobile-menu .primary-menu .sub-nav ul {
  margin: 0 0 20px 0;
}

#mobile-menu .primary-menu .sub li a {
  color: #fff;
  font-size: 16px;
  line-height: 34px;
  font-weight: 600;
}

#mobile-menu .primary-menu ul.sub-list {
  margin: 20px 0 0 0;
}

#mobile-menu .primary-menu .sub-nav ul .sub-list > li > a {
  font-weight: 100;
  font-size: 20px;
  line-height: 34px;
}

#mobile-menu .primary-menu .left-nav-sep {
  display: block;
  width: 21px;
  border-top: 1px dashed #fff;
  margin: 0px 0px 0px 30px;
}

#mobile-menu .secondary-menu li a, #mobile-menu .footer-menu li a, #mobile-menu select#locations {
  font: 100 18px/34px reader-regular;
}

#mobile-menu #mobile-search {
  height: 0;
  overflow: hidden;
}

#mobile-menu .mobile-search-holder {
  padding: 0px 10px 20px 30px;
}

#mobile-menu .mobile-search-input {
  width: 200px;
  height: 30px;
  font-size: 12px;
  line-height: 18px;
  border: 0;
  border-radius: 5px 0 0 5px;
}

#mobile-menu .mobile-search-go {
  height: 30px;
  width: 30px;
  padding: 0px;
  font-size: 12px;
  line-height: 30px;
  text-align: center;
  border-radius: 0px 5px 5px 0px;
}

@media screen and (min-width: 1100px) {
  .shop-dropdown {
    width: 100%;
  }

  .mission-dropdown {
    width: 100%;
  }

  .left-nav-holder {
    width: 68.75%;
    float: left;
    padding: 14px 40px 20px 40px;
  }

  .left-nav > li {
    margin: 0 35px 0 0;
  }

  .nav-featured-area {
    width: 31.25%;
    float: left;
  }

  .nav-featured-area .featured-item {
    padding: 58px 40px 80px 20px;
  }

  .nav-featured-area .featured-item-image img {
    width: 100px;
  }
}

@media screen and (min-width: 980px) and (max-width:1125px) {
  .shop-dropdown {
    width: 100%;
  }

  .mission-dropdown {
    width: 100%;
  }

  .left-nav-holder {
    width: 100%;
    float: none;
    padding: 20px 40px 20px 40px;
  }

  .left-nav > li {
    margin: 0 60px 0 0;
  }

  a.nav-featured-area-link {
    display: table-cell;
    width: 50%;
  }

  .nav-featured-area .featured-item {
    padding: 70px 40px 50px 20px;
  }

  .nav-featured-area .featured-item-image img {
    width: 100px;
  }

  .nav-featured-area .featured-item-heading {
    margin-top: 0;
    margin-bottom: 8px;
  }

  .nav-featured-area .featured-item-1 {
    border-bottom: 0;
    border-right: 4px solid #fff;
  }
}

@media screen and (min-width: 769px) and (max-width:979px) {
  .shop-dropdown {
    width: 100%;
  }

  .mission-dropdown {
    width: 100%;
  }

  .left-nav-holder {
    width: 100%;
    float: none;
    padding: 20px 30px;
  }

  .left-nav > li {
    margin: 0 10px 0 0;
  }

  .nav-featured-area {
    width: 100%;
    display: table;
    float: none;
    background: #f3f3f3;
    display: none;
  }

  a.nav-featured-area-link {
    display: table-cell;
    width: 50%;
  }

  .nav-featured-area .featured-item {
    padding: 80px 40px 30px 40px;
  }

  .nav-featured-area .featured-item-image img {
    width: 100px;
  }

  .nav-featured-area .featured-item-1 {
    border: 0;
    border-right: 4px solid #fff;
  }

  .nav-featured-area .featured-item-heading {
    margin-top: 0;
    margin-bottom: 8px;
  }

  .nav-featured-area .featured-item-description {
    display: inherit;
  }
}

@media screen and (max-width: 768px) {
  .shop-dropdown {
    display: none !important;
  }

  .mission-dropdown {
    display: none !important;
  }
}

.alert-bar {
  display: none;
}

.alert-bar .alert-bar__inner {
  width: 1280px;
  margin: 0 auto;
  max-width: 100%;
}

.alert-bar span.alert-bar-close {
  cursor: pointer;
  -webkit-transform: scale(2,1);
  -moz-transform: scale(1.25,1);
  -ms-transform: scale(1.25,1);
  -o-transform: scale(1.25,1);
  transform: scale(1.25,1);
  float: right;
  margin: 0px 0px 0;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-family: reader-regular, arial, helvetica, sans-serif;
  font-size: 14px;
  line-height: 21px;
  position: relative;
  top: 9px;
  right: 55px;
}

.super-nav {
  position: relative;
  display: block;
  top: 0;
  right: 0;
  width: 100%;
  background: #2e2e2f;
  border-bottom: 1px solid #404141;
}

.super-nav .grid--full {
  width: 1280px;
  margin: 0 auto;
  max-width: 100%;
}

.super-nav .super-nav-left .left-msg {
  color: #fff;
  font-size: 12px;
  line-height: 32px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  margin: 0 0 0 55px;
  text-transform: uppercase;
}

.left-msg-icon {
  width: 21px;
  top: 3px !important;
  margin: 0 4px 0 -1px !important;
  position: relative;
  padding-left: 4px;
}

.super-nav .super-nav-left .left-msg-referral {
  color: #fff;
  font-size: 12px;
  line-height: 32px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  margin: 0 0 0 0;
  text-transform: uppercase;
}

.super-nav .super-nav-left .left-msg-referral a {
  color: #fff;
  background-color: #20A09D;
  padding: 10px 15px 10px 15px;
  -o-transition: color .1s ease-out, background .65s ease-in;
  -ms-transition: color .1s ease-out, background .65s ease-in;
  -moz-transition: color .1s ease-out, background .65s ease-in;
  -webkit-transition: color .1s ease-out, background .65s ease-in;
  transition: color .1s ease-out, background .65s ease-in;
  font-size: 12px;
  line-height: 32px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  margin: 0 0 0 0;
  text-transform: uppercase;
}

.super-nav .super-nav-left .left-msg-referral a:hover {
  color: #fff;
  font-size: 12px;
  line-height: 32px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  margin: 0 0 0 0;
  text-transform: uppercase;
  background-color: #2e2e2f;
  padding: 10px 15px 10px 15px;
}

.super-nav .super-nav-right {
  text-align: right;
  padding-right: 25px;
}

.super-nav .super-nav-search {
  cursor: pointer;
}

.super-nav .super-nav-right .super-nav-account, .super-nav .super-nav-right .super-nav-search, .super-nav .super-nav-right span a {
  color: #fff;
  font-size: 10px;
  line-height: 30px;
  text-transform: uppercase;
}

.super-nav .super-nav-right .super-nav-account, .super-nav .super-nav-right .super-nav-search {
  margin: 0 30px 0 0;
}

.super-nav .super-nav-right span img {
  margin: 0 4px 0 0;
  position: relative;
  top: 2px;
}

.super-nav #active-search {
  display: none;
}

.super-nav .active-search-holder {
  padding: 0px 30px 0px 0px;
}

.super-nav .active-search-input {
  width: 200px;
  background: #000000;
  padding-left: 26px;
  background-image: url('super-nav-search.png');
  background-repeat: no-repeat;
  background-position: 10px center;
  height: 28px;
  color: #fff;
  font-size: 12px;
  line-height: 18px;
  border: 0;
  border-radius: 5px 0 0 5px;
}

.visuallyhidden {
 display:none; 
}

.super-nav #active-search.show-search {
  display: inline-block;
}

.super-nav .hide-search {
  display: none;
}

@media screen and (max-width: 768px) {
  .super-nav {
    display: none;
  }

  .alert-bar span.alert-bar-close {
    right: 20px;
  }
}

body.show--alert_bar #header {
  transform: translate3d(0, 0px, 0);
  -webkit-transform: translate3d(0, 0px, 0);
  position: relative;
}

body.show--alert_bar #alert-bar {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  position: relative;
}

#header {
  background: rgba(37, 39, 41, 1);
}

.header-inner {
  position: relative;
  width: 1170px;
  margin: 0 auto;
  max-width: 100%;
}

#header .header-left {
  padding: 17px 30px 20px 0px;
}

#header .header-right {
  padding-right: 23px;
}

@media screen and (min-width: 769px) {
  .menu-main li a {
    margin: 0 30px 0 0;
  }

  .menu-cart li a {
    padding: 14px 32px;
  }
}

@media screen and (max-width: 768px) {
  #header .grid--full {
    display: flex;
  }

  #header .grid__item {
    display: inline-block;
    float: none;
  }
}

#preorder-biolite-2016-products .product-specs__body .border-bottom {
  border-bottom: none;
}

@media screen and (min-width:737px) and (orientation:landscape) {
  .template-product .product-featurette .product-featurette__content .spr-summary-actions-newreview, .template-product .product-featurette .product-featurette__content .spr-summary-actions-allreviews {
    left: auto;
    top: 65px;
  }
}

@media screen and (min-width:668px) and (max-width:737px) and (orientation:landscape) {
  .template-product .product-featurette .product-featurette__content .spr-summary-actions-newreview, .template-product .product-featurette .product-featurette__content .spr-summary-actions-allreviews {
    left: 50px;
  }
}

.upsell {
  margin: 10px 0 5px;
}

.upsell_text_top {
  text-align: center;
  color: #319d9b;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
}

.upsell_border {
  margin: 6px 0 0;
  border: 1px dashed #008fa1;
  background: #fff;
  padding: 4px 0;
}

.upsell_product_image {
  float: left;
  padding: 10px 20px;
  width: 27%;
}

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

.upsell_box_middle {
  float: left;
  width: 48%;
  padding: 20px 0;
}

.upsell_product_title {
  color: #2e2e2f;
  line-height: 1;
}

.upsell_product_title a {
  color: #2e2e2f;
  font-weight: 600;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1;
}

.upsell_product_price {
  margin-top: -2px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #bdbdbd;
  font-weight: 600;
}

.upsell_add_button {
  float: left;
  width: 25%;
  padding: 20px 0;
}

.upsell_add_button input[type=submit].cart-item--add {
  padding: 0;
  font-family: 'icomoon';
  font-size: 26px;
  line-height: 0.75;
  background-color: #008fa1;
  border: 1px solid #008fa1;
  color: #fff;
  max-height: 36px;
  width: 44px;
  vertical-align: middle;
  margin-right: 0px;
}

.upsell-nothanks {
  margin: 0 0 20px 0;
}

.upsell-nothanks a {
  float: right;
  margin: 10px 10px 0 0;
  font-size: 11px;
  text-transform: uppercase;
  text-decoration: none;
  color: #319d9b;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

@media screen and (max-width: 768px) {
  .upsell_box_middle {
    padding: 10px 0;
  }

  .upsell_product_image {
    padding: 2px 10px;
  }

  .upsell_add_button {
    padding: 10px 0;
  }

  .upsell_product_title a {
    font-size: 14px;
  }

  .upsell_border {
    padding: 6px 0;
  }
}

.contact-sidebar-group {
  padding: 0 20px 40px;
}

.contact-sidebar-header a {
  font-size: 14px;
}

.contact-faq li {
  margin: 4px 0;
}

.contact-faq .fa {
  color: #e8e8e8;
  margin-right: 5px;
}

.contact-faq li:hover .fa {
  color: #008fa1;
}

.contact-sidebar-product-title {
  font-size: 15px;
  line-height: 21px;
}

.contact-manual-link {
  font-size: 12px;
  line-height: 18px;
}

.contact-sidebar-product {
  margin: 0 0 10px 0;
}

.contact-hero {
  padding-top: 75px !important;
}

.contact-manuals {
  padding: 20px 0 50px;
}

.contact-manual-text {
  padding: 27px 0 0 5px;
  font-family: reader-regular;
}

@media screen and (max-width: 768px) {
  .contact-sidebar-group {
    padding: 0 0px 40px;
  }
}

#ProductPriceStrike.h5, #ProductPriceStrike.product-grid-item__priceStrike.h5 {
  font-size: 16px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 200;
  vertical-align: middle;
  color: #a6a6a6;
  padding-left: 7px;
  text-decoration: line-through;
}

.shop-hero-wrapper {
  margin-top: 7%;
  margin-left: 5%;
}

.shop-hero-title {
  font-size: 30px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  display: block;
  text-align: left;
  line-height: 38px;
  margin: 0;
}

.shop-hero-subtitle {
  font-size: 16px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  display: block;
  text-align: left;
  line-height: 18px;
  padding: 15px 420px 0 0;
}

@media screen and (max-width: 1008px) {
  .shop-hero-subtitle {
    padding: 8px 380px 0 0;
  }
}

@media screen and (max-width: 600px) {
  .shop-hero-subtitle {
    padding: 8px 280px 0 0;
  }
}

.shop-hero-image {
  background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/ShopHero_tent_r3.jpg?15989723898103475819");
  background-repeat: no-repeat;
  height: 238px;
}

#biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .you-save, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers .you-save, #biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .you-save, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits .you-save {
  border: 0px solid #008fa1;
  display: inline-block;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 11px;
  position: relative;
  padding: 0px;
  margin: 0px;
}

#biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .you-save .right-side, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers .you-save .right-side, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits .you-save .right-side {
  padding: 3px 6px 3px 6px;
  background-color: #f3f3f3;
  color: #008fa1;
  height: 100%;
  display: inline-block;
  font-weight: bold;
  font-size: 13px;
}

#collections .compare-at, #biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .compare-at, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers .compare-at {
  display: inline;
}

#collections .compare-at .product-price-compare-strike, #upgrade-your-tailgate-with-biolite-firepit .compare-at .product-price-compare-strike, #meet-biolite-headlamp-330-holy-fit-this-is-good .compare-at .product-price-compare-strike, #biolite-meet-the-biolite-firepit .compare-at .product-price-compare-strike, #biolite-introducing-sunlight-solar-powered-lantern .compare-at .product-price-compare-strike, #new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .compare-at .product-price-compare-strike, #biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .compare-at .product-price-compare-strike, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers .compare-at .product-price-compare-strike, #biolite-holiday-gift-guide .compare-at .product-price-compare-strike, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits .compare-at .product-price-compare-strike {
  font-size: 10px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 200;
  vertical-align: middle;
  line-height: 21px;
  color: #a6a6a6;
  position: relative;
  top: 0px;
  padding-left: 7px;
  text-decoration: line-through;
}

#collections .product-price-compare-strike .mini-currency, #new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .product-price-compare-strike .mini-currency, #biolite-introducing-sunlight-solar-powered-lantern .product-price-compare-strike .mini-currency, #upgrade-your-tailgate-with-biolite-firepit .product-price-compare-strike .mini-currency, #biolite-meet-the-biolite-firepit .product-price-compare-strike .mini-currency, #meet-biolite-headlamp-330-holy-fit-this-is-good .product-price-compare-strike .mini-currency, #biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .product-price-compare-strike .mini-currency, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers .product-price-compare-strike .mini-currency, #biolite-holiday-gift-guide .product-price-compare-strike .mini-currency, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits .product-price-compare-strike .mini-currency {
  font-size: 0.6em;
  font-weight: 500;
  margin-left: -1px;
}

.collections-hero-mobile {
  display: none;
}

.product-grid-item__footer {
  height: 120px;
}

.product-grid-item__title {
  font-size: 16px;
}

.product-grid-item .price-and-cart-add {
  margin-top: 0;
}

#collections .product-grid-item .you-save, #new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .product-grid-item .you-save, #biolite-introducing-sunlight-solar-powered-lantern .product-grid-item .you-save, #meet-biolite-headlamp-330-holy-fit-this-is-good .product-grid-item .you-save, #biolite-meet-the-biolite-firepit .product-grid-item .you-save, #upgrade-your-tailgate-with-biolite-firepit .product-grid-item .you-save, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers .product-grid-item .you-save, #biolite-holiday-gift-guide .product-grid-item .you-save, #biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .product-grid-item .you-save, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits .product-grid-item .you-save {
  top: 0px;
}

#collections .product-grid-item__thumb, #new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .product-grid-item__thumb, #biolite-holiday-gift-guide .product-grid-item__thumb, #biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .product-grid-item__thumb, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers .product-grid-item__thumb, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits .product-grid-item__thumb {
  background-size: 80%;
}

#biolite-introducing-sunlight-solar-powered-lantern .product-grid-item__thumb {
  background-size: 75%;
}

#meet-biolite-headlamp-330-holy-fit-this-is-good .product-grid-item__thumb {
  background-size: 75%;
}

#biolite-meet-the-biolite-firepit .product-grid-item__thumb {
  background-size: 75%;
}

#upgrade-your-tailgate-with-biolite-firepit .product-grid-item__thumb {
  background-size: 75%;
}

#new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .product-grid-item__thumb {
  background-size: 75%;
}

#collections #ProductPrice.h5, #collections #ProductPrice.product-grid-item__price.h5, #biolite-introducing-sunlight-solar-powered-lantern #ProductPrice.h5, ##upgrade-your-tailgate-with-biolite-firepit #ProductPrice.h5, #meet-biolite-headlamp-330-holy-fit-this-is-good #ProductPrice.h5, #biolite-meet-the-biolite-firepit #ProductPrice.h5, #biolite-introducing-sunlight-solar-powered-lantern #ProductPrice.product-grid-item__price.h5, #biolite-meet-the-biolite-firepit #ProductPrice.product-grid-item__price.h5, #meet-biolite-headlamp-330-holy-fit-this-is-good #ProductPrice.product-grid-item__price.h5, #ProductPrice.product-grid-item__price.h5, #upgrade-your-tailgate-with-biolite-firepit #ProductPrice.product-grid-item__price.h5, #ProductPrice.product-grid-item__price.h5, #biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights #ProductPrice.h5, #biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights #ProductPrice.product-grid-item__price.h5, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers #ProductPrice.product-grid-item__price.h5, #biolite-holiday-gift-guide #ProductPrice.product-grid-item__price.h5, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits #ProductPrice.product-grid-item__price.h5 {
  font-size: 14px;
  font-weight: 600;
  color: #828282;
}

#collections, #biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights, #biolite-holiday-gift-guide, #new-biolite-solarhome-620-solar-powered-light-charging-amp-radio, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits {
  background-color: #f3f3f3 !important;
}

#collections .hero.hero--tight, #new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .hero.hero--tight, #upgrade-your-tailgate-with-biolite-firepit .hero.hero--tight, #meet-biolite-headlamp-330-holy-fit-this-is-good.hero.hero--tight, #biolite-meet-the-biolite-firepit .hero.hero--tight, #biolite-introducing-sunlight-solar-powered-lantern .hero.hero--tight, #biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .hero.hero--tight, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers .hero.hero--tight, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits .hero.hero--tight, #biolite-holiday-gift-guide .hero.hero--tight {
  height: 238px;
}

#collections .collections-grid, #new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .collections-grid, #biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .collections-grid, #upgrade-your-tailgate-with-biolite-firepit .collections-grid, #meet-biolite-headlamp-330-holy-fit-this-is-good .collections-grid, #biolite-meet-the-biolite-firepit .collections-grid, #biolite-introducing-sunlight-solar-powered-lantern .collections-grid, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers .collections-grid, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits .collections-grid, #biolite-holiday-gift-guide .collections-grid, {
  margin: 20px;
}

#collections .product-grid {
  padding: 20px 0 0;
  position: relative;
  z-index: 1;
}

#biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .product-grid, #new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .product-grid, #upgrade-your-tailgate-with-biolite-firepit .product-grid, #meet-biolite-headlamp-330-holy-fit-this-is-good .product-grid, #biolite-meet-the-biolite-firepit .product-grid, #biolite-introducing-sunlight-solar-powered-lantern .product-grid, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers .product-grid, #biolite-holiday-gift-guide .product-grid, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits .product-grid {
  padding: 0;
  position: relative;
  z-index: 1;
}

#collections .product-grid-item-padder, #biolite-holiday-gift-guide .product-grid-item-padder, #upgrade-your-tailgate-with-biolite-firepit .product-grid-item-padder, #meet-biolite-headlamp-330-holy-fit-this-is-good .product-grid-item-padder, #biolite-meet-the-biolite-firepit .product-grid-item-padder, #new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .product-grid-item-padder, #new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .product-grid-item-padder, #biolite-introducing-sunlight-solar-powered-lantern .product-grid-item-padder, #biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .product-grid-item-padder, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers .product-grid-item-padder, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits .product-grid-item-padder {
  margin: 10px;
  padding: 0 0 0px 0;
}

#collections .product-grid-item-padder, #new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .product-grid-item-padder, #upgrade-your-tailgate-with-biolite-firepit .product-grid-item-padder, #meet-biolite-headlamp-330-holy-fit-this-is-good .product-grid-item-padder, #biolite-meet-the-biolite-firepit .product-grid-item-padder, #biolite-introducing-sunlight-solar-powered-lantern .product-grid-item-padder, #biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .product-grid-item-padder, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers .product-grid-item-padder, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits .product-grid-item-padder, #biolite-holiday-gift-guide .product-grid-item-padder {
  border: 1px solid #fff;
  -o-transition: border .1s ease-out, border .35s ease-in;
  -ms-transition: border .1s ease-out, border .35s ease-in;
  -moz-transition: border .1s ease-out, border .35s ease-in;
  -webkit-transition: border .1s ease-out, border .35s ease-in;
  transition: border .1s ease-out, border .35s ease-in;
}

#collections .product-grid-item-padder:hover, #new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .product-grid-item-padder:hover, #upgrade-your-tailgate-with-biolite-firepit .product-grid-item-padder:hover, #meet-biolite-headlamp-330-holy-fit-this-is-good .product-grid-item-padder:hover, #biolite-meet-the-biolite-firepit .product-grid-item-padder:hover, #biolite-holiday-gift-guide .product-grid-item-padder:hover, #biolite-introducing-sunlight-solar-powered-lantern .product-grid-item-padder:hover, #biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .product-grid-item-padder:hover, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers .product-grid-item-padder:hover, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits .product-grid-item-padder:hover {
  border: 1px solid #d0d0d0;
}

.collections-sidebar-padder {
  margin: 0 37px 0 0;
  position: relative;
  z-index: 3;
}

.ribbon {
  width: 135px;
  height: 151px;
  overflow: hidden;
  position: absolute;
  z-index: 100;
}

.ribbon span {
  position: absolute;
  display: block;
  width: 259px;
  padding: 8px 0;
  background-color: #fff;
  color: #008fa1;
  font: 700 12px/1 reader-regular, sans-serif;
  text-transform: uppercase;
  text-align: center;
}

.ribbon-top-left {
  top: 10px;
  left: 11px;
}

.ribbon-top-left span {
  right: -38px;
  top: 26px;
  transform: rotate(-45deg);
}

.collections-sidebar-info, .collections-sidebar-selection {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #fff;
}

.collections-sidebar-info {
  padding: 45px 0 10px;
}

.collections-sidebar-selection {
  padding: 20px 0;
}

.collections-sidebar-info .info-block {
  font-size: 13px;
  color: #4b4b4b;
  font-weight: 300;
  line-height: 14px;
  margin: 0 0 24px 0;
}

.collections-sidebar-info .icon {
  float: left;
  margin: 0 10px 10px 0;
  width: 20px;
  text-align: center;
  position: relative;
  top: 0px;
  font-size: 16px !important;
}

.collections-sidebar-info .info-block a {
  color: #008fa1;
}

.collections-sidebar-info .info-block, .filter-by {
  padding: 0 30px;
}

.info-block.warranty, .info-block.returns, .info-block.questions {
  line-height: 19px;
}

.filter-by {
  color: #8b8b8b;
  font-weight: bold;
  margin: 0px 0 20px 0;
  text-transform: uppercase;
  font-size: 12px;
  border-top: 6px solid #f3f3f3;
  padding-top: 25px;
}

.sort-by {
  color: #8b8b8b;
  font-weight: bold;
  margin: 0px 0 20px 0;
  text-transform: uppercase;
  font-size: 12px;
  padding-top: 25px;
}

.filter-by-mobile {
  display: none;
}

.filter-by .icon {
  float: left;
  width: 20px;
  margin: 0 10px 10px 0;
  text-align: center;
}

.filter-by-arrow-up, .filter-by-arrow-down {
  display: none;
  float: right;
  font-size: 20px;
  line-height: 20px;
}

.selection-header {
  font-weight: bold;
  border-top: 1px solid #f3f3f3;
  border-bottom: 1px solid #f3f3f3;
  width: 100%;
  padding: 3px 30px 1px;
  font-size: 12px;
  line-height: 18px;
  color: #008fa1;
  text-transform: uppercase;
  margin: 20px 0 10px 0;
}

.collections-sidebar-selection li {
  margin: 0 0 2px 0;
}

.collections-sidebar-selection li a {
  color: #4b4b4b;
  font-size: 13px;
  display: inline-block;
  width: 100%;
  padding: 3px 30px;
}

.collections-sidebar-selection li:hover {
  background: #ececec;
}

.collections-sidebar-selection li a:focus {
  text-decoration: none;
}

.collections-sidebar-selection li a .collection-selector {
  display: inline-block;
  position: relative;
  width: 11px;
  height: 11px;
  border: 1px solid #b7b7b7;
  float: right;
  top: 5px;
  left: 11px;
}

.collections-sidebar-selection li.active a .collection-selector {
  display: inline-block;
  background: #008fa1;
}

.no-products-available {
  display: none;
  text-align: center;
  margin: 50px 0;
  font-size: 18px;
}

@media only screen and (max-width: 1024px) {
  .product-grid-item__inner {
    height: 230px;
  }

  .product-grid-item .you-save, .product-grid-item .fake-you-save {
    margin-top: 0px;
    display: inline-block;
  }
}

@media only screen and (max-width: 1024px) {
  #collections .collections-grid, #new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .collections-grid, #upgrade-your-tailgate-with-biolite-firepit .collections-grid, #meet-biolite-headlamp-330-holy-fit-this-is-good .collections-grid, #biolite-meet-the-biolite-firepit .collections-grid, #biolite-introducing-sunlight-solar-powered-lantern .collections-grid, #biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .collections-grid,, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers .collections-grid, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits .collections-grid {
    margin: 0;
  }

  .collections-sidebar-padder {
    margin: 0;
    height: 120px;
  }

  .collections-hero {
    display: none;
  }

  .collections-hero-mobile {
    display: block;
  }

  .filter-by {
    display: none;
    border-top: none;
    padding-top: 0px;
  }

  .filter-by-mobile {
    display: block;
  }

  .collections-sidebar-info .info-block {
    font-size: 12px;
  }

  .collections-sidebar-info {
    background: transparent;
    text-align: center;
    padding: 15px 0 2px;
    margin: 0 0 20px 0;
  }

  .collections-sidebar-info .icon {
    display: none;
  }

  .collections-sidebar-info .info-block {
    display: inline-block;
    margin: 0;
    padding: 0 6px;
    border-right: 1px solid #8a8a8a;
  }

  .collections-sidebar-info .info-block:last-child {
    border-right: 0;
  }

  .info-block.shipping {
    width: auto;
    padding-left: 0;
  }

  .collections-sidebar-selection {
    width: 260px;
    margin: 20px auto;
    padding: 20px 0 1px;
  }

  .filter-by-arrow-down {
    display: block;
  }

  .selection-header, .product-categories {
    display: none;
  }

  #collections .product-grid-item__thumb {
    background-size: contain;
  }
}

@media only screen and (max-width: 480px) {
  .collections-sidebar-padder {
    margin: 0;
    height: auto;
  }

  .free-shipping-callout {
    margin: 20px 0 0 0;
    text-align: center;
  }

  .impact-container {
    display: none;
  }

  .free-shipping-title {
    font-size: 11px;
  }

  .ribbon {
    width: 127px;
    height: 126px;
    overflow: hidden;
    position: absolute;
  }

  .notice-icon {
    font-size: 20px !important;
    position: relative;
    margin-top: 15px;
    display: block;
    top: 0px;
    color: #cc4e20;
  }

  .shipping-notice {
    width: 95%;
    margin-bottom: 15px;
  }

  .ribbon span {
    position: absolute;
    display: block;
    width: 255px;
    padding: 8px 0;
    background-color: #282828;
    color: #fff;
    font: 700 9px/1 reader-regular, sans-serif;
    text-transform: uppercase;
    text-align: center;
  }

  .ribbon-top-left {
    top: 5px;
    left: 6px;
  }

  .ribbon-top-left span {
    right: -38px;
    top: 26px;
    transform: rotate(-45deg);
  }

  .left-msg-icon {
    display: none;
  }

  .collections-sidebar-info .info-block {
    font-size: 11px;
    padding: 0px 5px;
    line-height: 13px;
  }

  .info-block.shipping {
    width: auto;
    padding-left: 0;
    display: block;
    border-right: 0;
  }

 .product-grid-item__title {
    font-size: 12px;
    line-height: 14px;
    padding: 0 10px 0 10px;
}

  #collections #ProductPrice.h5, #new-biolite-solarhome-620-solar-powered-light-charging-amp-radio #ProductPrice.h5 #upgrade-your-tailgate-with-biolite-firepit #ProductPrice.h5, #meet-biolite-headlamp-330-holy-fit-this-is-good #ProductPrice.h5, #biolite-meet-the-biolite-firepit #ProductPrice.h5, #biolite-introducing-sunlight-solar-powered-lantern #ProductPrice.h5, #collections #ProductPrice.product-grid-item__price.h5, #new-biolite-solarhome-620-solar-powered-light-charging-amp-radio #ProductPrice.product-grid-item__price.h5, #biolite-introducing-sunlight-solar-powered-lantern #ProductPrice.product-grid-item__price.h5, #biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights #ProductPrice.h5, #biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights #ProductPrice.product-grid-item__price.h5, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers #ProductPrice.h5, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers #ProductPrice.product-grid-item__price.h5, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits #ProductPrice.h5, #biolite-holiday-gift-guide #ProductPrice.h5, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits #ProductPrice.product-grid-item__price.h5, #biolite-holiday-gift-guide #ProductPrice.product-grid-item__price.h5 {
    font-size: 12px;
  }

  #ProductPriceStrike.h5, #ProductPriceStrike.product-grid-item__priceStrike.h5 {
    font-size: 12px;
  }

  .product-grid-item {
    margin-bottom: 0px;
  }

  #collections .compare-at .product-price-compare-strike, #new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .compare-at .product-price-compare-strike, #upgrade-your-tailgate-with-biolite-firepit .compare-at .product-price-compare-strike, #meet-biolite-headlamp-330-holy-fit-this-is-good .compare-at .product-price-compare-strike, #biolite-meet-the-biolite-firepit .compare-at .product-price-compare-strike, #biolite-introducing-sunlight-solar-powered-lantern .compare-at .product-price-compare-strike, #biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .compare-at .product-price-compare-strike, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers .compare-at .product-price-compare-strike, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits .compare-at .product-price-compare-strike, #biolite-holiday-gift-guide .compare-at .product-price-compare-strike, {
    font-size: 12px;
    padding-left: 4px;
  }

  #collections .product-price-compare-strike .mini-currency, #new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .product-price-compare-strike .mini-currency, #upgrade-your-tailgate-with-biolite-firepit .product-price-compare-strike .mini-currency, #meet-biolite-headlamp-330-holy-fit-this-is-good .product-price-compare-strike .mini-currency, #biolite-meet-the-biolite-firepit .product-price-compare-strike .mini-currency, #biolite-introducing-sunlight-solar-powered-lantern .product-price-compare-strike .mini-currency, #biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .product-price-compare-strike .mini-currency, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers .product-price-compare-strike .mini-currency, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits .product-price-compare-strike .mini-currency, #biolite-holiday-gift-guide .product-price-compare-strike .mini-currency {
    font-size: 0.4em;
    font-weight: 500;
    margin-left: -1px;
  }

  #collections .product-grid-item-padder, #new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .product-grid-item-padder, #upgrade-your-tailgate-with-biolite-firepit .product-grid-item-padder, #meet-biolite-headlamp-330-holy-fit-this-is-good .product-grid-item-padder, #biolite-meet-the-biolite-firepit .product-grid-item-padder, #biolite-introducing-sunlight-solar-powered-lantern .product-grid-item-padder, #biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .product-grid-item-padder, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers .product-grid-item-padder, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits .product-grid-item-padder, #biolite-holiday-gift-guide .product-grid-item-padder {
    margin: 5px;
  }

  .product-grid-item .you-save, .product-grid-item .fake-you-save {
    margin-top: 0px;
  }

  .product-grid-item__footer {
    height: 100px;
  }

  #collections .product-grid-item-padder:hover, #new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .product-grid-item-padder:hover, #upgrade-your-tailgate-with-biolite-firepit .product-grid-item-padder:hover #meet-biolite-headlamp-330-holy-fit-this-is-good .product-grid-item-padder:hover, #biolite-meet-the-biolite-firepit .product-grid-item-padder:hover, #biolite-introducing-sunlight-solar-powered-lantern .product-grid-item-padder:hover, #biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .product-grid-item-padder:hover, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers .product-grid-item-padder:hover, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits .product-grid-item-padder:hover, #biolite-holiday-gift-guide .product-grid-item-padder:hover {
    border: 1px solid #fff;
  }

  .color-control .color-circle {
    margin-right: 6px;
  }

  .you-save {
    font-size: 9px;
  }

  .you-save .right-side {
    padding: 4px 10px 4px 10px;
  }

  #collections .product-grid, #new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .product-grid, #upgrade-your-tailgate-with-biolite-firepit .product-grid, #biolite-holiday-gift-guide .product-grid, #meet-biolite-headlamp-330-holy-fit-this-is-good .product-grid, #biolite-meet-the-biolite-firepit .product-grid, #biolite-introducing-sunlight-solar-powered-lantern .product-grid, #biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .product-grid, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits .product-grid, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers .product-grid {
    padding: 20px 5px 0;
  }

  .shop-hero-title {
    font-size: 24px;
    padding-right: 130px;
    line-height: 23px !important;
  }

  .shop-hero-subtitle {
    font-size: 13px;
    font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    display: block;
    text-align: left;
    line-height: 18px;
    padding: 15px 130px 0 0;
  }

  .shop-hero-wrapper {
    margin-top: 14%;
  }

  .product-grid-item__inner {
    height: 183px;
  }
}

@media only screen and (max-width: 1024px) {
  .collections-sidebar-selection {
    width: 100%;
    margin: 0 auto;
  }
}

.core-header {
  font-weight: 600;
  font-family: reader-regular, sans-serif;
  display: block;
  padding: 20px 0 0 0;
  text-transform: uppercase;
}

.core-header-list {
  font-weight: 300;
  list-style-type: disc;
  padding: 0 0 8px 35px;
}

.core-header-list ol {
  font-weight: 300;
  padding: 0 0 8px 35px;
}

.core-header-list a {
  color: #008fa1 !important;
  text-decoration: underline;
}

.quick-specs {
  height: 400px;
  padding: 25px 0 25px 0;
  background-color: #f3f3f3;
}

.quick-specs-icons {
  font-size: 46px !important;
  color: #fff;
  margin: 51px auto 0 auto;
  text-align: center;
}

.quick-specs-header {
  font-size: 146%;
  line-height: 90%;
  font-weight: 600;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #fff;
  display: block;
  padding: 30px 0 0 0;
}

.quick-specs-subhead {
  font-size: 112%;
  line-height: 100%;
  font-weight: 300;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #fff;
  display: block;
  padding: 10px 0 0 0;
}

sup {
  vertical-align: top;
  position: relative;
  top: 0.75em;
}

.wow {
  visibility: hidden;
}

.hero-carousel-nav, .flex-control-thumbs {
}

.hero.hero--carousel .hero__viewport {
  height: 655px;
}

.single-product-features .single-product-features__left {
  padding-top: 0px;
  height: 655px;
}

.single-product-features .single-product-features__right {
  padding-top: 0px;
  height: 655px;
}

.single-product-features {
  min-height: 655px;
}

.hero.hero--carousel {
  height: 680px;
}

#locations-box .fa-angle-down {
  margin-top: 13px;
  font-size: 24px;
}

select#locations, #locations_choice {
  width: 200px;
  background-color: transparent;
  border: none;
  font-size: 16px;
  color: #fff;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  margin: 0;
  background-image: none;
  padding: 0 0 0 6px;
}

.location-switcher {
  float: right;
}

@media only screen and (max-width: 481px) {
  .single-product-features .single-product-features__left {
    height: auto;
  }

  .single-product-features .single-product-features__right {
    height: auto;
  }

  .story-grid__header h3 {
    font-size: 20px !important;
    margin-top: 15px !important;
    padding: none !important;
  }

  .hero.hero--carousel {
    height: 680px;
  }

  .search-results .one-third {
    width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .search-results .two-thirds {
    width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

@media only screen and (min-width: 481px) and (max-width: 768px) {
  .single-product-features .single-product-features__left {
    height: auto;
  }

  .single-product-features .single-product-features__right {
    height: auto;
  }

  .story-grid__header h3 {
    font-size: 26px !important;
    margin-top: 15px !important;
    padding: none !important;
  }

  .hero.hero--carousel {
    height: 680px;
  }
}

.alert-bar {
  position: relative;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  line-height: 40px;
  background-color: rgba(0, 178, 176, 1);
  text-align: center;
  font-size: 14px;
  color: #1b1b1b;
  border-bottom: 1px solid rgba(242, 108, 44, 0.05);
}

.alert-bar span {
  color: #1b1b1b;
}

.alert-bar em {
  color: #696969;
}

.alert-bar a {
  color: #1b1b1b;
  text-decoration: none;
}

.alert-bar a:hover a:focus {
  text-decoration: none;
}

@media only screen and (max-width: 480px) {
  .alert-bar span {
    font-size: 11px !important;
  }
}

Alert Bar Original body.show--alert_bar #header {
  transform: translate3d(0, 40px, 0);
  -webkit-transform: translate3d(0, 40px, 0);
}

#giveclosebtn {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif; !important;
  font-weight: normal !important;
  color: #2e2e2f !important;
  text-decoration: none !important;
}

#giveacceptbtn {
  border: none !important;
  border-radius: 3px 3px 3px 3px !important;
  box-shadow: none !important;
  color: #FFFFFF !important;
  cursor: pointer;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-style: normal !important;
  font-weight: 300 !important;
  text-shadow: none !important;
  text-transform: none !important;
  background-color: #008fa1 !important;
  background: #008fa1 !important;
  display: none !important;
}

.blog-main {
  margin: 0 auto;
}

.blog-full {
  max-width: 980px !important;
  margin: 0 auto;
}

.blog-max {
  max-width: 1170px !important;
  margin: 0 auto;
}

.hero.hero--empty {
  padding-bottom: 10px;
}

.blog-main .wrapper {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.blog-main .wrapper .two-thirds {
  margin: 0 auto;
}

.blog-main p {
  font-size: 18px;
  line-height: 1.7;
  font-weight: 300;
}

.blog-main ol li {
  font-size: 18px;
  line-height: 1.7;
  font-weight: 300;
}

.blog-main ul li {
  font-size: 18px;
  line-height: 1.7;
  font-weight: 300;
}

.blog-main li {
  margin-bottom: 20px;
}

.blog-main strong {
  font-weight: 600;
}

.blog-main em {
  font-weight: 300;
}

.blog-main a {
  color: #20A09D;
  text-decoration: none;
}

.blog-main h5 {
  text-align: center;
  font-weight: 500;
  font-size: 24px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding-top: 30px;
}

.blog-main a:hover, a:focus {
  color: #008fa1;
  text-decoration: underline;
}

.blog-legacy p {
  font-size: 16px;
  line-height: 1.8;
}

.blog-legacy a {
  color: #20A09D;
  text-decoration: none;
}

.blog-legacy h5 {
  text-align: center;
}

.blog-main a:hover, a:focus {
  color: #008fa1;
  text-decoration: underline;
}

.blog-divider {
  width: 85px;
  height: 1px;
  background-color: #a8a8a8;
  margin-top: 20px;
  margin-right: auto;
  margin-bottom: 20px;
  margin-left: auto;
}

.main-divider {
  width: 315px;
  height: 1px;
  background-color: #a8a8a8;
  margin-top: 20px;
  margin-right: auto;
  margin-bottom: 20px;
  margin-left: auto;
  display: inline;
}

.blog-main .wrapper .two-thirds {
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  width: 652px;
}

@media only screen and (max-width: 480px) {
  .blog-main .wrapper .two-thirds {
    width: 91%;
  }

  .blog-main .grid__item .large--one-half {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .shipping-notice-message {
    padding: 0 20px 0 20px !important;
    clear: both;
  }

  .blog-main p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
  }

  .blog-main ol li {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
  }

  .blog-main ul li {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
  }

  .blog-main ul {
    padding-left: 0 !important;
  }

  .blog-main ol {
    padding-left: 0 !important;
  }

  .blog-main li {
    margin-bottom: 20px;
  }

  .hero.hero--empty {
    padding-top: 50px !important;
  }

  .hero.hero--empty h1 {
    padding-right: 30px;
    padding-left: 30px;
  }

  .camp-cookbook {
    padding-left: 20px !important;
  }

  .blog-main a {
    color: #20A09D;
    text-decoration: none;
  }

  .blog-main h5 {
    text-align: center;
    font-weight: 500;
    font-size: 24px;
    font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding-top: 30px;
  }

  .confetti-alert-bar-2 {
    display: none !important;
    height: 11px !important;
  }

  .confetti-alert-bar-1 {
    height: 17px !important;
  }
}

.nav-horizontal__title {
  font-size: 14px;
  line-height: 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.nav-horizontal--products .nav-horizontal__menu-wide {
  width: 75%;
  padding: 13px 0;
  text-align: center;
  max-height: 46px;
}

.category-nav-title-lighting {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  color: #444444;
  font-size: 16px;
  border-bottom: 7px solid #8F90B3;
  padding-bottom: 15px;
  line-height: 18px;
  transition: color 100ms ease-in;
  -webkit-transition: color 100ms ease-in;
  -moz-transition: color 100ms ease-in;
}

.category-nav-title-lighting:hover {
  color: #8F90B3;
}

.category-nav-title-power {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  color: #444444;
  font-size: 16px;
  border-bottom: 7px solid #EEAE13;
  padding-bottom: 15px;
  line-height: 18px;
  transition: color 100ms ease-in;
  -webkit-transition: color 100ms ease-in;
  -moz-transition: color 100ms ease-in;
}

.category-nav-title-power:hover {
  color: #E5A517;
}

.category-nav-title-stoves {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  color: #444444;
  font-size: 16px;
  border-bottom: 7px solid #cd3d32;
  padding-bottom: 15px;
  line-height: 18px;
  transition: color 100ms ease-in;
  -webkit-transition: color 100ms ease-in;
  -moz-transition: color 100ms ease-in;
}

.category-nav-title-stoves:hover {
  color: #c4392e;
}

@media only screen and (max-width: 480px) {
  .nav-horizontal__title a {
    font-size: 12px !important;
    padding: 25px 0;
  }

  .category-arrows {
    padding: 0 5px 0 5px;
  }
}

.product-price-compare-small {
  font-size: 13px;
  color: #7a7a7a;
  display: inline;
}

.product-price-compare-strike {
  font-size: 16px;
  text-decoration: line-through;
  color: #7a7a7a;
  display: inline;
}

.alert-bar {
  font-size: 12px;
}

.cart-limit-note {
  text-align: center;
  font-weight: 600;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
}

.cart-limit-sub-note {
  font-size: 11px;
  text-transform: uppercase;
  text-align: center;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.cart-shipping-note {
  font-size: 11px;
  text-transform: uppercase;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.sidebar {
  -ms-transform: translate(105%, 0);
}

.sidebar.show {
  -ms-transform: translate(0,0);
}

h1.large {
  font-size: 76px;
}

.product-grid-item__footer a {
  color: #777777 !important;
}

@media only screen and (max-width: 768px) {
  h1.large {
    font-size: 36px;
  }
}

@media only screen and (max-width: 768px) {
  .single-product-features .grid__item {
    text-align: left;
  }

  .product-grid-item__thumb {
    max-height: 400px;
  }
}

.product-specs__table .spec-desc {
  color: #828282;
}

.product-specs__table .spec-desc li {
  line-height: 18px;
  font-size: 13px;
}

.product-specs__table .spec-desc ol {
  line-height: 10px;
}

.product-specs__table .spec-title {
  line-height: 24px;
}

@media only screen and (min-width: 481px) {
  body.template-product #alert-bar {
    position: relative;
    top: 0;
  }

  body.template-product #header {
    z-index: 100;
    position: relative;
  }

  body.template-product .hero--product {
    top: 0;
  }

  body.template-product #undefined-sticky-wrapper {
    position: relative;
    z-index: 5;
  }

  body.template-product #product-overview {
    background-color: #fff;
    z-index: 3;
    position: relative;
  }

  body.template-product #product-features {
    position: relative;
    margin-top: 0;
  }

  body.template-product #product-specs {
    z-index: 3;
    position: relative;
    margin-bottom: 0;
  }

  body.template-product .interstitial {
    z-index: 3;
    margin-bottom: 0 !important;
    border-bottom: 40px solid #fff;
  }

  body.template-product #bundled-offer {
    position: relative;
    z-index: 3;
  }

  body.template-product .product-tech.without-curtain .product-tech-curtain {
    height: 100%;
  }

  body.template-product .product-tech-curtain, body.template-product #product-tech {
    z-index: 3;
  }

  body.template-product .product-tech-overlay {
    background-color: transparent;
    z-index: 3;
  }

  body.template-product .product-tech__content-container {
    background-color: #fff;
    position: relative;
    z-index: 4;
  }

  body.template-product .product-tech-overlay__content {
    background-color: rgba(32, 160, 157, .9);
  }

  body.template-product .product-reviews-container {
    background-color: #fff;
    position: relative;
    z-index: 3;
  }

  body.template-product .product-reviews-container #AddReviewedToCartForm {
    display: inline-block;
    vertical-align: middle;
  }

  body.template-product .product-reviews-container #AddReviewedToCartForm button {
    display: inline-block;
    margin-top: 0px;
    vertical-align: middle;
    padding: 15px 35px;
  }

  body.template-product .product-reviews-container #ProductPrice {
    font-size: 22px;
    font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 200;
    vertical-align: middle;
    color: #008fa1;
    display: inline-block;
    margin-left: 15px;
    margin-top: 2px;
  }

  body.template-product .product-reviews-container h3.light {
    text-align: center;
  }

  body.template-product .product-reviews-container .product-featurette__image {
    text-align: center;
  }

  body.template-product .product-reviews-container .product-featurette__image h3 {
    font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    color: #444;
    margin-bottom: 10px;
    font-size: 24px;
    text-align: center;
  }

  body.template-product .footer-social, body.template-product .footer-default {
    position: relative;
    z-index: 3;
  }
}

.lead-form .error-message {
  font-weight: bold;
  color: #900000;
  text-align: left;
  display: none;
}

.lead-form input, .lead-form select, .lead-form textarea {
}

.lead-form .input-select select {
  position: relative;
  z-index: 2;
}

.lead-form label.error {
}

.lead-form .grid__item.field-note {
  font-size: 12px;
  color: #777;
  padding: 5px;
}

.lead-form .input-select label span {
  height: 16px;
}

.required-field {
  color: #C24D00 !important;
  font-weight: 700;
  font-size: 19px;
  top: 15px;
  position: absolute;
  padding-left: 3px;
}

.lead-form .hidden-field {
  display: none;
}

.lead-form .input-error {
  background-color: #fff6f6;
}

.lead-form .response {
  display: none;
}

.form-hidden-iframe {
  display: none;
}

.lead-form div.label-sub {
  font-size: 12px;
  color: #b3b3b5;
  margin-left: 17px;
  margin-top: -20px;
  margin-bottom: 7px;
}

.lead-form h4 {
  margin-left: -30px;
  margin-top: 5px;
}

.lead-form .input-check label {
  display: block;
}

.lead-form .input-check div {
  float: left;
  width: 50%;
  margin-bottom: 3px;
  padding: 0 15px;
}

.lead-form .input-check div label {
  display: inline-block;
  margin-left: 3px;
  color: #b3b3b5;
}

.lead-form .input-check div label input {
  display: inline-block;
  margin: 0;
  width: initial;
  margin-left: 5px;
  padding: 5px;
  height: initial;
  font-size: 14px;
}

.lead-form .input-check input[type="checkbox"], .lead-form .input-check input[type="radio"] {
  height: initial;
}

#form-warranty, #form-reseller {
  margin-bottom: 35px;
}

#form-warranty .input-complex label {
  width: 200px;
}

#form-warranty .input-complex input {
  padding-left: 215px;
}

#form-reseller .input-complex label {
  width: 180px;
}

#form-reseller .input-complex input {
  padding-left: 195px;
}

#form-emerging .input-complex label {
  width: 210px;
  max-width: 210px;
}

#form-emerging .input-complex input {
  padding-left: 220px;
}

label.larger-label {
  width: 400px !important;
  max-width: initial !important;
}

input.larger-label {
  padding-left: 415px !important;
}

.label-icon {
  color: #747475;
}

#product-tech-curtain--powerlight .large--one-half, #product-tech-curtain--nanogrid .large--one-half {
  display: none;
}

#product-tech-curtain--powerlight .product-tech-curtain__body, #product-tech-curtain--nanogrid .product-tech-curtain__body {
  max-height: initial;
}

.insidetech-custom-layout {
  float: none;
}

.insidetech-custom-layout ul {
  margin-left: 0 !important;
  padding-left: 0 !important;
  margin-top: 95px !important;
}

.insidetech-custom-layout ul:before {
  display: none;
}

.insidetech-custom-layout ul li {
  vertical-align: top;
  padding-left: 0 !important;
  display: inline-block;
  width: 31% !important;
  margin-left: 15px;
  background-repeat: no-repeat;
  background-size: 45% auto;
  background-position: top left;
  min-height: 290px !important;
}

.insidetech-custom-layout ul li:first-child {
  margin-left: 0;
}

.insidetech-custom-layout ul li img {
  display: inline-block;
  width: 45%;
}

.insidetech-custom-layout ul li div {
  max-width: 53%;
  float: right;
  vertical-align: top;
  margin-top: 40px;
}

.insidetech-custom-layout ul li.panel-1 div {
  max-width: 51%;
}

.insidetech-custom-layout ul li.panel-2 {
  background-size: 47% auto;
  background-position: 0px 20px;
}

.insidetech-custom-layout ul li.panel-2 div {
  max-width: 54%;
}

.insidetech-custom-layout ul li.panel-2 div {
  max-width: 53%;
}

.insidetech-custom-layout p {
  font-size: 12px;
}

.insidetech-custom-layout h4 {
  margin-bottom: 0;
  color: #20a09d;
}

.inside-the-tech-video {
  padding: 0 60px 5px 0;
  position: relative;
  width: 455px;
  display: block;
  margin: 0 auto;
}

.inside-the-tech-play {
  font-size: 56px !important;
  position: relative;
  top: 260px;
  left: -12px;
  z-index: 1000;
  color: rgba(255, 255, 255, 0.92);
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 1000px;
}

.product-tech .product-tech-curtain .product-tech-curtain__list li {
  margin-bottom: 35px;
}

#biolite-powerlight .product-tech, #biolite-nanogrid .product-tech {
  height: 700px;
}

@media only screen and (max-width: 1024px) {
  .insidetech-custom-layout ul li div {
    margin-top: 0;
  }
}

@media only screen and (max-width: 481px) {
  #biolite-powerlight .product-tech, #biolite-nanogrid .product-tech {
    height: 1300px;
  }

  .insidetech-custom-layout ul li {
    margin-left: 0;
    margin-bottom: 0 !important;
    display: block;
    width: 100% !important;
    background-size: auto 250px;
    background-position: 17% 0;
  }

  .insidetech-custom-layout ul li div {
    width: 52% !important;
    max-width: 52% !important;
    margin-top: 50px !important;
    margin-right: 40px;
  }

  .insidetech-custom-layout ul li.panel-2, .insidetech-custom-layout ul li.panel-3, .insidetech-custom-layout ul li.panel-1 {
    background-size: auto 250px;
    background-position: 17% 0;
  }

  .insidetech-custom-layout ul li div {
    width: 52% !important;
    margin-right: 15px;
    margin-top: 25px;
  }

  .insidetech-custom-layout ul li p {
    font-size: 14px;
  }
}

@media only screen and (max-width: 768px) {
  #biolite-powerlight .product-tech, #biolite-nanogrid .product-tech {
    height: 700px;
  }
}

@media only screen and (max-width: 442px) {
  #biolite-powerlight .product-tech, #biolite-nanogrid .product-tech {
    height: 1300px;
  }

  .product-tech-curtain__list {
    padding-right: 5px !important;
  }

  .insidetech-custom-layout ul li {
    background-size: auto 210px;
    background-position: 0px 0 !important;
  }

  .insidetech-custom-layout ul li div {
    width: 50% !important;
    max-width: 52% !important;
    margin-top: 25px !important;
    margin-right: 0px;
  }

  .insidetech-custom-layout ul li p {
    font-size: 13px;
  }
}

.staff-grid-item__content ul li {
  font-size: 18px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 18px;
  font-weight: 300;
}

.staff-grid-item__content ul li span {
  font-size: 16px;
  line-height: 18px;
  font-family: reader-regular,"Helvetica Neue",Helvetica,Arial,sans-serif;
}

.single-product-features.teamPage {
  min-height: 500px;
}

@media only screen and (max-width: 768px) {
  .single-product-features.teamPage.single-product-features--short {
    background-image: none !important;
  }
}

.nav-circles li .circle {
  width: 80px;
  height: 80px;
  line-height: 87px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-clip: padding-box;
  border: 3px solid #f3f3f3;
  margin: 0 auto;
}

.nav-circles li .circle .fa, .nav-circles li .circle .icomoon {
  font-size: 42px;
  margin-left: 2px;
  margin-top: 18px;
  color: rgba(204,204,204,0.3);
}

.nav-circles li.active .circle .fa, .nav-circles li.active .circle .icomoon {
  color: rgba(255, 255, 255, 1);
  -webkit-transition: color 300ms ease-in;
  -moz-transition: color 300ms ease-in;
  -o-transition: color 300ms ease-in;
  -ms-transition: color 300ms ease-in;
  transition: color 300ms ease-in;
}

.nav-circles.nav-circles--transparent li.active .circle.icomoon:before, .nav-circles li.active .circle.icomoon:before {
  color: rgba(255, 255, 255, 1);
  -webkit-transition: color 300ms ease-in;
  -moz-transition: color 300ms ease-in;
  -o-transition: color 300ms ease-in;
  -ms-transition: color 300ms ease-in;
  transition: color 300ms ease-in;
}

.nav-circles.nav-circles--transparent li .circle {
  background-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: background-color 300ms ease-in;
  -moz-transition: background-color 300ms ease-in;
  -o-transition: background-color 300ms ease-in;
  -ms-transition: background-color 300ms ease-in;
  transition: background-color 300ms ease-in;
}

.nav-circles.nav-circles--transparent li.active .circle {
  background-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: background-color 300ms ease-in;
  -moz-transition: background-color 300ms ease-in;
  -o-transition: background-color 300ms ease-in;
  -ms-transition: background-color 300ms ease-in;
  transition: background-color 300ms ease-in;
}

.nav-circles.nav-circles--transparent li:hover .circle.icomoon:before, .nav-circles li:hover .circle.icomoon:before {
  color: rgba(255, 255, 255, 1);
  -webkit-transition: color 300ms ease-in;
  -moz-transition: color 300ms ease-in;
  -o-transition: color 300ms ease-in;
  -ms-transition: color 300ms ease-in;
  transition: color 300ms ease-in;
}

@media only screen and (max-width: 480px) {
  .nav-circles li .circle {
    padding-top: 4px;
    padding-right: 1px;
  }

  .shop-all-footer-buttons {
    margin: 20px 0 20px 0 !important;
    display: block;
  }

  .nav-circles li .circle .fa, .nav-circles li .circle .icomoon {
    font-size: 33px;
  }

  .app-feature-list .icomoon {
    display: block !important;
    margin: 24px 0px 7px 0 !important;
    text-align: center !important;
    font-size: 29px !important;
    left: 0px !important;
    top: 0px !important;
  }

  .app-feature-list ul {
    padding: 5px 0 0 0 !important;
  }

  .app-video-play {
    margin-left: 0 !important;
    margin-top: 20px !important;
  }

  .apple-logo {
    padding-right: 0 !important;
    display: block;
    padding-bottom: 10px;
  }

  .google-logo {
    padding-right: 0 !important;
    display: block;
    padding-bottom: 10px;
  }

  .mobile-100-percent {
    width: 100% !important;
  }
}

.cart-summary__action input {
  max-height: 50px;
}

.expandable-content.intl-stores .list-toggle__content ul {
  margin-left: 0;
  padding-left: 0;
}

.expandable-content.intl-stores ul.intl-stores-list>li {
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 0;
  margin-bottom: 10px;
  margin-top: 5px;
  margin-left: 0;
  font-size: 20px;
  min-height: 50px;
}

.expandable-content.intl-stores ul.intl-stores-list>li>a {
  font-size: 20px;
}

.modal__header {
  background-color: rgba(37, 39, 41, 0);
}

.modal {
  background-color: rgba(37, 39, 41, 0);
}

.modal--close {
  border: none;
}

.modal__content {
  background-color: white;
}

@media only screen and (max-width: 768px) {
  #biolite-nanogrid-pocket-sized-power-and-lighting .product-tech {
    background-size: inherit;
    height: 1200px;
  }

  #biolite-nanogrid-pocket-sized-power-and-lighting .product-tech .product-tech-overlay {
    height: 94%;
  }

  #biolite-nanogrid-pocket-sized-power-and-lighting .product-tech-overlay__content h3 {
    left: 3%;
  }
}

#rsvp .lead-form .input-check div {
  width: 20% !important;
}

#biolite-mission-energy-everywhere .product-cards {
  width: 100%;
}

#biolite-mission-energy-everywhere .product-cards:after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  visibility: hidden;
  clear: both;
}

#biolite-mission-energy-everywhere .product-cards .product-card {
  position: relative;
  width: 50%;
  float: left;
}

#biolite-mission-energy-everywhere .product-cards .product-card.product-card--bg_right {
  background-color: #f5f5f5;
}

#biolite-mission-energy-everywhere .product-cards .product-card.product-card--bg_right .product-card__inner {
  background-size: auto auto;
  background-position: 100% 100%;
}

#biolite-mission-energy-everywhere .product-cards .product-card.product-card--bg_right .product-card__content {
  color: #2e2e2f;
}

#biolite-mission-energy-everywhere .product-cards .product-card:first-child .product-card__inner {
  border-right: 8px solid white;
}

#biolite-mission-energy-everywhere .product-cards .product-card:last-child .product-card__inner {
  border-left: 8px solid white;
}

#biolite-mission-energy-everywhere .product-cards .product-card .product-card__inner {
  position: relative;
  display: table;
  top: 0;
  height: 180px;
  min-height: 180px;
  max-height: 180px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  padding: 40px 60px;
}

#biolite-mission-energy-everywhere .product-cards .product-card .product-card__inner:before {
  content: '';
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#biolite-mission-energy-everywhere .tab-left {
  padding-right: 5%;
  border-right: 1px solid #fff;
}

#biolite-mission-energy-everywhere .tab-right {
  padding-left: 5%;
}

#biolite-mission-energy-everywhere .tab-row {
  margin-bottom: 15px;
}

#biolite-mission-energy-everywhere .mobile-title-mission {
  display: none;
}

#biolite-mission-energy-everywhere .staff-grid {
  padding-top: 0;
  padding-bottom: 0;
  width: 100%;
  margin: auto;
}

#biolite-mission-energy-everywhere .staff-grid-item__footer {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  border: 1px solid #d6d6d6;
  width: 90%;
}

#biolite-mission-energy-everywhere .product-cards--mission h6 {
  min-height: 10px !important;
}

#biolite-mission-energy-everywhere .impact-row {
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  #biolite-mission-energy-everywhere .product-cards .product-card {
    width: 100%;
  }

  #biolite-mission-energy-everywhere .how-we-do-it {
    height: 100%;
  }

  #biolite-mission-energy-everywhere .road-to-impact {
    margin-top: 0px;
  }

  #biolite-mission-energy-everywhere .mobile-title-mission {
    display: block;
    margin-left: 3%;
    margin-top: 40px;
    margin-bottom: 40px;
    padding-bottom: 15px;
    padding-top: 15px;
    border-bottom: 1px solid #f3f3f3;
    border-top: 1px solid #f3f3f3;
  }

  #biolite-mission-energy-everywhere .tab-right {
    border-top: 1px solid #f3f3f3;
    margin-top: 30px;
    padding-top: 30px;
  }
}

@media screen and (min-width: 300px) and (max-width:600px) {
  #biolite-mission-energy-everywhere .bg-img {
    background-image: none !important;
    height: 1100px !Important;
  }
}

@media screen and (max-width: 845px) and (min-width:601px) {
  #biolite-mission-energy-everywhere .bg-img {
    background-image: none !important;
    height: 800px !important;
  }
}

@media screen and (max-width:845px) {
  #biolite-mission-energy-everywhere .product-card.product-card--gray_overlay:nth-child(2) {
    margin-left: -7px;
  }

  #biolite-mission-energy-everywhere .product-card.product-card--darkblue_overlay:nth-child(2) {
    margin-left: -7px;
  }

  #biolite-mission-energy-everywhere .impact-row {
    margin-bottom: 0px;
  }

  #biolite-mission-energy-everywhere .staff-grid-item__footer {
    width: 100%;
  }
}

#biolite-mission-energy-everywhere .product-cards .product-card.product-card--green_overlay .product-card__content {
  color: white;
}

#biolite-mission-energy-everywhere #product-specs-new .spec-title {
  width: 10%;
}

#biolite-mission-energy-everywhere #product-specs-new .spec-desc {
  width: 80%;
}

#biolite-mission-energy-everywhere .single-product-features.single-product-features--short {
  padding: 330px 0;
  background-position: 90% 10%;
  background-repeat: no-repeat;
}

.compare-table-bundle {
  margin: 0 auto;
  padding-top: 30px;
}

.compare-table-bundle-mobile {
  display: none;
}

.compare-table-bundle .active {
  background-color: #008fa1;
  color: white;
}

#product-compare-bundle .fa-check.fa-circular {
  background-color: transparent;
  border-radius: 20px;
  width: 20px;
  height: 20px;
  line-height: 18px;
  text-align: center;
  color: #008fa1;
  border: 2px solid #008fa1;
  font-size: 12px;
  position: absolute;
  right: 10px;
}

#product-compare-bundle .product-compare-bundle {
  max-width: 100%;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.compare-table-bundle th {
  color: #2e2e2f;
  font-weight: 700;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 18px;
}

.compare-table-bundle td {
  color: #111111;
}

.compare-table-bundle td, .compare-table-bundle th {
  text-align: center;
  font-weight: 300;
  border-right: 1px dashed #cfcfd0;
  height: 70px;
  position: relative;
  width: 17.5%;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.2em;
}

ol.li-number-bold {
  counter-reset: item;
}

ol.li-number-bold>li {
  counter-increment: item;
  list-style-type: none;
}

ol.li-number-bold>li:before {
  display: inline-block;
  width: 1.5em;
  padding-right: 0.5em;
  font-weight: bold;
  text-align: right;
  content: counter(item) ".";
}

.compare-table-bundle.table-with-footer {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}

.compare-table-bundle.table-with-footer tbody tr > :first-child, .compare-table-bundle.table-with-footer thead tr > th:first-child, .compare-table-bundle.table-with-footer tfoot tr > td:first-child {
  width: 15%;
}

.compare-table-bundle tbody tr:nth-last-child(even) {
  background-color: #f3f3f3;
}

.compare-table-bundle tbody tr:nth-child(odd) {
  background-color: white;
}

.compare-table-bundle tfoot tr {
  background-color: white;
  border-bottom: 5px solid #f3f3f3;
}

.compare-table-bundle thead tr {
  border-bottom: 1px solid #a3a3a4;
}

.compare-table-bundle tfoot td {
  padding-top: 20px;
  padding-bottom: 20px;
}

.you-save-large {
  border: 1px solid #eb5d24;
  display: inline-block;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 12px;
  position: relative;
  padding: 0px;
  margin: 0px;
  font-weight: 700;
}

.you-save-large .left-side {
  padding: 7px 10px 7px 10px;
  color: #eb5d24;
  display: inline-block;
}

.you-save-large .right-side {
  padding: 7px 25px 7px 25px;
  background-color: #eb5d24;
  color: white;
  height: 100%;
  display: inline-block;
  font-weight: bold;
}

.you-save-primary {
  border: 1px solid #20A09D;
  display: inline-block;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 12px;
  position: relative;
  padding: 0px;
  margin: 0px;
  font-weight: 700;
}

.you-save-primary .left-side {
  padding: 7px 10px 7px 10px;
  color: #008fa1;
  display: inline-block;
}

.you-save-primary .right-side {
  padding: 7px 25px 7px 25px;
  background-color: #008fa1;
  color: white;
  height: 100%;
  display: inline-block;
  font-weight: bold;
}

.bundle-number {
  background-color: #008fa1;
  height: 26px;
  -moz-border-radius: 13px;
  -webkit-border-radius: 13px;
  width: 26px;
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  position: relative;
  padding: 0px;
  margin: 0 auto;
  font-weight: 700;
}

.bundle-number .inside-count {
    padding: 7px 8px 6px 10px;
    color: white;
    height: 100%;
    display: inline-block;
    font-weight: bold;
}

.bundle-number-primary {
  background-color: #20A09D;
  height: 26px;
  -moz-border-radius: 13px;
  -webkit-border-radius: 13px;
  width: 26px;
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  position: relative;
  padding: 0px;
  margin: 0 auto;
  font-weight: 700;
}

.bundle-number-primary .inside-count {
  padding: 5px 10px 10px 10px;
  color: white;
  height: 100%;
  display: inline-block;
  font-weight: bold;
}

.list-number {
  background-color: #eb5d24;
  height: 26px;
  -moz-border-radius: 13px;
  -webkit-border-radius: 13px;
  width: 26px;
  display: inline;
  font-size: 12px;
  position: relative;
  padding: 0px;
  margin: 0 auto;
  font-weight: 700;
}

.list-number .inside-count {
  padding: 5px 10px 10px 10px;
  color: white;
  height: 100%;
  display: inline-block;
  font-weight: bold;
}

.formicons {
  font-size: 13px !important;
  position: relative;
  padding-right: 5px;
  top: -1px;
}

@media only screen and (max-width: 1024px) {
  .compare-table-bundle {
    display: none;
  }

  #product-compare-bundle .product-compare-bundle {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
  }

  .compare-table-bundle-mobile {
    border: 1px solid #858686;
    display: block;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .compare-table-bundle-mobile th.active {
    color: #008fa1;
  }

  .compare-table-bundle-mobile th {
    color: #606162;
    font-weight: bold;
    text-align: left;
    border-bottom: 1px dashed #cfcfd0;
    padding: 20px 15px 20px 10px;
  }

  .compare-table-bundle-mobile img {
    max-width: 125px;
  }

  .compare-table-bundle-mobile tr:last-child > * {
    border-bottom: 0px;
  }

  #product-compare-bundle .compare-table-bundle-mobile .fa-check.fa-circular {
    top: 35%;
  }

  .compare-table-bundle-mobile td {
    text-align: left;
    color: #111111;
    border-bottom: 1px dashed #cfcfd0;
    padding: 20px 15px 20px 10px;
    position: relative;
  }

  .table-with-footer-bundle th {
    background-color: #fff;
    border-bottom: 1px dashed #cfcfd0 !important;
    text-align: center !important;
  }

  .compare-table-bundle-mobile tbody tr:nth-child(even) {
    background-color: #f3f3f3;
  }

  .compare-table-mobile tbody tr:nth-child(odd) {
    background-color: white;
  }
}

@media only screen and (max-width: 1024px) {
  .product-title-divider {
    display: none;
  }
}

.app-hero {
  background-color: #f3f3f3;
}

.app-features {
  background: #008fa1;
  background: -webkit-linear-gradient(left top, #008fa1, #04a2a0);
  background: -o-linear-gradient(bottom right, #008fa1, #04a2a0);
  background: -moz-linear-gradient(bottom right, #008fa1, #04a2a0);
  background: linear-gradient(to bottom right, #008fa1, #04a2a0);
}

.app-anayltics {
  background-color: #f3f3f3;
}

.app-proximity {
  background-color: #2e2e2f;
}

.app-footer {
  background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/BaseLantern_background_r7.jpg?3015690042892134851");
  background-color: #0d0d0d;
  background-repeat: no-repeat;
  background-position: center;
}

@media only screen and (max-width: 768px) {
  .mobile-text-center {
    text-align: center !important;
    margin: 0 auto !important;
  }

  .app-logo {
    margin-left: 0 !important;
  }

  .app-screenshot-hero {
    height: 380px !important;
    margin: 0 auto;
  }

  .app-bottom-logos {
    padding-bottom: 25px !important;
    margin-left: 0px !important;
  }

  .mobile-tight {
    margin: 0 !important;
  }

  .mobile-paragraph-tight {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
}

#temp .country-name {
  height: 108px;
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 16px;
  cursor: pointer;
  background-color: #008fa1;
}

#temp .staff-grid-item {
  min-height: 108px;
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 16px;
  cursor: pointer;
}

#temp .staff-grid-item__photo {
  height: 108px;
  position: relative;
  background-color: #f2f2f2;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 165px;
  text-align: center;
}

#our-story-the-biolite-history-and-team .staff-grid-item {
  min-height: 108px;
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 16px;
  cursor: pointer;
}

#our-story-the-biolite-history-and-team .staff-grid-item__photo {
  height: 108px;
  position: relative;
  background-color: #f2f2f2;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 165px;
  text-align: center;
}

.timeline-text {
  font-size: 12px;
  line-height: 15px;
}

.timeline-title {
  display: inline !important;
}

.timeline-bullet {
  display: inline !important;
  margin-left: -15px;
  font-size: 24px;
  font-weight: 400;
  line-height: 4px;
}

.staff-grid-map {
  margin-left: -8px;
  margin-right: -8px;
  padding-top: 120px;
  padding-bottom: 70px;
  overflow: hidden;
}

.staff-grid-map:after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  visibility: hidden;
  clear: both;
}

.staff-grid-map-item {
  min-height: 108px;
  padding-left: 8px;
  padding-right: 8px;
  cursor: arrow;
  margin: 0 auto;
}

.staff-grid-map-item__photo {
  height: 108px;
  width: 108px;
  position: relative;
  background-color: #20A09D;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  text-align: center;
}

.staff-grid-map-item__overlay {
  display: table;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(32, 160, 157, 0.05);
  width: 100%;
  height: 100%;
  padding: 30px;
  color: white;
  transition: all 150ms ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.staff-grid-map-item__content {
  font-size: 21px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
}

.staff-grid-map-item__content ul {
  margin: 0;
}

.staff-grid-map-item__content ul li {
  font-size: 21px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
}

.staff-grid-map-item__content ul li span {
  font-size: 16px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

@media only screen and (max-width: 768px) {
  #our-story-the-biolite-history-and-team .table-cell {
    vertical-align: middle;
  }

  #our-story-the-biolite-history-and-team .grid__item.large--two-thirds {
    padding-right: 20px !important;
    padding-left: 20px !important;
    margin-bottom: 80px;
  }

  #our-story-the-biolite-history-and-team .grid__item.large--one-third {
    padding-right: 20px !important;
  }

  #our-story-the-biolite-history-and-team .large--one-eighth {
    width: 33.33%;
  }

  #our-story-the-biolite-history-and-team .staff-grid {
    padding-top: 60px !important;
  }
}

#press-amp-awards-archive ul {
  list-style-type: disc;
}

#press-amp-awards-archive p {
  margin: 0 0 5px 0;
}

.product-title-divider {
  border-right: 1px solid #aeaeae;
  padding-left: 20px;
}

.referral-wrapper {
  background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/ReferAFriend_BG_photo_r8.jpg?6312714547359219182");
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
  background-size: cover;
}

.referral-left {
  padding: 50px 96px 0 96px;
  background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/ReferAFriend_logo_r13.png?16930214027355773144");
  background-size: 450px;
  background-position: -28% 10%;
  background-repeat: no-repeat;
}

.referral-right {
  background-color: rgba(197, 215, 225, 0.2);
  padding: 70px 30px 0 30px;
}

.access-logo {
  width: 275px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .referral-left {
    padding: 20px 15px 20px 15px;
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/ReferAFriend_logo_r13.png?16930214027355773144");
    background-size: 450px;
    background-position: -28% 10%;
    background-repeat: no-repeat;
  }

  .referral-wrapper {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/ReferAFriend_BG_photo_r8.jpg?6312714547359219182");
    background-repeat: no-repeat;
    background-position: 33% 90%;
    overflow: hidden;
  }

  .referral-right {
    background-color: rgba(197, 215, 225, 0.2);
    padding: 20px 30px 0 30px;
  }
}

.fineprint {
  font-weight: 300;
  font-size: 11px;
}

.visitor-wrapper {
  background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/podcast_BG_photo_r5.jpg?14419058697156663227");
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
  height: 570px;
}

.visitor-left {
  padding: 50px 120px 0 96px;
  background-size: 450px;
  background-position: -28% 10%;
  background-repeat: no-repeat;
}

.visitor-right {
  background-color: rgba(197, 215, 225, 0.2);
  padding: 70px 30px 0 30px;
}

#outside-podcast .product-cards .product-card {
  padding: 5px;
}

#fugitive-waves-podcast .product-cards .product-card {
  padding: 5px;
}

@media only screen and (max-width: 768px) {
  .visitor-left {
    padding: 20px 35px 20px 15px;
    background-size: 450px;
    background-position: -28% 10%;
    background-repeat: no-repeat;
  }

  .outside-subtitle {
    font-size: 21px;
    margin-bottom: 15px !important;
  }

  .visitor-wrapper {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/podcast_BG_photo_mobile_r3.jpg?8035898168629678778");
    background-repeat: no-repeat;
    background-position: 20% 50%;
    overflow: hidden;
    height: 100%;
  }

  .visitor-right {
    background-color: rgba(197, 215, 225, 0.2);
    padding: 20px 30px 0 15px;
  }
}

.severeWeather-box {
  border-top: 1px dashed #ebebeb;
  padding-top: 13px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.severeWeather-icon {
  vertical-align: middle;
}

.severeWeather-title {
  font-size: 17px;
  font-weight: 700;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: inline;
  vertical-align: middle;
}

.severeWeather-caption {
  font-weight: 300;
  padding-top: 6px;
  display: block;
}

@media screen and (max-width: 768px) {
  .super-nav {
    display: none;
  }

  .holiday-bar span.holiday-bar-close {
    right: 20px;
  }
}

#biolite-outdoor-amp-off-grid-energy-free-shipping-75-and-up .btn {
  padding: 18px 22px 16px 22px;
}

.btn.btn-outline-white-trans {
  background-color: rgba(255, 255, 255, 0.9);
  color: #008fa1;
  border: 1px solid #008fa1;
}

.btn.btn-outline-white-trans:hover {
  color: #008fa1;
  background-color: rgba(255, 255, 255, 0.6);
}

.btn-fullWidth {
  width: 90%;
  text-align: left;
  margin-bottom: 40px;
  margin-left: 30px;
  padding-left: 30px;
  padding-top: 20px;
}

.community-image {
  margin: 0 auto;
  width: 95%;
  margin-bottom: 0px;
  position: relative;
  z-index: 2;
}

.community-image-holding {
  border-radius: 4px;
  border-right: 1px solid #545458;
  border-left: 1px solid #545458;
  border-bottom: 1px solid #545458;
  background-color: rgba(36, 36, 41, 0.9);
  width: 85%;
  margin: 0 auto;
  position: relative;
  top: -12px;
  padding: 25px 0 25px 0;
  z-index: 1;
}

.community-caption {
  padding-top: 5px;
  font-size: 13px;
  font-family: reader-regular;
  font-weight: 700;
  color: #c5c5c5;
  display: block;
}

.community-icon {
  font-size: 17px;
  color: #5e5e61;
  padding-right: 6px;
  position: relative;
  top: 3px;
}

.community-lead-in {
  background-color: #9193b3;
  display: inline-block;
  border-radius: 2px;
  text-transform: uppercase;
  font-size: 11px;
  position: relative;
  padding: 0px;
  margin-top: 25px;
}

.community-lead-in .text {
  padding: 5px 16px 5px 16px;
  color: #fff;
  display: inline-block;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.energy-reason {
  display: block;
  color: #fff;
  font-family: reader-regular;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 15px 25px 0px 25px;
  line-height: 20px;
  margin-bottom: 60px;
}

.world-lead-in {
  margin-top: 5px;
  display: block;
  color: #747475;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  text-align: left;
  line-height: 19px;
  padding-right: 65px;
}

.world-icon {
  font-size: 41px !important;
  color: #757575;
  position: relative;
  top: -7px;
}

.footer-contact {
  font-size: 32px !important;
  color: white;
  line-height: 0px !important;
  display: block;
  margin: 0 0px 0px 0;
  position: relative;
  top: 22px;
  left: 1px;
}

.world-video {
  background-color: rgba(255, 255, 255, 0.85);
  border: 1px solid #f3f3f3;
  position: relative;
  margin-top: 35px;
  border-radius: 2px;
}

.mission-play {
  font-size: 46px !important;
  position: absolute;
  top: 62px;
  left: 97px;
  z-index: 1000;
  color: rgba(255, 255, 255, 0.92);
}

.app-video-play {
  padding: 10px 0 20px 0;
}

.inside-the-app-play {
  font-size: 30px !important;
  top: 5px;
  position: relative;
  text-align: center;
  color: #008fa1;
}

.mission-video-wrapper {
  max-width: 242px !important;
}

.baselantern-video-wrapper {
  max-width: 290px !important;
}

.world-video img {
  width: 70%;
  padding: 5px;
  margin: 0;
  display: inline;
}

.world-video video {
  width: 50%;
  padding: 5px;
  margin: 0;
  display: inline;
}

.video-caption {
  display: inline;
  position: absolute;
  top: 10px;
  left: 232px;
  font-size: 16px;
  line-height: 18px;
  font-family: reader-regular;
  font-weight: 600;
  color: #444444;
  padding: 25px 0 0 25px;
}

.footer-title, .footer-title a {
  font-size: 16px;
  line-height: 18px;
  font-family: reader-regular;
  color: white;
  display: inline-block;
  padding: 0 0 0 45px;
}

.footer-secondary-title, .footer-secondary-title a {
  font-size: 12px;
  line-height: 14px;
  font-family: reader-regular;
  color: #D4D4D4;
  display: inline-block;
  padding: 0 0 0 45px;
}

.video-caption-subtitle {
  display: inline;
  position: absolute;
  top: 57px;
  left: 232px;
  font-size: 12px;
  line-height: 16px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #444444;
  padding: 25px 29px 0 25px;
}

.million-lives-wrapper {
  margin: 100px 0 80px 0;
}

.million-lives-hero {
  padding: 20px 0px 0 100px;
  position: relative;
  border-left: 1px solid #fff;
}

.million-lives-stat {
  padding: 50px 0 35px 0;
}

.million-lives-stat-small {
  padding: 8px 0 0px 0;
  margin: 5px 0 0px 0;
  display: block !important;
  width: 100%;
}

.million-lives-stat-small:last-child {
  border-bottom: 0px solid #fff;
}

.world-stats-small {
  font-size: 12px;
  margin-left: -8px;
}

.world-stats {
  font-size: 40px;
  font-family: reader-regular;
  font-weight: 600;
  display: inline;
  line-height: 15px;
  background: rgb(2,147,159);
  background: -webkit-linear-gradient(0deg, #A34570 14.87%, #008FA1 67.93%);
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

.million-lives-img {
    position: absolute;
    top: 0px;
    left: 50%;
    margin: auto;
    display: inline;
    width: 643px;
    z-index: 0;
    top: 133px;
    right: -148px;
}

.million-lives-img img {
  position: absolute;
  left: -65px;
  top: 0;
  -webkit-animation-name: fade;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 12s;
  animation-name: fade;
  animation-iteration-count: infinite;
  animation-duration: 12s;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  33% {
    opacity: 1;
  }

  53% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  33% {
    opacity: 1;
  }

  53% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

#f1 {
  -webkit-animation-delay: -8s;
}

#f2 {
  -webkit-animation-delay: -4s;
}

#f3 {
  -webkit-animation-delay: 0s;
}

.million-lives-mark {
  width: 100px;
  display: block;
  padding: 80px 0 15px 0;
}

.million-lives-mark-gift {
  width: 100px;
  margin: auto;
  display: block;
  padding: 20px 0 15px 0;
}

.world-stats-large {
  font-size: 83px;
  font-family: reader-regular;
  letter-spacing: -2px;
  margin-left: -7px;
  font-weight: 700;
  line-height: 10px;
  display: inline;
  background: rgb(2,147,159);
  background: -webkit-linear-gradient(0deg, #A34570 14.87%, #008FA1 67.93%);
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

.world-stats-caption {
  padding-top: 7px;
  display: block;
  width: 42%;
}

.world-stats-label {
  margin: 10px 0 20px 0;
  display: block;
}

.world-stats-label-caption {
  padding: 4px 6px 3px 6px;
  margin: 0 0 10px 0;
  background-color: #cdcdcd;
  letter-spacing: 2px;
  font-size: 11px;
  line-height: 13px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #fff;
  width: 100%;
}

.world-stat-wrap {
  margin: 20px 0 20px 0;
  display: inline;
}

.world-stat-block {
  display: inline-block;
  width: 100%;
  margin-top: 45px !important;
}

.world-single-column {
  padding-top: 70px;
}

.btn-bold {
  display: inline-block;
  padding: 10px 30px;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  user-select: none;
  appearance: none;
  border-radius: 5px;
  background-color: #747474;
  color: #fff;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
}

.btn-bold.btn-bold-outline-primary, .btn.btn-outline-green {
  background-color: transparent;
  color: #008fa1;
  border: 1px solid #008fa1;
}

.btn-bold.btn-bold-outline-primary:hover, .btn.btn-outline-green:hover {
  color: white;
  background-color: #008fa1;
}

.btn-tiny {
  display: inline-block;
  padding: 6px 14px;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  user-select: none;
  appearance: none;
  border-radius: 3px;
  background-color: #747474;
  color: #fff;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
}

.btn-tiny-icon {
  font-size: 12px !important;
  position: relative;
  top: 1px;
  padding: 0 5px 0 0;
}

.btn-tiny.btn-tiny-primary {
  background-color: #008fa1;
  color: #fff;
  border: 1px solid #008fa1;
}

.btn-tiny.btn-tiny-primary:hover {
  color: white;
  background-color: #008fa1;
}

.btn-tiny.btn-tiny-purple {
  background-color: #8F90B3;
  color: #fff;
  border: 1px solid #8F90B3;
}

.btn-tiny.btn-tiny-purple:hover {
  color: white;
  background-color: #8384a9;
}

.btn-tiny.btn-tiny-outline-primary {
  background-color: transparent;
  color: #008fa1;
  border: 1px solid #008fa1;
}

.btn-tiny.btn-tiny-outline-primary:hover {
  color: white;
  background-color: #008fa1;
}

.btn-tiny.btn-tiny-outline-white {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.btn-tiny.btn-tiny-outline-white:hover {
  color: white;
  border: 1px solid #e7e7e7;
}

.home-feature-button-1 {
  margin: 20px 0 0 0;
}

.home-feature-button-2 {
  margin: 20px 0 0 10px;
}

@media only screen and (max-width: 530px) {
  .home-feature-button-1 {
    margin-right: 0px;
    margin-bottom: 20px;
  }

  .mission-video-wrapper {
    max-width: 100% !important;
  }

  .home-feature-button-2 {
    margin: 8px 0 0 0px;
  }

  .giftguide-bottom {
    font-size: 68px;
    line-height: 58px;
    margin-bottom: 40px;
  }

  .giftguide-top {
    font-size: 16px;
  }

  .holiday-wrapper h2 {
    padding: 0 10px 0 10px;
  }
}

@media only screen and (max-width: 1220px) {
  .header-inner {
    padding: 0 20px 0 20px;
  }

  #product-content {
    padding-right: 20px;
  }
}

@media only screen and (max-width: 769px) {
  .mobile-span {
    width: 50% !important;
  }

  .gift-guide-text {
    width: 70%;
  }

  .blue-bar-feature-top {
    padding-left: 10px;
  }

  .blue-bar-feature-bottom {
    padding-left: 10px;
  }
}

@media only screen and (max-width: 480px) {
  .blue-bar-feature-bottom {
    font-size: 9px;
  }

  .blue-bar-feature-top {
    font-size: 10px;
  }

  .instagram-feed {
    width: 95%;
  }

  h3.gge {
    font-size: 18px !important;
  }

  .mobile-span {
    width: 50% !important;
  }

  .gge-logo {
    width: 70%;
    margin: 0 auto;
    padding-top: 12px;
  }

  .homeheader-featured-gear {
    margin: 5px !important;
  }

  .impact-title {
    font-size: 28px !important;
  }

  .mission-play {
    font-size: 69px !important;
    top: 30%;
    left: 39%;
    position: relative;
    display: none;
  }

  .homeheader-subtitle {
    font-size: 13px !important;
    line-height: 16px !important;
    padding: 0 0 15px 0;
  }

  .homepage-new {
    width: 16% !important;
    top: 10% !important;
  }

  .btn-fullWidth {
    width: 85%;
    text-align: center;
    margin-bottom: 10px;
    padding-left: 10px;
    margin-left: 10px;
  }

  .no-padding {
    padding: 0px !important;
    margin-top: 30px !important;
  }
}

@media only screen and (max-width: 351px) {
  #biolite-outdoor-amp-off-grid-energy-free-shipping-75-and-up .table-cell {
    display: block !important;
    width: 80%;
    margin: 0 auto;
    vertical-align: middle;
  }
}

.bwf-wrapper {
  background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/BetterWithFriends_2017_Header.jpg?15010831948413627022");
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  height: 429px;
  background-color: #f3f3f3;
}

.bwf-deals-wrapper {
  padding: 30px 180px 30px 180px;
}

@media only screen and (max-width: 768px) {
  .bwf-deals-wrapper {
    padding: 5px;
  }

  .bwf-wrapper {
    height: 499px;
  }

  #better-with-friends .bwf-deals-wrapper .large--one-third {
    width: 50%;
  }
}

.shipping-container {
  width: 650px;
  height: 644px !important;
}

@media only screen and (max-width: 650px) {
  .shipping-container {
    width: 350px;
    height: 347px !important;
  }

  .shipping-image {
    width: 350px;
    height: 347px !important;
  }
}

@media only screen and (min-width: 1005px) {
  .category-feature-mobile {
    display: none;
  }
}

@media only screen and (max-width: 1004px) {
  .category-feature {
    display: none;
  }

  .video-caption-subtitle {
    display: none;
  }

  .header-inner {
    padding: 0 0 0 0;
  }

  .upsell-section .large--one-third {
    width: 33%;
    text-align: center;
    padding: 2px !important;
  }

  .upsell-title {
    text-align: center;
  }

  .related-products .grid__item img {
    padding: 5px 5px 0 5px;
  }

  .upsell-product-price {
    display: block;
    margin-top: 9px;
  }

  .btn-tiny {
    padding: 5px 20px;
    line-height: 1.4;
    font-size: 14px;
  }

  .nav-circles li .circle .fa, .nav-circles li .circle .icomoon {
    margin-top: 9px;
  }

  .nav-circles li.active .circle .fa, .nav-circles li.active .circle .icomoon {
    color: rgba(0, 178, 176, 1);
    -webkit-transition: color 300ms ease-in;
    -moz-transition: color 300ms ease-in;
    -o-transition: color 300ms ease-in;
    -ms-transition: color 300ms ease-in;
    transition: color 300ms ease-in;
  }

  .impact-icon-container {
    width: 42%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: right;
    padding-bottom: 6px;
  }

  .impact-text-container {
    width: 58%;
    display: block;
    text-align: left;
    padding-top: 7px;
  }
}

@media only screen and (max-width: 768px) {
  #biolite-outdoor-amp-off-grid-energy-free-shipping-75-and-up .large--one-quarter {
    width: 50%;
  }
}

@media only screen and (max-width: 450px) {
  .impact-icon-container {
    width: 32%;
    text-align: right;
    padding-bottom: 6px;
  }

  .impact-text-container {
    width: 68%;
    text-align: left;
    padding-top: 7px;
  }
}

.remodal-background-content {
  background-color: #fff;
  width: 100%;
  height: 100%;
  padding: 30px 50px 30px 50px;
}

#billboard {
  background-color: #f3f3f3;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}

#billboard-gift-guide {
  background-color: #040306;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}

.deal-of-the-day {
  background-color: #008fa1;
  color: #fff;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-align: center !important;
  position: absolute;
  z-index: 1;
  padding: 10px 16% 10px 13%;
  top: 3%;
  left: -10%;
  -ms-transform: rotate(-25deg);
  -webkit-transform: rotate(-25deg);
  transform: rotate(-25deg);
}

#billboard-story {
  background-color: #000;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}

#billboard-tight {
  background-color: #020102;
}

#billboard .flexhero, #billboard-story .flexhero, #billboard-gift-guide .flexhero {
  margin: 0px auto;
  max-width: 1600px;
  max-height: calc(85vh - 105px);
}

#dd-tight .flexhero {
  margin: 0px auto;
  max-width: 1600px;
}

.flexhero {
  zoom: 1;
  overflow: hidden;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

.flexhero .main-billboard {
  zoom: 1;
}

.flexhero .main-billboard img {
  width: 100%;
  display: block;
}

.flexhero .main-billboard video {
  width: 100%;
  display: block;
}

.flexhero .main-billboard-content {
}

.billboard-story-subhead {
  position: absolute;
  top: 155px;
  width: 100%;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 26px;
  line-height: 20px;
  font-weight: 300;
  text-align: left;
  padding-left: 10%;
}

.billboard-story-main {
  position: absolute;
  top: 204px;
  width: 100%;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 64px;
  font-weight: 600;
  text-align: left;
  padding-left: 10%;
}

.billboard-story-cta {
  position: absolute;
  top: 280px;
  width: 100%;
  text-align: left;
  padding-left: 10%;
}

.billboard-new-label {
  position: absolute;
  width: 50px !important;
  left: 50% !important;
  margin-left: -25px !important;
  top: 65px;
}

.billboard-subhead-2 {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 27px;
  font-weight: 600;
  display: block;
}

.hero-two-button {
  margin: 0 15px 15px 0;
}

.billboard-subhead {
  position: absolute;
  top: 100px;
  width: 100%;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 23px;
  font-weight: 600;
  /*padding-left: 10%;*/
}

.billboard-main {
  position: absolute;
  top: 146px;
  width: 100%;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 50px;
  font-weight: 600;
  /*padding-left: 9.75%; comment me out to center*/
}

.billboard-cta {
  position: absolute;
  top: 215px;
  width: 100%;
 /*padding-left: 10%;*/
}

.billboard-tight-subhead {
  position: absolute;
  top: 138px;
  width: 100%;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 20px;
  font-weight: 300;
  text-align: center;
}

.billboard-main-gift-guide {
  position: absolute;
  top: 80px;
  width: 100%;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 48px;
  font-weight: 600;
}

.billboard-subhead-gift-guide {
  position: absolute;
  top: 159px;
  width: 100%;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 21px;
  font-size: 17px;
  padding-right: 16%;
  padding-left: 16%;
  font-weight: 300;
}

.billboard-main-code {
  position: absolute;
  top: 210px;
  width: 100%;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 19px;
  font-weight: 600;
}

.collection-hero-play {
  font-size: 37px !important;
  padding-right: 15px;
  position: relative;
  top: 8px;
  color: #fff;
}

.billboard-tight-main {
  position: absolute;
  top: 65px;
  width: 100%;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 44px;
  font-weight: 600;
  text-align: center;
}

.home-hero-play {
  font-size: 60px !important;
  color: #fff;
  top: 0px;
  right: 41px;
  position: relative;
}

.billboard-tight-cta {
  position: absolute;
  bottom: 41px;
  width: 100%;
  text-align: center;
}

.billboard-tight-cta-msg {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
}

.homeheader-wrapper {
  margin: 0;
  border-bottom: 0px solid #e1e1e1;
  padding: 35px 0 35px 0;
}

.desktop-break {
  display: block;
}

.homeheader-title {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 34px;
  margin-bottom: 10px;
  text-align: center;
  display: block;
}

.category-feature {
  padding: 0 0 30px 0;
}

.homeheader-section-title {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  padding: 35px 0 40px 0;
  text-align: center;
  display: block;
  color: #747475;
  position: relative;
}

.shop-category {
  margin-top: 40px;
}

.homeheader-section-title:after {
  content: '';
  position: absolute;
  bottom: 29px;
  left: 50%;
  margin-left: -16px;
  height: 1px;
  width: 26px;
  background: #747475;
}

.homeheader-featured-gear {
  border: 1px solid #fff;
  margin: 8px;
  padding: 20px 0 20px 0;
  border: 1px solid #fff;
  -o-transition: border .1s ease-out, border .35s ease-in;
  -ms-transition: border .1s ease-out, border .35s ease-in;
  -moz-transition: border .1s ease-out, border .35s ease-in;
  -webkit-transition: border .1s ease-out, border .35s ease-in;
  transition: border .1s ease-out, border .35s ease-in;
}

.homeheader-featured-gear:hover {
  border: 1px solid #d0d0d0;
}

.homeheader-subtitle {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  display: block;
  color: #747475;
}

.featured-gear-price {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  display: inline;
  color: #747475;
}

.featured-gear-price-deal {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  display: inline;
  color: #008fa1;
}

.featured-gear-rating {
  display: inline;
  margin: 0 auto;
  padding: 0 0 0 16px;
}

#billboard-category {
}

#billboard-category .flexcategory {
  margin: 0px auto;
  padding: 0 3px 0 3px;
  max-width: 800px;
  opacity: 1;
  -o-transition: opacity .1s ease-out, opacity .25s ease-in;
  -ms-transition: opacity .1s ease-out, opacity .25s ease-in;
  -moz-transition: opacity .1s ease-out, opacity .25s ease-in;
  -webkit-transition: opacity .1s ease-out, opacity .25s ease-in;
  transition: opacity .1s ease-out, opacity .25s ease-in;
}

#billboard-category .flexcategory:hover {
  margin: 0px auto;
  padding: 0 3px 0 3px;
  max-width: 800px;
  opacity: 0.7;
}

.flexcategory {
  zoom: 1;
  overflow: hidden;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

.flexcategory .main-billboard-category {
  zoom: 1;
}

.flexcategory .main-billboard-category img {
  width: 100%;
  display: block;
}

.flexcategory .main-billboard-category-content {
}

.flexcategory-main {
  position: absolute;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 29px;
  color: #fff;
  font-weight: 600;
  left: 0;
  right: 0;
  top: 40%;
  margin-left: auto;
  margin-right: auto;
  max-width: 585px;
}

.flexcategory-icon-holder {
  height: 50px;
  width: 30px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 30px;
  background-color: #008fa1;
}

.flexcategory-icon {
  position: absolute;
  bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  width: 10px;
}

.flexcategory .main-billboard-category .flexcategory-icon-holder img {
  width: 15px !important;
  margin: 6px auto;
}

ul.menu-social a.icomoon {
  font-size: 27px;
  line-height: 40px;
  color: white;
}

ul.menu-social a.icomoon:hover {
  color: #008fa1;
}

.instagram-feed {
  width: 75%;
  margin: 20px auto;
}

.carbon-neutral-footer {
  padding-right: 10px;
  width: 140px;
  position: relative;
}

.homepage-new {
  position: absolute;
  width: 11%;
  left: 10%;
  top: 6%;
}

.homepage-deal {
  position: absolute;
  width: 28%;
  left: 10%;
  top: 6%;
}

.nav-new-mobile {
    width: 35px;
    margin-left: -65px;
    position: absolute;
    top: 15px;
}
.nav-new-mobile-update {
    width: 59px;
    margin-left: -65px;
    position: absolute;
    top: 15px;
}

.nav-new-mobile-fp {
    width: 59px !important;
    margin-left: -50px !important;
    position: absolute !important;
    top: 103px !important;
}

.nav-new-mobile-sp5 {
    width: 59px !important;
    margin-left: -84px !important;
    position: absolute !important;
    top: 100px !important;
}

.nav-new-mobile-sp10 {
    width: 59px !important;
    margin-left: -89px !important;
    position: absolute !important;
    top: 168px !important;
}

.nav-new-mobile-flex {
    width: 59px !important;
    margin-left: -79px !important;
    position: absolute !important;
    top: 168px !important;
}

.nav-new-mobile-lid {
  width: 35px !important;
  margin-left: -89px !important;
  position: absolute !important;
  top: 244px !important;
}

.nav-new-mobile-cs {
  width: 59px !important;
  margin-left: -89px !important;
  position: absolute !important;
  top: 102px !important;
}

.nav-new-mobile-bundle {
    width: 59px !important;
    margin-left: -131px !important;
    position: absolute !important;
    top: 135px !important;
}
.nav-new-mobile-carry {
    width: 35px !important;
    margin-left: 0px !important;
    position: absolute !important;
    top: 245px !important;
}
.nav-new-mobile-charge20 {
    width: 35px !important;
    margin-left: 0px !important;
    position: absolute !important;
    top: 101px !important;
}
.nav-new-mobile-charge40 {
    width: 35px !important;
    margin-left: 0px !important;
    position: absolute !important;
    top: 168px !important;
}
.nav-new-mobile-charge80 {
    width: 35px !important;
    margin-left: 0px !important;
    position: absolute !important;
    top: 238px !important;
}
.nav-new-mobile-griddle {
  width: 35px !important;
  margin-left: -89px !important;
  position: absolute !important;
  top: 314px !important;
}

.nav-new-mobile-toolkit {
  width: 35px !important;
  margin-left: -114px !important;
  position: absolute !important;
  top: 381px !important;
}

.nav-new-mobile-sunlight {
  width: 35px !important;
  margin-left: -89px !important;
  position: absolute !important;
  top: 104px !important;
}

.nav-new-mobile-stuffsack {
  width: 35px !important;
  margin-left: -57px !important;
  position: absolute !important;
  top: 245px !important;
}

.nav-new-mobile-shs {
  width: 35px !important;
  margin-left: -92px !important;
  position: absolute !important;
  top: 104px !important;
}

.nav-new-stoves {
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/new-label-stoves-01.svg?10763986879895045547);
  background-size: 18%;
  background-position: 45% 80%;
  background-repeat: no-repeat;
  width: 180px;
  z-index: 5000;
}

.nav-new-power {
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/new-label-power-01.svg?10763986879895045547);
  background-size: 18%;
  background-position: 45% 80%;
  background-repeat: no-repeat;
  width: 180px;
}

.nav-new-lighting {
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/new-label-lighting-01.svg?10763986879895045547);
  background-size: 18%;
  background-position: 45% 80%;
  background-repeat: no-repeat;
  width: 180px;
}

.impact-title {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 33px;
  text-align: left;
  line-height: 36px;
}

.impact-by-the-numbers {
  background: #d9b845;
}

.documenting-the-journey {
  background: #d9b845;
  border-top: 1px dashed #fff;
  background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/rti-biker-bg.png?6547901806237113857");
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  height: 432px;
  padding-top: 45px;
}

.impact-section-title {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 34px;
  display: block;
}

.impact-section-subtitle {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 21px;
  line-height: 34px;
  text-align: left;
  display: block;
}

.impact-section-smalltitle {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 34px;
  text-align: center;
  display: block;
  margin: 25px 0 25px 0;
}

.sustainability-tri-col {
  margin-top: 20px;
  padding: 0 10px 0 10px;
}

.sustainability-tri-col img {
  padding: 0 20px 0 20px;
  margin-left: auto;
  margin-right: auto;
}

.impact-big-number {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 54px;
  line-height: 34px;
  color: white;
  display: block;
  text-align: center;
  letter-spacing: -1px;
}

.impact-small-desc {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: white;
  text-align: center;
  line-height: 24px;
}

.impact-text-blocks {
  margin-top: 85px;
  text-align: center;
}

.impact-icons {
  font-size: 30px;
  color: white;
  padding-bottom: 25px;
}

.impact-chapters {
  margin-left: 100px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #343435;
}

.impact-chapters a {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #343435;
  line-height: 24px;
  padding-left: 5px;
}

.impact-chapters a:hover {
  color: #464647;
  text-decoration: none;
}

#billboard-category {
}

#billboard-category .flexcategory {
  margin: 0px auto;
  padding: 0 3px 0 3px;
  max-width: 800px;
  opacity: 1;
  -o-transition: opacity .1s ease-out, opacity .25s ease-in;
  -ms-transition: opacity .1s ease-out, opacity .25s ease-in;
  -moz-transition: opacity .1s ease-out, opacity .25s ease-in;
  -webkit-transition: opacity .1s ease-out, opacity .25s ease-in;
  transition: opacity .1s ease-out, opacity .25s ease-in;
}

#billboard-category .flexcategory:hover {
  margin: 0px auto;
  padding: 0 3px 0 3px;
  max-width: 800px;
  opacity: 0.7;
}

.flexcategory {
  zoom: 1;
  overflow: hidden;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

.flexcategory .main-billboard-category {
  zoom: 1;
}

.flexcategory .main-billboard-category img {
  width: 100%;
  display: block;
}

.flexcategory .main-billboard-category-content {
}

.flexcategory-impact-main {
  position: absolute;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 21px;
  line-height: 25px;
  color: #fff;
  font-weight: 600;
  padding: 40px;
  left: 0;
  right: 0;
  top: 25%;
  margin-left: 3px;
  margin-right: 3px;
  max-width: 585px;
}

.flexcategory-icon-holder {
  height: 50px;
  width: 30px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 30px;
  background-color: #008fa1;
}

.flexcategory-icon {
  position: absolute;
  bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  width: 10px;
}

.flexcategory .main-billboard-category .flexcategory-icon-holder img {
  width: 15px !important;
  margin: 6px auto;
}

.impact-highlights {
  background-color: #2e2e2f;
}

.impact-sustainability {
  background: #d0ddec;
  background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/SustainabilityBG.jpg?1642318141325659885");
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  height: 1064px;
}

.sustainability-icons {
  font-size: 38px;
  color: #b4be41;
  padding-bottom: 12px;
  text-align: center;
  margin-top: 35px;
}

.impact-what-we-measure {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 12px;
  color: #2e2e2f;
  display: block;
  text-align: center;
}

.reaching-zero {
  clear: both;
  display: block;
  background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/impact-background_r2.jpg?13439191409259993693");
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  height: 831px;
  background-color: #f3f3f3;
}

.reaching-zero-column {
  padding-right: 150px;
}

.reaching-zero-big-number {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 65px;
  line-height: 34px;
  color: #b4be41;
  display: block;
  text-align: left;
  letter-spacing: -1px;
  margin: 45px 0 15px 0;
  padding: 0 225px 5px 0;
}

.stories-of-impact {
  background-color: #2e2e2f;
}

.stories-of-impact-header {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.impact-stories-icon {
  font-size: 18px;
  color: white;
  display: block;
  padding-bottom: 6px;
}

.future-home-diagram {
  width: 80%;
  float: right;
}

.stories-of-impact-header img {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.stories-of-impact-header p {
  padding: 0 100px 0 100px;
}

.community-link a {
  color: #fff;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-top: 15px;
  text-decoration: underline;
}

.nav-horizontal {
  border-bottom: 0px solid #e6e6e6;
}

.impact-logo {
  height: 28px;
  margin-right: 25px;
  margin-top: 13px;
}

.impact-report-sticky-title {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 0px;
  color: #2e2e2f;
  padding: 0 0 0 20px;
  border-left: 1px solid #7f7f7f;
  top: -4px;
  position: relative;
}

.impact-report-sticky-link {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 0px;
  color: #2e2e2f;
  padding: 0 0 0 20px;
  top: 18px;
  position: relative;
  text-align: right;
}

.impact-report-hero {
  width: 90%;
  float: right;
}

#2016-impact-report .bundle-number .inside-count {
  padding: 3px 10px 10px 10px;
}

@media only screen and (max-width: 1220px) and (min-width: 1025px) {
  #ProductPrice.h4 {
    font-size: 20px !important;
  }

  .impact-text a {
    font-size: 8px !important;
    line-height: 8px !important;
  }

  .impact-text-container {
    line-height: 8px !important;
    padding-left: 6px;
  }

  .upsell-product-title {
    line-height: inherit;
    max-width: 110px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
}

@media only screen and (min-width: 1650px) {
  .billboard-subhead {
    top: 130px;
    font-size: 22px;
  }

  .billboard-main {
    top: 173px;
    font-size: 50px;
  }

  .billboard-cta {
    top: 235px;
  }
}

@media only screen and (max-width: 1220px) and (min-width: 1108px) {
  .billboard-subhead {
    top: 75px;
    font-size: 22px;
  }

  .billboard-main {
    top: 115px;
    font-size: 50px;
  }

  .billboard-cta {
    top: 175px;
  }
}

@media only screen and (max-width: 1107px) and (min-width: 913px) {
  .billboard-subhead {
    top: 58px;
    font-size: 19px;
    line-height: 21px;
  }

  .billboard-main {
    top: 74px;
    font-size: 38px;
    line-height: 51px !important;
  }

  .billboard-cta {
    top: 140px;
  }

  .deal-of-the-day {
    background-color: #008fa1;
    color: #fff;
    font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-align: center !important;
    position: absolute;
    z-index: 1;
    padding: 10px 20px 10px 20px;
    border-radius: 1px;
    top: 3%;
    left: 76px;
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

/*change me tablet*/

@media only screen and (max-width: 912px) and (min-width: 480px) {
  .billboard-subhead {
    top: 72px;
    width: 100%;
    font-size: 21px;
    padding-left: 0;
    padding-right: 0px;
    text-align: center;
  }

  .billboard-main {
    top: 105px;
    width: 100%;
    font-size: 42px;
    padding-left: 0px;
    padding-right: 0px;
    text-align: center;
  }

  .billboard-cta {
    top: 178px;
    width: 100%;
    padding-left: 0;
    padding-right: 0px;
    text-align: center;
  }

  #billboard {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/FirePit_home_hero_tablet.jpg?v=1613694059") !important;
    background-size: 912px 600px !important;
    background-repeat: no-repeat;
    background-position: center;
    height: 65vh !important;
    min-height: 300px;
    max-height: 600px;
    background-size: cover !important;
  }

  #billboard img {
    opacity: 0;
    height: 600px !important;
  }
}

/*change me mobile*/


@media only screen and (max-width: 480px) {
  .billboard-cta {
    top: 105px;
    width: 100%;
    padding-left: 0;
    padding-right: 0px;
    text-align: center;
  }

  .billboard-subhead {
    top: 38px;
    width: 100%;
    font-size: 12px;
    padding-right: 0px;
    line-height: 16px;
    padding: 0 20px 0 20px;
    text-align: center;
  }

  .billboard-main {
    top: 61px;
    width: 100%;
    font-size: 27px;
    font-weight: 600;
    padding-left: 0px;
    padding-right: 0px;
    text-align: center;
  }

  #billboard {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/FirePit_home_hero_mobile.jpg?v=1613694058") !important;
    background-size: 480px 380px !important;
    background-repeat: no-repeat;
    background-position: center;
    height: 380px !important;
  }

  #billboard img {
    opacity: 0;
    height: 300px !important;
  }@  media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and ( min--moz-device-pixel-ratio: 2), only screen and ( -o-min-device-pixel-ratio: 2/1), only screen and ( min-device-pixel-ratio: 2), only screen and ( min-resolution: 192dpi), only screen and ( min-resolution: 2dppx) {
    #billboard {background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/FirePit_home_hero_mobile_2x_bf3124a2-bfa6-4c87-96ca-e536780d190e.jpg?v=1613694058") !important;
    background-size: 480px 380px !important;
    background-repeat: no-repeat;
    background-position: center;
    height: 380px !important;
    background-size: cover;
  }

  #billboard img {
    opacity: 0;
    height: 380px !important;
  }
}}

#timer {
  display: inline;
  border-bottom: 2px solid #fff;
}

@media only screen and (max-width: 912px) and (min-width: 480px) {
  .home-hero-play {
    font-size: 34px !important;
    color: #fff;
    top: 5px;
    padding: 0 6px 0 0;
    position: relative;
    display: inline;
    right: 0;
  }

  .billboard-subhead-2 {
    font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 27px;
    font-weight: 600;
    display: inline;
  }

  .billboard-main-gift-guide {
    font-size: 40px;
    line-height: 42px;
  }

  .billboard-subhead-gift-guide {
    top: 160px;
    line-height: 16px;
    font-size: 15px;
    padding-right: 10%;
    padding-left: 10%;
  }

  .deal-of-the-day {
    background-color: #008fa1;
    color: #fff;
    font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-align: center !important;
    position: absolute;
    z-index: 1;
    width: 100%;
    padding: 10px 20px 10px 20px;
    border-radius: 0px;
    top: 140px;
    left: 0;
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  #billboard-gift-guide {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/GiftGuide_hero_tablet.jpg?11944871911295066797") !important;
    background-size: 912px 600px !important;
    background-repeat: no-repeat;
    background-position: center;
    height: 600px !important;
    background-size: cover;
  }

  #billboard-gift-guide img {
    opacity: 0;
    height: 600px !important;
  }

  .billboard-tight {
    background-size: 912px 600px !important;
    background-repeat: no-repeat;
    background-position: center;
    height: 600px !important;
    background-size: cover;
  }

  #billboard-bwf {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/NanoGrid_hero_tablet_ca13d9c7-6751-4a3d-9220-9d4cb7fe6869.jpg?13230803072404907483") !important;
  }

  #billboard-tight {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/NanoGrid_hero_tablet_ca13d9c7-6751-4a3d-9220-9d4cb7fe6869.jpg?13230803072404907483") !important;
    background-size: 912px 600px !important;
    background-repeat: no-repeat;
    background-position: center;
    height: 600px !important;
    background-size: cover;
  }

  #billboard-tight-stoves {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/Stoves_Collection_hero__tablet_r2.jpg?7412335495121997817") !important;
    background-size: 912px 600px !important;
    background-repeat: no-repeat;
    background-position: center;
    height: 600px !important;
    background-size: cover;
  }

  #billboard-tight-giftguide {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/GiftGuide_hero_tablet_2020.png?v=1605657205") !important;
    background-size: 912px 600px !important;
    background-repeat: no-repeat;
    background-position: center;
    height: 600px !important;
    background-size: cover;
  }

  #billboard-tight-power {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/PowerCollection_hero_tablet.jpg?17250996615450985444") !important;
    background-size: 912px 600px !important;
    background-repeat: no-repeat;
    background-position: center;
    height: 600px !important;
    background-size: cover;
  }

  #billboard-tight img {
    opacity: 0;
    height: 600px !important;
  }

  #billboard-tight-stoves img {
    opacity: 0;
    height: 600px !important;
  }

  #billboard-tight-giftguide img {
    opacity: 0;
    height: 600px !important;
  }

  #billboard-tight-power img {
    opacity: 0;
    height: 600px !important;
  }

  .billboard-tight-main {
    top: 48px;
    width: 100%;
    line-height: 35px;
    font-size: 34px;
    font-weight: 600;
    padding: 0 20px 0 20px;
    text-align: center;
  }

  .billboard-tight-subhead {
    position: absolute;
    top: 130px;
    padding: 0 20px 0 20px;
    font-size: 15px;
    line-height: 18px;
  }

  .billboard-tight-cta {
    top: 162px;
  }

  #billboard-story {
    background-color: #000;
    background-image: url("https://cdn.shopify.com/s/files/1/2396/7729/files/OurStory_hero_tablet.jpg?14582575152084799218");
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
  }

  #billboard-story img {
    opacity: 0;
    height: 600px !important;
  }

  .billboard-story-subhead {
    top: 90px;
    font-size: 21px;
    text-align: center;
    padding-left: 0%;
  }

  .billboard-story-main {
    top: 105px;
    font-size: 45px;
    text-align: center;
    padding-left: 0%;
  }

  .billboard-story-cta {
    top: 200px;
    text-align: center;
    padding-left: 0%;
  }
}

@media only screen and (max-width: 768px) {
  #biolite-outdoor-amp-off-grid-energy-free-shipping-75-us-amp-canada .large--one-quarter {
    width: 50%;
  }

  .footer-social .large--one-half {
    width: 50%;
  }

  .video-caption {
    font-size: 19px !important;
    line-height: 22px !important;
    left: 0px;
    padding: 2px 10px 30px 10px !important;
    text-align: center;
    display: block;
    position: relative;
  }

  .mission-video-wrapper img {
    width: 100% !important;
    display: inline;
    position: relative;
  }

  .world-stat-block {
    margin-top: 32px !important;
  }

  .world-wrapper {
    background-image: none;
    height: 100%;
    background-position: 54% 0%;
    background-color: #fff;
  }

  .world-single-column {
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
  }

  .world-wrapper .large--one-sixth {
    width: 100%;
    padding-bottom: 5px;
  }

  .world-wrapper .large--five-sixths {
    width: 100%;
  }

  .world-icon {
    font-size: 28px;
    color: #808080;
  }

  .world-stat-block {
    display: inline-block;
    width: 100%;
    margin-top: 25px;
  }

  .world-stats {
    font-size: 29px;
  }
}

@media only screen and (max-width: 480px) {
  .modular-lighting {
    padding: 40px 20px 20px 20px !important;
  }

  .upsell-product-title {
    line-height: inherit;
    max-width: 110px;
    font-size: 12px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }

  .lantern-sprite {
    width: 160px !important;
    height: 160px !important;
    background-size: cover;
    display: inline-block;
    background-image: url("https://s3-us-west-2.amazonaws.com/biolitewebsite/collection/lanterns-sprite@2x.png");
    -webkit-animation: lanterns 90s infinite;
  }

  .stringlight-sprite {
    width: 160px !important;
    height: 160px !important;
    background-size: cover;
    display: inline-block;
    background-image: url("https://s3-us-west-2.amazonaws.com/biolitewebsite/collection/stringlights-sprite@2x.png");
    -webkit-animation: stringlights 90s infinite;
  }

  .modular-lighting h4 {
    font-size: 20px;
  }

  .impact-logo {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    height: 22px;
  }

  .shop-category {
    margin-top: 0px;
  }

  .no-padding-mobile {
    padding: 0 !important;
  }

  #billboard-category .flexcategory {
    padding: 0 !important;
  }

  .world-video {
    background-color: rgba(255, 255, 255, 0);
    border: 0px solid #f3f3f3;
  }

  .world-video video {
    width: 100%;
  }

  .world-lead-in {
    margin-top: 10px;
    color: #444444 !important;
    padding-right: 10px !important;
    padding-left: 10px !important;
    text-align: center;
  }

  .product-grid-item__footer {
    height: 97px !important;
  }

  #biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .product-grid-item__inner, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers .product-grid-item__inner, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits .product-grid-item__inner, #biolite-holiday-gift-guide .product-grid-item__inner {
    height: 190px !important;
  }

  #biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .list-toggle__title, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers .list-toggle__title, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits .list-toggle__title, #biolite-holiday-gift-guide .list-toggle__title {
    font-size: 15px !important;
    padding: 20px 0 20px 10px !important;
  }

  .right-light-headline {
    font-size: 25px !important;
    line-height: 28px !important;
  }

  .job-section {
    padding: 0 0 0 0 !important;
  }

  .job-wayfinding-benefits {
    top: 0;
    text-align: center;
    padding: 20px 0 0 0;
    left: 0;
  }

  .job-section-lights {
    display: inline !important;
  }

  .job-section-desc {
    font-size: 16px !important;
    line-height: 21px !important;
    width: 80% !important;
  }

  .job-wayfinding-benefits-item {
    font-size: 13px !important;
    line-height: 16px !important;
    font-weight: 600;
    font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  }

  .job-section-lights li {
    width: 100% !important;
    display: block !important;
    border-right: none !important;
    padding: 20px 0 56px 20px !important;
    margin: 0 0 40px 0;
  }

  .job-section .large--one-sixth {
    width: 20%;
  }

  .job-section .large--five-sixths {
    width: 80%;
  }

  .collection-feature-list ul {
    padding: 12px 24px 0 30px !important;
  }

  .collection-feature-list .icomoon {
    margin: 15px 6px 7px 0 !important;
  }

  .collection-feature {
    height: 100% !important;
    padding: 0 0 20px 0 !important;
  }

  .home-hero-play {
    font-size: 34px !important;
    color: #fff;
    top: 5px;
    padding: 0 6px 0 0;
    position: relative;
    display: inline;
    right: 0;
  }

  .billboard-subhead-2 {
    font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 27px;
    font-weight: 600;
    display: inline;
  }

  .deal-of-the-day {
    background-color: #008fa1;
    color: #fff;
    font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-align: center !important;
    position: absolute;
    z-index: 1;
    width: 100%;
    padding: 6px 20px 6px 20px;
    border-radius: 0px;
    top: 124px;
    left: 0;
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  .billboard-main-gift-guide {
    top: 64px;
    width: 100%;
    font-size: 23px;
    font-weight: 600;
    padding-left: 0px;
    text-align: center;
  }

  .billboard-subhead-gift-guide {
    top: 114px;
    width: 100%;
    font-size: 16px !important;
    line-height: 17px;
    font-weight: 300;
    padding-left: 3%;
    padding-right: 3%;
    text-align: center;
  }

  .billboard-tight-main {
    top: 44px;
    width: 100%;
    line-height: 25px;
    font-size: 24px;
    font-weight: 600;
    padding: 0 20px 0 20px;
    text-align: center;
  }

  .billboard-tight-subhead {
    position: absolute;
    top: 83px;
    padding: 0 20px 0 20px;
    font-size: 12px;
    line-height: 14px;
  }

  .billboard-tight-cta {
    top: 293px;
  }

  .billboard-tight-cta-msg {
    font-size: 15px;
  }

  .collection-hero-play {
    font-size: 30px !important;
  }

  .nanogrid-icon-background img {
    display: none;
  }

  #billboard-gift-guide {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/GiftGuide_hero_mobile.jpg?11944871911295066797") !important;
    background-size: 480px 380px !important;
    background-repeat: no-repeat;
    background-position: center;
    height: 380px !important;
  }

  #billboard-gift-guide img {
    opacity: 0;
    height: 300px !important;
  }

  #billboard-tight {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/NanoGrid_hero_mobile_r2.jpg?90980507307643577") !important;
    background-size: 480px 380px !important;
    background-repeat: no-repeat;
    background-position: center;
    height: 380px !important;
  }

  #billboard-tight-stoves {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/Stoves_Collection_hero__mobile_r2.jpg?5174419164920034897") !important;
    background-size: 480px 380px !important;
    background-repeat: no-repeat;
    background-position: center;
    height: 380px !important;
  }

  #billboard-tight-giftguide {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/GiftGuide_hero_mobile_2x_dba980af-f4dd-4e37-8e5e-a42756d4a835.png?v=1605656419") !important;
    background-size: 480px 380px !important;
    background-repeat: no-repeat;
    background-position: center;
    height: 380px !important;
  }

  #billboard-tight-power {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/PowerCollection_hero_mobile.jpg?17250996615450985444") !important;
    background-size: 480px 380px !important;
    background-repeat: no-repeat;
    background-position: center;
    height: 380px !important;
  }

  #billboard-tight img {
    opacity: 0;
    height: 300px !important;
  }

  #billboard-tight-stoves img {
    opacity: 0;
    height: 300px !important;
  }

  #billboard-tight-giftguide img {
    opacity: 0;
    height: 300px !important;
  }

  #billboard-tight-power img {
    opacity: 0;
    height: 300px !important;
  }

  #billboard-story {
    background-color: #000;
    background-image: url("https://cdn.shopify.com/s/files/1/2396/7729/files/OurStory_hero_mobile.jpg?14582575152084799218");
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
  }

  #billboard-story img {
    opacity: 0;
    height: 600px !important;
  }

  .billboard-story-subhead {
    top: 60px;
    font-size: 18px;
    text-align: center;
    padding-left: 0%;
  }

  .billboard-story-main {
    top: 78px;
    font-size: 36px;
    text-align: center;
    padding-left: 0%;
  }

  .billboard-story-cta {
    top: 150px;
    text-align: center;
    padding-left: 0%;
  }@  media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and ( min--moz-device-pixel-ratio: 2), only screen and ( -o-min-device-pixel-ratio: 2/1), only screen and ( min-device-pixel-ratio: 2), only screen and ( min-resolution: 192dpi), only screen and ( min-resolution: 2dppx) {
    #billboard-gift-guide {background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/GiftGuide_hero_mobile_2x_2cc78913-c856-4a49-902e-a1f8fa1df71c.jpg?11944871911295066797") !important;
    background-size: 480px 380px !important;
    background-repeat: no-repeat;
    background-position: center;
    height: 380px !important;
    background-size: cover;
  }

  #billboard-gift-guide img {
    opacity: 0;
    height: 380px !important;
  }

  #billboard-tight {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/NanoGrid_hero_mobile_2x_e483b87f-f576-4bda-8596-127c9b89ca5c.jpg?8755713611551771591") !important;
    background-size: 480px 380px !important;
    background-repeat: no-repeat;
    background-position: center;
    height: 380px !important;
    background-size: cover;
  }

  #billboard-tight img {
    opacity: 0;
    height: 380px !important;
  }

  #billboard-tight-stoves {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/Stoves_Collection_hero__mobile_2x_r2.jpg?5174419164920034897") !important;
    background-size: 480px 380px !important;
    background-repeat: no-repeat;
    background-position: center;
    height: 380px !important;
    background-size: cover;
  }

  #billboard-tight-giftguide {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/GiftGuide_hero_mobile_2x_dba980af-f4dd-4e37-8e5e-a42756d4a835.png?v=1605656419") !important;
    background-size: 480px 380px !important;
    background-repeat: no-repeat;
    background-position: center;
    height: 380px !important;
    background-size: cover;
  }

  #billboard-tight-power {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/PowerCollection_hero_mobile_2x_061c1521-cfde-4990-9398-0daf3ab8a987.jpg?17250996615450985444") !important;
    background-size: 480px 380px !important;
    background-repeat: no-repeat;
    background-position: center;
    height: 380px !important;
    background-size: cover;
  }

  #billboard-tight-stoves img {
    opacity: 0;
    height: 380px !important;
  }

  #billboard-tight-giftguide img {
    opacity: 0;
    height: 380px !important;
  }

  #billboard-tight-power img {
    opacity: 0;
    height: 380px !important;
  }

  #billboard-story {
    background-image: url("https://cdn.shopify.com/s/files/1/2396/7729/files/OurStory_hero_mobile_2x_8e648b15-f63d-4cea-b9c3-ad283512a5d9.jpg?14582575152084799218") !important;
    background-size: 480px 380px !important;
    background-repeat: no-repeat;
    background-position: center;
    height: 380px !important;
    background-size: cover;
  }
}}

@media only screen and (max-width: 480px) {
  .footer-social .large--one-half {
    width: 50%;
  }

  .desktop-break {
    display: inline;
  }

  .homeheader-section-title {
    padding: 45px 0 20px 0;
  }

  .homeheader-section-title:after {
    bottom: 15px;
  }

  .homeheader-featured-gear {
    padding: 10px 0 12px 0;
  }

  .featured-gear-price {
    font-size: 13px;
  }

  .homeheader-title {
    font-size: 17px;
    line-height: 21px;
  }

  .mobile-padding-fix {
    padding: 20px 10px 0 10px !important;
  }

  .mobile-padding {
    padding: 0px 20px 0 20px !important;
  }

  .impact-report-sticky-title {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    border-left: 0px solid #7f7f7f;
    line-height: 50px;
    font-size: 16px;
  }

  .impact-report-hero {
    width: 100%;
  }

  .impact-text-blocks {
    margin-top: 20px;
    text-align: center;
    border-bottom: 1px solid #fff;
    padding: 20px 0 20px 0;
  }

  .impact-chapters {
    margin-left: 0px;
    padding: 0 0 0 20px;
  }

  .impact-section-title {
    font-weight: 600;
    font-size: 26px;
    line-height: 34px;
  }

  .documenting-the-journey {
    background-image: none;
    border-top: none;
    height: 100%;
    padding: 0 20px 0 20px;
  }

  .stories-of-impact-header p {
    padding: 0 10px 0 10px;
  }

  .sustainability-tri-col .large--one-third {
    width: 33%;
  }

  .impact-sustainability {
    background: #d0ddec;
    background-image: none;
    height: 100%;
  }

  .reaching-zero-column {
    padding: 0 10px 0 10px;
  }

  .reaching-zero {
    clear: both;
    display: block;
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/impact-background_mobile_2.jpg?14307659935845283849");
    background-repeat: no-repeat;
    background-position: 61% 48%;
    overflow: hidden;
    height: 800px;
    background-color: #f3f3f3;
  }

  .reaching-zero-big-number {
    font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 800;
    font-size: 65px;
    line-height: 34px;
    color: #b4be41;
    display: block;
    text-align: center;
    letter-spacing: -1px;
    margin: 45px 0 15px 0;
    padding: 0;
    border-bottom: 0px solid #b4be41;
  }

  .stories-of-impact .large--one-quarter {
    width: 50%;
  }

  .future-home-diagram {
    width: 100%;
    float: none;
  }

  .app-hero {
    padding: 40px 10px 0 10px;
  }
}

@media only screen and (max-width: 1024px) {
  #2016-impact-report .nav-horizontal--products {
    height: 60px !important;
  }

  .mobile-text-center {
    text-align: center !important;
    margin: 0 auto !important;
  }

  #tent-time {
    padding: 0 0 40px 0;
  }

  #wayfinding {
    padding: 40px 0 0 0;
  }

  .lighting-gallery-wrapper {
    padding: 30px 0 0 0 !important;
  }

  .job-wayfinding {
    background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/WayfindingBG_r2-1_mobile_r2.jpg?11922140135526648001) !important;
    height: 270px !important;
    overflow: hidden;
    margin: 30px 0 30px 0;
    background-size: 600px 270px !important;
    background-repeat: no-repeat;
    background-position: 62% 0% !important;
  }

  .job-setup {
    background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/SetupBG_mobile.jpg?3936581275021835285) !important;
    height: 270px !important;
    overflow: hidden;
    margin: 30px 0 30px 0;
    background-size: 600px 270px !important;
    background-repeat: no-repeat;
    background-position: 62% 0% !important;
  }

  .job-meal-prep {
    background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/MealPrepBG_mobile.jpg?13301087592087129732) !important;
    height: 270px !important;
    overflow: hidden;
    margin: 30px 0 30px 0;
    background-size: 600px 270px !important;
    background-repeat: no-repeat;
    background-position: 62% 0% !important;
  }

  .job-hangout {
    background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/HangoutBG_mobile.jpg?13301087592087129732) !important;
    height: 270px !important;
    overflow: hidden;
    margin: 30px 0 30px 0;
    background-size: 600px 270px !important;
    background-repeat: no-repeat;
    background-position: 82% 0% !important;
  }

  .job-tent-time {
    background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/TentTimeBG_mobile.jpg?13301087592087129732) !important;
    height: 270px !important;
    overflow: hidden;
    margin: 30px 0 30px 0;
    background-size: 600px 270px !important;
    background-repeat: no-repeat;
    background-position: 62% 0% !important;
  }

  .job-section-light-desc {
    padding: 0 20px 46px 35px !important;
  }

  .job-wayfinding-benefits {
    line-height: 39px !important;
    font-size: 15px !important;
    top: 14px !important;
    left: 40px !important;
    text-align: left !important;
  }

  #biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights #product-features-and-specs .tabs > li, #biolite-holiday-gift-guide #product-features-and-specs .tabs > li, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers #product-features-and-specs .tabs > li, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits #product-features-and-specs .tabs > li {
    padding: 10px 10px 14px 10px !important;
  }
}

@media only screen and (max-width: 1068px) {
  .footer-social .large--one-third {
    width: 100%;
  }

  .footer-contact {
    font-size: 32px !important;
    color: white;
    line-height: 0px !important;
    display: block;
    margin: 0 0px 30px 0;
    text-align: center;
    top: 0;
    left: 0;
  }

  .footer-title, .footer-title a {
    font-size: 16px;
    line-height: 18px;
    color: white;
    display: block;
    padding: 0 0 0 0;
    text-align: center;
  }

  .footer-secondary-title, .footer-secondary-title a {
    font-size: 12px;
    line-height: 14px;
    display: block;
    padding: 0 0 0 0;
    margin: 0 0 30px 0;
    text-align: center;
  }
}

*::-webkit-media-controls-start-playback-button {
  display: none!important;
  -webkit-appearance: none;
}

.landing-main-wrapper {
  position: absolute;
  top: 290px;
  text-align: center;
  z-index: 10;
  width: 800px;
  margin-left: -400px;
  left: 50%;
}

.landing-main {
  display: block;
  width: 100%;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 90px;
  color: #fff;
  font-weight: 600;
  padding: 0 0 2px 0;
}

.landing-lead-in {
  font-family: 'Oswald', sans-serif;
  display: block;
  font-size: 26px;
  line-height: 21px;
  color: #fff;
  font-weight: 300;
  text-align: center;
  padding: 0 0 8px 0;
  text-transform: uppercase;
}

.landing-new-features {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 21px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  line-height: 80px;
}

.landing-new-features ul li {
  display: inline-block;
  padding: 20px;
}

.landing-new-features ul li:after {
  content: '';
  position: absolute;
  height: 20px;
  margin: 28px 0 0 21px;
  width: 1px;
  background: #fff;
}

.landing-new-features ul li:last-child:after {
  width: 0px;
}

.landing-feature-video {
  padding: 10px 0 0 0;
}

.landing-play-button {
  color: #fff;
  top: 6px;
  position: relative;
  padding: 0 5px 0 0;
  font-size: 32px !important;
}

.landing-play {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 21px;
  line-height: 21px;
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.keep-scrolling {
  position: absolute;
  top: 98vh;
  transform: translateY(-100%);
  width: 800px;
  margin-left: -400px;
  left: 50%;
  z-index: 1000;
  text-align: center;
}

.keep-scrolling-arrow {
  color: #fff;
  top: 6px;
  position: relative;
  padding: 0 0 0 0;
  font-size: 21px !important;
  display: block;
}

.scrolling-msg {
  color: #fff;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 2px;
  font-weight: 600;
  text-transform: uppercase;
}

.landing-section-hero {
  height: 80vh;
  overflow: hidden;
  position: relative;
}

.col-flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
}

.col-flex > * {
}

.landing-section-mini {
  height: 50vh;
}

.vh95 img {
  height: 95vh !important;
}

.vh50 {
  height: 50vh;
}

.vh90 img {
  height: 90vh !important;
}

.vh10 {
  height: 10vh !important;
}

.vh20 {
  height: 20vh !important;
}

.vh20 img {
  height: 20vh !important;
}

.vh80 img {
  height: 80vh !important;
}

.vh85 img {
  height: 85vh !important;
  overflow: hidden;
}

.vh60 img {
  height: 60vh !important;
}

.vh75 img {
  height: 75vh !important;
}

.landing-section—first {
  height: 90vh;
}

.landing-section-header {
  display: block;
  width: 100%;
}

.landing-section-desc {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: block;
  font-size: 142%;
  line-height: 141%;
  font-weight: 300;
  padding-right: 6%;
  padding-bottom: 16%;
}

.landing-feature-main-button {
  margin-right: 20px;
}

.closing-feature-main-button {
  margin-right: 20px;
}

.image-center {
  display: block;
  margin: auto;
}

.col-padding-right {
  padding-right: 120px;
}

.col-padding-left {
  padding-left: 120px;
}

.tech-components {
  display: block;
  margin: 0 0 35px 0;
}

.tech-components-icon {
  font-size: 36px !important;
  padding: 0 14px 0 0;
  position: relative;
  top: 6px;
}

.tech-components-caption {
  font-size: 182%;
  line-height: 141%;
  font-weight: 600;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 0 0 0 0;
}

.product-alert-notice {
  font-size: 16px !important;
  color: #8e90b4 !important;
}

.product-alert-notice-highlight {
  background-color: #fff !important;
  color: #cc4e20 !important;
  border: 0px solid #cc4e20;
  border-radius: 2px;
  margin: 0 4px 0 0;
}

@media only screen and (max-width: 480px) {
  .product-alert-notice {
    padding: 15px 0 0 0 !important;
    font-size: 16px !important;
  }
}

.button-caption {
  position: relative;
  bottom: -8px;
  left: 101px;
  display: block;
  font-size: 19px;
  font-weight: 600;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #008fa1;
}

@media only screen and (max-width: 1620px) {
  .landing-main-wrapper {
  }
}

@media only screen and (max-width: 1441px) {
  .landing-section-desc {
    font-size: 135%;
    line-height: 137%;
    padding-right: 1%;
  }

  .camp-kitchen-bundles img {
    margin: 0px auto 5px auto;
  }

  .add-accessories-plus {
    margin-top: 50%;
  }
}

@media only screen and (max-width: 769px) {
  .mission-video-wrapper {
    max-width: 100% !important;
  }

  .no-padding-mobile {
    padding: 0 !important;
  }

  #billboard-category .flexcategory {
    padding: 0 !important;
  }

  .world-video {
    background-color: rgba(255, 255, 255, 0);
    border: 0px solid #f3f3f3;
  }

  .world-video video {
    width: 100%;
  }

  .world-lead-in {
    margin-top: 10px;
    color: #444444 !important;
    padding-right: 10px !important;
    padding-left: 10px !important;
    text-align: center;
  }

  .landing-main {
    font-size: 35px;
    padding: 40px 0 2px 0;
  }

  .landing-lead-in {
    padding: 0 20px 8px 20px;
    font-size: 12px;
    line-height: 16px;
  }

  .landing-new-features {
    line-height: 2px;
  }

  .landing-new-features ul li:after {
    width: 0px;
  }

  .vh95 img {
    height: inherit !important;
  }

  .vh90 img {
    height: inherit !important;
  }

  .vh85 img {
    height: inherit !important;
  }

  .vh75 img {
    height: inherit !important;
  }
}

@media only screen and (max-width: 480px) {
  .button-caption {
    left: 3px;
  }

  .closing-feature-main-button {
    margin-bottom: 20px;
  }

  .tech-components-icon {
    padding: 10px 2px 0 0;
  }

  .tech-components-wrapper {
    margin: 0 auto;
    text-align: center;
  }

  .col-flex > * {
    flex: 1 100%;
  }

  .col-flex-bottom {
    order: 2;
  }

  .col-flex-top {
    order: 1;
  }

  .grid-center {
    float: none !important;
    margin: 0 auto;
  }

  .hide-on-mobile-480 {
    display: none !important;
  }

  .quick-specs {
    height: 645px;
  }

  .quick-specs .large--one-sixth {
    width: 50% !important;
  }

  .quick-specs-icons {
    font-size: 40px !important;
    margin: 46px auto 0 auto;
  }

  .quick-specs-subhead {
    font-size: 105%;
    line-height: 98%;
    padding: 7px 0 0 0;
  }

  .quick-specs-header {
    padding: 18px 0 0 0;
  }

  .col-padding-right {
    padding-right: 0px;
  }

  .col-padding-left {
    padding-left: 0px;
  }

  .keep-scrolling {
    display: none;
  }

  .tech-components {
    display: inline;
    position: relative;
    margin: 0 16px 0 0;
    text-align: center;
  }

  .tech-components-caption {
    font-size: 122%;
    display: inline-block;
    text-align: center;
  }

  .tech-components-icon {
    text-align: center;
    display: inline-block;
    font-size: 24px !important;
    position: relative;
    top: 4px;
  }

  .moab-slideshow img {
    height: inherit;
  }
}

.collection-feature {
  height: 382px;
  background-color: #fff;
  border: 1px solid #fff;
  margin: 10px;
}

.collection-feature-list-footnote {
  font-size: 10px;
  font-weight: 300;
  font-style: italic;
  padding: 35px 0 0 60px;
}

.collection-feature-title, .app-feature-title {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  background-color: #008fa1;
  color: #fff;
  padding: 3px 10px 3px 10px;
  position: absolute;
  border-radius: 1px;
  margin: -10px 0 0 9px;
}

.collection-feature-list, .app-feature-title {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  display: inline;
  color: #444444;
}

.collection-feature-list ul {
  padding: 30px 24px 0 30px;
}

.app-feature-list ul {
  padding: 5px 24px 0 0;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 15px;
}

.collection-feature-list .icomoon {
  display: inline-block;
  margin: 26px 6px 7px 0;
  padding: 0 0 0 0;
  text-align: left;
  color: #008fa1;
  position: relative;
  font-size: 26px;
  left: -6px;
  top: 4px;
}

.app-feature-list .icomoon {
  display: inline-block;
  margin: 14px 12px 7px 0;
  padding: 0 0 0 0;
  text-align: left;
  color: #008fa1;
  position: relative;
  font-size: 26px;
  left: -6px;
  top: 4px;
}

.collection-feature-icon {
  font-size: 25px;
  padding: 0 4px 0 0;
}

#biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .compare-table.table-with-footer, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers .compare-table.table-with-footer, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits .compare-table.table-with-footer, #biolite-holiday-gift-guide .compare-table.table-with-footer {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}

#biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .list-toggle__content, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers .list-toggle__content, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits .list-toggle__content, #biolite-holiday-gift-guide .list-toggle__content {
  display: none;
  padding: 12px 0px;
  color: #a8a8a8;
  background-color: #fff;
}

#biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .compare-table.table-with-footer tbody tr > :first-child, .compare-table.table-with-footer thead tr > th:first-child, .compare-table.table-with-footer tfoot tr > td:first-child {
  width: 25%;
}

#biolite-shop-portable-solar-panels-amp-usb-battery-chargers .compare-table.table-with-footer tbody tr > :first-child, .compare-table.table-with-footer thead tr > th:first-child, .compare-table.table-with-footer tfoot tr > td:first-child {
  width: 25%;
}

#biolite-shop-portable-camp-stoves-grills-amp-fire-pits .compare-table.table-with-footer tbody tr > :first-child, #biolite-holiday-gift-guide .compare-table.table-with-footer tbody tr > :first-child, .compare-table.table-with-footer thead tr > th:first-child, .compare-table.table-with-footer tfoot tr > td:first-child {
  width: 25%;
}

.compare-table td, .compare-table th {
  text-align: left;
  font-weight: 300;
  border-right: 1px dashed #cfcfd0;
  height: 70px;
  position: relative;
  padding: 10px 20px 10px 40px;
}

#biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .list-toggle__title {
  font-size: 19px;
  color: #444444;
  font-weight: 600;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 33px 0px;
  -webkit-transition: background-color .3s ease;
  -moz-transition: background-color .3s ease;
  transition: background-color .3s ease;
}

#biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .list-toggle__title:hover {
  color: #fff;
  background-color: #8F90B3;
}

#biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .list-toggle__title:hover > .category-compare-title {
  color: #fff;
}

#biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .list-toggle__title:hover > .category-compare-title:before {
  color: #fff;
}

#biolite-shop-portable-solar-panels-amp-usb-battery-chargers .list-toggle__title {
  font-size: 19px;
  color: #444444;
  font-weight: 600;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 33px 0px;
  -webkit-transition: background-color .3s ease;
  -moz-transition: background-color .3s ease;
  transition: background-color .3s ease;
}

#biolite-shop-portable-solar-panels-amp-usb-battery-chargers .list-toggle__title:hover {
  color: #fff;
  background-color: #EEAE13;
}

#biolite-shop-portable-solar-panels-amp-usb-battery-chargers .list-toggle__title:hover > .category-compare-title {
  color: #fff;
}

#biolite-shop-portable-solar-panels-amp-usb-battery-chargers .list-toggle__title:hover > .category-compare-title:before {
  color: #fff;
}

#biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .list-toggle, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers.list-toggle, #biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .compare-table tfoot tr, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers .compare-table tfoot tr, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits .compare-table tfoot tr, #biolite-holiday-gift-guide .compare-table tfoot tr {
  border-bottom: 0px;
}

#biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .list-toggle__title .fa, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers .list-toggle__title .fa, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits .list-toggle__title .fa, #biolite-holiday-gift-guide .list-toggle__title .fa {
  color: #008fa1;
  margin-right: 5px;
}

#biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .compare-table tbody tr > :first-child, .compare-table thead tr > th:first-child, .compare-table tfoot tr > td:first-child, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers .compare-table tbody tr > :first-child, .compare-table thead tr > th:first-child, .compare-table tfoot tr > td:first-child, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits .compare-table tbody tr > :first-child, .compare-table thead tr > th:first-child, .compare-table tfoot tr > td:first-child, #biolite-holiday-gift-guide .compare-table tbody tr > :first-child, .compare-table thead tr > th:first-child, .compare-table tfoot tr > td:first-child {
  color: #777777;
  font-weight: 600;
  font-size: 18px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  text-align: left;
  padding-left: 45px;
}

#biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .compare-table td:last-child, .compare-table th:last-child, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers.compare-table td:last-child, .compare-table th:last-child, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits .compare-table td:last-child, .compare-table th:last-child, #biolite-holiday-gift-guide .compare-table td:last-child, .compare-table th:last-child {
  border-right: 0px dashed #cfcfd0;
}

#biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights #product-features-and-specs .tabs, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers #product-features-and-specs .tabs, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits #product-features-and-specs .tabs, #biolite-holiday-gift-guide #product-features-and-specs .tabs {
  height: 58px;
}

#biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .compare-table img, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers .compare-table img, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits .compare-table img, #biolite-holiday-gift-guide .compare-table img {
  width: 45%;
  padding: 0 0 20px 0;
}

#biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .product-grid-item__footer, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers .product-grid-item__footer, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits .product-grid-item__footer, #biolite-holiday-gift-guide .product-grid-item__footer {
  height: 125px;
}

#biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .product-grid-item__inner, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers.product-grid-item__inner, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits .product-grid-item__inner, #biolite-holiday-gift-guide .product-grid-item__inner {
  height: 250px;
}

.shop-all-footer {
  padding: 80px 0 100px 0;
}

.shop-all-footer-buttons {
  margin: 0 10px 0 0;
}

.job-headline {
  padding: 0 0 0 0;
}

.job-section-images {
  padding: 30px 0 0 0;
}

.lighting-product-callout a {
  background-color: #8F90B3;
  padding: 3px 5px 3px 5px;
  font-weight: 800;
  color: #fff;
  border-radius: 1px;
  margin: 0 2px 0 2px;
}

.lighting-product-callout a:hover {
  background-color: #8081a6;
}

.modular-lighting {
  padding: 80px 0 80px 0;
}

.nanogrid-icon-background img {
  opacity: 0.2;
  width: 195px !important;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  top: 25px;
}

.collection-section-title {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 26px;
  padding: 5px 0 20px 0;
  text-align: center;
  display: block;
  color: #2d2d2d;
  position: relative;
}

.product-grid-item__footer-category {
  height: 187px;
}

.category-compare-title {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 21px;
  position: relative;
  top: 5px;
  color: #747475;
}

.category-compare-title-expanded {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 21px;
  position: relative;
  top: 5px;
  color: #747475;
}

.compare-icon {
  background-color: #8F90B3;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 40px;
  border: 2px solid #fff;
  text-align: center;
  font-size: 25px !important;
  line-height: 32px;
  position: absolute;
  margin-top: 12px;
  padding: 11px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.holiday-shipping-icon {
  width: 120px;
  padding: 20px 0 0 0;
  line-height: 22px !important;
}

.compare-icon-stoves {
  background-color: #cd3d32;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 40px;
  border: 2px solid #fff;
  text-align: center;
  font-size: 25px !important;
  line-height: 32px;
  position: absolute;
  margin-top: -46px;
  padding: 11px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.compare-icon-power {
  background-color: #EEAE13;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 40px;
  border: 2px solid #fff;
  text-align: center;
  font-size: 25px !important;
  line-height: 32px;
  position: absolute;
  margin-top: -46px;
  padding: 11px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.product-grid-item .you-save-category {
  top: 1px;
  height: 27px;
  margin-bottom: 10px;
}

.you-save-category {
  border: 1px solid #008fa1;
  display: inline-block;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 11px;
  position: relative;
  padding: 0px;
  margin: 0px;
  font-weight: 700;
}

.you-save-category-no-border {
  border: 0px solid #008fa1;
  display: inline-block;
  color: #008fa1;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 11px;
  position: relative;
  padding: 0px;
  margin: 0px;
  font-weight: 700;
  top: 10px;
  height: 27px;
  margin-bottom: 10px;
}

.category-shop-buttons {
  padding: 20px 0 20px 0;
}

.collection-section-title:after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 50%;
  margin-left: -16px;
  height: 1px;
  width: 26px;
  background: #747475;
}

.product-grid-item__thumb {
  background-size: 90%;
}

.kits-slideshow {
  padding: 0 10px 0 10px;
  margin: 0 0 39px 0;
}

.kits-slideshow-controls {
  top: 50% !important;
  width: 93% !important;
  margin-left: 2% !important;
  position: absolute !important;
}

.kits-slideshow-arrow-icon {
  font-size: 27px !important;
  padding: 10px;
  margin: 0 auto;
  color: rgba(0, 178, 176, 0.9);
}

.product-grid-item__sub-title {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  margin-top: 2px;
  margin-bottom: 4px;
  font-size: 12px;
  line-height: 10px;
  color: #828282;
}

.kits-grid-item-title {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  font-size: 11px;
  line-height: 13px;
  font-weight: 600;
  position: relative;
  top: -5px;
}

.collection-section-subtitle {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 0px;
  padding: 5px 0 40px 0;
  text-align: center;
  display: block;
  color: #404040;
  position: relative;
}

.product-grid-item__thumb-small {
  background-size: 90%;
}

.product-grid-item__inner-small {
  position: relative;
  width: 82%;
  margin: 0 auto;
}

.lantern-sprite {
  width: 275px;
  height: 275px;
  display: inline-block;
  background-image: url("https://s3-us-west-2.amazonaws.com/biolitewebsite/collection/lanterns-sprite.png");
  -webkit-animation: lanterns 90s infinite;
  -moz-animation: lanterns 90s infinite;
  animation: lanterns 90s infinite;
}

.lighting-gallery-wrapper {
  padding: 60px 0 0 0;
  background: url(https://cdn.shopify.com/s/files/1/0666/9741/files/stars.png?6116994992033317979), linear-gradient(#06091f, #040617);
}

.lighting-gallery {
  padding: 0 0;
  position: relative;
  padding: 70px 0 0 0;
}

.lighting-gallery h3 {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}

.lighting-gallery p {
  font-weight: 300;
  font-size: 13px;
  color: #fff;
}

.lighting-gallery h2 {
  padding: 0 20px;
  margin-bottom: 20px;
  box-sizing: border-box;
}

.lighting-gallery h2 small {
  white-space: normal;
  width: 230px;
}

.lighting-gallery h2 .desktop {
  display: none;
}

.lighting-gallery h2 .mobile {
  display: inline-block;
}

.lighting-gallery .container p {
  font-weight: 300;
  padding: 0 20px;
  color: #fff;
  font-size: 14px;
  line-height: 120%;
}

.right-light-desc {
  padding: 20px 50px 0 0;
}

.right-light-icon {
  font-size: 48px !important;
  padding: 0 4px 0 0;
}

.right-light-title {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 26px;
  display: inline;
  color: #fff;
  line-height: 48px;
}

.right-light-product-desc {
  color: #fff;
  font-weight: 300;
  font-size: 12px;
  line-height: 14px;
}

.right-light h6 {
  padding: 15px 0 0 0;
  margin: 0 0 7px 0;
}

.right-light ul {
  list-style-type: circle;
}

.right-light ul li {
  margin: 0 0 8px 0;
}

.right-light-col {
  padding: 0 35px 0 35px;
}

.right-light-headline {
  font-size: 40px;
  line-height: 45px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  color: #fff;
}

.right-light-category {
  position: relative;
  bottom: -100px;
}

.right-light-illustration {
  width: 30px;
  display: inline;
  position: relative;
  top: 7px;
  padding: 0 5px 0 0;
}

.job-section {
  padding: 25px 0 70px 50px;
}

.job-main-light-illustration {
  width: 54px;
  display: block;
  margin: 0 auto 0 auto;
}

.job-main-pointer {
  color: rgba(255, 255, 255, .65);
  font-size: 14px !important;
  padding: 0 6px 0 0;
}

.job-main-down-arrow {
  color: rgba(255, 255, 255, .65);
  font-size: 14px !important;
  padding: 0 11px 0 11px;
  position: relative;
  top: 2px;
}

.building-down-arrow {
  color: #8F90B3;
  font-size: 25px !important;
  padding: 5px 0 0 0;
  position: relative;
  display: block;
}

.job-section-light-desc {
  display: inline-block;
  margin: 0 0 0 0;
  font-size: 12px;
  font-weight: 600;
  color: #d2d2d2;
  padding: 0 65px 0 35px;
}

.job-wayfinding-benefits {
  color: rgba(255, 255, 255, .85);
  font-size: 18px;
  line-height: 45px;
  font-weight: 600;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  top: 50px;
  left: 100px;
}

.job-wayfinding-benefits-item {
  font-size: 15px;
  line-height: 35px;
  font-weight: 600;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.job-section p {
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 0px !important;
}

.job-section-desc {
  color: #fff;
  font-size: 17px;
  line-height: 22px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  margin: 10px 0 20px 0;
  display: block;
  width: 32%;
}

.job-section-desc-highlight {
  background-color: #8F90B3;
  padding: 6px 7px 3px 7px;
  color: #fff;
  border-radius: 1px;
  margin: 0 6px 0 2px;
}

.job-section-light-subtitle {
  color: #fff;
  font-size: 18px;
  line-height: 22px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: inline;
  font-weight: 600;
  margin: 0 0 0 0;
}

.job-section-lights {
  display: inline;
}

.job-section-lights li {
  width: 33%;
  display: inline-block;
  border-right: 1px dashed #686868;
  padding: 0px 0 0 20px;
}

.job-section-lights li:last-child {
  border-right: none;
}

.job-section-light-link a {
  text-decoration: none;
  color: #8F90B3;
  display: block;
  font-weight: 600;
  padding: 10px 0 0 0;
}

.job-wayfinding {
  background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/WayfindingBG_r3.jpg?10871903159482285343");
  height: 400px;
  overflow: hidden;
  margin: 10px 0 30px 0;
}

.job-setup {
  background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/SetupBG.jpg?13365740348315241364");
  height: 400px;
  overflow: hidden;
  margin: 10px 0 30px 0;
}

.job-meal-prep {
  background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/MealPrepBG.jpg?13365740348315241364");
  height: 400px;
  overflow: hidden;
  margin: 10px 0 30px 0;
}

.job-hangout {
  background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/HangoutBG_r3.jpg?13982410871759196562");
  height: 400px;
  overflow: hidden;
  margin: 10px 0 30px 0;
}

.job-tent-time {
  background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/TentTimeBG.jpg?13365740348315241364");
  height: 400px;
  overflow: hidden;
  margin: 10px 0 30px 0;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and ( min--moz-device-pixel-ratio: 2), only screen and ( -o-min-device-pixel-ratio: 2/1), only screen and ( min-device-pixel-ratio: 2), only screen and ( min-resolution: 192dpi), only screen and ( min-resolution: 2dppx) {
  .job-wayfinding {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/WayfindingBG_2x_r3.jpg?6586037496812936338");
    background-size: 1170px 440px !important;
  }

  .job-setup {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/SetupBG_2x_01b7dd0d-c332-4bce-9b72-0d1f9351bc6f.jpg?12445105226793265988");
    background-size: 1170px 440px !important;
  }

  .job-meal-prep {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/MealPrepBG_2x_6ee6f338-e914-4d64-94a3-b6ae3c033990.jpg?12445105226793265988");
    background-size: 1170px 440px !important;
  }

  .job-hangout {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/HangoutBG_2x_r2.jpg?6586037496812936338");
    background-size: 1170px 440px !important;
  }

  .job-tent-time {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/TentTimeBG_2x_b84bad24-4536-477b-9bd5-cf2dfe6ef04a.jpg?12445105226793265988");
    background-size: 1170px 440px !important;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and ( min--moz-device-pixel-ratio: 2), only screen and ( -o-min-device-pixel-ratio: 2/1), only screen and ( min-device-pixel-ratio: 2), only screen and ( min-resolution: 192dpi), only screen and ( min-resolution: 2dppx) {
  .job-wayfinding {
    background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/WayfindingBG_r2-1_mobile_r2.jpg?11922140135526648001);
    background-size: 600px 270px !important;
    background-repeat: no-repeat;
  }

  .job-setup {
    background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/SetupBG_mobile.jpg?3936581275021835285);
    background-size: 600px 270px !important;
    background-repeat: no-repeat;
  }

  .job-meal-prep {
    background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/MealPrepBG_mobile.jpg?13301087592087129732);
    background-size: 600px 270px !important;
    background-repeat: no-repeat;
  }

  .job-hangout {
    background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/HangoutBG_mobile.jpg?13301087592087129732);
    background-size: 600px 270px !important;
    background-repeat: no-repeat;
  }

  .job-tent-time {
    background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/TentTimeBG_mobile.jpg?13301087592087129732);
    background-size: 600px 270px !important;
    background-repeat: no-repeat;
  }
}

@-webkit-keyframes lanterns {
  0% {
    background-position: 0 0;
    animation-delay: 0s;
  }

  6.25% {
    background-position: 0 -275px;
    animation-delay: 3s;
  }

  12.5% {
    background-position: 0 -550px;
    animation-delay: 6s;
  }

  18.75% {
    background-position: 0 -825px;
    animation-delay: 9s;
  }

  25% {
    background-position: 0 -1100px;
    animation-delay: 12s;
  }

  31.25% {
    background-position: 0 -1375px;
    animation-delay: 15s;
  }

  37.5% {
    background-position: 0 -1650px;
    animation-delay: 18s;
  }

  43.75% {
    background-position: 0 -1925px;
    animation-delay: 21s;
  }

  50% {
    background-position: 0 -2250px;
    animation-delay: 24s;
  }

  56.25% {
    background-position: 0 -1925px;
    animation-delay: 27s;
  }

  62.5% {
    background-position: 0 -1650px;
    animation-delay: 30s;
  }

  68.75% {
    background-position: 0 -1375px;
    animation-delay: 33s;
  }

  75% {
    background-position: 0 -1100px;
    animation-delay: 36s;
  }

  81.25% {
    background-position: 0 -825px;
    animation-delay: 39s;
  }

  87.5% {
    background-position: 0 -550px;
    animation-delay: 42s;
  }

  93.75% {
    background-position: 0 -275px;
    animation-delay: 45s;
  }

  100% {
    background-position: 0 0;
    animation-delay: 48s;
  }
}

@-moz-keyframes lanterns {
  0% {
    background-position: 0 0;
    animation-delay: 0s;
  }

  6.25% {
    background-position: 0 -275px;
    animation-delay: 3s;
  }

  12.5% {
    background-position: 0 -550px;
    animation-delay: 6s;
  }

  18.75% {
    background-position: 0 -825px;
    animation-delay: 9s;
  }

  25% {
    background-position: 0 -1100px;
    animation-delay: 12s;
  }

  31.25% {
    background-position: 0 -1375px;
    animation-delay: 15s;
  }

  37.5% {
    background-position: 0 -1650px;
    animation-delay: 18s;
  }

  43.75% {
    background-position: 0 -1925px;
    animation-delay: 21s;
  }

  50% {
    background-position: 0 -2250px;
    animation-delay: 24s;
  }

  56.25% {
    background-position: 0 -1925px;
    animation-delay: 27s;
  }

  62.5% {
    background-position: 0 -1650px;
    animation-delay: 30s;
  }

  68.75% {
    background-position: 0 -1375px;
    animation-delay: 33s;
  }

  75% {
    background-position: 0 -1100px;
    animation-delay: 36s;
  }

  81.25% {
    background-position: 0 -825px;
    animation-delay: 39s;
  }

  87.5% {
    background-position: 0 -550px;
    animation-delay: 42s;
  }

  93.75% {
    background-position: 0 -275px;
    animation-delay: 45s;
  }

  100% {
    background-position: 0 0;
    animation-delay: 48s;
  }
}

.stringlight-sprite {
  width: 275px;
  height: 275px;
  display: inline-block;
  background-image: url("https://s3-us-west-2.amazonaws.com/biolitewebsite/collection/stringlights-sprite.png");
  -webkit-animation: stringlights 90s infinite;
  -moz-animation: stringlights 90s infinite;
  animation: stringlights 90s infinite;
}

@-webkit-keyframes stringlights {
  0% {
    background-position: 0 -2250px;
    animation-delay: 0s;
  }

  6.25% {
    background-position: 0 -1925px;
    animation-delay: 3s;
  }

  12.5% {
    background-position: 0 -1650px;
    animation-delay: 6s;
  }

  18.75% {
    background-position: 0 -1375px;
    animation-delay: 9s;
  }

  25% {
    background-position: 0 -1100px;
    animation-delay: 12s;
  }

  31.25% {
    background-position: 0 -825px;
    animation-delay: 15s;
  }

  37.5% {
    background-position: 0 -550px;
    animation-delay: 18s;
  }

  43.75% {
    background-position: 0 -275px;
    animation-delay: 21s;
  }

  50% {
    background-position: 0 0;
    animation-delay: 24s;
  }

  56.25% {
    background-position: 0 -275px;
    animation-delay: 27s;
  }

  62.5% {
    background-position: 0 -550px;
    animation-delay: 30s;
  }

  68.75% {
    background-position: 0 -825px;
    animation-delay: 33s;
  }

  75% {
    background-position: 0 -1100px;
    animation-delay: 36s;
  }

  81.25% {
    background-position: 0 -1375px;
    animation-delay: 39s;
  }

  87.5% {
    background-position: 0 -1650px;
    animation-delay: 42s;
  }

  93.75% {
    background-position: 0 -1925px;
    animation-delay: 45s;
  }

  100% {
    background-position: 0 -2250px;
    animation-delay: 48s;
  }
}

@-moz-keyframes stringlights {
  0% {
    background-position: 0 -2250px;
    animation-delay: 0s;
  }

  6.25% {
    background-position: 0 -1925px;
    animation-delay: 3s;
  }

  12.5% {
    background-position: 0 -1650px;
    animation-delay: 6s;
  }

  18.75% {
    background-position: 0 -1375px;
    animation-delay: 9s;
  }

  25% {
    background-position: 0 -1100px;
    animation-delay: 12s;
  }

  31.25% {
    background-position: 0 -825px;
    animation-delay: 15s;
  }

  37.5% {
    background-position: 0 -550px;
    animation-delay: 18s;
  }

  43.75% {
    background-position: 0 -275px;
    animation-delay: 21s;
  }

  50% {
    background-position: 0 0;
    animation-delay: 24s;
  }

  56.25% {
    background-position: 0 -275px;
    animation-delay: 27s;
  }

  62.5% {
    background-position: 0 -550px;
    animation-delay: 30s;
  }

  68.75% {
    background-position: 0 -825px;
    animation-delay: 33s;
  }

  75% {
    background-position: 0 -1100px;
    animation-delay: 36s;
  }

  81.25% {
    background-position: 0 -1375px;
    animation-delay: 39s;
  }

  87.5% {
    background-position: 0 -1650px;
    animation-delay: 42s;
  }

  93.75% {
    background-position: 0 -1925px;
    animation-delay: 45s;
  }

  100% {
    background-position: 0 -2250px;
    animation-delay: 48s;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and ( min--moz-device-pixel-ratio: 2), only screen and ( -o-min-device-pixel-ratio: 2/1), only screen and ( min-device-pixel-ratio: 2), only screen and ( min-resolution: 192dpi), only screen and ( min-resolution: 2dppx) {
  .lantern-sprite {
    width: 275px !important;
    height: 275px !important;
    background-size: cover;
    display: inline-block;
    background-image: url("https://s3-us-west-2.amazonaws.com/biolitewebsite/collection/lanterns-sprite@2x.png");
    -webkit-animation: lanterns 90s infinite;
    -moz-animation: lanterns 90s infinite;
    animation: lanterns 90s infinite;
  }

  .stringlight-sprite {
    width: 275px !important;
    height: 275px !important;
    background-size: cover;
    display: inline-block;
    background-image: url("https://s3-us-west-2.amazonaws.com/biolitewebsite/collection/stringlights-sprite@2x.png");
    -webkit-animation: stringlights 90s infinite;
    -moz-animation: stringlights 90s infinite;
    animation: stringlights 90s infinite;
  }
}

a.articles.show-more {
  display: block;
  text-align: center;
  width: 100%;
  background: #008fa1;
  color: #fff;
  text-transform: capitalize;
  padding: 20px 0;
  cursor: pointer;
  margin-top: 40px;
  margin-bottom: 30px;
  border-radius: 2px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
}

a.articles.show-more:hover {
  background: #008fa1;
}

.mission-arrow img {
  width: 25px;
  position: relative;
  right: -243px;
  top: -96px;
}

@media only screen and (max-width: 1100px) {
  .mission-arrow img {
    display: none;
  }
}

.grid-item-center {
  margin-left: 25%;
}

@media only screen and (max-width: 480px) {
@  media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and ( min--moz-device-pixel-ratio: 2), only screen and ( -o-min-device-pixel-ratio: 2/1), only screen and ( min-device-pixel-ratio: 2), only screen and ( min-resolution: 192dpi), only screen and ( min-resolution: 2dppx) {
    .lantern-sprite {width: 160px !important;
    height: 160px !important;
    background-size: cover;
    display: inline-block;
    background-image: url("https://s3-us-west-2.amazonaws.com/biolitewebsite/collection/lanterns-sprite@2x.png");
    -webkit-animation: lanterns 90s infinite;
  }

  .stringlight-sprite {
    width: 160px !important;
    height: 160px !important;
    background-size: cover;
    display: inline-block;
    background-image: url("https://s3-us-west-2.amazonaws.com/biolitewebsite/collection/stringlights-sprite@2x.png");
    -webkit-animation: stringlights 90s infinite;
  }
}}

@media only screen and (max-width: 1024px) {
  .job-section-lights li {
    width: 100% !important;
    display: block !important;
    border-right: none !important;
    padding: 20px 0 56px 20px !important;
    margin: 0 0 40px 0;
  }

  .job-section .large--one-sixth {
    width: 20%;
  }

  .job-section .large--five-sixths {
    width: 80%;
  }

  .hide-on-mobile-1024 {
    display: none !important;
  }

  .modular-lighting .large--one-half {
    width: 100% !important;
  }

  .modular-lighting {
    padding: 40px 20px 40px 20px !important;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 481px) {
  .job-section-desc {
    width: 65%;
  }
}

.fyf-homepage-feature {
  clear: both;
  display: block;
  background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/FYF_homepage_BG.png?1030384428155605280");
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  height: 400px;
  background-color: #f3f3f3;
  margin-top: 45px;
}

.firsts-color {
  background-color: rgba(55,59,68, 0.95);
}

.furthers-color {
  background-color: rgba(55,59,68, 0.9);
}

.fears-color {
  background-color: rgba(55,59,68, 0.95);
}

.firsts {
  color: rgba(214,174,95, 1);
}

.furthers {
  color: rgba(228,116,77, 1);
}

.fears {
  color: rgba(110,88,90, 1);
}

.hero-video__video-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.hero-video__video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  width: auto;
  min-width: 100%;
  height: auto;
  min-height: 100%;
}

.horizontal-center {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.vertical-horizontal-center {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 1000px;
  top: 50%;
  z-index: 10;
  transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
}

.vertical-horizontal-center-100 {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  top: 50%;
  z-index: 10;
  transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
}

.vertical-horizontal-center-80 {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  top: 50%;
  z-index: 10;
  transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
}

.fff-main-icon {
  width: 10%;
  display: inline-block;
  left: 10%;
}

.fff-category {
  left: 24%;
  display: inline-block;
}

.fff-could-be-you {
  left: 12%;
  display: inline-block;
}

.landing-main-logo {
  display: block;
  width: 650px;
  margin: 0 auto;
  padding: 0 0 20px 0;
}

.landing-section {
  height: 100vh !important;
  position: relative;
  overflow: hidden;
}

.landing-section-max {
  height: 110vh;
  position: relative;
  overflow: hidden;
}

.landing-section-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  *zoom: 1;
}

.landing-section-wrapper:after {
  content: '';
  display: table;
  clear: both;
}

.fff-quote-section {
  height: 100vh;
  padding: 50px;
}

.one-third-height {
  height: 33.3333vh;
  position: relative;
}

.frontier-intro-paragraph {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
  text-align: left;
  display: block;
  position: absolute;
  top: 38%;
  left: 8%;
  width: 35%;
  transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
}

.fff-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 26px;
  text-align: left;
  display: block;
}

.fff-mini-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  display: block;
  position: relative;
  top: 10%;
  padding-bottom: 20%;
  left: -10px;
}

.fff-mini-title-submission {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 42px;
  display: block;
  position: relative;
  top: 20%;
}

.fff-subtitle {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 20px;
  text-align: left;
  display: block;
  color: #fff;
  padding-top: 20px;
  width: 70%;
}

.fff-quote {
  display: inline;
  width: 100%;
}

.fff-quote ul {
  text-align: center;
}

.fff-quote li {
  width: 49%;
  border: 10px solid #f3f3f3;
  background-color: rgba(255, 255, 255, 1);
  height: 45vh;
  display: inline-block;
  position: relative;
}

.fff-quote-text {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 22px;
  display: block;
  padding: 20px 0 0 0;
  color: #747475;
}

.fff-quote-text-name {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 22px;
  display: block;
  padding: 20px 0 0 0;
  color: #747475;
}

.fff-quote-avatar {
  width: 200px;
  float: right;
}

.frontier-story-title {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 19px;
  text-align: center;
  display: block;
  color: #fff;
  padding: 0 20px 30px 20px;
}

.frontier-story-byline {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  display: block;
  color: #fff;
  padding: 10px 0 15px 0;
  text-transform: uppercase;
}

#find-your-frontier-firsts-furthers-and-fears-biolite .homeheader-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 34px;
  margin-bottom: 10px;
  text-align: center;
  display: block;
}

#find-your-frontier-firsts-furthers-and-fears-biolite .community-link a {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-top: 15px;
  text-decoration: underline;
  text-transform: uppercase;
}

.frontier-flag-more-stories img {
  width: 25px;
  color: #fff;
  text-align: left !important;
  padding: 10px 0 0 0;
}

.frontier-flag-icon img {
  width: 25px;
}

.fff-more-stories {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  display: block;
}

.fyf-home-logo {
  width: 400px;
  padding: 55px 0 0 10px;
}

.fyf-home-caption {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  text-align: left;
  display: block;
  color: #747474;
  padding: 65px 0 30px 0;
}

.fyf-caption-button {
  float: left;
}

.fff-more-stories-wrapper {
  padding: 75px 0 0 0 !important;
}

#find-your-frontier-firsts-furthers-and-fears-biolite .community-link a:hover {
  text-decoration: none;
}

.frontier-story {
  height: 2050px !important;
  background-color: #373b44;
}

#find-your-frontier-firsts-furthers-and-fears-biolite .community-image-holding {
  border-right: 0px;
  border-left: 0px;
  border-bottom: 0px;
}

.frontier-1 {
  background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/fronter-1-bg_v6.jpg?16158179317239964835");
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.frontier-2 {
  background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/frontier2-bg-v3.jpg?7039655555023068413");
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.video-fullscreen-frontier {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  background: url(polina.jpg) no-repeat;
  background-size: cover;
}

.landing-section-new {
  height: 100vh;
}

.quote-section-background-1 {
  background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/firsts_Chris.jpg?18301132968401281905");
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
}

.quote-section-background-2 {
  background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/firsts_Britney.jpg?18301132968401281905");
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
}

.quote-section-background-3 {
  background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/ericaFears_r3.jpg?1730620942986590859");
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
}

.quote-section-background-4 {
  background-color: #2b879e;
}

.quote-section-content {
  background-color: rgba(255, 255, 255, 0.96);
  height: 100%;
  padding: 40px;
  text-align: center;
}

.frontier-flag-icon {
  font-size: 20px !important;
  text-align: left !important;
}

.frontier-story .large--one-third {
  padding: 0 0 40px 0;
}

.fff-form {
  padding: 0 45px 0 0;
}

.fff-form-icon {
  font-size: 13px !important;
  padding: 0 5px 0 0;
}

#find-your-frontier-firsts-furthers-and-fears-biolite #form-warranty .input-complex label {
  width: 140px;
}

#find-your-frontier-firsts-furthers-and-fears-biolite .label-icon {
  font-weight: 600;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  padding: 17px 10px 17px 18px;
  font-size: 13px;
  color: #747475;
}

#find-your-frontier-firsts-furthers-and-fears-biolite #form-warranty .input-complex input {
  padding-left: 155px;
}

.fff-social {
  padding: 70px 0 0 0;
}

.fyf-form-wrapper {
  margin-left: -25px;
  margin-top: 0;
}

@media only screen and (max-width: 1400px) {
  .frontier-story {
    height: 1900px !important;
  }
}

@media only screen and (max-width: 1225px) {
  .fff-form {
    padding: 0 45px 0 45px;
  }
}

@media only screen and (max-width: 1024px) {
  .hero-video__video-wrapper img {
    display: none;
  }

  .fyf-form-wrapper {
    margin-left: 0;
    margin-top: -10px;
  }

  #find-your-frontier-firsts-furthers-and-fears-biolite .hero-video__video-wrapper video {
    display: none;
  }

  .frontier-story {
    height: 1600px !important;
  }

  .landing-section-hero {
    height: 550px !important;
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/FYF_hero_tablet_v3.jpg?8355675490068775058");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
  }

  .vertical-horizontal-center {
    width: 100% !important;
  }

  .firsts-color {
    background-color: rgba(55,59,68, 1);
  }

  .furthers-color {
    background-color: rgba(65,69,78, 1);
  }

  .fears-color {
    background-color: rgba(55,59,68, 1);
  }

  #find-your-frontier-firsts-furthers-and-fears-biolite .frontier-1 .large--one-half {
    width: 100% !important;
  }

  .frontier-intro-paragraph {
    font-size: 18px;
    line-height: 26px;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    width: 100%;
    transform: none !important;
    padding: 65px 25px 65px 25px;
  }

  .fff-category {
    left: 20% !important;
    padding: 45px 30px 45px 30px !important;
  }

  .fff-main-icon {
    width: 15% !important;
    left: 5% !important;
  }

  .fff-subtitle {
    width: 100% !important;
  }

  .fff-quote li {
    width: 100% !important;
    background-color: rgba(255, 255, 255, .5) !important;
    height: 100% !important;
    display: inline-block;
  }

  .quote-section-content {
    background-color: rgba(255, 255, 255, .9);
    height: 370px !important;
  }

  .fff-quote-section {
    height: 1700px !important;
    padding: 20px;
  }

  .fff-form {
    padding: 30px 30px 0 30px;
  }

  .fff-social {
    padding: 100px 30px 45px 30px;
  }

  .fff-could-be-you {
    left: 0;
    display: inline-block;
    padding: 0 25px 0 25px;
  }
}

@media only screen and (max-width: 767px) {
  .frontier-story {
    height: 6500px !important;
  }

  .fyf-homepage-feature {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/FYF_homepage_BG_mobile_r2.png?10025649064095277928");
    overflow: hidden;
    height: 600px;
    margin-top: 5px;
  }

  .fyf-home-caption {
    font-size: 15px;
    line-height: 17px;
    text-align: center;
    padding: 15px 20px 20px 20px;
  }

  .fyf-caption-button {
    float: none;
  }

  .fyf-home-logo {
    width: 320px;
    padding: 25px 0 0 0;
  }
}

@media only screen and (max-width: 650px) {
  .landing-main-logo {
    display: block;
    width: 400px;
    margin: 0 auto;
    padding: 0 20px 0 20px;
  }

  .fff-social {
    padding: 10px 30px 45px 30px;
  }
}

@media only screen and (max-width: 480px) {
  .landing-section-hero {
    height: 450px !important;
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/FYF-hero-mobile_v4.jpg?13829492013886291238");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
  }

  .vertical-horizontal-center {
    top: 41%;
  }

  .frontier-1 {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/fronter-1-bg_mobile.jpg?13947219332036837687");
    background-position: 17% -281%;
    background-size: initial;
  }

  .frontier-2 {
    background-position: 64%;
  }

  .quote-section-background-1 {
    background-position: 1% !important;
  }

  .quote-section-background-2 {
    background-position: 100% !important;
  }

  .frontier-story {
    height: 5300px !important;
  }
}

.blog-slide-show-container p {
  font-size: 13px;
  padding: 0 40px 0 40px;
}

.blog-slide-show-container img {
  padding: 20px 0 20px 0;
}

@media only screen and (max-width: 1024px) {
  .blog-slide-show-container p {
    padding: 0 80px 0 80px;
  }
}

@media only screen and (max-width: 480px) {
  .blog-slide-show-container p {
    padding: 0 60px 0 30px;
  }
}

@media only screen and (max-width: 1024px) {
  #better-with-friends .footer-wrapper {
    height: 520px;
  }
}

@media only screen and (max-width: 480px) {
  .card-layout {
    margin: 10px;
    padding-bottom: 0px;
  }

  .card-layout-2 {
    margin: 10px;
  }

  .bwf-brands-image-circle {
    width: 70%;
  }

  .bwf-promo-code {
    top: 140px;
  }

  .scroll-down {
    top: 77% !important;
  }

  .bwf-impact-block h3.alt {
    font-size: 20px;
  }

  .bwf-impact-block p {
    font-size: 13px;
    line-height: 16px;
  }

  .bwf-impact-icon {
    font-size: 30px !important;
    padding: 0;
  }
}

.home-business-of-impact {
  height: 697px;
}

.boi-col1 {
  background-image: url(https://cdn.shopify.com/s/files/1/2396/7729/files/home-col1.png?17084301134514888673…);
  height: 697px;
  background-repeat: no-repeat;
  background-position: center;
}

.boi-col2 {
  background-image: url(https://cdn.shopify.com/s/files/1/2396/7729/files/home-col2.png?8827475638203206293…);
  height: 697px;
  background-repeat: no-repeat;
  background-position: center;
}

.boi-col3 {
  background-image: url(https://cdn.shopify.com/s/files/1/2396/7729/files/home-col3.png?8827475638203206293…);
  height: 697px;
  background-repeat: no-repeat;
  background-position: center;
}

.boi-stat-container {
  position: relative;
  top: 586px;
}

.boi-icon {
  font-size: 60px !important;
  color: rgba(255, 255, 255, 0.4);
  position: relative;
  top: -97px;
  left: -16px;
}

.formicons {
  font-size: 13px !important;
  position: relative;
  padding-right: 5px;
  top: -1px;
}

.partner-form {
  background-image: url(https://cdn.shopify.com/s/files/1/2396/7729/files/PartnerWithUs_BG.jpg?13710231946782976627);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-color: #fff;
}

.im-download-frame {
  border: 1px solid #fff;
  -o-transition: border .1s ease-out, border .35s ease-in;
  -ms-transition: border .1s ease-out, border .35s ease-in;
  -moz-transition: border .1s ease-out, border .35s ease-in;
  -webkit-transition: border .1s ease-out, border .35s ease-in;
  transition: border .1s ease-out, border .35s ease-in;
}

.im-download-frame:hover {
  border: 1px solid #dcdcdc;
}

.sales-service-cols {
  border: 1px solid #fff;
  padding: 20px;
  border-radius: 4px;
  height: 250px;
  margin: 30px 0 0 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.warranty-cols {
  border-right: 1px dashed #d6d6d6;
  padding: 20px;
  height: 100%;
  margin: 30px 0 0 0;
}

.warranty-cols-last {
  padding: 20px;
  height: 100%;
  margin: 30px 0 0 0;
}

.sales-service-icons {
  font-size: 50px !important;
  padding: 20px 0 5px 0;
  color: #C24D00;
}

.col-padder {
  padding: 0 10px 0 10px;
}

.after-sales-footer {
  background-image: url("https://cdn.shopify.com/s/files/1/2396/7729/files/AfterSales_footer_v2.jpg?3658985837763907189");
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  height: 742px;
  background-color: #000;
  padding: 90px 0 0 0;
}

.partner-form-wrapper {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 70px 40px 50px 40px;
}

.partner-logo-wrapper {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 70px 40px 50px 40px;
}

.partner-form-logos {
  display: block;
  padding: 2px 5px 10px 5px;
  width: 52%;
  text-align: center;
  margin: 0 auto;
}

.partner-story-logos {
  display: inline;
  padding: 20px;
  width: 16%;
  text-align: center;
}

.partner-logos-header {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 26px;
  padding: 5px 0 0px 0;
  text-align: center;
  display: block;
  color: #747475;
  position: relative;
  text-transform: uppercase;
}

.em-video-module {
  padding: 20px 0 20px 0;
  border-top: 1px solid #f3f3f3;
  border-bottom: 1px solid #f3f3f3;
  margin: 10px 0 25px 0;
}

.mission-intro {
  padding: 55px 0 0 0;
}

.em-video-module-watch {
  font-family: reader-regular, sans-serif;
  font-weight: 600;
  display: inline;
  font-size: 18px;
  color: #444444;
}

.em-video-module-play {
  font-size: 26px !important;
  position: relative;
  top: 5px;
  color: #C24D00;
  padding: 0px 6px 0 0;
}

.story-video-module-play {
  font-size: 21px !important;
  position: relative;
  top: 5px;
  color: #444444;
  padding: 0px 3px 0 0;
}

.history-slide-show-container {
  padding: 25px 0 90px 0;
  margin-top: 30px;
}

.timeline-wrapper {
  background: #f3f3f3;
  background-clip: content-box;
  height: 650px;
  background-image: url(https://cdn.shopify.com/s/files/1/2396/7729/files/dashes.png?7792220025907687325…);
  background-repeat: repeat-x;
  background-position: 100% 49%;
}

.timeline-img {
  display: block;
  padding: 0 35px 0 35px;
}

.timeline-date {
  display: block;
  padding: 20px 0 0 10px;
  text-align: center;
  font-family: reader-regular, sans-serif;
  font-weight: 600;
  font-size: 18px;
}

.timeline-desc {
  display: block;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: left;
  font-weight: 300;
  font-size: 13px;
  line-height: 16px;
  padding: 20px 40px 0 10px;
}

.story-tech-img {
  width: 315px;
  display: inline;
  position: relative;
  float: left;
  padding: 6px 30px 10px 30px;
}

.our-tech-solution-btn {
  display: block;
  padding: 30px 0 10px 0;
  clear: both;
  margin: 0 auto;
  text-align: center;
}

.story-tech-checklist-wrapper {
  position: relative;
  padding: 70px 0 0 0;
  float: left;
}

.story-tech-checklist {
  font-family: reader-regular, sans-serif;
  font-weight: 600;
  font-size: 14px;
  display: block;
}

.story-tech-checklist-disclaimer {
  font-family: reader-regular, sans-serif;
  font-weight: 300;
  font-size: 12px;
  display: block;
  padding: 25px 0 0 25px;
}

.story-tech-icon {
  font-size: 24px !important;
  color: #008fa1 !important;
  position: relative;
  top: 4px;
  padding: 0 10px 0 10px;
}

.our-tech-solution {
  background: #f3f3f3;
  background-repeat: no-repeat;
  background-position: center;
  padding: 40px 0 0 0;
}

.business-of-change {
  background: #f3f3f3;
  background-clip: content-box;
  height: 800px;
  background-image: url(https://cdn.shopify.com/s/files/1/2396/7729/files/businessOfChange_BG_r2.jpg?13462895720077067657…);
  background-repeat: no-repeat;
  background-position: center;
}

.business-of-change-title {
  padding: 80px 0 14px 14px;
}

.the-problem-wrapper {
  height: 100%;
  background-color: #252728;
}

.problem-infographic {
  position: relative;
  width: 200px;
  padding: 13px 14px 50px 14px;
  display: block;
  margin: 0 auto;
}

.problem-stats {
  font-size: 32px;
  font-family: reader-regular;
  font-weight: 600;
  display: block;
  line-height: 26px;
  opacity: 1;
}

.problem-desc {
  line-height: 16px;
  padding: 20px 0 40px 0;
}

.boc-blocks {
  text-align: left;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #f3f3f3;
  margin: 20px 0 0 0;
  padding: 25px;
  border-radius: 3px;
}

.boc-blocks-icon {
  font-size: 24px !important;
  padding: 10px 0 0 0;
}

.boc-desc {
  line-height: 18px;
}

.impact-report-img {
  width: 300px;
  padding: 16px 0 20px 0;
}

.our-story-impact-wrapper {
  clear: both;
  display: block;
  background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/impact-background4.jpg?11143306316245179462");
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  height: 950px;
  background-color: #f3f3f3;
  padding: 0 30px 30px 30px;
}

#biolite-global-impact-our-story .staff-grid-item {
  min-height: 106px;
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 16px;
  cursor: pointer;
}

#biolite-global-impact-our-story .staff-grid-item__photo {
  height: 108px;
  position: relative;
  background-color: #e9e9e9;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 165px;
  text-align: center;
  border: 1px solid #fff;
}

#biolite-global-impact-our-story .staff-grid {
  padding-top: 30px;
}

@media only screen and (max-width: 1024px) {
  #biolite-em .wrapper--full {
    padding: 0 10px 0 10px;
  }

  .business-of-change {
    background: #f3f3f3;
    background-clip: content-box;
    height: 100%;
    padding: 0 0 0 0;
    background-image: url(https://cdn.shopify.com/s/files/1/2396/7729/files/businessOfChange_BG_mobile.jpg?13462895720077067657…);
    background-repeat: no-repeat;
    background-position: 50% 100%;
  }

  .future-home-wrapper {
    background-image: url(https://cdn.shopify.com/s/files/1/2396/7729/files/futureHome_BG-mobil-01.svg?3049451796094667260…);
    background-position: 38% 100%;
    height: 100%;
    padding: 100px 0 100px 0;
  }

  .story-tech-checklist-wrapper {
    position: relative;
    padding: 20px 0 0 30px;
    float: none;
    left: 0;
    clear: both;
    margin: 0 auto;
  }

  .partner-story-logos {
    padding: 10px;
    width: 25%;
  }

  .our-story-impact-wrapper {
    background-image: none;
    overflow: hidden;
    height: 100%;
  }

  .impact-report-img {
    width: 300px;
    padding: 30px 0 0 0;
    margin: 0 auto;
  }

  .desktop-break {
    display: inline;
  }

  .no-border-mobile {
    border: none !important;
  }

  .boi-col1 {
    background-image: url(https://cdn.shopify.com/s/files/1/2396/7729/files/home-col1_mobile.jpg?5847556136580438414…);
    height: 255px;
    background-position: 61% 13%;
    margin: 0 0 10px 0;
  }

  .boi-col2 {
    background-image: url(https://cdn.shopify.com/s/files/1/2396/7729/files/home-col2_mobile.jpg?5847556136580438414…);
    height: 255px;
    background-position: 29% 47%;
    margin: 0 0 10px 0;
  }

  .boi-col3 {
    background-image: url(https://cdn.shopify.com/s/files/1/2396/7729/files/home-col3_mobile.jpg?5847556136580438414…);
    height: 255px;
    background-position: 21% 13%;
    margin: 0 0 10px 0;
  }

  .boi-stat-container {
    position: relative;
    top: 121px;
    margin: 0 auto;
    text-align: center;
  }

  .home-business-of-impact {
    height: 100% !important;
  }

  .partner-form {
    background-image: url(https://cdn.shopify.com/s/files/1/2396/7729/files/PartnerWithUs_BG_mobile_0d2fc259-2fbd-4e58-aba9-6f59cf2366bb.jpg?9372761266678574832);
    background-repeat: no-repeat;
    background-size: 100% auto;
  }

  .partner-form-logos {
    display: inline;
    width: 43%;
  }

  .partner-form-wrapper {
    background-color: rgba(255, 255, 255, 0);
    padding: 40px 10px 20px 10px;
  }

  .sales-service-cols {
    border: 1px solid #fff;
    padding: 20px 5px 20px 5px;
    border-radius: 4px;
    height: 250px;
    margin: 5px 0 0 0;
    background-color: rgba(0, 0, 0, 0.7);
  }

  .sales-service-icons {
    font-size: 50px !important;
    padding: 20px 0 5px 0;
    color: #008fa1;
  }

  .col-padder {
    padding: 5px;
  }

  .after-sales-footer {
    background-image: url("https://cdn.shopify.com/s/files/1/2396/7729/files/AfterSales_footer_v2.jpg?3658985837763907189");
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    height: 100%;
    background-color: #000;
    padding: 50px 0 30px 0;
  }

  .after-sales-footer .large--one-quarter {
    width: 50%;
  }

  .after-sales-footer .large--one-quarter p {
    font-size: 11px !important;
  }

  .after-sales-footer .large--one-quarter h5.alt {
    font-size: 15px !important;
  }
}

.global-impact-nav {
  font-size: 20px !important;
  color: #008fa1 !important;
  position: absolute;
  top: -4px;
  left: -19px;
  padding: 0 10px 0 10px;
}

#biolite-mission-energy-everywhere .nav-horizontal--products .nav-horizontal__title {
  width: 100%;
  text-align: center;
  padding-left: 0px;
  border-right: 0px solid #aeaeae;
  max-height: 46px;
}

#biolite-mission-energy-everywhere .nav-horizontal {
  width: 100%;
  height: 46px;
  z-index: 100;
  background-color: rgba(243, 243, 243, 0.9);
  border-bottom: 1px solid #ededed;
}

@media only screen and (max-width: 1023px) {
  .world-stat-block {
    width: 33% !important;
  }

  #biolite-mission-energy-everywhere .nav-horizontal--products .nav-horizontal__title a {
    font-size: 14px;
    line-height: 19px !important;
    position: relative;
    display: inherit;
    padding: 13px 0 0 0;
  }

  #biolite-mission-energy-everywhere .nav-horizontal--products {
    height: 64px !important;
  }

  .homeheader-wrapper {
    padding: 20px 15px 0 15px;
  }
}

@media only screen and (max-width: 1107px) and (min-width: 913px) {
  .story-tech-checklist-wrapper {
    position: relative;
    padding: 30px 0 0 0;
    float: left;
    left: 40px;
  }
}

@media only screen and (max-width: 912px) and (min-width: 480px) {
  .world-stats-large {
    font-size: 67px;
  }

  .million-lives-hero {
    padding: 20px 0px 0 50px;
  }

  .million-lives-img {
    position: absolute;
    top: 0px;
    left: 36%;
    margin: auto;
    display: inline;
    width: 530px;
    z-index: 0;
    top: 265px;
    opacity: 0.5;
    right: -155px;
  }
}

@media only screen and (max-width: 480px) {
  .world-stat-block {
    width: 100% !important;
  }

  .compare-toggle {
    margin: 10px 20px 0 20px;
  }

  .problem-infographic {
    width: 100%;
    padding: 0 20px 20px 20px;
  }
}

.gift-guide-product-image {
  padding: 0 0 0 0;
  margin: 0 0 20px 0;
  display: block;
  border: 4px solid #f3f3f3;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
  opacity: 1;
  -o-transition: opacity.1s ease-out, opacity .15s ease-in;
  -ms-transition: opacity .1s ease-out, opacity .15s ease-in;
  -moz-transition: opacity .1s ease-out, opacity .15s ease-in;
  -webkit-transition: opacity .1s ease-out, opacity .15s ease-in;
  transition: opacity .1s ease-out, opacity .15s ease-in;
}

.gift-guide-product-image:hover {
  opacity: 0.5;
}

.gift-guide-person-title {
  position: absolute;
  background-image: linear-gradient(175deg, #029694 21%, #087978 100%);
  font-size: 18px;
  color: #fff;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  padding: 15px 20px 15px 20px;
  z-index: 5;
  top: -10px;
  left: -10px;
}

.gift-guide-product-title {
  font-size: 16px;
  line-height: 20px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
}

.gift-guide-product-desc {
  font-size: 12px;
  line-height: 15px;
  padding: 4px 0 0 0;
}

.gift-guide-product-link {
  font-size: 12px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #2e2e2f;
  border-bottom: 5px solid #C24D00;
  -o-transition: border-bottom .1s ease-out, border-bottom .15s ease-in;
  -ms-transition: border-bottom .1s ease-out, border-bottom .15s ease-in;
  -moz-transition: border-bottom .1s ease-out, border-bottom .15s ease-in;
  -webkit-transition: border-bottom .1s ease-out, border-bottom .15s ease-in;
  transition: border-bottom .1s ease-out, border-bottom .15s ease-in;
}

.gift-guide-product-link:hover {
  color: #2e2e2f;
  border-bottom: 0px solid #C24D00;
}

.gift-guide-nav-wrapper {
  padding: 30px 0 30px 0;
  margin: 0 0 80px 0;
}

.gift-guide-nav-divider {
  padding: 0 6px 0 6px;
  color: #d1d1d1;
}

.gift-guide-nav a {
  font-size: 16px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  color: #C24D00;
  -o-transition: color .1s ease-out, color .15s ease-in;
  -ms-transition: color .1s ease-out, color .15s ease-in;
  -moz-transition: color .1s ease-out, color .15s ease-in;
  -webkit-transition: color .1s ease-out, color .15s ease-in;
  transition: color .1s ease-out, color .15s ease-in;
}

.gift-guide-nav a:hover {
  color: #f38034;
}

.gift-guide-person-img {
  position: relative;
}

.gift-guide-item {
  padding: 20px;
}

.gift-guide-brand-image {
  padding: 0 0 0 0;
  margin: 0 0 5px 0;
  display: block;
  border: 4px solid #f3f3f3;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
  opacity: 1;
  -o-transition: opacity.1s ease-out, opacity .15s ease-in;
  -ms-transition: opacity .1s ease-out, opacity .15s ease-in;
  -moz-transition: opacity .1s ease-out, opacity .15s ease-in;
  -webkit-transition: opacity .1s ease-out, opacity .15s ease-in;
  transition: opacity .1s ease-out, opacity .15s ease-in;
}

.gift-guide-brand-image:hover {
  opacity: 0.5;
}

.gift-guide-brand {
  padding: 0px;
}

.gift-guide-person-wrapper {
  position: relative;
  clear: both;
  margin: 0 0 40px 0;
}

.gift-guide-person-desc {
  padding: 0 25px 10px 47px;
  font-size: 16px;
  line-height: 22px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.gift-guide-person-desc:before {
  content: '';
  position: absolute;
  top: -9px;
  left: 39%;
  margin-left: -9px;
  height: 49px;
  width: 5px;
  background: #C24D00;
}

.gift-guide-detail-wrapper {
  padding: 0 0 0 30px;
}

.gift-guide-divider {
  padding: 30px 0 30px 0;
}

.encouraging-athlete {
  background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/encouragingAthlete.jpg?6310937876111049400");
  background-repeat: no-repeat;
  height: 488px;
  overflow: hidden;
  background-size: cover;
}

.documentarian {
  background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/documentarian.jpg?3968667396420845960");
  background-repeat: no-repeat;
  height: 488px;
  overflow: hidden;
  background-size: cover;
}

.soundtracker {
  background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/soundtracker.jpg?3968667396420845960");
  background-repeat: no-repeat;
  height: 488px;
  overflow: hidden;
  background-size: cover;
}

.hearter {
  background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/hearttohearter.jpg?3968667396420845960");
  background-repeat: no-repeat;
  height: 488px;
  overflow: hidden;
  background-size: cover;
}

.world-traveler {
  background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/worldTraveler.jpg?3968667396420845960");
  background-repeat: no-repeat;
  height: 488px;
  overflow: hidden;
  background-size: cover;
}

.christmas-host {
  background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/host.jpg?3968667396420845960");
  background-repeat: no-repeat;
  height: 488px;
  overflow: hidden;
  background-size: cover;
}

.outdoor-adorer {
  background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/outdoorAdorer_tall.jpg?15013054564803811679");
  background-repeat: no-repeat;
  height: 695px;
  overflow: hidden;
  background-size: cover;
}

.gift-guide-footer-wrapper {
  background-image: url(https://cdn.shopify.com/s/files/1/2396/7729/files/GlobalEnergyBrand_footer.jpg?1153634…);
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  height: 619px;
  background-color: #000;
}

.gift-guide-brands-feature-headline {
  font-weight: 600;
  padding: 0;
  margin: 0;
}

.gift-guide-brands-feature-subheadline {
  padding: 0 0 30px 0;
  margin: 0;
}

@media only screen and (max-width: 1024px) {
  .encouraging-athlete {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/encouragingAthlete_tablet.jpg?6310937876111049400");
    height: 300px;
  }

  .documentarian {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/documentarian_tablet.jpg?3968667396420845960");
    height: 300px;
  }

  .soundtracker {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/soundtracker_tablet.jpg?3968667396420845960");
    height: 300px;
  }

  .hearter {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/hearttohearter_tablet.jpg?3968667396420845960");
    height: 300px;
  }

  .world-traveler {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/worldTraveler_tablet.jpg?3968667396420845960");
    height: 300px;
  }

  .christmas-host {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/host_tablet.jpg?3968667396420845960");
    height: 300px;
  }

  .outdoor-adorer {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/outdoorAdorer_tablet.jpg?3968667396420845960");
    height: 300px;
  }

  .gift-guide-person-title {
    top: 80px;
    left: 56px;
  }

  .gift-guide-person-desc {
    padding: 20px 25px 10px 44px;
  }

  .gift-guide-detail-wrapper {
    padding: 0 30px 0 30px;
  }

  .gift-guide-person-desc:before {
    top: 282px;
    left: 92px;
    margin-left: -42px;
  }

  .gift-guide-nav-wrapper {
    padding: 30px;
  }
}

@media only screen and (max-width: 480px) {
  .encouraging-athlete {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/encouragingAthlete_mobile.jpg?6310937876111049400");
    height: 225px;
  }

  .documentarian {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/documentarian_mobile.jpg?3968667396420845960");
    height: 225px;
  }

  .soundtracker {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/soundtracker_mobile.jpg?3968667396420845960");
    height: 225px;
  }

  .hearter {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/hearttohearter_mobile.jpg?3968667396420845960");
    height: 225px;
  }

  .world-traveler {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/worldTraveler_mobile.jpg?3968667396420845960");
    height: 225px;
  }

  .christmas-host {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/host_mobile.jpg?3968667396420845960");
    height: 225px;
  }

  .outdoor-adorer {
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/outdoorAdorer_mobile.jpg?3968667396420845960");
    height: 225px;
  }

  .gift-guide-person-title {
    top: -12px;
    left: 18px;
  }

  .gift-guide-person-desc {
    padding: 25px 0px 10px 17px;
    font-size: 14px;
    line-height: 18px;
  }

  .gift-guide-item {
    padding: 0 15px 0 15px;
  }

  .gift-guide-person-desc:before {
    top: 210px;
    left: 180px;
    margin-left: -153px;
  }

  .gift-guide-brands-feature-headline {
    font-size: 23px;
  }

  .gift-guide-brands-feature-subheadline {
    font-size: 14px;
    padding: 0 20px 30px 20px;
  }

  .mobile-stack {
    clear: both;
    margin-top: 30px;
  }

  .gift-guide-product-title {
    font-size: 16px;
    line-height: 16px !important;
  }

  .gift-guide-nav a {
    display: block;
    line-height: 30px;
  }

  .gift-guide-nav-divider {
    display: none;
  }
}

.shop-hero-wrapper {
  margin-top: 7%;
  margin-left: 5%;
}

@media only screen and (max-width: 480px) {
  .shop-hero-wrapper {
    margin-top: 14%;
  }

  .modal-tall {
    min-height: 500px;
  }
}

.footer-wrapper {
}

#collections .footer-wrapper {
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/Homepage_Footer_2019.jpg?827423983756838525…);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  overflow: hidden;
  height: 897px;
  padding: 80px 0 0 0;
  background-color: #f3f3f3;
  position: relative;
}

.impact-icon-wrapper {
  position: relative;
  background-color: #f3f3f3;
  height: 60px;
  z-index: 10;
  margin: 60px 0 47px 0;
  padding: 0px 0 40px 0;
}

.impact-msg {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 29px;
  line-height: 30px;
  text-align: center;
  padding: 30px 0 0 0;
  z-index: 20;
}

.homepage-category-wrapper {
  margin: 10px auto;
}

.homepage-category-img {
  position: relative;
}

.homepage-category-img:hover {
  opacity: 0.8;
}

.homepage-category-caption {
    font-family: reader-regular, sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 35px;
    color: #646464;
    position: relative;
    margin: 0;
    padding: 0 0 0 20px;
    display: block;
    padding: 16px 0 16px 0px;
    text-align: center;
    z-index: 10;
    width: 100%;
    background-color: rgba(243, 243, 243, 0);
    -webkit-transition: all .2s ease-out 0.1s;
    -moz-transition: all .2s ease-out 0.1s;
    -o-transition: all .2s ease-out 0.1s;
    transition: all .2s ease-out 0.1s;
}

.homepage-category-caption-large:hover {
  background-color: rgba(0, 143, 161, 1);
}

@media only screen and (max-width: 1169px) and (min-width: 1025px) {
  .homepage-category-caption-large {
    margin: 135px 0 0 0;
    width: 20%;
  }

  .homepage-category-caption {
    margin: 5px 0 0 0;
  }

  .homepage-category {
    padding: 5px;
    margin: 0 0 8px 0;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 680px) {
  .homepage-category-caption-large {
    margin: 300px 0 0 0;
    width: 50%;
  }
  
  .homepage-category {
    border-right:0px !important;
  }

  .homepage-category-caption {
      margin: 5px 0 0 0;
    width: 100%;
  }

  .homepage-category-caption-large:hover {
    background-color: rgba(0, 143, 161, 0.85);
  }

  .homepage-category {
    padding: 5px;
    margin: 0 0 8px 0;
  }
}

@media only screen and (max-width: 679px) {
  .homepage-category-caption-large {
    margin: 0;
    width: 100%;
    line-height: 215px;
    font-size: 30px;
  }
  .homepage-category-padder {
    padding: 5px;
  }
  
  .million-lives-wrapper {
    margin: 10px 0 80px 0;
}
  
  .million-lives-mark {
    padding: 5px 0 15px 0;
}

  .homepage-category-caption {
    margin: 0;
    width: 100%;
    font-size: 11px !important;
    line-height:13px !important;
    padding:0 20px 0 20px;
  }
  
   .homepage-category {
    border-right:0px !important;
  }

  .homepage-category {
    padding: 5px;
    margin: 0;
  }

  .homepage-category-caption-large:hover {
    background-color: rgba(0, 143, 161, 0.85);
  }
}

.homepage-category-arrow {
  font-size: 17px !important;
  padding: 0 0 0 10px;
  position: relative;
  top: 2px;
}

.homepage-category {
  padding: 5px;
  margin: 0 0 55px 0;
}

.sunlight-hero {
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/SunLightLanding_hero_r2.jpg?2197371424036285704…);
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.sunlight-sticky-wrapper {
  max-width: 100%;
  padding: 0 30px;
  z-index: 8000;
}

.shop-sunlight-sticky {
  position: fixed;
  bottom: 5%;
  right: 5%;
  z-index: 1000;
}

.sunlight-hero-section {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: 16%;
  width: 1000px;
  top: 38%;
  z-index: 10;
}

.landing-hero-section {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: 16%;
  width: 1000px;
  top: 38%;
  z-index: 10;
}

.sunlight-footer {
  background-color: #f3f3f3;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.meet-your-sidekick {
  background-image: linear-gradient(to top, #e6e9f0 0%, #eef1f5 100%);
}

.sunlight-hero-header {
  font-size: 45px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  display: block;
}

.sunlight-hero-subheader {
  font-size: 35px;
  margin: 0;
  padding: 0 0 15px 0;
  line-height: 30px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
}

.landing-hero-header {
  font-size: 45px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  display: block;
}

.landing-hero-subheader {
  font-size: 35px;
  margin: 0;
  padding: 0 0 15px 0;
  line-height: 30px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
}

.sunlight-landing-desc-main {
  font-size: 35px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  padding: 0 0 20px 0;
  display: block;
}

.sunlight-landing-desc-main-center {
  font-size: 35px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  display: block;
  position: absolute;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  top: 6%;
}

.sunlight-slideshow {
  position: absolute;
  top: 8%;
  left: 8%;
  width: 45%;
  z-index: 100;
}

.sunlight-in {
  position: absolute;
  bottom: 53%;
  left: 10%;
  width: 34%;
}

.sunlight-out {
  position: absolute;
  top: 55%;
  left: 10%;
  width: 34%;
}

.choose-your-hue-wrapper {
  background-color: #000;
  background-image: none;
}

.choose-your-hue {
  position: absolute;
  bottom: 18%;
  right: 7%;
  width: 26%;
  z-index: 10;
}

.sunlight-description {
  font-size: 18px;
  line-height: 24px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  display: block;
  text-align: left;
}

.sunlight-title {
  font-size: 40px;
  line-height: 42px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  display: block;
  text-align: left;
}

.sunlight-spec-bloc:after {
  content: '';
  position: absolute;
  height: 95%;
  right: 0;
  top: 2.5%;
  width: 1px;
  background: #fff;
  z-index: 100;
}

.sunlight-spec-bloc:before {
  content: '';
  position: absolute;
  width: 95%;
  bottom: 0;
  left: 2.5%;
  height: 1px;
  background: #fff;
  z-index: 100;
}

.sunlight-location-icon {
  font-size: 21px !important;
  padding: 0 5px 0 0;
  position: relative;
  top: 2px;
}

.choose-your-hue-check-icon {
  font-size: 21px !important;
  padding: 0 9px 0 2px;
  position: relative;
  top: 2px;
}

.sunlight-quick-specs-title {
  font-size: 17px;
  text-transform: uppercase;
  color: #747475;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-align: center;
  z-index: 100;
  padding: 10px 0px 10px 0px;
  width: 350px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 1);
}

.sunlight-icon-feature {
  display: block;
  padding: 9px 60px 30px 0px;
}

.sunlight-icon-feature-list {
  padding: 0 0 20px 0;
}

.sunlight-hero-cta {
  padding: 30px 0 0 0;
}

.landing-hero-cta {
  padding: 30px 0 0 0;
}

.sunlight-icon-feature-icon {
  width: 55px;
  padding: 0 10px 0 0;
  position: relative;
  top: 17px;
  display: inline;
}

#sun-clouds-sunlight {
  position: absolute;
  width: 100%;
  z-index: 10;
  top: 6%;
  left: 37%;
}

#stars-moon-sunlight {
  position: absolute;
  width: 15%;
  z-index: 10;
  bottom: 15%;
  left: 36%;
}

.rayBottom_1 {
  animation: rayFade 2s infinite;
  -webkit-animation: rayFade 2s infinite;
  -moz-animation: rayFade 2s infinite;
}

.rayBottom_2 {
  animation: rayFade 2s infinite;
  -webkit-animation: rayFade 2s infinite;
  -moz-animation: rayFade 2s infinite;
}

.rayBottom_3 {
  animation: rayFade 2s infinite;
  -webkit-animation: rayFade 2s infinite;
  -moz-animation: rayFade 2s infinite;
}

.rayBottom_4 {
  animation: rayFade 2s infinite;
  -webkit-animation: rayFade 2s infinite;
  -moz-animation: rayFade 2s infinite;
}

.rayTop_1 {
  animation: rayFade 2s infinite;
  -webkit-animation: rayFade 2s infinite;
  -moz-animation: rayFade 2s infinite;
}

.rayTop_2 {
  animation: rayFade 2s infinite;
  -webkit-animation: rayFade 2s infinite;
  -moz-animation: rayFade 2s infinite;
}

.rayTop_3 {
  animation: rayFade 2s infinite;
  -webkit-animation: rayFade 2s infinite;
  -moz-animation: rayFade 2s infinite;
}

.rayTop_4 {
  animation: rayFade 2s infinite;
  -webkit-animation: rayFade 2s infinite;
  -moz-animation: rayFade 2s infinite;
}

@keyframes rayFade {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 0;
  }

  50% {
    opacity: 0.5;
  }

  0% {
    opacity: 1;
  }
}

@-webkit-keyframes rayFade {
  0% {
    -webkit-opacity: 1;
  }

  50% {
    -webkit-opacity: 0.5;
  }

  100% {
    -webkit-opacity: 0;
  }

  50% {
    -webkit-opacity: 0.5;
  }

  0% {
    -webkit-opacity: 1;
  }
}

@-moz-keyframes rayFade {
  0% {
    -moz-opacity: 1;
  }

  50% {
    -moz-opacity: 0.5;
  }

  100% {
    -moz-opacity: 0;
  }

  50% {
    -moz-opacity: 0.5;
  }

  0% {
    -moz-opacity: 1;
  }
}

.star-twinkle {
  animation: rayFade 4s infinite;
  -webkit-animation: rayFade 4s infinite;
  -moz-animation: rayFade 4s infinite;
}

.use-your-days {
  height: 50vh;
  background-image: linear-gradient(to top, #accbee 0%, #e7f0fd 100%);
}

.power-your-nights {
  height: 50vh;
  background-image: linear-gradient(to top, #426f92 0%, #09203f 100%);
}

@keyframes dayNightAnimation {
  0% {
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
  }

  100% {
    clip-path: polygon(0 50%, 100% 50%, 100% 0, 0 0);
  }
}

@-webkit-keyframes dayNightAnimation {
  0% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
  }

  100% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 0, 0 0);
  }
}

@-moz-keyframes daynightAnimation {
  0% {
    -moz-clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
  }

  100% {
    -moz-clip-path: polygon(0 50%, 100% 50%, 100% 0, 0 0);
  }
}

.sunlight-halfzies-light {
  height: 75vh;
  position: absolute;
  left: 45%;
  top: 50%;
  z-index: 11;
  animation: 1s halfziesAnimation;
  -webkit-animation: 1s halfziesAnimation;
  -moz-animation: 1s halfziesAnimation;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  -moz-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
}

@keyframes halfziesAnimation {
  0% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }

  100% {
    clip-path: polygon(0 100%, 100% 100%, 100% 50%, 0 50%);
  }
}

@-webkit-keyframes halfziesAnimation {
  0% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }

  100% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 50%, 0 50%);
  }
}

@-moz-keyframes halfziesAnimation {
  0% {
    -moz-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }

  100% {
    -moz-clip-path: polygon(0 100%, 100% 100%, 100% 50%, 0 50%);
  }
}

.sunlight-halfzies-solar {
  height: 75vh;
  position: absolute;
  left: 45%;
  top: 50%;
  z-index: 10;
  transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
}

.category-bouncy-arrow {
  color: #fff;
  font-size: 25px !important;
  padding: 5px 0 0 0;
  display: block;
  position: absolute;
  bottom: -28px;
  left: 50%;
  outline: none;
  border: none;
  opacity: 1;
  transition: opacity .3s ease;
  -webkit-transition: opacity .3s ease;
  -moz-transition: opacity .3s ease;
  -webkit-animation: bounce 2s 5s 2 ease-in-out normal;
  -moz-animation: bounce 2s 5s 2 ease-in-out normal;
  animation: bounce 2s 5s 2 ease-in-out normal;
}

.scroll-down {
  position: absolute;
  width: 400px;
  left: 50%;
  z-index: 50;
  text-align: center;
  top: 91%;
  margin-left: -200px;
}

.scroll-down-msg {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 24px;
  line-height: 6px;
  font-weight: 700;
  text-align: center !important;
}

.bouncy-arrow {
  color: #fff;
  font-size: 25px !important;
  padding: 5px 0 0 0;
  display: block;
  position: absolute;
  bottom: 10px;
  left: 50%;
  outline: none;
  border: none;
  opacity: 1;
  transition: opacity .3s ease;
  -webkit-transition: opacity .3s ease;
  -moz-transition: opacity .3s ease;
  -webkit-animation: bounce 6s 9s infinite;
  -moz-animation: bounce 6s 9s infinite;
  animation: bounce 6s 9s infinite;
}

.bwf-deal-bar {
  width: 80%;
  margin: 0 auto;
  top: -26px;
  text-align: center;
  padding: 12px 5px 12px 5px;
  display: block;
  position: relative;
  background-color: #fff;
  border: 1px solid #a6a6a6;
  border-radius: 2px;
  color: #4a4a4a;
  text-transform: uppercase;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
}

.bwf-deal-bar-biolite {
  width: 80%;
  margin: 0 auto;
  top: -26px;
  text-align: center;
  padding: 12px 5px 12px 5px;
  display: block;
  position: relative;
  background-color: #008fa1;
  border: 1px solid #008fa1;
  border-radius: 2px;
  color: #fff;
  text-transform: uppercase;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
}

.sunlight-spec-title-caption {
  font-size: 14px;
  line-height: 16px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  padding: 10px 0 0 0;
  display: block;
}

.slideshow-arrow-icon {
  font-size: 36px !important;
  color: rgba(255, 255, 255, 0.9);
}

.reviews-arrow-icon {
  font-size: 22px !important;
  position: relative;
  top: -25px;
  left: 16px;
  padding: 0;
  color: rgba(129, 129, 129, 0.9);
}

.glide__slide img {
  width: 100%;
}

#biolite-introducing-sunlight-solar-powered-lantern {
  background-color: #f3f3f3;
}

#biolite-introducing-sunlight-solar-powered-lantern .product-grid-item__inner {
  height: 320px;
}

#biolite-introducing-sunlight-solar-powered-lantern .glide__bullets > * {
  background-color: rgba(168, 168, 168, 0.6);
}

#biolite-introducing-sunlight-solar-powered-lantern .glide__bullets > *.active {
  background-color: rgba(0, 178, 176, 0.9) !important;
}

.sunlight-product-buttons {
  text-align: center;
  padding-bottom: 25px;
}

.sunlight-product-buttons-2 {
  margin: 0 0 0 10px;
}

#biolite-introducing-sunlight-solar-powered-lantern .product-grid-item .fake-you-save {
  top: -20px;
  height: 27px;
  margin-bottom: 0px;
}

#biolite-introducing-sunlight-solar-powered-lantern .product-grid-item__footer {
  height: 100% !important;
  padding-bottom: 18px;
}

#biolite-introducing-sunlight-solar-powered-lantern .product-grid-item__thumb {
  padding: 40px;
}

#biolite-introducing-sunlight-solar-powered-lantern .you-save {
  border: 0px solid #008fa1;
  display: inline-block;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 17px;
  position: relative;
  padding: 0px;
  margin: 0px;
  font-weight: 700;
}

#biolite-introducing-sunlight-solar-powered-lantern .you-save .right-side {
  padding: 4px 15px 4px 15px;
  background-color: #f3f3f3;
  color: #008fa1;
  display: inline-block;
}

.sunlight-reviews-coming-in {
  position: relative;
  width: 45%;
  top: 14%;
  left: 14%;
}

.sunlight-review {
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/review_BG_r2.jpg?11927654211696326193…);
  background-repeat: no-repeat;
  background-size: 25%;
  background-position: 74% 50%;
  height: 360px;
}

.sunlight-review-description {
  font-size: 18px;
  line-height: 21px;
  font-style: italic;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  display: block;
  text-align: left;
  padding: 7px 0 19px 0;
}

.sunlight-review-description-name {
  font-size: 18px;
  line-height: 21px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  display: block;
  text-align: left;
}

#biolite-introducing-sunlight-solar-powered-lantern .nav-horizontal {
  background-color: rgba(255, 255, 255, 0);
}

@media only screen and (min-width: 1024px) and (max-width: 1500px) {
  #biolite-introducing-sunlight-solar-powered-lantern .hero-video__video {
    width: 75%;
  }

  .sunlight-hero-section {
    margin-left: 8%;
    top: 34%;
  }

  .sidekick-text {
    padding: 0 40px 0 0 !important;
  }
}

@media only screen and (max-width: 1024px) {
  .sunlight-slideshow {
    width: 95%;
  }

  .glide__slide.active .sunlight-slideshow-1 {
    margin-left: -227px;
    transition: all 700ms;
    -webkit-transition: all 700ms;
    -moz-transition: all 700ms;
  }

  .glide__slide.active .sunlight-slideshow-2 {
    margin-left: -467px;
    transition: all 700ms;
    -webkit-transition: all 700ms;
    -moz-transition: all 700ms;
  }

  .glide__slide.active .sunlight-slideshow-3 {
    margin-left: -394px;
    transition: all 700ms;
    -webkit-transition: all 700ms;
    -moz-transition: all 700ms;
  }

  .glide__slide.active .sunlight-slideshow-4 {
    margin-left: -341px;
    transition: all 700ms;
    -webkit-transition: all 700ms;
    -moz-transition: all 700ms;
  }

  .glide__slide.active .sunlight-slideshow-5 {
    margin-left: -336px;
    transition: all 700ms;
    -webkit-transition: all 700ms;
    -moz-transition: all 700ms;
  }

  .glide__slide.active .sunlight-slideshow-6 {
    margin-left: -403px;
    transition: all 700ms;
    -webkit-transition: all 700ms;
    -moz-transition: all 700ms;
  }

  .glide__slide.active .sunlight-slideshow-7 {
    margin-left: -467px;
    transition: all 700ms;
    -webkit-transition: all 700ms;
    -moz-transition: all 700ms;
  }

  .glide__slide.active .sunlight-slideshow-8 {
    margin-left: -272px;
    transition: all 700ms;
    -webkit-transition: all 700ms;
    -moz-transition: all 700ms;
  }

  #biolite-introducing-sunlight-solar-powered-lantern .glide__slide img {
    height: 100vh !important;
    width: auto;
  }

  #biolite-introducing-sunlight-solar-powered-lantern .landing-section-hero {
    height: 70vh !important;
  }

  #biolite-introducing-sunlight-solar-powered-lantern .hero-video__video-wrapper video {
    display: none;
  }

  .sunlight-hero {
    background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/SunLightLanding_mobile.jpg?5134677039274036572…);
    background-position: center;
    background-size: cover;
  }

  .sunlight-hero-section {
    position: relative;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    top: 0;
    padding-top: 10px;
  }

  .sunlight-hero-header {
    font-size: 31px;
    line-height: 32px;
    padding: 45px 0 0 0;
  }

  .sunlight-hero-subheader {
    font-size: 26px;
    line-height: 45px;
  }

  .sunlight-hero-cta {
    padding: 52% 0 0 0;
  }

  .sunlight-title {
    font-size: 35px;
    line-height: 38px;
  }

  .sunlight-description {
    font-size: 15px;
    line-height: 23px;
  }

  .hanging-sunlight {
    position: absolute;
    top: -6px;
    width: 145px;
    z-index: 100;
    height: 213px;
    padding-left: 0;
    left: 50px;
  }

  .ground-sunlight {
    position: absolute;
    padding-left: 0;
    width: 265px;
    height: 265px;
    padding-right: 0;
    left: 229px;
  }

  .sunlight-icon-feature-list {
    position: absolute;
    width: 100%;
  }

  .sunlight-icon-feature-icon {
    display: block;
    padding: 0 0 25px 0;
    margin: 0 auto;
  }

  .sunlight-icon-feature {
    display: inline-block;
    width: 45%;
    padding: 20px 5px 0 5px;
  }

  .meet-your-new-sidekick {
    height: 100% !important;
  }

  .small--positionreset {
    position: relative;
    top: 0;
    bottom: 0;
    transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
    -moz-transform: translate(0%, 0%);
  }

  .sidekick-text {
    padding-top: 235px;
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 50px;
  }

  .sunlight-description {
    font-size: 15px;
    line-height: 17px;
  }

  .small--vh40 {
    height: 40vh !important;
  }

  .small--vh50 {
    height: 50vh !important;
  }

  .small--vh60 {
    height: 60vh !important;
  }

  .small--vh100 {
    height: 100vh !important;
  }

  .sunlight-halfzies-light {
    height: 85vh;
    left: 30%;
  }

  .sunlight-halfzies-solar {
    height: 85vh;
    left: 30%;
  }

  .sunlight-in {
    width: 80%;
    top: 8%;
  }

  .sunlight-out {
    width: 80%;
    bottom: 15%;
    top: inherit;
  }

  #sun-clouds-sunlight {
    width: 270%;
    top: 21%;
    left: 45%;
  }

  #stars-moon-sunlight {
    position: absolute;
    width: 26%;
    z-index: 10;
    bottom: 30%;
    left: 32%;
  }

  .choose-your-hue {
    position: relative;
    bottom: inherit;
    top: 8%;
    right: 0%;
    width: 90%;
    padding-left: 10%;
  }

  .choose-your-hue-wrapper {
    background-color: #000;
    background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/PartyMode_cinemagraph_mobileGif.gif?8189760658102361923");
    background-repeat: no-repeat;
    overflow: hidden;
    background-position: center;
  }

  .sunlight-spec-bloc {
    height: 31.66666vh;
    width: 50%;
    padding: 0;
    display: inline-block;
    float: left;
  }

  .sunlight-spec-illustration {
    max-height: 20vh;
  }

  .sunlight-spec-title {
    font-size: 15px;
    line-height: 17px;
    padding: 15px 10px 0 10px;
  }

  .sunlight-quick-specs-title {
    font-size: 12px;
    line-height: 14px;
    text-transform: uppercase;
    color: #fff;
    font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    text-align: center;
    z-index: 100;
    padding: 10px 0px 7px 0px;
    border-radius: 2px;
    background-color: #008fa1;
    height: 5vh;
  }

  .sunlight-location-icon {
    font-size: 15px !important;
    top: 2px;
    position: relative;
    padding: 4px 5px 0 0;
  }

  #biolite-introducing-sunlight-solar-powered-lantern .product-grid-item__inner {
    height: 300px;
  }

  #biolite-introducing-sunlight-solar-powered-lantern .compare-at {
    display: inline !important;
  }

  .sunlight-review {
    background-size: 62%;
    background-position: 115% 50%;
  }

  .sunlight-reviews-coming-in {
    width: 59%;
  }

  .sunlight-sticky-wrapper {
    padding: 0;
  }

  #biolite-introducing-sunlight-solar-powered-lantern .product-grid-item__thumb {
    padding: 40px;
  }
}

@media only screen and (max-width: 480px) {
  .sunlight-title {
    font-size: 24px;
    line-height: 26px;
  }

  .sunlight-spec-title {
    font-size: 11px;
    line-height: 13px;
    padding: 15px 10px 0 10px;
  }

  .sunlight-description {
    font-size: 15px;
    line-height: 17px;
  }

  #biolite-introducing-sunlight-solar-powered-lantern .product-grid-item__thumb {
    padding: 9px;
  }

  #biolite-introducing-sunlight-solar-powered-lantern .product-grid-item__inner {
    height: 158px;
  }

  .sunlight-hero-header {
    font-size: 21px;
    line-height: 20px;
    padding: 45px 0 0 0;
  }

  .sunlight-product-buttons-2 {
    margin: 10px 0 0 0;
  }

  .sunlight-hero-subheader {
    font-size: 16px;
  }
}

@media only screen and (max-width: 360px) {
  .sunlight-hero-cta {
    padding: 24% 0 0 0;
  }

  .sunlight-spec-title {
    font-size: 11px;
    line-height: 13px;
  }
}

.solarhome-hero-parallax {
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/SHS620_hero_r10.jpg?13891895340519530540…);
  background-color: white;
  height: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.downArrow {
  color: #fff;
}

.solarhome-footer-parallax {
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/SHS_footer.jpg?831974322122740063…);
  background-color: white;
  background-attachment: inherit;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.go-inside-solarhome {
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/SHS620_hero_r10.jpg?13891895340519530540…);
  background-color: white;
  height: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.shs-hero-cta {
  padding: 30px 0 0 0;
}

.solarhome-hero-section {
  position: absolute;
  width: 100vw;
  top: 5%;
  left: 6%;
  z-index: 1000;
}

.solarhome-footer-section {
  position: absolute;
  left: 6%;
  padding-top: 15vh;
  width: 55%;
  z-index: 10;
}

.solarhome-overview-illustration {
  position: absolute;
  bottom: 0;
  top: 0%;
  right: 0%;
  z-index: 500;
  margin: 1vh 0 0 1vh;
  width: 99%;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 0, 0% 100%);
  -moz-clip-path: polygon(0 0, 100% 0, 0 0, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 0 0, 0% 100%);
  animation: shsIllustration 1.5s;
  -webkit-animation: shsIllustration 1.5s;
  -moz-animation: shsIllustration 1.5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
}

@keyframes shsIllustration {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 0 0, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 0 0, 0% 100%);
  }

  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}

@-moz-keyframes shsIllustration {
  0% {
    -moz-clip-path: polygon(0 0, 100% 0, 0 0, 0% 100%);
  }

  100% {
    -moz-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}

.solarhome-overview-illustration-fill {
  position: absolute;
  bottom: 0;
  top: 0%;
  right: 0%;
  z-index: 400;
  margin: 1vh 0 0 1vh;
  width: 99%;
  animation: shsIllustrationFill 1.5s;
  -webkit-animation: shsIllustrationFill 1.5s;
  opacity: 0;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
}

@keyframes shsIllustrationFill {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.solarhome-overview {
  height: 100vh;
  background: rgba(255,255,255,0.2);
}

.solarhome-overview-quads-product {
  max-height: 20vh;
}

.solarhome-overview-quads-content {
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  left: 16.66666vw;
}

.solarhome-overview-quads-1 {
  position: relative;
  height: 23vh;
  width: 68%;
  left: 4%;
  display: block;
  padding: 20px 0 20px 0;
  border-bottom: 1px dotted #fff;
  border-right: 1px dotted #fff;
}

.solarhome-overview-quads-2 {
  position: absolute;
  height: 50vh;
  width: 45%;
  right: 0;
  padding: 10% 90px 0 90px;
}

.hanging-lights-title {
  font-size: 40px;
  line-height: 42px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  display: block;
  text-align: left;
  padding: 0 0 10px 0;
}

.solarhome-overview-quads-3 {
  position: absolute;
  height: 50vh;
  width: 45%;
  left: 0;
  padding: 35% 90px 0 90px;
  z-index: 5000;
}

.solarhome-overview-quads-4 {
  position: absolute;
  height: 50vh;
  width: 45%;
  right: 0;
  padding: 25% 90px 0 90px;
  padding: 35% 90px 0 90px;
  z-index: 5000;
}

.solarhome-overview-numbering {
  font-size: 21px !important;
  position: relative;
  top: -7px;
  display: block;
  text-align: left;
}

.solarhome-overview {
  margin-top: 4vh;
  height: 92vh;
  background: rgba(255,255,255,0.2);
  animation: shsOverviewBG 1.5s;
  -webkit-animation: shsOverviewBG 1.5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
}

@keyframes shsOverviewBG {
  0% {
    background: rgba(255,255,255,0.5);
  }

  100% {
    background: rgba(243,243,243,1);
  }
}

.solarhome-panel-feature {
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/SolarFeature_BG_bcb9a462-e7df-48d9-a836-d9331a2f7dae.jpg?6096280840183185747…);
  background-size: cover;
  background-repeat: no-repeat;
}

.solarhome-panel-copy {
  position: absolute;
  left: 11%;
  top: 26%;
  width: 25%;
}

#sun-clouds-solarhome {
  position: absolute;
  width: 140%;
  z-index: 10;
  top: 39%;
  left: 17%;
}

.solarhome-box-feature {
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/WoodBackground_r2.jpg?15419463458691998227…);
  background-size: cover;
  background-repeat: no-repeat;
}

.solarhome-box-interactive {
  position: absolute;
  width: 1600px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 10;
}

.solarhome-box {
  position: absolute;
  height: 99vh;
  padding-top: 6%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 15;
}

.solarhome-box-glow {
  position: absolute;
  height: 99vh;
  padding-top: 6%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 25;
}

.solarhome-box-usb {
  position: absolute;
  height: 99vh;
  padding-top: 6%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 25;
}

.solarhome-box-main {
  position: absolute;
  width: 1600px;
  top: 12%;
  left: 50%;
  z-index: 200;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.solarhome-box-callout-icon {
  font-size: 43px !important;
  position: absolute;
  left: -26%;
  top: 11%;
}

.solarhome-box-callout-light {
  position: absolute;
  width: 20%;
  top: 30%;
  left: 12%;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: 2px;
  z-index: 5000;
}

.solarhome-box-radio-hover {
  opacity: 0;
  transition: opacity 100ms ease-in-out;
  -webkit-transition: opacity 100ms ease-in-out;
  -moz-transition: opacity 100ms ease-in-out;
}

.solarhome-box-callout-radio:hover ~ .solarhome-box-interactive .solarhome-box-radio-hover {
  opacity: 1;
}

.solarhome-box-lcd-hover {
  opacity: 0;
  transition: opacity 100ms ease-in-out;
  -webkit-transition: opacity 100ms ease-in-out;
  -moz-transition: opacity 100ms ease-in-out;
}

.solarhome-box-callout-lcd:hover ~ .solarhome-box-interactive .solarhome-box-lcd-hover {
  opacity: 1;
}

.musicNote_1 {
  animation: rayFade 2s infinite;
  -webkit-animation: rayFade 2s infinite;
  -moz-animation: rayFade 2s infinite;
}

.musicNote_2 {
  animation: rayFade 2s infinite;
  -webkit-animation: rayFade 2s infinite;
  -moz-animation: rayFade 2s infinite;
}

.musicNote_3 {
  animation: rayFade 2s infinite;
  -webkit-animation: rayFade 2s infinite;
  -moz-animation: rayFade 2s infinite;
}

.solarhome-box-glow-hover {
  opacity: 0;
  transition: opacity 100ms ease-in-out;
  -webkit-transition: opacity 100ms ease-in-out;
  -moz-transition: opacity 100ms ease-in-out;
}

.solarhome-box-callout-light:hover ~ .solarhome-box-interactive .solarhome-box-glow-hover {
  opacity: 1;
}

.solarhome-box-usb-hover {
  opacity: 0;
  transition: opacity 100ms ease-in-out;
  -webkit-transition: opacity 100ms ease-in-out;
  -moz-transition: opacity 100ms ease-in-out;
}

.solarhome-box-callout-usb:hover ~ .solarhome-box-interactive .solarhome-box-usb-hover {
  opacity: 1;
  -webkit-animation: bounceInRight2 1s 1;
  -moz-animation: bounceInRight2 1s 1;
  animation: bounceInRight2 1s 1;
}

@keyframes bounceInRight2 {
  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(100px, 0, 0);
    transform: translate3d(100px, 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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.solarhome-box-callout-radio {
  position: absolute;
  width: 20%;
  bottom: 21%;
  left: 12%;
  background-color: rgba(255, 255, 255, 0.25);
  padding: 20px;
  border-radius: 2px;
  z-index: 5000;
}

.solarhome-box-callout-usb {
  position: absolute;
  width: 20%;
  bottom: 21%;
  right: 10%;
  background-color: rgba(255, 255, 255, 0.25);
  padding: 20px;
  border-radius: 2px;
  z-index: 5000;
}

.solarhome-box-callout-usb {
  position: absolute;
  width: 20%;
  bottom: 21%;
  right: 10%;
  color: rgba(255, 255, 255, 1);
  padding: 20px;
  border-radius: 2px;
  z-index: 5000;
}

.solarhome-box-callout-lcd {
  position: absolute;
  width: 20%;
  top: 30%;
  right: 10%;
  background-color: rgba(255, 255, 255, 0.25);
  padding: 20px;
  border-radius: 2px;
}

.solarhome-box-callout-title {
  font-size: 23px;
  line-height: 34px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  display: block;
  text-align: left;
}

.solarhome-box-callout-subtitle {
  font-size: 14px;
  line-height: 18px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  display: block;
  text-align: left;
}

.shs-nav-top {
  font-size: 13px;
  line-height: 18px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  display: block;
  text-align: left;
  text-transform: uppercase;
}

.shs-nav-top-icon {
  font-size: 12px !important;
  padding: 0 0 0 10px;
  transform: rotate(-90deg);
  top: 5px;
  position: relative;
}

.solarhome-lights-feature {
  background-image: linear-gradient(to right, #434343 0%, black 100%);
}

.solarhome-overview-motionsensortext {
  position: absolute;
  top: 64%;
  left: 46%;
  width: 74px;
}

.hanging-lights-text {
  right: 5%;
}

.solarhome-hanginglights-interactive {
  position: absolute;
  left: 0%;
  top: 5%;
}

.solarhome-lights-main {
  position: absolute;
  height: 90vh;
  z-index: 20;
}

.solarhome-lights-glow-right {
  position: absolute;
  height: 90vh;
  z-index: 30;
}

.solarhome-lights-glow-left {
  position: absolute;
  height: 90vh;
  z-index: 40;
}

.solarhome-lights-glow-motion {
  position: absolute;
  height: 90vh;
  z-index: 50;
}

.solarhome-packaging-copy {
  position: relative;
  left: 8%;
  padding-top: 5%;
  width: 60%;
}

.solarhome-packaging-img {
  position: absolute;
  height: 100vh;
  left: 47%;
  top: 0;
}

.solarhome-perfect-for-section {
}

.solarhome-perfect-for {
  width: 40%;
  padding: 5% 1% 0 1%;
  display: inline-block;
  position: relative;
}

.solarhome-perfect-for-title {
  font-size: 20px;
  position: absolute;
  text-transform: uppercase;
  color: #008fa1;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-align: center;
  width: 250px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
}

.solarhome-perfect-for-subtitle {
  font-size: 13px;
  line-height: 15px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  display: block;
  text-align: left;
}

.solarhome-perfect-for-illustration {
  height: 24vh;
  display: inline;
}

.solarhome-buy {
  width: 40%;
  margin-left: 0%;
  margin-top: 10vh;
  display: inline-block;
}

.solarhome-packaging {
  width: 50%;
  float: left;
  height: 100vh;
  display: inline-block;
  margin-left: 0;
  margin-top: 0vh;
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/HoldingBox_r2.png?1393284………);
  background-size: 100%;
  background-repeat: no-repeat;
}

.solarhome-buy-main {
  height: 60vh;
}

#new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .sunlight-icon-feature-icon {
  width: 35px;
  padding: 0 10px 0 0;
  position: relative;
  top: 7px;
  display: inline;
}

#new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .sunlight-icon-feature {
  display: block;
  padding: 9px 60px 26px 0px;
}

#new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .sunlight-description {
  font-size: 16px;
  line-height: 24px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  display: block;
  text-align: left;
}

#new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .btn.btn-icon.btn-icon--full span {
  top: 0px;
}

#new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .nav-horizontal__action .btn {
  width: 80%;
  padding: 14px 0;
}

#new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .nav-horizontal {
  width: 100%;
  height: 46px;
  z-index: 100;
  background-color: rgba(243, 243, 243, 0.95);
}

#new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .product-grid-item__inner {
  position: relative;
  height: 60vh;
  margin: 0 auto;
  text-align: center;
}

#new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .product-grid-item__footer {
  height: 10vh;
}

#new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .sunlight-product-buttons {
  text-align: center;
  padding-bottom: 25px;
  height: 10vh;
}

.bouncy-comeinside {
  color: #fff !important;
  font-size: 25px !important;
  padding: 0;
  margin: 0;
  position: absolute;
  margin-top: 65vh;
  width: 50vw;
  left: 6.5%;
  outline: none;
  z-index: 10;
  border: none;
  opacity: 1;
}

.come-inside-text {
  font-size: 16px;
  line-height: 0px;
  text-transform: uppercase;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  display: block;
  text-align: left;
  color: #fff !important;
}

.shs-hero-header {
  font-size: 38px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  display: block;
}

.shs-hero-subheader {
  font-size: 28px;
  margin: 0;
  padding: 0 0 15px 0;
  line-height: 30px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
}

.shs-wiggle-arrow {
  position: relative;
  right: 2%;
  width: 100px;
}

.solarhome-perfect-for-main {
  font-size: 33px;
  line-height: 37px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  display: block;
  text-align: left;
  position: absolute;
  top: 15vh;
}

.shs-slideshow {
  position: absolute;
  top: 12%;
  left: 8%;
  width: 45%;
  z-index: 100;
}

.solarhome-perfect-for-sub {
  font-size: 18px;
  line-height: 22px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  display: block;
  text-align: left;
  position: absolute;
  top: 27vh;
  padding: 0 80px 0 0;
}

.solarhome-perfect-for-desc {
  font-size: 21px;
  line-height: 24px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  padding: 20vh 40px 0 40px;
  display: block;
  text-align: left !important;
  position: absolute;
  height: 50vh;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  color: #3e3e3e;
  background-color: rgba(255, 255, 255, 0.95);
  transition: opacity 150ms ease-in-out;
  -webkit-transition: opacity 150ms ease-in-out;
  -moz-transition: opacity 150ms ease-in-out;
}

.shs-spec-bloc {
  height: 50vh;
  width: 33%;
  padding: 30px;
  display: inline-block;
  overflow: hidden;
}

.solarhome-perfect-for-desc:hover {
  opacity: 1;
}

.shs-spec-bloc:after {
  content: '';
  position: absolute;
  height: 95%;
  right: 0;
  top: 2.5%;
  width: 1px;
  background: #fff;
  z-index: 100;
}

.shs-spec-bloc:before {
  content: '';
  position: absolute;
  width: 95%;
  bottom: 0;
  left: 2.5%;
  height: 1px;
  background: #fff;
  z-index: 100;
}

.shs-spec-bloc:first-child:after {
  content: '';
  position: absolute;
  height: 95%;
  right: 0;
  top: 2.5%;
  width: 1px;
  background: #008fa1;
  z-index: 100;
}

.shs-spec-bloc:first-child:before {
  content: '';
  position: absolute;
  width: 95%;
  bottom: 0;
  left: 2.5%;
  height: 1px;
  background: #008fa1;
  z-index: 100;
}

.shs-impact-footer {
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/SolarHome_Impact.jpg?4455000778524859277……);
  background-size: 100%;
  background-repeat: no-repeat;
}

.solarhome-overview-quads-title {
  font-size: 29px;
  line-height: 35px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  display: block;
}

.solarhome-overview-quads-desc {
  font-size: 17px;
  line-height: 20px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  display: block;
  padding: 0;
}

.solarhome-packaging-title {
  font-size: 20px;
  line-height: 24px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  display: block;
  padding: 30px 30px 30px 100px;
  position: absolute;
  top: 55%;
  left: 0;
  background-color: rgba(243, 243, 243, 0.8);
}

@media only screen and (max-width: 1023px) {
  .solarhome-hero-parallax {
    background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/SHS620_hero_tablet.jpg?4834961284712285971…);
    height: 100vh !important;
    background-size: auto;
    background-attachment: inherit;
  }

  .go-inside-solarhome {
    background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/SHS620_hero_tablet.jpg?4834961284712285971…);
    height: 100vh !important;
  }

  .shs-hero-header {
    font-size: 24px;
  }

  .shs-hero-subheader {
    font-size: 22px;
  }

  .shs-hero-cta {
    padding: 25px 0 0 0;
  }

  .solarhome-hero-section {
    top: 150px;
    left: 0;
  }

  .bouncy-comeinside {
    padding-top: 235px !important;
    margin-top: 0;
    left: 0;
    width: 100vw;
  }

  .come-inside-text {
    text-align: center !important;
  }

  .solarhome-overview {
    margin-top: 0vh;
    height: 100vh;
  }

  .solarhome-overview-quads-1 {
    position: relative;
    height: 23vh;
    width: 100%;
    left: 0;
    padding: 0;
  }

  .solarhome-overview-quads-product {
    max-height: 23vh;
  }

  .solarhome-overview-quads-content {
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    left: 16.3333%;
    padding: 0 20px 0 0;
  }

  #new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .nav-horizontal__action .btn {
    width: 80%;
    padding: 7px 0;
  }

  .shs-nav-top {
    padding: 14px 0 0 20px;
  }

  .solarhome-overview-quads-title {
    font-size: 17px;
    line-height: 26px;
  }

  .solarhome-overview-quads-desc {
    font-size: 12px;
    line-height: 13px;
    padding: 0;
  }

  .solarhome-overview-numbering {
    font-size: 14px !important;
    top: 0;
  }

  .solarhome-panel-feature {
    background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/SolarFeature_BG_mobile.jpg?8555639575839443105…);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 48%;
  }

  #sun-clouds-solarhome {
    width: 200%;
    top: 38%;
    left: 9%;
  }

  .solarhome-box-main {
    width: 100%;
    top: 15%;
    padding: 0 15px 0 15px;
  }

  .solarhome-hanginglights-interactive {
    position: absolute;
    width: 100%;
    left: -175px;
    top: 166px;
    z-index: 0;
  }

  .solarhome-lights-main {
    position: absolute;
    height: 52vh;
    padding: 3vh 0 0 0;
  }

  .solarhome-lights-glow-right {
    position: absolute;
    height: 52vh;
    padding: 3vh 0 0 0;
  }

  .solarhome-lights-glow-left {
    position: absolute;
    height: 52vh;
    padding: 3vh 0 0 0;
  }

  .solarhome-lights-glow-motion {
    position: absolute;
    height: 52vh;
    padding: 3vh 0 0 0;
  }

  .hanging-lights-title {
    font-size: 24px;
    line-height: 26px;
    padding: 3vh 0 0 0;
  }

  .hanging-lights-text {
    left: 0;
    padding: 10vh 30px 0 30px;
  }

  .solarhome-perfect-for-section {
    padding-top: 48px;
  }

  .solarhome-perfect-for-desc:hover {
    opacity: 0;
  }

  #new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .sunlight-icon-feature {
    display: inline-block;
    width: 100%;
    padding: 20px 5px 0 5px;
  }

  #new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .sunlight-icon-feature-icon {
    display: table-cell;
    padding: 11px 0 10px 0;
    position: relative;
    top: 0;
    margin: 0 auto;
    text-align: center;
    width: 32px;
  }

  #new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .sunlight-description {
    font-size: 13px;
    line-height: 14px;
  }

  .shs-spec-bloc {
    width: 49%;
    padding: 8px;
    height: 26vh;
    display: inline-block;
  }

  .solarhome-perfect-for-main {
    font-size: 19px;
    line-height: 20px;
    padding: 0 0 0 10px;
    top: 30px;
  }

  .solarhome-perfect-for-sub {
    font-size: 14px;
    line-height: 17px;
    top: 85px;
    padding: 0 20px 0 10px;
  }

  .solarhome-perfect-for-desc {
    font-size: 13px;
    line-height: 15px;
    padding: 20px 10px 0 16px;
    text-align: left;
    left: 0;
  }

  .solarhome-perfect-for-title {
    font-size: 15px;
    position: absolute;
    padding: 0;
    text-align: center;
    width: 50vw;
    left: 0;
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(-50%);
  }

  #new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .sunlight-spec-illustration, #upgrade-your-tailgate-with-biolite-firepit .sunlight-spec-illustration {
    max-height: 19vh;
  }

  #new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .glide__slide img {
    height: 100vh !important;
    width: auto;
  }

  .shs-slideshow {
    width: 95%;
  }

  .glide__slide.active .shs-slideshow-1 {
    margin-left: -400px;
    transition: all 700ms;
    -webkit-transition: all 700ms;
    -moz-transition: all 700ms;
  }

  .glide__slide.active .shs-slideshow-3 {
    margin-left: -490px;
    transition: all 700ms;
    -webkit-transition: all 700ms;
    -moz-transition: all 700ms;
  }

  .solarhome-footer-section {
    padding-top: 14vh;
    width: 75%;
  }

  .solarhome-buy {
    width: 90%;
    margin-left: 5%;
    margin-top: 10vh;
  }

  .solarhome-buy-main {
    width: inherit;
    padding: 10px;
    max-height: 50vh;
  }

  #new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .product-grid-item__inner, #upgrade-your-tailgate-with-biolite-firepit .product-grid-item__inner {
    height: 100%;
  }

  #new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .sunlight-product-buttons, #upgrade-your-tailgate-with-biolite-firepit .sunlight-product-buttons {
    text-align: center;
    padding-bottom: 38px;
    min-height: 10vh;
  }

  #new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .product-grid-item__footer, #upgrade-your-tailgate-with-biolite-firepit .product-grid-item__footer {
    min-height: 15vh !important;
  }

  #new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .product-grid-item__title {
    font-size: 18px;
    line-height: 18px;
  }

  #upgrade-your-tailgate-with-biolite-firepit .product-grid-item__title {
    font-size: 15px;
    line-height: 17px;
  }

  .shs-product-buttons-1 {
    margin: 0 auto;
    display: inline !important;
    text-align: center;
  }

  .shs-product-buttons-2 {
    margin: 0 0 0 20px;
    display: inline !important;
  }

  .solarhome-packaging {
    display: none;
  }

  .shs-nav-top {
    padding: 4px 0 10px 20px;
  }

  #new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .nav-horizontal__action .btn {
    width: 80%;
    padding: 15px 0;
  }
}

@media only screen and (max-width: 840px) and (min-width: 481px) {
  .solarhome-box-callout-radio {
    width: 26%;
    left: 3%;
  }

  .solarhome-box-callout-light {
    width: 26%;
    left: 3%;
  }

  .solarhome-box-callout-lcd {
    width: 26%;
    right: 2%;
  }

  .solarhome-box-callout-usb {
    width: 26%;
    right: 2%;
  }

  .solarhome-box-callout-title {
    font-size: 20px;
    line-height: 27px;
  }

  .solarhome-hanginglights-interactive {
    position: absolute;
    width: 100%;
    left: -100px;
    top: 166px;
    z-index: 0;
  }
}

@media only screen and (max-width: 480px) {
  .solarhome-hero-parallax {
    background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/SHS620_hero_mobile.jpg?13932848811331028322…);
    height: 100vh !important;
    background-size: auto;
    background-attachment: inherit;
  }

  .go-inside-solarhome {
    background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/SHS620_hero_mobile.jpg?13932848811331028322…);
    height: 100vh !important;
  }

  .shs-hero-header {
    font-size: 18px;
  }

  .shs-hero-subheader {
    font-size: 19px;
  }

  .solarhome-overview-quads-content {
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    left: 33.333333%;
    padding: 0 20px 0 0;
  }

  .solarhome-overview-illustration {
    position: absolute;
    bottom: 0;
    top: 0%;
    right: 26%;
    margin: 56vh 0 0 0;
    width: 100%;
    max-height: 40vh;
  }

  .solarhome-overview-illustration-fill {
    position: absolute;
    bottom: 0;
    top: 0%;
    right: 26%;
    margin: 56vh 0 0 0;
    width: 100%;
    max-height: 40vh;
  }

  .solarhome-overview-quads-1 {
    position: relative;
    height: 14vh;
    width: 100%;
    left: 0;
    padding: 0;
  }

  #prepPack-SHS .solarhome-overview-quads-1 {
    position: relative;
    height: 14vh;
    width: 100%;
    left: 0;
    padding: 0;
  }

  .solarhome-overview-quads-product {
    max-height: 12vh;
  }

  #sun-clouds-solarhome {
    width: 340%;
    top: 38%;
    left: 9%;
  }

  .solarhome-panel-copy {
    left: 11%;
    top: 16%;
    width: 55%;
  }

  .solarhome-box {
    position: absolute;
    height: 95vh;
    top: 2vh;
    left: 22%;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  .solarhome-box-glow {
    position: absolute;
    height: 95vh;
    top: 2vh;
    left: 22%;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  .solarhome-box-callout-icon {
    font-size: 25px !important;
    position: relative;
    left: 0;
    top: 0;
  }

  .solarhome-box-callout-light:hover ~ .solarhome-box-interactive .solarhome-box-glow-hover {
    opacity: 0;
  }

  .solarhome-box-callout-light {
    position: absolute;
    width: 60%;
    top: 25%;
    left: 35%;
    background-color: rgba(255, 255, 255, 0);
  }

  .solarhome-box-callout-radio {
    position: absolute;
    width: 60%;
    top: 42%;
    left: 35%;
    background-color: rgba(255, 255, 255, 0);
  }

  .solarhome-box-callout-lcd {
    position: absolute;
    width: 60%;
    top: 60%;
    left: 35%;
    background-color: rgba(255, 255, 255, 0);
  }

  .solarhome-box-callout-usb:hover ~ .solarhome-box-interactive .solarhome-box-usb-hover {
    opacity: 0;
  }

  .solarhome-box-callout-usb {
    position: absolute;
    width: 60%;
    top: 78%;
    left: 35%;
    background-color: rgba(255, 255, 255, 0);
  }

  .solarhome-box-callout-title {
    font-size: 19px;
    line-height: 27px;
  }

  .solarhome-box-callout-subtitle {
    font-size: 12px;
    line-height: 14px;
  }

  .nav-horizontal__action .btn {
    width: 80%;
    font-size: 14px !important;
    top: -1px;
    padding: 18px 0;
  }

  .shs-nav-top {
    padding: 15px 0 10px 20px;
  }
}

.backcountrybites-hero {
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/backcountryBites_hero.jpg?9340955091899009631…);
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.backcountry-hero-section {
  position: absolute;
  right: 0;
  width: 1000px;
  top: 21%;
  z-index: 10;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.backcountry-hero-header {
  font-size: 33px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  display: block;
  margin-bottom: -20px;
}

.backcountry-hero-subheader img {
  width: 100%;
}

.backcountry-hero-cta {
  padding: 10px 0 0 0;
}

.playicon {
  padding: 0 5px 0 0;
  position: relative;
  top: 2px;
}

.backcountry-app {
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/bg_topo.jpg?150332514045028825…);
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.backcountry-app-phone {
  height: 80vh;
  padding-left: 11%;
  margin-top: 10vh;
  position: absolute;
  z-index: 400;
}

.backcountry-icon-feature-icon {
  width: 48px;
  padding: 0 10px 0 0;
  position: relative;
  top: 11px;
  display: inline;
}

.backcountry-app-phone-demo {
  height: 100%;
  padding-left: 14%;
  margin-top: 20.4vh;
  position: absolute;
  z-index: 500;
}

.backcountry-app-phone-demo-vid {
  height: 55vh;
}

.backcountrybites-how-it-works {
  height: 50vh;
  background-color: #008fa1;
}

.backcountrybites-how-it-works-icon img {
  width: 80px;
  padding: 20px 0 20px 0;
}

.backcountrybites-how-it-works-title {
  font-size: 28px;
  line-height: 34px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  display: block;
  text-align: center;
}

.backcountrybites-how-it-works-subtitle {
  font-size: 16px;
  line-height: 19px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  display: block;
  text-align: center;
}

.backcountrybites-how-it-works-col {
  padding: 0 50px 0 50px;
}

.backcountry-main-title {
  font-size: 33px;
  line-height: 42px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  display: block;
  text-align: center;
  padding: 30px 0 30px 0;
}

.backcountry-lets-get-cooking {
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/LetsGetCooking_hero_r2.jpg?9509931673775200252…);
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.backcountry-lets-get-cooking-text {
  width: 32%;
  position: absolute;
  right: 4%;
  top: 45%;
}

.backcountry-deal {
  background-color: #f3f3f3;
  outline: none;
}

.backcountry-deal-detail {
  display: block;
  font-weight: 700;
  color: #008fa1 !important;
  padding-top: 22px;
  font-size: 23px;
  line-height: 26px;
}

.deal-text {
  width: 45%;
  padding-left: 7%;
}

.backcountry-deal-img {
  max-height: 80vh;
}

.backcountry-sharing {
  display: inline !important;
}

.backcountry-recipe-videos {
  padding: 0 20px 0 0;
}

#introducing-backcountry-bites .sunlight-icon-feature {
  display: block;
  padding: 9px 32px 30px 0px;
}

@media only screen and (min-width: 1800px) {
  .backcountry-app-phone {
    padding-left: 0%;
  }

  .backcountry-app-phone-demo {
    padding-left: 2.8%;
  }

  .backcountry-main-title {
    padding: 130px 0 30px 0;
  }

  .deal-text {
    width: 30%;
    padding-left: 0;
  }
}

@media only screen and (max-width: 1024px) {
  .backcountry-hero-section {
    width: 480px;
    top: 12%;
    margin-bottom: -10px;
  }

  #introducing-backcountry-bites .backcountry-app .sunlight-icon-feature {
    display: inline-block;
    padding: 9px 17px 5px 0px;
  }

  .backcountry-hero-header {
    font-size: 20px;
  }

  .backcountry-hero-subheader img {
    width: 400px;
  }

  .backcountrybites-how-it-works {
    height: 100%;
    padding: 0 0 40px 0;
  }

  .backcountry-app-phone-demo-vid {
    display: none;
  }

  .backcountry-lets-get-cooking-text {
    width: 90%;
    position: absolute;
    right: 4%;
    top: 7%;
    text-align: center;
  }

  .backcountry-lets-get-cooking {
    background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/LetsGetCooking_hero_mobile.jpg?15386832153015226434…);
  }

  .deal-text {
    width: 90%;
    padding-left: 5%;
    padding-top: 11%;
  }

  .backcountry-deal {
    height: 100% !important;
    padding: 0 0 80px 0;
  }

  .backcountry-app-phone {
    height: 80vh;
    top: 50vh;
    padding-left: 0;
    margin-top: 0;
    margin-left: 0;
    overflow: hidden;
    position: absolute;
    z-index: 400;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
  }

  .backcountry-app-phone-demo {
    padding-left: 0;
  }

  .backcountry-sidekick-text {
    padding-top: 35px;
    padding-left: 5%;
    padding-right: 0;
    padding-bottom: 50px;
  }

  .backcountry-icon-feature-icon {
    width: 48px;
    padding: 0 0 24px 0;
    position: relative;
    top: 11px;
    display: block;
    text-align: center;
    margin: 0 auto;
  }

  .backcountrybites-how-it-works-title {
    font-size: 22px;
  }

  .backcountrybites-how-it-works-subtitle {
    font-size: 14px;
    line-height: 17px;
  }

  .backcountrybites-how-it-works-icon img {
    padding: 40px 0 5px 0;
  }
}

@media only screen and (max-width: 480px) {
  .deal-text {
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }

  .backcountry-app-phone {
    height: 61vh;
    top: 64vh;
    padding-left: 0;
    margin-top: 0;
    margin-left: 0;
    overflow: hidden;
    position: absolute;
    z-index: 400;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
  }

  .backcountry-hero-subheader img {
    width: 320px;
    padding-top: 13px;
  }
}

#biolite-homestove-limited-edition .compare-table tbody tr > :first-child, .compare-table thead tr > th:first-child, .compare-table tfoot tr > td:first-child {
  color: #777777;
  font-weight: bold;
  text-transform: uppercase;
  text-align: left;
  width: 12%;
  padding-left: 30px;
}

.compare-table tbody tr > :first-child, .compare-table thead tr > th:first-child, .compare-table tfoot tr > td:first-child {
  color: #4e4e4e;
  font-weight: bold;
  text-transform: uppercase;
  text-align: right;
  width: 40%;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding-left: 21px;
}

.headlamp-compare-img {
  display: block;
  width: 145px;
  margin: 0;
  position: relative;
  bottom: -20px;
}

.ansi-table tbody tr > :first-child, .ansi-table thead tr > th:first-child, .ansi-table tfoot tr > td:first-child {
  color: #4e4e4e;
  font-weight: bold;
  text-transform: uppercase;
  text-align: right;
  width: 20%;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding-left: 21px;
}

.full-col-span td {
  text-align: left;
  font-weight: 300;
  border-right: 1px dashed #cfcfd0;
  height: 42px;
  width: 100%;
  position: relative;
  padding: 10px 20px 10px 40px;
  vertical-align: top;
}

.beam-left {
  display: inline;
}

.beam-right {
  display: inline;
  padding-left: 85%;
}

@media only screen and (max-width: 480px) {
  .beam-right {
    display: inline;
    padding-left: 50%;
  }
}

.ansi-table td, .ansi-table th {
  text-align: left;
  font-weight: 300;
  border-right: 1px dashed #cfcfd0;
  height: 45px;
  position: relative;
  padding: 10px 20px 10px 40px;
}

.ansi-table-title {
  color: #3b3b3b;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  width: 40%;
  display: inline-block;
  vertical-align: top;
  padding-right: 20px;
  padding-top: 4px;
  line-height: 1em;
  text-transform: uppercase;
  font-weight: 700;
}

.ansi-table-mobile-title {
  font-size: 8px;
}

#biolite-homestove-limited-edition #product-compare .product-compare {
  max-width: 100%;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.compare-table-illustration {
  width: 75% !important;
  margin: 0;
  height: 153px;
  display: block;
  padding: 0 0 20px 0;
}

.category-arrows {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
}

.kit-caption {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 10px;
  color: #008fa1;
  background-color: #fff;
  padding: 5px 9px 5px 9px;
  border-radius: 2px;
  border: 0px solid #008fa1;
}

.product-grid-item__footer-category-small {
  height: 48px;
}

.kits-slideshow-controls {
  top: 50% !important;
  width: 93% !important;
  margin-left: 2% !important;
  position: absolute !important;
}

.shop-this-kit {
  margin: 20px 0 0 0;
}

.kits-strikethru-price {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  top: -5px;
  font-size: 12px;
  line-height: 7px;
  font-weight: 600;
  padding: 0;
  text-decoration: line-through;
  color: #b9b9b9;
}

.kits-pricing {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 21px;
  text-align: left !important;
  line-height: 19px;
  padding: 10px 0 0 0;
  margin: 10px 0 5px 0;
  top: -5px;
  display: block;
  position: relative;
  font-weight: 700;
  color: #008fa1;
  padding: 0 0 0 25px;
}

.kits-pricing-savings {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  text-decoration: line-through;
  color: #b9b9b9;
  display: block;
  position: relative;
  top: -8px;
  margin: 0;
  padding: 0 0 0 25px;
}

.kits-slideshow-wrapper {
  border: 1px solid #d8d8d8;
}

.kits-lead-image {
  padding: 0px;
}

.product-grid-item-padder-small {
  border-right: 1px solid #fff;
}

.product-grid-item:last-child .product-grid-item-padder-small {
  border-right: 0px solid #fff;
}

.kits-description-section {
  padding: 20px 0 0 30px;
}

.category-page-nav {
  height: 55px !important;
  background-color: #fff !important;
}

.category-compare-title:before {
  content: '\002B';
  color: #747475;
  font-weight: bold;
  margin-right: 6px;
}

.activeToggle:before {
  content: "\2212";
}

#solar-lighting, #usb-lanterns, #overhead-string-lights, #lighting-kits, #packable-camping, #group-cooking, #campfire-evolved, #compare-stoves, #solar-panels, #battery-banks {
  outline: none;
}

.stoves-category-compare {
  padding: 80px 0 0 0;
  margin: 30px 0 0 0;
}

@media only screen and (max-width: 1023px) {
  .category-nav-desktop {
    display: none;
  }

  .nav-horizontal--products .nav-horizontal__title .category-nav-mobile {
    width: 65% !important;
  }

  #biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .nav-horizontal--products .nav-horizontal__title, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits .nav-horizontal--products .nav-horizontal__title, #biolite-holiday-gift-guide .nav-horizontal--products .nav-horizontal__title, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers .nav-horizontal--products .nav-horizontal__title {
    width: 35% !important;
  }

  #biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .product-grid-item, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits .product-grid-item, #biolite-holiday-gift-guide .product-grid-item, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers .product-grid-item {
    width: 50%;
  }

  #biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .kits-description-section .product-grid-item {
    width: 25%;
  }

  .kits-description-section .product-grid-item__sub-title-category {
    padding-bottom: 5px !important;
  }

  .kits-description-section .product-grid-item__title {
    text-align: center !important;
    font-size: 18px;
    line-height: 27px;
    padding: 23px 0 5px 0;
  }

  .kits-description-section .product-grid-item__sub-title-category {
    text-align: center !important;
    padding: 0 20px 0 20px;
  }

  .kits-pricing {
    text-align: center !important;
    padding: 10px 0 0 0;
    margin: 10px 0 5px 0;
    top: 6px;
    padding: 0;
  }

  .kits-pricing-savings {
    text-align: center;
    top: -8px;
    margin: 0;
    padding: 10px 0 0 0;
  }

  .kits-description-section {
    padding: 0 20px 0 20px;
  }

  .shop-this-kit {
    margin: 7px 0 20px 0;
    padding: 0 20px 0 20px;
    padding-top: 0 !important;
  }

  .product-grid-item__footer-category {
    height: 190px;
  }

  .nav-horizontal--products .nav-horizontal__menu-wide {
    width: 65%;
    padding: 13px 0;
    text-align: center;
    max-height: 46px;
  }

  .category-nav-mobile .collections-sidebar-selection {
    width: 100%;
    margin: 0;
    padding: 6px 0 0 0;
  }

  .category-nav-mobile .collections-sidebar-selection li a {
    padding: 12px 30px;
    text-align: left;
  }

  .category-nav-title-lighting {
    border-bottom: 1px solid #8F90B3;
  }

  #new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .product-grid-item__thumb, #biolite-holiday-gift-guide .product-grid-item__thumb, #biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .product-grid-item__thumb, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers .product-grid-item__thumb, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits .product-grid-item__thumb {
    background-size: 70%;
  }

  #collections .product-grid-item__thumb {
    background-size: 65%;
  }

  .category-shop-buttons {
    padding: 10px 0 20px 0;
  }

  .collection-section-title {
    font-size: 22px;
  }

  .collection-section-subtitle {
    line-height: 18px;
    padding: 5px 25px 40px 25px;
  }

  .compare-icon {
    width: 40px;
    height: 40px;
    font-size: 15px !important;
  }
}

@media only screen and (max-width: 1024px) {
  .shipping-delay-messaging {
    text-align: center !important;
  }
}

@media only screen and (min-width: 1023px) {
  .category-nav-mobile {
    display: none;
  }

  .shipping-delay-messaging {
    text-align: center !important;
  }
}

@media only screen and (max-width: 480px) {
  #collections .product-grid-item__thumb {
    background-size: 80%;
  }

  .footer-wrapper {
    padding: 115px 0 175px 0;
    height: 100%;
  }

  #biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .product-grid-item, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits .product-grid-item, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers .product-grid-item {
    width: 100%;
  }
}

#lightingdropdown .nav-featured-area ul {
  margin: 0px 0 85px 0 !important;
  padding: 0;
}

#biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .product-grid-item .fake-you-save {
  top: -20px;
  height: 12px;
  margin-bottom: 10px;
}

.sticky {
  top: 0;
  position: fixed;
  padding-top: 0;
}

.sticky-bottom {
  position: absolute;
  top: auto;
  bottom: 0;
  padding-bottom: 10px;
}

.collections-grid {
  position: relative;
}

.slideshow-arrow-icon-kits {
  font-size: 36px !important;
  color: rgba(197, 197, 197, 0.9);
}

.kits-slideshow img {
  height: 60vh;
  max-height: 521px;
}

.kits-slideshow .glide__slide img {
  width: initial !important;
}

.kit-includes-title {
  font-size: 13px !important;
  line-height: 0px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #5D5D5D;
}

.quicklook-product-title {
  font-size: 35px !important;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  line-height: 33px;
  color: #2e2e2f;
  display: block;
  padding: 40px 0 0 0;
}

.quicklook-product-shortdesc {
  font-size: 20px !important;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  line-height: 27px;
  color: #2e2e2f;
}

.quicklook-product-detail {
  padding: 16px 0 0 0;
  display: block;
}

.quicklook-reviews {
  padding: 10px 0 0 0;
}

.full-desc-arrow {
  font-size: 13px !important;
  color: #008fa1;
  padding: 0 0 0 4px;
  position: relative;
  top: 0px;
}

.quicklook-full-desc a {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 0 0 0;
  color: #008fa1;
  clear: both;
  display: block;
  text-decoration: underline;
  text-transform: uppercase;
}

.nanogrid-lightkit-icons {
  padding: 10px 10px 10px 0;
  margin: 10px 0 20px 0;
}

.kits-detail-desc {
  padding: 0 280px 0 0;
}

.nanogrid-lightkit-icons img {
  width: 65%;
}

.kit-products-detail {
  padding: 20px 0 0 10px;
}

.quicklook-reviews-stars {
  width: 70px;
  padding: 0 3px 0 0;
  position: relative;
  top: 3px;
}

.kits-product-img {
  border: 1px solid #f3f3f3;
}

#kits-product .kits-quickview {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #008fa1;
  position: absolute;
  padding: 37px 0 0 24px;
  visibility: hidden;
}

.quickview-icon {
  color: #008fa1 !important;
  display: block;
}

.quicklook-media {
  padding: 10px 50px 0 0;
}

#kits-product:hover .kits-quickview {
  visibility: visible;
}

#kits-product img {
  opacity: 1;
  transition: opacity 150ms linear;
  -webkit-transition: opacity 150ms linear;
  -moz-transition: opacity 150ms linear;
}

#kits-product:hover img {
  opacity: 0.08;
}

.kits-product-title {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #5D5D5D;
  display: inline-block;
  max-width: 110px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
}

.quicklook-mobile a {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 10px;
  line-height: 9px;
  color: #008fa1;
  display: block;
  text-transform: uppercase;
  visibility: hidden;
}

.kits-bundle-savings {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 0px;
  color: #C24D00;
  text-transform: uppercase;
  display: inline-block;
  padding: 0;
  position: relative;
  top: -5px;
}

.kits-bundlesave-label {
  padding: 4px 10px 4px 10px;
  background-color: #C24D00;
  color: white;
  font-size: 9px;
  border-radius: 2px;
  height: 100%;
  display: inline-block;
  font-weight: 700;
  position: relative;
  top: -7px;
}

.price-savings-container {
  clear: both;
  border-top: 1px solid #f3f3f3;
  margin: 0 0 29px 0;
  padding: 30px 0 35px 0;
}

.bundlesave-icon {
  color: #C24D00;
  font-size: 25px !important;
  display: inline-block;
  position: relative;
  top: 4px;
  padding: 0 10px 10px 0;
}

#kits-slideshow-wrapper .glide--horizontal .glide__arrows {
  top: 50%;
  width: 94%;
  margin-left: 1%;
}

.kit-divider {
  padding: 0;
  margin: 0;
}

.kits-price {
  font-size: 28px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #5D5D5D;
}

.kits-feature {
  background-color: #f3f3f3;
}

.kits-explantion {
  border: 1px solid #dedede;
  padding: 40px;
  margin: 100px 0 100px 0;
}

.kits-detail {
  margin: 86px 0 70px 0;
}

.kits-explanation-title {
  font-size: 18px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #C24D00;
  padding: 0 0 10px 0;
  text-transform: uppercase;
}

.kits-explanation-desc {
  padding: 10px 0 0 0;
  font-size: 13px;
  line-height: 22px;
}

.kits-explanation-icon {
  color: #C24D00;
  font-size: 28px !important;
  display: inline-block;
  position: relative;
  top: 4px;
  padding: 0 10px 10px 0;
}

@media only screen and (max-width: 1023px) {
  .quicklook-mobile a {
    visibility: visible;
  }

  .kits-slideshow img {
    height: inherit;
  }

  #kits-product:hover .kits-quickview {
    visibility: hidden;
    display: none;
  }

  #kits-product:hover img {
    opacity: 1;
  }

  #kits-product {
    padding: 6px;
    margin-bottom: 10px;
  }

  .kits-product-title {
    font-size: 11px;
  }

  .kit-divider {
    display: none;
  }

  .kit-includes-title {
    font-size: 15px !important;
    line-height: 8px;
    display: block;
    padding: 0 0 10px 0;
  }

  .quicklook-media {
    padding: 10px 20px 0 20px;
  }

  .quicklook-product-title {
    font-size: 24px !important;
    line-height: 25px;
  }

  .quicklook-product-shortdesc {
    font-size: 16px !important;
    line-height: 15px;
  }

  .kits-detail-desc {
    padding: 0 20px 0 20px;
  }

  .kits-explantion {
    border: 1px solid #dedede;
    padding: 40px;
    margin: 0;
  }

  .kits-detail {
    margin: 34px 0 70px 0;
  }

  .kits-bundlesave-icon {
    display: none;
  }

  .price-savings-container {
    border-top: 0px solid #f3f3f3;
    margin: 0 0 29px 0;
    padding: 50px 0 35px 0;
  }

  .price-savings-container .compare-at .product-price-compare-strike {
    display: block;
    padding-top: 6px;
  }

  .quicklook-mobile {
    margin: 0 0 10px 0;
  }
}

@media only screen and (max-width: 660px) {
  .product-grid-item__sub-title {
    display: none;
  }

  .homepage-featured-arrow {
    display: none;
  }

  .GWP-desc {
    padding: 7px 20px 0 0;
  }

  #product-content .special-notice-message {
    font-size: 12px;
    line-height: 14px !important;
    padding: 5px 20px 0 0;
  }
}

#biolite-outdoor-amp-off-grid-energy-free-shipping-75-us-amp-canada #no-click-product .product-grid-item-padder {
  cursor: arrow;
  border: 0px solid #fff;
}

.homepage-featured-arrow {
  font-size: 28px !important;
  position: absolute;
  top: 50%;
  right: 25px;
  color: #008fa1;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
}

.meet-headlamp {
  background-color: #000;
}

.meet-headlamp-hero-section {
  height: 50vh;
  padding-top: 22vh;
}

.meet-headlamp-signup {
  height: 50vh;
}

.meet-headlamp-header {
  font-size: 3.3rem;
  line-height: 3.5rem;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  display: block;
}

.meet-headlamp-subheader {
  font-size: 1.6rem;
  margin: 0;
  padding: 0 0 15px 0;
  line-height: 30px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
}

.meet-headlamp-products {
  margin-top: 4vh;
  margin-bottom: 4vh;
}

.meet-headlamp-products-img {
  height: 23vh;
  display: block;
  margin: 0 auto;
}

.headlamp-product {
  position: absolute;
  height: 23vh;
  left: 13%;
}

.headlamp-light {
  position: absolute;
  height: 23vh;
  left: 13%;
  z-index: 10;
}

.headlamp-signup-field {
  max-width: 457px !important;
}

.meet-headlamp-desc-copy {
  font-size: 1rem;
  margin: 0 0 70px 0;
  color: #7b7b7b;
  padding-top: 20px;
  padding-right: 20%;
  line-height: 1.3rem;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
}

.slim-fit-icon {
  width: 250px;
  padding: 12px 0 0 0;
  margin-left: -2px;
}

.klaviyo_styling.klaviyo_condensed_embed_LzKERa, .klaviyo_condensed_styling.klaviyo_condensed_embed_LzKERa {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.klaviyo_styling.klaviyo_condensed_embed_LzKERa label, .klaviyo_condensed_styling.klaviyo_condensed_embed_LzKERa label {
  color: #222;
}

.klaviyo_styling.klaviyo_condensed_embed_LzKERa input[type=text], .klaviyo_styling.klaviyo_condensed_embed_PLzKERa input[type=email], .klaviyo_condensed_styling.klaviyo_condensed_embed_LzKERa input[type=text], .klaviyo_condensed_styling.klaviyo_condensed_embed_LzKERa input[type=email] {
  border-radius: 2px;
  height: 50px;
  font-family: reader-regular, Arial !important;
}

.klaviyo_condensed_styling .klaviyo_field_group {
  width: 605px;
  margin: 0 5px 0 0;
}

.klaviyo_condensed_styling, .klaviyo_styling {
  max-width: 605px;
}

.klaviyo_condensed_styling .klaviyo_submit_button, .klaviyo_styling .klaviyo_submit_button {
  font-family: reader-regular, Arial;
  font-size: 16px;
}

.klaviyo_condensed_styling .klaviyo_messages .error_message, .klaviyo_condensed_styling .klaviyo_messages .success_message, .klaviyo_styling .klaviyo_messages .error_message, .klaviyo_styling .klaviyo_messages .success_message {
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 12px;
  padding-top: 20px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #fff;
}

.klaviyo_styling.klaviyo_condensed_embed_LzKERa .klaviyo_submit_button, .klaviyo_condensed_styling.klaviyo_condensed_embed_LzKERa .klaviyo_submit_button {
  background-color: #008fa1;
  border-radius: 2px;
  height: 50px;
}

.klaviyo_styling.klaviyo_condensed_embed_LzKERa .klaviyo_submit_button:hover, .klaviyo_condensed_styling.klaviyo_condensed_embed_LzKERa .klaviyo_submit_button:hover {
  background-color: #008fa1;
}

@media only screen and (max-width: 1023px) {
  .meet-headlamp-hero-section {
    height: 140px;
    padding-top: 0vh;
  }

  .meet-headlamp-products {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .headlamp-product {
    position: relative;
    margin: 0 auto;
    left: 0;
    right: 0;
    text-align: center;
    height: 100%;
  }

  .headlamp-light {
    position: relative;
    margin: 0 auto;
    left: 0;
    right: 0;
    text-align: center;
    height: 100%;
  }

  .meet-headlamp-subheader {
    font-size: 15px;
  }

  .meet-headlamp-header {
    font-size: 29px;
    line-height: 30px;
  }

  .meet-headlamp-signup {
    height: 100% !important;
  }

  .meet-headlamp-desc-copy {
    padding: 10px 30px 0 30px;
    margin: 0 0 30px 0;
    font-size: 13px;
    line-height: 14px;
  }

  .klaviyo_condensed_float .klaviyo_field_group, .klaviyo_condensed_float .klaviyo_form_actions, .klaviyo_condensed_float .klaviyo_messages {
    float: none !important;
  }

  .email-form {
    text-align: center;
    margin: 0 auto;
  }

  .meet-headlamp-products-img {
    height: 170px;
    display: block;
    margin: 0 auto;
  }

  .headlamp-signup-field {
    max-width: 1023px !important;
  }
}

@media only screen and (max-width: 480px) {
  .headlamp-signup-field {
    max-width: 480px !important;
  }
}

.form-half {
  width: 50%;
  display: inline-block !important;
  padding: 0 20px 0 2px;
}

.form-divider {
  clear: both;
  margin: 30px 0 40px 0;
}

.form-spacer {
  clear: both;
  margin: 20px 0 20px 0;
}

.klaviyo-standard-form {
  padding: 10px 0 0 70px;
}

.klaviyo-standard-form label {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  weight: 600;
}

.klaviyo-standard-form input {
  color: #2b2b2b;
}

.klaviyo-standard-form .success_message {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600 !important;
  font-size: 24px;
  margin: 27px 0 0 0;
  clear: both;
  color: #008fa1;
}

@media only screen and (max-width: 1023px) {
  .klaviyo-standard-form {
    padding: 10px 0px 0 0px;
  }
}

#stovesdropdown .left-nav-holder {
  width: 296px;
  float: left;
  padding: 0 55px 0 55px !important;
  max-width: 295px;
  margin-top: 20px;
  margin-top: 40px;
  padding-top: 0 !important;
  padding-right: 0 !important;
}

.left-nav-holder-col2 {
  margin-top: 185px !important;
}

#biolite-meet-the-biolite-firepit {
  background-color: #f3f3f3;
}

#biolite-meet-the-biolite-firepit .footer-wrapper {
  background-image: url("https://cdn.shopify.com/s/files/1/0666/9741/files/FirePit_footer.jpg?8528102815486344483");
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  height: 560px;
  padding: 60px 0 0 0;
  background-color: #000;
  position: relative;
}

.spec-title-caption {
  font-size: 10px;
  line-height: 11px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  padding: 5px 0 0 0;
  display: block;
  position: absolute;
  width: 33%;
  left: 50%;
  margin-left: -16.5%;
  text-transform: uppercase;
}

#firepit-hero .sunlight-hero-section {
  position: absolute;
  left: 50%;
  right: 0;
  margin-left: -500px;
  width: 1000px;
  top: 14%;
  z-index: 10;
}

.firepit-spec-illustration-small {
  max-height: 20vh;
  margin: 0 auto;
  display: block;
}

.firepit-spec-illustration-smallest {
  max-height: 4vh;
  padding: 0 10px 0 0;
  margin: 0 auto;
  display: inline;
}

.firepit-hero {
  height: 100vh;
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/FirePit_landing_hero_r2.jpg?4677172449781475507…);
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.fire-evolved {
  height: 100vh !important;
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/FirePit_withFire.png?12017516787071112660…);
  background-color: #000;
  background-repeat: no-repeat;
  background-position: -11% 44%;
}

.fire-evolved-title {
  position: absolute;
  top: 11vh;
  width: 1200px;
  left: 50%;
  margin-left: -600px;
  z-index: 100;
}

.firepit-icon-feature-icon {
  width: 55px;
  padding: 30px 10px 15px 0;
  position: relative;
  text-align: center;
  display: block;
  margin: 0 auto;
}

.firepit-description {
  font-size: 22px;
  line-height: 24px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  display: block;
  padding: 0;
  color: #fff;
  width: 65%;
  margin: 0 auto;
  text-shadow: 2px 2px 8px #151515;
}

.firepit-subtext {
  font-size: 16px;
  line-height: 22px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  display: inline-block;
  padding: 10px 0 10px 0;
}

.firepit-subtext-title {
  font-size: 16px;
  line-height: 22px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  display: inline-block;
  text-transform: uppercase;
}

.firepit-half-hero {
  height: 100vh;
}

.firepit-feature-list {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 0 0 0 35px !important;
}

.fire-evolved-bullets-1 {
  padding-top: 35vh;
  left: 3%;
  position: absolute;
  z-index: 500;
  width: 25%;
}

.fire-evolved-bullets-2 {
  padding-top: 35vh;
  right: 3%;
  position: absolute;
  z-index: 500;
  width: 25%;
}

.firepit-harder-working-fire-desc {
  padding: 10vh 40px 0 40px;
}

.firepit-harder-working-fire {
  background-color: #1d1e1e;
}

.firepit-illustration {
  position: absolute;
  height: 58vh;
  z-index: 40;
  margin-top: 18vh;
  right: 4%;
  top: 0;
}

.firepit-illustration-callouts {
  position: absolute;
  height: 58vh;
  z-index: 40;
  margin-top: 18vh;
  right: 4%;
  top: 0;
}

.firepit-comparison {
  width: 75%;
  padding: 20px 0 0 0;
}

.firepit-harder-working-fire-media {
  padding: 0 0 0 35px;
  background-color: #1d1e1e;
  height: 100vh !important;
}

.firepit-grill-slider {
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/sand_BG.jpg?15281203308363882586…);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #f1e8d9;
}

#firepit-slider {
  margin: 15px 0 0 0;
  text-align: center;
  width: 1000px;
  position: absolute;
  left: 50%;
  margin-left: -500px;
}

.firepit-slider-img {
  margin: 0 auto;
  text-align: center;
}

.firepit-smokeless-vid {
  padding: 40px 0 0 0;
}

.firepit-grill-slider-header {
  padding-top: 5vh;
}

.firepit-mode-illustration {
  width: 44%;
}

#firepit-video .hero-video__video {
  width: 100%;
}

.firepit-harder-working-fire-main {
  width: 42%;
  padding-left: 5%;
}

.firepit-illustration-wrapper {
  width: 80%;
}

.firepit-list-numbers {
  font-size: 30px !important;
  color: #008fa1;
  left: 5px;
  position: relative;
  top: 12px;
}

.firepit-play-button {
  font-size: 37px !important;
  color: #008fa1;
  left: 0;
  position: relative;
  top: 11px;
  padding: 0 10px 0 0;
}

.firepit-tech-list {
  display: inline-block;
  background-color: #121213;
  width: 100%;
  padding: 14px;
  margin-top: 5px;
}

.firepit-wood-mode {
  position: absolute;
  width: 20%;
  bottom: 15%;
  left: 4%;
}

.firepit-charcoal-mode {
  position: absolute;
  width: 20%;
  bottom: 15%;
  right: 4%;
}

.firepit-mode-arrow {
  width: 30%;
  position: absolute;
  top: -119px;
  left: 50px;
}

.firepit-mode-arrow-right {
  width: 30%;
  position: absolute;
  top: -119px;
  right: 50px;
}

#biolite-meet-the-biolite-firepit .product-grid-item__inner {
  height: 320px;
}

#biolite-meet-the-biolite-firepit .glide__bullets > * {
  background-color: rgba(168, 168, 168, 0.6);
}

#biolite-meet-the-biolite-firepit .glide__bullets > *.active {
  background-color: rgba(0, 178, 176, 0.9) !important;
}

#biolite-meet-the-biolite-firepit .product-grid-item .fake-you-save, #upgrade-your-tailgate-with-biolite-firepit .product-grid-item .fake-you-save {
  top: -20px;
  height: 27px;
  margin-bottom: 0px;
}

#biolite-meet-the-biolite-firepit .product-grid-item__footer, #upgrade-your-tailgate-with-biolite-firepit .product-grid-item__footer {
  height: 100% !important;
  padding-bottom: 18px;
}

#biolite-meet-the-biolite-firepit .product-grid-item__thumb, #upgrade-your-tailgate-with-biolite-firepit .product-grid-item__thumb {
  padding: 40px;
}

#biolite-meet-the-biolite-firepit .you-save, #upgrade-your-tailgate-with-biolite-firepit .you-save {
  border: 0px solid #008fa1;
  display: inline-block;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 17px;
  position: relative;
  padding: 0px;
  margin: 0px;
  font-weight: 700;
}

#biolite-meet-the-biolite-firepit .you-save .right-side, #upgrade-your-tailgate-with-biolite-firepit .you-save .right-side {
  padding: 4px 15px 4px 15px;
  background-color: #f3f3f3;
  color: #008fa1;
  display: inline-block;
}

.firepit-shop {
  margin-left: 17% !important;
}

.firepit-review-wrapper {
  width: 1000px;
  border-radius: 8px;
  border: 1px solid #dedede;
  margin: 20px 0 80px 85px;
}

.firepit-review-rating {
  background-color: #fff;
  padding: 80px;
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
}

.firepit-review-detail {
  padding: 50px 80px 0 80px;
}

.firepit-review-stars {
  display: block;
  width: 50%;
  padding: 0 0 15px 0;
}

.firepit-review-quote {
  display: block;
  width: 33px !important;
  opacity: 0.3;
  top: -13px;
  margin: 0 auto;
  position: relative;
}

.firepit-review-rating-name {
  font-weight: 700;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 19px;
  line-height: 18px;
  color: #2d2d2d;
}

.firepit-review-detail-content {
  font-weight: 300;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 18px;
  color: #2d2d2d;
}

.firepit-side-menu {
  position: fixed;
  right: 20px;
  top: 0;
  bottom: 0;
  width: 22px;
  height: 100%;
  display: table;
  z-index: 1000;
}

.firepit-side-menu nav {
  display: table-cell;
  vertical-align: middle;
}

.firepit-side-menu li {
  padding: 6px 0;
  font-size: 16px;
  line-height: 20px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.firepit-side-menu a {
  display: block;
  position: relative;
  color: rgba(0, 0, 0, 0.75);
  text-decoration: none;
  white-space: nowrap;
  text-align: right;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.firepit-side-menu a:after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #FFF;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.firepit-side-menu span {
  display: block;
  position: absolute;
  right: -2px;
  bottom: -26px;
  visibility: visible;
  opacity: 1;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #C24D00;
}

.firepit-side-menu .active a:after {
  background: #FFF;
}

.firepit-side-menu .active span {
  visibility: visible;
  opacity: 1;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #555555;
}

@media only screen and (max-width: 1025px) {
  #biolite-meet-the-biolite-firepit .hero-video__video-wrapper video {
    display: none;
  }

  #meet-biolite-headlamp-330-holy-fit-this-is-good .hero-video__video-wrapper video {
    display: none;
  }

  .fire-evolved-title {
    top: 39px;
  }

  #biolite-meet-the-biolite-firepit .choose-your-hue-wrapper {
    background-color: #000;
    background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/FirePit_mobile_BG_r3.jpg?1648302…);
    background-repeat: no-repeat;
    overflow: hidden;
    background-size: 68%;
    background-position: 100% 100%;
  }

  .fire-evolved-bullets-1 {
    padding-top: 113px;
    left: 3%;
    position: relative;
    z-index: 500;
    width: 48%;
  }

  .fire-evolved-bullets-2 {
    padding-top: 113px;
    right: 3%;
    position: absolute;
    z-index: 500;
    width: 48%;
  }

  .firepit-description {
    font-size: 17px;
    line-height: 19px;
    width: 100%;
  }

  .firepit-subtext {
    font-size: 14px;
    line-height: 16px;
    padding: 10px 20px 0 20px;
  }

  #firepit-hero .sunlight-hero-header {
    font-size: 30px;
    line-height: 20px;
    padding: 0;
  }

  #firepit-hero .sunlight-hero-cta {
    padding: 0;
  }

  #firepit-hero .sunlight-hero-subheader {
    font-size: 23px;
  }

  .firepit-harder-working-fire-main {
    width: 100%;
    padding: 40px 0 0 0;
    text-align: center;
  }

  #biolite-meet-the-biolite-firepit .sunlight-title {
    text-align: center !important;
  }

  #biolite-meet-the-biolite-firepit .sunlight-description {
    padding: 0 20px 0 20px;
  }

  .firepit-illustration-wrapper {
    width: 100%;
    margin: 13px 0 0 0;
  }

  .firepit-play-button {
    display: block;
    padding: 10px 0 10px 0;
  }

  .firepit-illustration-callouts {
    display: none;
  }

  #fire-evolved .landing-section {
    height: 600px !important;
  }

  #harder-working-fire .landing-section {
    height: 100% !important;
  }

  .firepit-list-numbers {
    font-size: 24px !important;
    left: 0;
    padding: 0 0 14px 0;
    top: 12px;
  }

  .firepit-charcoal-mode, .firepit-wood-mode {
    position: relative;
    display: inline-block;
    width: 48%;
    bottom: 0;
    left: 0;
    padding: 10px 20px 46px 20px;
    text-align: center;
  }

  .firepit-illustration {
    position: relative;
    display: block;
    height: inherit;
    width: 46%;
    z-index: 40;
    margin-top: inherit;
    margin: 0 auto !important;
    text-align: center;
    padding: 0 0 40px 0;
  }

  .firepit-mode-arrow, .firepit-mode-arrow-right {
    display: none;
  }

  #dual-fuel .landing-section {
    height: 100% !important;
  }

  .firepit-mode-illustration {
    width: 65%;
    display: block;
    margin: 0 auto;
    padding: 40px 0 10px 0;
  }

  #biolite-meet-the-biolite-firepit .glide__slide img {
    height: 100vh !important;
    width: auto;
  }

  #biolite-meet-the-biolite-firepit .sunlight-slideshow {
    position: absolute;
    top: 7%;
    left: 50%;
    margin-left: -240px;
    width: 480px !important;
    z-index: 100;
  }

  #biolite-meet-the-biolite-firepit #Glide2 .glide__slide img {
    height: inherit !important;
    width: 55px !important;
    margin: 0 auto;
  }

  .firepit-review-wrapper {
    width: 80%;
    margin: 0 auto;
  }

  .firepit-review-rating {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
  }

  .firepit-review-detail {
    padding: 37px;
  }

  .firepit-review-detail-content {
    font-size: 14px;
    line-height: 16px;
  }

  #firepit-slider {
    margin: 15px 0 0 0;
    text-align: center;
    width: 100%;
    position: relative;
    left: 0;
    margin-left: 0;
  }

  #biolite-meet-the-biolite-firepit .product-grid-item__inner {
    height: 300px;
  }

  #upgrade-your-tailgate-with-biolite-firepit .product-grid-item__inner {
    height: 300px;
  }

  .firepit-shop {
    margin-left: 0% !important;
  }
}

@media only screen and (max-width: 740px) {
  #biolite-meet-the-biolite-firepit .product-grid-item__inner {
    height: 215px;
  }

  #upgrade-your-tailgate-with-biolite-firepit .product-grid-item__inner {
    height: 215px;
  }
}

@media only screen and (max-width: 480px) {
  .firepit-side-menu {
    display: none;
  }

  .firepit-shop {
    margin-left: 0% !important;
  }

  .product-grid-item__thumb {
    padding: 17px;
  }

  #biolite-meet-the-biolite-firepit .product-grid-item__inner {
    height: 150px;
  }

  #upgrade-your-tailgate-with-biolite-firepit .product-grid-item__inner {
    height: 150px;
  }

  .firepit-illustration {
    position: relative;
    height: inherit;
    width: 100%;
    z-index: 40;
    margin-top: inherit;
    right: 0;
    bottom: 0;
    top: 0;
  }

  #biolite-meet-the-biolite-firepit .choose-your-hue-wrapper {
    background-color: #000;
    background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/FirePit_mobile_BG_r3.jpg?1648302…);
    background-repeat: no-repeat;
    overflow: hidden;
    background-size: 118%;
    background-position: 106% 100%;
  }

  #biolite-meet-the-biolite-firepit .impact-msg {
    font-size: 22px;
    padding: 20px 0 0 0;
    z-index: 20;
  }

  #fire-evolved .landing-section {
    height: 780px !important;
  }

  .firepit-spec-illustration-smallest {
    max-height: 3vh;
    padding: 0 4px 0 0;
  }

  .spec-title-caption {
    font-size: 8px;
  }

  #biolite-meet-the-biolite-firepit .sunlight-spec-title {
    font-size: 10px;
    font-weight: 700;
    padding: 10px 20px 0 20px;
  }

  .reviews-arrow-icon {
    display: none;
  }

  #biolite-meet-the-biolite-firepit .glide__slide img {
    height: inherit !important;
    width: 100% !important;
  }

  #photos .landing-section {
    height: 100% !important;
  }
}

#preppack-hero .preppack-hero-section {
  position: absolute;
  left: 5%;
  right: 0;
  top: 30%;
  z-index: 10;
}

.preppack-hero {
  height: 100vh;
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/SolarPrepPack_hero.jpg?16306501934109634736…);
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#prepPack-SHS .solarhome-overview {
  margin-top: 0vh;
  height: 100vh;
  background: rgba(255,255,255,0.2);
  animation: shsOverviewBG 1.5s;
  -webkit-animation: shsOverviewBG 1.5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
}

.go-inside-preppack {
  background-color: #f3f3f3;
  height: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#prepPack-SHS .solarhome-overview-quads-1 {
  position: relative;
  height: 25vh;
  width: 68%;
  left: 4%;
  display: block;
  padding: 20px 0 20px 0;
  border-bottom: 1px dotted #fff;
  border-right: 1px dotted #fff;
}

.solarhome-overview-quads-maintitle {
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  left: 5%;
}

.solarhome-overview-quads-mainsubtitle {
  font-size: 17px;
  line-height: 20px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  display: block;
  padding: 0;
  width: 50%;
}

#preppack-solarFeature .solarhome-panel-copy {
  position: absolute;
  left: 11%;
  top: 18%;
  width: 30%;
}

#prepPack-lights .solarhome-lights-main {
  position: absolute;
  height: 80vh;
  z-index: 20;
}

#prepPack-lights .solarhome-lights-glow-right {
  position: absolute;
  height: 80vh;
  z-index: 30;
}

#prepPack-lights .solarhome-lights-glow-left {
  position: absolute;
  height: 80vh;
  z-index: 40;
}

#prepPack-lights .solarhome-lights-glow-motion {
  position: absolute;
  height: 80vh;
  z-index: 50;
}

#upgrade-your-tailgate-with-biolite-firepit {
  background-color: #f3f3f3;
}

#upgrade-your-tailgate-with-biolite-firepit .product-grid-item__inner {
  height: 265px;
}

.preppack-footer-video {
  margin: 50px 0 60px 0;
}

.preppack-footer-content {
  padding: 20px 0 0 40px;
}

#upgrade-your-tailgate-with-biolite-firepit .sunlight-icon-feature-icon {
  width: 50px;
  padding: 0 10px 0 0;
  position: relative;
  top: 14px;
  display: inline;
}

#upgrade-your-tailgate-with-biolite-firepit .sunlight-icon-feature {
  display: block;
  padding: 9px 60px 26px 0px;
}

#upgrade-your-tailgate-with-biolite-firepit .sunlight-description {
  font-size: 16px;
  line-height: 19px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  display: block;
  text-align: left;
}

#upgrade-your-tailgate-with-biolite-firepit .product-grid-item__inner {
  position: relative;
  height: 350px;
  margin: 0 auto;
  text-align: center;
}

#upgrade-your-tailgate-with-biolite-firepit .product-grid-item__footer {
  height: 10vh;
}

#upgrade-your-tailgate-with-biolite-firepit .sunlight-product-buttons {
  text-align: center;
  padding-bottom: 25px;
  height: 10vh;
}

#upgrade-your-tailgate-with-biolite-firepit .solarhome-overview-quads-desc {
  font-size: 17px;
  line-height: 20px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  display: block;
  width: 50%;
  padding: 0;
}

@media only screen and (max-width: 1024px) {
  .preppack-hero {
    background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/SolarPrepPack_hero_mobile_r2.jpg?17323969683002913834……);
    height: 440px !important;
    background-attachment: inherit;
    background-size: cover;
  }

  #preppack-hero .preppack-hero-section {
    position: absolute;
    left: 5%;
    right: 0;
    top: 9%;
    z-index: 10;
  }

  #upgrade-your-tailgate-with-biolite-firepit .sunlight-description {
    font-size: 13px;
    line-height: 14px;
  }

  #upgrade-your-tailgate-with-biolite-firepit .sunlight-icon-feature {
    display: inline-block;
    width: 100%;
    padding: 20px 5px 0 5px;
  }

  #upgrade-your-tailgate-with-biolite-firepit .product-grid-item__inner {
    position: relative;
    height: 315px;
    margin: 0 auto;
    text-align: center;
  }

  #upgrade-your-tailgate-with-biolite-firepit .product-grid-item__thumb {
    padding: 30px;
  }

  #upgrade-your-tailgate-with-biolite-firepit .solarhome-overview-quads-title {
    font-size: 24px;
    line-height: 29px;
  }

  #upgrade-your-tailgate-with-biolite-firepit .solarhome-overview-quads-desc {
    font-size: 14px;
    line-height: 16px;
  }

  .preppack-footer-content {
    padding: 35px 30px 0 30px;
  }

  #upgrade-your-tailgate-with-biolite-firepit .solarhome-box-callout-subtitle {
    font-size: 12px;
    line-height: 15px;
  }
}

@media only screen and (max-width: 480px) {
  #upgrade-your-tailgate-with-biolite-firepit .solarhome-hanginglights-interactive {
    display: none;
  }

  #preppack-solarFeature .solarhome-panel-copy {
    position: absolute;
    left: 11%;
    top: 18%;
    width: 80%;
  }

  #upgrade-your-tailgate-with-biolite-firepit .solarhome-overview-quads-1 {
    position: relative;
    height: 18vh !important;
    width: 100%;
    left: 0;
    padding: 0;
  }

  #upgrade-your-tailgate-with-biolite-firepit .solarhome-overview-illustration {
    margin-top: 74vh;
    height: 10vh;
  }

  #upgrade-your-tailgate-with-biolite-firepit .solarhome-overview-illustration-fill {
    margin-top: 74vh;
    height: 10vh;
  }

  #upgrade-your-tailgate-with-biolite-firepit .shs-hero-header {
    font-size: 26px;
    line-height: 29px;
    padding: 0 20px 0 20px;
  }

  #preppack-hero .preppack-hero-section {
    text-align: center;
  }

  #upgrade-your-tailgate-with-biolite-firepit .bouncy-comeinside {
    display: none;
  }

  #upgrade-your-tailgate-with-biolite-firepit .glide__slide img {
    height: inherit !important;
    width: 100% !important;
  }

  .solarhome-overview-quads-maintitle {
    position: relative;
    top: 25px;
    transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
    -moz-transform: translate(0%, 0%);
    left: 0%;
    text-align: center;
  }

  .solarhome-overview-quads-mainsubtitle {
    font-size: 14px;
    line-height: 17px;
    font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    display: block;
    padding: 0;
    width: 100%;
    padding: 0 20px 20px 20px;
    margin-bottom: 30px;
    clear: both;
  }

  #upgrade-your-tailgate-with-biolite-firepit .solarhome-overview-quads-title {
    font-size: 24px;
    line-height: 29px;
  }

  #upgrade-your-tailgate-with-biolite-firepit .solarhome-overview-quads-desc {
    font-size: 14px;
    line-height: 16px;
  }

  #upgrade-your-tailgate-with-biolite-firepit .sunlight-icon-feature {
    display: inline-block;
    width: 100%;
    padding: 20px 5px 0 5px;
  }

  #upgrade-your-tailgate-with-biolite-firepit .sunlight-icon-feature-icon {
    display: table-cell;
    padding: 11px 0 10px 0;
    position: relative;
    top: 0;
    margin: 0 auto;
    text-align: center;
    width: 32px;
  }

  #upgrade-your-tailgate-with-biolite-firepit .solarhome-box {
    position: absolute;
    height: 85vh;
    top: 2vh;
    left: 20%;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  #upgrade-your-tailgate-with-biolite-firepit .product-grid-item__inner {
    position: relative;
    height: 150px;
    margin: 0 auto;
    text-align: center;
  }

  #upgrade-your-tailgate-with-biolite-firepit .solarhome-overview-quads-desc {
    width: 100%;
  }
}

.teaser-video {
  margin-top: 30px;
}

.teaser-headline {
  font-size: 16px;
  margin: 20px 0 30px 0;
  color: #7b7b7b;
  padding-top: 20px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
}

.teaser-signup-wrapper {
  margin-top: 20px;
}

.teaser-signup-field {
  max-width: 457px !important;
  text-align: center;
  margin: 0 auto;
}

#coming-soon {
  background-color: #000;
}

#biolite-meet-the-biolite-firepit {
  background-color: #f3f3f3;
}

#tailgating-hero .sunlight-hero-section {
  position: absolute;
  left: 50%;
  right: 0;
  margin-left: -400px;
  width: 800px;
  padding: 40px 0px 40px 0px;
  border-radius: 2px;
  top: 23%;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.8);
}

.tailgate-scene {
  background-color: #f3f3f3;
}

.tailgate-scene-copy {
  padding-left: 8%;
  margin-top: 103vh;
  margin-bottom: 20vh;
  width: 40%;
}

.tailgate-icon-feature-icon {
  width: 38px;
  position: relative;
  top: 0px;
}

.tailgate-truck {
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/BackOfTruck_Hero_flat_76fd0e24-0a65-479d-9bdb-a2a8b2d7a3db.jpg?9900987356402686749…);
  background-size: cover;
  background-repeat: no-repeat;
}

.tailgate-overview {
  display: block;
  margin-top: 19px;
  padding: 20px 0 50px 0;
  clear: both;
}

.tailgate-feature-title {
  font-size: 22px;
  line-height: 24px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  display: block;
  padding: 0;
}

.tailgate-feature-title-truck-blue {
  font-size: 19px;
  line-height: 20px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  display: block;
  padding: 15px 0 15px 0;
  color: #fff;
  background-color: #008fa1;
}

.tailgate-feature-title-truck-purple {
  font-size: 19px;
  line-height: 20px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  display: block;
  padding: 15px 0 15px 0;
  color: #fff;
  background-color: #6e719b;
}

.tailgate-feature-desc {
  font-size: 16px;
  line-height: 19px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  display: inline-block;
  padding: 4px 0 10px 0;
}

.white-divider {
  border-top: 1px solid #fff !important;
  margin: 30px 0 0px 0;
  padding-bottom: 0;
  clear: both;
}

.tailgate-truck-header {
  padding-top: 10vh;
}

.cookout-to-hangout {
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/Asphalt_texture.jpg?5221439132689374034…);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #000;
}

.tailgate-illustration-bg {
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/Tailgating_scene_illustration_r1-02.svg?6731670070739105075…);
  background-repeat: no-repeat;
  background-size: cover;
}

.tailgate-grill-slider-header {
  padding-top: 10vh;
  padding-bottom: 3vh;
}

.tailgate-timeline {
  position: absolute;
  bottom: 0vh;
  z-index: 1;
  left: 50%;
  right: 0;
  margin-left: -600px;
  width: 1200px;
}

.text-shadow {
  text-shadow: 2px 2px 8px #151515;
}

.tailgate-football {
  position: absolute;
  top: 21vh;
  left: 3%;
}

.tailgate-football img {
  width: 200px;
}

.tailgating-hero {
  background-color: #6e719b;
}

.tailgating-hero-header {
  font-size: 53px;
  line-height: 48px;
  margin: 0;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  display: block;
  text-transform: uppercase;
}

.tailgate-title {
  font-size: 40px;
  line-height: 42px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  display: block;
}

.tailgate-truck-feature-1 {
  background-color: rgba(255, 255, 255, 0.9);
  width: 33%;
  position: absolute;
  left: 15%;
  top: 25%;
  padding: 0;
  border-radius: 2px;
}

.tailgate-truck-feature-2 {
  background-color: rgba(255, 255, 255, 0.9);
  width: 33%;
  position: absolute;
  right: 15%;
  top: 25%;
  padding: 0;
  border-radius: 2px;
}

.tailgate-subtext {
  font-size: 15px;
  line-height: 17px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  display: inline-block;
  padding: 10px 0 10px 0;
}

.tailgate-truck-subtext {
  font-size: 15px;
  line-height: 17px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  display: inline-block;
  padding: 30px;
}

.tailgate-illustration-wrapper {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.tailgate-illustration {
  position: absolute;
  bottom: 10%;
  right: 2%;
  z-index: 5;
  width: 57%;
}

.tailgate-firepit {
  position: absolute;
  bottom: 10%;
  right: 2%;
  z-index: 5;
  width: 57%;
}

.tailgate-360icon {
  position: absolute;
  bottom: 24%;
  right: 26%;
  z-index: 500;
  width: 8%;
}

.tailgate-360icon:hover {
  opacity: 0.8;
}

.tailgate-firepit:hover {
  opacity: 0.8;
}

.tailgate-truck-feature-icon {
  width: 65px;
  top: 3px;
  position: relative;
}

.firepit-360-modal {
  min-height: 640px;
}

.firepit-360-images {
  max-height: 590px;
}

.tailgating-footer-section {
  position: absolute;
  left: 50%;
  right: 0;
  margin-left: -400px;
  width: 800px;
  top: 18%;
  z-index: 5000;
}

.tailgate-hero-section {
  position: absolute;
  left: 0;
  right: 0;
  width: 1000px;
  z-index: 10;
  margin-left: 8%;
  top: 24%;
}

.tailgate-hero-square {
  width: 38vw;
  position: absolute;
  top: 15%;
  right: 12%;
  z-index: 10;
}

.tailgate-hero-rect {
  width: 19vw;
  position: absolute;
  top: 15%;
  right: 41%;
}

.tailgate-hero-parallax {
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/Tailgating_scene_illustration_bg-02.svg?3166612831040093490…);
  background-color: #f3f3f3;
  height: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.go-inside-tailgate {
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/Tailgating_scene_illustration_bg-02.svg?3166612831040093490…);
  background-color: #f3f3f3;
  height: 100%;
  background-attachment: fixed;
  background-position: 91% 10%;
  background-repeat: no-repeat;
  background-size: 105%;
}

#upgrade-your-tailgate-with-biolite-firepit .bouncy-comeinside {
  color: #dedede !important;
  font-size: 25px !important;
  padding: 0;
  margin: 0;
  position: absolute;
  margin-top: 65vh;
  width: 50vw;
  left: 8.5%;
  outline: none;
  z-index: 10;
  border: none;
  opacity: 1;
}

#upgrade-your-tailgate-with-biolite-firepit .come-inside-text {
  font-size: 16px;
  line-height: 0px;
  text-transform: uppercase;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  display: block;
  text-align: left;
  color: #7a7a7a !important;
}

#upgrade-your-tailgate-with-biolite-firepit .downArrow {
  color: #7a7a7a;
}

.tailgate-scene-overlay {
  background-color: rgba(243, 243, 243, 0.9);
  padding: 0;
}

.tailgate-hero-subheader {
  font-size: 28px;
  margin: 0;
  padding: 0 0 15px 0;
  line-height: 30px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
}

.tailgate-scoreboard-wrapper {
  background-color: #252728;
  width: 1000px;
  margin-left: -500px;
  left: 50%;
  z-index: 1;
  position: absolute;
  padding: 20px;
  height: 75vh;
  max-height: 600px;
  margin-top: 12.5vh;
  -webkit-box-shadow: 3px 3px 5px 0px rgba(89,89,89,0.15);
  -moz-box-shadow: 3px 3px 5px 0px rgba(89,89,89,0.15);
  box-shadow: 3px 3px 5px 0px rgba(89,89,89,0.15);
}

.tailgate-scoreboard-padder {
  border: 5px solid #fff;
  height: calc(75vh - 40px);
  max-height: 560px;
}

.scoreboard-gameday {
  width: 80%;
  padding: 5px;
  border: 2.5px solid #fff;
  margin: 30px 0 20px 0;
  -webkit-box-shadow: inset 3px 3px 13px 2px rgba(0,0,0,0.77);
  -moz-box-shadow: inset 3px 3px 13px 2px rgba(0,0,0,0.77);
  box-shadow: inset 3px 3px 13px 2px rgba(0,0,0,0.77);
}

.scoreboard-buttons {
  width: 43%;
  margin-top: 8%;
  margin-bottom: 2%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  text-align: center;
  border: 2.5px solid #fff;
  -webkit-box-shadow: inset 3px 3px 13px 2px rgba(0,0,0,0.77);
  -moz-box-shadow: inset 3px 3px 13px 2px rgba(0,0,0,0.77);
  box-shadow: inset 3px 3px 13px 2px rgba(0,0,0,0.77);
  opacity: 1;
  transition: opacity 150ms linear;
  -webkit-transition: opacity 150ms linear;
  -moz-transition: opacity 150ms linear;
}

.scoreboard-buttons:hover {
  opacity: 0.5;
}

.tailgate-scoreboard-title {
  font-size: 27px;
  line-height: 27px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  display: block;
  margin: 0 0 20px 0;
}

.tailgate-scoreboard-btn {
  font-size: 19px;
  line-height: 16px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  display: block;
  padding: 0 0 40px 0;
}

.scoreboard-bg {
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/scoreboard_right.png?9840426257664312329…);
  background-color: #252728;
  border: 10px solid #252728;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  padding: 20px;
}

.tailgate-scoreboard-footer {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 75%;
  top: 92%;
  z-index: 10;
  transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
}

.tailgate-scoreboard-header {
  border-right: 5px solid #fff;
  height: calc(75vh - 50px);
  max-height: 550px;
}

.tailgate-arrow {
  padding: 0 10px 0 10px;
  position: relative;
  top: 2px;
}

.gameday-blink-flicker {
  animation: flicker 5s infinite;
  -webkit-animation: flicker 5s infinite;
  -moz-animation: flicker 5s infinite;
}

@keyframes flicker {
  0% {
    opacity: 1;
  }

  65% {
    opacity: 1;
  }

  70% {
    opacity: 0;
  }

  75% {
    opacity: 1;
  }

  80% {
    opacity: 0;
  }

  81% {
    opacity: 1;
  }

  82% {
    opacity: 0;
  }

  83% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes flicker {
  0% {
    opacity: 1;
  }

  65% {
    opacity: 1;
  }

  70% {
    opacity: 0;
  }

  75% {
    opacity: 1;
  }

  80% {
    opacity: 0;
  }

  81% {
    opacity: 1;
  }

  82% {
    opacity: 0;
  }

  83% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes flicker {
  0% {
    opacity: 1;
  }

  65% {
    opacity: 1;
  }

  70% {
    opacity: 0;
  }

  75% {
    opacity: 1;
  }

  80% {
    opacity: 0;
  }

  81% {
    opacity: 1;
  }

  82% {
    opacity: 0;
  }

  83% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@media only screen and (min-width: 1800px) {
  .go-inside-tailgate {
    background-position: 90% 28%;
  }

  .tailgate-scene-overlay {
    padding: 10px;
  }

  .tailgate-timeline {
    bottom: 9vh;
  }

  .tailgate-truck {
    background-position: 50% 50%;
  }
}

@media only screen and (max-width: 1290px) and (min-width: 1024px) {
  .scoreboard-buttons {
    width: 36%;
  }

  .scoreboard-gameday {
    width: 66%;
  }

  .tailgate-scoreboard-footer {
    padding-top: 3vh;
  }
}

@media only screen and (max-width: 1024px) {
  .tailgate-scoreboard-footer {
    position: relative;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    top: 0;
    margin: 40px 0 0 0;
  }

  .scoreboard-buttons {
    width: 30%;
  }

  .tailgate-scene-copy {
    padding: 0 20px 0 20px;
    margin-top: 103vh;
    margin-bottom: 215px;
    width: 100%;
    text-align: center !important;
  }

  .tailgate-feature-title {
    font-size: 19px;
    line-height: 21px;
    text-align: center;
  }

  .tailgate-feature-desc {
    font-size: 15px;
    line-height: 18px;
    text-align: center;
  }

  .go-inside-tailgate {
    height: 100% !important;
    margin-bottom: 30px;
  }

  .tailgate-illustration {
    position: absolute;
    width: 480px;
    bottom: 0%;
    right: 0;
    z-index: 5;
    width: 380px !important;
    margin-left: -190px;
    left: 50%;
  }

  .tailgate-firepit {
    position: absolute;
    width: 480px;
    bottom: 0%;
    right: 0;
    z-index: 5;
    width: 380px !important;
    margin-left: -190px;
    left: 50%;
  }

  .tailgate-360icon {
    position: absolute;
    bottom: 8%;
    right: 26%;
    z-index: 500;
    width: 100px;
    left: 50%;
    margin-left: -50px;
  }

  .tailgate-truck {
    background-position: 50%;
  }

  .tailgate-truck-header {
    padding-top: 55px;
    padding: 35px 20px 0 20px;
  }

  .cookout-to-hangout {
    height: 100% !important;
  }

  .tailgate-grill-slider-header {
    padding: 30px 40px 0 40px;
  }

  .tailgate-timeline {
    position: relative;
    bottom: 0;
    z-index: 1;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    padding: 30px 0 30px 0;
  }

  .tailgating-photos {
    height: 100% !important;
  }

  #tailgate-video {
    display: none;
  }

  #upgrade-your-tailgate-with-biolite-firepit .landing-section-hero {
    background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/tailgating_footer.jpg?6420175815626493557…) !important;
  }
}

@media only screen and (max-width: 868px) {
  .tailgate-scoreboard-wrapper {
    width: 90%;
    margin-left: 5%;
    left: 0;
    z-index: 1;
    position: absolute;
    padding: 20px;
    height: 50vh;
    max-height: 50vh;
    margin-top: 20px;
  }

  .tailgate-scoreboard-header {
    height: calc(50vh - 50px);
  }

  .tailgate-scoreboard-padder {
    height: calc(50vh - 40px);
    max-height: 50vh;
  }

  .scoreboard-bg {
    height: 45vh;
    max-height: 45vh;
  }

  .tailgate-scoreboard-title {
    font-size: 19px;
    line-height: 20px;
  }

  .tailgate-scoreboard-btn {
    font-size: 13px;
    line-height: 14px;
  }
}

@media only screen and (max-width: 480px) {
  .scoreboard-bg {
    height: 33vh;
    padding: 0px;
    border: 0px solid #fff;
  }

  .tailgate-scoreboard-wrapper {
    width: 90%;
    margin-left: 5%;
    left: 0;
    z-index: 1;
    position: absolute;
    padding: 20px;
    height: 90vh;
    max-height: 90vh;
    margin-top: 3vh;
  }

  .tailgate-scoreboard-title {
    font-size: 16px;
    line-height: 9px;
  }

  .tailgate-scoreboard-header {
    border-right: 0px;
    height: 50vh;
    max-height: 50vh;
  }

  .tailgate-scoreboard-padder {
    height: 50vh;
    max-height: 50vh;
  }

  .tailgate-scoreboard-btn {
    font-size: 11px;
    line-height: 13px;
    text-align: center;
  }

  .tailgate-arrow {
    font-size: 12px !important;
  }

  .scoreboard-buttons {
    width: 45%;
  }

  .tailgate-scoreboard-footer {
    margin: 60px 0 0 0;
  }

  .tailgate-truck-feature-1 {
    width: 90%;
    position: absolute;
    left: 0;
    top: 130px;
    padding: 0;
    margin: 0 20px 0 20px;
  }

  .tailgate-truck-feature-2 {
    width: 90%;
    position: absolute;
    left: 0;
    top: 320px;
    padding: 0;
    margin: 0 20px 0 20px;
  }

  .tailgate-truck {
    background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/BackOfTruck_Hero_flat_mobile.jpg?1813026090719080804…);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0% 100%;
  }

  .tailgate-truck-header {
    padding-top: 35px;
    padding: 35px 20px 0 20px;
  }

  .tailgating-features {
    height: 100% !important;
  }

  #upgrade-your-tailgate-with-biolite-firepit .sunlight-spec-bloc {
    height: 240px;
    padding: 16px 0 0 0;
  }

  #new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .sunlight-product-buttons, #upgrade-your-tailgate-with-biolite-firepit .sunlight-product-buttons {
    min-height: 110px;
  }

  .firepit-360-modal {
    min-height: 400px;
  }
}

.tailgating-icon {
  font-size: 24px !important;
  position: relative;
  top: 5px;
  padding: 3px;
  color: #cc4e20;
}

@media only screen and (max-width: 480px) {
  .tailgating-icon {
    display: block;
    padding-bottom: 5px;
  }
}

.giving-tuesday-modal {
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/GivingTuesday_Bg_v2.jpg?7975584205364753496…);
  background-size: cover;
  background-position: bottom right;
  background-repeat: no-repeat;
  min-height: 580px;
}

.ctw-hero {
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/CTW_hero.jpg?5113360606685689563…);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 50%;
  height: 100%;
  background-attachment: fixed;
}

.runhome-hero {
  background-color: #000;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 50%;
  height: 100%;
  background-attachment: fixed;
}

.ctw-footer {
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/CTW-footer.jpg?8247048621581494823…);
  background-size: cover;
  background-repeat: no-repeat;
}

.runhome-footer {
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/CTW-footer.jpg?8247048621581494823…);
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  height: 1000px;
  padding: 80px 0 0 0;
  border-top: 1px solid #303030;
}

.ctw-title {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: absolute;
  width: 1200px;
  left: 50%;
  margin-left: -600px;
  font-size: 6.7vh;
  text-transform: uppercase;
  margin-top: 12.5vh;
  font-weight: 700;
  color: #008fa1;
  opacity: 0.9;
  z-index: 10;
}

.runhome-divider {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 55px;
  margin: 0;
  padding: 0 20px 0 20px;
  font-weight: 300;
  display: inline-block;
}

.runhome-title {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 55px;
  line-height: 0;
  margin: 0;
  padding: 87px 0 5px 0;
  font-weight: 600;
  display: inline-block;
}

.runhome-subtitle {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 26px;
  margin: 0;
  padding: 0 0 30px 0;
  font-weight: 600;
  display: block;
}

.runhome-share {
  margin: 20px 0 150px 0;
}

.runhome-desc {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}

.ctw-title-learn {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  font-size: 4vh;
  text-transform: uppercase;
  font-weight: 700;
  color: #008fa1;
}

.ctw-watch-all {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: absolute;
  width: 600px;
  left: 50%;
  margin-left: -300px;
  font-size: 2.5vh;
  margin-top: 42vh;
  font-weight: 700;
  color: #353535;
  z-index: 50;
}

.ctw-watch-all a {
  color: #008fa1;
  text-decoration: underline;
  transition: color 150ms ease-in-out;
}

.ctw-watch-all a:hover {
  color: #299290;
  text-decoration: none;
}

.ctw-learn-btn {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2vh;
  font-weight: 600;
  color: #353535;
  z-index: 100;
}

.ctw-learn-btn a {
  color: #008fa1;
  text-decoration: none;
  transition: color 150ms ease-in-out;
}

.ctw-learn-btn a:hover {
  color: #299290;
  text-decoration: none;
}

.ctw-subtitle {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: absolute;
  width: 1200px;
  left: 50%;
  margin-left: -600px;
  font-size: 2.9vh;
  margin-top: 20vh;
  font-weight: 700;
  color: #353535;
  opacity: 0.7;
  z-index: 10;
}

.ctw-desc {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: absolute;
  width: 70%;
  left: 50%;
  margin-left: -35%;
  font-size: 2.3vh;
  line-height: 3vh;
  margin-top: 28vh;
  font-weight: 300;
  color: #353535;
  opacity: 0.7;
  z-index: 17;
}

.ctw-desc-learn {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.9vh;
  line-height: 2.3vh !important;
  font-weight: 300;
  color: #fff;
  padding: 2% 0 0 0;
  display: block;
}

.ctw-clouds {
  position: absolute;
  top: -480px;
  right: -87%;
  z-index: 15;
  animation: cloudsInSky 100s linear 1s infinite alternate both running;
  -webkit-animation: cloudsInSky 100s linear 1s infinite alternate both running;
  -moz-animation: cloudsInSky 100s linear 1s infinite alternate both running;
}

@-keyframes cloudsInSky {
  0% {
    right: -87%;
  }

  100% {
    right: 0%;
  }
}

@-webkit-keyframes cloudsInSky {
  0% {
    right: -87%;
  }

  100% {
    right: 0%;
  }
}

@-moz-keyframes cloudsInSky {
  0% {
    right: -87%;
  }

  100% {
    right: 0%;
  }
}

.ctw-videos {
  margin: 0 auto;
  width: 100%;
  display: block;
  height: 40vh;
}

.ctw-play-button {
  position: absolute;
  z-index: 50;
  color: #fff;
  font-size: 61px !important;
  top: 10vh;
  left: 42%;
}

.ctw-play-button-all {
  position: relative;
  color: #008fa1;
  font-size: 17px !important;
  top: 2px;
  padding-right: 5px;
}

.ctw-videos-wrapper {
  width: 33%;
  display: inline-block;
  position: relative;
  z-index: 50;
}

.ctw-videos-thumb {
  height: 27vh;
  margin-top: 0vh;
  position: relative;
  z-index: 20;
  -webkit-box-shadow: 7px 7px 15px -6px rgba(43,43,43,0.5);
  -moz-box-shadow: 7px 7px 15px -6px rgba(43,43,43,0.5);
  box-shadow: 7px 7px 15px -6px rgba(43,43,43,0.5);
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.ctw-videos-thumb:hover, .ctw-videos-thumbt:focus, .ctw-videos-thumb:active {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.ctw-logo-animation-wrapper {
  position: absolute;
  display: block;
  width: 220px;
  left: 50%;
  margin-left: -110px;
  top: 5vh;
  z-index: 100;
}

.ctw-part-number {
  position: absolute;
  display: block;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #696969;
  font-size: 1.6vh;
  font-weight: 800;
  background-color: #fff;
  width: 160px;
  left: 50%;
  margin-left: -80px;
  top: -5%;
  z-index: 45;
  padding: 5px 8px 5px 8px;
}

.ctw-video-title {
  position: relative;
  display: block;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 3vh;
  font-weight: 700;
  line-height: 3.4vh;
  padding: 10px 0 0 0;
}

.ctw-video-subtitle {
  position: relative;
  display: block;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #888888;
  font-weight: 300;
  font-size: 1.8vh;
}

#videos-link:focus {
  outline: 0;
}

.ctw-series-desc {
  width: 30%;
  display: inline-block;
  padding: 2%;
}

.ctw-series-video-summary {
  width: 70%;
  display: inline-block;
}

.ctw-series-video-summary-detail {
  height: 33vh;
}

.ctw-videos-more {
  margin-bottom: 0vh;
  position: relative;
  bottom: 0;
  width: 33%;
  display: inline-block;
  vertical-align: bottom;
}

.ctw-videos-more-detail {
  position: relative;
  margin: 0;
  top: 0;
  border-right: 1px dotted #fff;
  height: 55vh;
  width: 33%;
  vertical-align: top;
  display: table-cell;
  padding: 1% 3% 0 3%;
  background-image: linear-gradient(to bottom, rgba(255,255,255,0), rgba(0,0,0,1));
}

.ctw-videos-more-detail:last-child {
  border: none;
}

.ctw-videos-more-btn a {
  position: absolute;
  bottom: .7vh;
  width: 100%;
  left: 50%;
  margin-left: -50%;
  display: block;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.8vh;
  text-transform: uppercase;
  vertical-align: text-bottom;
  color: #008fa1;
  text-decoration: underline;
  transition: color 150ms ease-in-out;
}

.ctw-videos-more-btn a:hover {
  color: #299290;
  text-decoration: none;
}

.ctw-intro {
  width: 100%;
  display: block;
  height: 55vh;
}

.runhome-intro {
  width: 100%;
  display: block;
  height: 20vh;
}

.runhome-video {
  max-width: 1170px;
  margin: 0 auto;
}

.ctw-videos-learn-more {
  width: 100%;
  display: block;
  height: 5vh;
}

.ctw-learn-more {
  width: 100%;
  display: block;
  height: 45vh;
}

.ctw-social-share-wrapper {
  width: 100%;
  display: block;
  height: 10vh;
}

.ctw-social-share {
  font-size: 24px !important;
  display: inline;
  color: #fff;
  padding: 0 2% 0 2%;
  transition: opacity 150ms ease-in-out;
}

.ctw-social-share:hover {
  opacity: 0.6;
}

.runhome-social-share {
  font-size: 38px !important;
  display: inline;
  color: #fff;
  padding: 0 2% 0 2%;
  transition: opacity 150ms ease-in-out;
}

.runhome-social-share:hover {
  opacity: 0.6;
}

.ctw-desc-title {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 1.2vh;
  background-color: #fff;
  text-transform: uppercase;
  color: #696969;
  padding: 7px 8px 5px 8px;
}

.ctw-share {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  display: inline;
  position: relative;
  top: -7px;
}

.ctw-videos-more-detail-block {
  padding: 1% 0 3% 0;
}

.learn-more-icon {
  position: relative;
  top: 2px;
  padding: 0 4px 0 0;
  font-size: 13px !important;
}

.learn-more-mobile {
  display: none;
}

@media only screen and (max-width: 4000px) and (min-width: 1624px) {
  .ctw-title {
    font-size: 4.7vh;
  }

  .ctw-desc {
    font-size: 2.0vh;
    margin-top: 24vh;
  }

  .ctw-subtitle {
    font-size: 2.4vh;
    margin-top: 18vh;
  }
}

@media only screen and (max-width: 1023px) {
  .ctw-intro {
    height: initial;
  }

  .learn-more-mobile {
    display: inherit;
  }

  .giving-tuesday-modal {
    background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/GivingTuesday_Bg_mobile.jpg?12407982925812316051…);
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    min-height: 580px;
  }

  .runhome-desc {
    padding: 0 20px 0 20px;
  }

  .ctw-logo-animation-wrapper {
    position: relative;
    display: block;
    width: 45%;
    left: 0;
    margin-left: 0;
    top: 0;
    margin: 0 auto;
    padding: 20px 0 0;
  }

  .ctw-title {
    position: relative;
    width: 100%;
    left: 0;
    margin-left: 0;
    font-size: 28px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
    padding: 10px 0 0 0;
    text-align: center;
  }

  .ctw-subtitle {
    position: relative;
    width: 100%;
    left: 0;
    margin-left: 0;
    font-size: 19px;
    line-height: 20px;
    margin-top: 0;
    padding: 10px 30px 0 30px;
  }

  .ctw-desc {
    position: relative;
    width: 100%;
    left: 0;
    margin-left: 0;
    font-size: 14px;
    line-height: 16px;
    margin-top: 0;
    padding: 10px 30px 0 30px;
  }

  .ctw-watch-all {
    position: relative;
    width: 100%;
    left: 0;
    margin-left: 0;
    font-size: 16px;
    margin-top: 0;
    padding: 10px 0 0 0;
  }

  .ctw-videos {
    height: initial;
  }

  .ctw-videos-wrapper {
    width: 100%;
    display: inline-block;
    position: relative;
    z-index: 50;
    margin: 40px 0 0 0;
  }

  .ctw-videos-more-detail {
    position: relative;
    display: block;
    margin: 0;
    top: 0;
    border-right: 0;
    height: 100%;
    width: 100%;
    vertical-align: top;
    padding: 1% 3% 0 3%;
    background-image: none;
  }

  .ctw-videos-more {
    width: 90%;
    margin: 20px 0 20px 0;
  }

  .ctw-social-share {
    color: #3b3b3b;
    padding: 0 5% 0 5%;
  }

  .ctw-desc-learn {
    color: #3b3b3b;
  }

  .ctw-share {
    color: #3b3b3b;
  }

  .ctw-hero {
    height: 100% !important;
    background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/CTW_hero_mobile.png?1217620……);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 28% bottom;
    background-color: #fafdff;
    padding-bottom: 215px;
    background-attachment: inherit;
  }

  .ctw-video-title {
    color: #3c3c3c;
  }

  .ctw-video-subtitle {
    color: #3c3c3c;
  }

  .ctw-footer {
    height: 760px !important;
    background-position: 35% 38%;
    background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/CTW-footer_mobile.jpg?16228110566495442573…);
  }

  .ctw-footer-content {
    padding: 0 30px 10px 30px;
    margin: 0 0 30px 0;
  }
}

@media only screen and (max-width: 480px) {
  .remodal-background-content {
    padding: 20px;
  }

  .runhome-title {
    font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 35px;
    line-height: 35px;
    margin: 0;
    padding: 47px 0 5px 0;
    font-weight: 600;
    display: inline-block;
  }

  .runhome-subtitle {
    font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 18px;
    margin: 0;
    padding: 0 0 30px 0;
    font-weight: 600;
    display: block;
  }

  .runhome-divider {
    display: none;
  }

  .runhome-footer-content {
    padding: 0 20px 0 20px;
  }

  .runhome-footer {
    background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/CTW-footer.jpg?8247048621581494823…);
    background-size: cover;
    background-position: 29% center;
    background-repeat: no-repeat;
    height: 1000px;
    padding: 80px 0 0 0;
    border-top: 1px solid #303030;
  }

  h2.alt {
    font-size: 38px;
  }
}

.gifcard-simulation {
  width: 40%;
  display: inline-block;
  padding: 0 0 0 10%;
}

.gifcard-deets {
  width: 55%;
  margin-left: 5%;
  display: inline-block;
  padding: 0 10% 0 0;
}

.gifcard-numbers {
  font-size: 24px !important;
  color: #fff;
  display: inline-block;
  padding: 0 10px 0 0;
  position: relative;
  top: 1px;
}

.gifcard-list {
  display: block;
  padding: 15px 0 0 0;
}

.gifcard-phone {
  max-height: 535px;
  overflow: hidden;
  bottom: 0px;
  position: absolute;
}

#give-a-gifcard-this-holiday .scroll-down {
  position: relative;
  padding: 50px 0 0 0;
  width: 100%;
  z-index: 50;
  text-align: left;
  left: 0;
  margin-left: 0;
}

#give-a-gifcard-this-holiday .scroll-down-msg {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 24px;
  line-height: 6px;
  font-weight: 700;
  padding: 0 0 0 40px;
  text-align: left !important;
}

#give-a-gifcard-this-holiday .scroll-down-bouncy-arrow {
  color: #fff;
  font-size: 25px !important;
  padding: 5px 0 0 0;
  display: block;
  text-align: left !important;
  outline: none;
  position: relative;
  top: -31px;
  left: 0;
  border: none;
  opacity: 1;
  transition: opacity .3s ease;
  -webkit-transition: opacity .3s ease;
  -moz-transition: opacity .3s ease;
  -webkit-animation: bounce 5s 3s infinite;
  -moz-animation: bounce 5s 3s infinite;
  animation: bounce 5s 3s infinite;
}

#give-a-gifcard-this-holiday .footer-wrapper {
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/Homepage_Footer_fc312e23-6a7f-481b-8e07-545e9efe8db3.jpg?1141611……);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  overflow: hidden;
  height: 997px;
  padding: 25px 0 0 0;
  background-color: #f3f3f3;
  position: relative;
}

@media only screen and (min-width: 1453px) {
  .gifcard-phone {
    max-height: 655px;
  }
}

.gifcard-main {
  margin: 0 auto;
  width: 100%;
  margin-bottom: 0px;
  margin-top: 0px;
  position: relative;
}

.gifcard-download {
  font-size: 17px !important;
  color: #cc4e20;
  font-weight: 600;
  padding: 12px 0 0 0;
  margin: 0;
}

.gifcard-download-icon {
  font-size: 24px !important;
  color: #cc4e20;
  display: inline-block;
  padding: 0 10px 0 0;
  position: relative;
  top: 1px;
}

.gifcard-card {
  padding-bottom: 0;
  line-height: 0;
}

.gifcard-card img {
  -webkit-clip-path: inset(0 0 0 0 round 10px);
  clip-path: inset(0 0 0 0 round 10px);
}

.gifcard-mobile-tap {
  font-size: 24px !important;
  color: #fff;
  display: inline-block;
  padding: 0 3px 0 0;
  position: relative;
  top: 3px;
}

.gifcard-mobile {
  z-index: 10;
  position: absolute;
  width: 60%;
}

.gifcard-download-mobile {
  display: none;
}

.gifcard-wrap {
  margin: 0 0 40px 0;
}

@media only screen and (max-width: 1150px) {
  .gifcard-list h4.alt {
    font-size: 16px;
  }

  .gifcard-deets {
    margin-left: 9% !important;
  }
}

@media only screen and (max-width: 1024px) {
  .gifcard-download-mobile {
    font-size: 14px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    display: inherit;
  }

  .gifcard-desktop {
    display: none;
  }

  #give-a-gifcard-this-holiday .landing-section-hero {
    background-image: none;
  }

  #give-a-gifcard-this-holiday .landing-section-hero h1 {
    font-size: 40px !important;
  }

  .gifcard-phone {
    max-height: initial !important;
    overflow: hidden;
    bottom: 0px;
    position: absolute;
    width: 300px;
    left: 50%;
    margin-left: -150px;
  }

  .gifcard-deets {
    width: 100%;
    margin-left: 5%;
    display: inline-block;
    padding: 0 5% 0 5%;
    margin-left: 0 !important;
    text-align: center;
  }

  #give-a-gifcard-this-holiday .landing-section-hero {
    height: 1050px !important;
    background-image: none;
    padding: 30px 0 0 0;
  }

  #give-a-gifcard-this-holiday .scroll-down {
    text-align: center;
  }

  #give-a-gifcard-this-holiday .scroll-down-bouncy-arrow {
    text-align: center !important;
    top: 0;
  }

  .gifcard-simulation {
    width: 100%;
    display: inline-block;
    padding: 0;
    position: absolute;
    left: 50%;
    margin-left: -50%;
    bottom: 0;
  }

  .gifcard-numbers {
    display: block;
    margin: 20px 0 0 0;
  }

  #give-a-gifcard-this-holiday .scroll-down-msg {
    padding: 0;
  }

  .gifcard-wrap {
    margin: 0 0 10px 0;
  }

  #give-a-gifcard-this-holiday .footer-wrapper {
    height: 1297px;
  }
}

.holiday-mission-stats-each {
  margin: 0;
}

.holiday-mission-stats-padder {
  border: 1px solid #fff;
  padding: 0 10px 10px 10px;
  height: 315px;
  width: 30%;
  margin: 0 1% 0 1%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  display: inline-block;
}

#give-a-gifcard-this-holiday .holiday-mission-stats-each {
  margin: 14px 0 10px 0;
  padding: 0 25px 25px 25px;
  border-right: 0;
}

.holiday-mission-stats {
  margin: 45px 0 30px 0;
}

.holiday-text {
  font-family: reader-regular, sans-serif !important;
  font-weight: 700 !important;
  font-style: normal !important;
}

.homepage-gift-guide {
  padding: 0 60px 0 60px;
  margin: 40px auto 0 auto;
}

.homepage-category-wrapper {
  margin: 60px auto;
}

.holiday-home-wrapper {
  margin: 46px auto 0 auto;
}

.homeheader-footer {
  margin: 30px 0 0 0;
}

.gift-guide-icon-wrapper {
  transition: background-color 150ms ease-in;
  -webkit-transition: background-color 150ms ease-in;
  -moz-transition: background-color 150ms ease-in;
  padding: 30px;
  background-color: rgba(243, 243, 243, 0);
}

.gift-guide-icon-wrapper:hover {
  background-color: rgba(255, 255, 255, 1);
}

.gift-guide-icon-label {
  text-align: center;
  left: 0;
  margin: 7px 0 0 0;
  position: relative;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #444444;
  display: block;
}

.homepage-category {
  padding: 8px;
}




.gifcard-icon-holiday {
  font-size: 41px !important;
  color: #C24D05;
  position: relative;
  top: -15px;
}



.homeheader-cta {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 22px;
  line-height: 40px;
  padding: 30px 0 0 0;
  text-align: left;
  position: relative;
  color: #C24D05;
  font-weight: 600;
  font-style: normal;
}

.homeheader-title-holiday {
  font-size: 38px;
  line-height: 35px;
  margin-bottom: 10px;
  text-align: left;
  display: block;
  padding: 48px 0 0 0;
}

.homeheader-subtitle {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 21px;
  text-align: left;
  display: block;
  color: #74744F;
}

.shop-all {
  margin: 200px 0 0 0;
}

@media only screen and (min-width: 1680px) {
  .footer-wrapper {
    height: 1234px;
  }
}

@media only screen and (max-width: 1024px) {
  .homepage-category {
    margin: 0 0 15px 0;
  }

  .holiday-mission-stats-each {
    border-right: 0;
  }
}

@media only screen and (max-width: 480px) {
  .homepage-category {
    margin: 0 0 0px 0;
  }

  .collection-section-title-gift-guide {
    font-size: 30px;
  }

  .collection-section-title-gift-guide {
    padding: 15px 0 6px 0;
  }

  .gift-guide-divider {
    padding: 30px 0 9px 0;
  }

  .collection-section-subtitle {
    padding: 5px 25px 12px 25px;
  }

  .collections-sidebar-selection {
    padding: 20px 0 1px 0;
  }

  .shop-all {
    margin: 64px 0 0 0;
  }
}

#headlamp-hero .sunlight-hero-section {
  position: absolute;
  left: 50%;
  right: 0;
  margin-left: -500px;
  width: 1000px;
  top: 14%;
  z-index: 10;
}

.headlamp-hero {
  height: 100vh;
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/HeadLamp_Landing_Hero.jpg?15313708141160310740…);
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.headlamp-overview {
  background-color: #f3f3f3;
}

.spin-hidden-overlay {
  position: absolute;
  z-index: 100;
  bottom: 0;
  top: 0;
}

.headlamp-360-spin-icon {
  position: absolute;
  width: 41px;
  opacity: 0.5;
  right: 18%;
  bottom: 29%;
  z-index: 65;
}

.headlamp-overview-title {
  margin-top: 10vh;
  z-index: 12 !important;
  position: relative;
}

.headlamp-overview-icons {
  z-index: 120 !important;
  position: absolute;
  bottom: 0;
  margin-bottom: 10vh;
  left: 50%;
  right: 0;
  margin-left: -600px;
  max-width: 1200px;
}

.landing-tabs {
  overflow: hidden;
}

.landing-tabs-wrapper {
  position: relative;
  margin: 40px 0 0 0;
  width: 55%;
  padding: 25px 0 0 0;
  background-color: rgba(243, 243, 243, 0.9);
  border-top: 1px solid #dedede;
  border-left: 1px solid #dedede;
  border-right: 1px solid #dedede;
}

.landing-tabs-listd-slimfit {
  width: 60%;
  position: relative;
  margin: 0 auto;
  text-align: center;
  left: 20%;
}

.landing-tabs button {
  border: none;
  width: 32%;
  outline: none;
  cursor: pointer;
  padding: 14px 0%;
  transition: 0.3s;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 17px;
  margin: 21px 0 0 0;
  color: #a8a8a8;
  background-color: #fff;
}

.ambassador-thumb-headlamp {
  width: 100px;
  padding: 28px 0 0 0;
  position: relative;
  right: 0;
}

.landing-tabs button:hover {
  border-bottom: 4px solid #04a8a6;
}

.landing-tabs button.active {
  background-color: #008fa1;
  color: #fff;
  border-bottom: 4px solid #fff;
}

.tabcontent {
  animation: fadeEffect .5s;
  -moz-animation: fadeEffect .5s;
  -webkit-animation: fadeEffect .5s;
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.headlamp-3dslimfit {
  background-color: #f3f3f3;
}

.landing-tabs {
  position: absolute;
  z-index: 50;
  left: 5%;
  right: 0;
}

#flushFront {
}

#betterBalance {
}

#smartFabrics {
}

.slimfit-model {
  width: 61%;
  position: absolute;
  right: 0;
  bottom: 0;
  margin-right: 0;
}

.landing-tabs-content {
  top: 54vh;
  width: 30%;
  padding-left: 6%;
  position: relative;
}

.slimfit-model-desc {
  font-size: 19px;
  line-height: 26px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.slimfit-icon-callout {
  position: absolute;
  width: 170px;
  right: -225px;
  bottom: 2px;
}

.landing-tabs-list {
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.slimfit-overview-title {
  margin-top: 10vh;
  z-index: 12 !important;
  position: relative;
}

.headlamp-overview-icons-each {
  border-right: 1px solid #dedede;
  padding: 18px;
}

.headlamp-overview-icons-each:last-child {
  border-right: none;
}

.headlamp-overview-icons-ico {
  font-size: 36px !important;
}

#meet-biolite-headlamp-330-holy-fit-this-is-good .landing-hero-section {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: 59%;
  width: 1000px;
  top: 38%;
  z-index: 10;
}

#meet-biolite-headlamp-330-holy-fit-this-is-good {
  background-color: #f3f3f3;
}

#meet-biolite-headlamp-330-holy-fit-this-is-good .sunlight-spec-bloc:after {
  content: '';
  position: absolute;
  height: 95%;
  right: 0;
  top: 2.5%;
  width: 1px;
  background: #313335;
  z-index: 100;
}

#meet-biolite-headlamp-330-holy-fit-this-is-good .sunlight-spec-bloc:before {
  content: '';
  position: absolute;
  width: 95%;
  bottom: 0;
  left: 2.5%;
  height: 1px;
  background: #313335;
  z-index: 100;
}

#meet-biolite-headlamp-330-holy-fit-this-is-good .footer-wrapper {
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/HeadLamp_Landing_Footer_2019.jpg?3852350511796758…);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  overflow: hidden;
  height: 654px;
  padding: 98px 0 0 0;
  background-color: #f3f3f3;
  position: relative;
}

#meet-biolite-headlamp-330-holy-fit-this-is-good .ctw-play-button {
  position: absolute;
  z-index: 50;
  color: #fff;
  font-size: 4.5em !important;
  top: 34%;
  left: 45%;
}

.headlamp-ambassador-video {
  position: relative;
  margin-top: 14.5vh;
}

.headlamp-review-wrapper {
  position: relative;
  width: 90%;
  margin: 20px 0 0 0;
}

.headlamp-review-snippet {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.slimfit-features {
  width: 400px;
  margin: 0px 0 15px 0;
}

.from-the-pros {
  padding: 0 150px 0 0;
}

.reviews-logo {
  height: 10vh;
  display: block;
  margin: 0 auto;
  padding: 0 0 10px 0;
}

.reviews-stars {
  width: 38%;
}

.headlamp-models {
  position: relative;
  width: 800px !important;
  bottom: -3px;
  overflow: hidden;
}

.headlamps-models-headlines {
  position: relative;
  bottom: -8px;
}

.headlamps-models-headlines-main {
  font-size: 27px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: inline !important;
}

.headlamps-models-headlines-desc {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: block !important;
  font-size: 16px;
  line-height: 18px;
  padding: 0 30px 0 30px;
}

.headlamps-models-headlines-ico {
  text-align: center;
  margin: 0 auto;
  position: relative;
  bottom: 14px;
  display: block;
  font-size: 37px !important;
}

.headlamp-tech-specs-modes {
  max-width: 65px !important;
  margin: 0px 0 7px 0;
}

.headlamp-tech-specs-modes-compare {
  max-width: 30px !important;
  margin: 0 auto;
  padding: 15px 0 5px 0;
  display: block;
}

.headlamp-tech-specs-beam-distance {
  width: 98.5%;
}

.remodal-bg-standard {
  background-color: #fff;
  padding: 50px;
}

.remodal-bg-holyfit {
  background-color: #008fa1;
  padding: 50px 70px 50px 70px;
}

.holy-fit {
  margin: 45px 0 20px 0;
}

.holy-fit-icon {
  font-size: 60px !important;
  padding: 10px 0 5px 0;
}

.holy-fit-desc {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 21px;
  weight: 300px;
}

.headlamp-reviews-headline {
  padding: 5vh;
  display: block;
}

.buzz-padder {
  border: 1px solid #fff;
  height: 70vh;
  padding: 30px;
  margin: 15px;
  position: relative;
}

.headlamp-reviews-divider {
  text-align: left;
  display: block;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  margin: 15px 0 0 15px;
}

.headlamp-pro-reviews-content {
  padding: 0 45px 0 0;
  margin: 48px 0 0 0;
  text-align: left;
  position: relative;
}

.firemat-textures {
  width: 80%;
  padding: 20px 0 0 0;
}

.spinner-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #008fa1;
  z-index: 999999;
}

.spinner {
  margin: 100px auto 0;
  width: 70px;
  text-align: center;
  position: absolute;
  top: 42%;
  left: 48%;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1.0);
  }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

@media only screen and (max-width: 1023px) {
  .headlamp-video, .spinner-wrapper, .spinner, .headlamp-video-intro {
    display: none !important;
  }

  .headlamp-hero {
    background-position: 93%;
  }

  #meet-biolite-headlamp-330-holy-fit-this-is-good .landing-hero-section {
    margin-left: 42%;
    width: 1000px;
    top: 23%;
  }

  #meet-biolite-headlamp-330-holy-fit-this-is-good .landing-hero-header {
    font-size: 42px;
  }

  #meet-biolite-headlamp-330-holy-fit-this-is-good .landing-hero-subheader {
    font-size: 29px;
  }

  .headlamp-overview-title {
    padding: 0 20px 0 20px;
    margin-top: 30px;
  }

  #killer-fit .headlamp-overview {
    height: 100% !important;
  }

  .headlamp-overview-icons {
    position: relative;
    bottom: 0;
    margin-bottom: 10vh;
    left: 0;
    right: 0;
    margin-left: 0;
    max-width: 1023px;
  }

  .headlamp-overview-icons-each {
    border-right: 0;
    padding: 18px;
  }

  .slimfit-overview-title {
    margin-top: 0;
  }

  .landing-tabs {
    position: absolute;
    z-index: 50;
    left: 3%;
    right: 3%;
  }

  .landing-tabs-wrapper {
    position: relative;
    margin: 0;
    width: 100%;
    padding: 25px 0 0 0;
    background-color: rgba(243, 243, 243, 0.9);
    border-top: 1px solid #dedede;
    border-left: 0px solid #dedede;
    border-right: 0px solid #dedede;
  }

  .landing-tabs button {
    font-size: 21px;
    line-height: 21px;
  }

  .landing-tabs-content {
    top: 210px;
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
    position: relative;
  }

  .slimfit-model-desc {
    font-size: 17px;
    line-height: 27px;
    font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: center;
  }

  .slimfit-model {
    width: 90%;
  }

  .slimfit-icon-callout {
    position: relative;
    width: 180px;
    right: 0;
    bottom: 0;
  }

  #headlamp-reviews .landing-section {
    height: 100% !important;
  }

  .buzz-padder {
    border-top: 1px solid #fff;
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
    height: 100%;
    padding: 30px%;
    margin: 0;
    position: relative;
  }

  .headlamp-ambassador-video {
    position: relative;
    margin-top: 20px;
    margin-bottom: 40px;
  }

  #photos .landing-section {
    height: 100% !important;
  }

  .holy-fit-guarantee {
    padding: 0 30px 0 30px;
  }
}

@media only screen and (max-width: 480px) {
  .headlamp-models {
    border-bottom: 1px solid #f3f3f3;
    margin-bottom: 100px;
  }

  .headlamp-tech-specs-modes-compare {
    margin: 0;
  }

  .headlamp-compare-img {
    margin: 0;
  }

  .buzz-padder {
    border-top: 1px solid #fff;
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
    height: 100%;
    padding: 5vh 0 0 0;
    margin: 0;
    position: relative;
  }

  .headlamp-reviews-logo {
    margin-top: 0px !important;
  }

  .headlamp-review-wrapper {
    position: relative;
    width: 84%;
  }

  .headlamp-review-snippet {
    font-size: 16px;
  }

  .headlamp-reviews-text {
    font-size: 14px !important;
  }

  .headlamp-ambassador-video {
    position: relative;
    margin-top: 0.5vh;
  }

  #meet-biolite-headlamp-330-holy-fit-this-is-good .ctw-videos-thumb {
    height: inherit;
    width: inherit;
    margin-top: 0vh;
    max-height: 30vh;
  }

  .headlamp-reviews-headline {
    padding: 2vh 0 4vh 0;
  }

  .landing-tabs-content {
    top: 210px;
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
    position: relative;
  }

  .slimfit-model-desc {
    font-size: 14px;
    line-height: 20px;
    font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: center;
  }

  .slimfit-model {
    width: 100%;
  }

  .slimfit-icon-callout {
    position: relative;
    width: 127px;
    right: 0;
    bottom: 0;
  }

  .headlamp-overview-icons {
    max-width: 480px;
  }

  #meet-biolite-headlamp-330-holy-fit-this-is-good .landing-hero-header {
    font-size: 35px;
  }

  .remodal-bg-holyfit {
    background-color: #008fa1;
    padding: 20px 40px 40px 40px;
  }

  .holy-fit-desc {
    font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 19px;
    line-height: 25px;
  }

  .headlamp-tech-specs-modes {
    margin: 18px 0 7px 0;
  }

  #meet-biolite-headlamp-330-holy-fit-this-is-good .landing-hero-section {
    margin-left: 0;
    margin-right: 0;
    padding: 0 !important;
    width: 480px !important;
    left: 50%;
    margin-left: -240px;
    top: 8%;
    text-align: center;
  }

  #meet-biolite-headlamp-330-holy-fit-this-is-good .landing-hero-subheader {
    font-size: 25px;
  }

  #meet-biolite-headlamp-330-holy-fit-this-is-good h2 {
    font-size: 19px;
  }

  .headlamp-hero {
    height: 100vh;
    background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/HeadLamp_Landing_Hero_mobile.jpg?6659555675971347106……);
  }

  .landing-hero-header {
    font-size: 45px;
    font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    display: block;
  }

  .landing-hero-cta {
    padding: 10px 0 0 0;
  }@  media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and ( min--moz-device-pixel-ratio: 2), only screen and ( -o-min-device-pixel-ratio: 2/1), only screen and ( min-device-pixel-ratio: 2), only screen and ( min-resolution: 192dpi), only screen and ( min-resolution: 2dppx) {
    .headlamp-hero {height: 100vh;
    background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/HeadLamp_Landing_Hero_mobile_2x_3b6fd71a-0aba-435e-a718-734154cce7ad.jpg?6659555675971347106……);
  }
}}

.icons-standard {
  font-size: 26px !important;
  line-height: 30px;
}

.icons-brand-guidelines {
  font-size: 52px !important;
  line-height: 30px;
}

#biolite-brand-guidelines {
  background-color: #f3f3f3;
}

.brand-guidelines-block {
  margin: 0 40px 0 40px;
  border: 1px solid #dedede;
  padding: 40px 20px 40px 20px;
  background-color: #f3f3f3;
  -webkit-transition: background-color 300ms ease-in;
  -moz-transition: background-color 300ms ease-in;
  -o-transition: background-color 300ms ease-in;
  -ms-transition: background-color 300ms ease-in;
  transition: background-color 300ms ease-in;
}

.brand-guidelines-block:hover {
  background-color: #fff;
}

.brand-guidelines-block-padder {
  padding: 10px 0 20px 0;
}

@media only screen and (max-width: 480px) {
  .brand-guidelines-block {
    margin: 0 10px 0 10px;
  }

  #biolite-brand-guidelines h4.alt {
    font-size: 15px;
  }

  .brand-guidelines-block-padder {
    padding: 10px 0 5px 0;
  }

  .pro-deal-form-wrapper {
    height: 1000px !important;
  }

  #JotFormIFrame {
    height: 930px !important;
  }
}

.pro-deal-form {
  margin: 0 auto;
}

#biolite-pro-purchase-program .form-buttons-wrapper {
  margin-left: 0px !important;
}

.humanmodal {
  padding: 20px 80px 20px 80px;
}

@media only screen and (max-width: 480px) {
  .humanmodal {
    padding: 20px !important;
  }
}

.doorbuster-title {
  color: #cc4e20;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  display: block;
  font-size: 18px;
  line-height: 17px !important;
  padding: 0px 0 5px 5px;
}

.doorbuster-wrapper {
  border: 1px solid #cc4e20;
  background-color: #f3f3f3;
  border-radius: 2px;
  margin: 23px 0 0 0;
  padding: 22px;
  height: auto;
  display: inline-block;
}

.doorbuster-wrapper-sunlight {
  border: 1px solid #cc4e20;
  background-color: #f3f3f3;
  border-radius: 2px;
  margin: 0;
  padding: 22px;
  height: 100%;
  display: inline-block;
}

.doorbuster-detail {
  font-family: "reader-regular","HelveticaNeue","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 16px;
  padding: 5px 8px 0px 5px;
}

.doorbuster-img {
  width: 95%;
}

.doorbuster-img-sunlight {
  width: 95%;
}

.cbd-list {
  list-style-type: disc;
}

.toggle-grey {
  background-color: #fff;
  padding: 30px;
}

.toggle-main-title {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
}

.toggle-main-title-faq {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
}

.faq-icon {
  font-size: 12px !important;
}

#return-amp-shipping-policy-biolite-energy {
  background-color: #f3f3f3;
}

.toggle-desc {
  color: #2e2e2f !important;
}

.compare-table-bundle td:last-child {
  border-right: 0px dashed #cfcfd0;
}

.compare-table-bundle th:last-child {
  border-right: 0px dashed #cfcfd0;
}

.sidebar-title {
  font-size: 42px;
  line-height: 40px;
  margin-bottom: 20px;
}

#return-amp-shipping-policy-biolite-energy .compare-table-bundle td, .compare-table-bundle th {
  height: 33px;
}

.sale-nav-tag {
  position: absolute;
  top: -22px;
  left: 39px;
  width: 45px;
  color: #fff;
  background-color: #008fa1;
  padding: 2px 4px 1px 4px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: .5px;
  font-size: 9px;
  text-align: center;
}

.shop-all-gear-kits {
  width: 100%;
  border: 1px solid #fff;
  height: 100px;
  background-color: #008fa1;
  color: #fff !important;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  position: absolute;
  display: block;
  padding: 37px 0 0 0;
  bottom: 26px;
  text-align: center;
  margin: 18px 0 0 0;
  clear: both;
}

.shop-all-gear-kits:hover {
  background-color: #05a7a5;
}

.gear-kits-category-title {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #008fa1;
  border: 0px solid rgba(0, 177, 175, 1);
  border-radius: 1px;
  text-align: center;
  margin: 29px 0 0 0;
  padding: 10px;
  position: relative;
  left: 2%;
  top: 9px;
}

.gear-kits-section {
  position: relative;
}

.kits-title {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 15px;
  color: #222 !important;
}

.gear-kits-item {
  margin: 10px 0 10px 0;
  display: block;
  height: 147px;
  position: relative;
  clear: both;
  border-bottom: 1px solid #f3f3f3;
}

.gear-kits-item-button {
  margin: 10px 0 10px 0;
  display: block;
  height: 147px;
  position: relative;
  clear: both;
  border-bottom: 1px solid #f3f3f3;
}

.gear-kits-item:hover {
  background-color: #f3f3f3;
}

.gear-kits-item:last-child {
  border-bottom: 0px solid #f3f3f3;
}

.gear-kits-details {
  padding: 41px 0 0 20px;
}

#AjaxinatePagination {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 15px;
  text-align: center;
  margin: 20px 0 0 0;
}

.pagination-items-count {
  display: block;
  margin: 15px 0 10px 0;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 11px;
}

#prep-bundle .product-grid-item__thumb {
  background-size: 67%;
}

.slider-climateneutral {
  width: 175px;
}

.product-grid-item__inner a:focus .product-grid-item__thumb, .klaviyo_submit_button:focus, #warrantySubmit:focus, #warranty_signup select:focus, .recent-press-be a:focus, .slider-prev:focus, .slider-next:focus, #AddSingleToCartForm .single-option-selector:focus, #AddToCart:focus, form.inline button:focus, .icon-close-circle:focus, #menu-main .hasDropdown button:focus, a.nav-featured-area-link:focus .feature-hover span, #gearkitsdropdown .gear-kits-item-button a:focus div, .btn.btn-primary:focus {
  outline-width: 2px !important;
  outline-style: solid !important;
  outline-color: Highlight !important;
}

@media (-webkit-min-device-pixel-ratio:0) {
  .product-grid-item__inner a:focus .product-grid-item__thumb, .klaviyo_submit_button:focus, #warrantySubmit:focus, #warranty_signup select:focus, .recent-press-be a:focus, .slider-prev:focus, .slider-next:focus, #AddSingleToCartForm .single-option-selector:focus, #AddToCart:focus, form.inline button:focus, .icon-close-circle:focus, #menu-main .hasDropdown button:focus, a.nav-featured-area-link:focus .feature-hover span, #gearkitsdropdown .gear-kits-item-button a:focus div, .btn.btn-primary:focus {
    outline: -webkit-focus-ring-color auto 5px !important;
  }
}

#shopify-product-reviews.show-rating .spr-review-reportreview:focus {
  opacity: 1;
}

.recent-press-be a {
  display: block;
  width: 100%;
  height: 100%;
}

.recent-press-be a:focus .staff-grid-item__overlay {
  opacity: 1;
  visibility: visible;
}

.recent-press-be a:focus .staff-grid-item__content {
  transform: scale3d(1, 1, 1);
}

#AjaxinateLoop:focus {
  outline: none;
}

.screenreader {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.product-filters-wrapper {
  border: 0;
  padding: 0;
}

.closeLocationModal {
  position: absolute;
  top: 5px;
  right: 5px;
  color: #fff;
  background-color: #000;
  font-size: 25px;
  width: 30px;
  height: 30px;
  line-height: 100%;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 15px;
  box-shadow: 0px 0px 5px #000;
}

.closeLocationModal:hover {
  color: #fff;
}

#email_signup.klaviyo_condensed_styling .klaviyo_field_group>label {
  display: block;
  color: #fff;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center;
  left: 26px;
  position: relative;
  padding-bottom: 9px;
  font-weight: 300;
  font-size: 16px;
}

#email_signup {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

#email_signup .klaviyo_messages {
  order: 3;
  flex: 0 1 100%;
}

#email_signup .klaviyo_form_actions {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: calc(1em + 1px);
}

.product-grid-item__sub-title {
  color: #6C6C6C !important;
}

#collections .compare-at .product-price-compare-strike, #upgrade-your-tailgate-with-biolite-firepit .compare-at .product-price-compare-strike, #meet-biolite-headlamp-330-holy-fit-this-is-good .compare-at .product-price-compare-strike, #biolite-meet-the-biolite-firepit .compare-at .product-price-compare-strike, #biolite-introducing-sunlight-solar-powered-lantern .compare-at .product-price-compare-strike, #new-biolite-solarhome-620-solar-powered-light-charging-amp-radio .compare-at .product-price-compare-strike, #biolite-shop-head-lamps-solar-lights-lanterns-amp-string-lights .compare-at .product-price-compare-strike, #biolite-shop-portable-solar-panels-amp-usb-battery-chargers .compare-at .product-price-compare-strike, #biolite-holiday-gift-guide .compare-at .product-price-compare-strike, #biolite-shop-portable-camp-stoves-grills-amp-fire-pits .compare-at .product-price-compare-strike, #product-features-and-specs .tabs > li:not(.active):not(:hover), .number-reviews-top, .star-container-top ~ a, .cart-limit-sub-note, .cart-shipping-note, #account [title="Forgot your password?"], #account .text-links, #create-account .text-links {
  color: #6e6e6e !important;
}

.footer-legal a {
  color: #767676;
}

#menu-main .hasDropdown button {
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 100%;
  background: transparent;
  border: none;
}

a.nav-featured-area-link:focus .feature-hover {
  opacity: 1;
}

span#ProductPrice:before {
  content: "Current Price: ";
  display: inline-block;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

span.product-price-compare-strike:before {
  content: "Previous Price: ";
  display: inline-block;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-label {
  position: relative;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.form-label .required-field {
  top: -3px;
}

input[required]:invalid {
  box-shadow: none;
}

.required-icon {
  color: #C24D00 !important;
  font-weight: 700;
  padding-left: 3px;
}

.skip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-size: .857143em;
  z-index: 999999;
}

@media (min-width: 600px) {
  .skip li {
    margin-left: 111px;
  }
}

.skip li {
  position: absolute;
  z-index: 1;
  margin: 0;
}

.skip a {
  position: absolute;
  left: -9999px;
  color: #ffffff;
  background-color: #008fa1;
}

.skip a:active, .skip a:focus {
  display: block;
  position: static;
  left: 0;
  padding: .25em 1em;
}

#sidebar {
  display: none;
}

#header {
  background: rgba(255, 255, 255, 1);
  border-bottom: 1px solid #f3f3f3;
}

.super-nav {
  background: #fff;
  border-bottom: 1px solid #f3f3f3;
}

#header .header-nav {
  color: #343434 !important;
}

.doorbuster-title {
  color: #cc4e20;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  display: block;
  font-size: 18px;
  line-height: 17px !important;
  padding: 0px 0 5px 5px;
}

.holiday-divider {
  width: 90px;
  padding: 10px 0 18px 0;
  display: block;
}

.doorbuster-wrapper {
  border: 1px solid #cc4e20;
  background-color: #f3f3f3;
  border-radius: 2px;
  margin: 23px 0 0 0;
  padding: 22px;
  height: auto;
  display: inline-block;
}

.holiday-mission-stats-each {
  margin: 0 0 10px 0;
  padding: 1px 17px 8px 10px;
}

.holiday-mission-stats-each:last-child {
  border-right: 0px;
}

.doorbuster-wrapper-sunlight {
  border: 1px solid #cc4e20;
  background-color: #f3f3f3;
  border-radius: 2px;
  margin: 0;
  padding: 22px;
  height: 100%;
  display: inline-block;
}

.doorbuster-detail {
  font-family: "reader-regular","HelveticaNeue","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 16px;
  padding: 5px 8px 0px 5px;
}

.holiday-mission-stats {
  margin: 45px 0 30px 0;
}

.doorbuster-img {
  width: 96%;
}

.doorbuster-img-sunlight {
  width: 95%;
}

.shop-impact-sticky {
  background-color: #C24D00;
  margin: 20px 0 0 0;
  padding: 0 0 11px 0;
}

.shop-impact-sticky-title {
  padding: 12px 30px 5px 30px;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
}

.give-back-icon {
  color: #fff;
  display: block;
  position: relative;
  font-size: 26px !important;
  padding: 24px 30px 0 30px;
}

.shop-impact-sticky-desc {
  padding: 3px 30px 1px;
  font-size: 12px;
  line-height: 15px;
  font-weight: 300;
  color: #fff;
  max-width: 255px;
}

.collections-sidebar-selection {
  padding: 20px 0 0 0;
}

.holiday-text {
  font-family: reader-regular, sans-serif !important;
  font-weight: 700 !important;
  font-style: normal !important;
}

.collection-section-title-gift-guide {
  font-family: reader-regular, sans-serif;
  font-size: 35px;
  line-height: 26px;
  padding: 15px 0 15px 0;
  text-align: center;
  display: block;
  position: relative;
  color: #2e2e2f;
  font-weight: 700;
  font-style: normal;
}

#biolite-holiday-gift-guide .billboard-tight-main {
  position: absolute;
  top: 108px;
  width: 100%;
  font-family: reader-regular, sans-serif;
  font-size: 67px;
  font-weight: 700;
  font-style: normal;
  text-align: center;
}

#biolite-holiday-gift-guide .billboard-tight-subhead {
  position: absolute;
  top: 165px;
  width: 1600px;
  left: 50%;
  margin-left: -800px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
}

#biolite-holiday-gift-guide .billboard-tight-cta {
  position: absolute;
  bottom: 41px;
  width: 100%;
  text-align: left;
  left: 8%;
}

#biolite-holiday-gift-guide .nav-horizontal--products .nav-horizontal__menu-wide {
  width: 100%;
  padding: 13px 0;
  text-align: center;
  max-height: 46px;
}

#stocking-stuffers:focus, #limited-editions:focus, #kid-picks:focus, #weekend-warriors:focus, #newlyweds:focus, #group-gifts:focus {
  outline: 0;
}

#biolite-holiday-gift-guide .nav-horizontal--products .nav-horizontal__title {
  width: 15%;
  text-align: left;
  padding-left: 0px;
  border-right: 0px solid #aeaeae;
  max-height: 46px;
}

#biolite-holiday-gift-guide .category-bouncy-arrow {
  color: #008fa1;
  font-size: 25px !important;
  padding: 5px 0 0 0;
  display: block;
  position: absolute;
  bottom: -28px;
  left: 0%;
  outline: none;
  border: none;
  opacity: 1;
  transition: opacity .3s ease;
  -webkit-transition: opacity .3s ease;
  -moz-transition: opacity .3s ease;
  -webkit-animation: bounce 2s 5s 2 ease-in-out normal;
  -moz-animation: bounce 2s 5s 2 ease-in-out normal;
  animation: bounce 2s 5s 2 ease-in-out normal;
}

.category-nav-wrap {
  border-right: 1px solid #bdbdbd;
}

.category-nav-wrap:last-child {
  border-right: 0px solid #000;
}

.category-nav-title-gift {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-style: normal;
  color: #008fa1;
  font-size: 15px;
  padding-bottom: 15px;
  line-height: 25px;
  transition: color 100ms ease-in;
  -webkit-transition: color 100ms ease-in;
  -moz-transition: color 100ms ease-in;
}

.category-nav-title-gift:hover, .category-nav-title-gift:focus {
  color: #028b96;
}

.holiday-type-nav {
  font-weight: 700 !important;
  text-transform: uppercase;
  padding: 4px 6px 2px 25px;
  font-family: reader-regular;
  border-left: 1px solid #008fa1;
}

.mission-nav {
  display: inline-block;
}

.holiday-type-nav:hover {
  opacity: 0.7;
}

.homepage-gift-guide-wrapper {
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/2020_GiftGuide_hero_r3.png?v=1605213423);
  background-repeat: no-repeat;
  background-position: 53% 36%;
  overflow: visible;
  height: 653px;
  background-size: 1024px;
  padding: 10px 0 0 0;
  margin: 25px 0 0 0;
}

.give-back-wrapper {
  margin: 15px 0 0 0;
}

.gift-guide-page {
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/GiftGuide_Page_Footer.jpg?1762496303850468293…) !important;
  height: 760px !important;
}

.homepage-gift-guide {
  padding: 0 60px 0 60px;
  margin: 40px auto 0 auto;
}

.homepage-category-wrapper {
  margin: 60px auto;
}

.holiday-home-wrapper {
  margin: 46px auto 0 auto;
}

.holiday-featured-products {
  margin: 100px auto 0px auto;
  padding: 0 0 100px 0;
}

.category-nav-title-stoves {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  color: #444444;
  font-size: 16px;
  border-bottom: 7px solid #cd3d32;
  padding-bottom: 15px;
  line-height: 18px;
  transition: color 100ms ease-in;
  -webkit-transition: color 100ms ease-in;
  -moz-transition: color 100ms ease-in;
}

.homeheader-footer {
  margin: 30px 0 0 0;
}

.gift-guide-icon-wrapper {
  transition: background-color 150ms ease-in;
  -webkit-transition: background-color 150ms ease-in;
  -moz-transition: background-color 150ms ease-in;
  padding: 20px 0px 30px 0;
  margin: 20px 0 0 0;
  background-color: rgba(243, 243, 243, 0.5);
}

.gift-guide-icon-wrapper:hover {
  background-color: rgba(255, 255, 255, 1);
}

.gift-guide-icon-home {
  position: relative;
  padding: 0;
  width: 79px;
  margin: 0 auto 0 auto;
  text-align: center;
}

.homepage-category-img {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0px 10px 0px 10px;
}

.headlamp-home {
  position: relative;
  bottom: -6px !important;
  left: -10px;
}

.homepage-category-padder {
  margin: 0px;
  border: 0px solid #fff;
  background-color: rgba(243, 243, 243, 0);
  -webkit-transition: all .2s ease-out 0.1s;
  -moz-transition: all .2s ease-out 0.1s;
  -o-transition: all .2s ease-out 0.1s;
  transition: all .2s ease-out 0.1s;
}

.homepage-category-padder:hover {
  background-color: rgba(255, 255, 255, 1);
}

.footer-wrapper {
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  overflow: hidden;
  padding: 25px 0 75px 0;
  background-color: #f3f3f3;
  position: relative;
}

.homeheader-cta {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 22px;
  line-height: 40px;
  padding: 30px 0 0 0;
  text-align: left;
  position: relative;
  color: #C24D05;
  font-weight: 600;
  font-style: normal;
}

.homeheader-title-holiday {
  font-size: 38px;
  line-height: 35px;
  margin-bottom: 10px;
  text-align: left;
  display: block;
  padding: 48px 0 0 0;
}

.homeheader-subtitle {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 21px;
  text-align: left;
  display: block;
  color: #74744F;
}

.alert-bar {
  position: relative;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  line-height: 40px;
  background-color: #008fa1;
  text-align: center;
  font-size: 14px;
  color: #1b1b1b;
  border-bottom: 1px solid rgba(255, 255, 255, 1);
}

.gift-guide-divider {
  clear: both;
  border-top: solid #8d8d8e;
  border-width: 1px 0 0;
  margin: 50px 0 0px 0;
  height: 0;
}

.gift-guide-divider img {
  width: 130px;
  position: relative;
  top: -90px;
  left: 5%;
  background-color: #f3f3f3;
}

.divider-right {
  right: 5% !important;
  float: right;
}

#biolite-holiday-gift-guide h2 {
  margin-top: 0;
  padding-top: 10px;
  text-align: center;
  line-height: 0px;
  display: block;
}

.shippingMsgTitle {
  font-weight: 700;
  font-size: 36px;
}

.shop-all {
  margin: 200px 0 0 0;
}

.doorbuster-strike-thru {
  display: inline-block;
  font-size: 17px;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #5D5D5D;
  padding: 0 0 0 8px;
  text-decoration: line-through;
}

.doorbuster-add-to-cart {
  display: inline-block;
}

@media only screen and (min-width: 1680px) {
  .homepage-gift-guide-wrapper {
  }

  .footer-wrapper {
    height: 100%;
  }

  .holiday-featured-products {
    margin: 200px auto 0px auto;
  }
}

@media only screen and (max-width: 1441px) {
  #biolite-outdoor-amp-off-grid-energy-free-shipping-75-us-amp-canada .product-grid-item__inner {
    height: 235px;
  }
}

@media only screen and (max-width: 1024px) {
  .homepage-gift-guide-wrapper {
    height: 600px;
  }

  .holiday-mission-stats-padder {
    height: 289px;
  }

  .gift-guide-icon-home {
    width: 60px;
  }

  .doorbuster-wrapper {
    margin: 13px 30px 0 30px;
  }

  .holiday-text {
    line-height: 34px;
  }

  #biolite-holiday-gift-guide .billboard-tight-main {
    top: 90px;
    line-height: 49px;
    font-size: 49px;
  }

  .category-page-nav {
    background-color: #fff !important;
  }

  #biolite-holiday-gift-guide .billboard-tight-subhead {
    top: 149px;
  }

  #biolite-holiday-gift-guide .nav-horizontal--products .nav-horizontal__menu-wide {
    margin: 0 0 50px 0;
  }

  .homepage-category {
    margin: 0 0 15px 0;
  }

  .holiday-divider {
    padding: 0px 0 10px 0;
  }

  .footer-wrapper {
    height: 950px;
  }

  .shop-impact-sticky-desc {
    padding: 5px 10px 0 10px;
    text-align: center;
    max-width: 100%;
  }

  .shop-impact-sticky-title {
    padding: 14px 0 0 0;
    font-weight: 700;
    display: block;
    text-align: center !important;
    margin: 0 auto;
  }

  .give-back-icon {
    display: none;
  }

  .shop-impact-sticky {
    padding: 0 0 3px 0;
  }

  .holiday-mission-stats-each {
    border-right: 0;
  }
}

@media only screen and (max-width: 480px) {
  .doorbuster-img {
    width: 90%;
  }

  .holiday-text-filled {
    border-radius: 0;
    margin: 0 0 15px 0;
    display: block;
    line-height: 39px;
  }

  .homepage-category {
    margin: 0 0 15px 0;
  }

  .holiday-home-wrapper {
    margin: 26px auto 0 auto;
  }

  .homepage-gift-guide {
    padding: 0 20px 0 20px;
    margin: 35px 0 0 0;
  }

  .holiday-divider {
    padding: 0 0 10px 0;
  }

  .gift-guide-icon-wrapper {
    padding: 2px;
    margin: 0 0 25px 0;
  }

  .holiday-featured-products {
    padding: 0 0 30px 0;
  }

  .footer-wrapper {
    padding: 25px 0 175px 0;
    height: 100%;
  }

  #collections .footer-wrapper {
    padding: 25px 0 125px 0;
    height: 368px;
  }

  .homepage-gift-guide-wrapper {
    background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/2020_GiftGuide_hero_r3.png?v=1605213423…);
    height: 536px;
    background-position: 78% 5%;
  }

  .holiday-mission-stats {
    margin: 25px 0 30px 0;
  }

  .homepage-category-caption {
    font-size: 14px;
    line-height: 24px;
  }

  .world-icon-holiday {
    font-size: 26px !important;
    top: 4px;
    padding: 10px;
  }

  .holiday-mission-stats-padder {
    width: 100%;
    height: 185px;
    background-size: cover;
    margin: 0 0 14px 0;
    padding: 0;
  }

  .holiday-mission-stats-each {
    border-right: none;
    margin: 0 0 10px 0;
    padding: 24px 20px 8px 10px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
  }

  .world-stats {
    font-size: 43px;
    line-height: 54px !important;
  }

  .world-stats-label {
    margin: 10px 0 9px 0;
  }

  .world-stats-large {
    font-size: 55px;
  }

  .million-lives-img {
    position: absolute;
    top: 0px;
    left: 49%;
    margin: auto;
    display: inline;
    width: 442px;
    opacity: 0.5;
    z-index: 0;
    top: 214px;
    right: -141px;
  }

  .world-stats-caption {
    padding-top: 0px;
    display: block;
    width: 70%;
  }

  .million-lives-stat {
    padding: 65px 0 8px 0;
    border-top: 1px solid #fff;
    margin-top: 50px;
  }`  .world-stats-label {
    margin: 2px 0 6px 0;
    display: block;
  }

  .million-lives-hero {
    padding: 7px;
    border-left: 0px solid #fff;
  }

  .mission-3 {
    background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/mission_3_mobile.jpg?14364…);
  }

  .mission-2 {
    background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/mission_2_mobile.jpg?14364…);
  }

  .mission-1 {
    background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/mission_1_mobile.jpg?14364…);
  }

  .gift-guide-icon-label {
    line-height: 14px;
    font-size: 11px;
  }

  #biolite-outdoor-amp-off-grid-energy-free-shipping-75-us-amp-canada .product-grid-item__inner {
    height: 162px;
  }

  #biolite-holiday-gift-guide .billboard-tight-main {
    position: absolute;
    top: 46px;
    font-size: 25px;
    line-height: 32px;
  }

  #biolite-holiday-gift-guide .billboard-tight-subhead {
    top: 85px;
    width: 400px;
    margin-left: -200px;
    font-size: 15px;
    line-height: 20px;
    padding: 0 40px 0 40px;
  }

  .collection-section-title-gift-guide {
    font-size: 30px;
  }

  #biolite-holiday-gift-guide .product-grid-item__inner {
    height: 154px !important;
  }

  #biolite-holiday-gift-guide .product-grid-item__thumb {
    background-size: 95%;
  }

  #biolite-holiday-gift-guide .product-grid-item__sub-title-category {
    display: none;
  }

  #biolite-holiday-gift-guide .product-grid-item__footer-category {
    height: 153px;
  }

  .collection-section-title-gift-guide {
    padding: 15px 0 6px 0;
  }

  .gift-guide-divider {
    padding: 30px 0 9px 0;
  }

  .collection-section-subtitle {
    padding: 5px 25px 12px 25px;
  }

  #biolite-holiday-gift-guide .compare-at .product-price-compare-strike {
    font-size: 12px;
    padding: 0;
  }

  #biolite-holiday-gift-guide .nav-horizontal--products .nav-horizontal__menu-wide {
    margin: 0 0 40px 0;
  }

  .shop-impact-sticky {
    display: none;
  }

  .collections-sidebar-selection {
    padding: 20px 0 1px 0;
  }

  .shop-all {
    margin: 64px 0 0 0;
  }

  .impact-msg {
    font-size: 35px;
  }

  .holiday-divider {
    width: 63px;
    margin: 25px 0 0 0;
    padding: 42px 0 18px 0;
  }

  .gift-guide-page {
    height: 604px !important;
  }
}

a.gift-guide-anchor {
  display: block;
  position: relative;
  top: -50px;
  visibility: hidden;
}

#biolite-holiday-gift-guide .footer-wrapper {
}

@media only screen and (max-width: 1100px) {
  #biolite-holiday-gift-guide .footer-wrapper {
  }
}

@media only screen and (max-width: 480px) {
  #biolite-holiday-gift-guide .footer-wrapper {
    height: 100%;
  }

  .holiday-text-filled {
    line-height: 19px;
  }
}

#better-with-friends-22-brands-one-code-all-climate-neutral {
  background-color: #f3f3f3;
}

.bwf-title {
  font-size: 31px;
  font-weight: 700;
  line-height: 31px;
  display: block;
  padding: 9px 0 0 0;
}

.bwf-title-wrap {
  margin: 10px 0 15px 0;
}

.bwf-subtitle {
    font-size: 13px;
    line-height: 17px;
    display: block;
}
.bwf-2019-nav {
  position: fixed;
  background-color: #fff;
  padding: 25px;
  margin: 25px 0 0 0;
  z-index: 200;
}

.card-layout {
  background-color: #fff;
  border-radius: 2px;
  height: 100%;
  margin: 10px;
  padding-bottom: 0px;
  -webkit-box-shadow: 1px 0px 19px -6px rgba(0,0,0,0.2);
  -moz-box-shadow: 1px 0px 19px -6px rgba(0,0,0,0.2);
  box-shadow: 1px 0px 17px -6px rgba(0,0,0,0.2);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  transition: all 0.1s ease;
}

.card-layout:hover {
  transform: scale(1.05);
}

.bwf-brands {
  padding-left: 30px;
  margin: 15px 0 0 0;
}

#better-with-friends .footer-wrapper {
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/Homepage_Footer_fc312e23-6a7f-481b-8e07-545e9efe8db3.jpg?1141611……);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  overflow: hidden;
  height: 820px;
  padding: 155px 0 0 0;
  background-color: #f3f3f3;
  position: relative;
}

#better-with-friends .billboard-tight-main {
  top: 61px;
  font-size: 57px;
}

.bwf-brands-link a {
  color: #cc4e20;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 75px;
  margin-top: 15px;
  text-decoration: underline;
}

.bwf-impact-block {
  background-color: #C24D00 !important;
  padding: 0 30px 0 30px;
}

.bwf-impact-icon {
  font-size: 38px !important;
  display: block;
  text-align: center;
  padding: 0 0 10px 0;
  color: #fff;
}

.bwf-impact-logos {
  left: 6.25% !important;
  position: relative;
}

.bwf-impact-logos img {
  padding: 10px;
  opacity: 1;
  -o-transition: opacity.1s ease-out, opacity .15s ease-in;
  -ms-transition: opacity .1s ease-out, opacity .15s ease-in;
  -moz-transition: opacity .1s ease-out, opacity .15s ease-in;
  -webkit-transition: opacity .1s ease-out, opacity .15s ease-in;
  transition: opacity .1s ease-out, opacity .15s ease-in;
}

.bwf-impact-logos img:hover {
  opacity: 0.5;
  padding: 10px;
}

.bwf-brands-image {
  margin: 0 auto;
  width: 100%;
  margin-bottom: 0px;
  margin-top: 0px;
  position: relative;
}

.bwf-brands-image-circle {
  margin: 0 auto;
  width: 40%;
  margin-bottom: 10px;
  margin-top: 0px;
  position: relative;
}

.bwf-brands-holding {
  border-radius: 4px;
  border-right: 0px solid #545458;
  border-left: 0px solid #545458;
  border-bottom: 0px solid #545458;
  background-color: rgba(255, 255, 255, 0.9);
  width: 80%;
  margin: 0 auto;
  position: relative;
  top: -12px;
  padding: 20px 0px 20px 0px;
  z-index: 1;
}

.bwf-brands-caption {
  padding-top: 5px;
  font-size: 13px;
  font-family: reader-regular;
  font-weight: 700;
  color: #c5c5c5;
  display: block;
}

.bwf-brands-icon {
  font-size: 17px;
  color: #5e5e61;
  padding-right: 6px;
  position: relative;
  top: 3px;
}

.bwf-brands-lead-in {
  background-color: #9193b3;
  display: inline-block;
  border-radius: 2px;
  text-transform: uppercase;
  font-size: 11px;
  position: relative;
  padding: 0px;
  margin-top: 25px;
}

.bwf-brands-lead-in .text {
  padding: 5px 16px 5px 16px;
  color: #fff;
  display: inline-block;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.one-third-height {
  height: 33.3333vh;
  position: relative;
}

.betterwithfriends-story-title {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  display: block;
  color: #1e1e1e;
  padding: 10px 30px 25px 30px;
}

.bwf-shop-button {
  margin: 0 0 30px 0;
  padding: 18px 34px 18px 34px;
}

.betterwithfriends-impact {
  border-top: 1px dashed #f3f3f3;
  padding: 20px;
  width: 80%;
  margin: 0px auto 10px auto;
}

.betterwithfriends-impact-title {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  color: #646464;
}

.betterwithfriends-impact-desc {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  font-style: italic;
  display: block;
  color: #646464;
}

.betterwithfriends-more-reading {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 19px;
  display: block;
  padding: 10px 30px 20px 30px;
}

.betterwithfriends-story-byline {
  font-family: reader-regular, sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  display: block;
  color: #fff;
  padding: 10px 0 15px 0;
  text-transform: uppercase;
}

#better-with-friends .homeheader-title {
  font-family: reader-regular, sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 34px;
  margin-bottom: 10px;
  text-align: center;
  display: block;
}

#better-with-friends .community-link a {
  color: #fff;
  font-family: reader-regular, sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-top: 15px;
  text-decoration: underline;
  text-transform: uppercase;
}

.bwf-brand-icon img {
  height: 95px;
  color: #fff;
  text-align: left !important;
  padding: 0;
  position: relative;
  top: -10px;
}

.bwf-icon img {
  width: 25px;
}

#better-with-friends .bwf-brands-link a:hover {
  text-decoration: none;
}

.betterwithfriends-story {
  height: 100% !important;
}

#better-with-friends .bwf-brands-holding {
  border-right: 0px;
  border-left: 0px;
  border-bottom: 0px;
}

#better-with-friends {
  background-color: #f3f3f3;
}

.bwf-promo-code {
    color: #fff;
    font-family: reader-regular, sans-serif;
    font-weight: 900;
    font-size: 18px;
    background-color: #008fa1;
    text-align: center;
    border-radius: 1px;
    padding: 10px 18px 10px 18px;
    margin: 10px 0 12px 0;
    letter-spacing: 1px;
    display: block;
    text-align: center;
}

.bwf-section-title {
  font-size: 19px;
  margin: 15px 0 0 0;
}

hr.cntitle {
  border: 1px solid #d4d4d4;
  width: 37px;
  position: relative;
  left: 0;
  margin: 13px 0 0 0;
}

#better-with-friends-17-brands-one-code-all-climate-neutral {
  background-color: #f3f3f3;
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/2019_BW_BG_1.jpg?v=1575394900…);
  background-size: cover;
  margin: 0px;
  background-repeat: no-repeat;
  background-position: 10% 55%;
  background-attachment: fixed;
}

.bwf-title {
  font-size: 31px;
  font-weight: 900 !important;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #008fa1;
  line-height: 31px;
  display: block;
  padding: 9px 0 0 0;
}

.bwf-title-wrap {
  margin: 10px 0 15px 0;
}

.bwf-subtitle {
  font-size: 14px;
  line-height: 18px;
  display: block;
}

#bwf-2019-nav {
  position: fixed;
  background-color: #fff;
  padding: 25px;
  margin: 25px 0 18px 0;
  z-index: 200;
  max-width: 400px;
  opacity: 1;
}

.card-layout {
  background-color: #fff;
  border-radius: 2px;
  height: 100%;
  margin: 10px;
  padding-bottom: 0px;
  -webkit-box-shadow: 1px 0px 19px -6px rgba(0,0,0,0.2);
  -moz-box-shadow: 1px 0px 19px -6px rgba(0,0,0,0.2);
  box-shadow: 1px 0px 17px -6px rgba(0,0,0,0.2);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  transition: all 0.1s ease;
}

.card-layout:hover {
  transform: scale(1.05);
}

.bwf-brands {
  padding: 0 0 90px 30px;
  margin: 15px 0 0 0;
}

#better-with-friends .footer-wrapper {
  background-image: url(https://cdn.shopify.com/s/files/1/0666/9741/files/Homepage_Footer_fc312e23-6a7f-481b-8e07-545e9efe8db3.jpg?1141611……);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  overflow: hidden;
  height: 820px;
  padding: 155px 0 0 0;
  background-color: #f3f3f3;
  position: relative;
}

#better-with-friends .billboard-tight-main {
  top: 61px;
  font-size: 57px;
}

.bwf-brands-link a {
  color: #cc4e20;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 75px;
  margin-top: 15px;
  text-decoration: underline;
}

.bwf-impact-block {
  background-color: #C24D00 !important;
  padding: 0 30px 0 30px;
}

.bwf-impact-icon {
  font-size: 38px !important;
  display: block;
  text-align: center;
  padding: 0 0 10px 0;
  color: #fff;
}

.bwf-impact-logos {
  left: 6.25% !important;
  position: relative;
}

.bwf-impact-logos img {
  padding: 10px;
  opacity: 1;
  -o-transition: opacity.1s ease-out, opacity .15s ease-in;
  -ms-transition: opacity .1s ease-out, opacity .15s ease-in;
  -moz-transition: opacity .1s ease-out, opacity .15s ease-in;
  -webkit-transition: opacity .1s ease-out, opacity .15s ease-in;
  transition: opacity .1s ease-out, opacity .15s ease-in;
}

.bwf-impact-logos img:hover {
  opacity: 0.5;
  padding: 10px;
}

.bwf-brands-image {
  margin: 0 auto;
  width: 100%;
  margin-bottom: 0px;
  margin-top: 0px;
  position: relative;
}

.bwf-brands-image-circle {
  margin: 0 auto;
  width: 40%;
  margin-bottom: 10px;
  margin-top: 0px;
  position: relative;
}

.bwf-brands-holding {
  border-radius: 4px;
  border-right: 0px solid #545458;
  border-left: 0px solid #545458;
  border-bottom: 0px solid #545458;
  background-color: rgba(255, 255, 255, 0.9);
  width: 80%;
  margin: 0 auto;
  position: relative;
  top: -12px;
  padding: 20px 0px 20px 0px;
  z-index: 1;
}

.bwf-brands-caption {
  padding-top: 5px;
  font-size: 13px;
  font-family: reader-regular;
  font-weight: 700;
  color: #c5c5c5;
  display: block;
}

.bwf-brands-icon {
  font-size: 17px;
  color: #5e5e61;
  padding-right: 6px;
  position: relative;
  top: 3px;
}

.bwf-brands-lead-in {
  background-color: #9193b3;
  display: inline-block;
  border-radius: 2px;
  text-transform: uppercase;
  font-size: 11px;
  position: relative;
  padding: 0px;
  margin-top: 25px;
}

.bwf-brands-lead-in .text {
  padding: 5px 16px 5px 16px;
  color: #fff;
  display: inline-block;
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.one-third-height {
  height: 33.3333vh;
  position: relative;
}

.betterwithfriends-story-title {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  display: block;
  color: #1e1e1e;
  padding: 10px 30px 25px 30px;
}

.bwf-shop-button {
  margin: 0 0 30px 0;
  padding: 18px 34px 18px 34px;
}

.betterwithfriends-impact {
  border-top: 1px dashed #f3f3f3;
  padding: 20px;
  width: 80%;
  margin: 0px auto 10px auto;
}

.betterwithfriends-impact-title {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  color: #646464;
}

.betterwithfriends-impact-desc {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  font-style: italic;
  display: block;
  color: #646464;
}

.betterwithfriends-more-reading {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 19px;
  display: block;
  padding: 10px 30px 20px 30px;
}

.betterwithfriends-story-byline {
  font-family: reader-regular, sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  display: block;
  color: #fff;
  padding: 10px 0 15px 0;
  text-transform: uppercase;
}

#better-with-friends .homeheader-title {
  font-family: reader-regular, sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 34px;
  margin-bottom: 10px;
  text-align: center;
  display: block;
}

#better-with-friends .community-link a {
  color: #fff;
  font-family: reader-regular, sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-top: 15px;
  text-decoration: underline;
  text-transform: uppercase;
}

.bwf-brand-icon img {
  height: 95px;
  color: #fff;
  text-align: left !important;
  padding: 0;
  position: relative;
  top: -10px;
}

.bwf-icon img {
  width: 25px;
}

#better-with-friends .bwf-brands-link a:hover {
  text-decoration: none;
}

.betterwithfriends-story {
  height: 100% !important;
}

#better-with-friends .bwf-brands-holding {
  border-right: 0px;
  border-left: 0px;
  border-bottom: 0px;
}

#better-with-friends {
  background-color: #f3f3f3;
}

.bwf-promo-code {
  color: #fff;
  font-family: reader-regular, sans-serif;
  font-weight: 900;
  font-size: 18px;
  background-color: #008fa1;
  text-align: center;
  border-radius: 1px;
  padding: 10px 18px 10px 18px;
  margin: 5px 0 20px 0;
  letter-spacing: 1px;
  display: block;
  text-align: center;
}

.bwf-section-title {
  font-size: 17px;
  margin: 15px 0 0 0;
  font-family: reader-regular, sans-serif;
  font-weight: 900;
}

.bwf-section-wrap {
    margin: 30px 0 30px 0;
}

hr.cntitle {
  border: 1px solid #d4d4d4;
  width: 37px;
  position: relative;
  left: 0;
  margin: 13px 0 0 0;
}

#better-with-friends-17-brands-one-code-all-climate-neutral .footer-wrapper {
  height: 648px;
  background-size: cover;
}

.impact-msg-bwf {
  font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 900;
  font-size: 29px;
  line-height: 30px;
  color: #008fa1;
  padding: 30px 0 0 0;
  z-index: 20;
}

.bwf-disclaimer {
  text-align: center;
  background-color: #fff;
  padding: 30px 15px 18px 15px;
  border-radius: 1px;
  width: 75%;
  margin: 0 auto;
}

.bwf-title-mobile {
  display: none;
}

@media only screen and (min-width: 1800px) {
  #better-with-friends-17-brands-one-code-all-climate-neutral .footer-wrapper {
    height: 1048px;
  }
}

@media only screen and (max-width: 1024px) {
  #bwf-2019-nav {
    position: relative;
    max-width: 100%;
  }

  .bwf-title, .cntitle {
    display: none;
  }

  .bwf-title-mobile {
    font-size: 31px;
    font-weight: 900 !important;
    font-family: reader-regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #008fa1;
    line-height: 31px;
    display: block;
    padding: 9px 0 0 0;
    text-align: center;
  }

  .bwf-subtitle {
    text-align: center;
  }

  .bwf-promo-code {
    margin: 20px 0 20px 0;
  }

  .bwf-section-wrap {
    text-align: center;
  }
}

@media only screen and (max-width: 480px) {
  #bwf-2019-nav {
    position: relative;
  }

  .bwf-brands {
    padding: 0 10px 20px 10px;
  }

  .bwf-deal-bar {
    font-size: 12px;
  }

  #better-with-friends-17-brands-one-code-all-climate-neutral .give-back-wrapper {
    margin: 17px 0 0 0;
  }
}

.lazyload, .lazyloading {
  opacity: 0;
}

.lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}