/**
 * Swiper 4.5.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 13, 2019
 */

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical>.swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
          transition-property: -webkit-transform;
          transition-property: transform;
          transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.swiper-container-multirow>.swiper-wrapper {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.swiper-container-free-mode>.swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
          transition-property: -webkit-transform;
          transition-property: transform;
          transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
          transition-property: height, -webkit-transform;
          transition-property: transform, height;
          transition-property: transform, height, -webkit-transform;
}

.swiper-container-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}

.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal>.swiper-wrapper {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical>.swiper-wrapper {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: .3s opacity;
          transition: .3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(.33);
      -ms-transform: scale(.33);
          transform: scale(.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(.66);
      -ms-transform: scale(.66);
          transform: scale(.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(.33);
      -ms-transform: scale(.33);
          transform: scale(.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(.66);
      -ms-transform: scale(.66);
          transform: scale(.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(.33);
      -ms-transform: scale(.33);
          transform: scale(.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: .2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-container-vertical>.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: .2s top, .2s -webkit-transform;
          transition: .2s top, .2s -webkit-transform;
          -webkit-transition: .2s transform, .2s top;
          transition: .2s transform, .2s top;
          -webkit-transition: .2s transform, .2s top, .2s -webkit-transform;
          transition: .2s transform, .2s top, .2s -webkit-transform;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: .2s left, .2s -webkit-transform;
          transition: .2s left, .2s -webkit-transform;
          -webkit-transition: .2s transform, .2s left;
          transition: .2s transform, .2s left;
          -webkit-transition: .2s transform, .2s left, .2s -webkit-transform;
          transition: .2s transform, .2s left, .2s -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: .2s right, .2s -webkit-transform;
          transition: .2s right, .2s -webkit-transform;
          -webkit-transition: .2s transform, .2s right;
          transition: .2s transform, .2s right;
          -webkit-transition: .2s transform, .2s right, .2s -webkit-transform;
          transition: .2s transform, .2s right, .2s -webkit-transform;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, .25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
           transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
}

.swiper-container-horizontal>.swiper-pagination-progressbar,
.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical>.swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, .25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, .25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, .1);
}

.swiper-container-horizontal>.swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical>.swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, .5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.swiper-zoom-container>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
      -ms-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
          animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
          transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
      -ms-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next+.swiper-slide,
.swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .6;
  -webkit-filter: blur(50px);
          filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  -ms-perspective: 1200px;
}

@font-face {
  font-family: 'lg';
  src: url("../fonts/lg.ttf?22t19m") format("truetype"), url("../fonts/lg.woff?22t19m") format("woff"), url("../fonts/lg.svg?22t19m#lg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

.lg-icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'lg' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lg-actions .lg-next,
.lg-actions .lg-prev {
  background-color: rgba(0, 0, 0, .45);
  border-radius: 2px;
  color: #999;
  cursor: pointer;
  display: block;
  font-size: 22px;
  margin-top: -10px;
  padding: 8px 10px 9px;
  position: absolute;
  top: 50%;
  z-index: 1080;
  outline: none;
  border: none;
  background-color: transparent;
}

.lg-actions .lg-next.disabled,
.lg-actions .lg-prev.disabled {
  pointer-events: none;
  opacity: .5;
}

.lg-actions .lg-next:hover,
.lg-actions .lg-prev:hover {
  color: #fff;
}

.lg-actions .lg-next {
  right: 20px;
}

.lg-actions .lg-next:before {
  content: "\e095";
}

.lg-actions .lg-prev {
  left: 20px;
}

.lg-actions .lg-prev:after {
  content: "\e094";
}

@-webkit-keyframes lg-right-end {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}

@keyframes lg-right-end {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}

@-webkit-keyframes lg-left-end {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}

@keyframes lg-left-end {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}

.lg-outer.lg-right-end .lg-object {
  -webkit-animation: lg-right-end .3s;
          animation: lg-right-end .3s;
  position: relative;
}

.lg-outer.lg-left-end .lg-object {
  -webkit-animation: lg-left-end .3s;
          animation: lg-left-end .3s;
  position: relative;
}

.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, .45);
}

.lg-toolbar .lg-icon {
  color: #999;
  cursor: pointer;
  float: right;
  font-size: 24px;
  height: 47px;
  line-height: 27px;
  padding: 10px 0;
  text-align: center;
  width: 50px;
  text-decoration: none !important;
  outline: medium none;
  background: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: color .2s linear;
          transition: color .2s linear;
}

.lg-toolbar .lg-icon:hover {
  color: #fff;
}

.lg-toolbar .lg-close:after {
  content: "\e070";
}

.lg-toolbar .lg-download:after {
  content: "\e0f2";
}

.lg-sub-html {
  background-color: rgba(0, 0, 0, .45);
  bottom: 0;
  color: #eee;
  font-size: 16px;
  left: 0;
  padding: 10px 40px;
  position: fixed;
  right: 0;
  text-align: center;
  z-index: 1080;
}

.lg-sub-html h4 {
  margin: 0;
  font-size: 13px;
  font-weight: bold;
}

.lg-sub-html p {
  font-size: 12px;
  margin: 5px 0 0;
}

#lg-counter {
  color: #999;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  vertical-align: middle;
}

.lg-toolbar,
.lg-prev,
.lg-next {
  opacity: 1;
  -webkit-transition: -webkit-transform .35s cubic-bezier(0, 0, .25, 1) 0s, opacity .35s cubic-bezier(0, 0, .25, 1) 0s, color .2s linear;
          -webkit-transition: opacity .35s cubic-bezier(0, 0, .25, 1) 0s, color .2s linear, -webkit-transform .35s cubic-bezier(0, 0, .25, 1) 0s;
          transition: opacity .35s cubic-bezier(0, 0, .25, 1) 0s, color .2s linear, -webkit-transform .35s cubic-bezier(0, 0, .25, 1) 0s;
          transition: transform .35s cubic-bezier(0, 0, .25, 1) 0s, opacity .35s cubic-bezier(0, 0, .25, 1) 0s, color .2s linear;
          transition: transform .35s cubic-bezier(0, 0, .25, 1) 0s, opacity .35s cubic-bezier(0, 0, .25, 1) 0s, color .2s linear, -webkit-transform .35s cubic-bezier(0, 0, .25, 1) 0s;
}

.lg-hide-items .lg-prev {
  opacity: 0;
  -webkit-transform: translate3d(-10px, 0, 0);
          transform: translate3d(-10px, 0, 0);
}

.lg-hide-items .lg-next {
  opacity: 0;
  -webkit-transform: translate3d(10px, 0, 0);
          transform: translate3d(10px, 0, 0);
}

.lg-hide-items .lg-toolbar {
  opacity: 0;
  -webkit-transform: translate3d(0, -10px, 0);
          transform: translate3d(0, -10px, 0);
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
  -webkit-transform: scale3d(.5, .5, .5);
          transform: scale3d(.5, .5, .5);
  opacity: 0;
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, .25, 1) 0s, opacity 250ms cubic-bezier(0, 0, .25, 1) !important;
          -webkit-transition: opacity 250ms cubic-bezier(0, 0, .25, 1), -webkit-transform 250ms cubic-bezier(0, 0, .25, 1) 0s !important;
          transition: opacity 250ms cubic-bezier(0, 0, .25, 1), -webkit-transform 250ms cubic-bezier(0, 0, .25, 1) 0s !important;
          transition: transform 250ms cubic-bezier(0, 0, .25, 1) 0s, opacity 250ms cubic-bezier(0, 0, .25, 1) !important;
          transition: transform 250ms cubic-bezier(0, 0, .25, 1) 0s, opacity 250ms cubic-bezier(0, 0, .25, 1), -webkit-transform 250ms cubic-bezier(0, 0, .25, 1) 0s !important;
  -webkit-transform-origin: 50% 50%;
           transform-origin: 50% 50%;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
  opacity: 1;
}

.lg-outer .lg-thumb-outer {
  background-color: #0d0a0a;
  bottom: 0;
  position: absolute;
  width: 100%;
  z-index: 1080;
  max-height: 350px;
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
  -webkit-transition: -webkit-transform .25s cubic-bezier(0, 0, .25, 1) 0s;
          transition: -webkit-transform .25s cubic-bezier(0, 0, .25, 1) 0s;
          transition: transform .25s cubic-bezier(0, 0, .25, 1) 0s;
          transition: transform .25s cubic-bezier(0, 0, .25, 1) 0s, -webkit-transform .25s cubic-bezier(0, 0, .25, 1) 0s;
}

.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
  -webkit-transition-duration: 0s !important;
          transition-duration: 0s !important;
}

.lg-outer.lg-thumb-open .lg-thumb-outer {
  -webkit-transform: translate3d(0, 0%, 0);
          transform: translate3d(0, 0%, 0);
}

.lg-outer .lg-thumb {
  padding: 10px 0;
  height: 100%;
  margin-bottom: -5px;
}

.lg-outer .lg-thumb-item {
  border-radius: 5px;
  cursor: pointer;
  float: left;
  overflow: hidden;
  height: 100%;
  border: 2px solid #fff;
  border-radius: 4px;
  margin-bottom: 5px;
}

@media (min-width: 1025px) {
  .lg-outer .lg-thumb-item {
    -webkit-transition: border-color .25s ease;
            transition: border-color .25s ease;
  }
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
  border-color: #a90707;
}

.lg-outer .lg-thumb-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.lg-outer.lg-has-thumb .lg-item {
  padding-bottom: 120px;
}

.lg-outer.lg-can-toggle .lg-item {
  padding-bottom: 0;
}

.lg-outer.lg-pull-caption-up .lg-sub-html {
  -webkit-transition: bottom .25s ease;
          transition: bottom .25s ease;
}

.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
  bottom: 100px;
}

.lg-outer .lg-toggle-thumb {
  background-color: #0d0a0a;
  border-radius: 2px 2px 0 0;
  color: #999;
  cursor: pointer;
  font-size: 24px;
  height: 39px;
  line-height: 27px;
  padding: 5px 0;
  position: absolute;
  right: 20px;
  text-align: center;
  top: -39px;
  width: 50px;
  outline: medium none;
  border: none;
}

.lg-outer .lg-toggle-thumb:after {
  content: "\e1ff";
}

.lg-outer .lg-toggle-thumb:hover {
  color: #fff;
}

.lg-outer .lg-video-cont {
  display: inline-block;
  vertical-align: middle;
  max-width: 1140px;
  max-height: 100%;
  width: 100%;
  padding: 0 5px;
}

.lg-outer .lg-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
}

.lg-outer .lg-video .lg-object {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.lg-outer .lg-video .lg-video-play {
  width: 84px;
  height: 59px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -42px;
  margin-top: -30px;
  z-index: 1080;
  cursor: pointer;
}

.lg-outer .lg-has-vimeo .lg-video-play {
  background: url("../img/vimeo-play.png") no-repeat scroll 0 0 transparent;
}

.lg-outer .lg-has-vimeo:hover .lg-video-play {
  background: url("../img/vimeo-play.png") no-repeat scroll 0 -58px transparent;
}

.lg-outer .lg-has-html5 .lg-video-play {
  background: transparent url("../img/video-play.png") no-repeat scroll 0 0;
  height: 64px;
  margin-left: -32px;
  margin-top: -32px;
  width: 64px;
  opacity: .8;
}

.lg-outer .lg-has-html5:hover .lg-video-play {
  opacity: 1;
}

.lg-outer .lg-has-youtube .lg-video-play {
  background: url("../img/youtube-play.png") no-repeat scroll 0 0 transparent;
}

.lg-outer .lg-has-youtube:hover .lg-video-play {
  background: url("../img/youtube-play.png") no-repeat scroll 0 -60px transparent;
}

.lg-outer .lg-video-object {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}

.lg-outer .lg-has-video .lg-video-object {
  visibility: hidden;
}

.lg-outer .lg-has-video.lg-video-playing .lg-object,
.lg-outer .lg-has-video.lg-video-playing .lg-video-play {
  display: none;
}

.lg-outer .lg-has-video.lg-video-playing .lg-video-object {
  visibility: visible;
}

.lg-progress-bar {
  background-color: #333;
  height: 5px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1083;
  opacity: 0;
  -webkit-transition: opacity .08s ease 0s;
          transition: opacity .08s ease 0s;
}

.lg-progress-bar .lg-progress {
  background-color: #a90707;
  height: 5px;
  width: 0;
}

.lg-progress-bar.lg-start .lg-progress {
  width: 100%;
}

.lg-show-autoplay .lg-progress-bar {
  opacity: 1;
}

.lg-autoplay-button:after {
  content: "\e01d";
}

.lg-show-autoplay .lg-autoplay-button:after {
  content: "\e01a";
}

.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap,
.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
}

.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transition: -webkit-transform .3s cubic-bezier(0, 0, .25, 1) 0s;
          transition: -webkit-transform .3s cubic-bezier(0, 0, .25, 1) 0s;
          transition: transform .3s cubic-bezier(0, 0, .25, 1) 0s;
          transition: transform .3s cubic-bezier(0, 0, .25, 1) 0s, -webkit-transform .3s cubic-bezier(0, 0, .25, 1) 0s;
}

.lg-outer.lg-use-left-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transition: left .3s cubic-bezier(0, 0, .25, 1) 0s, top .3s cubic-bezier(0, 0, .25, 1) 0s;
          transition: left .3s cubic-bezier(0, 0, .25, 1) 0s, top .3s cubic-bezier(0, 0, .25, 1) 0s;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
  -webkit-transition: -webkit-transform .3s cubic-bezier(0, 0, .25, 1) 0s, opacity .15s !important;
          -webkit-transition: opacity .15s, -webkit-transform .3s cubic-bezier(0, 0, .25, 1) 0s !important;
          transition: opacity .15s, -webkit-transform .3s cubic-bezier(0, 0, .25, 1) 0s !important;
          transition: transform .3s cubic-bezier(0, 0, .25, 1) 0s, opacity .15s !important;
          transition: transform .3s cubic-bezier(0, 0, .25, 1) 0s, opacity .15s, -webkit-transform .3s cubic-bezier(0, 0, .25, 1) 0s !important;
  -webkit-transform-origin: 0 0;
           transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

#lg-zoom-in:after {
  content: "\e311";
}

#lg-actual-size {
  font-size: 20px;
}

#lg-actual-size:after {
  content: "\e033";
}

#lg-zoom-out {
  opacity: .5;
  pointer-events: none;
}

#lg-zoom-out:after {
  content: "\e312";
}

.lg-zoomed #lg-zoom-out {
  opacity: 1;
  pointer-events: auto;
}

.lg-outer .lg-pager-outer {
  bottom: 60px;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  z-index: 1080;
  height: 10px;
}

.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
  overflow: visible;
}

.lg-outer .lg-pager-cont {
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  position: relative;
  vertical-align: top;
  margin: 0 5px;
}

.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
  -webkit-box-shadow: 0 0 0 2px white inset;
          box-shadow: 0 0 0 2px white inset;
}

.lg-outer .lg-pager-thumb-cont {
  background-color: #fff;
  color: #fff;
  bottom: 100%;
  height: 83px;
  left: 0;
  margin-bottom: 20px;
  margin-left: -60px;
  opacity: 0;
  padding: 5px;
  position: absolute;
  width: 120px;
  border-radius: 3px;
  -webkit-transition: opacity .15s ease 0s, -webkit-transform .15s ease 0s;
          transition: opacity .15s ease 0s, -webkit-transform .15s ease 0s;
          transition: opacity .15s ease 0s, transform .15s ease 0s;
          transition: opacity .15s ease 0s, transform .15s ease 0s, -webkit-transform .15s ease 0s;
  -webkit-transform: translate3d(0, 5px, 0);
          transform: translate3d(0, 5px, 0);
}

.lg-outer .lg-pager-thumb-cont img {
  width: 100%;
  height: 100%;
}

.lg-outer .lg-pager {
  background-color: rgba(255, 255, 255, .5);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 8px rgba(255, 255, 255, .7) inset;
          box-shadow: 0 0 0 8px rgba(255, 255, 255, .7) inset;
  display: block;
  height: 12px;
  -webkit-transition: box-shadow .3s ease 0s;
          -webkit-transition: -webkit-box-shadow .3s ease 0s;
          transition: -webkit-box-shadow .3s ease 0s;
          transition: box-shadow .3s ease 0s;
          transition: box-shadow .3s ease 0s, -webkit-box-shadow .3s ease 0s;
  width: 12px;
}

.lg-outer .lg-pager:hover,
.lg-outer .lg-pager:focus {
  -webkit-box-shadow: 0 0 0 8px white inset;
          box-shadow: 0 0 0 8px white inset;
}

.lg-outer .lg-caret {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px dashed;
  bottom: -10px;
  display: inline-block;
  height: 0;
  left: 50%;
  margin-left: -5px;
  position: absolute;
  vertical-align: middle;
  width: 0;
}

.lg-fullscreen:after {
  content: "\e20c";
}

.lg-fullscreen-on .lg-fullscreen:after {
  content: "\e20d";
}

.lg-outer #lg-dropdown-overlay {
  background-color: rgba(0, 0, 0, .25);
  bottom: 0;
  cursor: default;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1081;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0s linear .18s, opacity .18s linear 0s;
          transition: visibility 0s linear .18s, opacity .18s linear 0s;
}

.lg-outer.lg-dropdown-active .lg-dropdown,
.lg-outer.lg-dropdown-active #lg-dropdown-overlay {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transform: translate3d(0, 0px, 0);
    transform: translate3d(0, 0px, 0);
  opacity: 1;
  visibility: visible;
}

.lg-outer.lg-dropdown-active #lg-share {
  color: #fff;
}

.lg-outer .lg-dropdown {
  background-color: #fff;
  border-radius: 2px;
  font-size: 14px;
  list-style-type: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: 50px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  -webkit-transition: -webkit-transform .18s linear 0s, visibility 0s linear .5s, opacity .18s linear 0s;
          -webkit-transition: visibility 0s linear .5s, opacity .18s linear 0s, -webkit-transform .18s linear 0s;
          transition: visibility 0s linear .5s, opacity .18s linear 0s, -webkit-transform .18s linear 0s;
          transition: transform .18s linear 0s, visibility 0s linear .5s, opacity .18s linear 0s;
          transition: transform .18s linear 0s, visibility 0s linear .5s, opacity .18s linear 0s, -webkit-transform .18s linear 0s;
}

.lg-outer .lg-dropdown:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  border: 8px solid transparent;
  border-bottom-color: #fff;
  right: 16px;
  top: -16px;
}

.lg-outer .lg-dropdown > li:last-child {
  margin-bottom: 0px;
}

.lg-outer .lg-dropdown > li:hover a,
.lg-outer .lg-dropdown > li:hover .lg-icon {
  color: #333;
}

.lg-outer .lg-dropdown a {
  color: #333;
  display: block;
  white-space: pre;
  padding: 4px 12px;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
}

.lg-outer .lg-dropdown a:hover {
  background-color: rgba(0, 0, 0, .07);
}

.lg-outer .lg-dropdown .lg-dropdown-text {
  display: inline-block;
  line-height: 1;
  margin-top: -3px;
  vertical-align: middle;
}

.lg-outer .lg-dropdown .lg-icon {
  color: #333;
  display: inline-block;
  float: none;
  font-size: 20px;
  height: auto;
  line-height: 1;
  margin-right: 8px;
  padding: 0;
  vertical-align: middle;
  width: auto;
}

.lg-outer #lg-share {
  position: relative;
}

.lg-outer #lg-share:after {
  content: "\e80d";
}

.lg-outer #lg-share-facebook .lg-icon {
  color: #3b5998;
}

.lg-outer #lg-share-facebook .lg-icon:after {
  content: "\e904";
}

.lg-outer #lg-share-twitter .lg-icon {
  color: #00aced;
}

.lg-outer #lg-share-twitter .lg-icon:after {
  content: "\e907";
}

.lg-outer #lg-share-googleplus .lg-icon {
  color: #dd4b39;
}

.lg-outer #lg-share-googleplus .lg-icon:after {
  content: "\e905";
}

.lg-outer #lg-share-pinterest .lg-icon {
  color: #cb2027;
}

.lg-outer #lg-share-pinterest .lg-icon:after {
  content: "\e906";
}

.lg-outer .lg-img-rotate {
  position: absolute;
  padding: 0 5px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-transition: -webkit-transform .3s cubic-bezier(.32, 0, .67, 0) 0s;
          transition: -webkit-transform .3s cubic-bezier(.32, 0, .67, 0) 0s;
          transition: transform .3s cubic-bezier(.32, 0, .67, 0) 0s;
          transition: transform .3s cubic-bezier(.32, 0, .67, 0) 0s, -webkit-transform .3s cubic-bezier(.32, 0, .67, 0) 0s;
}

.lg-rotate-left:after {
  content: "\e900";
}

.lg-rotate-right:after {
  content: "\e901";
}

.lg-icon.lg-flip-hor,
.lg-icon.lg-flip-ver {
  font-size: 26px;
}

.lg-flip-hor:after {
  content: "\e902";
}

.lg-flip-ver:after {
  content: "\e903";
}

.lg-group {
  *zoom: 1;
}

.lg-group:before,
.lg-group:after {
  display: table;
  content: "";
  line-height: 0;
}

.lg-group:after {
  clear: both;
}

.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  opacity: 0;
  outline: none;
  -webkit-transition: opacity .15s ease 0s;
          transition: opacity .15s ease 0s;
}

.lg-outer * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.lg-outer.lg-visible {
  opacity: 1;
}

.lg-outer.lg-css3 .lg-item.lg-prev-slide,
.lg-outer.lg-css3 .lg-item.lg-next-slide,
.lg-outer.lg-css3 .lg-item.lg-current {
  -webkit-transition-duration: inherit !important;
          transition-duration: inherit !important;
  -webkit-transition-timing-function: inherit !important;
          transition-timing-function: inherit !important;
}

.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
          transition-duration: 0s !important;
  opacity: 1;
}

.lg-outer.lg-grab img.lg-object {
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.lg-outer.lg-grabbing img.lg-object {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

.lg-outer .lg {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  max-height: 100%;
}

.lg-outer .lg-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
}

.lg-outer .lg-item {
  background: url("../img/loading.gif") no-repeat scroll center center transparent;
  display: none !important;
}

.lg-outer.lg-css3 .lg-prev-slide,
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide {
  display: inline-block !important;
}

.lg-outer.lg-css .lg-current {
  display: inline-block !important;
}

.lg-outer .lg-item,
.lg-outer .lg-img-wrap {
  display: inline-block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
}

.lg-outer .lg-item:before,
.lg-outer .lg-img-wrap:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}

.lg-outer .lg-img-wrap {
  position: absolute;
  padding: 0 5px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.lg-outer .lg-item.lg-complete {
  background-image: none;
}

.lg-outer .lg-item.lg-current {
  z-index: 1060;
}

.lg-outer .lg-image {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  height: auto !important;
}

.lg-outer.lg-show-after-load .lg-item .lg-object,
.lg-outer.lg-show-after-load .lg-item .lg-video-play {
  opacity: 0;
  -webkit-transition: opacity .15s ease 0s;
          transition: opacity .15s ease 0s;
}

.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object,
.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
  opacity: 1;
}

.lg-outer .lg-empty-html {
  display: none;
}

.lg-outer.lg-hide-download #lg-download {
  display: none;
}

.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: #000;
  opacity: 0;
  -webkit-transition: opacity .15s ease 0s;
          transition: opacity .15s ease 0s;
}

.lg-backdrop.in {
  opacity: 1;
}

.lg-css3.lg-no-trans .lg-prev-slide,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-current {
  -webkit-transition: none 0s ease 0s !important;
          transition: none 0s ease 0s !important;
}

.lg-css3.lg-use-css3 .lg-item {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.lg-css3.lg-use-left .lg-item {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.lg-css3.lg-fade .lg-item {
  opacity: 0;
}

.lg-css3.lg-fade .lg-item.lg-current {
  opacity: 1;
}

.lg-css3.lg-fade .lg-item.lg-prev-slide,
.lg-css3.lg-fade .lg-item.lg-next-slide,
.lg-css3.lg-fade .lg-item.lg-current {
  -webkit-transition: opacity .1s ease 0s;
          transition: opacity .1s ease 0s;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, .25, 1) 0s, opacity .1s ease 0s;
          -webkit-transition: opacity .1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, .25, 1) 0s;
          transition: opacity .1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, .25, 1) 0s;
          transition: transform 1s cubic-bezier(0, 0, .25, 1) 0s, opacity .1s ease 0s;
          transition: transform 1s cubic-bezier(0, 0, .25, 1) 0s, opacity .1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, .25, 1) 0s;
}

.lg-css3.lg-slide.lg-use-left .lg-item {
  opacity: 0;
  position: absolute;
  left: 0;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
  left: -100%;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
  left: 100%;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  left: 0;
  opacity: 1;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide,
.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  -webkit-transition: left 1s cubic-bezier(0, 0, .25, 1) 0s, opacity .1s ease 0s;
          transition: left 1s cubic-bezier(0, 0, .25, 1) 0s, opacity .1s ease 0s;
}

@charset "UTF-8";

/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */

html {
  line-height: 1.15; /* 1 */
      -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers (opinionated).
 */

body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: .67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */

figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */

figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */

a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */

b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */

dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */

mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */

img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */

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

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */

button,
html [type="button"],
/* 1 */
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: .35em .75em .625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

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

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */

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

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */

details,
/* 1 */
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */

template {
  display: none;
}

/* Hidden
   ========================================================================== */

/**
 * Add the correct display in IE 10-.
 */

[hidden] {
  display: none;
}

/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */

/**
 * 1. Prevent padding and border from affecting element width
 * https://goo.gl/pYtbK7
 * 2. Change the default font family in all browsers (opinionated)
 */

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  font-family: sans-serif; /* 2 */
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/**
 * Removes the default spacing and border for appropriate elements.
 */

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
p,
pre {
  margin: 0;
}

button {
  background: transparent;
  padding: 0;
}

/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 */

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

fieldset {
  margin: 0;
  padding: 0;
}

ol,
ul {
  margin: 0;
}

/**
 * Tailwind custom reset styles
 */

/**
 * Allow adding a border to an element by just adding a border-width.
 *
 * By default, the way the browser specifies that an element should have no
 * border is by setting it's border-style to `none` in the user-agent
 * stylesheet.
 *
 * In order to easily add borders to elements by just setting the `border-width`
 * property, we change the default border-style for all elements to `solid`, and
 * use border-width to hide them instead. This way our `border` utilities only
 * need to set the `border-width` property instead of the entire `border`
 * shorthand, making our border utilities much more straightforward to compose.
 *
 * https://github.com/tailwindcss/tailwindcss/pull/116
 */

*,
*::before,
*::after {
  border-width: 0;
  border-style: solid;
  border-color: #222;
}

/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */

img {
  border-style: solid;
}

/**
 * Temporary reset for a change introduced in Chrome 62 but now reverted.
 *
 * We can remove this when the reversion is in a normal Chrome release.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  border-radius: 0;
}

textarea {
  resize: vertical;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: inherit;
  opacity: .5;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: inherit;
  opacity: .5;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: inherit;
  opacity: .5;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: inherit;
  opacity: .5;
}

input::placeholder,
textarea::placeholder {
  color: inherit;
  opacity: .5;
}

button,
[role=button] {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

.col-xs {
  -webkit-box-flex: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

@media (min-width: 768px) {
  .col-xs {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.col-1 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 8.33333333%;
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

@media (min-width: 768px) {
  .col-1 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.col-2 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 16.66666667%;
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

@media (min-width: 768px) {
  .col-2 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.col-3 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

@media (min-width: 768px) {
  .col-3 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.col-4 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

@media (min-width: 768px) {
  .col-4 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.col-5 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 41.66666667%;
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

@media (min-width: 768px) {
  .col-5 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.col-6 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

@media (min-width: 768px) {
  .col-6 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.col-7 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 58.33333333%;
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

@media (min-width: 768px) {
  .col-7 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.col-8 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 66.66666667%;
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

@media (min-width: 768px) {
  .col-8 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.col-9 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

@media (min-width: 768px) {
  .col-9 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.col-10 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 83.33333333%;
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

@media (min-width: 768px) {
  .col-10 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.col-11 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 91.66666667%;
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

@media (min-width: 768px) {
  .col-11 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.col-12 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .col-12 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.col-offset-0 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 0;
}

@media (min-width: 768px) {
  .col-offset-0 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.col-offset-1 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 8.33333333%;
}

@media (min-width: 768px) {
  .col-offset-1 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.col-offset-2 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 16.66666667%;
}

@media (min-width: 768px) {
  .col-offset-2 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.col-offset-3 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 25%;
}

@media (min-width: 768px) {
  .col-offset-3 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.col-offset-4 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 33.33333333%;
}

@media (min-width: 768px) {
  .col-offset-4 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.col-offset-5 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 41.66666667%;
}

@media (min-width: 768px) {
  .col-offset-5 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.col-offset-6 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 50%;
}

@media (min-width: 768px) {
  .col-offset-6 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.col-offset-7 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 58.33333333%;
}

@media (min-width: 768px) {
  .col-offset-7 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.col-offset-8 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 66.66666667%;
}

@media (min-width: 768px) {
  .col-offset-8 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.col-offset-9 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 75%;
}

@media (min-width: 768px) {
  .col-offset-9 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.col-offset-10 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 83.33333333%;
}

@media (min-width: 768px) {
  .col-offset-10 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.col-offset-11 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 91.66666667%;
}

@media (min-width: 768px) {
  .col-offset-11 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.start-xs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.middle-xs {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bottom-xs {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

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

.first-xs {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.last-xs {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
}

.col-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
}

.grid-row {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
      flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

@media (min-width: 768px) {
  .grid-row {
    margin-right: -1rem;
    margin-left: -1rem;
  }
}

.grid-row .grid-row {
  margin-right: -0.25rem;
  margin-left: -0.25rem;
}

@media (min-width: 768px) {
  .grid-row .grid-row {
    margin-right: -0.5rem;
    margin-left: -0.5rem;
  }
}

.h1 {
  font-family: "3form Graphik", Helvetica, sans-serif;
  color: #222;
  font-size: 6rem;
  line-height: calc(100% + 8px);
  letter-spacing: -4px;
}

.h2 {
  font-family: "3form Graphik", Helvetica, sans-serif;
  color: #222;
  font-size: 5rem;
  line-height: calc(100% + 8px);
  letter-spacing: -3px;
}

.h3-large {
  font-family: "3form Graphik", Helvetica, sans-serif;
  color: #222;
  font-size: 4rem;
  line-height: calc(100% + 8px);
  letter-spacing: -2.66px;
}

.h3 {
  font-family: "3form Graphik", Helvetica, sans-serif;
  color: #222;
  font-size: 3.5rem;
  line-height: calc(100% + 8px);
  letter-spacing: -2px;
}

.h4 {
  font-family: "3form Graphik", Helvetica, sans-serif;
  color: #222;
  font-size: 3rem;
  line-height: calc(100% + 8px);
  letter-spacing: -1.5px;
}

.h5 {
  font-family: "3form Graphik", Helvetica, sans-serif;
  color: #222;
  font-size: 1.5rem;
  line-height: calc(100% + 8px);
  font-weight: 300;
  letter-spacing: -1px;
}

.h6 {
  font-family: "3form Graphik", Helvetica, sans-serif;
  color: #222;
  line-height: calc(100% + 8px);
  font-weight: 300;
}

.header-d0 {
  font-size: 2.5rem;
  line-height: calc(100% + 8px);
  letter-spacing: -1.5px;
}

.header-d1 {
  font-size: 2rem;
  line-height: calc(100% + 8px);
  letter-spacing: -1.25px;
}

.header-e1 {
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: -1px;
}

body:not(.user-is-tabbing) main:focus,
body:not(.user-is-tabbing) button:focus,
body:not(.user-is-tabbing) input:focus,
body:not(.user-is-tabbing) select:focus,
body:not(.user-is-tabbing) textarea:focus {
  outline: none;
}

body,
html {
  overflow-x: hidden;
  color: #222;
  scroll-behavior: smooth;
}

@media (min-width: 1024px) {
  body,
  html {
    overflow-x: visible;
  }
}

/* Lazyload - Prevents img without src to appear */

img:not([src]) {
  visibility: hidden;
}

/* MS EDGE fix */

img[data-src],
img[data-srcset] {
  display: block;
  min-height: 1px;
}

@font-face {
  font-family: "3form Graphik";
  src: url("/static/fonts/3formGraphik-Medium.woff2") format("woff2"), url("/static/fonts/3formGraphik-Medium.woff") format("woff"), url("/static/fonts/3formGraphik-Medium.ttf") format("ttf");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "3form Graphik";
  src: url("/static/fonts/3formGraphik-Regular.woff2") format("woff2"), url("/static/fonts/3formGraphik-Regular.woff") format("woff"), url("/static/fonts/3formGraphik-Regular.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "3form Graphik";
  src: url("/static/fonts/3formGraphik-Light.woff2") format("woff2"), url("/static/fonts/3formGraphik-Light.woff") format("woff"), url("/static/fonts/3formGraphik-Light.ttf") format("ttf");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/*
Button

Buttons are expected to use the `button` element.

Markup:
<a href="#" class="button {{modifier_class}}"><span class="button__content">Link Button <svg class="icon icon-cta" aria-hidden="true" focusable="false"><use xlink:href="#icon-cta"></use></svg></span></a>
<button class="button {{modifier_class}}"><span class="button__content">Button Element <svg class="icon icon-cta" aria-hidden="true" focusable="false"><use xlink:href="#icon-cta"></use></svg></span></button>
<button class="button {{modifier_class}}"disabled><span class="button__content">Button Disabled <svg class="icon icon-cta" aria-hidden="true" focusable="false"><use xlink:href="#icon-cta"></use></svg></span></button>
<button class="button button--clear"><span class="button__content"><svg class="icon icon-cta" aria-hidden="true" focusable="false"><use xlink:href="#icon-cta"></use></svg> Button Clear</span></button>

.button--layer - layer hover state
.button--inverse - inverse colors (used for panel tabs)
.button--inverse.button--shadow - with shadow (used for show more)
.button--icon-start - icon at start of button

Styleguide: Common.button
*/

.button {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  background-color: #222;
  color: #fff;
  text-align: left;
  letter-spacing: -0.05em;
  line-height: 1.5;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.button .icon {
  margin-left: 3rem;
  float: right;
}

.button--panel .button .icon,
.button--dropdown .button .icon,
.button--show-all .button .icon {
  margin-left: 4rem;
}

.button--filters.button .icon {
  margin-left: 0;
  margin-right: 1rem;
  float: none;
}

.filters__container .button {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.button__content {
  display: block;
  width: 100%;
}

.button--properties {
  margin-bottom: 2px;
}

.button__tooltip {
  border-radius: 9999px;
  font-weight: 500;
  font-size: .75rem;
  border-width: 2px;
  border-color: #222;
  line-height: 1.1;
  width: 1rem;
  height: 1rem;
  -webkit-transition: border-color .2s ease-in-out;
  transition: border-color .2s ease-in-out;
}

.button__tooltip:active,
.button__tooltip:hover {
  border-color: #b2b2b2;
}

.button--panel,
.button--show-all,
.button--filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 2px 0 0 #eee;
          box-shadow: 0 2px 0 0 #eee;
  -webkit-transition: -webkit-box-shadow .125s ease-out;
  transition: -webkit-box-shadow .125s ease-out;
  transition: box-shadow .125s ease-out;
  transition: box-shadow .125s ease-out, -webkit-box-shadow .125s ease-out;
}

.button--panel:hover,
.button--show-all:hover,
.button--filters:hover {
  -webkit-box-shadow: 0px 8px 0 0 #eee;
          box-shadow: 0px 8px 0 0 #eee;
  z-index: 300;
}

.button--panel .button__content,
.button--show-all .button__content,
.button--filters .button__content {
  pointer-events: none;
}

.button--panel:not(.link-cta).button--filters:hover {
  -webkit-box-shadow: 0px 8px 0 0 #999;
          box-shadow: 0px 8px 0 0 #999;
}

.button--panel:not(.link-cta).button--filters.modal__close {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.button--panel:not(.link-cta).button--filters.modal__close .icon {
  -webkit-transition: -webkit-transform .4s ease-in-out;
  transition: -webkit-transform .4s ease-in-out;
  transition: transform .4s ease-in-out;
  transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
  will-change: transform;
}

.button--panel:not(.link-cta).button--filters.modal__close:hover .icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.button--smd {
  font-size: 1.25rem;
  line-height: 24px;
}

.button--show-all {
  min-width: 200px;
}

@media (max-width: 480px) {
  .button--show-all {
    width: 90%;
  }
}

.button--dropdown {
  float: right;
}

.button--dropdown {
  width: 100%;
  -webkit-box-shadow: 0 2px 0 0 #eee;
          box-shadow: 0 2px 0 0 #eee;
  -webkit-transition: -webkit-box-shadow .125s ease-out;
  transition: -webkit-box-shadow .125s ease-out;
  transition: box-shadow .125s ease-out;
  transition: box-shadow .125s ease-out, -webkit-box-shadow .125s ease-out;
}

.button--dropdown:hover {
  -webkit-box-shadow: 0px 8px 0 0 #eee;
          box-shadow: 0px 8px 0 0 #eee;
}

.is-open .button--dropdown:hover {
  -webkit-box-shadow: 0px 0px 0px 0px #fff;
          box-shadow: 0px 0px 0px 0px #fff;
}

.button--dropdown:disabled:hover {
  -webkit-box-shadow: 0 2px 0 0 #eee;
          box-shadow: 0 2px 0 0 #eee;
}

.is-open .button--dropdown {
  -webkit-box-shadow: 0px 0px 0px 0px #fff;
          box-shadow: 0px 0px 0px 0px #fff;
}

.button--filters {
  float: left;
  background-color: #eee;
  color: #222;
  height: 72px;
}

@media (min-width: 768px) {
  .button--filters {
    min-width: 175px;
  }
}

.modal__header .button--filters {
  padding-left: 1rem;
  padding-right: 1rem;
}

.panel__row .button--filters {
  border-style: none;
}

.button--filters-clear {
  padding: 2px 0 2px 8px;
}

@media (min-width: 1200px) {
  .button--filters-clear {
    padding-left: 1rem;
  }
}

.button:disabled {
  background-color: #b2b2b2;
  cursor: default;
}

.button--layer {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.button--layer:before,
.button--layer:after {
  background-color: #222;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  pointer-events: none;
  content: "";
}

.button--layer:before {
  z-index: 0;
  background-color: #ccc;
}

.button--layer:after {
  will-change: transform;
  -webkit-transition: -webkit-transform .125s ease-out;
  transition: -webkit-transform .125s ease-out;
  transition: transform .125s ease-out;
  transition: transform .125s ease-out, -webkit-transform .125s ease-out;
}

.button--layer .button__content {
  position: relative;
  z-index: 20;
  display: block;
  pointer-events: none;
  will-change: transform;
  -webkit-transition: -webkit-transform .125s ease-out;
  transition: -webkit-transform .125s ease-out;
  transition: transform .125s ease-out;
  transition: transform .125s ease-out, -webkit-transform .125s ease-out;
}

.button--layer:hover:after,
.button--layer:hover .button__content,
.button--layer:focus:after,
.button--layer:focus .button__content {
  -webkit-transform: translateX(8px) translateY(-8px);
          transform: translateX(8px) translateY(-8px);
}

.button--layer:disabled:after {
  background-color: #b2b2b2;
}

.button--layer:disabled:hover:after,
.button--layer:disabled:hover .button__content,
.button--layer:disabled:focus:after,
.button--layer:disabled:focus .button__content {
  -webkit-transform: none;
          transform: none;
}

.button--clear {
  color: #222;
  background-color: transparent;
  /*TODO - hover states?*/
}

.button--clear .button__icon {
  margin-left: 0;
  margin-right: 1rem;
}

.button--inverse {
  background-color: #fff;
  color: #222;
  /*TODO - hover states?*/
}

.button--shadow {
  -webkit-box-shadow: 0 2px 0 0 #eee;
          box-shadow: 0 2px 0 0 #eee;
}

.button--shadow:hover,
.button--shadow:focus {
  -webkit-box-shadow: 8px 8px 0 0 #eee;
          box-shadow: 8px 8px 0 0 #eee;
}

.button--shadow:disabled:hover,
.button--shadow:disabled:focus {
  -webkit-box-shadow: 0 2px 0 0 #eee;
          box-shadow: 0 2px 0 0 #eee;
}

.button--icon-start .icon {
  margin-left: 0;
  margin-right: 1rem;
  float: left;
}

.button--icon-start:hover {
  color: #626262;
}

.button--load-more .icon {
  -webkit-transition: -webkit-transform .4s ease-in-out;
  transition: -webkit-transform .4s ease-in-out;
  transition: transform .4s ease-in-out;
  transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
  will-change: transform;
}

.button--load-more:hover .icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.cta .button .icon {
  margin-left: 1rem;
}

.cta__show-all {
  position: relative;
  top: 2rem;
}

.cta__show-all:before {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #eee;
  content: "";
  top: 50%;
  height: 2px;
}

/*
Download Image

Download image links.

Markup:
<a href="" download class="link-download-image {{modifier_class}}"><svg class="icon icon-download icon--start" aria-hidden="true" focusable="false"><use xlink:href="#icon-download"></use></svg> Download image</a>

.link-download-image--black - layer hover state

Styleguide: Common.download-image
*/

.link-download-image,
.link-find-rep {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  color: #b2b2b2;
  letter-spacing: 0;
  text-decoration: none;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
}

.link-download-image .icon,
.link-find-rep .icon {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.link-download-image:hover,
.link-find-rep:hover {
  opacity: .8;
}

.link-download-image--black {
  color: #222;
}

.link-download-image.font-normal .a,
.link-download-image.font-normal .in-page-nav__item {
  font-weight: 500;
}

.link-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  color: #222;
  letter-spacing: 0;
  text-decoration: none;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
}

.link-cta .icon {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.link-cta:hover {
  opacity: .8;
}

.link-skip-main {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  top: auto;
  left: -999px;
  z-index: -999;
}

.link-skip-main:focus,
.link-skip-main:active {
  color: #222;
  background-color: #fff;
  width: auto;
  height: auto;
  overflow: auto;
  margin: 1rem;
  padding: 1rem;
  text-align: center;
  border-width: 1px;
  border-color: #ddd;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .1);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .1);
  top: auto;
  left: auto;
  z-index: 9999;
}

/*
CTA Link

CTA links.

Markup:
<a href="" class="link-cta {{modifier_class}}"><svg class="icon icon-cta icon--start align-bottom" aria-hidden="true" focusable="false"><use xlink:href="#icon-cta"></use></svg> Discover Naturals</a>

Styleguide: Common.cta-link
*/

a.skip-main:focus,
a.skip-main:active {
  color: #fff;
  background-color: #000;
  left: auto;
  top: auto;
  width: 30%;
  height: auto;
  overflow: auto;
  margin: 10px 35%;
  padding: 5px;
  border-radius: 15px;
  border: 4px solid yellow;
  text-align: center;
  font-size: 1.2em;
  z-index: 999;
}

/*
Grid

We're using a basic flexbox grid. Always wrap grid components with the .grid-wrapper class to stay within the max width.
Used as a tailwind custom utility located within /tailwind-custom-plugins.
View documentation here: http://flexboxgrid.com/

Markup:
<div class="grid-wrapper">
  <div class="grid-row">
    <div class="mb-3 col-12 sm:col-8 md:col-6 lg:col-4">
        <div class="bg-brand body p-2">Responsive</div>
    </div>
  </div>
  <div class="grid-row">
      <div class="mb-3 col-12">
          <div class="bg-brand pb-6"></div>
      </div>
  </div>
  <div class="grid-row">
      <div class="mb-3 col-1">
          <div class="bg-brand pb-6"></div>
      </div>
      <div class="mb-3 col-11">
          <div class="bg-brand pb-6"></div>
      </div>
  </div>
  <div class="grid-row">
      <div class="mb-3 col-2">
          <div class="bg-brand pb-6"></div>
      </div>
      <div class="mb-3 col-10">
          <div class="bg-brand pb-6"></div>
      </div>
  </div>
  <div class="grid-row">
      <div class="mb-3 col-3">
          <div class="bg-brand pb-6"></div>
      </div>
      <div class="mb-3 col-9">
          <div class="bg-brand pb-6"></div>
      </div>
  </div>
  <div class="grid-row">
      <div class="mb-3 col-4">
          <div class="bg-brand pb-6"></div>
      </div>
      <div class="mb-3 col-8">
          <div class="bg-brand pb-6"></div>
      </div>
  </div>
  <div class="grid-row">
      <div class="mb-3 col-5">
          <div class="bg-brand pb-6"></div>
      </div>
      <div class="mb-3 col-7">
          <div class="bg-brand pb-6"></div>
      </div>
  </div>
  <div class="grid-row">
      <div class="mb-3 col-6">
          <div class="bg-brand pb-6"></div>
      </div>
      <div class="mb-3 col-6">
          <div class="bg-brand pb-6"></div>
      </div>
  </div>
</div>

Styleguide: Common.grid
*/

.grid-wrapper {
  margin: 0 auto;
  max-width: 1368px;
  padding: 0 2rem;
}

.grid-wrapper {
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .grid-wrapper {
    padding: 0 2rem;
  }
}

.col-12 {
  width: 100%;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media (min-width: 768px) {
  .order-1 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

/*
Headers

Header styles.
Used as a tailwind custom component located within /tailwind-custom-plugins including size, line height. and weights.
These styles can be overwritten with a tailwind utility.

Markup:
<h1 class="h1">Header 1</h1>
<h2 class="h2">Header 2</h2>
<h3 class="h3">Header 3</h3>
<h4 class="h4">Header 4</h4>
<h5 class="h5">Header 5</h5>
<h6 class="h6 font-medium">Header 6</h6>

Styleguide: Common.headers
*/

/*
Typography

Various typography styles.

Markup:
<p class="label mb-4">Label copy</p>
<p class="label label--small mb-4">Label small</p>
<p class="label label--line mb-4">Label copy with accent</p>
<p class="label label--line-long mb-4">Label copy with accent</p>
<p class="body mb-4">Typical body copy blocks.</p>
<p class="p mb-4">Default paragraph style (smaller than body).</p>
<p class="sr-only">This text is for screen readers</p>
<ol class="ol p mb-4">
  <li>list item</li>
  <li>list item</li>
  <li>list item</li>
</ol>
<a href="#" class="a">Default inline link</a><br>
<a href="#" class="text-black"><svg class="icon icon-cta"><use xlink:href="#icon-cta"></use></svg><span class="a">Default inline link with icon</span></a><br>
<a href="#" class="a--underline">Link with underline</a>

Styleguide: Common.typography
*/

body > * {
  font-family: "3form Graphik", Helvetica, sans-serif;
}

.sr-only {
  overflow: hidden;
  position: absolute;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  width: 1px;
  word-wrap: normal !important;
}

.p {
  font-size: 1rem;
  font-family: "3form Graphik", Helvetica, sans-serif;
  font-weight: 300;
  color: #222;
  line-height: calc(100% + 8px);
}

@media (min-width: 481px) and (max-width: 1024px) {
  .content-card__content .p {
    line-height: 1.5;
  }
}

.p b {
  font-weight: 500;
}

.body {
  font-size: 1rem;
  font-family: "3form Graphik", Helvetica, sans-serif;
  font-weight: 300;
  color: #222;
  line-height: 1.45;
  letter-spacing: -0.1px;
}

@media (min-width: 1024px) {
  .body {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
  }
}

.body a,
.body a:active,
.body a:visited {
  color: #222;
  font-weight: 500;
}

.label {
  font-size: .625rem;
  font-family: "3form Graphik", Helvetica, sans-serif;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
  color: #222;
  letter-spacing: 4.8px;
}

@media (min-width: 768px) {
  .label {
    font-size: .75rem;
  }
}

.label--small {
  font-size: .625rem;
  letter-spacing: 3.33px;
  line-height: 24px;
}

.label--loose {
  line-height: 2;
  letter-spacing: 4px;
}

.label--line {
  font-size: .625rem;
  padding-left: 2rem;
  position: relative;
  letter-spacing: 3.33px;
  line-height: 24px;
}

.label--line:before {
  position: absolute;
  background-color: #222;
  left: 0;
  content: "";
  width: 1rem;
  top: calc(50% - 1px);
  height: 1px;
}

.text-white.label--line:before {
  background-color: #fff;
}

.label--line__hero {
  font-size: .875rem;
  font-weight: 400;
}

.label--line-long {
  font-size: .625rem;
  padding-left: 3rem;
  position: relative;
  letter-spacing: 3.33px;
  line-height: 22px;
}

.label--line-long:before {
  position: absolute;
  background-color: #222;
  left: 0;
  content: "";
  width: 2rem;
  top: calc(50% - 1px);
  height: 1px;
}

.label--inverse {
  color: #fff;
}

.label--inverse::before {
  background-color: #fff;
}

.ol {
  padding-left: .25rem;
  list-style: decimal inside;
}

.ol li {
  padding-left: .5rem;
}

.a,
.in-page-nav__item {
  position: relative;
  font-weight: 500;
  text-decoration: none;
  color: inherit;
}

.a-link:hover .a:after,
.a-link:hover .in-page-nav__item:after,
.a-link:focus .a:after,
.a-link:focus .in-page-nav__item:after,
.link-cta:hover .a:after,
.link-cta:hover .in-page-nav__item:after,
.link-cta:focus .a:after,
.link-cta:focus .in-page-nav__item:after,
.a:hover:after,
.in-page-nav__item:hover:after,
.a:focus:after,
.in-page-nav__item:focus:after,
.a.is-active:after,
.is-active.in-page-nav__item:after {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

#modal-contact-rep .a:hover:after,
#modal-contact-rep .in-page-nav__item:hover:after,
#modal-contact-rep .a:focus:after,
#modal-contact-rep .in-page-nav__item:focus:after,
#modal-find-rep .a:hover:after,
#modal-find-rep .in-page-nav__item:hover:after,
#modal-find-rep .a:focus:after,
#modal-find-rep .in-page-nav__item:focus:after,
#modal-request-sample .a:hover:after,
#modal-request-sample .in-page-nav__item:hover:after,
#modal-request-sample .a:focus:after,
#modal-request-sample .in-page-nav__item:focus:after {
  -webkit-transform: scaleX(0) !important;
          transform: scaleX(0) !important;
  -webkit-transform-origin: right center !important;
          transform-origin: right center !important;
}

.a:after,
.in-page-nav__item:after {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  content: "";
  top: calc(100% + 8px);
  height: 1px;
  will-change: transform;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transition: -webkit-transform .25s ease-in;
  transition: -webkit-transform .25s ease-in;
  transition: transform .25s ease-in;
  transition: transform .25s ease-in, -webkit-transform .25s ease-in;
  background-color: currentColor;
}

.swatch-thumb__list .a:after,
.swatch-thumb__list .in-page-nav__item:after,
.filters-column .a:after,
.filters-column .in-page-nav__item:after,
.link-download-image .a:after,
.link-download-image .in-page-nav__item:after,
.contact-form .a:after,
.contact-form .in-page-nav__item:after,
#modal-contact-rep .a:after,
#modal-contact-rep .in-page-nav__item:after,
#modal-find-rep .a:after,
#modal-find-rep .in-page-nav__item:after,
#modal-request-sample .a:after,
#modal-request-sample .in-page-nav__item:after {
  top: 100%;
}

#modal-find-rep .panel__group--form .a:after,
#modal-find-rep .panel__group--form .in-page-nav__item:after,
#modal-contact-rep .panel__group--form .a:after,
#modal-contact-rep .panel__group--form .in-page-nav__item:after,
#modal-request-sample .panel__group--form .a:after,
#modal-request-sample .panel__group--form .in-page-nav__item:after {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.a--letter-spacing-sm {
  letter-spacing: -0.5px;
}

.text-grey .a:after,
.text-grey .in-page-nav__item:after {
  background-color: #ccc;
}

.a--underline {
  position: relative;
  font-weight: 500;
  font-size: 1rem;
  color: #222;
  text-decoration: none;
  letter-spacing: -0.29px;
}

.a--underline:hover:before,
.a--underline:focus:before {
  width: 0;
  top: 100%;
}

@media (min-width: 768px) {
  .a--underline:hover:before,
  .a--underline:focus:before {
    top: calc(100% + 8px);
  }
}

.a--underline:before {
  background-color: #fff;
  width: 100%;
  right: 0;
  top: calc(100% + 1px);
  -webkit-transition: width .25s ease-in;
  transition: width .25s ease-in;
  z-index: 1;
}

.a--underline:after {
  background-color: #222;
  width: 100%;
  left: 0;
  top: 100%;
}

@media (min-width: 768px) {
  .a--underline:after {
    top: calc(100% + 8px);
  }
}

.a--underline:before,
.a--underline:after {
  display: block;
  position: absolute;
  content: "";
  height: 1px;
}

.a--small::after,
.in-page-nav__item::after {
  height: 1px;
  top: 100%;
}

.a--inverse::after,
.in-page-nav__item--inverse::after {
  background-color: #fff;
}

.a--inverse-grey {
  color: #b2b2b2;
}

.a--inverse-grey:after {
  background-color: #b2b2b2;
}

.a.is-disabled,
.is-disabled.in-page-nav__item {
  color: #b2b2b2;
  pointer-events: none;
}

.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/*
Icons

Various icon styles, with and without inline text. Default colour is black. Sizes are either 32x32 or 24x24 by default (see specific classes). Only copy the &lt;svg&gt;&lt;/svg&gt; the &lt;span&gt;is just label for styleguide. For accessibility you may want add &lt;svg aria-hidden="true" focusable="false"&gt; to the svg tag. (see buttons.scss for example). Any icon update you need to update KSS template (/static_html/kss-template/index.hbs) and Ruby Partial (/app/views/partials/_svg_sprite.html.erb)

Markup:
<svg class="icon icon-arrow-pagination"><use xlink:href="#icon-arrow-pagination"></use></svg> <span class="name">icon-arrow-pagination</span>
<svg class="icon icon-arrow-pagination w-8 h-8 text-brand"><use xlink:href="#icon-arrow-pagination"></use></svg> <span class="name">icon-arrow-pagination</span>
<svg class="icon icon-dropdown-arrow-circle"><use xlink:href="#icon-dropdown-arrow-circle"></use></svg> <span class="name">icon-dropdown-arrow-circle</span>
<svg class="icon icon-dropdown-arrow"><use xlink:href="#icon-dropdown-arrow"></use></svg> <span class="name">icon-dropdown-arrow</span>
<svg class="icon icon-dropdown-arrow1"><use xlink:href="#icon-dropdown-arrow1"></use></svg> <span class="name">icon-dropdown-arrow1</span>
<svg class="icon icon-arrow-draw"><use xlink:href="#icon-arrow-draw"></use></svg> <span class="name">icon-arrow-draw</span>
<svg class="icon icon-arrow-draw-close"><use xlink:href="#icon-arrow-draw-close"></use></svg> <span class="name">icon-arrow-draw-close</span>
<svg class="icon icon-close-circle"><use xlink:href="#icon-close-circle"></use></svg> <span class="name">icon-close-circle</span>
<svg class="icon icon-close"><use xlink:href="#icon-close"></use></svg> <span class="name">icon-close</span>
<svg class="icon icon-cta"><use xlink:href="#icon-cta"></use></svg> <span class="name">icon-cta</span>
<svg class="icon icon-cta-large"><use xlink:href="#icon-cta"></use></svg> <span class="name">icon-cta-large</span>
<svg class="icon icon-download"><use xlink:href="#icon-download"></use></svg> <span class="name">icon-download</span>
<svg class="icon icon-email"><use xlink:href="#icon-email"></use></svg> <span class="name">icon-email</span>
<svg class="icon icon-error"><use xlink:href="#icon-error"></use></svg> <span class="name">icon-error</span>
<svg class="icon icon-facebook"><use xlink:href="#icon-facebook"></use></svg> <span class="name">icon-facebook</span>
<svg class="icon icon-info"><use xlink:href="#icon-info"></use></svg> <span class="name">icon-info</span>
<svg class="icon icon-instagram"><use xlink:href="#icon-instagram"></use></svg> <span class="name">icon-instagram</span>
<svg class="icon icon-log-in"><use xlink:href="#icon-log-in"></use></svg> <span class="name">icon-log-in</span>
<svg class="icon icon-menu"><use xlink:href="#icon-menu"></use></svg> <span class="name">icon-menu</span>
<svg class="icon icon-minus"><use xlink:href="#icon-minus"></use></svg> <span class="name">icon-minus</span>
<svg class="icon icon-minus-circle"><use xlink:href="#icon-minus-circle"></use></svg> <span class="name">icon-minus-circle</span>
<svg class="icon icon-pinterest"><use xlink:href="#icon-pinterest"></use></svg> <span class="name">icon-pinterest</span>
<svg class="icon icon-plus-circle"><use xlink:href="#icon-plus-circle"></use></svg> <span class="name">icon-plus-circle</span>
<svg class="icon icon-plus"><use xlink:href="#icon-plus"></use></svg> <span class="name">icon-plus</span>
<svg class="icon icon-refresh"><use xlink:href="#icon-refresh"></use></svg> <span class="name">icon-refresh</span>
<svg class="icon icon-search"><use xlink:href="#icon-search"></use></svg> <span class="name">icon-search</span>
<svg class="icon icon-telephone"><use xlink:href="#icon-telephone"></use></svg> <span class="name">icon-telephone</span>
<svg class="icon icon-twitter"><use xlink:href="#icon-twitter"></use></svg> <span class="name">icon-twitter</span>
<svg class="icon icon-youtube"><use xlink:href="#icon-youtube"></use></svg> <span class="name">icon-youtube</span>
<svg class="icon icon-pin"><use xlink:href="#icon-pin"></use></svg> <span class="name">icon-pin</span>
<svg class="icon icon-exploded"><use xlink:href="#icon-exploded"></use></svg> <span class="name">icon-exploded</span>
<svg class="icon icon-grid"><use xlink:href="#icon-grid"></use></svg> <span class="name">icon-grid</span>
<svg class="icon icon-success"><use xlink:href="#icon-success"></use></svg> <span class="name">icon-success</span>
<svg class="icon icon-rep-finder"><use xlink:href="#icon-rep-finder"></use></svg> <span class="name">icon-rep-finder</span>
<svg class="icon icon-external-link"><use xlink:href="#icon-external-link"></use></svg> <span class="name">icon-external-link</span>

Styleguide: Common.icons
*/

.icon {
  display: inline-block;
  fill: currentColor;
  stroke: currentColor;
  width: 2rem;
  height: 2rem;
  vertical-align: middle;
  pointer-events: none;
  stroke-width: 0;
}

.button--filters-clear .icon {
  padding-left: 0;
  vertical-align: baseline;
  width: 10px;
  height: 10px;
  stroke-width: initial;
}

.global-footer .icon {
  pointer-events: auto;
}

.icon--start {
  margin-right: .75rem;
}

.icon-cta-chevron {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.icon-arrow-pagination--rotate,
.icon-arrow-draw--rotate {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.icon-arrow-pagination,
.icon-arrow-draw-close,
.icon-arrow-draw,
.icon-close-circle,
.icon-close,
.icon-cta,
.icon-download,
.icon-dropdown-arrow,
.icon-error,
.icon-info,
.icon-log-in,
.icon-menu,
.icon-minus,
.icon-minus-circle,
.icon-plus-circle,
.icon-plus,
.icon-refresh,
.icon-search,
.icon-success,
.icon-rep-finder,
.icon-external-link,
.icon-dropdown-arrow-circle,
.icon-person,
.icon-cart {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-cart-count {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: -10px;
  right: -5px;
  min-width: 15px;
  height: 15px;
  line-height: 14px;
  border-radius: 10px;
  background-color: #ccc;
  color: #000;
  padding: 0 2px;
  font-size: 12px;
}

@media (min-width: 1024px) {
  .icon-cart-count {
    top: 25px;
  }
}

@-webkit-keyframes opacityIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes opacityIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes opacityOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes opacityOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes slideInFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 0, 0);
            transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0px, 0, 0);
            transform: translate3d(0px, 0, 0);
  }
}

@keyframes slideInFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 0, 0);
            transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0px, 0, 0);
            transform: translate3d(0px, 0, 0);
  }
}

@-webkit-keyframes panelIn {
  from {
    -webkit-transform: translate3d(50px, 0, 0);
            transform: translate3d(50px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0px, 0, 0);
            transform: translate3d(0px, 0, 0);
  }
}

@keyframes panelIn {
  from {
    -webkit-transform: translate3d(50px, 0, 0);
            transform: translate3d(50px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0px, 0, 0);
            transform: translate3d(0px, 0, 0);
  }
}

@-webkit-keyframes panelInLeft {
  from {
    -webkit-transform: translate3d(-50px, 0, 0);
            transform: translate3d(-50px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0px, 0, 0);
            transform: translate3d(0px, 0, 0);
  }
}

@keyframes panelInLeft {
  from {
    -webkit-transform: translate3d(-50px, 0, 0);
            transform: translate3d(-50px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0px, 0, 0);
            transform: translate3d(0px, 0, 0);
  }
}

@-webkit-keyframes panelOut {
  from {
    -webkit-transform: translate3d(0px, 0, 0);
            transform: translate3d(0px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(50px, 0, 0);
            transform: translate3d(50px, 0, 0);
  }
}

@keyframes panelOut {
  from {
    -webkit-transform: translate3d(0px, 0, 0);
            transform: translate3d(0px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(50px, 0, 0);
            transform: translate3d(50px, 0, 0);
  }
}

@-webkit-keyframes panelOutLeft {
  from {
    -webkit-transform: translate3d(0px, 0, 0);
            transform: translate3d(0px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(-50px, 0, 0);
            transform: translate3d(-50px, 0, 0);
  }
}

@keyframes panelOutLeft {
  from {
    -webkit-transform: translate3d(0px, 0, 0);
            transform: translate3d(0px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(-50px, 0, 0);
            transform: translate3d(-50px, 0, 0);
  }
}

@-webkit-keyframes modalGrow {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

@keyframes modalGrow {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

@-webkit-keyframes modalShrink {
  from {
    width: 100%;
  }

  to {
    width: 0%;
  }
}

@keyframes modalShrink {
  from {
    width: 100%;
  }

  to {
    width: 0%;
  }
}

@-webkit-keyframes overflowAnim {
  from {
    left: 0;
  }

  to {
    left: 100%;
  }
}

@keyframes overflowAnim {
  from {
    left: 0;
  }

  to {
    left: 100%;
  }
}

.overflow-anim-wrapper > *:nth-child(1):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
}

.overflow-anim-wrapper > *:nth-child(2):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}

.overflow-anim-wrapper > *:nth-child(3):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: .6s;
          animation-delay: .6s;
}

.overflow-anim-wrapper > *:nth-child(4):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: .8s;
          animation-delay: .8s;
}

.overflow-anim-wrapper > *:nth-child(5):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.overflow-anim-wrapper > *:nth-child(6):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.overflow-anim-wrapper > *:nth-child(7):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}

.overflow-anim-wrapper > *:nth-child(8):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

.overflow-anim-wrapper > *:nth-child(9):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

.overflow-anim-wrapper > *:nth-child(10):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.overflow-anim-wrapper > *:nth-child(11):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}

.overflow-anim-wrapper > *:nth-child(12):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}

.overflow-anim-wrapper > *:nth-child(13):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}

.overflow-anim-wrapper > *:nth-child(14):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}

.overflow-anim-wrapper > *:nth-child(15):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.overflow-anim-wrapper > *:nth-child(16):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 3.2s;
          animation-delay: 3.2s;
}

.overflow-anim-wrapper > *:nth-child(17):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 3.4s;
          animation-delay: 3.4s;
}

.overflow-anim-wrapper > *:nth-child(18):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 3.6s;
          animation-delay: 3.6s;
}

.overflow-anim-wrapper > *:nth-child(19):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 3.8s;
          animation-delay: 3.8s;
}

.overflow-anim-wrapper > *:nth-child(20):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.overflow-anim-wrapper > *:nth-child(21):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 4.2s;
          animation-delay: 4.2s;
}

.overflow-anim-wrapper > *:nth-child(22):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 4.4s;
          animation-delay: 4.4s;
}

.overflow-anim-wrapper > *:nth-child(23):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 4.6s;
          animation-delay: 4.6s;
}

.overflow-anim-wrapper > *:nth-child(24):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 4.8s;
          animation-delay: 4.8s;
}

.overflow-anim-wrapper > *:nth-child(25):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

.overflow-anim-wrapper > *:nth-child(26):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 5.2s;
          animation-delay: 5.2s;
}

.overflow-anim-wrapper > *:nth-child(27):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 5.4s;
          animation-delay: 5.4s;
}

.overflow-anim-wrapper > *:nth-child(28):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 5.6s;
          animation-delay: 5.6s;
}

.overflow-anim-wrapper > *:nth-child(29):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 5.8s;
          animation-delay: 5.8s;
}

.overflow-anim-wrapper > *:nth-child(30):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}

.overflow-anim-wrapper > *:nth-child(31):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 6.2s;
          animation-delay: 6.2s;
}

.overflow-anim-wrapper > *:nth-child(32):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 6.4s;
          animation-delay: 6.4s;
}

.overflow-anim-wrapper > *:nth-child(33):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 6.6s;
          animation-delay: 6.6s;
}

.overflow-anim-wrapper > *:nth-child(34):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 6.8s;
          animation-delay: 6.8s;
}

.overflow-anim-wrapper > *:nth-child(35):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
}

.overflow-anim-wrapper > *:nth-child(36):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 7.2s;
          animation-delay: 7.2s;
}

.overflow-anim-wrapper > *:nth-child(37):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 7.4s;
          animation-delay: 7.4s;
}

.overflow-anim-wrapper > *:nth-child(38):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 7.6s;
          animation-delay: 7.6s;
}

.overflow-anim-wrapper > *:nth-child(39):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 7.8s;
          animation-delay: 7.8s;
}

.overflow-anim-wrapper > *:nth-child(40):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 8s;
          animation-delay: 8s;
}

.overflow-anim-wrapper > *:nth-child(41):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 8.2s;
          animation-delay: 8.2s;
}

.overflow-anim-wrapper > *:nth-child(42):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 8.4s;
          animation-delay: 8.4s;
}

.overflow-anim-wrapper > *:nth-child(43):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 8.6s;
          animation-delay: 8.6s;
}

.overflow-anim-wrapper > *:nth-child(44):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 8.8s;
          animation-delay: 8.8s;
}

.overflow-anim-wrapper > *:nth-child(45):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 9s;
          animation-delay: 9s;
}

.overflow-anim-wrapper > *:nth-child(46):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 9.2s;
          animation-delay: 9.2s;
}

.overflow-anim-wrapper > *:nth-child(47):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 9.4s;
          animation-delay: 9.4s;
}

.overflow-anim-wrapper > *:nth-child(48):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 9.6s;
          animation-delay: 9.6s;
}

.overflow-anim-wrapper > *:nth-child(49):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 9.8s;
          animation-delay: 9.8s;
}

.overflow-anim-wrapper > *:nth-child(50):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}

.overflow-anim-wrapper > *:nth-child(51):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 10.2s;
          animation-delay: 10.2s;
}

.overflow-anim-wrapper > *:nth-child(52):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 10.4s;
          animation-delay: 10.4s;
}

.overflow-anim-wrapper > *:nth-child(53):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 10.6s;
          animation-delay: 10.6s;
}

.overflow-anim-wrapper > *:nth-child(54):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 10.8s;
          animation-delay: 10.8s;
}

.overflow-anim-wrapper > *:nth-child(55):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 11s;
          animation-delay: 11s;
}

.overflow-anim-wrapper > *:nth-child(56):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 11.2s;
          animation-delay: 11.2s;
}

.overflow-anim-wrapper > *:nth-child(57):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 11.4s;
          animation-delay: 11.4s;
}

.overflow-anim-wrapper > *:nth-child(58):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 11.6s;
          animation-delay: 11.6s;
}

.overflow-anim-wrapper > *:nth-child(59):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 11.8s;
          animation-delay: 11.8s;
}

.overflow-anim-wrapper > *:nth-child(60):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 12s;
          animation-delay: 12s;
}

.overflow-anim-wrapper > *:nth-child(61):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 12.2s;
          animation-delay: 12.2s;
}

.overflow-anim-wrapper > *:nth-child(62):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 12.4s;
          animation-delay: 12.4s;
}

.overflow-anim-wrapper > *:nth-child(63):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 12.6s;
          animation-delay: 12.6s;
}

.overflow-anim-wrapper > *:nth-child(64):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 12.8s;
          animation-delay: 12.8s;
}

.overflow-anim-wrapper > *:nth-child(65):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 13s;
          animation-delay: 13s;
}

.overflow-anim-wrapper > *:nth-child(66):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 13.2s;
          animation-delay: 13.2s;
}

.overflow-anim-wrapper > *:nth-child(67):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 13.4s;
          animation-delay: 13.4s;
}

.overflow-anim-wrapper > *:nth-child(68):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 13.6s;
          animation-delay: 13.6s;
}

.overflow-anim-wrapper > *:nth-child(69):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 13.8s;
          animation-delay: 13.8s;
}

.overflow-anim-wrapper > *:nth-child(70):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 14s;
          animation-delay: 14s;
}

.overflow-anim-wrapper > *:nth-child(71):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 14.2s;
          animation-delay: 14.2s;
}

.overflow-anim-wrapper > *:nth-child(72):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 14.4s;
          animation-delay: 14.4s;
}

.overflow-anim-wrapper > *:nth-child(73):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 14.6s;
          animation-delay: 14.6s;
}

.overflow-anim-wrapper > *:nth-child(74):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 14.8s;
          animation-delay: 14.8s;
}

.overflow-anim-wrapper > *:nth-child(75):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 15s;
          animation-delay: 15s;
}

.overflow-anim-wrapper > *:nth-child(76):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 15.2s;
          animation-delay: 15.2s;
}

.overflow-anim-wrapper > *:nth-child(77):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 15.4s;
          animation-delay: 15.4s;
}

.overflow-anim-wrapper > *:nth-child(78):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 15.6s;
          animation-delay: 15.6s;
}

.overflow-anim-wrapper > *:nth-child(79):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 15.8s;
          animation-delay: 15.8s;
}

.overflow-anim-wrapper > *:nth-child(80):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 16s;
          animation-delay: 16s;
}

.overflow-anim-wrapper > *:nth-child(81):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 16.2s;
          animation-delay: 16.2s;
}

.overflow-anim-wrapper > *:nth-child(82):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 16.4s;
          animation-delay: 16.4s;
}

.overflow-anim-wrapper > *:nth-child(83):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 16.6s;
          animation-delay: 16.6s;
}

.overflow-anim-wrapper > *:nth-child(84):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 16.8s;
          animation-delay: 16.8s;
}

.overflow-anim-wrapper > *:nth-child(85):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 17s;
          animation-delay: 17s;
}

.overflow-anim-wrapper > *:nth-child(86):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 17.2s;
          animation-delay: 17.2s;
}

.overflow-anim-wrapper > *:nth-child(87):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 17.4s;
          animation-delay: 17.4s;
}

.overflow-anim-wrapper > *:nth-child(88):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 17.6s;
          animation-delay: 17.6s;
}

.overflow-anim-wrapper > *:nth-child(89):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 17.8s;
          animation-delay: 17.8s;
}

.overflow-anim-wrapper > *:nth-child(90):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 18s;
          animation-delay: 18s;
}

.overflow-anim-wrapper > *:nth-child(91):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 18.2s;
          animation-delay: 18.2s;
}

.overflow-anim-wrapper > *:nth-child(92):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 18.4s;
          animation-delay: 18.4s;
}

.overflow-anim-wrapper > *:nth-child(93):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 18.6s;
          animation-delay: 18.6s;
}

.overflow-anim-wrapper > *:nth-child(94):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 18.8s;
          animation-delay: 18.8s;
}

.overflow-anim-wrapper > *:nth-child(95):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 19s;
          animation-delay: 19s;
}

.overflow-anim-wrapper > *:nth-child(96):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 19.2s;
          animation-delay: 19.2s;
}

.overflow-anim-wrapper > *:nth-child(97):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 19.4s;
          animation-delay: 19.4s;
}

.overflow-anim-wrapper > *:nth-child(98):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 19.6s;
          animation-delay: 19.6s;
}

.overflow-anim-wrapper > *:nth-child(99):after {
  -webkit-animation: overflowAnim 300ms ease-in-out forwards;
          animation: overflowAnim 300ms ease-in-out forwards;
  -webkit-animation-delay: 19.8s;
          animation-delay: 19.8s;
}

.overflow-anim {
  position: relative;
}

.overflow-anim:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

@-webkit-keyframes widthFull {
  to {
    width: 100%;
  }
}

@keyframes widthFull {
  to {
    width: 100%;
  }
}

.width-full-animation {
  -webkit-animation: widthFull .75s ease-in forwards;
          animation: widthFull .75s ease-in forwards;
}

@-webkit-keyframes liveGradientForward {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 98.4% 50%;
  }
}

@keyframes liveGradientForward {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 98.4% 50%;
  }
}

@-webkit-keyframes liveGradientAlternate {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes liveGradientAlternate {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.panel-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
}

@media (min-width: 768px) {
  .panel-buttons {
    top: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .panel-buttons {
    top: 0;
  }
}

@media (min-width: 600px) {
  .panel {
    padding-bottom: 2.5rem;
  }
}

#modal-libris-image .panel {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

@media (min-width: 768px) {
  #modal-libris-image .panel {
    padding-left: .5rem;
    padding-right: .5rem;
    margin-left: 0;
    margin-right: 0;
  }
}

.panel__container {
  position: relative;
}

.panel__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 768px) {
  .panel__group {
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.panel__group--form {
  opacity: 1;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: all .5s cubic-bezier(1, -0.01, 1, 1.01);
  transition: all .5s cubic-bezier(1, -0.01, 1, 1.01);
}

.panel__group--form.is-hidden {
  opacity: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.panel__group--no-results,
.panel__group--results,
.panel__group--confirmation {
  opacity: 1;
  position: absolute !important;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: all .25s cubic-bezier(0, 1.01, 1, 1.01) .5s;
  transition: all .25s cubic-bezier(0, 1.01, 1, 1.01) .5s;
}

.panel__group--no-results.is-hidden,
.panel__group--results.is-hidden,
.panel__group--confirmation.is-hidden {
  opacity: 0;
  top: auto;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

@media (min-width: 768px) {
  .panel__group--no-results,
  .panel__group--results {
    padding-top: 1rem;
  }
}

@media (min-width: 768px) {
  .panel__group--confirmation {
    top: 0;
  }
}

.panel__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

@media (min-width: 600px) {
  .panel__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .modal__overlay--small .panel__row,
  .modal__overlay .panel__row {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  #modal-find-rep .panel__row {
    bottom: auto;
  }
}

.panel__row--grid {
  padding-bottom: 2rem;
  -webkit-box-orient: initial;
  -webkit-box-direction: initial;
      -ms-flex-direction: initial;
          flex-direction: initial;
}

@media (min-width: 600px) {
  .panel__row--grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 0;
  }
}

.panel__row--inner {
  width: 100%;
}

@media (min-width: 768px) {
  .panel__row--inner-full {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

@media (min-width: 1024px) {
  .panel__row--inner-half {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

.panel__row--inner-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.is-hidden .panel__row--inner-cta {
  display: none;
}

.panel__row--content {
  border-top-width: 8px;
  border-color: #222;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
}

.panel__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  margin-bottom: 1rem;
}

@media (min-width: 600px) {
  .panel__header {
    margin-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .modal__overlay--small .panel__header,
  .modal__overlay .panel__header {
    padding-left: 0;
    padding-right: 0;
  }
}

#modal-find-rep .panel__header {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  #modal-find-rep .panel__header {
    margin-bottom: 2rem;
  }
}

.panel__header .modal__title {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 2rem;
  margin-bottom: .75rem;
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 500;
}

.modal__overlay--small .panel__header .modal__title {
  padding-top: 4rem;
}

@media (min-width: 1024px) {
  .panel__header .modal__title {
    padding-top: 3rem;
    font-size: 3rem;
  }
}

.panel__header .modal__title span {
  font-weight: 300;
}

.panel__header .modal__title span:nth-of-type(2) {
  display: inline-block;
}

#modal-libris-image .panel__header .modal__title {
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  #modal-libris-image .panel__header .modal__title {
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  #modal-libris-image .panel__header {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}

.modal--flyout .panel__button {
  display: none;
  z-index: 20;
}

@media (min-width: 600px) {
  .modal--flyout .panel__button {
    display: block;
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
  }
}

.panel__button .icon {
  -webkit-transition: -webkit-transform .4s ease-in-out;
  transition: -webkit-transform .4s ease-in-out;
  transition: transform .4s ease-in-out;
  transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
  will-change: transform;
}

.panel__button:hover .icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.panel__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-left: 1rem;
  margin-right: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-weight: 500;
  border-top-width: 8px;
  border-color: #222;
}

@media (min-width: 600px) {
  .panel__title {
    margin-top: 1rem;
    padding-bottom: 0;
  }
}

.modal--default {
  position: relative;
  z-index: 1000;
}

.modal__overlay {
  top: 0;
  right: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 30;
  outline: 0;
}

.modal--flyout .modal__overlay {
  position: absolute;
  width: 100%;
  z-index: 400;
}

.modal--flyout .modal__overlay--small {
  left: auto;
}

@media (min-width: 768px) {
  .modal--flyout .modal__overlay--small {
    width: 60%;
  }
}

@media (min-width: 1024px) {
  .modal--flyout .modal__overlay--small {
    width: 40%;
  }
}

.modal--default .modal__overlay {
  position: fixed;
  background-color: rgba(0, 0, 0, .85);
}

@media (max-width: 767px) {
  .modal--default .modal__overlay {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    min-height: 100vh;
  }
}

@media (min-width: 768px) {
  .modal--default .modal__overlay {
    bottom: 0;
  }
}

#modal-find-rep .modal__overlay {
  bottom: 0;
}

#modal-libris-image .modal__overlay {
  background-color: #eee;
  position: fixed;
}

#modal-request-sample .modal__wrapper {
  position: fixed;
  top: 64px;
  left: 12px;
  right: 12px;
  bottom: 24px;
}

@media (min-width: 600px) {
  #modal-request-sample .modal__wrapper {
    top: 80px;
    left: unset;
    right: 12px;
    bottom: unset;
  }
}

@media (min-width: 768px) {
  #modal-request-sample .modal__wrapper {
    top: 150px;
    left: unset;
    right: 36px;
  }
}

#modal-request-sample {
  z-index: 999;
}

#modal-request-sample .panel {
  padding: 0;
}

#modal-request-sample .modal__title {
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.5px;
}

#modal-request-sample .request-sample {
  margin: 16px 0;
}

@media (min-width: 600px) {
  #modal-request-sample .request-sample {
    margin: 32px 0 38px;
  }
}

#modal-request-sample .request-sample-image {
  width: 258px;
  height: 311px;
  -o-object-fit: cover;
     object-fit: cover;
}

#modal-request-sample .request-sample-info {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -1.15px;
  margin-top: 15px;
  word-break: break-word;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

@media (min-width: 600px) {
  #modal-request-sample .request-sample-info {
    font-size: 28px;
    line-height: 42px;
    letter-spacing: -1.5px;
    margin-top: 0;
    margin-left: 30px;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}

#modal-request-sample .request-sample-info-subheading {
  display: inline-block;
}

@media (min-width: 600px) {
  #modal-request-sample .request-sample-info-subheading {
    display: block;
  }
}

#modal-request-sample .request-sample-info-options {
  display: block;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.1px;
}

#modal-request-sample .request-sample-checkout-button {
  width: 50%;
}

@media (min-width: 600px) {
  #modal-request-sample .request-sample-checkout-button {
    width: 258px;
  }
}

#modal-request-sample .request-sample-checkout-button .icon {
  margin-left: 18px;
}

@media (min-width: 600px) {
  #modal-request-sample .request-sample-checkout-button .icon {
    margin-left: 3rem;
  }
}

#modal-request-sample .request-sample-cart-button {
  width: 50%;
  margin-left: 16px;
  background-color: #fff;
  color: #222;
}

@media (min-width: 600px) {
  #modal-request-sample .request-sample-cart-button {
    width: 204px;
    margin-left: 30px;
  }
}

#modal-request-sample .request-sample-cart-button .icon {
  margin-left: 18px;
}

@media (min-width: 600px) {
  #modal-request-sample .request-sample-cart-button .icon {
    margin-left: 3rem;
  }
}

.modal__bg {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.modal__container {
  background-color: #eee;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: max-height .5s cubic-bezier(1, -0.01, 1, 1.01);
  transition: max-height .5s cubic-bezier(1, -0.01, 1, 1.01);
}

.modal--flyout .modal__container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  -webkit-transition: -webkit-transform .5s ease-in-out;
  transition: -webkit-transform .5s ease-in-out;
  transition: transform .5s ease-in-out;
  transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

@media (min-width: 768px) {
  .modal--flyout .modal__container {
    width: 0%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.modal--left .modal__container {
  left: 0;
}

#modal-find-rep .modal__container,
#modal-contact-rep .modal__container,
#modal-request-sample .modal__container {
  position: relative;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  height: 100%;
  -webkit-transition: height 1s;
  transition: height 1s;
}

#modal-libris-image .modal__container {
  position: relative;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  max-height: 100vh;
}

#modal-find-rep .modal__container,
#modal-libris-image .modal__container {
  overflow-x: hidden;
}

@media (max-width: 480px) {
  #modal-find-rep .modal__container,
  #modal-libris-image .modal__container {
    -webkit-overflow-scrolling: touch;
    height: 100%;
  }
}

#modal-contact-rep .modal__container,
#modal-request-sample .modal__container {
  overflow-x: hidden;
}

#modal-contact-rep .modal__container .form-flex,
#modal-request-sample .modal__container .form-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#modal-contact-rep .modal__container .or-div,
#modal-request-sample .modal__container .or-div {
  position: absolute;
  left: 50%;
  top: 25%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

#modal-request-sample .modal__container {
  -webkit-box-shadow: 0 2px 4px 0 #b2b2b2;
          box-shadow: 0 2px 4px 0 #b2b2b2;
  padding: 16px 8px 25px;
  margin-bottom: auto;
  height: auto;
}

@media (min-width: 600px) {
  #modal-request-sample .modal__container {
    width: 560px;
    max-height: calc(100vh - 15.625em);
    padding: 36px;
  }
}

.modal--default .modal__title {
  width: 80%;
}

@media (min-width: 768px) {
  .modal--default .modal__title {
    width: 100%;
  }
}

#modal-libris-image .modal__title {
  width: 100%;
  margin-top: 1.5rem;
  padding: 0;
}

@media (min-width: 1024px) {
  #modal-libris-image .modal__title {
    padding-top: 0;
    margin-top: 0;
  }
}

.modal__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 10;
}

.modal--flyout .modal__header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transform: translate3d(50px, 0, 0);
          transform: translate3d(50px, 0, 0);
}

.modal--left .modal__header {
  -webkit-transform: translate3d(-50px, 0, 0);
          transform: translate3d(-50px, 0, 0);
}

.modal--default .modal__header {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (min-width: 768px) {
  .color-portfolio .modal__header {
    position: absolute;
    top: 0;
    left: .5rem;
  }
}

#modal-libris-image .modal__header {
  padding-top: 5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  #modal-libris-image .modal__header {
    padding-top: 3rem;
    margin-bottom: 3rem;
  }
}

.modal__close {
  background-color: transparent;
  border: 0;
}

.modal--default .modal__close {
  padding-top: 2rem;
}

@media (min-width: 600px) {
  .modal--default .modal__close {
    padding-top: 3rem;
  }
}

#modal-contact-rep .modal__close,
#modal-find-rep .modal__close {
  padding-top: 0;
  position: absolute;
  z-index: 20;
  top: 2rem;
  right: 1rem;
}

@media (min-width: 768px) {
  #modal-contact-rep .modal__close,
  #modal-find-rep .modal__close {
    top: 3rem;
    right: 3rem;
  }
}

#modal-request-sample .modal__close {
  padding-top: 0;
  position: absolute;
  z-index: 20;
  top: 1rem;
  right: 1rem;
}

@media (min-width: 600px) {
  #modal-request-sample .modal__close {
    top: 2rem;
  }
}

@media (min-width: 768px) {
  #modal-request-sample .modal__close {
    right: 2rem;
  }
}

#modal-libris-image .modal__close {
  padding-top: 0;
  position: absolute;
  z-index: 20;
  top: 2rem;
  right: 1rem;
}

@media (min-width: 768px) {
  #modal-libris-image .modal__close {
    top: 3rem;
    right: 1rem;
  }
}

.modal--flyout .modal__content {
  opacity: 0;
  -webkit-transform: translate3d(50px, 0, 0);
          transform: translate3d(50px, 0, 0);
}

.modal--left .modal__content {
  -webkit-transform: translate3d(-50px, 0, 0);
          transform: translate3d(-50px, 0, 0);
}

@media (min-width: 768px) {
  .color-portfolio .modal__content {
    margin-top: 3.5rem;
  }
}

.micromodal-swatch,
.micromodal-video {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.micromodal-swatch.is-open,
.micromodal-video.is-open {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  display: block;
  z-index: 501;
}

.micromodal-swatch .modal__bg,
.micromodal-video .modal__bg {
  background-color: rgba(255, 255, 255, .95);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.micromodal-swatch .modal__close,
.micromodal-video .modal__close {
  position: fixed;
  z-index: 10;
  top: 1.5rem;
  right: 1.5rem;
}

.micromodal-swatch .modal__container,
.micromodal-video .modal__container {
  position: relative;
  width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: transparent;
  max-height: calc(100vh - 2rem);
}

.micromodal-swatch .modal__header,
.micromodal-swatch .modal__content,
.micromodal-video .modal__header,
.micromodal-video .modal__content {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.modal.is-open + div > button {
  z-index: 50;
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.modal--flyout {
  display: block;
}

.micromodal-slide.modal--flyout .modal__bg {
  display: none;
}

@media (min-width: 768px) {
  .micromodal-slide.modal--flyout {
    display: none;
  }

  .micromodal-slide.modal--flyout .modal__bg {
    display: block;
  }
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false].modal--default .modal__overlay,
.micromodal-slide[aria-hidden=false].modal--default .modal__wrapper {
  -webkit-animation: mmfadeIn .3s cubic-bezier(0, 0, .2, 1);
          animation: mmfadeIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden=false].modal--flyout .modal__container {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

@media (min-width: 768px) {
  .micromodal-slide[aria-hidden=false].modal--flyout .modal__container {
    -webkit-animation: modalGrow 1s ease-in-out forwards 0s;
            animation: modalGrow 1s ease-in-out forwards 0s;
  }
}

.micromodal-slide[aria-hidden=false].modal--flyout .modal__container:focus {
  outline: 0;
}

.micromodal-slide[aria-hidden=false].modal--flyout .modal__bg {
  display: block;
}

.micromodal-slide[aria-hidden=false].modal--flyout .modal__header {
  -webkit-animation: opacityIn 1.1s cubic-bezier(.42, 0, .15, .995) forwards .5s, panelIn 1.1s cubic-bezier(.42, 0, .15, .995) forwards .5s;
          animation: opacityIn 1.1s cubic-bezier(.42, 0, .15, .995) forwards .5s, panelIn 1.1s cubic-bezier(.42, 0, .15, .995) forwards .5s;
}

.micromodal-slide[aria-hidden=false].modal--flyout .modal__content {
  -webkit-animation: opacityIn 1s cubic-bezier(.42, 0, .15, .995) forwards .6s, panelIn 1s cubic-bezier(.42, 0, .15, .995) forwards .6s;
          animation: opacityIn 1s cubic-bezier(.42, 0, .15, .995) forwards .6s, panelIn 1s cubic-bezier(.42, 0, .15, .995) forwards .6s;
}

.modal--left.micromodal-slide[aria-hidden=false].modal--flyout .modal__header {
  -webkit-animation: opacityIn 1.1s cubic-bezier(.42, 0, .15, .995) forwards .5s, panelInLeft 1.1s cubic-bezier(.42, 0, .15, .995) forwards .5s;
          animation: opacityIn 1.1s cubic-bezier(.42, 0, .15, .995) forwards .5s, panelInLeft 1.1s cubic-bezier(.42, 0, .15, .995) forwards .5s;
}

.modal--left.micromodal-slide[aria-hidden=false].modal--flyout .modal__content {
  -webkit-animation: opacityIn 1s cubic-bezier(.42, 0, .15, .995) forwards .6s, panelInLeft 1s cubic-bezier(.42, 0, .15, .995) forwards .6s;
          animation: opacityIn 1s cubic-bezier(.42, 0, .15, .995) forwards .6s, panelInLeft 1s cubic-bezier(.42, 0, .15, .995) forwards .6s;
}

.micromodal-slide[aria-hidden=false].modal--default .modal__container {
  -webkit-animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
          animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden=true].modal--default .modal__overlay,
.micromodal-slide[aria-hidden=true].modal--default .modal__wrapper {
  -webkit-animation: mmfadeOut .3s cubic-bezier(0, 0, .2, 1);
          animation: mmfadeOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden=true].modal--flyout .modal__container {
  width: 100%;
}

@media (min-width: 768px) {
  .micromodal-slide[aria-hidden=true].modal--flyout .modal__container {
    -webkit-animation: modalShrink 5s cubic-bezier(.42, 0, .15, .995) forwards 0s;
            animation: modalShrink 5s cubic-bezier(.42, 0, .15, .995) forwards 0s;
  }
}

.micromodal-slide[aria-hidden=true].modal--flyout .modal__header,
.micromodal-slide[aria-hidden=true].modal--flyout .modal__content {
  -webkit-animation: opacityOut .25s cubic-bezier(.42, 0, .15, .995) forwards 0s, panelOut .25s cubic-bezier(.42, 0, .15, .995) forwards 0s;
          animation: opacityOut .25s cubic-bezier(.42, 0, .15, .995) forwards 0s, panelOut .25s cubic-bezier(.42, 0, .15, .995) forwards 0s;
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
  opacity: 1;
}

.modal--left.micromodal-slide[aria-hidden=true].modal--flyout .modal__header,
.modal--left.micromodal-slide[aria-hidden=true].modal--flyout .modal__content {
  -webkit-animation: opacityOut .25s cubic-bezier(.42, 0, .15, .995) forwards 0s, panelOutLeft .25s cubic-bezier(.42, 0, .15, .995) forwards 0s;
          animation: opacityOut .25s cubic-bezier(.42, 0, .15, .995) forwards 0s, panelOutLeft .25s cubic-bezier(.42, 0, .15, .995) forwards 0s;
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
  opacity: 1;
}

.micromodal-slide[aria-hidden=true].modal--default .modal__container {
  -webkit-animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
          animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay,
.micromodal-slide .modal__wrapper,
.micromodal-slide .modal__header,
.micromodal-slide .modal__content {
  will-change: transform;
}

.micromodal-slide .modal__container:focus,
.micromodal-slide .modal__overlay:focus,
.micromodal-slide .modal__wrapper:focus,
.micromodal-slide .modal__header:focus,
.micromodal-slide .modal__content:focus {
  outline: 0;
}

/**************************\
  Micromodal Animation Style
\**************************/

@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }

  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }

  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}

@keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}

.accordion__trigger {
  position: relative;
  display: block;
  will-change: transform;
}

.accordion__trigger .icon-minus-circle,
.accordion__trigger .icon-minus {
  display: none;
}

.accordion__trigger .icon-plus-circle,
.accordion__trigger .icon-plus {
  display: block;
}

.accordion__trigger.is-active .icon-minus-circle,
.accordion__trigger.is-active .icon-minus {
  display: block;
}

.accordion__trigger.is-active .icon-plus-circle,
.accordion__trigger.is-active .icon-plus {
  display: none;
}

.accordion__content {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.accordion__content.is-active {
  max-height: 500%;
}

.swatch-thumb__container.accordion .accordion__content {
  padding-top: 0;
  padding-bottom: 0;
}

.swatch-thumb__container.accordion .accordion__content.is-active {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.filters {
  height: 72px;
}

.filters__container {
  padding: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {
  .filters__container {
    overflow: hidden;
    -webkit-overflow-scrolling: auto;
  }
}

.filters__filters {
  font-weight: 300;
  text-transform: capitalize;
  display: none;
}

@media (min-width: 768px) {
  .filters__filters {
    display: inline;
  }
}

.filters-column {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .filters-column:first-child {
    padding-left: 0;
  }

  .filters-column:last-child {
    padding-right: 0;
  }

  .color-portfolio .filters-column:last-child {
    margin-left: 1.66666667%;
  }
}

.filters-column__content {
  margin-bottom: 2rem;
}

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

.filters-column__radio label {
  position: relative;
  display: block;
  font-size: .875rem;
  font-family: "3form Graphik", Helvetica, sans-serif;
  font-weight: 300;
  color: #222;
  margin-bottom: 1rem;
  cursor: pointer;
  line-height: calc(100% + 8px);
}

@media (min-width: 768px) {
  .filters-column__radio label {
    font-size: 1rem;
  }
}

input[type=radio],
input[type=checkbox] {
  position: absolute;
  overflow: hidden;
  top: auto;
  clip: rect(1px 1px 1px 1px); /* IE 6/7 */
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  white-space: nowrap; /* https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe */
}

.custom-checkbox input[type=radio]:focus + label,
.custom-checkbox input[type=checkbox]:focus + label {
  outline: rgb(59, 153, 252) auto 5px;
}

input[type=radio] + label {
  font-weight: 500;
  padding-right: 2rem;
  min-width: 40%;
}

@media (min-width: 768px) {
  .filters-column input[type=radio] + label {
    position: relative;
    display: block;
    padding-right: 1rem;
    letter-spacing: -0.032em;
    min-width: 100%;
  }
}

@media (min-width: 1200px) {
  .filters-column input[type=radio] + label {
    min-width: calc(100% - 1.5rem);
  }
}

@media (min-width: 768px) {
  .filters-column input[type=radio]:hover + label:before,
  .filters-column input[type=radio]:checked + label:before {
    position: absolute;
    background-color: #222;
    content: "";
    height: 2px;
    width: 1rem;
    top: 10px;
    left: -2rem;
  }
}

@media (min-width: 1200px) {
  .filters-column input[type=radio]:hover + label:before,
  .filters-column input[type=radio]:checked + label:before {
    width: 2rem;
    left: -3rem;
  }
}

.custom-checkbox input[type=checkbox] + label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-form input[type=checkbox] + label {
  color: #999;
}

.custom-checkbox input[type=checkbox] + label:before {
  width: 100%;
  margin-right: 1rem;
  background-color: #fff;
  border-width: 1px;
  border-color: #eee;
  cursor: pointer;
  content: "";
  max-width: 32px;
  height: 32px;
  -webkit-transition: border-color .3s ease-out;
  transition: border-color .3s ease-out;
}

.contact-form input[type=checkbox] + label:before {
  background-color: transparent;
  border-width: 2px;
  border-color: #b2b2b2;
}

.custom-checkbox input[type=checkbox]:hover + label:before {
  border-color: #222;
}

.custom-checkbox input[type=checkbox]:checked + label:before {
  background-color: #ff993d;
  -webkit-box-shadow: inset 0 0 0px 10px white;
          box-shadow: inset 0 0 0px 10px white;
}

.contact-form input[type=checkbox]:checked + label:before {
  border-width: 1px;
}

.contact-form input[type=checkbox]:checked + label {
  color: #222;
}

input[type=submit] {
  display: none;
}

input[type=text]::-ms-clear {
  display: none;
}

.contact-form select {
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-form select::-ms-expand {
  display: none;
}

.contact-form input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #eee inset;
}

.custom-input {
  position: relative;
  -webkit-transition: padding .3s ease-in-out;
  transition: padding .3s ease-in-out;
}

.custom-input label {
  position: absolute;
  left: 0;
  color: #b2b2b2;
  top: .4rem;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.custom-input input[type=text],
.custom-input input[type=email],
.custom-input input[type=phone] {
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.25;
  background-color: #eee;
  border-bottom-width: 2px;
  border-color: #b2b2b2;
  border-radius: 0;
  height: 40px;
}

.custom-input select {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.25;
  background-color: #eee;
  border-bottom-width: 2px;
  border-color: #b2b2b2;
  background-repeat: no-repeat;
  border-radius: 0;
  height: 40px;
  background-size: 16px;
  background-position: center right;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIxOHB4IiBoZWlnaHQ9IjExcHgiIHZpZXdCb3g9IjAgMCAxOCAxMSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5pY29uLWRyb3Bkb3duLWFycm93LTE4cHgtIzk5OTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZGVmcz48L2RlZnM+ICAgIDxnIGlkPSJpY29uLWRyb3Bkb3duLWFycm93LTE4cHgtIzk5OSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iYXJyb3ciIHRyYW5zZm9ybT0idHJhbnNsYXRlKDkuMDAwMDAwLCA1LjAwMDAwMCkgcm90YXRlKDkwLjAwMDAwMCkgdHJhbnNsYXRlKC05LjAwMDAwMCwgLTUuMDAwMDAwKSB0cmFuc2xhdGUoNS4wMDAwMDAsIC0zLjAwMDAwMCkiIHN0cm9rZT0iIzk5OTk5OSIgc3Ryb2tlLXdpZHRoPSIyIj4gICAgICAgICAgICA8cG9seWxpbmUgaWQ9IlN0cm9rZS0zIiBwb2ludHM9IjAgMCA4IDggMCAxNiI+PC9wb2x5bGluZT4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
}

.custom-input.is-focused label,
.custom-input.is-valid label {
  color: #222;
  left: 0;
  top: -1rem;
}

.custom-input.is-focused input[type=text],
.custom-input.is-focused input[type=email],
.custom-input.is-focused input[type=phone],
.custom-input.is-focused select,
.custom-input.is-valid input[type=text],
.custom-input.is-valid input[type=email],
.custom-input.is-valid input[type=phone],
.custom-input.is-valid select {
  border-color: #222;
}

.custom-input.is-focused select,
.custom-input.is-valid select {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIxOHB4IiBoZWlnaHQ9IjExcHgiIHZpZXdCb3g9IjAgMCAxOCAxMSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5pY29uLWRyb3Bkb3duLWFycm93LTE4cHgtIzIyMjwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZGVmcz48L2RlZnM+ICAgIDxnIGlkPSJpY29uLWRyb3Bkb3duLWFycm93LTE4cHgtIzIyMiIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iYXJyb3ciIHRyYW5zZm9ybT0idHJhbnNsYXRlKDkuMDAwMDAwLCA1LjAwMDAwMCkgcm90YXRlKDkwLjAwMDAwMCkgdHJhbnNsYXRlKC05LjAwMDAwMCwgLTUuMDAwMDAwKSB0cmFuc2xhdGUoNS4wMDAwMDAsIC0zLjAwMDAwMCkiIHN0cm9rZT0iIzMzMzMzMyIgc3Ryb2tlLXdpZHRoPSIyIj4gICAgICAgICAgICA8cG9seWxpbmUgaWQ9IlN0cm9rZS0zIiBwb2ludHM9IjAgMCA4IDggMCAxNiI+PC9wb2x5bGluZT4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
}

.custom-input.is-untouched label {
  color: #ff993d;
}

.custom-input.is-untouched input[type=text],
.custom-input.is-untouched input[type=email],
.custom-input.is-untouched input[type=phone] {
  border-color: #ff993d;
}

.input-helper {
  display: none;
}

.input-helper.is-visible {
  display: block;
}

#newsletter-subscribe.is-hidden {
  display: none;
}

.custom-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-left: 0;
  padding-right: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-bottom-width: 1px;
  border-color: #b2b2b2;
  color: #b2b2b2;
  background-repeat: no-repeat;
  float: none;
  border-radius: 0;
  background-position: 98% 50%;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIxOHB4IiBoZWlnaHQ9IjExcHgiIHZpZXdCb3g9IjAgMCAxOCAxMSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5pY29uLWRyb3Bkb3duLWFycm93LTE4cHgtIzk5OTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZGVmcz48L2RlZnM+ICAgIDxnIGlkPSJpY29uLWRyb3Bkb3duLWFycm93LTE4cHgtIzk5OSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iYXJyb3ciIHRyYW5zZm9ybT0idHJhbnNsYXRlKDkuMDAwMDAwLCA1LjAwMDAwMCkgcm90YXRlKDkwLjAwMDAwMCkgdHJhbnNsYXRlKC05LjAwMDAwMCwgLTUuMDAwMDAwKSB0cmFuc2xhdGUoNS4wMDAwMDAsIC0zLjAwMDAwMCkiIHN0cm9rZT0iIzk5OTk5OSIgc3Ryb2tlLXdpZHRoPSIyIj4gICAgICAgICAgICA8cG9seWxpbmUgaWQ9IlN0cm9rZS0zIiBwb2ludHM9IjAgMCA4IDggMCAxNiI+PC9wb2x5bGluZT4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
}

.text-help {
  position: absolute;
  color: #ff993d;
  font-size: .625rem;
  bottom: -1rem;
}

.global-footer .text-help {
  bottom: -1.5rem;
}

@media (min-width: 1024px) {
  .text-help {
    font-size: .75rem;
  }
}

.color-portfolio .is-gradient-default {
  background: linear-gradient(135deg, #771f26, #5d58a1, #f4e6e3, #f4e6e3, #f4e445, #edc742, #edc742, #e09a20, #ce5820, #cf5920, #d6ac93, #e6e8e8, #e6e8e8, #b5aa8c, #e9e5cf, #e9e5cf, #a2cc71, #83cac2, #83cac2, #7ec4e7, #4e79bb, #005b9c, #6ea5d9, #f391ba, #f391ba, #e61c15, #771f26, #771f26, #5d58a1, #f4e6e3);
  background-size: 3000% 100% !important;
  -webkit-animation: liveGradientForward 50s ease 0s infinite;
          animation: liveGradientForward 50s ease 0s infinite;
}

.color-portfolio .is-gradient-greens {
  background: linear-gradient(315deg, #83cac2 0%, #a2cc71 50%, #e9e5cf 100%);
  background-size: 400% 400% !important;
  -webkit-animation: liveGradientAlternate 15s ease 0s infinite;
          animation: liveGradientAlternate 15s ease 0s infinite;
}

.color-portfolio .is-gradient-blues {
  background: linear-gradient(135deg, #83cac2 0%, #7ec4e7 50%, #4e79bb 100%);
  background-size: 400% 400% !important;
  -webkit-animation: liveGradientAlternate 15s ease 0s infinite;
          animation: liveGradientAlternate 15s ease 0s infinite;
}

.color-portfolio .is-gradient-purples {
  background: linear-gradient(135deg, #771f26 0%, #5d58a1 50%, #f4e6e3 100%);
  background-size: 400% 400% !important;
  -webkit-animation: liveGradientAlternate 15s ease 0s infinite;
          animation: liveGradientAlternate 15s ease 0s infinite;
}

.color-portfolio .is-gradient-reds {
  background: linear-gradient(135deg, #f391ba 0%, #e61c15 50%, #771f26 100%);
  background-size: 400% 400% !important;
  -webkit-animation: liveGradientAlternate 15s ease 0s infinite;
          animation: liveGradientAlternate 15s ease 0s infinite;
}

.color-portfolio .is-gradient-oranges {
  background: linear-gradient(135deg, #edc742 0%, #e09a20 50%, #ce5820 100%);
  background-size: 400% 400% !important;
  -webkit-animation: liveGradientAlternate 15s ease 0s infinite;
          animation: liveGradientAlternate 15s ease 0s infinite;
}

.color-portfolio .is-gradient-yellows {
  background: linear-gradient(315deg, #edc742 0%, #f4e445 50%, #f4e6e3 100%);
  background-size: 400% 400% !important;
  -webkit-animation: liveGradientAlternate 15s ease 0s infinite;
          animation: liveGradientAlternate 15s ease 0s infinite;
}

.color-portfolio .is-gradient-neutral {
  background: linear-gradient(315deg, #e9e5cf 0%, #b5aa8c 50%, #e6e8e8 100%);
  background-size: 400% 400% !important;
  -webkit-animation: liveGradientAlternate 15s ease 0s infinite;
          animation: liveGradientAlternate 15s ease 0s infinite;
}

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

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

.rep-form__image {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #ddd;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  font-family: "object-fit: cover; object-position: center;";
}

.rep-form__image .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.rep-form__image--outer {
  width: 90px;
}

@media (min-width: 481px) and (max-width: 768px) {
  .rep-form__image--outer {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  .rep-results {
    width: 100%;
  }
}

.no-scroll {
  overflow-y: hidden;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.lock-scroll {
  overflow-y: hidden;
  height: 100%;
}

.dimmed {
  display: inherit;
}

@media (min-width: 1024px) {
  .dimmed:after {
    content: " ";
    z-index: 1000;
    display: block;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, .5);
  }
}

.fourohfour-list {
  list-style: none;
  padding: 0;
}

.fourohfour-list__link {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: -0.8px;
  line-height: 32px;
}

.color-portfolio .loading,
.interlayers .loading,
.resources-index__loading-container .loading,
#contest-submission-processing-modal-content .loading,
.libris-search-loading-container .loading {
  position: relative;
  right: 0;
  left: 0;
  top: 50%;
  left: 0;
  right: 0;
  min-height: 130px;
}

.color-portfolio .loading:after,
.interlayers .loading:after,
.resources-index__loading-container .loading:after,
#contest-submission-processing-modal-content .loading:after,
.libris-search-loading-container .loading:after {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-20px, -20px);
          transform: translate(-20px, -20px);
  width: 40px;
  height: 40px;
  background-image: url(/static/images/3form-preloader.gif);
}

@media (min-width: 768px) {
  .color-portfolio .loading,
  .interlayers .loading,
  .resources-index__loading-container .loading,
  #contest-submission-processing-modal-content .loading,
  .libris-search-loading-container .loading {
    min-height: 260px;
  }
}

.color-portfolio .loading.is-hidden,
.interlayers .loading.is-hidden,
.resources-index__loading-container .loading.is-hidden,
#contest-submission-processing-modal-content .loading.is-hidden,
.libris-search-loading-container .loading.is-hidden {
  display: none;
}

.image-loading {
  position: relative;
}

.image-loading:after {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-20px, -20px);
          transform: translate(-20px, -20px);
  width: 40px;
  height: 40px;
  z-index: -1;
  background-image: url(/static/images/3form-preloader.gif);
}

.micromodal-swatch.is-open .image-loading {
  min-height: 220px;
}

@media (min-width: 600px) {
  .micromodal-swatch.is-open .image-loading {
    min-height: 305px;
  }
}

@media (min-width: 768px) {
  .micromodal-swatch.is-open .image-loading {
    min-height: 420px;
  }
}

@media (min-width: 1024px) {
  .micromodal-swatch.is-open .image-loading {
    min-height: 490px;
  }
}

@media (min-width: 1200px) {
  .micromodal-swatch.is-open .image-loading {
    min-height: 580px;
  }
}

/*
Custom Swatch Card

For custom swatch module (will be background images).

Markup:
<div class="custom-swatch bg-brand {{modifier_class}}">
  <div class="custom-swatch__title"><span class="custom-swatch__main-title">Megaman</span></div>
</div>
<div class="custom-swatch {{modifier_class}}" style="background-image:url(https://via.placeholder.com/628x520)">
  <div class="custom-swatch__title"><span class="custom-swatch__main-title">Megaman</span></div>
</div>
<div class="custom-swatch__link-wrapper js-accessible-card">
  <div class="custom-swatch custom-swatch--rotate bg-brand {{modifier_class}}">
    <div class="custom-swatch__title custom-swatch__title--rotate">
      <a href="http://www.google.ca/" class="custom-swatch__link js-accessible-link">
        <span class="custom-swatch__main-title">Megaman</span>
      </a>
    </div>
  </div>
</div>
<div class="custom-swatch__link-wrapper js-accessible-card">
  <div class="custom-swatch bg-brand {{modifier_class}}">
    <div class="custom-swatch__title">
      <a href="http://www.google.ca/" class="custom-swatch__link js-accessible-link">
        <span class="custom-swatch__main-title">Megaman</span>
        <br />
        <span class="custom-swatch__sub-title">Zephyr</span>
      </a>
    </div>
  </div>
</div>
<div class="custom-swatch__link-wrapper js-accessible-card">
    <div class="custom-swatch custom-swatch--rotate bg-brand {{modifier_class}}">
        <div class="custom-swatch__title custom-swatch__title--rotate">
            <a href="http://www.google.ca/" class="custom-swatch__link js-accessible-link">
                <span class="custom-swatch__main-title">Megaman</span>
                <br />
                <span class="custom-swatch__sub-title">Zephyr</span>
            </a>
        </div>
    </div>
</div>

.custom-swatch--inverse - for light bg images

Styleguide: Components.custom-swatch
*/

.custom-swatch {
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .1);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .1);
  position: relative;
  margin-top: 1rem;
  width: 100%;
  overflow: hidden;
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  padding-top: 120.7692307692%;
  height: 0;
  /*
  &.loading {
    &:after {
      @apply .absolute .block;
      content: '';
      top: 50%;
      left: 50%;
      transform: translate(-20px, -20px);
      width: 40px;
      height: 40px;
      background-image: url(/static/images/3form-preloader.gif);
    }
  }*/
}

@media (min-width: 768px) {
  .custom-swatch {
    margin-top: 2rem;
  }
}

.custom-swatch:before {
  position: absolute;
  opacity: .8;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 101%;
  height: 101%;
  content: "";
  background: radial-gradient(at top left, #fff 0%, rgba(255, 255, 255, 0) 70%);
}

.custom-swatch--no-shadow {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.custom-swatch--rotate:before {
  background: radial-gradient(at bottom right, #fff 0%, rgba(255, 255, 255, 0) 60%);
}

.custom-swatch__title {
  color: #222;
  font-weight: 500;
  position: absolute;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1rem;
  top: 0;
  left: 0;
  letter-spacing: -1.15px;
}

@media (min-width: 768px) {
  .custom-swatch__title {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
  }

  .content-block .custom-swatch__title {
    padding-left: 1rem;
    padding-top: 1rem;
  }
}

.custom-swatch__title--rotate {
  padding: 0;
  padding-bottom: 1rem;
  right: 0;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  top: unset;
  left: unset;
  height: calc(100% - 1rem);
}

@media (min-width: 1024px) {
  .custom-swatch__title--rotate {
    padding-bottom: 1.5rem;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

.custom-swatch__main-title {
  font-size: 1.5rem;
  font-weight: 500;
}

@media (max-width: 480px) {
  .content-block .custom-swatch__main-title {
    font-size: 1.5rem;
    line-height: 1.25;
  }
}

@media (min-width: 481px) and (max-width: 1024px) {
  .hardware-content .custom-swatch__main-title {
    letter-spacing: -0.032em !important;
  }
}

@media (min-width: 768px) {
  .custom-swatch__title--rotate .custom-swatch__main-title {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .custom-swatch__title .custom-swatch__main-title {
    font-size: 2rem;
  }
}

.content-block .custom-swatch__main-title {
  font-size: 1rem;
  letter-spacing: -0.032em;
}

@media (min-width: 768px) {
  .content-block .custom-swatch__main-title {
    font-size: .75rem;
  }
}

@media (min-width: 1200px) {
  .content-block .custom-swatch__main-title {
    font-size: 1rem;
  }
}

.custom-swatch__sub-title {
  display: block;
  font-size: 1rem;
  font-weight: 300;
}

@media (min-width: 768px) {
  .custom-swatch__sub-title {
    font-size: 1.5rem;
  }

  .content-block .custom-swatch__sub-title {
    font-size: 1rem;
  }
}

.custom-swatch__sub-title--large {
  font-size: 2rem;
  font-weight: 500;
}

.custom-swatch__link-wrapper {
  cursor: pointer;
  -webkit-perspective: 500;
          perspective: 500;
}

.custom-swatch__link-wrapper .custom-swatch {
  will-change: transform;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: -webkit-transform .25s ease-out;
  transition: -webkit-transform .25s ease-out;
  transition: transform .25s ease-out;
  transition: transform .25s ease-out, -webkit-transform .25s ease-out;
}

.custom-swatch__link-wrapper:hover .custom-swatch,
.custom-swatch__link-wrapper:focus-within .custom-swatch {
  -webkit-transform: rotateX(-5deg) scale(1.04, 1.02) translateY(.4em);
          transform: rotateX(-5deg) scale(1.04, 1.02) translateY(.4em);
}

.custom-swatch__link-wrapper--family-card {
  width: 100%;
}

.custom-swatch__link-wrapper.third-col-sm {
  display: inline-block;
  padding-left: .5rem;
  padding-right: .5rem;
  width: 33.33333%;
}

@media (min-width: 768px) {
  .custom-swatch__link-wrapper.third-col-sm {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.custom-swatch__link-wrapper.third-col-md {
  padding-left: .5rem;
  padding-right: .5rem;
  width: 33.33333%;
}

@media (min-width: 768px) {
  .custom-swatch__link-wrapper.third-col-md {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.custom-swatch__link {
  text-decoration: none;
  color: #222;
  display: block;
}

.content-block .custom-swatch__link {
  color: #fff;
}

.custom-swatch--inverse:before {
  background: radial-gradient(at top left, #000 0%, rgba(0, 0, 0, 0) 70%);
}

.custom-swatch--inverse.custom-swatch--rotate:before {
  background: radial-gradient(at bottom right, #000 0%, rgba(0, 0, 0, 0) 60%);
}

.custom-swatch--inverse .custom-swatch__title,
.custom-swatch--inverse .custom-swatch__link {
  color: #fff;
}

.custom-swatch--family-card .custom-swatch__main-title,
.custom-swatch--family-card .custom-swatch__sub-title {
  font-size: 1rem;
}

@media (min-width: 1024px) {
  .custom-swatch--family-card .custom-swatch__main-title,
  .custom-swatch--family-card .custom-swatch__sub-title {
    font-size: 1.5rem;
  }
}

.custom-swatch__link-wrapper--large .custom-swatch--family-card .custom-swatch__main-title,
.custom-swatch__link-wrapper--large .custom-swatch--family-card .custom-swatch__sub-title {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .custom-swatch__link-wrapper--large .custom-swatch--family-card .custom-swatch__main-title,
  .custom-swatch__link-wrapper--large .custom-swatch--family-card .custom-swatch__sub-title {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .custom-swatch__link-wrapper--large .custom-swatch--family-card .custom-swatch__main-title,
  .custom-swatch__link-wrapper--large .custom-swatch--family-card .custom-swatch__sub-title {
    font-size: 2.5rem;
  }
}

/*
Content Card

For content cards used throughout the site.
Base is used for 4up cards.

Markup:
  <div class="content-card {{modifier_class}}">
    <div class="content-card__inner">
      <div class="content-card__content">
        <h4 class="content-card__title">Cold blending</h4>
        <p class="p">Varia is ready to be formed to meet your design needs. </p>
      </div>
      <div class="content-card__image-outer">
        <img src="https://via.placeholder.com/276x276/f8f8f8?text=content+card+icon" class="content-card__image" alt="content card title"/>
      </div>
    </div>
  </div>

.content-card--full-image - for full width images
.content-card--type-lg - for larger type styles
.content-card--border - for hairline border between cards

Styleguide: Components.card-content
*/

.content-card {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  height: 100%;
  /*! purgecss start ignore *//*! purgecss end ignore */
}

@media (min-width: 600px) {
  .content-card {
    margin-bottom: 1rem;
  }

  .information-card-block .content-card {
    margin-bottom: 0;
  }
}

.content-card .panel__row--content,
.panel__row--inner .content-card {
  padding-left: 0;
  padding-right: 0;
}

.content-card--full-image .content-card__inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

.content-card--full-image .content-card__content {
  width: 100%;
  margin-bottom: 1.5rem;
}

.content-card--full-image .content-card__image-outer {
  margin-top: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  position: relative;
  padding-bottom: 126%;
}

.content-card--full-image .content-card__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center;";
  max-width: none;
}

.content-card--panel {
  width: 100%;
  height: auto;
}

@media (min-width: 600px) {
  .content-card--panel {
    width: 25%;
  }

  .content-card--panel:not(:last-child):not(:nth-child(4n)) {
    border-right-width: 1px;
    border-color: #ccc;
  }

  .modal__overlay--small .content-card--panel {
    width: 100%;
  }
}

.content-card--border:after {
  content: "";
  border-right-width: 1px;
  border-color: #ddd;
  position: absolute;
  right: -1px;
  width: 1px;
  top: 0;
  height: calc(100% - 1.5rem);
}

@media (min-width: 768px) {
  .content-card--border:after {
    height: calc(100% - 3rem);
  }

  .diagram-listing .content-card--border:after {
    height: calc(100% - 2rem);
  }
}

.content-card--border-grey:nth-of-type(2):after {
  content: "";
  border-left-width: 1px;
  border-color: #ccc;
  position: absolute;
  left: -1px;
  width: 1px;
  top: 0;
  height: calc(100% - 2rem);
}

@media (min-width: 768px) {
  .content-card--border-grey:nth-of-type(2):before {
    content: "";
    border-right-width: 1px;
    border-color: #ccc;
    position: absolute;
    right: -1px;
    width: 1px;
    top: 0;
    height: calc(100% - 2rem);
  }
}

.content-card--border-grey:nth-of-type(3):after {
  content: "";
  border-right-width: 1px;
  border-color: #ccc;
  position: absolute;
  right: -1px;
  width: 1px;
  top: 0;
  height: calc(100% - 2rem);
}

@media (min-width: 768px) {
  .content-card--border-grey:nth-of-type(3):after {
    border-width: 0;
  }
}

@media (min-width: 768px) {
  .content-card--border-grey:after {
    content: "";
    border-left-width: 1px;
    border-color: #ccc;
    position: absolute;
    left: -1px;
    width: 1px;
    top: 0;
    height: calc(100% - 2rem);
  }
}

.content-card__inner {
  border-top-width: 8px;
  border-color: #222;
  margin-bottom: 1.5rem;
  padding-top: .5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (min-width: 1024px) {
  .content-card__inner:not(.min-h-0) {
    min-height: 200px;
  }
}

@media (min-width: 768px) {
  .content-card__inner {
    margin-bottom: 3rem;
  }

  .content-card--panel .content-card__inner,
  .information-card-block .content-card__inner {
    margin-bottom: 0;
  }

  .diagram-listing .content-card__inner {
    margin-bottom: 2rem;
  }
}

.information-card-block .content-card__inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.content-card--small-height .content-card__inner {
  min-height: 0px;
}

@media (min-width: 768px) {
  .content-card--type-lg .content-card__title,
  .content-card--type-lg .content-card__description {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .content-card--type-lg .content-card__title,
  .content-card--type-lg .content-card__description {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: -1px;
  }
}

.content-card__content {
  width: 100%;
  margin-right: 0;
}

@media (min-width: 481px) and (max-width: 768px) {
  .information-cards .content-card__content .content-card__description {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: -0.1px;
  }
}

.modal__overlay--small .content-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 768px) {
  .modal__overlay--small .content-card__content {
    width: 60%;
  }
}

.content-card__title {
  font-size: 1rem;
  color: #222;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.5px;
}

@media (min-width: 481px) and (max-width: 768px) {
  .information-cards .content-card__title {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: -0.5px;
  }
}

.content-card__description {
  font-size: 1rem;
  color: #222;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.1px;
}

.content-card__image-outer {
  text-align: center;
  margin-top: .5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .content-card__image-outer {
    margin-top: 2rem;
  }

  .information-card-block .content-card__image-outer {
    margin-top: 2rem;
  }
}

.information-card-block .content-card__image-outer {
  width: 100%;
}

.content-card__image {
  width: 100%;
  max-width: 100%;
}

#modal-materials-properties-content .content-card__image {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 140px;
}

.information-card-block .content-card__image {
  max-width: 100%;
}

/*
Driver Card

For content drivers used throughout the site. Modifiers listed are placed on parent.

Markup:
  <li class="card-driver js-accessible-card {{modifier_class}}">
    <div class="card-driver__image-outer">
      <img class="card-driver__image" src="https://images.3-form.com/images/collaborate/overview/slide_images/get_started.jpg" alt="card driver title">
    </div>
    <div class="card-driver__content-outer">
      <div class="card-driver__content">
        <div class="card-driver__content-inner">
          <h4><a class="card-driver__title js-accessible-link" href="/card-design-woes">Card design woes</a></h4>
          <span class="card-driver__subtitle block">Ten common pitfalls to avoid when designing card components.</span>
        </div>
      </div>
    </div>
  </li>

.card-driver--border - for hairline borders between cards
.card-driver--landscape - for landscape aspect ratio
.card-driver--portrait - for portrait aspect ratio
.card-driver--auto-aspect - for auto aspect ratio
.card-driver--no-interaction - for cards that are not links, and require no interaction animation

Styleguide: Components.card-driver
*/

.card-driver {
  margin-top: .5rem;
  margin-bottom: .5rem;
  position: relative;
  cursor: pointer;
  z-index: 0;
  list-style-type: none;
}

@media (min-width: 1024px) {
  .card-driver {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

.product-application .card-driver {
  height: 100%;
  max-height: 97%;
}

@media (min-width: 768px) {
  .card-driver:not(.card-driver--no-interaction):hover .card-driver__content,
  .card-driver:not(.card-driver--no-interaction):focus .card-driver__content,
  .card-driver:not(.card-driver--no-interaction):focus-within .card-driver__content {
    background-color: #222;
  }

  .card-driver:not(.card-driver--no-interaction):hover .card-driver__content-inner,
  .card-driver:not(.card-driver--no-interaction):focus .card-driver__content-inner,
  .card-driver:not(.card-driver--no-interaction):focus-within .card-driver__content-inner {
    -webkit-transform: translate3d(-8px, -8px, 0);
            transform: translate3d(-8px, -8px, 0);
  }
}

.card-driver--border:before {
  content: "";
  border-top-width: 1px;
  border-color: #ddd;
  top: 0;
  position: absolute;
  width: calc(100% - 1rem);
  left: .5rem;
}

@media (min-width: 768px) {
  .card-driver--border:before {
    width: calc(100% - 2rem);
    left: 1rem;
  }
}

.card-driver--border:after {
  content: "";
  border-right-width: 1px;
  border-color: #ddd;
  position: absolute;
  top: 0;
  right: -1px;
  width: 1px;
  height: calc(100% - 2rem);
}

.swiper-slide .card-driver--border:after {
  height: 100%;
}

@media (max-width: 768px) {
  #modal-find-rep .card-driver--border:before {
    width: 100%;
    left: auto;
  }

  #modal-find-rep .card-driver--border:after {
    border-right-width: 0;
  }
}

.card-driver--border-padding {
  padding-top: .5rem;
}

@media (min-width: 768px) {
  .card-driver--border-padding {
    padding-top: 1rem;
  }
}

.card-driver--landscape .card-driver__image-outer {
  padding-bottom: 75%;
}

.card-driver--auto-aspect .card-driver__image-outer {
  overflow: visible;
  position: static;
  padding-bottom: 0;
}

.card-driver--auto-aspect .card-driver__image {
  height: auto;
  position: static;
}

.card-driver--portrait .card-driver__image-outer {
  padding-bottom: 130%;
}

.card-driver--portrait .card-driver__content-outer {
  margin-top: -8rem;
}

.card-driver--no-interaction {
  cursor: default;
}

.card-driver--no-interaction:hover .card-driver__content-inner,
.card-driver--no-interaction:focus .card-driver__content-inner,
.card-driver--no-interaction:focus-within .card-driver__content-inner {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.card-driver--inverse .label {
  color: #fff;
  line-height: 1.5;
}

.card-driver--inverse .label--line:before {
  background-color: #fff;
}

.card-driver__image-outer {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 90%;
  z-index: -1;
}

.card-driver__image {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}

.card-driver__video-outer .card-driver__image {
  position: relative;
}

.card-driver__video-outer {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: -1;
}

.card-driver__content-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: -1.9rem;
}

@media (min-width: 768px) {
  .card-driver__content-outer {
    margin-top: -3.5rem;
  }
}

.card-driver__content-outer--label {
  position: relative;
  top: -3.25rem;
}

@media (min-width: 768px) {
  .card-driver__content-outer--label {
    top: -2.5rem;
  }
}

.swiper .card-driver__content-outer--label {
  top: -2.5rem;
}

@media (min-width: 768px) {
  .swiper .card-driver__content-outer--label {
    top: -2rem;
  }
}

.card-driver__content-outer--far-right {
  margin-right: -3rem;
}

.card-driver__content {
  width: 75%;
}

.card-driver--inverse .card-driver:hover .card-driver__content {
  background-color: #ccc;
}

.card-driver__content-inner {
  background-color: #fff;
  padding: 1rem;
  -webkit-transition: -webkit-transform .2s ease-in-out;
  transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
  will-change: transform;
}

@media (min-width: 768px) {
  .card-driver__content-inner {
    padding-top: 2rem;
  }
}

@media (min-width: 1024px) {
  .card-driver__content-inner {
    padding: 1.5rem;
    padding-top: 2rem;
  }
}

@media (min-width: 1200px) {
  .card-driver__content-inner {
    padding: 2rem;
  }
}

.card-driver__content-inner p {
  font-size: 1rem;
  font-family: "3form Graphik", Helvetica, sans-serif;
  font-weight: 300;
  color: #222;
  line-height: calc(100% + 8px);
  letter-spacing: -0.5px;
}

.card-driver__content-inner ol {
  font-size: 1rem;
  font-family: "3form Graphik", Helvetica, sans-serif;
  font-weight: 300;
  color: #222;
  line-height: calc(100% + 8px);
  padding-left: .25rem;
  list-style: decimal inside;
}

.card-driver--inverse .card-driver__content-inner {
  color: #fff;
  background-color: #333;
}

.bg-grey-lightest .card-driver__content-inner {
  background-color: #f8f8f8;
}

.card-driver__title {
  color: #222;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.25;
  text-decoration: none;
  pointer-events: auto;
  letter-spacing: -0.5px;
}

@media (min-width: 481px) and (max-width: 1024px) {
  .pcp-driver .card-driver__title {
    font-size: 1.25rem;
  }
}

@media (min-width: 768px) {
  .card-driver__title {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: -1px;
  }
}

.card-driver--inverse .card-driver__title {
  color: #fff;
}

.card-driver__subtitle {
  color: #222;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.25;
  text-decoration: none;
  pointer-events: auto;
  letter-spacing: -0.5px;
}

@media (min-width: 481px) and (max-width: 1024px) {
  .pcp-driver .card-driver__subtitle {
    font-size: 1.25rem;
  }
}

@media (min-width: 768px) {
  .card-driver__subtitle {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: -1px;
  }
}

/*
Modifier - Content Alignment

For content drivers used throughout the site. Modifiers listed are placed on child card-driver__content-outer class. Default alignment is right.

Markup:
  <li class="card-driver js-accessible-card">
    <div class="card-driver__image-outer">
      <img class="card-driver__image" src="https://images.3-form.com/images/collaborate/overview/slide_images/get_started.jpg" alt="card driver title">
    </div>
    <div class="card-driver__content-outer {{modifier_class}}">
      <div class="card-driver__content">
        <div class="card-driver__content-inner">
          <h4><a class="card-driver__title js-accessible-link" href="/card-design-woes">Card design woes</a></h4>
          <p class="body">Ten common pitfalls to avoid when designing card components.</p>
        </div>
      </div>
    </div>
  </li>

.card-driver__content-outer--left - tailwind responsive class for aligning content box left
.card-driver__content-outer--right - tailwind responsive class for aligning content box right

Styleguide: Components.card-driver.child-a
*/

.card-driver__content-outer--left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.card-driver__content-outer--right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/*
Modifier - Content Width

For content drivers used throughout the site. Modifiers listed are placed on child .card-driver__content class. Default with is 75%.

Markup:
  <li class="card-driver js-accessible-card">
    <div class="card-driver__image-outer">
      <img class="card-driver__image" src="https://images.3-form.com/images/collaborate/overview/slide_images/get_started.jpg" alt="card driver title">
    </div>
    <div class="card-driver__content-outer">
      <div class="card-driver__content {{modifier_class}}">
        <div class="card-driver__content-inner">
          <h4><a class="card-driver__title js-accessible-link" href="/card-design-woes">Card design woes</a></h4>
          <p class="body">Ten common pitfalls to avoid when designing card components.</p>
        </div>
      </div>
    </div>
  </li>

.card-driver__content--lg - tailwind responsive class for making content box 5/6 width
.card-driver__content--md - tailwind responsive class for making content box 2/3 width
.card-driver__content--sm - tailwind responsive class for making content box 1/2 width
.card-driver__content--xs - tailwind responsive class for making content box 1/4 width
.card-driver__content--auto - tailwind responsive class for making content box auto width

Styleguide: Components.card-driver.child-b
*/

.card-driver__content--lg {
  width: 83.33333%;
}

.card-driver__content--md {
  width: 66.66666%;
}

.card-driver__content--sm {
  width: 50%;
}

.card-driver__content--smx {
  width: 33%;
}

.card-driver__content--xs {
  width: 25%;
}

.card-driver__content--auto {
  width: auto;
}

/*
Modifier - Top right content

For content blocks that need the title to be at the top right and transformed.

Markup:
  <div class="card-driver card-driver--no-interaction card-driver--top-right-content">
    <div class="card-driver__image-outer">
      <img class="card-driver__image" src="https://images.3-form.com/images/collaborate/overview/slide_images/get_started.jpg" alt="">
    </div>
    <div class="card-driver__content-outer">
      <div class="card-driver__content">
        <div class="card-driver__content-inner">
          <h4 class="card-driver__title" >Human Connection</h4>
          <p class="card-driver__subtitle">Meaninful Design</p>
        </div>
      </div>
    </div>
  </div>

Styleguide: Components.card-driver.child-c
*/

/*
Modifier - Inverse

For the inverse cards that are used inside the 2up carousel

Markup:
  <div class="card-driver card-driver--inverse js-accessible-card p-0">
    <div class="card-driver__image-outer">
      <img class="card-driver__image" src="https://images.3-form.com/gallery/1389/SMP_8821.jpg" alt="card driver title">
    </div>
    <div class="card-driver__content-outer card-driver__content-outer--right">
      <div class="card-driver__content">
        <div class="card-driver__content-inner">
          <h4 class="mb-8"><a class="card-driver__title js-accessible-link" href="/card-design-woes">Card design woes</a></h4>
          <p class="text-lg font-medium text-white">Alice Tully Hall</p>
        </div>
      </div>
    </div>
  </div>

.card-driver--inverse - for cards that are not links, and require no interaction animation

Styleguide: Components.card-driver.child-d
*/

/*
Related Driver Card

Materials PDP and Product Applications have drivers to related pages.
These will link to other pages

Markup:
  <div class="related-driver {{modifier_class}}">
    <div class="related-driver__border-top"></div>
    <a href="#" class="related-driver__link" title="">
      <div class="related-driver__link-text">
        <h3 class="leading-normal font-medium text-base lg:text-md">Chroma</h3>
        <p class="leading-normal font-light text-base lg:text-md">Beautiful,
        Translucent,
        Luminous,
        and Durable</p>
      </div>
    </a>
    <img
      class="related-driver__image"
      src="https://via.placeholder.com/150x120"
      alt=""
    />
  </div>

.related-driver--border-right - for a right border

Styleguide: Components.related-driver
*/

.related-driver {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: .75rem;
  padding-bottom: .75rem;
  padding-right: .25rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 768px) {
  .related-driver {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .related-driver {
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-right: 2rem;
  }
}

.related-driver:hover .related-driver__link {
  background-color: #222;
}

.related-driver:hover .related-driver__link-text {
  -webkit-transform: translate3d(-8px, -8px, 0);
          transform: translate3d(-8px, -8px, 0);
  z-index: 1;
}

.related-driver__link {
  color: #222;
  text-decoration: none;
  position: relative;
  letter-spacing: -0.5px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.related-driver__link-text {
  position: relative;
  width: 100%;
  height: 100%;
  padding: .5rem;
  display: inline-block;
  background-color: #fff;
  will-change: transform;
  -webkit-transition: -webkit-transform .125s ease-out;
  transition: -webkit-transform .125s ease-out;
  transition: transform .125s ease-out;
  transition: transform .125s ease-out, -webkit-transform .125s ease-out;
}

.related-driver__link:hover::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #222;
  content: "";
}

@media (min-width: 768px) {
  .related-driver__link {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

@media (min-width: 1024px) {
  .related-driver__link {
    letter-spacing: -1px;
  }
}

.related-driver__image {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-bottom: 1rem;
  width: 100%;
}

@media (min-width: 768px) {
  .related-driver__image {
    margin-bottom: 0;
    margin-right: 1.5rem;
    width: auto;
    max-width: 150px;
  }
}

@media (min-width: 1024px) {
  .related-driver__image {
    width: 40%;
  }
}

@media (min-width: 1200px) {
  .related-driver__image {
    width: 50%;
  }
}

/*
Carousel Navigation

Swiper carousel arrow navigation

Markup:
  <div class="swiper">
    <div class="swiper__arrows">
      <div class="js-swiper-button-prev swiper-button-prev swiper__button swiper__button--prev"><svg class="icon icon-arrow-pagination icon-arrow-pagination--rotate" aria-hidden="true" focusable="false"><use xlink:href="#icon-arrow-pagination"></use></svg><span class="sr-only">Previous slide</span></div>
      <div class="js-swiper-button-next swiper-button-next swiper__button swiper__button--next"><svg class="icon icon-arrow-pagination" aria-hidden="true" focusable="false"><use xlink:href="#icon-arrow-pagination"></use></svg><span class="sr-only">Next slide</span></div>
    </div>
  </div>
  <div class="swiper swiper--dark">
    <div class="swiper__arrows">
      <div class="js-swiper-button-prev swiper-button-prev swiper__button swiper__button--prev"><svg class="icon icon-arrow-pagination icon-arrow-pagination--rotate" aria-hidden="true" focusable="false"><use xlink:href="#icon-arrow-pagination"></use></svg><span class="sr-only">Previous slide</span></div>
      <div class="js-swiper-button-next swiper-button-next swiper__button swiper__button--next"><svg class="icon icon-arrow-pagination" aria-hidden="true" focusable="false"><use xlink:href="#icon-arrow-pagination"></use></svg><span class="sr-only">Next slide</span></div>
    </div>
  </div>

.swiper--dark

Styleguide: Components.Carousel.a-navigation
*/

.swiper--dark .swiper__arrows {
  background-color: #222;
  color: #fff;
  -webkit-box-shadow: 0 2px 0 0 #111;
          box-shadow: 0 2px 0 0 #111;
}

.swiper--dark .swiper__button--next:after {
  background-color: #fff;
}

.swiper__arrows {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 2px 0 0 #ddd;
          box-shadow: 0 2px 0 0 #ddd;
}

.swiper__arrows.is-disabled {
  display: none;
}

.swiper__button {
  position: static;
  margin-top: 0;
  position: relative;
  display: block;
  -webkit-box-shadow: 0 2px 0 0 #eee;
          box-shadow: 0 2px 0 0 #eee;
  top: auto;
  right: auto;
  left: auto;
  z-index: 1;
  background-image: none;
  text-align: center;
  cursor: pointer;
  font-size: .75rem;
  padding: 1rem;
  width: auto;
  height: auto;
  -webkit-transition: -webkit-box-shadow .125s ease-out;
  transition: -webkit-box-shadow .125s ease-out;
  transition: box-shadow .125s ease-out;
  transition: box-shadow .125s ease-out, -webkit-box-shadow .125s ease-out;
}

body:not(.user-is-tabbing) .swiper__button:focus {
  outline: none;
}

.swiper__button svg {
  -webkit-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out;
  will-change: opacity;
}

.swiper__button:hover {
  -webkit-box-shadow: 0px 8px 0 0 #eee;
          box-shadow: 0px 8px 0 0 #eee;
}

.swiper__button:hover svg {
  opacity: .6;
}

.swiper__button--next:after {
  position: absolute;
  left: 0;
  background-color: #222;
  content: "";
  height: 50%;
  top: 25%;
  width: 1px;
}

.swiper-lazy-preloader {
  z-index: -1;
}

/*
Carousel Pagination

Swiper carousel clickable pagination

Markup:
  <div class="swiper">
    <div class="js-swiper-3up-pagination swiper-pagination swiper__pagination"></div>
  </div>

Styleguide: Components.Carousel.b-pagination
*/

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
}

@media (min-width: 1024px) {
  .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
  }
}

.swiper-wrapper.is-disabled {
  -webkit-transform: translate3d(0px, 0, 0) !important;
          transform: translate3d(0px, 0, 0) !important;
}

.swiper-pagination.is-disabled {
  display: none;
}

.swiper__pagination .swiper-pagination-bullet {
  position: relative;
  background-color: transparent;
  opacity: 1;
  width: 2.5rem;
  height: 1rem;
  margin-right: 1rem;
  border-radius: 0;
}

@media (min-width: 768px) {
  .swiper__pagination .swiper-pagination-bullet {
    width: 4rem;
    margin-right: 1rem;
  }
}

.swiper__pagination .swiper-pagination-bullet:after {
  position: absolute;
  width: 100%;
  left: 0;
  top: .4rem;
  content: "";
  height: 4px;
  -webkit-transition: background .5s;
  transition: background .5s;
}

@media (min-width: 1024px) {
  .swiper__pagination .swiper-pagination-bullet:after {
    height: .25rem;
  }
}

body:not(.user-is-tabbing) .swiper__pagination .swiper-pagination-bullet:focus {
  outline: none;
}

.swiper__pagination .swiper-pagination-bullet:after {
  background-color: #ccc;
}

.swiper__pagination .swiper-pagination-bullet:hover:after {
  background-color: #b2b2b2;
}

.swiper__pagination .swiper-pagination-bullet-active:after,
.swiper__pagination .swiper-pagination-bullet-active:hover:after {
  background-color: #222;
}

.swiper-materials {
  position: relative;
  background-color: #f8f8f8;
}

.has-opened-modal .swiper-materials {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  z-index: 101;
}

@media (min-width: 1024px) {
  .has-opened-modal .swiper-materials {
    position: relative;
    overflow: hidden;
  }
}

.swiper-materials__title-block {
  margin-top: .5rem;
  margin-bottom: 2.5rem;
  padding-top: 3rem;
}

@media (min-width: 768px) {
  .swiper-materials__title-block {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    position: absolute;
    z-index: 10;
    top: 4rem;
  }
}

@media (min-width: 1024px) {
  .swiper-materials__title-block {
    top: 0;
  }
}

.has-opened-modal .swiper-materials__title-block {
  position: absolute;
  opacity: 0;
  z-index: 0;
}

.swiper-materials__slide {
  position: relative;
  overflow: hidden;
  padding-top: 0;
}

@media (min-width: 768px) {
  .swiper-materials__slide {
    padding-top: 16rem;
  }
}

.has-opened-panel .swiper-materials__slide {
  padding-top: 0;
}

@media (min-width: 1024px) {
  .swiper-materials__slide:hover .swiper-materials__image {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }

  .swiper-materials__slide:hover .swiper-materials__expand:after {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: left center;
             transform-origin: left center;
  }
}

.swiper-materials__slide-inner {
  position: relative;
}

.has-opened-panel .swiper-materials__slide-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 100%;
  height: 100vh;
  min-height: 600px;
}

@media (min-width: 1024px) {
  .has-opened-panel .swiper-materials__slide-inner {
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    min-height: 0;
    max-width: 1368px;
  }
}

.swiper-materials__image {
  cursor: pointer;
  will-change: transform;
  -webkit-transition: -webkit-transform 300ms ease;
  transition: -webkit-transform 300ms ease;
  transition: transform 300ms ease;
  transition: transform 300ms ease, -webkit-transform 300ms ease;
}

.has-opened-panel .swiper-materials__slide .swiper-materials__image {
  opacity: 0;
}

@media (min-width: 1024px) {
  .has-opened-panel .swiper-materials__slide .swiper-materials__image {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    max-width: 760px;
    max-height: 640px;
  }
}

.swiper-materials__panel-section {
  position: relative;
  padding-top: 2.5rem;
}

.swiper-materials__panel-section .content-card__inner {
  display: block;
  letter-spacing: -1.25px;
}

.swiper-materials__panel-section .content-card__inner .p {
  color: #222;
  font-size: 2rem;
}

.swiper-materials__panel-section .content-card__inner a {
  letter-spacing: 0;
}

.swiper-materials__panel-section .content-card__title {
  font-size: 2rem;
}

.swiper-materials__properties {
  letter-spacing: -0.5px;
}

.swiper-materials__property-item img {
  height: 32px;
  width: 32px;
}

.swiper-materials__panel-close {
  position: absolute;
  margin-right: -0.5rem;
  margin-top: -0.5rem;
  padding: .5rem;
  top: 0;
  right: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: -webkit-transform 500ms;
  transition: -webkit-transform 500ms;
  transition: transform 500ms;
  transition: transform 500ms, -webkit-transform 500ms;
}

.swiper-materials__panel-close:hover {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.swiper-materials__panel-close svg {
  display: block;
}

.swiper-materials__close {
  width: 1rem;
  height: 1rem;
}

.swiper-materials__link {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.has-opened-panel .swiper-materials__link {
  display: block;
}

.swiper-materials__panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: #efefef;
  padding: 1.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translate3d(0, -200%, 0);
          transform: translate3d(0, -200%, 0);
  will-change: transform;
}

.has-opened-panel .swiper-materials__panel {
  bottom: 0;
  -webkit-transition: -webkit-transform 200ms ease-out;
  transition: -webkit-transform 200ms ease-out;
  transition: transform 200ms ease-out;
  transition: transform 200ms ease-out, -webkit-transform 200ms ease-out;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

@media (min-width: 1024px) {
  .has-opened-panel .swiper-materials__panel {
    position: static;
  }
}

@media (min-width: 1024px) {
  .swiper-materials__panel {
    bottom: 0;
    width: 33.33333%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
}

.swiper-materials__expand {
  display: inline-block;
  margin-left: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
  font-size: 1.25rem;
  letter-spacing: -0.05em;
}

.has-opened-panel .swiper-materials__expand {
  display: none;
}

.swiper-materials__expand:after {
  will-change: transform opacity;
}

.swiper-materials__arrows {
  position: absolute;
  right: 0;
  z-index: 10;
  top: calc(50% - 26px);
}

.has-opened-panel .swiper-materials__arrows {
  display: none;
}

@media (min-width: 1024px) {
  .has-opened-panel .swiper-materials__arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/*
Carousel 3up

For 3up slide carousels typically used SimpleSpec modules.

Markup:
  <div class="swiper swiper-3up overflow-hidden -w-borderfix">
    <div class="js-swiper-3up swiper-container swiper3up__container">
      <div class="swiper-wrapper swiper3up__wrapper">
        <div class="swiper-slide swiper3up__slide">
          <div class="card-driver card-driver--border js-accessible-card px-2 lg:px-4">
            <div class="card-driver__image-outer">
              <img class="card-driver__image" src="https://images.3-form.com/images/products/photo_large/542.jpg" alt="card driver title">
            </div>
            <div class="card-driver__content-outer card-driver__content-outer--right">
              <div class="card-driver__content">
                <div class="card-driver__content-inner">
                  <h4><a class="card-driver__title js-accessible-link" href="/card-design-woes">Card design woes</a></h4>
                  <p class="body">Ten common pitfalls to avoid when designing card components.</p>
                </div>
              </div>
            </div>
          </div>
        </div>
        <div class="swiper-slide swiper3up__slide">
          <div class="card-driver card-driver--border card-driver--border-padding js-accessible-card px-2 lg:px-4">
            <div class="card-driver__image-outer">
              <img class="card-driver__image" src="https://images.3-form.com/gallery/1396/Cerny+Most+shopping+mall+Fyling+discs+Prague+Czech+Republic8.jpg" alt="card driver title">
            </div>
            <div class="card-driver__content-outer card-driver__content-outer--right">
              <div class="card-driver__content">
                <div class="card-driver__content-inner">
                  <h4><a class="card-driver__title js-accessible-link" href="/card-design-woes">Card design woes</a></h4>
                  <p class="body">Ten common pitfalls to avoid when designing card components.</p>
                </div>
              </div>
            </div>
          </div>
        </div>
        <div class="swiper-slide swiper3up__slide">
          <div class="card-driver card-driver--border card-driver--border-padding js-accessible-card px-2 lg:px-4">
            <div class="card-driver__image-outer">
              <img class="card-driver__image" src="https://images.3-form.com/gallery/1389/SMP_8821.jpg" alt="card driver title">
            </div>
            <div class="card-driver__content-outer card-driver__content-outer--right">
              <div class="card-driver__content">
                <div class="card-driver__content-inner">
                  <h4><a class="card-driver__title js-accessible-link" href="/card-design-woes">Card design woes</a></h4>
                  <p class="body">Ten common pitfalls to avoid.</p>
                </div>
              </div>
            </div>
          </div>
        </div>
        <div class="swiper-slide swiper3up__slide">
          <div class="card-driver card-driver--border card-driver--border-padding js-accessible-card px-2 lg:px-4">
            <div class="card-driver__image-outer">
              <img class="card-driver__image" src="https://images.3-form.com/images/collaborate/overview/slide_images/get_started.jpg" alt="card driver title">
            </div>
            <div class="card-driver__content-outer card-driver__content-outer--right">
              <div class="card-driver__content">
                <div class="card-driver__content-inner">
                  <h4><a class="card-driver__title js-accessible-link" href="/card-design-woes">Card design woes</a></h4>
                  <p class="body">Ten common pitfalls to avoid when designing card components.</p>
                </div>
              </div>
            </div>
          </div>
        </div>
      </div>
    </div>
    <div class="js-swiper-3up-pagination swiper-pagination swiper__pagination swiper-3up__pagination"></div>
    <div class="swiper__arrows swiper-3up__arrows">
      <div class="js-swiper-3up-button-prev swiper-button-prev swiper__button swiper__button--prev"><svg class="icon icon-arrow-pagination icon-arrow-pagination--rotate" aria-hidden="true" focusable="false"><use xlink:href="#icon-arrow-pagination"></use></svg><span class="sr-only">Previous slide</span></div>
      <div class="js-swiper-3up-button-next swiper-button-next swiper__button swiper__button--next"><svg class="icon icon-arrow-pagination" aria-hidden="true" focusable="false"><use xlink:href="#icon-arrow-pagination"></use></svg><span class="sr-only">Next slide</span></div>
    </div>
  </div>

Styleguide: Components.Carousel.d-3up
*/

.swiper-3up {
  position: relative;
  padding-bottom: 3rem;
}

.swiper-3up__slide {
  width: 75%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (min-width: 1024px) {
  .swiper-3up__slide {
    width: 100%;
  }
}

.swiper-3up__arrows {
  position: absolute;
  right: 0;
  z-index: 10;
  display: none;
  top: calc(34% - 26px);
}

@media (min-width: 1024px) {
  .swiper-3up__arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.swiper-3up__arrows.swiper__arrows {
  margin-right: 1rem;
}

.swiper-3up__pagination {
  display: none;
  right: -1rem;
}

@media (min-width: 1024px) {
  .swiper-3up__pagination {
    display: block;
  }
}

/*
Global Navigation Header

For the main site navigation on desktop

Markup:
<nav role="menubar" aria-label="Main Navigation" class="global-nav bg-grey-lightest">
  <div class="global-nav__header grid-wrapper">
    <ul class="global-nav__wrapper">
      <li class="has-submenu global-nav__parent-list-item">
        <a href="#nav-open" aria-expanded="false" aria-haspopup="true">Inspiration</a>
        <ul>
          <li class="global-nav__child-list-item">
            <a href="#">Child1</a>
          </li>
          <li class="global-nav__child-list-item">
            <a href="#">Child1</a>
          </li>
        </ul>
      </li>
      <li class="has-submenu global-nav__parent-list-item">
        <a href="#nav-open" aria-expanded="false" aria-haspopup="true">Products</a>
        <ul>
          <li class="global-nav__child-list-item">
            <a href="#">Child1</a>
          </li>
          <li class="global-nav__child-list-item">
            <a href="#">Child1</a>
          </li>
        </ul>
      </li>
      <li class="has-submenu global-nav__parent-list-item">
        <a href="#nav-open" aria-expanded="false" aria-haspopup="true">Materials</a>
        <ul>
          <li class="global-nav__child-list-item">
            <a href="#">Child1</a>
          </li>
          <li class="global-nav__child-list-item">
            <a href="#">Child1</a>
          </li>
        </ul>
      </li>
      <li class="has-submenu global-nav__parent-list-item">
        <a href="#nav-open" aria-expanded="false" aria-haspopup="true">Hardware</a>
        <ul>
          <li class="global-nav__child-list-item">
            <a href="#">Child1</a>
          </li>
          <li class="global-nav__child-list-item">
            <a href="#">Child1</a>
          </li>
        </ul>
      </li>
      <li class="has-submenu global-nav__parent-list-item">
        <a href="#nav-open" aria-expanded="false" aria-haspopup="true">Services</a>
        <ul>
          <li class="global-nav__child-list-item">
            <a href="#">Child1</a>
          </li>
          <li class="global-nav__child-list-item">
            <a href="#">Child1</a>
          </li>
        </ul>
      </li>
    </ul>
    <ul class="global-nav__wrapper {{modifier_class}}">
      <li class="has-submenu global-nav__parent-list-item">
        <a href="#nav-open" aria-expanded="false" aria-haspopup="true">US</a>
        <ul>
          <li class="global-nav__child-list-item">
            <a href="#">Child1</a>
          </li>
          <li class="global-nav__child-list-item">
            <a href="#">Child1</a>
          </li>
        </ul>
      </li>
      <li class="global-nav__parent-list-item">
        <a href="#">Sing in</a>
      </li>
      <li class="global-nav__parent-list-item">
        <a href="#">Find a Rep</a>
      </li>
      <li class="global-nav__parent-list-item">
        <a href="#">Search</a>
      </li>
    </ul>
  </div>
</nav>


.global-nav__wrapper--right - for right unordered list nav

Styleguide: Components.navigation.header
*/

#main {
  top: 75px;
}

@media (min-width: 1024px) {
  #main {
    top: 122px;
  }
}

.global-nav {
  width: 100%;
  position: relative;
  padding-bottom: 4rem;
  z-index: 100;
  /* 3 columns background blocks *//* top row *//**
   *   Mobile Specific
   */
}

@media (min-width: 1024px) {
  .global-nav {
    padding-bottom: 0;
  }
}

.has-inverse-nav .global-nav {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, .3)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .3) 100%);
}

.global-nav:after {
  position: absolute;
  background-color: #f8f8f8;
  opacity: 0;
  content: "";
  will-change: opacity;
  -webkit-transition: opacity 300ms cubic-bezier(0, 0, .3, 1) 100ms;
  transition: opacity 300ms cubic-bezier(0, 0, .3, 1) 100ms;
  z-index: 29;
}

@media (min-width: 1024px) {
  .global-nav:after {
    background-color: #222;
  }
}

.global-nav.has-overlay {
  z-index: 1000;
}

.global-nav.has-overlay:after {
  height: 100vh;
  width: 100vw;
  opacity: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

@media (min-width: 1024px) {
  .global-nav.has-overlay:after {
    opacity: .8;
    cursor: pointer;
  }
}

.global-nav__block {
  height: 100vh;
  width: 33.33333%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  will-change: transform;
  -webkit-transition: opacity 200ms ease-out, -webkit-transform 200ms ease-out;
  transition: opacity 200ms ease-out, -webkit-transform 200ms ease-out;
  transition: transform 200ms ease-out, opacity 200ms ease-out;
  transition: transform 200ms ease-out, opacity 200ms ease-out, -webkit-transform 200ms ease-out;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  z-index: 30;
}

@media (min-width: 1024px) {
  .global-nav__block {
    /* col 1 *//* col 2 *//* col 3 */
  }

  .global-nav__block--first {
    background-color: #efefef;
  }

  .has-opened-first-panel .global-nav__block--first {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  .global-nav__block--second {
    background-color: #e5e5e5;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  .has-opened-second-panel .global-nav__block--second {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }

  .global-nav__block--last {
    -webkit-transition: opacity 300ms ease-out, -webkit-transform 0s;
    transition: opacity 300ms ease-out, -webkit-transform 0s;
    transition: opacity 300ms ease-out, transform 0s;
    transition: opacity 300ms ease-out, transform 0s, -webkit-transform 0s;
  }

  .has-opened-first-panel .global-nav__block--last {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }

  .has-opened-second-panel .global-nav__block--last {
    visibility: hidden;
    opacity: 0;
  }

  .has-opened-third-panel .global-nav__block--last {
    background-color: #fff;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
  }
}

.global-nav__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 2rem;
  padding-right: 2rem;
  position: relative;
  visibility: hidden;
  opacity: 0;
  background-color: #f8f8f8;
  z-index: 30;
  -webkit-transition: opacity 300ms cubic-bezier(0, 0, .3, 1) 100ms, background-color 300ms cubic-bezier(0, 0, .3, 1);
  transition: opacity 300ms cubic-bezier(0, 0, .3, 1) 100ms, background-color 300ms cubic-bezier(0, 0, .3, 1);
}

.has-inverse-nav .global-nav__header {
  background-color: transparent;
}

.has-overlay .global-nav__header {
  visibility: visible;
  opacity: 1;
  background-color: #f8f8f8;
}

@media (min-width: 1024px) {
  .global-nav__header {
    visibility: visible;
    opacity: 1;
  }
}

.global-nav__wrapper {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
}

@media (min-width: 1024px) {
  .global-nav__wrapper {
    position: static;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(1) > a {
  -webkit-animation-delay: .1s;
          animation-delay: .1s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(1) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(2) > a {
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(2) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(3) > a {
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(3) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(4) > a {
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(4) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(5) > a {
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(5) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(6) > a {
  -webkit-animation-delay: .6s;
          animation-delay: .6s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(6) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(7) > a {
  -webkit-animation-delay: .7s;
          animation-delay: .7s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(7) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(8) > a {
  -webkit-animation-delay: .8s;
          animation-delay: .8s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(8) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(9) > a {
  -webkit-animation-delay: .9s;
          animation-delay: .9s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(9) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(10) > a {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(10) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(11) > a {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(11) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(12) > a {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(12) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(13) > a {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(13) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(14) > a {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(14) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(15) > a {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(15) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(16) > a {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(16) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(17) > a {
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(17) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(18) > a {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(18) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(19) > a {
  -webkit-animation-delay: 1.9s;
          animation-delay: 1.9s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(19) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(20) > a {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(20) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(21) > a {
  -webkit-animation-delay: 2.1s;
          animation-delay: 2.1s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(21) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(22) > a {
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(22) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(23) > a {
  -webkit-animation-delay: 2.3s;
          animation-delay: 2.3s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(23) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(24) > a {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(24) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(25) > a {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(25) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(26) > a {
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(26) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(27) > a {
  -webkit-animation-delay: 2.7s;
          animation-delay: 2.7s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(27) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(28) > a {
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(28) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(29) > a {
  -webkit-animation-delay: 2.9s;
          animation-delay: 2.9s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(29) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(30) > a {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(30) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(31) > a {
  -webkit-animation-delay: 3.1s;
          animation-delay: 3.1s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(31) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(32) > a {
  -webkit-animation-delay: 3.2s;
          animation-delay: 3.2s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(32) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(33) > a {
  -webkit-animation-delay: 3.3s;
          animation-delay: 3.3s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(33) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(34) > a {
  -webkit-animation-delay: 3.4s;
          animation-delay: 3.4s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(34) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(35) > a {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(35) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(36) > a {
  -webkit-animation-delay: 3.6s;
          animation-delay: 3.6s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(36) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(37) > a {
  -webkit-animation-delay: 3.7s;
          animation-delay: 3.7s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(37) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(38) > a {
  -webkit-animation-delay: 3.8s;
          animation-delay: 3.8s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(38) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(39) > a {
  -webkit-animation-delay: 3.9s;
          animation-delay: 3.9s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(39) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(40) > a {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(40) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(41) > a {
  -webkit-animation-delay: 4.1s;
          animation-delay: 4.1s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(41) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(42) > a {
  -webkit-animation-delay: 4.2s;
          animation-delay: 4.2s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(42) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(43) > a {
  -webkit-animation-delay: 4.3s;
          animation-delay: 4.3s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(43) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(44) > a {
  -webkit-animation-delay: 4.4s;
          animation-delay: 4.4s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(44) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(45) > a {
  -webkit-animation-delay: 4.5s;
          animation-delay: 4.5s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(45) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(46) > a {
  -webkit-animation-delay: 4.6s;
          animation-delay: 4.6s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(46) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(47) > a {
  -webkit-animation-delay: 4.7s;
          animation-delay: 4.7s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(47) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(48) > a {
  -webkit-animation-delay: 4.8s;
          animation-delay: 4.8s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(48) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(49) > a {
  -webkit-animation-delay: 4.9s;
          animation-delay: 4.9s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(49) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(50) > a {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(50) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(51) > a {
  -webkit-animation-delay: 5.1s;
          animation-delay: 5.1s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(51) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(52) > a {
  -webkit-animation-delay: 5.2s;
          animation-delay: 5.2s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(52) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(53) > a {
  -webkit-animation-delay: 5.3s;
          animation-delay: 5.3s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(53) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(54) > a {
  -webkit-animation-delay: 5.4s;
          animation-delay: 5.4s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(54) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(55) > a {
  -webkit-animation-delay: 5.5s;
          animation-delay: 5.5s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(55) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(56) > a {
  -webkit-animation-delay: 5.6s;
          animation-delay: 5.6s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(56) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(57) > a {
  -webkit-animation-delay: 5.7s;
          animation-delay: 5.7s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(57) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(58) > a {
  -webkit-animation-delay: 5.8s;
          animation-delay: 5.8s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(58) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(59) > a {
  -webkit-animation-delay: 5.9s;
          animation-delay: 5.9s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(59) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(60) > a {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(60) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(61) > a {
  -webkit-animation-delay: 6.1s;
          animation-delay: 6.1s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(61) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(62) > a {
  -webkit-animation-delay: 6.2s;
          animation-delay: 6.2s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(62) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(63) > a {
  -webkit-animation-delay: 6.3s;
          animation-delay: 6.3s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(63) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(64) > a {
  -webkit-animation-delay: 6.4s;
          animation-delay: 6.4s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(64) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(65) > a {
  -webkit-animation-delay: 6.5s;
          animation-delay: 6.5s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(65) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(66) > a {
  -webkit-animation-delay: 6.6s;
          animation-delay: 6.6s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(66) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(67) > a {
  -webkit-animation-delay: 6.7s;
          animation-delay: 6.7s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(67) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(68) > a {
  -webkit-animation-delay: 6.8s;
          animation-delay: 6.8s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(68) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(69) > a {
  -webkit-animation-delay: 6.9s;
          animation-delay: 6.9s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(69) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(70) > a {
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(70) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(71) > a {
  -webkit-animation-delay: 7.1s;
          animation-delay: 7.1s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(71) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(72) > a {
  -webkit-animation-delay: 7.2s;
          animation-delay: 7.2s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(72) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(73) > a {
  -webkit-animation-delay: 7.3s;
          animation-delay: 7.3s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(73) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(74) > a {
  -webkit-animation-delay: 7.4s;
          animation-delay: 7.4s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(74) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(75) > a {
  -webkit-animation-delay: 7.5s;
          animation-delay: 7.5s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(75) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(76) > a {
  -webkit-animation-delay: 7.6s;
          animation-delay: 7.6s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(76) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(77) > a {
  -webkit-animation-delay: 7.7s;
          animation-delay: 7.7s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(77) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(78) > a {
  -webkit-animation-delay: 7.8s;
          animation-delay: 7.8s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(78) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(79) > a {
  -webkit-animation-delay: 7.9s;
          animation-delay: 7.9s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(79) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(80) > a {
  -webkit-animation-delay: 8s;
          animation-delay: 8s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(80) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(81) > a {
  -webkit-animation-delay: 8.1s;
          animation-delay: 8.1s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(81) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(82) > a {
  -webkit-animation-delay: 8.2s;
          animation-delay: 8.2s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(82) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(83) > a {
  -webkit-animation-delay: 8.3s;
          animation-delay: 8.3s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(83) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(84) > a {
  -webkit-animation-delay: 8.4s;
          animation-delay: 8.4s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(84) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(85) > a {
  -webkit-animation-delay: 8.5s;
          animation-delay: 8.5s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(85) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(86) > a {
  -webkit-animation-delay: 8.6s;
          animation-delay: 8.6s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(86) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(87) > a {
  -webkit-animation-delay: 8.7s;
          animation-delay: 8.7s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(87) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(88) > a {
  -webkit-animation-delay: 8.8s;
          animation-delay: 8.8s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(88) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(89) > a {
  -webkit-animation-delay: 8.9s;
          animation-delay: 8.9s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(89) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(90) > a {
  -webkit-animation-delay: 9s;
          animation-delay: 9s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(90) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(91) > a {
  -webkit-animation-delay: 9.1s;
          animation-delay: 9.1s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(91) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(92) > a {
  -webkit-animation-delay: 9.2s;
          animation-delay: 9.2s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(92) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(93) > a {
  -webkit-animation-delay: 9.3s;
          animation-delay: 9.3s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(93) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(94) > a {
  -webkit-animation-delay: 9.4s;
          animation-delay: 9.4s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(94) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(95) > a {
  -webkit-animation-delay: 9.5s;
          animation-delay: 9.5s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(95) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(96) > a {
  -webkit-animation-delay: 9.6s;
          animation-delay: 9.6s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(96) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(97) > a {
  -webkit-animation-delay: 9.7s;
          animation-delay: 9.7s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(97) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(98) > a {
  -webkit-animation-delay: 9.8s;
          animation-delay: 9.8s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(98) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(99) > a {
  -webkit-animation-delay: 9.9s;
          animation-delay: 9.9s;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__wrapper .global-nav__parent-list-item:nth-of-type(99) > a {
    -webkit-animation-delay: unset;
            animation-delay: unset;
  }
}

.global-nav__wrapper--left {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 1.5rem;
  padding-top: 1.5rem;
  top: 134px;
  left: 1rem;
  height: calc(100vh - 134px);
  width: calc(100% - 1rem);
  background-color: #e4e4e4;
}

@media (min-width: 1024px) {
  .global-nav__wrapper--left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    background-color: transparent;
    width: auto;
    height: auto;
    padding: 0;
    -webkit-overflow-scrolling: touch;
  }
}

.global-nav__wrapper--right {
  display: none;
}

@media (min-width: 1024px) {
  .global-nav__wrapper--right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .global-nav__wrapper--right .global-nav__parent-list-item {
    padding-right: 0;
    padding-left: 1rem;
  }

  .global-nav__wrapper--right .global-nav__parent-list-item > a {
    font-size: .75rem;
    padding-top: 31px;
    line-height: 24px;
    padding-bottom: 19px;
  }
}

.global-nav__parent-list-item {
  list-style: none;
  padding: 0;
  padding-right: 2rem;
}

.global-nav__parent-list-item > a {
  padding-top: 1rem;
  padding-bottom: .5rem;
  margin-bottom: .5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  color: #222;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: -0.032em;
  position: relative;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .global-nav__parent-list-item > a {
    display: block;
  }

  .has-inverse-nav .global-nav__parent-list-item > a {
    color: #fff;
  }

  .has-inverse-nav .global-nav__parent-list-item > a:after {
    background-color: #fff;
  }
}

.has-overlay .global-nav__parent-list-item > a {
  visibility: visible;
  color: #222;
  -webkit-animation: slideInFadeIn .8s ease forwards 300ms;
          animation: slideInFadeIn .8s ease forwards 300ms;
}

@media (min-width: 1024px) {
  .has-overlay .global-nav__parent-list-item > a {
    -webkit-animation: unset;
            animation: unset;
  }
}

.has-overlay .global-nav__parent-list-item > a:after {
  background-color: #222;
}

@media (min-width: 1024px) {
  .global-nav__parent-list-item > a {
    padding-top: 2rem;
    padding-bottom: 1.5rem;
    margin-top: 0;
    margin-bottom: 0;
    display: inline-block;
    opacity: 1;
    visibility: visible;
  }

  .global-nav__parent-list-item > a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #222;
    height: 2px;
    will-change: transform;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right center;
            transform-origin: right center;
    -webkit-transition: -webkit-transform .25s ease-in;
    transition: -webkit-transform .25s ease-in;
    transition: transform .25s ease-in;
    transition: transform .25s ease-in, -webkit-transform .25s ease-in;
  }

  .global-nav__parent-list-item > a.is-active-page {
    -webkit-box-shadow: inset 0px 2px 0px 0px #222;
            box-shadow: inset 0px 2px 0px 0px #222;
  }

  .has-inverse-nav .global-nav__parent-list-item > a.is-active-page {
    -webkit-box-shadow: inset 0px 2px 0px 0px #fff;
            box-shadow: inset 0px 2px 0px 0px #fff;
  }
}

.global-nav__parent-list-item > a:focus {
  outline: none;
}

.global-nav__parent-list-item > a.is-active:after,
.global-nav__parent-list-item > a:focus:after,
.global-nav__parent-list-item > a:hover:after {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.global-nav__parent-list-item.is-active .global-nav__child-list-item > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__child-list-item.is-active .global-nav__subchild-list-item > .global-nav__child-link {
  -webkit-animation: slideInFadeIn .8s ease forwards 300ms;
          animation: slideInFadeIn .8s ease forwards 300ms;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(1) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(1),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(1) > .global-nav__child-link {
  -webkit-animation-delay: .1s;
          animation-delay: .1s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(2) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(2),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(2) > .global-nav__child-link {
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(3) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(3),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(3) > .global-nav__child-link {
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(4) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(4),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(4) > .global-nav__child-link {
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(5) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(5),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(5) > .global-nav__child-link {
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(6) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(6),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(6) > .global-nav__child-link {
  -webkit-animation-delay: .6s;
          animation-delay: .6s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(7) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(7),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(7) > .global-nav__child-link {
  -webkit-animation-delay: .7s;
          animation-delay: .7s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(8) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(8),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(8) > .global-nav__child-link {
  -webkit-animation-delay: .8s;
          animation-delay: .8s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(9) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(9),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(9) > .global-nav__child-link {
  -webkit-animation-delay: .9s;
          animation-delay: .9s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(10) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(10),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(10) > .global-nav__child-link {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(11) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(11),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(11) > .global-nav__child-link {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(12) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(12),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(12) > .global-nav__child-link {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(13) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(13),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(13) > .global-nav__child-link {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(14) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(14),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(14) > .global-nav__child-link {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(15) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(15),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(15) > .global-nav__child-link {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(16) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(16),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(16) > .global-nav__child-link {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(17) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(17),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(17) > .global-nav__child-link {
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(18) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(18),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(18) > .global-nav__child-link {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(19) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(19),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(19) > .global-nav__child-link {
  -webkit-animation-delay: 1.9s;
          animation-delay: 1.9s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(20) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(20),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(20) > .global-nav__child-link {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(21) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(21),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(21) > .global-nav__child-link {
  -webkit-animation-delay: 2.1s;
          animation-delay: 2.1s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(22) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(22),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(22) > .global-nav__child-link {
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(23) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(23),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(23) > .global-nav__child-link {
  -webkit-animation-delay: 2.3s;
          animation-delay: 2.3s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(24) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(24),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(24) > .global-nav__child-link {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(25) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(25),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(25) > .global-nav__child-link {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(26) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(26),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(26) > .global-nav__child-link {
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(27) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(27),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(27) > .global-nav__child-link {
  -webkit-animation-delay: 2.7s;
          animation-delay: 2.7s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(28) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(28),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(28) > .global-nav__child-link {
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(29) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(29),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(29) > .global-nav__child-link {
  -webkit-animation-delay: 2.9s;
          animation-delay: 2.9s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(30) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(30),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(30) > .global-nav__child-link {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(31) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(31),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(31) > .global-nav__child-link {
  -webkit-animation-delay: 3.1s;
          animation-delay: 3.1s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(32) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(32),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(32) > .global-nav__child-link {
  -webkit-animation-delay: 3.2s;
          animation-delay: 3.2s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(33) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(33),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(33) > .global-nav__child-link {
  -webkit-animation-delay: 3.3s;
          animation-delay: 3.3s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(34) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(34),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(34) > .global-nav__child-link {
  -webkit-animation-delay: 3.4s;
          animation-delay: 3.4s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(35) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(35),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(35) > .global-nav__child-link {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(36) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(36),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(36) > .global-nav__child-link {
  -webkit-animation-delay: 3.6s;
          animation-delay: 3.6s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(37) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(37),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(37) > .global-nav__child-link {
  -webkit-animation-delay: 3.7s;
          animation-delay: 3.7s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(38) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(38),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(38) > .global-nav__child-link {
  -webkit-animation-delay: 3.8s;
          animation-delay: 3.8s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(39) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(39),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(39) > .global-nav__child-link {
  -webkit-animation-delay: 3.9s;
          animation-delay: 3.9s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(40) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(40),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(40) > .global-nav__child-link {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(41) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(41),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(41) > .global-nav__child-link {
  -webkit-animation-delay: 4.1s;
          animation-delay: 4.1s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(42) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(42),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(42) > .global-nav__child-link {
  -webkit-animation-delay: 4.2s;
          animation-delay: 4.2s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(43) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(43),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(43) > .global-nav__child-link {
  -webkit-animation-delay: 4.3s;
          animation-delay: 4.3s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(44) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(44),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(44) > .global-nav__child-link {
  -webkit-animation-delay: 4.4s;
          animation-delay: 4.4s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(45) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(45),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(45) > .global-nav__child-link {
  -webkit-animation-delay: 4.5s;
          animation-delay: 4.5s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(46) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(46),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(46) > .global-nav__child-link {
  -webkit-animation-delay: 4.6s;
          animation-delay: 4.6s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(47) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(47),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(47) > .global-nav__child-link {
  -webkit-animation-delay: 4.7s;
          animation-delay: 4.7s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(48) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(48),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(48) > .global-nav__child-link {
  -webkit-animation-delay: 4.8s;
          animation-delay: 4.8s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(49) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(49),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(49) > .global-nav__child-link {
  -webkit-animation-delay: 4.9s;
          animation-delay: 4.9s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(50) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(50),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(50) > .global-nav__child-link {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(51) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(51),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(51) > .global-nav__child-link {
  -webkit-animation-delay: 5.1s;
          animation-delay: 5.1s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(52) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(52),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(52) > .global-nav__child-link {
  -webkit-animation-delay: 5.2s;
          animation-delay: 5.2s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(53) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(53),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(53) > .global-nav__child-link {
  -webkit-animation-delay: 5.3s;
          animation-delay: 5.3s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(54) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(54),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(54) > .global-nav__child-link {
  -webkit-animation-delay: 5.4s;
          animation-delay: 5.4s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(55) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(55),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(55) > .global-nav__child-link {
  -webkit-animation-delay: 5.5s;
          animation-delay: 5.5s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(56) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(56),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(56) > .global-nav__child-link {
  -webkit-animation-delay: 5.6s;
          animation-delay: 5.6s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(57) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(57),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(57) > .global-nav__child-link {
  -webkit-animation-delay: 5.7s;
          animation-delay: 5.7s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(58) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(58),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(58) > .global-nav__child-link {
  -webkit-animation-delay: 5.8s;
          animation-delay: 5.8s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(59) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(59),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(59) > .global-nav__child-link {
  -webkit-animation-delay: 5.9s;
          animation-delay: 5.9s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(60) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(60),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(60) > .global-nav__child-link {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(61) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(61),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(61) > .global-nav__child-link {
  -webkit-animation-delay: 6.1s;
          animation-delay: 6.1s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(62) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(62),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(62) > .global-nav__child-link {
  -webkit-animation-delay: 6.2s;
          animation-delay: 6.2s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(63) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(63),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(63) > .global-nav__child-link {
  -webkit-animation-delay: 6.3s;
          animation-delay: 6.3s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(64) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(64),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(64) > .global-nav__child-link {
  -webkit-animation-delay: 6.4s;
          animation-delay: 6.4s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(65) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(65),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(65) > .global-nav__child-link {
  -webkit-animation-delay: 6.5s;
          animation-delay: 6.5s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(66) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(66),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(66) > .global-nav__child-link {
  -webkit-animation-delay: 6.6s;
          animation-delay: 6.6s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(67) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(67),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(67) > .global-nav__child-link {
  -webkit-animation-delay: 6.7s;
          animation-delay: 6.7s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(68) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(68),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(68) > .global-nav__child-link {
  -webkit-animation-delay: 6.8s;
          animation-delay: 6.8s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(69) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(69),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(69) > .global-nav__child-link {
  -webkit-animation-delay: 6.9s;
          animation-delay: 6.9s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(70) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(70),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(70) > .global-nav__child-link {
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(71) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(71),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(71) > .global-nav__child-link {
  -webkit-animation-delay: 7.1s;
          animation-delay: 7.1s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(72) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(72),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(72) > .global-nav__child-link {
  -webkit-animation-delay: 7.2s;
          animation-delay: 7.2s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(73) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(73),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(73) > .global-nav__child-link {
  -webkit-animation-delay: 7.3s;
          animation-delay: 7.3s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(74) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(74),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(74) > .global-nav__child-link {
  -webkit-animation-delay: 7.4s;
          animation-delay: 7.4s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(75) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(75),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(75) > .global-nav__child-link {
  -webkit-animation-delay: 7.5s;
          animation-delay: 7.5s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(76) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(76),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(76) > .global-nav__child-link {
  -webkit-animation-delay: 7.6s;
          animation-delay: 7.6s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(77) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(77),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(77) > .global-nav__child-link {
  -webkit-animation-delay: 7.7s;
          animation-delay: 7.7s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(78) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(78),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(78) > .global-nav__child-link {
  -webkit-animation-delay: 7.8s;
          animation-delay: 7.8s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(79) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(79),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(79) > .global-nav__child-link {
  -webkit-animation-delay: 7.9s;
          animation-delay: 7.9s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(80) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(80),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(80) > .global-nav__child-link {
  -webkit-animation-delay: 8s;
          animation-delay: 8s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(81) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(81),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(81) > .global-nav__child-link {
  -webkit-animation-delay: 8.1s;
          animation-delay: 8.1s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(82) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(82),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(82) > .global-nav__child-link {
  -webkit-animation-delay: 8.2s;
          animation-delay: 8.2s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(83) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(83),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(83) > .global-nav__child-link {
  -webkit-animation-delay: 8.3s;
          animation-delay: 8.3s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(84) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(84),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(84) > .global-nav__child-link {
  -webkit-animation-delay: 8.4s;
          animation-delay: 8.4s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(85) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(85),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(85) > .global-nav__child-link {
  -webkit-animation-delay: 8.5s;
          animation-delay: 8.5s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(86) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(86),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(86) > .global-nav__child-link {
  -webkit-animation-delay: 8.6s;
          animation-delay: 8.6s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(87) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(87),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(87) > .global-nav__child-link {
  -webkit-animation-delay: 8.7s;
          animation-delay: 8.7s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(88) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(88),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(88) > .global-nav__child-link {
  -webkit-animation-delay: 8.8s;
          animation-delay: 8.8s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(89) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(89),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(89) > .global-nav__child-link {
  -webkit-animation-delay: 8.9s;
          animation-delay: 8.9s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(90) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(90),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(90) > .global-nav__child-link {
  -webkit-animation-delay: 9s;
          animation-delay: 9s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(91) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(91),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(91) > .global-nav__child-link {
  -webkit-animation-delay: 9.1s;
          animation-delay: 9.1s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(92) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(92),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(92) > .global-nav__child-link {
  -webkit-animation-delay: 9.2s;
          animation-delay: 9.2s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(93) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(93),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(93) > .global-nav__child-link {
  -webkit-animation-delay: 9.3s;
          animation-delay: 9.3s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(94) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(94),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(94) > .global-nav__child-link {
  -webkit-animation-delay: 9.4s;
          animation-delay: 9.4s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(95) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(95),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(95) > .global-nav__child-link {
  -webkit-animation-delay: 9.5s;
          animation-delay: 9.5s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(96) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(96),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(96) > .global-nav__child-link {
  -webkit-animation-delay: 9.6s;
          animation-delay: 9.6s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(97) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(97),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(97) > .global-nav__child-link {
  -webkit-animation-delay: 9.7s;
          animation-delay: 9.7s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(98) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(98),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(98) > .global-nav__child-link {
  -webkit-animation-delay: 9.8s;
          animation-delay: 9.8s;
}

.global-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(99) > .global-nav__child-link,
.global-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(99),
.global-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(99) > .global-nav__child-link {
  -webkit-animation-delay: 9.9s;
          animation-delay: 9.9s;
}

.global-nav__label {
  padding-top: 1.5rem;
  padding-bottom: 1rem;
  opacity: 0;
  font-weight: 400;
}

.is-active .global-nav__label {
  -webkit-animation: slideInFadeIn .8s ease forwards 300ms;
          animation: slideInFadeIn .8s ease forwards 300ms;
}

.global-nav__subchild-list-item a:not(.card-driver__title) {
  font-size: 1rem;
}

.global-nav__child-link {
  margin-top: 1rem;
  padding-bottom: .5rem;
  margin-bottom: .5rem;
  font-size: 1rem;
  display: inline-block;
  color: #222;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: -0.032em;
  opacity: 0;
  -webkit-transition: opacity .25s ease-out, -webkit-transform .25s ease-out;
  transition: opacity .25s ease-out, -webkit-transform .25s ease-out;
  transition: opacity .25s ease-out, transform .25s ease-out;
  transition: opacity .25s ease-out, transform .25s ease-out, -webkit-transform .25s ease-out;
}

@media (min-width: 1024px) {
  .global-nav__child-link {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0;
    max-width: calc(33vw - 4rem);
    font-size: 1.25rem;
  }
}

.global-nav__child-link:after,
.global-nav__child-link--landing .a:after,
.global-nav__child-link--landing .in-page-nav__item:after {
  height: 0px;
}

@media (min-width: 1024px) {
  .global-nav__child-link:after,
  .global-nav__child-link--landing .a:after,
  .global-nav__child-link--landing .in-page-nav__item:after {
    top: calc(100% + 2px);
    height: 1px;
  }
}

.is-active > .global-nav__child-link:after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.global-nav__child-link--landing {
  display: none;
}

@media only screen and (max-width: 991px) {
  .is-active .is-active .global-nav__child-link--landing {
    position: absolute;
    display: block;
    top: -50px;
    right: 1rem;
  }
}

.global-nav__child-link--landing .a,
.global-nav__child-link--landing .in-page-nav__item {
  font-weight: 500;
  font-size: .875rem;
  color: #b2b2b2;
  padding-bottom: 0;
  vertical-align: middle;
}

.global-nav__panel {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  list-style-type: none;
  z-index: -1;
  will-change: transform;
  -webkit-transition: -webkit-transform 300ms ease-out;
  transition: -webkit-transform 300ms ease-out;
  transition: transform 300ms ease-out;
  transition: transform 300ms ease-out, -webkit-transform 300ms ease-out;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background-color: #e4e4e4;
  height: calc(100vh - 134px);
}

@media (min-width: 1024px) {
  .global-nav__panel {
    position: absolute;
    margin-top: 8rem;
    width: 33.33333%;
    background-color: transparent;
    top: 74px;
    height: calc(100vh - 74px);
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }

  .has-overlay .is-active > .global-nav__panel {
    -webkit-transform: none;
            transform: none;
  }
}

.global-nav__panel--first {
  padding-left: 2rem;
}

.global-nav__panel--first ul {
  list-style: none;
}

@media only screen and (max-width: 991px) {
  .global-nav__panel--first {
    position: absolute;
    width: 100%;
    padding-top: 1.5rem;
    padding-left: 1.5rem;
    top: 0;
    left: 0;
    z-index: -1;
    will-change: transform;
    -webkit-transition: -webkit-transform 300ms ease-out;
    transition: -webkit-transform 300ms ease-out;
    transition: transform 300ms ease-out;
    transition: transform 300ms ease-out, -webkit-transform 300ms ease-out;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    background-color: #e4e4e4;
    height: calc(100vh - 134px);
  }
}

.is-active .global-nav__panel--first {
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  z-index: 1;
}

.is-active .global-nav__panel--first > ul li:last-child {
  margin-bottom: 8rem;
}

@media (min-width: 1024px) {
  .is-active .global-nav__panel--first {
    overflow-x: visible;
    height: calc(100vh - 8rem - 74px);
  }

  .is-active .global-nav__panel--first:after {
    position: fixed;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 8rem;
    content: "";
    background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(255, 255, 255, 0)), to(#efefef));
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 40%, #efefef 100%);
    pointer-events: none;
  }

  @media (min-width: 1024px) {
    .is-active .global-nav__panel--first:after {
      position: absolute;
      width: 33.33333%;
    }
  }
}

@media only screen and (max-width: 991px) {
  .has-opened-second-panel .is-active .global-nav__panel--first {
    overflow: visible;
    -webkit-overflow-scrolling: auto;
  }
}

.is-active > .global-nav__panel:after {
  position: fixed;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 8rem;
  z-index: 100;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(255, 255, 255, 0)), to(#e5e5e5));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 40%, #e5e5e5 100%);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .is-active > .global-nav__panel:after {
    content: none;
  }
}

.global-nav__child-list-item.is-active > .global-nav__panel--second {
  z-index: 1;
}

@media (min-width: 1024px) {
  .global-nav__child-list-item.is-active > .global-nav__panel--second {
    width: 66.66667%;
    height: calc(100vh - 74px);
  }
}

@media (min-width: 1024px) {
  .global-nav__child-list-item.is-active > .global-nav__panel--second:after {
    position: fixed;
    bottom: 0;
    display: block;
    height: 8rem;
    pointer-events: none;
    left: 0;
    width: 50%;
    content: "";
    background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(255, 255, 255, 0)), to(#e5e5e5));
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 40%, #e5e5e5 100%);
  }
}

@media only screen and (max-width: 991px) {
  .global-nav__child-list-item.is-active .is-active > .global-nav__panel--second,
  .is-active .global-nav__panel--first,
  .is-active > .global-nav__panel {
    z-index: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.global-nav__panel--second {
  width: 100%;
  top: 0;
  padding-top: 1.5rem;
  padding-left: 1.5rem;
  margin-top: 0;
  display: none;
}

.has-opened-second-panel .global-nav__panel--second {
  display: block;
}

@media (min-width: 1024px) {
  .global-nav__panel--second {
    display: block;
    padding-left: 0;
    padding-top: 0;
    -webkit-transition: -webkit-transform 0s linear .1s;
    transition: -webkit-transform 0s linear .1s;
    transition: transform 0s linear .1s;
    transition: transform 0s linear .1s, -webkit-transform 0s linear .1s;
  }

  .has-opened-second-panel .is-active .is-active > .global-nav__panel--second {
    -webkit-transform: translate(50%, -8rem);
            transform: translate(50%, -8rem);
  }
}

.global-nav__panel--second-list {
  list-style: none;
  padding: 0;
}

.global-nav__panel--second-list > li:last-child {
  margin-bottom: 8rem;
}

@media (min-width: 1024px) {
  .global-nav__panel--second-list {
    padding-left: 2rem;
    padding-top: 12.2rem;
    height: auto;
  }

  .global-nav__panel--second-list-short {
    padding-top: 8.15rem;
  }

  .global-nav__panel--second-list > li:last-child {
    margin-bottom: 6rem;
  }
}

.global-nav__panel--preview {
  padding-top: 1.5rem;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  top: 0;
  display: none;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  left: 100%;
  z-index: 1;
  -webkit-transition: opacity 300ms ease-out;
  transition: opacity 300ms ease-out;
}

.global-nav__panel--preview.show-preview {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 1024px) {
  .global-nav__panel--preview {
    display: block;
    width: 33.33333%;
    left: 0;
    margin-top: -8rem;
  }
}

.has-overlay .is-active .global-nav__panel--preview {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

@media (min-width: 1024px) {
  .global-nav__panel--second .global-nav__panel--preview {
    margin-top: 0;
    width: 50%;
    left: 50%;
  }

  .has-overlay .is-active .global-nav__panel--second .global-nav__panel--preview {
    -webkit-transform: none;
            transform: none;
  }
}

.has-opened-second-panel .is-active .is-active .global-nav__scroll-container {
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 1024px) {
  .has-opened-second-panel .is-active .is-active .global-nav__scroll-container {
    overflow-x: visible;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    z-index: 1000;
  }
}

.global-nav__brand {
  background-color: #f8f8f8;
  width: 100%;
  padding-bottom: 4rem;
  position: absolute;
  top: 0;
  z-index: 30;
}

@media (min-width: 1024px) {
  .global-nav__brand {
    position: relative;
    padding-bottom: 6rem;
    z-index: auto;
  }
}

.has-inverse-nav .global-nav__brand {
  background-color: transparent;
}

.global-nav__logo {
  position: absolute;
  fill: currentColor;
  color: #ff993d;
  top: 1rem;
  left: 1rem;
  z-index: 30;
  will-change: color;
  -webkit-transition: color 300ms cubic-bezier(0, 0, .3, 1);
  transition: color 300ms cubic-bezier(0, 0, .3, 1);
}

.has-inverse-nav .global-nav__logo {
  color: #fff;
}

.has-overlay .global-nav__logo {
  color: #ff993d;
}

.global-nav__logo--dealer {
  width: 185px;
  height: 32px;
}

.global-nav__logo--oem {
  enable-background: new 0 0 225 33;
  height: 32px;
}

.global-nav__logo--blue {
  color: #305371;
}

.has-inverse-nav .global-nav__logo--blue {
  color: #fff;
}

.has-overlay .global-nav__logo--blue {
  color: #305371;
}

.global-nav__logo--gray {
  color: #91989e;
}

.has-inverse-nav .global-nav__logo--gray {
  color: #fff;
}

.has-overlay .global-nav__logo--gray {
  color: #91989e;
}

.global-nav__logo--black {
  color: #222;
}

.has-inverse-nav .global-nav__logo--black {
  color: #fff;
}

.has-overlay .global-nav__logo--black {
  color: #222;
}

.global-nav__logo-link:hover .global-nav__logo {
  color: #222;
}

.show-back .global-nav__logo {
  visibility: hidden;
}

@media (min-width: 1024px) {
  .show-back .global-nav__logo {
    visibility: visible;
  }
}

@media (min-width: 1024px) {
  .global-nav__logo {
    width: auto;
    visibility: visible;
    top: auto;
    bottom: 1.5rem;
    left: 2rem;
  }
}

.global-nav__logo-link {
  color: #ff993d;
}

.global-nav__close {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  top: 118px;
  left: calc(33.33333% - 4rem);
  z-index: 30;
  -webkit-transition: opacity 200ms ease-out 300ms;
  transition: opacity 200ms ease-out 300ms;
}

@media (min-width: 1024px) {
  .has-opened-first-panel .global-nav__close {
    opacity: 1;
    visibility: visible;
  }
}

.global-nav__language-list {
  list-style: none;
  padding: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  background-color: #eee;
  width: auto;
  white-space: nowrap;
  -webkit-box-shadow: 0 16px 16px 0 rgba(34, 34, 34, .1);
          box-shadow: 0 16px 16px 0 rgba(34, 34, 34, .1);
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transform: scaleY(.9);
          transform: scaleY(.9);
  -webkit-transition: all .3s cubic-bezier(1, 0, 0, 1);
  transition: all .3s cubic-bezier(1, 0, 0, 1);
  top: 100%;
  left: .75rem;
}

.is-open .global-nav__language-list {
  visibility: visible;
  opacity: 1;
  z-index: 400;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.global-nav__language-list-item {
  font-size: .75rem;
  font-weight: 500;
}

.global-nav__language-list-item-link {
  color: #222;
  text-decoration: none;
  padding-top: .5rem;
  padding-bottom: .5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  display: block;
}

.global-nav__language-list-item-link:hover {
  text-decoration: underline;
}

.global-nav__search {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 40;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 2rem;
  width: 100%;
  background-color: #f8f8f8;
  -webkit-transition: -webkit-transform .2s ease-in-out;
  transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
  will-change: transform;
  height: 74px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

@media (min-width: 1024px) {
  .global-nav__search {
    padding-left: 2rem;
  }
}

.global-nav__search.is-open {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.global-nav__search-input {
  font-size: 1rem;
  font-weight: 300;
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: transparent;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 42px;
  width: 80%;
}

.select-collection .global-nav__search-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(/static/icons/SVG/dropdown-arrow-circle.svg) 100%/20px no-repeat;
  width: 100%;
}

@media (min-width: 1024px) {
  .global-nav__search-input {
    font-size: 2rem;
  }
}

.global-nav__toggle {
  padding: .25rem;
  background-color: transparent;
  border: none;
  width: 2rem;
  position: absolute;
  z-index: 20;
  top: 1.5rem;
  right: .75rem;
  pointer-events: all;
}

.global-nav__toggle:hover {
  border: none;
}

.global-nav__back {
  position: absolute;
  padding: .5rem;
  visibility: hidden;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  top: .75rem;
  left: .5rem;
}

.show-back .global-nav__back {
  visibility: visible;
}

.global-nav__bar {
  background-color: #222;
  width: 100%;
  margin-bottom: .25rem;
  display: block;
  height: 2px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-transform-origin: 20px 1px;
          transform-origin: 20px 1px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.has-overlay .global-nav__bar {
  width: 24px;
}

.has-overlay .global-nav__bar--top {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.has-overlay .global-nav__bar--middle {
  opacity: 0;
}

.has-overlay .global-nav__bar--bottom {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.has-inverse-nav .global-nav__bar {
  background-color: #fff;
}

.has-inverse-nav .has-overlay .global-nav__bar {
  background-color: #222;
}

.global-nav__mobile-header {
  position: absolute;
  visibility: hidden;
  font-weight: 400;
  color: #333;
  top: 84px;
  left: 1rem;
  -webkit-transition: opacity 300ms cubic-bezier(0, 0, .3, 1) 100ms;
  transition: opacity 300ms cubic-bezier(0, 0, .3, 1) 100ms;
}

.has-overlay .global-nav__mobile-header {
  top: 76px;
  opacity: 1;
  visibility: visible;
  font-weight: 500;
}

.show-back .global-nav__mobile-header {
  color: #222;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: -0.032em;
}

.global-nav__search-button,
.global-nav__login-button,
.global-nav__find-rep-button,
.global-nav__cart-indicator {
  position: absolute;
  padding: .25rem;
  color: #222;
  top: 1.1875rem;
}

.has-inverse-nav .global-nav__search-button,
.has-inverse-nav .global-nav__login-button,
.has-inverse-nav .global-nav__find-rep-button,
.has-inverse-nav .global-nav__cart-indicator {
  color: #fff;
}

.has-inverse-nav .has-overlay .global-nav__search-button,
.has-inverse-nav .has-overlay .global-nav__login-button,
.has-inverse-nav .has-overlay .global-nav__find-rep-button,
.has-inverse-nav .has-overlay .global-nav__cart-indicator {
  color: #222;
}

.global-nav__cart-indicator {
  right: 3rem;
}

.global-nav__cart-indicator .cart-indicator {
  position: relative;
}

.global-nav__search-button {
  right: 5.5rem;
}

.global-nav__login-button {
  right: 8rem;
}

.global-nav__find-rep-button {
  right: 10.5rem;
}

.main-nav {
  position: relative;
  z-index: 1000;
  background-color: white;
  left: 0;
  right: 0;
  top: 0;
}

@media (min-width: 1024px) {
  .main-nav {
    position: relative;
  }
}

.main-nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.main-nav ul li > .dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: .5rem 0;
  margin: .125rem 0 0;
  font-size: 1rem;
  color: #222;
  border: 1px solid rgba(0, 0, 0, .15);
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translate3d(-8rem, 0px, 0px);
          transform: translate3d(-8rem, 0px, 0px);
}

.main-nav ul li > .dropdown-menu.show {
  display: block;
}

.main-nav ul li > .dropdown-menu > .dropdown-item {
  display: block;
  width: 100%;
  padding: .25rem 1.5rem;
  clear: both;
  font-weight: 500;
  color: #222;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.main-nav ul li > .dropdown-menu > .dropdown-item.text-uppercase {
  text-transform: uppercase !important;
}

.main-nav ul li > .dropdown-menu > .dropdown-item:hover {
  background: #f2f2f2;
}

.main-nav ul.left li:not(:nth-last-child(-n+2)),
.main-nav ul.right li:not(:nth-last-child(-n+2)) {
  padding-right: 20px;
}

@media (min-width: 1024px) {
  .main-nav ul.left li:not(:last-child),
  .main-nav ul.right li:not(:last-child) {
    padding-right: 20px;
  }
}

.main-nav ul.left li a,
.main-nav ul.right li a {
  cursor: pointer;
}

.main-nav ul.left li a#main-logo-3form,
.main-nav ul.right li a#main-logo-3form {
  max-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.main-nav ul.left li a#main-logo-3form svg,
.main-nav ul.right li a#main-logo-3form svg {
  height: 24px;
  margin-left: -16px;
  margin-bottom: -4px;
}

.main-nav ul.left li a.global-nav__search-link,
.main-nav ul.right li a.global-nav__search-link {
  margin-right: -3px;
}

@media (min-width: 1024px) {
  .main-nav ul.left li a.global-nav__search-link,
  .main-nav ul.right li a.global-nav__search-link {
    margin-right: 0;
  }
}

.main-nav a {
  text-decoration: none;
  color: inherit;
}

.main-nav header {
  display: none;
  width: 100%;
  background-color: #f8f8f8;
}

@media (min-width: 1024px) {
  .main-nav header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 40px;
    padding: 0 36px;
    margin-bottom: 20px;
  }
}

.main-nav header ul {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-nav header ul li a {
  letter-spacing: -0.25px;
  font-weight: 500;
  line-height: 16px;
  font-size: 12px;
}

.main-nav #threeform-header-logo svg {
  height: 12px;
  width: 50px;
}

.main-nav #elements-header-logo svg {
  height: 11px;
}

.main-nav #lightart-header-logo svg {
  height: 14px;
  margin-bottom: -3px;
}

.main-nav nav .main-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 16px;
  border-bottom: .5px solid #c0c0c0;
}

.main-nav nav .main-panel .left {
  margin-bottom: 6px;
}

.main-nav nav .main-panel .left,
.main-nav nav .main-panel .right {
  width: 150px;
}

@media (min-width: 1024px) {
  .main-nav nav .main-panel .left,
  .main-nav nav .main-panel .right {
    width: 250px;
  }
}

.main-nav nav .main-panel .left .main-logo,
.main-nav nav .main-panel .right .main-logo {
  width: 100%;
}

.main-nav nav .main-panel .center {
  display: none;
}

.main-nav nav .main-panel .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.main-nav nav .main-panel .right .cart-indicator {
  position: relative;
}

@media (min-width: 1024px) {
  .main-nav nav .main-panel .right .cart-indicator span.icon-cart-count {
    top: -10px;
  }
}

@media (min-width: 1024px) {
  .main-nav nav .main-panel {
    padding: 0 36px 16px 36px;
  }

  .main-nav nav .main-panel .center {
    display: inherit;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }

  .main-nav nav .main-panel .center a {
    color: #222;
  }

  .main-nav nav .main-panel .center a:after {
    background-color: #222;
  }
}

.main-nav nav .dropdown-panel {
  display: none;
}

.main-nav nav .dropdown-panel.show-overlay {
  display: block;
}

.main-nav__parent-list-item {
  list-style: none;
  padding: 0;
  padding-left: 1rem;
  padding-right: 1rem;
}

.main-nav__parent-list-item > a {
  padding-top: 1rem;
  padding-bottom: .5rem;
  margin-bottom: .5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  color: #222;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: -0.032em;
  position: relative;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .main-nav__parent-list-item > a {
    display: block;
  }

  .has-inverse-nav .main-nav__parent-list-item > a {
    color: #fff;
  }

  .has-inverse-nav .main-nav__parent-list-item > a:after {
    background-color: #fff;
  }
}

@media (min-width: 1024px) {
  .main-nav__parent-list-item > a {
    padding-bottom: .75rem;
    margin-top: 0;
    margin-bottom: 0;
    display: inline-block;
    opacity: 1;
    visibility: visible;
  }

  .main-nav__parent-list-item > a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #222;
    height: 2px;
    will-change: transform;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right center;
            transform-origin: right center;
    -webkit-transition: -webkit-transform .25s ease-in;
    transition: -webkit-transform .25s ease-in;
    transition: transform .25s ease-in;
    transition: transform .25s ease-in, -webkit-transform .25s ease-in;
  }

  .main-nav__parent-list-item > a.is-active-page {
    -webkit-box-shadow: inset 0px 2px 0px 0px #222;
            box-shadow: inset 0px 2px 0px 0px #222;
  }

  .has-inverse-nav .main-nav__parent-list-item > a.is-active-page {
    -webkit-box-shadow: inset 0px 2px 0px 0px #fff;
            box-shadow: inset 0px 2px 0px 0px #fff;
  }
}

.main-nav__parent-list-item > a:focus {
  outline: none;
}

.main-nav__parent-list-item > a.is-active:after,
.main-nav__parent-list-item > a:focus:after,
.main-nav__parent-list-item > a:hover:after {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.main-nav__parent-list-item.is-active .global-nav__child-list-item > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__child-list-item.is-active .global-nav__subchild-list-item > .global-nav__child-link {
  -webkit-animation: slideInFadeIn .8s ease forwards 300ms;
          animation: slideInFadeIn .8s ease forwards 300ms;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(1) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(1),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(1) > .global-nav__child-link {
  -webkit-animation-delay: .1s;
          animation-delay: .1s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(2) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(2),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(2) > .global-nav__child-link {
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(3) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(3),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(3) > .global-nav__child-link {
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(4) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(4),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(4) > .global-nav__child-link {
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(5) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(5),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(5) > .global-nav__child-link {
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(6) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(6),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(6) > .global-nav__child-link {
  -webkit-animation-delay: .6s;
          animation-delay: .6s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(7) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(7),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(7) > .global-nav__child-link {
  -webkit-animation-delay: .7s;
          animation-delay: .7s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(8) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(8),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(8) > .global-nav__child-link {
  -webkit-animation-delay: .8s;
          animation-delay: .8s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(9) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(9),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(9) > .global-nav__child-link {
  -webkit-animation-delay: .9s;
          animation-delay: .9s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(10) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(10),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(10) > .global-nav__child-link {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(11) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(11),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(11) > .global-nav__child-link {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(12) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(12),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(12) > .global-nav__child-link {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(13) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(13),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(13) > .global-nav__child-link {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(14) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(14),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(14) > .global-nav__child-link {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(15) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(15),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(15) > .global-nav__child-link {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(16) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(16),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(16) > .global-nav__child-link {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(17) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(17),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(17) > .global-nav__child-link {
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(18) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(18),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(18) > .global-nav__child-link {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(19) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(19),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(19) > .global-nav__child-link {
  -webkit-animation-delay: 1.9s;
          animation-delay: 1.9s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(20) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(20),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(20) > .global-nav__child-link {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(21) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(21),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(21) > .global-nav__child-link {
  -webkit-animation-delay: 2.1s;
          animation-delay: 2.1s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(22) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(22),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(22) > .global-nav__child-link {
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(23) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(23),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(23) > .global-nav__child-link {
  -webkit-animation-delay: 2.3s;
          animation-delay: 2.3s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(24) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(24),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(24) > .global-nav__child-link {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(25) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(25),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(25) > .global-nav__child-link {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(26) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(26),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(26) > .global-nav__child-link {
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(27) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(27),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(27) > .global-nav__child-link {
  -webkit-animation-delay: 2.7s;
          animation-delay: 2.7s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(28) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(28),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(28) > .global-nav__child-link {
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(29) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(29),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(29) > .global-nav__child-link {
  -webkit-animation-delay: 2.9s;
          animation-delay: 2.9s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(30) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(30),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(30) > .global-nav__child-link {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(31) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(31),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(31) > .global-nav__child-link {
  -webkit-animation-delay: 3.1s;
          animation-delay: 3.1s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(32) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(32),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(32) > .global-nav__child-link {
  -webkit-animation-delay: 3.2s;
          animation-delay: 3.2s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(33) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(33),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(33) > .global-nav__child-link {
  -webkit-animation-delay: 3.3s;
          animation-delay: 3.3s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(34) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(34),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(34) > .global-nav__child-link {
  -webkit-animation-delay: 3.4s;
          animation-delay: 3.4s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(35) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(35),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(35) > .global-nav__child-link {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(36) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(36),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(36) > .global-nav__child-link {
  -webkit-animation-delay: 3.6s;
          animation-delay: 3.6s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(37) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(37),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(37) > .global-nav__child-link {
  -webkit-animation-delay: 3.7s;
          animation-delay: 3.7s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(38) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(38),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(38) > .global-nav__child-link {
  -webkit-animation-delay: 3.8s;
          animation-delay: 3.8s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(39) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(39),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(39) > .global-nav__child-link {
  -webkit-animation-delay: 3.9s;
          animation-delay: 3.9s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(40) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(40),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(40) > .global-nav__child-link {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(41) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(41),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(41) > .global-nav__child-link {
  -webkit-animation-delay: 4.1s;
          animation-delay: 4.1s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(42) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(42),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(42) > .global-nav__child-link {
  -webkit-animation-delay: 4.2s;
          animation-delay: 4.2s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(43) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(43),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(43) > .global-nav__child-link {
  -webkit-animation-delay: 4.3s;
          animation-delay: 4.3s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(44) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(44),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(44) > .global-nav__child-link {
  -webkit-animation-delay: 4.4s;
          animation-delay: 4.4s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(45) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(45),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(45) > .global-nav__child-link {
  -webkit-animation-delay: 4.5s;
          animation-delay: 4.5s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(46) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(46),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(46) > .global-nav__child-link {
  -webkit-animation-delay: 4.6s;
          animation-delay: 4.6s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(47) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(47),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(47) > .global-nav__child-link {
  -webkit-animation-delay: 4.7s;
          animation-delay: 4.7s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(48) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(48),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(48) > .global-nav__child-link {
  -webkit-animation-delay: 4.8s;
          animation-delay: 4.8s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(49) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(49),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(49) > .global-nav__child-link {
  -webkit-animation-delay: 4.9s;
          animation-delay: 4.9s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(50) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(50),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(50) > .global-nav__child-link {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(51) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(51),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(51) > .global-nav__child-link {
  -webkit-animation-delay: 5.1s;
          animation-delay: 5.1s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(52) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(52),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(52) > .global-nav__child-link {
  -webkit-animation-delay: 5.2s;
          animation-delay: 5.2s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(53) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(53),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(53) > .global-nav__child-link {
  -webkit-animation-delay: 5.3s;
          animation-delay: 5.3s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(54) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(54),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(54) > .global-nav__child-link {
  -webkit-animation-delay: 5.4s;
          animation-delay: 5.4s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(55) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(55),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(55) > .global-nav__child-link {
  -webkit-animation-delay: 5.5s;
          animation-delay: 5.5s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(56) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(56),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(56) > .global-nav__child-link {
  -webkit-animation-delay: 5.6s;
          animation-delay: 5.6s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(57) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(57),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(57) > .global-nav__child-link {
  -webkit-animation-delay: 5.7s;
          animation-delay: 5.7s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(58) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(58),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(58) > .global-nav__child-link {
  -webkit-animation-delay: 5.8s;
          animation-delay: 5.8s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(59) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(59),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(59) > .global-nav__child-link {
  -webkit-animation-delay: 5.9s;
          animation-delay: 5.9s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(60) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(60),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(60) > .global-nav__child-link {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(61) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(61),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(61) > .global-nav__child-link {
  -webkit-animation-delay: 6.1s;
          animation-delay: 6.1s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(62) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(62),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(62) > .global-nav__child-link {
  -webkit-animation-delay: 6.2s;
          animation-delay: 6.2s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(63) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(63),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(63) > .global-nav__child-link {
  -webkit-animation-delay: 6.3s;
          animation-delay: 6.3s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(64) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(64),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(64) > .global-nav__child-link {
  -webkit-animation-delay: 6.4s;
          animation-delay: 6.4s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(65) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(65),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(65) > .global-nav__child-link {
  -webkit-animation-delay: 6.5s;
          animation-delay: 6.5s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(66) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(66),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(66) > .global-nav__child-link {
  -webkit-animation-delay: 6.6s;
          animation-delay: 6.6s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(67) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(67),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(67) > .global-nav__child-link {
  -webkit-animation-delay: 6.7s;
          animation-delay: 6.7s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(68) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(68),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(68) > .global-nav__child-link {
  -webkit-animation-delay: 6.8s;
          animation-delay: 6.8s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(69) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(69),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(69) > .global-nav__child-link {
  -webkit-animation-delay: 6.9s;
          animation-delay: 6.9s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(70) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(70),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(70) > .global-nav__child-link {
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(71) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(71),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(71) > .global-nav__child-link {
  -webkit-animation-delay: 7.1s;
          animation-delay: 7.1s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(72) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(72),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(72) > .global-nav__child-link {
  -webkit-animation-delay: 7.2s;
          animation-delay: 7.2s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(73) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(73),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(73) > .global-nav__child-link {
  -webkit-animation-delay: 7.3s;
          animation-delay: 7.3s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(74) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(74),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(74) > .global-nav__child-link {
  -webkit-animation-delay: 7.4s;
          animation-delay: 7.4s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(75) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(75),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(75) > .global-nav__child-link {
  -webkit-animation-delay: 7.5s;
          animation-delay: 7.5s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(76) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(76),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(76) > .global-nav__child-link {
  -webkit-animation-delay: 7.6s;
          animation-delay: 7.6s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(77) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(77),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(77) > .global-nav__child-link {
  -webkit-animation-delay: 7.7s;
          animation-delay: 7.7s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(78) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(78),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(78) > .global-nav__child-link {
  -webkit-animation-delay: 7.8s;
          animation-delay: 7.8s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(79) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(79),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(79) > .global-nav__child-link {
  -webkit-animation-delay: 7.9s;
          animation-delay: 7.9s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(80) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(80),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(80) > .global-nav__child-link {
  -webkit-animation-delay: 8s;
          animation-delay: 8s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(81) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(81),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(81) > .global-nav__child-link {
  -webkit-animation-delay: 8.1s;
          animation-delay: 8.1s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(82) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(82),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(82) > .global-nav__child-link {
  -webkit-animation-delay: 8.2s;
          animation-delay: 8.2s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(83) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(83),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(83) > .global-nav__child-link {
  -webkit-animation-delay: 8.3s;
          animation-delay: 8.3s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(84) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(84),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(84) > .global-nav__child-link {
  -webkit-animation-delay: 8.4s;
          animation-delay: 8.4s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(85) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(85),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(85) > .global-nav__child-link {
  -webkit-animation-delay: 8.5s;
          animation-delay: 8.5s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(86) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(86),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(86) > .global-nav__child-link {
  -webkit-animation-delay: 8.6s;
          animation-delay: 8.6s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(87) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(87),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(87) > .global-nav__child-link {
  -webkit-animation-delay: 8.7s;
          animation-delay: 8.7s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(88) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(88),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(88) > .global-nav__child-link {
  -webkit-animation-delay: 8.8s;
          animation-delay: 8.8s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(89) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(89),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(89) > .global-nav__child-link {
  -webkit-animation-delay: 8.9s;
          animation-delay: 8.9s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(90) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(90),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(90) > .global-nav__child-link {
  -webkit-animation-delay: 9s;
          animation-delay: 9s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(91) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(91),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(91) > .global-nav__child-link {
  -webkit-animation-delay: 9.1s;
          animation-delay: 9.1s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(92) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(92),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(92) > .global-nav__child-link {
  -webkit-animation-delay: 9.2s;
          animation-delay: 9.2s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(93) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(93),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(93) > .global-nav__child-link {
  -webkit-animation-delay: 9.3s;
          animation-delay: 9.3s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(94) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(94),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(94) > .global-nav__child-link {
  -webkit-animation-delay: 9.4s;
          animation-delay: 9.4s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(95) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(95),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(95) > .global-nav__child-link {
  -webkit-animation-delay: 9.5s;
          animation-delay: 9.5s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(96) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(96),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(96) > .global-nav__child-link {
  -webkit-animation-delay: 9.6s;
          animation-delay: 9.6s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(97) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(97),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(97) > .global-nav__child-link {
  -webkit-animation-delay: 9.7s;
          animation-delay: 9.7s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(98) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(98),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(98) > .global-nav__child-link {
  -webkit-animation-delay: 9.8s;
          animation-delay: 9.8s;
}

.main-nav__parent-list-item.is-active .global-nav__panel .global-nav__child-list-item:nth-child(99) > .global-nav__child-link,
.main-nav__parent-list-item.is-active .global-nav__panel .label:nth-child(99),
.main-nav__parent-list-item.is-active .global-nav__panel.global-nav__panel--second .global-nav__subchild-list-item:nth-child(99) > .global-nav__child-link {
  -webkit-animation-delay: 9.9s;
          animation-delay: 9.9s;
}

.main-nav nav-panel {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 100;
  background-color: white;
  overflow: auto;
  top: 76px;
}

@media (min-width: 1024px) {
  .main-nav nav-panel {
    position: absolute;
    bottom: inherit;
    top: unset;
  }
}

.main-nav global-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media (min-width: 1024px) {
  .main-nav global-search {
    background-color: rgba(0, 0, 0, 0);
    position: absolute;
    bottom: inherit;
  }
}

.main-nav .global-search-animation,
.main-nav .nav-panel-animation {
  max-height: 0px;
  -webkit-transition: all .15s linear;
  transition: all .15s linear;
  overflow-y: auto;
}

.main-nav .nav-panel-animation.show {
  max-height: 1000px;
}

.main-nav .global-search-animation.show {
  max-height: 100px;
}

.main-nav .secondary-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  overflow-x: auto;
  font-size: .875rem;
  letter-spacing: -0.21px;
  line-height: 1.25rem;
  border-bottom: .5px solid #c0c0c0;
}

.main-nav .secondary-panel li span.right-border {
  border-right: .5px solid #c0c0c0;
  margin: .5rem 0;
}

.main-nav .secondary-panel li:hover a,
.main-nav .secondary-panel li.active a {
  text-decoration: underline;
}

.main-nav .secondary-panel li {
  display: inherit;
}

.main-nav .secondary-panel li a {
  padding: .75rem .9375rem;
}

@media (min-width: 1024px) {
  .main-nav .secondary-panel {
    margin: 0 2rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.main-nav .mobile-nav-menu a img,
.main-nav .mobile-nav-close a img {
  height: 1.5rem;
  width: 1.5rem;
}

.main-nav .mobile-only:not(.hidden) {
  display: inherit;
}

@media (min-width: 1024px) {
  .main-nav .mobile-only:not(.hidden) {
    display: none;
  }
}

.in-page-nav {
  display: none;
}

@media (min-width: 768px) {
  .in-page-nav {
    display: block;
    list-style: none;
    padding: 0;
    position: fixed;
    z-index: 20;
    top: 2rem;
    -webkit-transition: -webkit-transform 300ms ease;
    transition: -webkit-transform 300ms ease;
    transition: transform 300ms ease;
    transition: transform 300ms ease, -webkit-transform 300ms ease;
    -webkit-transform: translate(-1000px, 0);
            transform: translate(-1000px, 0);
    will-change: transform;
  }

  .in-page-nav__item {
    position: relative;
    color: #ccc;
    font-size: 1rem;
    margin-left: 2.5rem;
    font-weight: 500;
    display: inline-block;
    text-decoration: none;
  }

  .in-page-nav__item:focus::after,
  .in-page-nav__item:active::after {
    display: none;
  }

  .in-page-nav__item--active {
    color: #222;
    position: relative;
    margin-left: 0;
    padding-left: 2.5rem;
  }

  .in-page-nav__item--active::before {
    position: absolute;
    background-color: #222;
    left: 0;
    content: "";
    width: 1.5rem;
    top: calc(50% - 2px);
    height: 2px;
  }

  .in-page-nav__item--active:hover::after {
    display: none;
  }

  .in-page-nav__item--active-inverse {
    color: #fff;
  }

  .in-page-nav__item--active-inverse::before {
    background-color: #fff;
  }

  .in-page-nav__item--disabled {
    color: #ddd;
  }

  .in-page-nav__number {
    margin-right: .5rem;
  }

  .in-page-nav--slide-in {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

/*
Carousel 2up

Swiper carousel clickable pagination

Markup:
<div class="grid-wrapper">
  <div class="grid-row">
    <div class="col-12">
      <div class="swiper swiper--dark swiper-2up overflow-hidden -w-borderfix">
        <div class="js-swiper-2up swiper-container swiper-2up__container">
          <div class="swiper-wrapper swiper-2up__wrapper">
            <div class="swiper-slide swiper-2up__slide">
              <div class="card-driver card-driver--inverse js-accessible-card p-0">
                <div class="card-driver__image-outer">
                  <img class="card-driver__image" src="https://images.3-form.com/images/products/photo_large/542.jpg" alt="card driver title">
                </div>
                <div class="card-driver__content-outer card-driver__content-outer--right">
                  <div class="card-driver__content">
                    <div class="card-driver__content-inner">
                      <h4 class="mb-8"><a class="card-driver__title js-accessible-link" href="/card-design-woes">Card design woes</a></h4>
                      <p class="text-lg font-medium text-white">Alice Tully Hall</p>
                    </div>
                  </div>
                </div>
              </div>
            </div>
            <div class="swiper-slide swiper-2up__slide">
              <div class="card-driver card-driver--inverse js-accessible-card p-0">
                <div class="card-driver__image-outer">
                  <img class="card-driver__image" src="https://images.3-form.com/gallery/1396/Cerny+Most+shopping+mall+Fyling+discs+Prague+Czech+Republic8.jpg" alt="card driver title">
                </div>
                <div class="card-driver__content-outer card-driver__content-outer--right">
                  <div class="card-driver__content">
                    <div class="card-driver__content-inner">
                      <h4 class="mb-8"><a class="card-driver__title js-accessible-link" href="/card-design-woes">Card design woes</a></h4>
                      <p class="text-lg font-medium text-white">Alice Tully Hall</p>
                    </div>
                  </div>
                </div>
              </div>
            </div>
            <div class="swiper-slide swiper-2up__slide">
              <div class="card-driver card-driver--inverse js-accessible-card p-0">
                <div class="card-driver__image-outer">
                  <img class="card-driver__image" src="https://images.3-form.com/gallery/1389/SMP_8821.jpg" alt="card driver title">
                </div>
                <div class="card-driver__content-outer card-driver__content-outer--right">
                  <div class="card-driver__content">
                    <div class="card-driver__content-inner">
                      <h4 class="mb-8"><a class="card-driver__title js-accessible-link" href="/card-design-woes">Card design woes</a></h4>
                      <p class="text-lg font-medium text-white">Alice Tully Hall</p>
                    </div>
                  </div>
                </div>
              </div>
            </div>
            <div class="swiper-slide swiper-2up__slide">
              <div class="card-driver card-driver--inverse js-accessible-card p-0">
                <div class="card-driver__image-outer">
                  <img class="card-driver__image" src="https://images.3-form.com/images/collaborate/overview/slide_images/get_started.jpg" alt="card driver title">
                </div>
                <div class="card-driver__content-outer card-driver__content-outer--right">
                  <div class="card-driver__content">
                    <div class="card-driver__content-inner">
                      <h4 class="mb-8"><a class="card-driver__title js-accessible-link" href="/card-design-woes">Card design woes</a></h4>
                      <p class="text-lg font-medium text-white">Alice Tully Hall</p>
                    </div>
                  </div>
                </div>
              </div>
            </div>
          </div>
        </div>
        <div class="js-swiper-2up-pagination swiper-pagination swiper__pagination swiper-2up__pagination"></div>
        <div class="swiper__arrows swiper-2up__arrows">
          <div class="js-swiper-2up-button-prev swiper-button-prev swiper__button swiper__button--prev"><svg class="icon icon-arrow-pagination icon-arrow-pagination--rotate" aria-hidden="true" focusable="false"><use xlink:href="#icon-arrow-pagination"></use></svg><span class="sr-only">Previous slide</span></div>
          <div class="js-swiper-2up-button-next swiper-button-next swiper__button swiper__button--next"><svg class="icon icon-arrow-pagination" aria-hidden="true" focusable="false"><use xlink:href="#icon-arrow-pagination"></use></svg><span class="sr-only">Next slide</span></div>
        </div>
      </div>
    </div>
  </div>
</div>

Styleguide: Components.Carousel.coverEffect
*/

.swiper-2up {
  position: relative;
  padding-bottom: 3rem;
}

.swiper-2up__wrapper {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.swiper-2up__arrows {
  position: absolute;
  right: 0;
  z-index: 10;
  top: calc(50% - 26px);
}

.swiper-2up__pagination {
  right: -1rem;
}

.swiper-2up .swiper-slide-active {
  width: 75% !important;
}

@media (min-width: 768px) {
  .swiper-2up .swiper-slide-prev {
    width: 33.33% !important;
  }

  .swiper-2up .swiper-slide-active {
    width: 58.33% !important;
  }
}

.swiper-2up__slide {
  -webkit-transition: width 300ms ease;
  transition: width 300ms ease;
}

/*
Portfolio Driver

A driver that links to other materials

Markup:
<div class="grid-wrapper">
  <div class="grid-row">
    <ul class="col-12 portfolio-driver hidden md:flex">
      <li tabindex="0" class="portfolio-driver__list-item">
        <div class="portfolio-driver__content">
          <div class="portfolio-driver__content-title">
            <h5 class="h3 font-medium portfolio-driver__content-title-main">Halftone</h5>
            <h6 class="h3 portfolio-driver__content-title-main portfolio-driver__content-title-submain">
              + Color
            </h6>
          </div>
          <div class="portfolio-driver__content-specs">
            <p class="inline-block mr-8">
              <span class="font-medium">Application /</span> Interor.Exterior
            </p>
            <p class="inline-block mr-8">
              <span class="font-medium">Material / </span>Varia
            </p>
            <a href="#" download class="link-download-image link-download-image--black"><svg class="icon icon-download icon--start" aria-hidden="true" focusable="false"><use xlink:href="#icon-download"></use></svg> Download Swatch</a>
          </div>
        </div>
        <div
          style="width: 100%; height: 100%; background: tomato; position: absolute; top: 0;"
        ></div>
      </li>
      <li tabindex="0" class="portfolio-driver__list-item">
        <div class="portfolio-driver__content">
          <div class="portfolio-driver__content-title">
            <h5 class="h3 font-medium portfolio-driver__content-title-main">Halftone</h5>
            <h6 class="h3 portfolio-driver__content-title-main portfolio-driver__content-title-submain">
              + Color
            </h6>
          </div>
          <div class="portfolio-driver__content-specs">
            <p class="inline-block mr-8">
              <span class="font-medium">Application /</span> Interor.Exterior
            </p>
            <p class="inline-block mr-8">
              <span class="font-medium">Material / </span>Varia
            </p>
            <a href="#" download class="link-download-image link-download-image--black"><svg class="icon icon-download icon--start" aria-hidden="true" focusable="false"><use xlink:href="#icon-download"></use></svg> Download Swatch</a>
          </div>
        </div>
        <div
          style="width: 100%; height: 100%; background: pink; position: absolute; top: 0;"
        ></div>
      </li>
      <li tabindex="0" class="portfolio-driver__list-item">
        <div class="portfolio-driver__content">
          <div class="portfolio-driver__content-title">
            <h5 class="h3 font-medium portfolio-driver__content-title-main">Halftone</h5>
            <h6 class="h3 portfolio-driver__content-title-main portfolio-driver__content-title-submain">
              + Color
            </h6>
          </div>
          <div class="portfolio-driver__content-specs">
            <p class="inline-block mr-8">
              <span class="font-medium">Application /</span> Interor.Exterior
            </p>
            <p class="inline-block mr-8">
              <span class="font-medium">Material / </span>Varia
            </p>
            <a href="#" download class="link-download-image link-download-image--black"><svg class="icon icon-download icon--start" aria-hidden="true" focusable="false"><use xlink:href="#icon-download"></use></svg> Download Swatch</a>
          </div>
        </div>
        <div
          style="width: 100%; height: 100%; background: green; position: absolute; top: 0;"
        ></div>
      </li>
      <li tabindex="0" class="portfolio-driver__list-item">
        <div class="portfolio-driver__content">
          <div class="portfolio-driver__content-title">
            <h5 class="h3 font-medium portfolio-driver__content-title-main">Halftone</h5>
            <h6 class="h3 portfolio-driver__content-title-main portfolio-driver__content-title-submain">
              + Color
            </h6>
          </div>
          <div class="portfolio-driver__content-specs">
            <p class="inline-block mr-8">
              <span class="font-medium">Application /</span> Interor.Exterior
            </p>
            <p class="inline-block mr-8">
              <span class="font-medium">Material / </span>Varia
            </p>
            <a href="#" download class="link-download-image link-download-image--black"><svg class="icon icon-download icon--start" aria-hidden="true" focusable="false"><use xlink:href="#icon-download"></use></svg> Download Swatch</a>
          </div>
        </div>
        <img class="portfolio-driver__image" src="https://images.pexels.com/photos/617278/pexels-photo-617278.jpeg?auto=compress&cs=tinysrgb&h=350" alt="" />
      </li>
      <li tabindex="0" class="portfolio-driver__list-item">
        <div class="portfolio-driver__content">
          <div class="portfolio-driver__content-title">
            <h5 class="h3 font-medium portfolio-driver__content-title-main">Halftone</h5>
            <h6 class="h3 portfolio-driver__content-title-main portfolio-driver__content-title-submain">
              + Color
            </h6>
          </div>
          <div class="portfolio-driver__content-specs">
            <p class="inline-block mr-8">
              <span class="font-medium">Application /</span> Interor.Exterior
            </p>
            <p class="inline-block mr-8">
              <span class="font-medium">Material / </span>Varia
            </p>
            <a href="#" download class="link-download-image link-download-image--black"><svg class="icon icon-download icon--start" aria-hidden="true" focusable="false"><use xlink:href="#icon-download"></use></svg> Download Swatch</a>
          </div>
        </div>
        <img src="https://placekitten.com/1920/1080" class="portfolio-driver__image" alt="" />
      </li>
      <li tabindex="0" class="portfolio-driver__list-item">
        <div class="portfolio-driver__content">
          <div class="portfolio-driver__content-title">
            <h5 class="h3 font-medium portfolio-driver__content-title-main">Halftone</h5>
            <h6 class="h3 portfolio-driver__content-title-main portfolio-driver__content-title-submain">
              + Color
            </h6>
          </div>
          <div class="portfolio-driver__content-specs">
            <p class="inline-block mr-8">
              <span class="font-medium">Application /</span> Interor.Exterior
            </p>
            <p class="inline-block mr-8">
              <span class="font-medium">Material / </span>Varia
            </p>
            <a href="#" title="download Swatch" class="no-underline">
              <p class="inline-block">Download Swatch</p>
            </a>
          </div>
        </div>
        <img
          class="portfolio-driver__image"
          src="https://dummyimage.com/150x300/f5a81c/f5a81c"
          alt=""
        />
      </li>
      <li tabindex="0" class="portfolio-driver__list-item">
        <div class="portfolio-driver__content">
          <div class="portfolio-driver__content-title">
            <h5 class="h3 font-medium portfolio-driver__content-title-main">Halftone</h5>
            <h6 class="h3 portfolio-driver__content-title-main portfolio-driver__content-title-submain">
              + Color
            </h6>
          </div>
          <div class="portfolio-driver__content-specs">
            <p class="inline-block mr-8">
              <span class="font-medium">Application /</span> Interor.Exterior
            </p>
            <p class="inline-block mr-8">
              <span class="font-medium">Material / </span>Varia
            </p>
            <a href="#" title="download Swatch" class="no-underline">
              <p class="inline-block">Download Swatch</p>
            </a>
          </div>
        </div>
        <img
          class="portfolio-driver__image"
          src="https://dummyimage.com/150x300/9c2423/9c2423"
          alt=""
        />
      </li>
      <li tabindex="0" class="portfolio-driver__list-item">
        <div class="portfolio-driver__content">
          <div class="portfolio-driver__content-title">
            <h5 class="h3 font-medium portfolio-driver__content-title-main">Halftone</h5>
            <h6 class="h3 portfolio-driver__content-title-main portfolio-driver__content-title-submain">
              + Color
            </h6>
          </div>
          <div class="portfolio-driver__content-specs">
            <p class="inline-block mr-8">
              <span class="font-medium">Application /</span> Interor.Exterior
            </p>
            <p class="inline-block mr-8">
              <span class="font-medium">Material / </span>Varia
            </p>
            <a href="#" title="download Swatch" class="no-underline">
              <p class="inline-block">Download Swatch</p>
            </a>
          </div>
        </div>
        <img
          class="portfolio-driver__image"
          src="https://dummyimage.com/150x300/dd5426/dd5426"
          alt=""
        />
      </li>
    </ul>
    <ul class="col-12 portfolio-driver md:hidden">
      <li class="w-full flex">
        <div tabindex="0" class="portfolio-driver__list-item">
          <div class="portfolio-driver__content">
            <div class="portfolio-driver__content-title">
              <h5 class="h3 font-medium portfolio-driver__content-title-main">Halftone</h5>
              <h6 class="h3 portfolio-driver__content-title-main portfolio-driver__content-title-submain">
                + Color
              </h6>
            </div>
            <div class="portfolio-driver__content-specs">
              <p class="inline-block mr-8">
                <span class="font-medium">Application /</span> Interor.Exterior
              </p>
              <p class="inline-block mr-8">
                <span class="font-medium">Material / </span>Varia
              </p>
              <a href="#" download class="link-download-image link-download-image--black"><svg class="icon icon-download icon--start" aria-hidden="true" focusable="false"><use xlink:href="#icon-download"></use></svg> Download Swatch</a>
            </div>
          </div>
          <div
            style="width: 100%; height: 100%; background: tomato; position: absolute; top: 0;"
          ></div>
        </div>
        <div tabindex="0" class="portfolio-driver__list-item">
          <div class="portfolio-driver__content">
            <div class="portfolio-driver__content-title">
              <h5 class="h3 font-medium portfolio-driver__content-title-main">Halftone</h5>
              <h6 class="h3 portfolio-driver__content-title-main portfolio-driver__content-title-submain">
                + Color
              </h6>
            </div>
            <div class="portfolio-driver__content-specs">
              <p class="inline-block mr-8">
                <span class="font-medium">Application /</span> Interor.Exterior
              </p>
              <p class="inline-block mr-8">
                <span class="font-medium">Material / </span>Varia
              </p>
              <a href="#" download class="link-download-image link-download-image--black"><svg class="icon icon-download icon--start" aria-hidden="true" focusable="false"><use xlink:href="#icon-download"></use></svg> Download Swatch</a>
            </div>
          </div>
          <div
            style="width: 100%; height: 100%; background: pink; position: absolute; top: 0;"
          ></div>
        </div>
        <div tabindex="0" class="portfolio-driver__list-item">
          <div class="portfolio-driver__content">
            <div class="portfolio-driver__content-title">
              <h5 class="h3 font-medium portfolio-driver__content-title-main">Halftone</h5>
              <h6 class="h3 portfolio-driver__content-title-main portfolio-driver__content-title-submain">
                + Color
              </h6>
            </div>
            <div class="portfolio-driver__content-specs">
              <p class="inline-block mr-8">
                <span class="font-medium">Application /</span> Interor.Exterior
              </p>
              <p class="inline-block mr-8">
                <span class="font-medium">Material / </span>Varia
              </p>
              <a href="#" download class="link-download-image link-download-image--black"><svg class="icon icon-download icon--start" aria-hidden="true" focusable="false"><use xlink:href="#icon-download"></use></svg> Download Swatch</a>
            </div>
          </div>
          <div
            style="width: 100%; height: 100%; background: green; position: absolute; top: 0;"
          ></div>
        </div>
        <div tabindex="0" class="portfolio-driver__list-item">
          <div class="portfolio-driver__content">
            <div class="portfolio-driver__content-title">
              <h5 class="h3 font-medium portfolio-driver__content-title-main">Halftone</h5>
              <h6 class="h3 portfolio-driver__content-title-main portfolio-driver__content-title-submain">
                + Color
              </h6>
            </div>
            <div class="portfolio-driver__content-specs">
              <p class="inline-block mr-8">
                <span class="font-medium">Application /</span> Interor.Exterior
              </p>
              <p class="inline-block mr-8">
                <span class="font-medium">Material / </span>Varia
              </p>
              <a href="#" download class="link-download-image link-download-image--black"><svg class="icon icon-download icon--start" aria-hidden="true" focusable="false"><use xlink:href="#icon-download"></use></svg> Download Swatch</a>
            </div>
          </div>
          <div
            style="width: 100%; height: 100%; background: yellow; position: absolute; top: 0;"
          ></div>
        </div>
      </li>
      <li class="w-full flex">
        <div class="portfolio-driver__list-item">
          <div class="portfolio-driver__content">
            <div class="portfolio-driver__content-title">
              <h5 class="h3 font-medium portfolio-driver__content-title-main">Halftone</h5>
              <h6 class="h3 portfolio-driver__content-title-main portfolio-driver__content-title-submain">
                + Color
              </h6>
            </div>
            <div class="portfolio-driver__content-specs">
              <p class="inline-block mr-8">
                <span class="font-medium">Application /</span> Interor.Exterior
              </p>
              <p class="inline-block mr-8">
                <span class="font-medium">Material / </span>Varia
              </p>
              <a href="#" download class="link-download-image link-download-image--black"><svg class="icon icon-download icon--start" aria-hidden="true" focusable="false"><use xlink:href="#icon-download"></use></svg> Download Swatch</a>
            </div>
          </div>
          <div
            style="width: 100%; height: 100%; background: tomato; position: absolute; top: 0;"
          ></div>
        </div>
        <div class="portfolio-driver__list-item">
          <div class="portfolio-driver__content">
            <div class="portfolio-driver__content-title">
              <h5 class="h3 font-medium portfolio-driver__content-title-main">Halftone</h5>
              <h6 class="h3 portfolio-driver__content-title-main portfolio-driver__content-title-submain">
                + Color
              </h6>
            </div>
            <div class="portfolio-driver__content-specs">
              <p class="inline-block mr-8">
                <span class="font-medium">Application /</span> Interor.Exterior
              </p>
              <p class="inline-block mr-8">
                <span class="font-medium">Material / </span>Varia
              </p>
              <a href="#" download class="link-download-image link-download-image--black"><svg class="icon icon-download icon--start" aria-hidden="true" focusable="false"><use xlink:href="#icon-download"></use></svg> Download Swatch</a>
            </div>
          </div>
          <img
            class="portfolio-driver__image"
            src="https://dummyimage.com/150x300/f5a81c/f5a81c"
            alt=""
          />
        </div>
        <div class="portfolio-driver__list-item portfolio-driver__list-item--light">
          <div class="portfolio-driver__content">
            <div class="portfolio-driver__content-title">
              <h5 class="h3 font-medium portfolio-driver__content-title-main">Halftone</h5>
              <h6 class="h3 portfolio-driver__content-title-main portfolio-driver__content-title-submain">
                + Color
              </h6>
            </div>
            <div class="portfolio-driver__content-specs">
              <p class="inline-block mr-8">
                <span class="font-medium">Application /</span> Interor.Exterior
              </p>
              <p class="inline-block mr-8">
                <span class="font-medium">Material / </span>Varia
              </p>
              <a href="#" download class="link-download-image link-download-image--black"><svg class="icon icon-download icon--start" aria-hidden="true" focusable="false"><use xlink:href="#icon-download"></use></svg> Download Swatch</a>
            </div>
          </div>
          <img
            class="portfolio-driver__image"
            src="https://dummyimage.com/150x300/9c2423/9c2423"
            alt=""
          />
        </div>
        <div class="portfolio-driver__list-item portfolio-driver__list-item--light">
          <div class="portfolio-driver__content">
            <div class="portfolio-driver__content-title">
              <h5 class="h3 font-medium portfolio-driver__content-title-main">Halftone</h5>
              <h6 class="h3 portfolio-driver__content-title-main portfolio-driver__content-title-submain">
                + Color
              </h6>
            </div>
            <div class="portfolio-driver__content-specs">
              <p class="inline-block mr-8">
                <span class="font-medium">Application /</span> Interor.Exterior
              </p>
              <p class="inline-block mr-8">
                <span class="font-medium">Material / </span>Varia
              </p>
              <a href="#" download class="link-download-image link-download-image--black"><svg class="icon icon-download icon--start" aria-hidden="true" focusable="false"><use xlink:href="#icon-download"></use></svg> Download Swatch</a>
            </div>
          </div>
          <img src="https://placekitten.com/1920/1080" class="portfolio-driver__image" alt="" />
        </div>
      </li>
    </ul>
  </div>
</div>


.related-driver--border-right for a right border.

Styleguide: Components.portfolio-driver
*/

.portfolio-driver {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
}

@media (min-width: 768px) {
  .portfolio-driver {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.portfolio-driver__close-button {
  opacity: 0;
  position: absolute;
  pointer-events: none;
  top: .5rem;
  right: .5rem;
  -webkit-transition: opacity 300ms ease-out .4ms;
  transition: opacity 300ms ease-out .4ms;
}

.is-expanded .portfolio-driver__close-button {
  opacity: 1;
  pointer-events: auto;
  z-index: 10;
}

@media (min-width: 1025px) {
  .portfolio-driver__close-button {
    display: none;
  }
}

.portfolio-driver__background {
  pointer-events: none;
}

.portfolio-driver__list-item {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  height: 200px;
}

@media (min-width: 768px) {
  .portfolio-driver__list-item {
    height: 290px;
  }
}

.portfolio-driver__list-item:after {
  position: absolute;
  opacity: .8;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 101%;
  content: "";
}

@media (min-width: 1025px) {
  @media (min-width: 768px) {
    .portfolio-driver__list-item:hover {
      width: 2400%;
    }
  }

  .portfolio-driver__list-item:hover .portfolio-driver__content {
    width: 100%;
    opacity: 1;
    padding-left: 2rem;
    padding-right: 2rem;
    -webkit-transition: opacity 300ms ease-out .4ms;
    transition: opacity 300ms ease-out .4ms;
  }

  .portfolio-driver__list-item:hover .portfolio-driver__image {
    height: 100%;
  }
}

@media (max-width: 1024px) {
  .portfolio-driver__list-item:hover.is-expanded {
    width: 1800%;
  }
}

.portfolio-driver__list-item.is-expanded {
  width: 1800%;
}

.portfolio-driver__list-item--image:hover::after,
.portfolio-driver__list-item--image:focus-within::after {
  background: radial-gradient(at top left, #fff 0%, rgba(255, 255, 255, 0) 70%);
}

.portfolio-driver__list-item--image.portfolio-driver__list-item--light:hover::after,
.portfolio-driver__list-item--image.portfolio-driver__list-item--light:focus-within::after {
  background: radial-gradient(at top left, #000 0%, rgba(0, 0, 0, 0) 70%);
}

.portfolio-driver__list-item--no-interaction:hover {
  width: 100%;
}

.portfolio-driver__list-item--no-interaction:hover::after,
.portfolio-driver__list-item--no-interaction:focus-within::after {
  background: radial-gradient(circle, transparent, transparent);
}

.portfolio-driver__list-item--light .link-download-image,
.portfolio-driver__list-item--light .label--line {
  color: #fff;
}

.portfolio-driver__list-item--light .label--line:before {
  background-color: #fff;
}

.portfolio-driver__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}

.portfolio-driver__content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  opacity: 0;
  z-index: 10;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  width: 0;
}

@media (min-width: 768px) {
  .portfolio-driver__content {
    pointer-events: auto;
  }
}

@media (max-width: 1024px) {
  .is-expanded .portfolio-driver__content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%;
    opacity: 1;
    pointer-events: auto;
  }
}

@media (min-width: 768px) {
  .portfolio-driver__content-title {
    padding-top: 2rem;
  }
}

.portfolio-driver__content-title-main {
  position: relative;
  display: block;
  overflow: hidden;
  font-size: 1.5rem;
  color: #222;
  letter-spacing: -2px;
}

@media (min-width: 768px) {
  .portfolio-driver__content-title-main {
    font-size: 3.5rem;
  }
}

.portfolio-driver__list-item--light .portfolio-driver__content-title-main {
  color: #fff;
}

.portfolio-driver__content-title-submain {
  white-space: nowrap;
}

.portfolio-driver__content-specs {
  position: relative;
  padding-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-top-width: 1px;
  border-color: #222;
}

@media (min-width: 768px) {
  .portfolio-driver__content-specs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.portfolio-driver__list-item--light .portfolio-driver__content-specs {
  border-color: #fff;
}

.portfolio-driver__spec {
  color: #222;
  font-weight: 300;
  font-size: .875rem;
  white-space: nowrap;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .portfolio-driver__spec {
    display: inline-block;
    margin-right: 2rem;
    font-size: 1rem;
  }
}

.portfolio-driver__list-item--light .portfolio-driver__spec {
  color: #fff;
}

.portfolio-driver__list--mobile {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.portfolio-driver__list--mobile .portfolio-driver__list-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 18%;
          flex: 1 0 18%;
}

.portfolio-driver__search-form {
  margin-bottom: -2rem;
  background-color: #fff;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 18px;
  padding-bottom: 14px;
}

.portfolio-driver__search-input {
  font-size: 1.25rem;
  font-weight: 300;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: .75rem;
  padding-right: .75rem;
  background-color: transparent;
  height: 2rem;
  line-height: 1.25;
  letter-spacing: -0.8px;
  width: 80%;
}

@-webkit-keyframes slider {
  0% {
    width: 100%;
    opacity: 0;
  }

  100% {
    width: 100%;
    opacity: 1;
  }
}

@keyframes slider {
  0% {
    width: 100%;
    opacity: 0;
  }

  100% {
    width: 100%;
    opacity: 1;
  }
}

@-webkit-keyframes expand {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

@keyframes expand {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

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

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

#color-wheel {
  position: relative;
  padding-right: 1rem;
  width: 240px;
  height: 240px;
}

@media (min-width: 600px) {
  #color-wheel {
    width: 300px;
    height: 300px;
  }
}

#color-wheel .wheel-text {
  font-size: 1rem;
  font-weight: 500;
  text-shadow: 0px 0px 8px #fff;
}

.color-slice {
  cursor: pointer;
}

.color-slice__dot {
  opacity: 0;
}

.color-slice__dot.is-visible {
  opacity: 1;
}

.js-color-wheel-focused .color-slice {
  opacity: .3;
}

.js-color-wheel-focused .color-slice.is-selected {
  opacity: 1;
}

.masonry {
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 5rem;
}

.masonry .masonry-pagination:focus {
  outline: none;
}

.masonry .masonry-grid {
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2;
  -webkit-column-gap: .5rem;
     -moz-column-gap: .5rem;
          column-gap: .5rem;
}

@media (min-width: 1024px) {
  .masonry .masonry-grid {
    -webkit-columns: 3;
       -moz-columns: 3;
            columns: 3;
    -webkit-column-gap: 17px;
       -moz-column-gap: 17px;
            column-gap: 17px;
  }
}

.masonry .masonry-item {
  padding-bottom: .5rem;
  width: 100%;
  position: relative;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .masonry .masonry-item {
    margin-bottom: 1rem;
    padding-bottom: 0;
  }

  .masonry .masonry-item:hover .scale-icons {
    opacity: 1;
  }

  .masonry .masonry-item:hover:after {
    content: "";
    display: inline-block;
    background-color: #222;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .masonry .masonry-item:hover img {
    -webkit-transform: translateX(-8px) translateY(-8px);
            transform: translateX(-8px) translateY(-8px);
  }
}

.masonry .masonry-item .scale-icons {
  opacity: 0;
  position: absolute;
  bottom: .75rem;
  right: 1rem;
}

.masonry .masonry-item .icon-single-panel {
  height: 3rem;
  display: inline-block;
  fill: currentColor;
  stroke: currentColor;
  width: auto;
  vertical-align: middle;
  pointer-events: none;
}

.masonry .masonry-item img {
  width: 100%;
  position: relative;
  vertical-align: middle;
  will-change: transform;
  -webkit-transition: -webkit-transform .125s ease-out;
  transition: -webkit-transform .125s ease-out;
  transition: transform .125s ease-out;
  transition: transform .125s ease-out, -webkit-transform .125s ease-out;
  z-index: 1;
}

.masonry .masonry-content {
  overflow: hidden;
}

.masonry .masonry-item {
  -webkit-transition: -webkit-filter .25s ease-in-out;
  transition: -webkit-filter .25s ease-in-out;
  transition: filter .25s ease-in-out;
  transition: filter .25s ease-in-out, -webkit-filter .25s ease-in-out;
}

.masonry .error-message {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  color: #ff993d;
}

.masonry .no-results {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.5;
}

.masonry .refresh-search {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  margin-top: 1rem;
  cursor: pointer;
}

.masonry .refresh-search .icon-refresh {
  width: 2rem;
  height: 2rem;
  margin-right: .75rem;
}

.masonry-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 5rem;
}

.masonry-pagination .pagination-arrow {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 1.25rem;
}

.masonry-pagination .pagination-arrow:hover {
  -webkit-box-shadow: 0 4px 0 0 #000;
          box-shadow: 0 4px 0 0 #000;
}

.masonry-pagination .pagination-arrow:disabled {
  cursor: auto;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.masonry-pagination .pagination-item-wrapper.elipsis {
  cursor: auto;
}

.masonry-pagination .pagination-item-wrapper:first-of-type {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.masonry-pagination .pagination-item-wrapper:last-of-type {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.masonry-pagination .pagination-item-wrapper:last-of-type .pagination-item {
  border-right: 1px solid #ddd;
}

.masonry-pagination .pagination-item-wrapper.active:not(.elipsis),
.masonry-pagination .pagination-item-wrapper:hover:not(.elipsis) {
  padding-bottom: 1.5rem;
  -webkit-box-shadow: 0 4px 0 0 #000;
          box-shadow: 0 4px 0 0 #000;
}

.masonry-pagination .pagination-item {
  display: inline;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  padding-left: .75rem;
  padding-right: .75rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  border-left: 1px solid #ddd;
}

@media (min-width: 1024px) {
  .masonry-pagination .pagination-item {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.material-input {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.material-input input[type=text],
.material-input input[type=email] {
  display: block;
  border-style: none;
  border-bottom-width: 2px;
  border-style: solid;
  border-color: #222;
  width: 100%;
  font-size: 1rem;
  padding-bottom: .25rem;
  padding-top: .75rem;
}

.material-input input[type=text]:focus,
.material-input input[type=email]:focus {
  outline: 0;
}

.material-input select {
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  background-color: transparent;
  font-size: 1rem;
  position: relative;
  bottom: -4px;
}

.material-input select ~ svg {
  position: absolute;
  right: 8px;
  height: 20px;
  width: 20px;
  -webkit-transition: .4s ease transform;
  transition: .4s ease transform;
}

.material-input select:focus ~ svg,
.material-input select:valid ~ svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.material-input select ~ label,
.material-input input[type=text] ~ label,
.material-input input[type=email] ~ label {
  position: absolute;
  font-size: 1rem;
  color: #222;
  font-weight: 500;
  pointer-events: none;
  top: 2px;
  -webkit-transition: .4s ease all;
  transition: .4s ease all;
}

.material-input select:focus ~ label,
.material-input select:valid ~ label,
.material-input input[type=text]:focus ~ label,
.material-input input[type=text]:valid ~ label,
.material-input input[type=email]:focus ~ label,
.material-input input[type=email]:valid ~ label {
  font-size: .875rem;
  top: -8px;
}

.material-input input[type=submit] {
  display: none;
}

.material-input input[type=submit] ~ label {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.5rem;
  background-color: #222;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
}

.material-input input[type=submit] ~ svg {
  margin-right: 8rem;
}

.material-input input[type=checkbox],
.material-input input[type=radio] {
  cursor: pointer;
  opacity: 0;
  position: absolute;
  height: 1px;
  width: 1px;
  /*
    Position in the middle for html5 default required pop-up
    (we want it to be pointing in the middle of the checkbox)
  */
  top: calc(5px + 1rem);
  left: calc(5px + 1rem);
}

.material-input input[type=checkbox] ~ label,
.material-input input[type=radio] ~ label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* visible "checkbox" */
}

.material-input input[type=checkbox] ~ label > span,
.material-input input[type=radio] ~ label > span {
  font-weight: 500;
  margin-left: 1.5rem;
}

.material-input input[type=checkbox] ~ label > div,
.material-input input[type=radio] ~ label > div {
  border-width: 1px;
  border-color: #b2b2b2;
  border-style: solid;
  padding: 1rem;
  display: inline-block;
  pointer-events: none;
  /* border * 2 + padding * 2 + inner "checkmark" size */
  height: calc(2px + 2rem + 8px);
  width: calc(2px + 2rem + 8px);
  /* inner "checkmark" */
}

.material-input input[type=checkbox] ~ label > div > div,
.material-input input[type=radio] ~ label > div > div {
  height: 8px;
  width: 8px;
}

.material-input input[type=checkbox]:checked ~ label > div > div,
.material-input input[type=radio]:checked ~ label > div > div {
  background-color: #ff993d;
}

.material-input input[type=file] {
  opacity: 0;
  position: absolute;
  height: 1px;
  width: 1px;
  bottom: 0px;
  left: 12px;
}

.material-input input[type=file] ~ label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  font-size: .875rem;
  cursor: pointer;
}

.material-input input[type=file] ~ label > svg {
  margin-right: 1rem;
}

.material-input input[type=file] ~ label > span {
  padding-top: 1px;
  margin-top: .25rem;
}

.collection-options__item {
  display: inline-block;
  font-size: .75rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .collection-options__item {
    margin-bottom: .5rem;
    display: inline-block;
  }
}

.collection-options__item > a {
  letter-spacing: -0.032em;
  position: relative;
}

@media (min-width: 768px) {
  .collection-options__item > a {
    padding-bottom: .25rem;
    display: inline-block;
    opacity: 1;
    visibility: visible;
  }

  .collection-options__item > a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #222;
    height: 2px;
    will-change: transform;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right center;
            transform-origin: right center;
    -webkit-transition: -webkit-transform .25s ease-in;
    transition: -webkit-transform .25s ease-in;
    transition: transform .25s ease-in;
    transition: transform .25s ease-in, -webkit-transform .25s ease-in;
  }
}

.collection-options__item > a.is-active:after,
.collection-options__item > a:focus:after,
.collection-options__item > a:hover:after {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.content-block__heading-box--main {
  margin-bottom: 0;
  padding: 1.5rem;
  float: none;
  width: 200%;
  background-color: #fff;
  margin-top: 15rem;
  margin-left: -16rem;
}

.content-block__heading-box--secondary {
  margin-bottom: 0;
  padding: 1.5rem;
  float: none;
  width: 200%;
  background-color: #fff;
  margin-top: 3rem;
  margin-left: -7rem;
}

.gallery-filter {
  /* TODO: Not so hacky */
}

.gallery-filter__header-wrapper {
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  background-color: #eee;
  top: 0px;
  z-index: 9;
}

@media (min-width: 1024px) {
  .gallery-filter__header-wrapper {
    background-color: #fff;
    padding-left: 0;
    padding-right: 0;
  }
}

.gallery-filter__header {
  width: 100%;
  background-color: #eee;
  top: 0px;
}

@media (min-width: 1024px) {
  .gallery-filter__header {
    background-color: #fff;
  }
}

.gallery-filter__filter-message {
  font-weight: 500;
  font-size: 1.5rem;
  width: 100%;
  display: inline-block;
}

@media (min-width: 1024px) {
  .gallery-filter__filter-message {
    margin-right: 2rem;
    width: 240px;
  }
}

.gallery-filter__search-term-display {
  display: none;
  font-weight: 500;
  font-size: 1.25rem;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .gallery-filter__search-term-display {
    display: inline;
  }
}

.gallery-filter__message-icon-wrapper {
  margin-right: 1rem;
}

@media (min-width: 1024px) {
  .gallery-filter__message-icon-wrapper {
    display: none;
  }
}

.gallery-filter__message-icon {
  -webkit-transition: .2s;
  transition: .2s;
}

.gallery-filter__information-wrapper {
  display: none;
}

@media (min-width: 1024px) {
  .gallery-filter__information-wrapper {
    display: inline-block;
    position: relative;
    width: calc(80% - 3rem);
    max-width: calc(100% - 240px - 3rem);
  }
}

.gallery-filter__total-results {
  font-weight: 500;
  font-size: 1.25rem;
  margin-right: 2rem;
}

.gallery-filter__selected-option {
  font-weight: 300;
  font-size: .875rem;
  cursor: pointer;
}

.gallery-filter__selected-option-separator {
  margin-left: 1rem;
  margin-right: 1rem;
}

.gallery-filter__clear-all {
  font-weight: 500;
  font-size: .875rem;
  margin-left: 2rem;
  cursor: pointer;
  display: none;
}

@media (min-width: 1024px) {
  .gallery-filter__clear-all {
    display: inline-block;
  }
}

.gallery-filter__clear-all--mobile {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  margin-right: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gallery-filter__clear-all--mobile svg {
  margin-right: .5rem;
}

.gallery-filter__apply-filters-button {
  background-color: #222;
  color: #fff;
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gallery-filter__apply-filters-button svg {
  margin-left: .5rem;
}

.gallery-filter__mobile-buttons-wrapper {
  display: none;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  background-color: #eee;
}

@media (min-width: 375px) {
  .gallery-filter__mobile-buttons-wrapper {
    padding-left: 1rem;
    padding-right: .5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.gallery-filter__option-categories-wrapper {
  display: none;
}

@media (min-width: 1024px) {
  .gallery-filter__option-categories-wrapper {
    margin-right: 2rem;
    display: inline-block;
    width: 240px;
  }
}

.gallery-filter__option-categories {
  width: 100%;
  display: inline-block;
  background-color: #eee;
  top: 0px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

@media (min-width: 1024px) {
  .gallery-filter__option-categories {
    background-color: #fff;
    overflow-x: hidden;
  }
}

.gallery-filter__option-category {
  display: none;
  border-color: #ccc;
  background-color: #eee;
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.gallery-filter__option-category:first-child {
  border-top-style: solid;
  border-top-width: 1px;
}

@media (min-width: 1024px) {
  .gallery-filter__option-category:first-child {
    border-top-width: 0px;
  }
}

@media (min-width: 1024px) {
  .gallery-filter__option-category {
    display: block;
    background-color: #fff;
    border-bottom-width: 0px;
  }
}

.gallery-filter__option-category-name-wrapper {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .gallery-filter__option-category-name-wrapper {
    padding: 0;
  }
}

.gallery-filter__option-category-name {
  font-weight: 500;
  font-size: 1.25rem;
}

.gallery-filter__category-collapse-icon {
  width: 100%;
  position: relative;
  -webkit-transition: .2s;
  transition: .2s;
  right: -4px;
  bottom: -4px;
}

.gallery-filter__options {
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .gallery-filter__options {
    margin-top: 1rem;
    padding-left: 0;
    padding-right: 0;
  }
}

.gallery-filter__option {
  position: relative;
}

.gallery-filter__option-label {
  padding-left: .5rem;
  margin-bottom: .5rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-size: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.gallery-filter__option-label:hover input[type=checkbox]:not(:checked) ~ div {
  background-color: #ddd;
}

.gallery-filter__option-label-checkbox {
  position: relative;
  border-color: #222;
  border-style: solid;
  display: inline-block;
  margin-right: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  padding: 4px;
  border-width: 1.5px;
}

.gallery-filter__option-label-checkbox input[type=checkbox] {
  cursor: pointer;
  opacity: 0;
  position: absolute;
  height: 0;
  width: 0;
}

.gallery-filter__option-label-checkbox input[type=checkbox]:checked ~ div {
  background-color: #ff993d;
}

.gallery-filter__option-label-checkbox div {
  position: relative;
  height: calc(1rem - 3px);
  width: calc(1rem - 3px);
}

.gallery-filter__option-label-text {
  position: relative;
  font-weight: 300;
  top: 2px;
}

.gallery-filter__search-box-container {
  background-color: #eee;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-color: #ccc;
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

@media (min-width: 1024px) {
  .gallery-filter__search-box-container {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    border-bottom-width: 0px;
  }
}

.gallery-filter__search-box-container svg {
  width: 32px;
}

@media (min-width: 1024px) {
  .gallery-filter__search-box-container svg {
    width: 18px;
  }
}

.gallery-filter__search-box-container input {
  background-color: #eee;
  margin-left: 1rem;
  width: 100%;
}

.gallery-filter__search-box-container input::-webkit-input-placeholder {
  font-weight: 300;
  color: #222;
}

.gallery-filter__search-box-container input::-moz-placeholder {
  font-weight: 300;
  color: #222;
}

.gallery-filter__search-box-container input:-ms-input-placeholder {
  font-weight: 300;
  color: #222;
}

.gallery-filter__search-box-container input::-ms-input-placeholder {
  font-weight: 300;
  color: #222;
}

.gallery-filter__search-box-container input::placeholder {
  font-weight: 300;
  color: #222;
}

.gallery-filter__search-box-mobile-separator {
  background-color: #fff;
  min-height: 1rem;
  max-height: 1rem;
}

@media (min-width: 1024px) {
  .gallery-filter__search-box-mobile-separator {
    min-height: 0;
    max-height: 0;
  }
}

.gallery-filter__hr {
  border-color: #eee;
  margin-top: 1rem;
  margin-bottom: 1rem;
  width: 100%;
  display: none;
  border-width: 1px;
  border-style: solid;
  border-radius: 5px;
}

@media (min-width: 1024px) {
  .gallery-filter__hr {
    display: block;
  }
}

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

.gallery-filter__radio label {
  position: relative;
  display: block;
  font-size: .875rem;
  font-family: "3form Graphik", Helvetica, sans-serif;
  font-weight: 300;
  color: #222;
  margin-bottom: 1rem;
  cursor: pointer;
  line-height: calc(100% + 8px);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .gallery-filter__radio label {
    font-size: 1rem;
  }
}

.gallery-index__page-heading-container {
  padding-bottom: .5rem;
}

@media (min-width: 1024px) {
  .gallery-index__page-heading-container {
    padding-bottom: 1.5rem;
  }
}

.gallery-index__main-content {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .gallery-index__main-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.gallery-index__results-grid-container {
  width: 100%;
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  .gallery-index__results-grid-container {
    margin-top: 0;
    max-width: calc(100% - 240px - 3rem);
  }
}

.gp__container {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background-color: rgba(0, 0, 0, 0);
  height: 100vh;
  width: 100%;
  overflow: auto;
}

.gp__body {
  background-color: #fff;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background-color: white;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

@media (min-width: 600px) {
  .gp__body {
    margin-top: 5rem;
    margin-bottom: 5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 2rem;
    width: 83.3333333333%;
  }
}

.gp__close {
  position: sticky;
  float: right;
  top: 5em;
  height: 2em;
  width: 2em;
  color: white;
}

.gp__hero-info {
  background-color: #fff;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1.5rem;
  margin-top: -4rem !important;
  min-height: 6rem;
}

@media (min-width: 600px) {
  .gp__hero-info {
    padding-left: 4rem;
    padding-right: 4rem;
    padding-top: 4rem;
    margin-top: -12rem !important;
    min-height: 14rem;
  }
}

.gp__hero-image {
  background-size: cover;
  background-position: 50% 50%;
  height: 25em;
}

@media (min-width: 768px) {
  .gp__hero-image {
    height: 45em;
  }
}

.gp__header-text {
  font-weight: 500;
  font-size: 2rem;
  line-height: calc(100% + 8px);
  letter-spacing: -1.25px;
}

.gp__help-text {
  font-weight: 300;
  font-size: .875rem;
}

.gp__details-wrapper {
  background-color: #eee;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .gp__details-wrapper {
    padding: 3rem;
    margin-top: 0;
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -2em;
  }
}

.gp__details-wrapper .title {
  padding-left: 2.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .gp__details-wrapper .title {
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media (min-width: 768px) {
  .gp__details-wrapper .attributes {
    padding-left: 2.5rem;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .gp__details-wrapper .attributes .attr {
    width: inherit;
  }
}

.gp__properties a {
  color: inherit;
  text-decoration: none;
}

.gp__case-study-wrapper {
  margin-bottom: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.gp__case-study-wrapper .case-study-media {
  height: 45em;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gp__case-study-wrapper .case-study-description {
  font-family: "3form Graphik", Helvetica, sans-serif;
  color: #222;
  font-size: 1.5rem;
  line-height: calc(100% + 8px);
  font-weight: 300;
  letter-spacing: -1px;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.gp__images-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.gp__images-wrapper .image-wrapper {
  margin-left: .5rem;
  margin-right: .5rem;
  margin-bottom: 2rem;
  max-width: 100%;
}

@media (min-width: 600px) {
  .gp__images-wrapper .image-wrapper {
    margin: 2.5rem;
  }
}

.gp__images-wrapper .image-wrapper .vimeo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.gp__images-wrapper .image-wrapper .vimeo-wrapper vimeo-video {
  margin-left: .5rem;
  margin-right: .5rem;
  display: block;
  width: 320px;
  max-width: 100%;
}

@media (min-width: 768px) {
  .gp__images-wrapper .image-wrapper .vimeo-wrapper vimeo-video {
    width: 700px;
  }
}

@media (min-width: 1024px) {
  .gp__images-wrapper .image-wrapper .vimeo-wrapper vimeo-video {
    width: 1000px;
  }
}

@media (min-width: 768px) {
  .gp__images-wrapper .smaller {
    width: 40%;
  }
}

.gp__similar-projects-wrapper {
  background-color: #eee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -2em;
}

@media (min-width: 1200px) {
  .gp__header {
    padding-left: calc(5em + 240px) !important;
  }
}

.gp__header h2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.gp__description {
  font-family: "3form Graphik", Helvetica, sans-serif;
  color: #222;
  font-size: 1.5rem;
  line-height: calc(100% + 8px);
  font-weight: 300;
  letter-spacing: -1px;
  font-weight: 300;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .gp__description {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
}

.gp__description a {
  font-weight: 500;
  color: #222;
}

.gp__left,
.gp__right {
  width: 8.3333333333%;
  min-width: 32px;
}

.gp__socials {
  display: none;
}

@media (min-width: 768px) {
  .gp__socials {
    display: inherit;
    position: sticky;
    list-style: none;
    padding: 0;
    top: 10em;
    height: 10em;
    width: 3em;
    color: white;
  }

  .gp__socials .icon use {
    fill: currentColor;
    color: #999;
    -webkit-transition: fill .25s ease-in-out;
    transition: fill .25s ease-in-out;
  }

  .gp__socials .icon:hover use {
    fill: #fff;
  }
}

.gp__list-item {
  font-size: .875rem;
  line-height: 2;
  margin-bottom: 1rem;
  margin-left: 1rem;
}

.global-footer__list--socials .gp__list-item:not(:last-child) {
  margin-right: .5rem;
}

.global-footer__list--socials .gp__list-item a {
  display: inline-block;
}

.global-footer__list--socials .gp__list-item .icon {
  color: #b2b2b2;
}

.global-footer__list--terms .gp__list-item {
  color: #b2b2b2;
}

.global-footer__list--terms .gp__list-item:not(:last-child) {
  margin-right: 1.5rem;
}

@media (max-width: 480px) {
  .global-footer__list--links .gp__list-item:first-child {
    margin-top: .75rem;
  }
}

.global-footer__list--links .gp__list-item .icon {
  margin-right: 1rem;
}

@media (min-width: 481px) and (max-width: 1024px) {
  .global-footer__list--links .gp__list-item .icon {
    width: 1.5rem;
  }
}

.gp__list-item .a:after,
.gp__list-item .in-page-nav__item:after {
  top: calc(100% + 2px);
}

.gp-image * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.gp-image .container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gp-image .lg-container {
  max-width: 100%;
  position: relative;
  padding: 0;
}

.gp-image .lg-image {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.gp-image .hotspot-image {
  background-color: #b2b2b2;
  display: block;
}

.gp-image .lg-hotspot {
  position: absolute;
  margin: 0;
  padding: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 0;
}

.gp-image .lg-hotspot:hover,
.gp-image .lg-hotspot:active {
  z-index: 10;
}

.gp-image .lg-hotspot:hover .lg-hotspot__button:after,
.gp-image .lg-hotspot:active .lg-hotspot__button:after {
  background-color: #b2b2b2;
}

.gp-image .lg-hotspot--selected {
  z-index: 10;
}

.gp-image .lg-hotspot--selected .lg-hotspot__label {
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.gp-image .lg-hotspot__button {
  height: 32px;
  width: 32px;
  padding: 0px;
  border-radius: 100%;
  border: 1px solid #ff993d;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
          box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
  z-index: 10;
  -webkit-animation: button-pulse 7s ease-in-out infinite;
          animation: button-pulse 7s ease-in-out infinite;
}

.gp-image .lg-hotspot__button:after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
  content: "";
  display: block;
  height: 11.2px;
  width: 11.2px;
  border-radius: 100%;
  border: 3px solid white;
  background-color: #ff993d;
  -webkit-transition: border-color 1s linear;
  transition: border-color 1s linear;
}

.gp-image .lg-hotspot__label {
  display: none;
  position: absolute;
  max-width: 50vw;
  background-color: white;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
          box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
  font-size: 14.5px;
  line-height: 1.45em;
  z-index: -1;
  pointer-events: none;
  border-radius: 2px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  opacity: 0;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}

.gp-image .lg-hotspot__label h4 {
  margin: 0;
  padding: .65em 16px;
  font-size: 1.1em;
  font-weight: normal;
  letter-spacing: .02em;
  border-radius: 2px 2px 0 0;
}

.gp-image .lg-hotspot__label p {
  margin: 0;
  padding: 1.1em 16px 0 16px;
  color: #333;
}

.gp-image .lg-hotspot--top-left .lg-hotspot__label {
  top: 16px;
  left: 16px;
}

.gp-image .lg-hotspot--top-right .lg-hotspot__label {
  top: 16px;
  right: 16px;
}

.gp-image .lg-hotspot--bottom-right .lg-hotspot__label {
  right: 16px;
  bottom: 16px;
}

.gp-image .lg-hotspot--bottom-left .lg-hotspot__label {
  bottom: 16px;
  left: 16px;
}

@-webkit-keyframes button-pulse {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    opacity: 1;
  }

  40% {
    -webkit-transform: scale(1.15, 1.15);
            transform: scale(1.15, 1.15);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    opacity: 1;
  }
}

@keyframes button-pulse {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    opacity: 1;
  }

  40% {
    -webkit-transform: scale(1.15, 1.15);
            transform: scale(1.15, 1.15);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    opacity: 1;
  }
}

.gp-image .hotspot-wrapper {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.gp-image .hotspot-wrapper .hotspot-section {
  padding-left: 1rem;
  padding-right: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  pointer-events: visible;
}

.gp-image .hotspot-wrapper .hotspot-section .hotspot-content .content-box {
  padding-bottom: .5rem;
  width: 125px;
}

.gp-image .hotspot-wrapper .leftborder {
  border-left: 1px solid;
  border-left-color: #b2b2b2;
}

.lessspacing {
  height: 1em;
}

.resources-index {
  padding-bottom: 2.5rem;
}

.resources-index__page-heading-container {
  padding-bottom: .5rem;
}

@media (min-width: 1024px) {
  .resources-index__page-heading-container {
    padding-bottom: 1.5rem;
  }
}

.resources-index__main-content {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .resources-index__main-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (min-width: 1600px) {
  .resources-index__main-content {
    max-width: 1920px;
    margin: 0 auto;
  }
}

.resources-index__results-grid-container {
  width: 100%;
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  .resources-index__results-grid-container {
    margin-top: 0;
    padding-top: 1.5rem;
    max-width: calc(100% - 200px - 2rem);
  }
}

.resources-filter__header-wrapper {
  width: 100%;
  padding-top: 1.5rem;
  top: 0px;
  z-index: 9;
}

@media (min-width: 1024px) {
  .resources-filter__header-wrapper {
    background-color: #fff;
    padding-left: 0;
    padding-right: 0;
  }
}

.resources-filter__header {
  width: 100%;
  top: 0px;
}

@media (min-width: 1024px) {
  .resources-filter__header {
    background-color: #fff;
  }
}

.resources-filter__header-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.resources-filter__header-title h1 {
  font-weight: 400;
  font-size: 1.75em;
  letter-spacing: -1.12px;
}

.resources-filter__header-title hr {
  display: block;
}

@media (min-width: 768px) {
  .resources-filter__header-title {
    font-size: initial;
  }
}

.resources-filter__filter-message {
  display: none;
  font-size: .875rem;
  letter-spacing: -0.2px;
}

@media (min-width: 1024px) {
  .resources-filter__filter-message {
    font-weight: 500;
    width: 100%;
    display: inline-block;
    margin-right: 2rem;
    width: 200px;
  }
}

.resources-filter__search-term-display {
  display: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .resources-filter__search-term-display {
    display: inline;
  }
}

.resources-filter__message-icon-wrapper {
  margin-right: 1rem;
}

@media (min-width: 1024px) {
  .resources-filter__message-icon-wrapper {
    display: none;
  }
}

.resources-filter__message-icon {
  -webkit-transition: .2s;
  transition: .2s;
}

.resources-filter__information-wrapper {
  display: none;
}

@media (min-width: 1024px) {
  .resources-filter__information-wrapper {
    display: inline-block;
    position: relative;
    width: calc(80% - 3rem);
    max-width: calc(100% - 240px - 3rem);
  }
}

.resources-filter__mobile-icons-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.resources-filter__mobile-icons-wrapper:first-child {
  margin-right: 1.5rem;
}

@media (min-width: 1024px) {
  .resources-filter__mobile-icons-wrapper {
    display: none;
  }
}

.resources-filter__total-results {
  margin-right: 3rem;
  font-weight: 500;
}

.resources-filter__selected-option {
  font-size: .875rem;
  cursor: pointer;
  padding-right: 1rem;
  border-right: 1px solid #222;
  letter-spacing: -0.2px;
}

.resources-filter__selected-option:not(:first-child) {
  padding-left: 1rem;
}

.resources-filter__clear-all {
  font-size: .875rem;
  cursor: pointer;
  display: none;
  padding-left: 1rem;
  letter-spacing: -0.2px;
}

@media (min-width: 1024px) {
  .resources-filter__clear-all {
    display: inline-block;
  }
}

.resources-filter__clear-all--mobile {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-color: #b2b2b2;
  border: 1px solid;
}

.resources-filter__apply-filters-button {
  background-color: #222;
  color: #fff;
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.resources-filter__apply-filters-button svg {
  margin-left: .5rem;
}

.resources-filter__mobile-buttons-wrapper {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (min-width: 600px) {
  .resources-filter__mobile-buttons-wrapper {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

@media (min-width: 1024px) {
  .resources-filter__mobile-buttons-wrapper {
    display: none;
  }
}

@media (min-width: 1024px) {
  .resources-filter__option-categories-wrapper {
    margin-right: 2rem;
    width: 200px;
  }
}

.resources-filter__option-categories {
  width: 100%;
  display: inline-block;
  top: 0px;
}

@media (min-width: 1024px) {
  .resources-filter__option-categories {
    background-color: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    position: sticky;
    max-height: calc(100vh - 3em);
    padding-top: 1.5em;
    padding-bottom: 1.5em;
    padding-right: 6px;
  }
}

.resources-filter__option-category {
  display: none;
}

@media (min-width: 1024px) {
  .resources-filter__option-category {
    display: block;
    background-color: #fff;
  }
}

.resources-filter__option-category-name-wrapper {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  padding: 1rem;
}

@media (min-width: 1024px) {
  .resources-filter__option-category-name-wrapper {
    padding: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

.resources-filter__option-category-name {
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.2px;
}

.resources-filter__category-collapse-icon {
  width: 100%;
  position: relative;
  -webkit-transition: .2s;
  transition: .2s;
  right: -4px;
  bottom: -4px;
}

.resources-filter__options {
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .resources-filter__options {
    margin-top: .75rem;
    padding-left: 0;
    padding-right: 0;
  }
}

.resources-filter__option {
  position: relative;
}

.resources-filter__option-label {
  margin-bottom: .5rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-size: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.resources-filter__option-label:hover input[type=checkbox]:not(:checked) ~ div,
.resources-filter__option-label:hover input[type=radio]:not(:checked) ~ div {
  background-color: #ddd;
}

.resources-filter__option-label-checkbox {
  position: relative;
  border-color: #222;
  border-style: solid;
  display: inline-block;
  margin-right: .75rem;
  width: 1rem;
  height: 1rem;
  padding: 1px;
  border-width: 1px;
}

.resources-filter__option-label-checkbox--radio {
  border-radius: 50%;
}

.resources-filter__option-label-checkbox--radio input ~ div {
  border-radius: 50%;
  margin: 1px 0 0 1px;
}

.resources-filter__option-label-checkbox input[type=checkbox],
.resources-filter__option-label-checkbox input[type=radio] {
  cursor: pointer;
  opacity: 0;
  position: absolute;
  height: 0;
  width: 0;
}

.resources-filter__option-label-checkbox input[type=checkbox]:checked ~ div,
.resources-filter__option-label-checkbox input[type=radio]:checked ~ div {
  background-color: #ff993d;
}

.resources-filter__option-label-checkbox div {
  position: relative;
  height: calc(1rem - 6px);
  width: calc(1rem - 6px);
  margin: 1px 0 0 1px;
}

.resources-filter__option-label-text {
  font-size: 1rem;
  position: relative;
  letter-spacing: -0.2px;
  top: 2px;
}

.resources-filter__search-box-container {
  padding: .75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #222;
  font-size: .875rem;
  border: 1px solid #c0c0c0;
}

@media (min-width: 1024px) {
  .resources-filter__search-box-container {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}

.resources-filter__search-box-container svg {
  width: 26px;
}

@media (min-width: 1024px) {
  .resources-filter__search-box-container svg {
    width: 16px;
  }
}

.resources-filter__search-box-container input {
  width: 100%;
}

.resources-filter__search-box-container input::-webkit-input-placeholder {
  color: #222;
  font-size: .875rem;
  font-size: 14px;
}

.resources-filter__search-box-container input::-moz-placeholder {
  color: #222;
  font-size: .875rem;
  font-size: 14px;
}

.resources-filter__search-box-container input:-ms-input-placeholder {
  color: #222;
  font-size: .875rem;
  font-size: 14px;
}

.resources-filter__search-box-container input::-ms-input-placeholder {
  color: #222;
  font-size: .875rem;
  font-size: 14px;
}

.resources-filter__search-box-container input::placeholder {
  color: #222;
  font-size: .875rem;
  font-size: 14px;
}

.resources-filter__hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  width: 100%;
  border-bottom: .5px solid #c0c0c0;
}

@media (min-width: 1024px) {
  .resources-filter__hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

.resources-filter__hr--main {
  margin-bottom: 1.5rem;
  width: 100%;
  margin-top: 1.375rem;
  border-bottom: .5px solid #c0c0c0;
}

.resources-filter__hr--first {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  width: 100%;
  border-bottom: .5px solid #c0c0c0;
}

.resources-filter__show {
  display: inline-block;
}

.results-grid__items {
  width: 100%;
  padding-top: 1.5em;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-gap: 25px;
}

@media (min-width: 768px) {
  .results-grid__items {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .results-grid__items {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px) {
  .results-grid__items {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (min-width: 1600px) {
  .results-grid__items {
    grid-template-columns: repeat(8, 1fr);
  }
}

@media (min-width: 1200px) {
  .results-grid__items {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.results-grid__item-wrapper a {
  width: 100%;
  height: 100%;
  color: #222;
  text-decoration: none;
}

.results-grid__item {
  width: 100%;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .1);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .1);
}

.results-grid__item-parent-name {
  background-color: #fff;
  text-wrap: auto;
}

.results-grid__item-wrapper:hover .results-grid__item-parent-name {
  overflow: visible;
  text-overflow: initial;
  white-space: normal;
}

@media (min-width: 600px) {
  .results-grid__item-parent-name {
    font-size: .875rem;
  }
}

.results-grid__item-variant-name {
  background-color: #fff;
  padding-top: .25rem;
  text-wrap: auto;
}

.results-grid__item-wrapper:hover .results-grid__item-variant-name {
  overflow: visible;
  text-overflow: initial;
  white-space: normal;
}

@media (min-width: 600px) {
  .results-grid__item-variant-name {
    font-size: .875rem;
  }
}

.results-grid__item-info {
  width: 100%;
  background-color: #fff;
  margin-top: .5rem;
}

.results-grid__resources-filter-container {
  margin-top: 1rem;
}

.results-grid .error-message {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  color: #ff993d;
}

.results-grid .no-results {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.5;
}

.results-grid .refresh-search {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  margin-top: 1rem;
  cursor: pointer;
}

.results-grid .refresh-search .icon-refresh {
  width: 2rem;
  height: 2rem;
  margin-right: .75rem;
}

.gallery-grid__items {
  width: 100%;
  max-width: 100%;
  display: inline-grid;
  gap: 2em;
  grid-template-columns: repeat(1, minmax(0, auto));
}

@media (min-width: 768px) {
  .gallery-grid__items {
    grid-template-columns: repeat(2, minmax(0, auto));
  }
}

@media (min-width: 1200px) {
  .gallery-grid__items {
    gap: 3em;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 2560px) {
  .gallery-grid__items {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-grid__item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.gallery-grid__item-wrapper a {
  width: 100%;
  display: inline-block;
  color: #222;
  cursor: pointer;
}

@media (min-width: 768px) {
  .gallery-grid__item-wrapper {
    aspect-ratio: 1;
  }
}

@media (min-width: 1200px) {
  .gallery-grid__item-wrapper {
    aspect-ratio: unset;
  }
}

.gallery-grid__item {
  width: 100%;
  z-index: 6;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-grid__item-parent-name {
  font-size: 1.25rem;
  font-weight: 500;
  background-color: #fff;
}

@media (min-width: 600px) {
  .gallery-grid__item-parent-name {
    font-size: 1.5rem;
  }
}

@media (min-width: 2560px) {
  .gallery-grid__item-parent-name {
    font-size: 2rem;
  }
}

.gallery-grid__item-variant-name {
  font-size: .75em;
  letter-spacing: -0.38;
}

.gallery-grid__item-info {
  width: 100%;
  background-color: #fff;
  position: relative;
  padding-top: .75rem;
  padding-bottom: 2rem;
  bottom: 0;
  z-index: 8;
}

.gallery-grid__resources-filter-container {
  margin-top: 1rem;
}

.gallery-grid .error-message {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  color: #ff993d;
}

.gallery-grid .no-results {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.5;
}

.gallery-grid .refresh-search {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  margin-top: 1rem;
  cursor: pointer;
}

.gallery-grid .refresh-search .icon-refresh {
  width: 2rem;
  height: 2rem;
  margin-right: .75rem;
}

.gallery-grid__img-wrap {
  position: relative;
}

@media (min-width: 1024px) {
  .page-heading--with-images__wrapper {
    margin-bottom: 250px;
  }
}

@media (min-width: 1200px) {
  .page-heading--with-images__wrapper {
    margin-bottom: 25px;
  }
}

@media (min-width: 1600px) {
  .page-heading--with-images__wrapper {
    margin-bottom: 100px;
  }
}

.page-heading--without-images {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 1024px) {
  .page-heading--without-images {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (min-width: 1200px) {
  .page-heading--without-images {
    padding-left: 20%;
  }
}

.page-heading--without-images__headings-container {
  font-size: 2rem;
  line-height: calc(100% + 8px);
  letter-spacing: -1.25px;
  padding-bottom: 1.5rem;
  padding-top: 2.5rem;
}

@media (min-width: 768px) {
  .page-heading--without-images__headings-container {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 3.5rem;
    line-height: calc(100% + 8px);
    letter-spacing: -2px;
    padding-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .page-heading--without-images__headings-container {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 5rem;
    line-height: calc(100% + 8px);
    letter-spacing: -3px;
  }
}

.page-heading--without-images__main-heading {
  font-weight: 500;
}

.page-heading--without-images__sub-heading {
  font-weight: 300;
}

.page-heading--without-images__description {
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: -1px;
  font-weight: 300;
  padding-bottom: 2rem;
}

.page-heading--without-images__minimal {
  font-size: 2rem;
  line-height: calc(100% + 8px);
  letter-spacing: -1.25px;
}

.styled-select {
  width: 100%;
  background-color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .styled-select {
    max-width: 50%;
  }
}

.styled-select__selected-text-icon-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.styled-select__selected-text {
  display: inline-block;
  font-weight: 500;
  text-decoration: none;
  margin-left: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.styled-select__arrow-icon {
  margin-top: 1.5rem;
  margin-right: 1.5rem;
  width: 20px;
  height: 20px;
}

.styled-select.active .styled-select__arrow-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.styled-select__arrow-icon svg {
  stroke-width: 2px;
}

.styled-select__options-divider {
  background-color: #ddd;
  -ms-flex-item-align: center;
      align-self: center;
  width: 100%;
  height: 2px;
  -webkit-transition: width .2s;
  transition: width .2s;
}

.styled-select.active > .styled-select__options-divider {
  width: calc(100% - 48px);
}

.styled-select__options-list {
  cursor: default;
  background-color: #fff;
  width: 100%;
  font-weight: 500;
  list-style-type: none;
  list-style-position: outside;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: padding .2s;
  transition: padding .2s;
}

.styled-select.active .styled-select__options-list {
  padding-bottom: 1.5rem;
  max-height: 100%;
  opacity: 1;
}

.styled-select__options-list li {
  cursor: pointer;
  margin-left: -1rem;
  margin-top: 1.5rem;
}

.styled-select__options-list li:hover,
.styled-select__options-list li:focus {
  text-decoration: underline;
}

/*
Hero - Home

Used on the homepage.

Markup:
  <div class="w-full">
      <div class="swiper swiper-hero">
        <div class="js-swiper-hero swiper-container swiper-hero__container swiper-container-horizontal">
          <div class="swiper-wrapper swiper-hero__wrapper" style="transform: translate3d(-1600px, 0px, 0px); transition-duration: 0ms;"><div class="swiper-slide swiper-hero__slide swiper-slide-duplicate swiper-slide-next swiper-slide-duplicate-prev" data-swiper-slide-index="2" style="width: 400px; transition: all 0ms ease 0s;">
                <img class="js-swiper-slide-inner swiper-hero__slide-img" src="https://images.3-form.com/images/products/photo_large/542.jpg" alt="Limitless Design" style="transform: translate3d(800px, 0px, 0px); transition: all 0ms ease 0s;">
              </div>
              <div class="swiper-slide swiper-hero__slide swiper-slide-duplicate-active" data-swiper-slide-index="0" style="width: 400px; transition: all 0ms ease 0s;">
                <img class="js-swiper-slide-inner swiper-hero__slide-img" src="https://images.3-form.com/images/products/photo_large/542.jpg" alt="Feel good about Felt" style="transform: translate3d(600px, 0px, 0px); transition: all 0ms ease 0s;">
              </div>
              <div class="swiper-slide swiper-hero__slide" data-swiper-slide-index="1" style="width: 400px; transition: all 0ms ease 0s;">
                <img class="js-swiper-slide-inner swiper-hero__slide-img" src="https://images.3-form.com/images/collaborate/overview/slide_images/get_started.jpg" alt="fdsafasd gdfgsdfg" style="transform: translate3d(400px, 0px, 0px); transition: all 0ms ease 0s;">
              </div>
              <div class="swiper-slide swiper-hero__slide swiper-slide-prev swiper-slide-duplicate-next" data-swiper-slide-index="2" style="width: 400px; transition: all 0ms ease 0s;">
                <img class="js-swiper-slide-inner swiper-hero__slide-img" src="https://images.3-form.com/images/products/photo_large/542.jpg" alt="Limitless Design" style="transform: translate3d(200px, 0px, 0px); transition: all 0ms ease 0s;">
              </div>
          <div class="swiper-slide swiper-hero__slide swiper-slide-duplicate swiper-slide-active" data-swiper-slide-index="0" style="width: 400px; transition: all 0ms ease 0s;">
                <img class="js-swiper-slide-inner swiper-hero__slide-img" src="https://images.3-form.com/images/products/photo_large/542.jpg" alt="Feel good about Felt" style="transform: translate3d(0px, 0px, 0px); transition: all 0ms ease 0s;">
              </div></div>
        <span class="swiper-notification" aria-live="assertive" aria-atomic="true"></span></div>
      </div>
    </div>
    <div class="lg:grid-wrapper relative">
  <div class="grid-row">
    <div class="col-10 col-offset-2 lg:col-offset-4 lg:col-8 relative">
      <div class="swiper swiper-hero-content">
        <div class="js-swiper-hero-content swiper-container swiper-container-horizontal">
          <div class="swiper-wrapper swiper-hero-content__wrapper" style="transition-duration: 0ms; transform: translate3d(-993px, 0px, 0px);"><div class="swiper-slide swiper-hero-content__slide swiper-slide-duplicate swiper-slide-duplicate-active" data-swiper-slide-index="2" style="width: 331px;">
                <div class="swiper-hero-content__inner">
                  <p class="label label--line leading-normal mb-6 lg:mb-12 overflow-anim bg-white">gsdfg fdsgdsfgsd</p>
                  <h1 class="text-lg lg:h2 font-medium overflow-anim bg-white">Limitless Design<br>
                    <span class="font-light">Inspired Collection Vol. 2</span></h1>
                  <a href="#" class="mt-4 inline-block text-grey no-underline overflow-anim bg-white"><svg class="icon icon-cta"><use xlink:href="#icon-cta"></use></svg> <span class="text-grey a font-normal text-sm">Explore the Collection</span></a>
                </div>
              </div>
              <div class="swiper-slide swiper-hero-content__slide swiper-slide-duplicate-next" data-swiper-slide-index="0" style="width: 331px;">
                <div class="swiper-hero-content__inner">
                  <p class="label label--line leading-normal mb-6 lg:mb-12 overflow-anim bg-white">Felt Collection</p>
                  <h1 class="text-lg lg:h2 font-medium overflow-anim bg-white">Feel good about Felt<br>
                    <span class="font-light">Sola Felt</span></h1>
                  <a href="#" class="mt-4 inline-block text-grey no-underline overflow-anim bg-white"><svg class="icon icon-cta"><use xlink:href="#icon-cta"></use></svg> <span class="text-grey a font-normal text-sm">Discover Sola Felt</span></a>
                </div>
              </div>
              <div class="swiper-slide swiper-hero-content__slide swiper-slide-prev" data-swiper-slide-index="1" style="width: 331px;">
                <div class="swiper-hero-content__inner">
                  <p class="label label--line leading-normal mb-6 lg:mb-12 overflow-anim bg-white">Something longer fgfd hfgdhdfg hdfg</p>
                  <h1 class="text-lg lg:h2 font-medium overflow-anim bg-white">fdsafasd gdfgsdfg<br>
                    <span class="font-light">Sola Felt</span></h1>
                  <a href="#" class="mt-4 inline-block text-grey no-underline overflow-anim bg-white"><svg class="icon icon-cta"><use xlink:href="#icon-cta"></use></svg> <span class="text-grey a font-normal text-sm">Discover something</span></a>
                </div>
              </div>
              <div class="swiper-slide swiper-hero-content__slide swiper-slide-active" data-swiper-slide-index="2" style="width: 331px;">
                <div class="swiper-hero-content__inner overflow-anim-wrapper">
                  <p class="label label--line leading-normal mb-6 lg:mb-12 overflow-anim bg-white">gsdfg fdsgdsfgsd</p>
                  <h1 class="text-lg lg:h2 font-medium overflow-anim bg-white">Limitless Design<br>
                    <span class="font-light">Inspired Collection Vol. 2</span></h1>
                  <a href="#" class="mt-4 inline-block text-grey no-underline overflow-anim bg-white"><svg class="icon icon-cta"><use xlink:href="#icon-cta"></use></svg> <span class="text-grey a font-normal text-sm">Explore the Collection</span></a>
                </div>
              </div>
          <div class="swiper-slide swiper-hero-content__slide swiper-slide-duplicate swiper-slide-next" data-swiper-slide-index="0" style="width: 331px;">
                <div class="swiper-hero-content__inner">
                  <p class="label label--line leading-normal mb-6 lg:mb-12 overflow-anim bg-white">Felt Collection</p>
                  <h1 class="text-lg lg:h2 font-medium overflow-anim bg-white">Feel good about Felt<br>
                    <span class="font-light">Sola Felt</span></h1>
                  <a href="#" class="mt-4 inline-block text-grey no-underline overflow-anim bg-white"><svg class="icon icon-cta"><use xlink:href="#icon-cta"></use></svg> <span class="text-grey a font-normal text-sm">Discover Sola Felt</span></a>
                </div>
              </div></div>
          <div class="js-swiper-hero-pagination swiper-pagination swiper__pagination swiper-hero-content__pagination swiper-pagination-clickable swiper-pagination-bullets"><span class="swiper-pagination-bullet" tabindex="0" role="button" aria-label="Go to slide 1"></span><span class="swiper-pagination-bullet" tabindex="0" role="button" aria-label="Go to slide 2"></span><span class="swiper-pagination-bullet swiper-pagination-bullet-active" tabindex="0" role="button" aria-label="Go to slide 3"></span></div>
        <span class="swiper-notification" aria-live="assertive" aria-atomic="true"></span></div>
      </div>
    </div>
  </div>
</div>

Styleguide: Modules.Hero.Home
*/

.swiper-hero__slide {
  position: relative;
  overflow: hidden;
  height: 380px;
}

@media (min-width: 1024px) {
  .swiper-hero__slide {
    height: 575px;
  }
}

.swiper-hero__slide-img {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center;";
  height: 380px;
}

@media (min-width: 1024px) {
  .swiper-hero__slide-img {
    height: 575px;
  }
}

.swiper-hero-content {
  margin-top: -8rem;
}

@media (min-width: 1024px) {
  .swiper-hero-content {
    margin-top: -16rem;
  }
}

.swiper-hero-content__wrapper {
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .swiper-hero-content__wrapper {
    margin-bottom: 0;
    margin-top: 3rem;
  }
}

.swiper-hero-content__slide {
  background-color: #fff;
  width: 100%;
}

.swiper-hero-content__inner {
  padding: 1.5rem;
}

@media (min-width: 1024px) {
  .swiper-hero-content__inner {
    padding: 4rem;
  }
}

.swiper-hero-content__pagination {
  text-align: right;
  bottom: 0;
  position: absolute;
  width: auto !important;
  right: 1rem;
  height: 10px;
  left: auto;
}

@media (min-width: 1024px) {
  .swiper-hero-content__pagination {
    top: 0;
    right: 0;
  }
}

/*
Custom Swatch Block

A set of custom swatch cards.

Markup:
<div class="grid-wrapper">
  <div class="grid-row mb-8">
    <div class="col-12 lg:col-8 lg:col-offset-4">
      <h2 class="h2 mb-6 font-light"><span class="font-medium">Choose Colour</span><br>
      Create Comfort</h2>
      <p class="body">Sola Felt is ¼” thick with a Class A fire rating and is available in 15 colors.</p>
    </div>
  </div>
  <div class="card-block grid-row">
    <div class="card-container col-12 md:col-4 xl:col-3">
      <div class="custom-swatch bg-brand">
        <div class="custom-swatch__title">Title</div>
      </div>
    </div>
    <div class="card-container col-12 md:col-4 xl:col-3">
      <div class="custom-swatch" style="background-image:url(https://via.placeholder.com/628x520)">
        <div class="custom-swatch__title">Title</div>
      </div>
    </div>
    <div class="card-container col-12 md:col-4 xl:col-3">
      <div class="custom-swatch__link-wrapper js-accessible-card">
        <div class="custom-swatch custom-swatch--inverse bg-brand">
          <div class="custom-swatch__title"><a href="http://www.google.ca/" class="custom-swatch__link js-accessible-link">Title</a></div>
        </div>
      </div>
    </div>
    <div class="card-container col-12 md:col-4 xl:col-3">
      <div class="custom-swatch__link-wrapper js-accessible-card">
        <div class="custom-swatch" style="background-image:url(https://via.placeholder.com/628x520)">
          <div class="custom-swatch__title"><a href="http://www.google.ca/" class="custom-swatch__link js-accessible-link">Title</a></div>
        </div>
      </div>
    </div>
  </div>
</div>

Styleguide: Modules.custom-swatch-block
*/

.content-block {
  width: auto;
  text-align: left;
}

@media (min-width: 768px) {
  .content-block {
    margin-top: 6rem;
  }

  .content-block--no-title {
    margin-top: 3rem;
  }
}

.content-block__grid-row {
  margin-left: -0.5rem !important;
  margin-right: -0.5rem !important;
}

@media (min-width: 768px) {
  .content-block__grid-row {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }
}

.content-block__wrapper ~ .content-block__wrapper {
  padding-top: 1rem;
}

@media (min-width: 768px) {
  .content-block__wrapper ~ .content-block__wrapper {
    padding-top: 2rem;
  }
}

.content-block__image-outer {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 90%;
  z-index: -1;
}

.content-block__image-outer--main-article {
  width: 130%;
}

.content-block__image-outer--overflow {
  padding: 1.5rem;
  padding-bottom: 75%;
  margin-top: -64px;
}

@media (min-width: 768px) {
  .content-block__image-outer--overflow {
    float: left;
    margin-left: calc(-42.8571428571% - 16px);
    margin-right: 34px;
    margin-bottom: 34px;
    margin-top: -108px;
    width: 85.7142857143%;
  }
}

@media (min-width: 768px) {
  .content-block__image-outer--overflow--reverse {
    float: right;
    margin-left: 24px;
    margin-right: calc(-42.8571428571% - 16px);
  }
}

.content-block__image {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}

.card-driver__video-outer .content-block__image {
  position: relative;
}

.content-block__content-box {
  background-color: #fff;
  padding: 1rem;
  float: right;
  width: 83.33333%;
  margin-bottom: -1.5rem;
}

@media (min-width: 768px) {
  .content-block__content-box {
    margin-top: -8rem;
    margin-left: -16rem;
    margin-bottom: 0;
    padding: 1.5rem;
    float: none;
    width: 140%;
  }
}

.content-block__content-box--reverse {
  margin-right: 0;
  float: none;
}

@media (min-width: 768px) {
  .content-block__content-box--reverse {
    margin-left: 6rem;
    width: 140%;
  }
}

.content-block__title-box {
  background-color: #fff;
  width: 100%;
  padding: 1.5rem;
  position: relative;
  padding-left: 5%;
  margin-left: 0;
}

.content-block__title-box--reverse {
  width: 80%;
  padding-left: 0;
  margin-left: 16.6666666667%;
  margin-right: 0;
}

.content-block__designer-body {
  font-size: 1rem;
  margin-right: 48px;
  padding-right: 64px;
}

.content-block__case-box {
  background-color: #fff;
  padding: 1rem;
  float: right;
  width: 100%;
  margin-bottom: -2rem;
}

.content-block__title,
.content-block__subtitle {
  font-size: 2rem;
  line-height: calc(100% + 8px);
  letter-spacing: -1.25px;
  font-weight: 500;
  color: #222;
}

@media (min-width: 1024px) {
  .content-block__title,
  .content-block__subtitle {
    font-size: 2.5rem;
    line-height: calc(100% + 8px);
    letter-spacing: -1.5px;
  }
}

@media (min-width: 1200px) {
  .content-block__title,
  .content-block__subtitle {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 3rem;
    line-height: calc(100% + 8px);
    letter-spacing: -1.5px;
  }
}

.content-block__subtitle {
  font-weight: 300;
}

/*
Intro Block

Introductory text.

Markup:
<div class="intro-block grid-wrapper">
  <div class="intro-block__row grid-row">
    <div class="col-12 md:col-offset-4 md:col-7">
      <h3 class="intro-block__text">Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. </h3>
    </div>
  </div>
</div>

Styleguide: Modules.intro-block
*/

.intro-block__text {
  font-size: 2rem;
  line-height: calc(100% + 8px);
  letter-spacing: -1.25px;
  font-weight: 300;
}

@media (min-width: 768px) {
  .intro-block__text {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 3rem;
    line-height: calc(100% + 8px);
    letter-spacing: -1.5px;
  }
}

@media (min-width: 1024px) {
  .intro-block__text {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 3.5rem;
    line-height: calc(100% + 8px);
    letter-spacing: -2px;
  }
}

.color-portfolio .intro-block__text {
  line-height: 1.5;
}

@media (min-width: 768px) {
  .color-portfolio .intro-block__text {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: -1px;
    line-height: 2.5rem;
  }
}

.color-portfolio .intro-block__text a {
  position: relative;
  font-weight: 500;
  text-decoration: none;
  color: inherit;
}

.color-portfolio .intro-block__text a:hover:after,
.color-portfolio .intro-block__text a:focus:after {
  -webkit-transform: scaleX(0) !important;
          transform: scaleX(0) !important;
  -webkit-transform-origin: right center !important;
          transform-origin: right center !important;
}

.color-portfolio .intro-block__text a:after {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  content: "";
  top: 100%;
  height: 1px;
  will-change: transform;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform .25s ease-in;
  transition: -webkit-transform .25s ease-in;
  transition: transform .25s ease-in;
  transition: transform .25s ease-in, -webkit-transform .25s ease-in;
  background-color: currentColor;
}

/*
Driver block

A set of driver cards

Markup:
<div class="grid-wrapper">
  <ul class="grid-row list-reset overflow-hidden">
    <li class="card-driver js-accessible-card col-6 lg:col-4 {{modifier_class}}">
      <div class="card-driver__image-outer">
        <img class="card-driver__image" src="https://images.3-form.com/images/collaborate/overview/slide_images/get_started.jpg" alt="">
      </div>
      <div class="card-driver__content-outer">
        <div class="card-driver__content">
          <div class="card-driver__content-inner">
            <h4><a class="card-driver__title js-accessible-link" href="#">Card design woes</a></h4>
            <p class="body">Ten common pitfalls to avoid when designing card components.</p>
          </div>
        </div>
      </div>
    </li>
    <li class="card-driver js-accessible-card col-6 lg:col-4 {{modifier_class}}">
      <div class="card-driver__image-outer">
        <img class="card-driver__image" src="https://images.3-form.com/images/collaborate/overview/slide_images/get_started.jpg" alt="">
      </div>
      <div class="card-driver__content-outer">
        <div class="card-driver__content">
          <div class="card-driver__content-inner">
            <h4><a class="card-driver__title js-accessible-link" href="#">Card design woes</a></h4>
            <p class="body">Ten common pitfalls to avoid when designing card components.</p>
          </div>
        </div>
      </div>
    </li>
    <li class="card-driver js-accessible-card col-6 lg:col-4 {{modifier_class}}">
      <div class="card-driver__image-outer">
        <img class="card-driver__image" src="https://images.3-form.com/images/collaborate/overview/slide_images/get_started.jpg" alt="">
      </div>
      <div class="card-driver__content-outer">
        <div class="card-driver__content">
          <div class="card-driver__content-inner">
            <h4><a class="card-driver__title js-accessible-link" href="#">Card design woes</a></h4>
            <p class="body">Ten common pitfalls to avoid when designing card components.</p>
          </div>
        </div>
      </div>
    </li>
    <li class="card-driver js-accessible-card col-6 lg:col-4 {{modifier_class}}">
      <div class="card-driver__image-outer">
        <img class="card-driver__image" src="https://images.3-form.com/images/collaborate/overview/slide_images/get_started.jpg" alt="">
      </div>
      <div class="card-driver__content-outer">
        <div class="card-driver__content">
          <div class="card-driver__content-inner">
            <h4><a class="card-driver__title js-accessible-link" href="#">Card design woes</a></h4>
            <p class="body">Ten common pitfalls to avoid when designing card components.</p>
          </div>
        </div>
      </div>
    </li>
    <li class="card-driver js-accessible-card col-6 lg:col-4 {{modifier_class}}">
      <div class="card-driver__image-outer">
        <img class="card-driver__image" src="https://images.3-form.com/images/collaborate/overview/slide_images/get_started.jpg" alt="">
      </div>
      <div class="card-driver__content-outer">
        <div class="card-driver__content">
          <div class="card-driver__content-inner">
            <h4><a class="card-driver__title js-accessible-link" href="#">Card design woes</a></h4>
            <p class="body">Ten common pitfalls to avoid when designing card components.</p>
          </div>
        </div>
      </div>
    </li>
  </ul>
</div>

.card-driver--border - for hairline borders between cards, overflow hidden needed on container

Styleguide: Modules.driver-block
*/

/*
Exploded Diagram

A set of driver cards with grid offsets and customized content

Markup:
<div class="grid-wrapper">
  <ul class="grid-row list-reset exploded-diagram {{modifier_class}}">
    <li class="card-driver card-driver--right lg:card-driver--left card-driver--landscape card-driver--no-interaction col-12 lg:col-7">
      <div class="card-driver__image-outer">
        <img class="card-driver__image" src="https://images.3-form.com/images/collaborate/overview/slide_images/get_started.jpg" alt="">
      </div>
      <div class="card-driver__content-outer card-driver__content-outer--left exploded-diagram__diagram-content">
        <div class="card-driver__content card-driver__content--lg lg:card-driver__content--sm">
          <div class="card-driver__content-inner">
            <p class="label label--line mb-4">customization</p>
            <h4 class="p font-medium">Struttura Design Choices</h4>
            <ol class="p ol">
              <li>Struttura Design Choices</li>
              <li>Finish (Front and Back)</li>
              <li>Interlayer (Centered)</li>
              <li>White, Diffusion or Effect (Front, and/or 	Back)</li>
            </ol>
            <a href="#" download class="link-download-image"><svg class="icon icon-download icon--start" aria-hidden="true" focusable="false"><use xlink:href="#icon-download"></use></svg> Download image</a>
          </div>
        </div>
      </div>
    </li>
    <li class="card-driver card-driver--portrait card-driver--no-interaction col-12 lg:col-5">
      <div class="card-driver__image-outer">
        <img class="card-driver__image" src="https://images.3-form.com/images/collaborate/overview/slide_images/get_started.jpg" alt="">
      </div>
      <div class="card-driver__content-outer card-driver__content-outer--left">
        <div class="card-driver__content card-driver__content--lg lg:card-driver__content--md">
          <div class="card-driver__content-inner">
            <p class="label label--line mb-4">customization</p>
            <h4 class="p font-medium">Struttura Design Choices</h4>
            <ol class="p ol">
              <li>Struttura Design Choices</li>
              <li>Finish (Front and Back)</li>
              <li>Interlayer (Centered)</li>
              <li>White, Diffusion or Effect (Front, and/or 	Back)</li>
            </ol>
            <a href="#" download class="link-download-image"><svg class="icon icon-download icon--start" aria-hidden="true" focusable="false"><use xlink:href="#icon-download"></use></svg> Download image</a>
          </div>
        </div>
      </div>
    </li>
  </ul>
</div>

.exploded-diagram--reverse - alternate order of slides

Styleguide: Modules.exploded-diagram
*/

@media (min-width: 768px) {
  .exploded-diagram--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
  }

  .exploded-diagram--reverse .exploded-diagram__diagram-content {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.exploded-diagram__row-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.exploded-diagram__row-3 {
  padding-left: 0;
  padding-right: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (min-width: 768px) {
  .exploded-diagram__row-3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/*
Related Driver Block

Materials PDP and Product Applications have drivers to related pages.
These will link to other pages

Markup:
<div class="grid-wrapper">
  <div class="grid-row pt-24 pb-12">
    <div class="col-12 lg:col-5 lg:col-offset-7">
      <h3 class="h3">Other Materials you <span>might like</span></h3>
    </div>
  </div>
  <ul class="list-reset grid-row flex-no-wrap overflow-x-scroll scrolling-touch md:scrolling-auto md:flex-wrap">
    <li class="col-6 md:col-4 related-driver-row">
      <div class="related-driver">
        <a href="#" class="related-driver__link" title="">
          <h4 class="leading-normal font-medium text-base md:text-md">Chroma</h4>
          <p class="leading-normal font-light text-base md:text-md">Beautiful, Translucent, Luminous, and Durable</p>
        </a>
        <img
          class="related-driver__image"
          src="https://via.placeholder.com/150x120"
          alt=""
        />
      </div>
    </li>
    <li class="col-6 md:col-4 related-driver-row">
      <div class="related-driver">
        <a href="#" class="related-driver__link" title="">
          <h4 class="leading-normal font-medium text-base md:text-md">Chroma</h4>
          <p class="leading-normal font-light text-base md:text-md">Beautiful, Translucent, Luminous, and Durable</p>
        </a>
        <img
          class="related-driver__image"
          src="https://via.placeholder.com/150x120"
          alt=""
        />
      </div>
    </li>
    <li class="col-6 md:col-4 related-driver-row">
      <div class="related-driver">
        <a href="#" class="related-driver__link" title="">
          <h4 class="leading-normal font-medium text-base md:text-md">Chroma</h4>
          <p class="leading-normal font-light text-base md:text-md">Beautiful, Translucent, Luminous, and Durable</p>
        </a>
        <img
          class="related-driver__image"
          src="https://via.placeholder.com/150x120"
          alt=""
        />
      </div>
    </li>
    <li class="col-6 md:col-4 related-driver-row">
      <div class="related-driver">
        <a href="#" class="related-driver__link" title="">
          <h4 class="leading-normal font-medium text-base md:text-md">Chroma</h4>
          <p class="leading-normal font-light text-base md:text-md">Beautiful, Translucent, Luminous, and Durable</p>
        </a>
        <img
          class="related-driver__image"
          src="https://via.placeholder.com/150x120"
          alt=""
        />
      </div>
    </li>
    <li class="col-6 md:col-4 related-driver-row">
      <div class="related-driver">
        <a href="#" class="related-driver__link" title="">
          <h4 class="leading-normal font-medium text-base md:text-md">Chroma</h4>
          <p class="leading-normal font-light text-base md:text-md">Beautiful, Translucent, Luminous, and Durable</p>
        </a>
        <img
          class="related-driver__image"
          src="https://via.placeholder.com/150x120"
          alt=""
        />
      </div>
    </li>
  </ul>
</div>

Styleguide: Modules.related-driver-block
*/

.related-driver-row {
  position: relative;
}

.related-driver-row:before {
  border-top-width: 1px;
  border-color: #ddd;
  top: 0;
  position: absolute;
  content: "";
  left: .5rem;
  width: calc(100% - 1rem);
}

@media (min-width: 1024px) {
  .related-driver-row:before {
    width: calc(100% - 2rem);
    left: 1rem;
  }
}

.related-driver-row:after {
  top: 0;
  right: 0;
  border-right-width: 1px;
  border-color: #ddd;
  position: absolute;
  width: 1px;
  height: 100%;
  content: "";
}

.related-driver-row:last-child:after {
  border-width: 0;
}

@media (min-width: 768px) {
  .related-driver-row:nth-child(2n):after {
    border-width: 0;
  }
}

@media (min-width: 1024px) {
  .related-driver-row:nth-child(2n):after {
    border-right-width: 1px;
  }

  .related-driver-row:nth-child(3n):after {
    border-width: 0;
  }
}

/*
Materials Properties Panel

A panel container that uses a material appliations partial and material properties partial.

Markup:
<div class="panel__container">
	<div class="md:grid-wrapper">
		<header class="panel__header">
			<h2 class="h4">Properties <span>/ </span><span>Lorem ipsum dolor sit amet</span></h2>
      <button class="panel__button modal__close js-close-panel" aria-label="Close modal" data-micromodal-close><svg class="icon icon-arrow-draw-close" aria-hidden="true" focusable="false"><use xlink:href="#icon-arrow-draw-close"></use></svg><span class="sr-only">Close modal</span></button>
		</header>
		<main class="panel">
			<div class="panel__content">
				<div class="panel__row">
					<div class="content-card content-card--panel">
						<div class="content-card__inner">
							<div class="content-card__content">
								<h3 class="content-card__title">Cold blending</h3>
								<p class="p">Varia is ready to be formed to meet...</p>
							</div>
							<div class="content-card__image-outer">
								<img src="https://via.placeholder.com/276x276/f8f8f8?text=content+card+icon" class="content-card__image" alt="content card title"/>
							</div>
						</div>
					</div>
					<div class="content-card content-card--panel">
						<div class="content-card__inner">
							<div class="content-card__content">
								<h3 class="content-card__title">Cold blending</h3>
								<p class="p">Varia is ready to be formed to meet...</p>
							</div>
							<div class="content-card__image-outer">
								<img src="https://via.placeholder.com/276x276/f8f8f8?text=content+card+icon" class="content-card__image" alt="content card title"/>
							</div>
						</div>
					</div>
					<div class="content-card content-card--panel">
						<div class="content-card__inner">
							<div class="content-card__content">
								<h3 class="content-card__title">Cold blending</h3>
								<p class="p">Varia is ready to be formed to meet...</p>
							</div>
							<div class="content-card__image-outer">
								<img src="https://via.placeholder.com/276x276/f8f8f8?text=content+card+icon" class="content-card__image" alt="content card title"/>
							</div>
						</div>
					</div>
				</div>
			</div>
			<div class="panel__content">
				<div class="panel__header">
					<h3 class="panel__title h5">Additional Properties</h3>
				</div>
				<div class="panel__row panel__row--grid">
					<ul class="material-properties__list">
						<li class="material-properties__property">
							<div class="material-properties__content">
								<div class="material-properties__header">
									<h4 class="material-properties__title">Lorem ipsum</h4>
									<span class="material-properties__tooltip">
										<button type="button" class="button__tooltip" aria-label="more info" data-tooltip-content="Texture and/or finish">i</button>
										<span role="status"></span>
									</span>
								</div>
								<div class="material-properties__bar">
									<label for="material-property"></label>
									<progress id="material-property" name="material-property" max="100" value="0" data-property-bar-value="4">4</progress>
								</div>
							</div>
						</li>
						<li class="material-properties__property">
							<div class="material-properties__content">
								<div class="material-properties__header">
									<h4 class="material-properties__title">Lorem ipsum</h4>
									<span class="material-properties__tooltip">
										<button type="button" class="button__tooltip" aria-label="more info" data-tooltip-content="Texture and/or finish">i</button>
										<span role="status"></span>
									</span>
								</div>
								<div class="material-properties__bar">
									<label for="material-property"></label>
									<progress id="material-property" name="material-property" max="100" value="0" data-property-bar-value="3">3</progress>
								</div>
							</div>
						</li>
						<li class="material-properties__property">
							<div class="material-properties__content">
								<div class="material-properties__header">
									<h4 class="material-properties__title">Lorem ipsum</h4>
									<span class="material-properties__tooltip">
										<button type="button" class="button__tooltip" aria-label="more info" data-tooltip-content="Texture and/or finish">i</button>
										<span role="status"></span>
									</span>
								</div>
								<div class="material-properties__bar">
									<label for="material-property"></label>
									<progress id="material-property" name="material-property" max="100" value="0" data-property-bar-value="2">2</progress>
								</div>
							</div>
						</li>
					</ul>
					<ul class="material-properties__list">
						<li class="material-properties__property">
							<div class="material-properties__content">
								<div class="material-properties__header">
									<h4 class="material-properties__title">Lorem ipsum</h4>
									<span class="material-properties__tooltip">
										<button type="button" class="button__tooltip" aria-label="more info" data-tooltip-content="Texture and/or finish">i</button>
										<span role="status"></span>
									</span>
								</div>
								<div class="material-properties__bar">
									<label for="material-property"></label>
									<progress id="material-property" name="material-property" max="100" value="0" data-property-bar-value="2">2</progress>
								</div>
							</div>
						</li>
						<li class="material-properties__property">
							<div class="material-properties__content">
								<div class="material-properties__header">
									<h4 class="material-properties__title">Lorem ipsum</h4>
									<span class="material-properties__tooltip">
										<button type="button" class="button__tooltip" aria-label="more info" data-tooltip-content="Texture and/or finish">i</button>
										<span role="status"></span>
									</span>
								</div>
								<div class="material-properties__bar">
									<label for="material-property"></label>
									<progress id="material-property" name="material-property" max="100" value="0" data-property-bar-value="1">1</progress>
								</div>
							</div>
						</li>
						<li class="material-properties__property">
							<div class="material-properties__content">
								<div class="material-properties__header">
									<h4 class="material-properties__title">Lorem ipsum</h4>
									<span class="material-properties__tooltip">
										<button type="button" class="button__tooltip" aria-label="more info" data-tooltip-content="Texture and/or finish">i</button>
										<span role="status"></span>
									</span>
								</div>
								<div class="material-properties__bar">
									<label for="material-property"></label>
									<progress id="material-property" name="material-property" max="100" value="0" data-property-bar-value="0">0</progress>
								</div>
							</div>
						</li>
					</ul>
					<ul class="material-properties__list">
						<li class="material-properties__property">
							<div class="material-properties__content">
								<div class="material-properties__header">
									<h4 class="material-properties__title">Lorem ipsum</h4>
									<span class="material-properties__tooltip">
										<button type="button" class="button__tooltip" aria-label="more info" data-tooltip-content="Texture and/or finish">i</button>
										<span role="status"></span>
									</span>
								</div>
								<div class="material-properties__bar">
									<label for="material-property"></label>
									<progress id="material-property" name="material-property" max="100" value="0" data-property-bar-value="4">4</progress>
								</div>
							</div>
						</li>
						<li class="material-properties__property">
							<div class="material-properties__content">
								<div class="material-properties__header">
									<h4 class="material-properties__title">Lorem ipsum</h4>
									<span class="material-properties__tooltip">
										<button type="button" class="button__tooltip" aria-label="more info" data-tooltip-content="Texture and/or finish">i</button>
										<span role="status"></span>
									</span>
								</div>
								<div class="material-properties__bar">
									<label for="material-property"></label>
									<progress id="material-property" name="material-property" max="100" value="0" data-property-bar-value="3">3</progress>
								</div>
							</div>
						</li>
						<li class="material-properties__property">
							<div class="material-properties__content">
								<div class="material-properties__header">
									<h4 class="material-properties__title">Lorem ipsum</h4>
									<span class="material-properties__tooltip">
										<button type="button" class="button__tooltip" aria-label="more info" data-tooltip-content="Texture and/or finish">i</button>
										<span role="status"></span>
									</span>
								</div>
								<div class="material-properties__bar">
									<label for="material-property"></label>
									<progress id="material-property" name="material-property" max="100" value="0" data-property-bar-value="2">2</progress>
								</div>
							</div>
						</li>
					</ul>
					<ul class="material-properties__list">
						<li class="material-properties__property">
							<div class="material-properties__content">
								<div class="material-properties__header">
									<h4 class="material-properties__title">Lorem ipsum</h4>
									<span class="material-properties__tooltip">
										<button type="button" class="button__tooltip" aria-label="more info" data-tooltip-content="Texture and/or finish">i</button>
										<span role="status"></span>
									</span>
								</div>
								<div class="material-properties__bar">
									<label for="material-property"></label>
									<progress id="material-property" name="material-property" max="100" value="0" data-property-bar-value="2">2</progress>
								</div>
							</div>
						</li>
						<li class="material-properties__property">
							<div class="material-properties__content">
								<div class="material-properties__header">
									<h4 class="material-properties__title">Lorem ipsum</h4>
									<span class="material-properties__tooltip">
										<button type="button" class="button__tooltip" aria-label="more info" data-tooltip-content="Texture and/or finish">i</button>
										<span role="status"></span>
									</span>
								</div>
								<div class="material-properties__bar">
									<label for="material-property"></label>
									<progress id="material-property" name="material-property" max="100" value="0" data-property-bar-value="1">1</progress>
								</div>
							</div>
						</li>
						<li class="material-properties__property">
							<div class="material-properties__content">
								<div class="material-properties__header">
									<h4 class="material-properties__title">Lorem ipsum</h4>
									<span class="material-properties__tooltip">
										<button type="button" class="button__tooltip" aria-label="more info" data-tooltip-content="Texture and/or finish">i</button>
										<span role="status"></span>
									</span>
								</div>
								<div class="material-properties__bar">
									<label for="material-property"></label>
									<progress id="material-property" name="material-property" max="100" value="0" data-property-bar-value="0">0</progress>
								</div>
							</div>
						</li>
					</ul>
				</div>
			</div>
		</main>
	</div>
</div>

Styleguide: Modules.materials-properties-panel
*/

@media (min-width: 600px) {
  .material-properties:first-child .material-properties__content {
    border-top-width: 1px;
    border-color: #ccc;
  }
}

.material-properties__list {
  width: 50%;
  padding-left: 1rem;
  padding-bottom: 1rem;
}

@media (min-width: 600px) {
  .material-properties__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 25%;
  }

  .material-properties__list .material-properties__property:first-child .material-properties__content {
    border-top-width: 1px;
    border-color: #ccc;
  }
}

.material-properties__list:nth-child(-n+2) {
  padding-bottom: 0;
}

@media (min-width: 600px) {
  .material-properties__list:nth-child(-n+2) {
    padding-bottom: 1rem;
  }
}

.material-properties__list:nth-child(-n+2) .material-properties__property:first-child .material-properties__content {
  border-top-width: 1px;
  border-color: #ccc;
}

.material-properties__list:nth-child(even) {
  border-right-width: 0 !important;
}

@media (min-width: 600px) {
  .material-properties__list:nth-child(even):not(:last-child) {
    border-color: #ccc;
    border-right-width: 1px !important;
  }
}

.material-properties__list:not(:last-child) {
  border-right-width: 1px;
  border-color: #ccc;
}

.material-properties__property {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding-right: 1rem;
}

.material-properties__content {
  margin-bottom: 1rem;
  padding-top: 1rem;
}

.material-properties__content.is-disabled {
  pointer-events: none;
  opacity: .4;
}

.material-properties__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.material-properties__title {
  width: 75%;
  font-family: "3form Graphik", Helvetica, sans-serif;
  color: #222;
  font-size: 3rem;
  line-height: calc(100% + 8px);
  letter-spacing: -1.5px;
  color: #222;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.032em;
}

.material-properties__tooltip {
  position: relative;
}

.material-properties__tooltip .is-active {
  position: absolute;
  bottom: 0;
  padding-top: .75rem;
  padding-bottom: .75rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-top: -0.5rem;
  background-color: #ddd;
  font-weight: 500;
  font-size: .75rem;
  border-bottom-width: 2px;
  border-color: #ccc;
  line-height: 1.5;
  width: 145px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.material-properties__bar {
  padding-top: 1rem;
}

.material-properties__bar progress {
  height: 8px;
  width: 100%;
  border: 0;
  background-color: #ddd;
  color: #ff993d;
  overflow: hidden;
}

.material-properties__bar progress::-webkit-progress-bar {
  background-color: #ddd;
}

.material-properties__bar progress::-webkit-progress-value {
  background-color: #ff993d;
  -webkit-transition: width .75s ease-in;
  transition: width .75s ease-in;
}

.material-properties__bar progress::-moz-progress-bar {
  background-color: #ff993d;
  -moz-transition: padding-bottom .75s ease-in;
  transition: padding-bottom .75s ease-in;
  padding-bottom: var(--value);
  transform-origin: 0 0;
  transform: rotate(-90deg) translateX(-15px);
  padding-left: 15px;
  height: 0;
}

.material-properties__bar progress::-ms-fill {
  background-color: #ff993d;
  border: 0;
}

/*
Materials Specs Panel

A panel partial that contains a set of content cards. Used inside of a panel container.

Markup:
<div class="panel__container">
	<div class="md:grid-wrapper">
		<header class="panel__header">
			<h2 class="h4">Specs & Downloads</h2>
      <button class="panel__button modal__close js-close-panel" aria-label="Close modal" data-micromodal-close><svg class="icon icon-arrow-draw-close" aria-hidden="true" focusable="false"><use xlink:href="#icon-arrow-draw-close"></use></svg><span class="sr-only">Close modal</span></button>
		</header>
		<main class="panel">
			<div class="panel__content">
				<div class="panel__row">
					<div class="content-card content-card--panel">
						<div class="content-card__inner">
							<div class="content-card__content">
								<h3 class="content-card__title">Lorem ipsum</h3>
								<a href="#" download class="link-download-image link-download-image--black mt-2"><svg class="icon icon-download icon--start" aria-hidden="true" focusable="false"><use xlink:href="#icon-download"></use></svg> Lorem ipsum dolor</a>
								<a href="#" download class="link-download-image link-download-image--black mt-2"><svg class="icon icon-download icon--start" aria-hidden="true" focusable="false"><use xlink:href="#icon-download"></use></svg> Lorem ipsum dolor</a>
								<a href="#" download class="link-download-image link-download-image--black mt-2"><svg class="icon icon-download icon--start" aria-hidden="true" focusable="false"><use xlink:href="#icon-download"></use></svg> Lorem ipsum dolor</a>
							</div>
						</div>
					</div>
					<div class="content-card content-card--panel">
						<div class="content-card__inner">
							<div class="content-card__content">
								<h3 class="content-card__title">Lorem ipsum</h3>
								<p class="p">Ut enim ad minim veniam</p>
							</div>
						</div>
					</div>
					<div class="content-card content-card--panel">
						<div class="content-card__inner">
							<div class="content-card__content">
								<h3 class="content-card__title">Lorem ipsum</h3>
								<p class="p">Ut enim ad minim veniam</p>
							</div>
						</div>
					</div>
					<div class="content-card content-card--panel">
						<div class="content-card__inner">
							<div class="content-card__content">
								<h3 class="content-card__title">Lorem ipsum</h3>
								<p class="p">Ut enim ad minim veniam</p>
							</div>
						</div>
					</div>
					<div class="content-card content-card--panel">
						<div class="content-card__inner">
							<div class="content-card__content">
								<h3 class="content-card__title">Lorem ipsum</h3>
								<p class="p">Ut enim ad minim veniam</p>
							</div>
						</div>
					</div>
					<div class="content-card content-card--panel">
						<div class="content-card__inner">
							<div class="content-card__content">
								<h3 class="content-card__title">Lorem ipsum</h3>
								<p class="p">Ut enim ad minim veniam</p>
							</div>
						</div>
					</div>
				</div>
			</div>
		</main>
	</div>
</div>

Styleguide: Modules.materials-specs-panel
*/

.information-cards__dropdown {
  z-index: 31;
}

.information-cards__dropdown-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 32px;
  height: 32px;
  z-index: 31;
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
  -webkit-transition: -webkit-transform 300ms ease-in-out;
  transition: -webkit-transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}

.is-open .information-cards__dropdown-icon {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.information-cards__nav-list {
  list-style: none;
  padding: 0;
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: absolute;
  top: 0;
  visibility: hidden;
  opacity: 0;
  right: 0;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  overflow: hidden;
  background-color: #fff;
  z-index: 30;
  width: 100%;
  -webkit-box-shadow: 0 16px 16px 0 rgba(34, 34, 34, .1);
          box-shadow: 0 16px 16px 0 rgba(34, 34, 34, .1);
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transform: scaleY(.9);
          transform: scaleY(.9);
  -webkit-transition: all .3s cubic-bezier(1, 0, 0, 1);
  transition: all .3s cubic-bezier(1, 0, 0, 1);
}

@media (min-width: 1024px) {
  .information-cards__nav-list {
    padding-top: 4rem;
  }
}

.is-open .information-cards__nav-list {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.information-cards__nav-list li:first-child {
  padding-top: 2rem;
}

.information-card-block {
  background-color: #eee;
}

.information-card-block__title {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .information-card-block__title {
    font-size: 3rem;
    letter-spacing: -1px;
    line-height: calc(100% + 8px);
  }
}

@media (min-width: 1024px) {
  .information-card-block__title {
    font-size: 3.5rem;
    letter-spacing: -2px;
    line-height: calc(100% + 8px);
  }
}

@media (min-width: 768px) {
  .information-card-block__list-item {
    margin-top: 2rem;
  }

  .information-card-block__list-item:not(:last-child) {
    border-right-width: 1px;
    border-color: #ccc;
  }
}

/*
Information Card Block (2 Cards)

A set of content cards.

Markup:
<div class="grid-wrapper information-card-block information-card-block--2card">
	<div class="grid-row pt-12 md:pt-16 pb-6">
		<div class="col-12 lg:col-6 lg:col-offset-1">
			<h3 class="information-card-block__title"><span class="font-medium">Add Depth, Directionality and Density</span><br>
				By Specifying Layout
			</h3>
		</div>
	</div>
	<ul class="list-reset md:grid-row flex-no-wrap md:flex-wrap pb-12">
		<li class="col-12 md:col-4 information-card-block__list-item">
			<div class="content-card">
				<div class="content-card__inner">
					<div class="content-card__content">
						<h4 class="content-card__title">One Interlayer</h4>
					</div>
					<div class="content-card__image-outer">
						<img src="https://via.placeholder.com/276x276/f8f8f8?text=content+card+icon" class="content-card__image" alt="content card title"/>
					</div>
				</div>
			</div>
		</li>
		<li class="col-12 md:col-4 information-card-block__list-item">
			<div class="content-card">
				<div class="content-card__inner">
					<div class="content-card__content">
						<h4 class="content-card__title">Two Interlayers</h4>
					</div>
					<div class="content-card__image-outer">
						<img src="https://via.placeholder.com/276x276/f8f8f8?text=content+card+icon" class="content-card__image" alt="content card title"/>
					</div>
				</div>
			</div>
		</li>
	</ul>
</div>

Styleguide: Modules.Information Card Block.a-2-card
*/

/*
Information Card Block (3 Cards)

A set of content cards.

Markup:
<div class="grid-wrapper information-card-block information-card-block--3card">
	<div class="grid-row pt-12 md:pt-16 pb-6">
		<div class="col-12 lg:col-6 lg:col-offset-1">
			<h3 class="information-card-block__title"><span class="font-medium">Add Depth,
			Directionality and Density</span><br>
				By Specifying Layout
			</h3>
		</div>
	</div>
	<ul class="list-reset md:grid-row flex-no-wrap md:flex-wrap pb-12">
		<li class="col-12 md:col-4 information-card-block__list-item">
			<div class="content-card">
				<div class="content-card__inner">
					<div class="content-card__content">
						<h4 class="content-card__title">One Interlayer</h4>
						<p class="p">Lorem ipsum dolor</p>
					</div>
					<div class="content-card__image-outer">
						<img src="https://via.placeholder.com/276x276/f8f8f8?text=content+card+icon" class="content-card__image" alt="content card title"/>
					</div>
				</div>
			</div>
		</li>
		<li class="col-12 md:col-4 information-card-block__list-item">
			<div class="content-card">
				<div class="content-card__inner">
					<div class="content-card__content">
						<h4 class="content-card__title">Two Interlayers</h4>
						<p class="p">Lorem ipsum dolor</p>
					</div>
					<div class="content-card__image-outer">
						<img src="https://via.placeholder.com/276x276/f8f8f8?text=content+card+icon" class="content-card__image" alt="content card title"/>
					</div>
				</div>
			</div>
		</li>
		<li class="col-12 md:col-4 information-card-block__list-item">
			<div class="content-card">
				<div class="content-card__inner">
					<div class="content-card__content">
						<h4 class="content-card__title">Three Interlayers</h4>
						<p class="p">Lorem ipsum dolor</p>
					</div>
					<div class="content-card__image-outer">
						<img src="https://via.placeholder.com/276x276/f8f8f8?text=content+card+icon" class="content-card__image" alt="content card title"/>
					</div>
				</div>
			</div>
		</li>
	</ul>
</div>

Styleguide: Modules.Information Card Block.b-3-card
*/

/*
Information Card Block (4 Cards)

A set of content cards.

Markup:
<div class="grid-wrapper information-card-block information-card-block--4card">
	<div class="grid-row pt-12 md:pt-16 pb-6">
        <div class="col-12 lg:col-6 lg:col-offset-1">
            <p class="label label--line-long my-6">Lorem ipsum dolor</p>
			<h3 class="information-card-block__title"><span class="font-medium">Add Depth, Directionality and Density</span><br>
				By Specifying Layout
			</h3>
		</div>
	</div>
	<ul class="list-reset md:grid-row flex-no-wrap md:flex-wrap pb-12">
		<li class="col-12 md:col-3 information-card-block__list-item">
			<div class="content-card">
				<div class="content-card__inner">
					<div class="content-card__content">
						<h4 class="content-card__title">One Interlayer</h4>
						<p class="p">Lorem ipsum dolor</p>
					</div>
					<div class="content-card__image-outer">
						<img src="https://via.placeholder.com/276x276/f8f8f8?text=content+card+icon" class="content-card__image" alt="content card title"/>
					</div>
				</div>
			</div>
		</li>
		<li class="col-12 md:col-3 information-card-block__list-item">
			<div class="content-card">
				<div class="content-card__inner">
					<div class="content-card__content">
						<h4 class="content-card__title">Two Interlayers</h4>
						<p class="p">Lorem ipsum dolor</p>
					</div>
					<div class="content-card__image-outer">
						<img src="https://via.placeholder.com/276x276/f8f8f8?text=content+card+icon" class="content-card__image" alt="content card title"/>
					</div>
				</div>
			</div>
		</li>
		<li class="col-12 md:col-3 information-card-block__list-item">
			<div class="content-card">
				<div class="content-card__inner">
					<div class="content-card__content">
						<h4 class="content-card__title">Three Interlayers</h4>
						<p class="p">Lorem ipsum dolor</p>
					</div>
					<div class="content-card__image-outer">
						<img src="https://via.placeholder.com/276x276/f8f8f8?text=content+card+icon" class="content-card__image" alt="content card title"/>
					</div>
				</div>
			</div>
		</li>
		<li class="col-12 md:col-3 information-card-block__list-item">
			<div class="content-card">
				<div class="content-card__inner">
					<div class="content-card__content">
						<h4 class="content-card__title">Three Interlayers</h4>
						<p class="p">Lorem ipsum dolor</p>
					</div>
					<div class="content-card__image-outer">
						<img src="https://via.placeholder.com/276x276/f8f8f8?text=content+card+icon" class="content-card__image" alt="content card title"/>
					</div>
				</div>
			</div>
		</li>
	</ul>
</div>

Styleguide: Modules.Information Card Block.c-4-card
*/

/*
Family Driver Block

A driver that links to Interlayer families. Uses a set of family cards.

Markup:
<div class="grid-wrapper">
	<div class="grid-row mt-16 mb-12">
		<div class="col-12 md:col-6">
			<div class="lg:pl-8">
				<h3 class="h3 font-medium">Naturals</h3>
				<h4 class="h4">Organic & Human</h3>
			</div>
		</div>
		<div class="col-12 md:col-5">
			<p class="body mt-8 leading-normal">Our vast system of Graphical Patterns allow for unlimited customization of color, opacity, scale, and more. </p>
      <a href="" class="link-cta mt-4"><svg class="icon icon-cta icon--start" aria-hidden="true" focusable="false"><use xlink:href="#icon-cta"></use></svg> Discover Naturals</a>
		</div>
	</div>
	<div class="grid-row">
		<ul class="col-12 w-full family-driver flex">
			<li class="card-container w-full md:w-1/5">
				<div class="custom-swatch__link-wrapper js-accessible-card">
					<div class="custom-swatch" style="background-image:url(https://via.placeholder.com/628x520)">
						<div class="custom-swatch__title">
							<a href="http://www.google.ca/" class="custom-swatch__link js-accessible-link">
								<span class="custom-swatch__main-title">Megaman</span>
								<br />
								<span class="custom-swatch__sub-title">Zephyr</span>
							</a>
						</div>
					</div>
				</div>
			</li>
			<li class="card-container w-full md:w-1/5">
				<div class="custom-swatch__link-wrapper js-accessible-card">
					<div class="custom-swatch custom-swatch--inverse" style="background-image:url(https://via.placeholder.com/628x520)">
						<div class="custom-swatch__title">
							<a href="http://www.google.ca/" class="custom-swatch__link js-accessible-link">
								<span class="custom-swatch__main-title">Megaman</span>
								<br />
								<span class="custom-swatch__sub-title">Zephyr</span>
							</a>
						</div>
					</div>
				</div>
			</li>
			<li class="card-container w-full md:w-1/5">
				<div class="custom-swatch__link-wrapper js-accessible-card">
					<div class="custom-swatch" style="background-image:url(https://via.placeholder.com/628x520)">
						<div class="custom-swatch__title">
							<a href="http://www.google.ca/" class="custom-swatch__link js-accessible-link">
								<span class="custom-swatch__main-title">Megaman</span>
								<br />
								<span class="custom-swatch__sub-title">Zephyr</span>
							</a>
						</div>
					</div>
				</div>
			</li>
			<li class="card-container w-full md:w-1/5">
				<div class="custom-swatch__link-wrapper js-accessible-card">
					<div class="custom-swatch custom-swatch--inverse" style="background-image:url(https://via.placeholder.com/628x520)">
						<div class="custom-swatch__title">
							<a href="http://www.google.ca/" class="custom-swatch__link js-accessible-link">
								<span class="custom-swatch__main-title">Megaman</span>
								<br />
								<span class="custom-swatch__sub-title">Zephyr</span>
							</a>
						</div>
					</div>
				</div>
			</li>
			<li class="card-container w-full md:w-1/5">
				<div class="custom-swatch__link-wrapper js-accessible-card">
					<div class="custom-swatch" style="background-image:url(https://via.placeholder.com/628x520)">
						<div class="custom-swatch__title">
							<a href="http://www.google.ca/" class="custom-swatch__link js-accessible-link">
								<span class="custom-swatch__main-title">Megaman</span>
								<br />
								<span class="custom-swatch__sub-title">Zephyr</span>
							</a>
						</div>
					</div>
				</div>
			</li>
		</ul>
	</div>
</div>

Styleguide: Modules.family-driver-block
*/

.family-driver {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 1024px) {
  .family-driver {
    overflow: hidden;
    -webkit-overflow-scrolling: auto;
  }
}

.family-driver .card-container {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

/*
Hero - PCP

Markup:
<div class="grid-wrapper">
    <div class="grid-row">
        <div class="col-12 absolute pt-10 lg:pt-48 z-10">
            <div class="col-12 lg:col-9 lg:col-offset-1 mt-10 lg:mt-0">
                <h2 class="text-2xl lg:h2 font-medium lg:font-medium lg:leading-none">Limitless Personality</h2>
                <h2 class="text-2xl lg:h2 font-light lg:leading-none">Make a Design Statement</h2>
            </div>
            <div class="col-10 flex-col">
                <p class="body lg:col-offset-1 lg:w-3/5 leading-normal mb-12 mt-4 lg:mb-24 lg:mt-8">Our curated collection of Pattern interlayers add a beautiful span of textural translucency to any space.</p>
                <div class="col-5 hidden md:block">
                    <img src="https://via.placeholder.com/540x600/" class="" alt="hero title"/>
                </div>
            </div>
        </div>
    </div>
    <div class="grid-row">
        <div class="col-12 md:col-6"></div>
        <div class="col-12 md:col-6 relative pcp-hero__column--right z-20">
            <img src="https://via.placeholder.com/700x1000/" class="relative mb-12 lg:mb-24" alt="hero title"/>
            <div class="col-12 pcp-hero__drivers mb-4">
                <h4 class="h4 text-lg lg:text-3xl lg:mb-8">Distintive and Dynamic, start planning with our unique collection of interlayers</h4>
                <ul class="list-reset pcp-hero__links">
                    <li class="pcp-hero__link">
                        <a href="#" class="a--underline">Lorem</a>
                    </li>
                    <li class="pcp-hero__link">
                        <a href="#" class="a--underline">Lorem</a>
                    </li>
                    <li class="pcp-hero__link">
                        <a href="#" class="a--underline">Lorem</a>
                    </li>
                    <li class="pcp-hero__link">
                        <a href="#" class="a--underline">Lorem</a>
                    </li>
                    <li class="pcp-hero__link">
                        <a href="#" class="a--underline">Lorem</a>
                    </li>
                    <li class="pcp-hero__link">
                        <a href="#" class="a--underline">Lorem</a>
                    </li>
                </ul>
            </div>
        </div>
    </div>
</div>

Styleguide: Modules.Hero.PCP
*/

.pcp-hero__column--right {
  overflow: hidden;
}

@media (min-width: 600px) {
  .pcp-hero__column--right {
    overflow: visible;
  }
}

@media (min-width: 1024px) {
  .pcp-hero__column--right {
    top: -5rem;
  }
}

.pcp-hero__image-secondary {
  margin-left: -2.5rem;
}

.pcp-hero__image-large {
  position: relative;
  margin-bottom: 3rem;
  min-height: 500px;
  max-height: 500px;
}

@media (min-width: 1024px) {
  .pcp-hero__image-large {
    margin-bottom: 6rem;
    margin-top: -5rem;
  }
}

.pcp-hero__image-large:before {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  content: "";
  background-color: rgba(255, 255, 255, .4);
}

@media (min-width: 768px) {
  .pcp-hero__image-large {
    max-height: auto;
    padding-bottom: 143%;
  }

  .pcp-hero__image-large:before {
    content: none;
  }
}

.pcp-hero__image-large img {
  position: absolute;
  right: 0;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover; object-position: center;";
  padding-left: 25%;
}

@media (min-width: 768px) {
  .pcp-hero__image-large img {
    right: 0;
    padding-left: 0;
    left: auto;
  }
}

.pcp-hero__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.pcp-hero__link {
  margin-top: 1.5rem;
  margin-right: 1.5rem;
}

@media (min-width: 1024px) {
  .pcp-hero__link {
    margin-top: 2rem;
    margin-right: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .pcp-hero__link .a--underline {
    font-size: 1.25rem;
  }
}

/*
Hero - PDP

For full slide carousels typically used within Interlayer and Product Heros.

Markup:
  <div class="swiper swiper-full">
    <div class="js-swiper swiper-container swiper-full__container">
      <div class="swiper-wrapper swiper-full__wrapper">
        <div class="swiper-slide swiper-full__slide">
          <img class="js-swiper-slide-inner swiper-full__slide-img"  src="https://images.3-form.com/images/products/photo_large/542.jpg" alt="">
        </div>
        <div class="swiper-slide swiper-full__slide">
          <img class="js-swiper-slide-inner swiper-full__slide-img"  src="https://images.3-form.com/gallery/1396/Cerny+Most+shopping+mall+Fyling+discs+Prague+Czech+Republic8.jpg" alt="">
        </div>
        <div class="swiper-slide swiper-full__slide">
          <img class="js-swiper-slide-inner swiper-full__slide-img" src="https://images.3-form.com/gallery/1389/SMP_8821.jpg" alt="">
        </div>
        <div class="swiper-slide swiper-full__slide">
          <img class="js-swiper-slide-inner swiper-full__slide-img"  src="https://images.3-form.com/images/products/photo_large/542.jpg" alt="">
        </div>
        <div class="swiper-slide swiper-full__slide">
          <img class="js-swiper-slide-inner swiper-full__slide-img"  src="https://images.3-form.com/gallery/1396/Cerny+Most+shopping+mall+Fyling+discs+Prague+Czech+Republic8.jpg" alt="">
        </div>
        <div class="swiper-slide swiper-full__slide">
          <img class="js-swiper-slide-inner swiper-full__slide-img" src="https://images.3-form.com/gallery/1389/SMP_8821.jpg" alt="">
        </div>
        <div class="swiper-slide swiper-full__slide">
          <img class="js-swiper-slide-inner swiper-full__slide-img"  src="https://images.3-form.com/images/products/photo_large/542.jpg" alt="">
        </div>
        <div class="swiper-slide swiper-full__slide">
          <img class="js-swiper-slide-inner swiper-full__slide-img"  src="https://images.3-form.com/gallery/1396/Cerny+Most+shopping+mall+Fyling+discs+Prague+Czech+Republic8.jpg" alt="">
        </div>
        <div class="swiper-slide swiper-full__slide">
          <img class="js-swiper-slide-inner swiper-full__slide-img"  src="https://images.3-form.com/gallery/1396/Cerny+Most+shopping+mall+Fyling+discs+Prague+Czech+Republic8.jpg" alt="">
        </div>
      </div>
    </div>
    <div class="js-swiper-pagination swiper-pagination swiper-full__pagination"></div>
    <div class="swiper__arrows swiper-full__arrows">
      <div class="js-swiper-button-prev swiper-button-prev swiper__button swiper__button--prev"><svg class="icon icon-arrow-pagination icon-arrow-pagination--rotate" aria-hidden="true" focusable="false"><use xlink:href="#icon-arrow-pagination"></use></svg><span class="sr-only">Previous slide</span></div>
      <div class="js-swiper-button-next swiper-button-next swiper__button swiper__button--next"><svg class="icon icon-arrow-pagination" aria-hidden="true" focusable="false"><use xlink:href="#icon-arrow-pagination"></use></svg><span class="sr-only">Next slide</span></div>
    </div>
  </div>

Styleguide: Modules.Hero.PDP
*/

.swiper-full {
  position: relative;
}

.swiper-full__container {
  left: 24px;
  width: calc(100% - 49px);
}

.swiper-full__slide {
  position: relative;
  overflow: hidden;
  padding-bottom: 127%;
  width: 0;
}

.swiper-full__slide-inner {
  position: absolute;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.swiper-full__slide-img {
  -webkit-box-shadow: 0 16px 16px 0 rgba(34, 34, 34, .1);
          box-shadow: 0 16px 16px 0 rgba(34, 34, 34, .1);
  width: auto;
  margin: 0 auto;
  height: calc(100% - 26px);
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.swiper-full__pagination {
  left: 0;
  width: auto;
  font-size: .625rem;
  font-family: "3form Graphik", Helvetica, sans-serif;
  letter-spacing: .15em;
  top: calc(50% - 48px);
  bottom: auto;
}

.swiper-full__arrows {
  position: absolute;
  left: 0;
  z-index: 10;
  top: calc(50% - 26px);
}

.modal .swiper-full__arrows {
  right: 0;
  left: auto;
}

.swiper-full__arrows.swiper__arrows--video-carousel {
  display: none;
}

.swiper-full__arrows--content-block-left {
  left: auto;
}

@media (min-width: 768px) {
  .swiper-full__arrows--content-block-left {
    left: -56px;
  }
}

.swiper-full__arrows--content-block-right {
  left: auto;
  right: 0;
}

@media (min-width: 768px) {
  .swiper-full__arrows--content-block-right {
    right: -56px;
  }
}

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

@media (min-width: 768px) {
  .cta__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media (min-width: 1300px) {
  .cta__buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media (min-width: 768px) and (max-width: 1299px) {
  .cta__buttons {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media (min-width: 1200px) {
  .cta__download {
    margin-left: 1rem;
    margin-top: .75rem;
  }
}

@media (min-width: 1240px) {
  .cta__download {
    margin-top: 1.25rem;
  }
}

/*
Hero - PDP Variants

Markup:
<div class="swatch-thumb">
    <img src="https://via.placeholder.com/72x144" alt="">
</div>

Styleguide: Modules.Hero.PDP-Variants
*/

.swatch-thumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .1);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .1);
  -webkit-transform: translate3d(0px, 0px, 0px);
          transform: translate3d(0px, 0px, 0px);
  -webkit-transition: -webkit-transform .125s ease-in-out;
  transition: -webkit-transform .125s ease-in-out;
  transition: transform .125s ease-in-out;
  transition: transform .125s ease-in-out, -webkit-transform .125s ease-in-out;
}

.swatch-thumb img {
  height: 100%;
  height: 144px;
  width: 65px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}

.swatch-thumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -1rem;
}

.swatch-thumb__list-item {
  margin-bottom: 1.5rem;
}

.swatch-thumb__list-item:not(:last-child) {
  margin-right: 1rem;
}

.swatch-thumb__link {
  display: block;
}

.swatch-thumb__link:focus .swatch-thumb,
.swatch-thumb__link:hover .swatch-thumb,
.swatch-thumb__link.is-active .swatch-thumb {
  -webkit-transform: translate3d(0px, -16px, 0px);
          transform: translate3d(0px, -16px, 0px);
}

/*
Hero - Materials

Full page hero on materials page

<div class="relative">
  <div class="full-hero">
    <img src="https://3form-dev.s3.ca-central-1.amazonaws.com/store/material/1/hero_image/b8a07b210f034de31040958297253364.png" class="full-hero__image" alt="Material One Name Name Name Name Name Name NameMaterial One Subheading Subheading Subh$">
  </div>
  <div class="grid-wrapper relative">
    <div class="grid-row">
      <div class="md:col-offset-1 col-12 md:col-6 py-48">
        <h2 class="text-2xl lg:h2 font-light lg:leading-none"><span class="font-medium lg:font-medium">Material One Name Name Name Name Name Name Name</span><br>Material One Subheading Subheading Subh$</h2>
        <p class="body lg:w-4/5 leading-normal my-4 lg:my-8">Material One Description. <br>Material One Description. Material One Description. <br>Material One Description. Material One Description. <br>Material One Description. <br>Material One Description. Mat$</p>
        <a class="button button--layer w-full md:w-auto" href="#"><span class="button__content">Request Sample<svg class="icon icon-cta" aria-hidden="true" focusable="false"><use xlink:href="#icon-cta"></use></svg></span></a>
      </div>
    </div>
  </div>
</div>

Styleguide: Modules.Hero.materials-pdp
*/

.full-hero {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

@media (min-width: 1024px) {
  .full-hero {
    margin-top: -5rem;
    height: calc(100% + 5rem);
  }
}

@media (min-width: 768px) {
  .full-hero {
    width: 58.3333%;
  }
}

.full-hero--light:before,
.full-hero--lighter:before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, .3);
}

@media (min-width: 768px) {
  .full-hero--light:before,
  .full-hero--lighter:before {
    content: none;
  }
}

.full-hero--lighter:before {
  background-color: rgba(0, 0, 0, .4);
}

.full-hero__image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}

.smaller-hero {
  width: 50%;
}

.no-margin {
  margin-left: 0;
}

.panel-nav {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.panel-nav__item {
  padding-left: 1rem;
  padding-right: 1rem;
}

.panel-nav__link {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: inline-block;
  font-weight: 500;
  text-decoration: none;
  font-size: .875rem;
  color: #b2b2b2;
  position: relative;
  letter-spacing: -0.25px;
}

.panel-nav__link:after {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #222;
  width: 100%;
  -webkit-transition: -webkit-transform .2s ease-in-out;
  transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
  will-change: transform;
  content: "";
  height: 2px;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.panel-nav__link.is-active {
  color: #222;
}

.panel-nav__link.is-active:after {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*
Image Grid

Comes in 2, 3 or 5 images layouts. Opens lightbox. Supports images and vimeo.

Markup:
<div class="image-grid grid-wrapper mb-8">
  <div class="grid-row js-lightgallery image-grid__container">
    <a class="js-lightgallery-item image-grid__image col-12 md:col-5 lg:col-offset-1 lg:col-4" href="https://sachinchoolur.github.io/lightgallery.js/static/img/13-1600.jpg" data-sub-html='<div class="caption"><p class="label label--line mb-4">customization</p><h4 class="p font-medium">Struttura Design Choices</h4><ol class="p ol"><li>Struttura Design Choices</li><li>Finish (Front and Back)</li><li>Interlayer (Centered)</li><li>White, Diffusion or Effect (Front, and/or Back)</li></ol><a href="#" download class="link-download-image"><svg class="icon icon-download icon--start" aria-hidden="true" focusable="false"><use xlink:href="#icon-download"></use></svg> Download image</a></div>'>
      <img src="https://sachinchoolur.github.io/lightgallery.js/static/img/thumb-1.jpg" alt="">
    </a>
    <a class="js-lightgallery-item image-grid__image video-thumb col-12 md:col-7 lg:col-6"href="https://www.youtube.com/watch?v=tnulVfHQz60">
      <img src="https://sachinchoolur.github.io/lightgallery.js/static/img/thumb-2.jpg" alt="">
    </a>
  </div>
</div>
<div class="image-grid grid-wrapper mb-8">
  <div class="grid-row js-lightgallery image-grid__container">
    <div class="image-grid__image col-12 md:col-7 lg:col-offset-1 lg:col-6 md:text-right">
      <a class="js-lightgallery-item md:mb-8" href="https://sachinchoolur.github.io/lightgallery.js/static/img/13-1600.jpg" data-sub-html='<div class="caption"><p class="label label--line mb-4">customization</p><h4 class="p font-medium">Struttura Design Choices</h4><ol class="p ol"><li>Struttura Design Choices</li><li>Finish (Front and Back)</li><li>Interlayer (Centered)</li><li>White, Diffusion or Effect (Front, and/or Back)</li></ol><a href="#" download class="link-download-image"><svg class="icon icon-download icon--start" aria-hidden="true" focusable="false"><use xlink:href="#icon-download"></use></svg> Download image</a></div>'>
        <img src="https://sachinchoolur.github.io/lightgallery.js/static/img/thumb-1.jpg" alt="">
      </a>
      <a class="js-lightgallery-item video-thumb lg:w-3/5" href="https: //www.youtube.com/watch?v=tnulVfHQz60">
        <img src="https://sachinchoolur.github.io/lightgallery.js/static/img/thumb-2.jpg" alt="">
      </a>
    </div>
    <div class="image-grid__image col-12 md:col-5 lg:col-4">
      <a class="js-lightgallery-item" href="https://via.placeholder.com/550x620" data-sub-html='<div class="caption"><p class="label label--line mb-4">customization</p><h4 class="p font-medium">Struttura Design Choices</h4><ol class="p ol"><li>Struttura Design Choices</li><li>Finish (Front and Back)</li><li>Interlayer (Centered)</li><li>White, Diffusion or Effect (Front, and/or Back)</li></ol><a href="#" download class="link-download-image"><svg class="icon icon-download icon--start" aria-hidden="true" focusable="false"><use xlink:href="#icon-download"></use></svg> Download image</a></div>'>
        <img src="https://via.placeholder.com/250x320" alt="">
      </a>
    </div>
  </div>
</div>
<div class="image-grid grid-wrapper mb-8">
  <div class="grid-row js-lightgallery image-grid__container">
    <a class="js-lightgallery-item image-grid__image col-12 md:col-7 lg:col-offset-1 lg:col-6 md:mb-8 md:text-right" href="https://sachinchoolur.github.io/lightgallery.js/static/img/13-1600.jpg"data-sub-html='<div class="caption"><p class="label label--line mb-4">customization</p><h4 class="p font-medium">Struttura Design Choices</h4><ol class="p ol"><li>Struttura Design Choices</li><li>Finish (Front and Back)</li><li>Interlayer (Centered)</li><li>White, Diffusion or Effect (Front, and/or Back)</li></ol><a href="#" download class="link-download-image"><svg class="icon icon-download icon--start" aria-hidden="true" focusable="false"><use xlink:href="#icon-download"></use></svg> Download image</a></div>'>
      <img src="https://sachinchoolur.github.io/lightgallery.js/static/img/thumb-1.jpg" alt="">
    </a>
    <a class="js-lightgallery-item image-grid__image video-thumb col-12 md:col-5 lg:col-4 md:mb-8" href="https://www.youtube.com/watch?v=tnulVfHQz60">
      <img src="https://sachinchoolur.github.io/lightgallery.js/static/img/thumb-2.jpg" alt="">
    </a>
    <a class="js-lightgallery-item image-grid__image col-12 md:col-4 lg:col-offset-1 lg:col-3" href="https://sachinchoolur.github.io/lightgallery.js/static/img/13-1600.jpg" data-sub-html="<div class='caption'><h4>Sunset Serenity</h4><p>A gorgeous Sunset tonight captured at Coniston Water....</p></div>">
      <img src="https://sachinchoolur.github.io/lightgallery.js/static/img/thumb-13.jpg">
    </a>
    <a class="js-lightgallery-item image-grid__image col-12 md:col-4" href="https://sachinchoolur.github.io/lightgallery.js/static/img/13-1600.jpg"
  data-sub-html="<div class='caption'><h4>Sunset Serenity</h4><p>A gorgeous Sunset tonight captured at Coniston Water....</p></div>">
      <img src="https://sachinchoolur.github.io/lightgallery.js/static/img/thumb-13.jpg">
    </a>
    <a class="js-lightgallery-item image-grid__image col-12 md:col-4 lg:col-3" href="https://sachinchoolur.github.io/lightgallery.js/static/img/13-1600.jpg"
  data-sub-html="<div class='caption'><h4>Sunset Serenity</h4><p>A gorgeous Sunset tonight captured at Coniston Water....</p></div>">
      <img src="https://sachinchoolur.github.io/lightgallery.js/static/img/thumb-13.jpg">
    </a>
  </div>
</div>

Styleguide: Modules.image-grid
*/

.image-grid {
  overflow-x: hidden;
}

.image-grid__container {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media (min-width: 768px) {
  .image-grid__container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.image-grid__image {
  -ms-flex-item-align: end;
      align-self: flex-end;
  position: relative;
  display: inline-block;
}

.image-grid__image--hover {
  position: relative;
}

.image-grid__image--hover:hover:after {
  content: "";
  display: inline-block;
  background-color: #222;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.image-grid__image--hover:hover img {
  -webkit-transform: translateX(-8px) translateY(-8px);
          transform: translateX(-8px) translateY(-8px);
}

.image-grid__image img {
  will-change: transform;
  -webkit-transition: -webkit-transform .125s ease-out;
  transition: -webkit-transform .125s ease-out;
  transition: transform .125s ease-out;
  transition: transform .125s ease-out, -webkit-transform .125s ease-out;
  vertical-align: middle;
  position: relative;
  z-index: 1;
}

.image-grid__image a {
  display: inline-block;
}

.max-page-content-width {
  max-width: 1440px;
  margin: 0 auto;
}

.video-thumb {
  position: relative;
}

.video-thumb:before {
  position: absolute;
  display: inline-block;
  opacity: .4;
  -webkit-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out;
  will-change: opacity;
  pointer-events: none;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 94px;
  height: 94px;
  background: url(/static/icons/SVG/play-button.svg) center center no-repeat;
  background-size: cover;
  z-index: 1;
}

.video-thumb:hover:before {
  opacity: .6;
}

.lg-toolbar .lg-close {
  background: url(/static/icons/SVG/close-fill.svg) no-repeat;
  height: 40px;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  width: 40px;
}

.lg-toolbar .lg-close:hover {
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.lg-toolbar .lg-close:after {
  content: "";
}

.lg-actions {
  position: absolute;
  right: 0;
  -webkit-box-shadow: 0 2px 0 0 #ddd;
          box-shadow: 0 2px 0 0 #ddd;
  top: 50%;
}

.lg-actions .lg-next,
.lg-actions .lg-prev {
  border-radius: 0;
  background-color: #fff;
  color: #222;
  cursor: pointer;
  display: inline-block;
  font-size: .75rem;
  padding: 1rem;
  position: relative;
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  top: auto;
  left: auto;
  right: auto;
  -webkit-transition: -webkit-box-shadow .125s ease-out;
  transition: -webkit-box-shadow .125s ease-out;
  transition: box-shadow .125s ease-out;
  transition: box-shadow .125s ease-out, -webkit-box-shadow .125s ease-out;
}

.lg-actions .lg-next svg,
.lg-actions .lg-prev svg {
  -webkit-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out;
  will-change: opacity;
}

.lg-actions .lg-next:hover,
.lg-actions .lg-prev:hover {
  color: #222;
  -webkit-box-shadow: 0px 8px 0 0 #eee;
          box-shadow: 0px 8px 0 0 #eee;
}

.lg-actions .lg-next:hover svg,
.lg-actions .lg-prev:hover svg {
  opacity: .6;
}

.lg-actions .lg-prev:after,
.lg-actions .lg-next:before {
  content: "";
}

.lg-actions .lg-next:after {
  position: absolute;
  left: 0;
  background-color: #222;
  content: "";
  height: 50%;
  top: 25%;
  width: 1px;
}

.caption {
  background-color: #fff;
  display: inline-block;
  color: #222;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: left;
}

.lg-sub-html {
  position: absolute;
  left: 0;
  padding: 0;
  text-align: left;
  right: auto;
  max-width: 35%;
}

.lg-sub-html p {
  font-size: 1rem;
  font-family: "3form Graphik", Helvetica, sans-serif;
  font-weight: 300;
  color: #222;
  line-height: calc(100% + 8px);
}

.lg-backdrop {
  background-color: #ccc;
}

.lg-backdrop.in {
  opacity: 1;
}

.lg-outer .lg-img-wrap .lg-image {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}

.fixed-size {
  /* need a better solution if users viewport is smaller than height of image */
}

.fixed-size.lg-outer .lg-img-wrap {
  padding: 0;
}

.fixed-size .lg-toolbar {
  padding: 1rem;
  background-color: transparent;
  height: 0;
}

.fixed-size .lg {
  top: 0 !important;
}

.logo-grid__title,
.logo-grid__subtitle {
  font-size: 2rem;
  line-height: calc(100% + 8px);
  letter-spacing: -1.25px;
  font-weight: 500;
  color: #222;
}

@media (min-width: 1024px) {
  .logo-grid__title,
  .logo-grid__subtitle {
    font-size: 2.5rem;
    line-height: calc(100% + 8px);
    letter-spacing: -1.5px;
  }
}

@media (min-width: 1200px) {
  .logo-grid__title,
  .logo-grid__subtitle {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 3rem;
    line-height: calc(100% + 8px);
    letter-spacing: -1.5px;
  }
}

.logo-grid__subtitle {
  font-weight: 300;
}

/*
Double Promo Block

Uses a pair of driver cards. Use modifier classes on the driver card level to configure card orientation and content alignment

Markup:
<div class="grid-wrapper">
  <ul class="grid-row list-reset items-end">
    <li class="card-driver js-accessible-card card-driver--landscape col-12 lg:col-6">
      <div class="card-driver__image-outer">
        <img class="card-driver__image" src="https://images.3-form.com/images/hardware/tech_details/frame_1.jpg" alt="Pick a Pattern">
      </div>
      <div class="card-driver__content-outer card-driver__content-outer--left">
        <div class="card-driver__content card-driver__content--md">
          <div class="card-driver__content-inner">
            <h4><a class="card-driver__title js-accessible-link" href="#">Pick a Pattern</a></h4>
            <p class="body">Pick your pattern and decide whether you want it inversed.</p>
          </div>
        </div>
      </div>
    </li>
    <li class="card-driver js-accessible-card  col-12 lg:col-6">
      <div class="card-driver__image-outer">
        <img class="card-driver__image" src="https://images.3-form.com/images/hardware/tech_details/frame_1.jpg" alt="Pick a Pattern">
      </div>
      <div class="card-driver__content-outer card-driver__content-outer--left lg:card-driver__content-outer--right">
        <div class="card-driver__content card-driver__content--md">
          <div class="card-driver__content-inner">
            <h4><a class="card-driver__title js-accessible-link" href="#">Pick a Pattern</a></h4>
            <p class="body">Pick your pattern and decide whether you want it inversed.</p>
          </div>
        </div>
      </div>
    </li>
  </ul>
</div>

Styleguide: Modules.double-drivers-block
*/

/*
PCP Driver Block

A set of driver cards.

Markup:
<div class="pcp-driver grid-wrapper">
    <ul class="grid-row list-reset overflow-visible">
        <li class="{{ modifier_class }} card-driver card-driver--default col-6 js-accessible-card">
            <div class="card-driver__image-outer">
                <img class="card-driver__image md:col-10" src="https://images.3-form.com/images/collaborate/overview/slide_images/get_started.jpg" alt="">
            </div>
            <div class="card-driver__content-outer card-driver__content-outer--left md:col-10">
                <div class="card-driver__content">
                    <div class="card-driver__content-inner">
                        <h4><a class="card-driver__title js-accessible-link" href="#">Lorem ipsum</a></h4>
                        <p class="body">Lorem ipsum dolor sit</p>
                    </div>
                </div>
            </div>
        </li>
        <li class="{{ modifier_class }} card-driver card-driver--landscape col-6 js-accessible-card">
            <div class="card-driver__image-outer md:col-10">
                <img class="card-driver__image" src="https://images.3-form.com/images/collaborate/overview/slide_images/get_started.jpg" alt="">
            </div>
            <div class="card-driver__content-outer">
                <div class="card-driver__content">
                    <div class="card-driver__content-inner">
                        <h4><a class="card-driver__title js-accessible-link" href="#">Lorem ipsum</a></h4>
                        <p class="body">Lorem ipsum dolor sit</p>
                    </div>
                </div>
            </div>
        </li>
    </ul>
</div>

.pcp-driver--flipped - flip driver orientation

Styleguide: Modules.pcp-driver-block
*/

@media (min-width: 768px) {
  .pcp-driver .card-driver--default .card-driver__image-outer {
    padding-bottom: 73.33333333%;
  }

  .pcp-driver .card-driver--default .card-driver__content {
    width: 58.33333333%;
  }
}

.pcp-driver .card-driver--landscape {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

@media (min-width: 768px) {
  .pcp-driver .card-driver--landscape {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

  .pcp-driver .card-driver--landscape .card-driver__image-outer {
    padding-bottom: 58.33333333%;
  }

  .pcp-driver .card-driver--landscape .card-driver__content {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .pcp-driver .card-driver:nth-of-type(odd) {
    margin-bottom: 12rem;
    top: 12rem;
  }
}

.pcp-driver .card-driver:nth-of-type(even) {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

@media (min-width: 768px) {
  .pcp-driver .card-driver:nth-of-type(even) {
    margin-top: 6rem;
  }
}

.pcp-driver--flipped.card-driver--landscape {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

@media (min-width: 768px) {
  .pcp-driver--flipped.card-driver--landscape {
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
    top: 6rem !important;
  }

  .pcp-driver--flipped.card-driver--landscape .card-driver__content-outer {
    -ms-flex-preferred-size: 83.33333333%;
        flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .pcp-driver--flipped.card-driver--landscape .card-driver__content {
    width: 75%;
  }
}

.plp-hero {
  position: relative;
  height: 22rem;
}

@media (min-width: 768px) {
  .plp-hero {
    max-height: 288px;
  }
}

@media (min-width: 1024px) {
  .plp-hero {
    max-height: 378px;
  }
}

@media (min-width: 1200px) {
  .plp-hero {
    max-height: 418px;
  }
}

.plp-hero__inner {
  height: 100%;
}

.plp-hero__image {
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: -65px;
}

@media (min-width: 1024px) {
  .plp-hero__image {
    margin-top: -170px;
  }
}

@media (max-width: 768px) {
  .plp-hero__image {
    max-height: 288px;
  }
}

.plp-hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

@media (min-width: 768px) {
  .plp-hero__content {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.plp-hero__content-inner {
  background-color: #fff;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 1rem;
  margin-left: -0.5rem;
  margin-top: -4rem;
}

@media (min-width: 768px) {
  .plp-hero__content-inner {
    margin-left: 0;
    padding-left: 2rem;
    padding-bottom: 2rem;
    padding-right: 0;
    margin-right: 1rem;
    margin-top: -5rem;
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .plp-hero__content-inner {
    margin-top: -6rem;
    padding-left: 3rem;
    padding-bottom: 3rem;
  }
}

@media (min-width: 1200px) {
  .plp-hero__content-inner {
    margin-top: -8rem;
  }
}

.plp-hero__dropdown-text {
  font-size: 1.5rem;
  font-weight: 300;
  padding-top: 2rem;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .plp-hero__dropdown-text {
    line-height: 1;
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .plp-hero__dropdown-text {
    font-size: 3.5rem;
    padding-top: 3rem;
    letter-spacing: -2.33px;
  }
}

@media (min-width: 1200px) {
  .plp-hero__dropdown-text {
    font-size: 5rem;
    padding-top: 4rem;
    letter-spacing: -3px;
  }
}

.plp-hero__dropdown {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #222;
  font-weight: 500;
  z-index: 31;
}

.plp-hero__dropdown:before {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #222;
  content: "";
  top: 100%;
  height: 2px;
}

@media (min-width: 768px) {
  .plp-hero__dropdown:before {
    top: calc(100% - 4px);
  }
}

@media (min-width: 1200px) {
  .plp-hero__dropdown:before {
    top: calc(100% - 8px);
  }
}

.plp-hero__dropdown--mobile {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-style: none;
  background-color: #fff;
  font-weight: 500;
  padding-left: 0;
  padding-right: 2rem;
  margin-top: .25rem;
  background: url(/static/icons/SVG/dropdown-arrow1.svg) 100%/20px no-repeat;
}

.plp-hero__dropdown-icon {
  width: 16px;
  height: 16px;
  -webkit-transition: -webkit-transform 300ms ease-in-out;
  transition: -webkit-transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}

@media (min-width: 768px) {
  .plp-hero__dropdown-icon {
    width: 24px;
    height: 24px;
  }
}

@media (min-width: 1200px) {
  .plp-hero__dropdown-icon {
    width: 32px;
    height: 32px;
  }
}

.is-open .plp-hero__dropdown-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.plp-hero__nav-list {
  list-style: none;
  padding: 0;
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: absolute;
  top: 0;
  padding-left: 3rem;
  visibility: hidden;
  opacity: 0;
  right: 0;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  overflow: hidden;
  background-color: #eee;
  z-index: 30;
  width: 100%;
  white-space: nowrap;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transform: scaleY(.9);
          transform: scaleY(.9);
  -webkit-transition: all .3s cubic-bezier(1, 0, 0, 1);
  transition: all .3s cubic-bezier(1, 0, 0, 1);
}

@media (min-width: 1024px) {
  .plp-hero__nav-list {
    padding-top: 3rem;
    min-width: 22.5rem;
  }
}

@media (min-width: 1200px) {
  .plp-hero__nav-list {
    padding-top: 4rem;
    min-width: 27.5rem;
  }
}

.plp-hero__nav-list-item {
  font-size: 2.5rem;
  line-height: 2;
  font-weight: 300;
  letter-spacing: -1px;
}

@media (min-width: 1200px) {
  .plp-hero__nav-list-item {
    font-size: 3.5rem;
    letter-spacing: -2px;
  }
}

.is-open .plp-hero__nav-list {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.plp-hero__nav-list li:first-child {
  padding-top: 4rem;
}

@media (min-width: 1200px) {
  .plp-hero__nav-list li:first-child {
    padding-top: 7rem;
  }
}

.plp-hero__cta {
  position: absolute;
  top: 0;
  right: 0;
  padding-top: 4rem;
  padding-right: 3rem;
  margin-top: 1.5rem;
  visibility: hidden;
  opacity: 0;
  z-index: 40;
  color: #999;
  font-weight: 500;
  -webkit-transition: all .3s cubic-bezier(1, 0, 0, 1);
  transition: all .3s cubic-bezier(1, 0, 0, 1);
}

@media (min-width: 1200px) {
  .plp-hero__cta {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: -1px;
  }
}

.is-open .plp-hero__cta {
  visibility: visible;
  opacity: 1;
}

.product-application__list-item {
  width: 50%;
  opacity: 1;
  will-change: transform;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-property: width, opacity, -webkit-transform;
  transition-property: width, opacity, -webkit-transform;
  transition-property: width, opacity, transform;
  transition-property: width, opacity, transform, -webkit-transform;
  -webkit-transition-duration: .25s;
          transition-duration: .25s;
  -webkit-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
          transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  -webkit-transition-delay: 0s, .1s, .1s;
          transition-delay: 0s, .1s, .1s;
}

@media (max-width: 767px) {
  .product-application__list-item:nth-child(even) .card-driver--border:after {
    border-left-width: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .product-application__list-item {
    width: 33.33333%;
  }

  .product-application__list-item:nth-child(3n+1) .card-driver--border:after {
    border-left-width: 0;
  }
}

@media (min-width: 1024px) {
  .product-application__list-item {
    width: 25%;
  }

  .product-application__list-item:nth-child(4n+1) .card-driver--border:after {
    border-left-width: 0;
  }
}

.product-application__list-item.is-hidden {
  opacity: 0;
  width: 0;
  will-change: transform;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition-property: width, opacity, -webkit-transform;
  transition-property: width, opacity, -webkit-transform;
  transition-property: width, opacity, transform;
  transition-property: width, opacity, transform, -webkit-transform;
  -webkit-transition-duration: .25s;
          transition-duration: .25s;
  -webkit-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
          transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  -webkit-transition-delay: .1s, 0s, 0s;
          transition-delay: .1s, 0s, 0s;
}

.product-application__list-item .card-driver--border:after {
  border-right-width: 0;
  border-left-width: 1px;
  height: 100%;
  left: -1px;
  right: auto;
}

.product-application > div:first-child + .product-application__list-item .card-driver--border:after {
  content: none;
}

.listing-card-driver .card-driver--border:last-child:after {
  content: none;
}

.full-screen-hero {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  height: 100vh;
  margin-top: -65px;
}

@media (min-width: 1024px) {
  .full-screen-hero {
    margin-top: -170px;
  }
}

.full-screen-hero:before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  content: "";
  background-color: rgba(0, 0, 0, .2);
}

.color-portfolio .full-screen-hero:before {
  content: none;
}

.full-screen-hero .label {
  font-size: .625rem;
}

@media (min-width: 768px) {
  .full-screen-hero .label {
    font-size: .75rem;
  }
}

.full-screen-hero .label,
.full-screen-hero .h1,
.full-screen-hero .h2,
.full-screen-hero .h4 {
  display: block;
  color: #fff;
}

.full-screen-hero__inner {
  height: 100%;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 10;
  overflow: hidden;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.full-screen-hero__title {
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  width: calc(100% - 2rem);
}

@media (min-width: 768px) {
  .full-screen-hero__title {
    width: auto;
  }
}

.full-screen-hero__svg {
  position: absolute;
  width: 100%;
  top: 7rem;
}

.full-screen-hero__svg svg {
  width: 90%;
  -webkit-transform: rotate(180deg) scale(-1, 1);
          transform: rotate(180deg) scale(-1, 1);
}

.full-screen-hero__svg svg path {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  -webkit-animation: drawPath 3s linear forwards 2s;
          animation: drawPath 3s linear forwards 2s;
}

@media (max-width: 767px) {
  .full-screen-hero__svg {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media (min-width: 768px) {
  .full-screen-hero__svg {
    top: -11rem;
  }

  .full-screen-hero__svg svg {
    width: 35em;
  }
}

@media (min-width: 1024px) {
  .full-screen-hero__svg {
    top: -10rem;
    left: -3rem;
  }

  .full-screen-hero__svg svg {
    width: 55em;
  }
}

.full-screen-hero__cta {
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: .5rem;
  pointer-events: none;
  margin-top: 114px;
  bottom: -6px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.full-screen-hero__cta .line {
  background-color: #fff;
  height: 2px;
  width: 32px;
  -webkit-animation: shrink 2.5s cubic-bezier(0, 1, 1, 1) infinite 0s;
          animation: shrink 2.5s cubic-bezier(0, 1, 1, 1) infinite 0s;
}

@media (max-width: 767px) {
  .full-screen-hero__cta {
    left: 50%;
    -webkit-transform: rotate(-90deg) translateY(-50%);
            transform: rotate(-90deg) translateY(-50%);
  }
}

.full-screen-hero__cta--text {
  margin-left: 1rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.full-screen-hero__video {
  height: 100vh;
}

.full-screen-hero__video video {
  width: 100%;
  height: 100%;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center;";
  -webkit-border-radius: 1px;
}

@-webkit-keyframes shrink {
  0%,
  66.667% {
    width: 24px;
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    width: 0px;
    opacity: 0;
  }
}

@keyframes shrink {
  0%,
  66.667% {
    width: 24px;
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    width: 0px;
    opacity: 0;
  }
}

@-webkit-keyframes drawPath {
  from {
    stroke-dashoffset: 2000;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawPath {
  from {
    stroke-dashoffset: 2000;
  }

  to {
    stroke-dashoffset: 0;
  }
}

.swatch-list {
  width: 100%;
  position: relative;
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #f8f8f8;
}

@media (max-width: 1024px) {
  .swatch-list.js-expand-all-content {
    -webkit-transition: max-height 300ms ease-out .4ms;
    transition: max-height 300ms ease-out .4ms;
  }
}

.swatch-list__wrapper.is-hidden {
  display: none;
}

.swatch-list.js-swatch-row {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.swatch-list__list-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  width: 20%;
  height: 130px;
}

@media (min-width: 768px) {
  .swatch-list__list-item {
    width: 10%;
    height: 260px;
  }
}

.swatch-list__list-item:after {
  position: absolute;
  opacity: .8;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  width: 50%;
  height: 101%;
  content: "";
}

.js-last-row .swatch-list__list-item {
  max-width: 20%;
}

@media (min-width: 768px) {
  .js-last-row .swatch-list__list-item {
    max-width: 10%;
  }
}

.js-last-row .swatch-list__list-item:hover {
  max-width: 100%;
}

@media (min-width: 1025px) {
  .swatch-list__list-item:hover {
    width: 210%;
  }
}

.swatch-list__list-item:hover .swatch-list__content {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  -webkit-transition: opacity 300ms ease-out .4ms;
  transition: opacity 300ms ease-out .4ms;
}

@media (min-width: 1025px) {
  .swatch-list__list-item:hover .swatch-list__content {
    width: 100%;
    opacity: 1;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.swatch-list__list-item.is-disabled {
  opacity: .1;
  pointer-events: none;
}

.swatch-list__list-item.is-hidden {
  max-width: 0;
  width: 0;
  opacity: 0;
}

@media (max-width: 1024px) {
  .swatch-list__list-item.is-expanded {
    width: 135%;
  }
}

.swatch-list__content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  opacity: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-backface-visibility: hidden;
  width: 0;
}

@media (max-width: 1024px) {
  .swatch-list__content {
    pointer-events: none;
  }
}

@media (min-width: 768px) {
  .swatch-list__content {
    z-index: 10;
  }
}

@media (max-width: 1024px) {
  .is-expanded .swatch-list__content {
    width: 100%;
    opacity: 1;
    pointer-events: auto;
  }
}

.swatch-list__content-title {
  padding-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .swatch-list__content-title {
    padding-bottom: 3rem;
  }
}

.swatch-list__content-title-main {
  position: relative;
  display: block;
  overflow: hidden;
  font-size: 1.5rem;
  letter-spacing: -2px;
}

@media (min-width: 768px) {
  .swatch-list__content-title-main {
    font-size: 3.5rem;
  }
}

.is-light-text .swatch-list__content-title-main {
  color: #fff;
}

.swatch-list__content-title-submain {
  white-space: nowrap;
}

.swatch-list__content-specs {
  position: relative;
  padding-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-top-width: 1px;
  border-color: #222;
}

@media (min-width: 768px) {
  .swatch-list__content-specs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.is-light-text .swatch-list__content-specs {
  border-color: #fff;
}

.swatch-list__spec {
  color: #222;
  font-weight: 300;
  font-size: .875rem;
  white-space: nowrap;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .swatch-list__spec {
    display: inline-block;
    margin-right: 2rem;
    font-size: 1rem;
  }
}

.is-light-text .swatch-list__spec {
  color: #fff;
}

.swatch-list__close-button {
  opacity: 0;
  position: absolute;
  pointer-events: none;
  top: .5rem;
  right: .5rem;
  -webkit-transition: opacity 300ms ease-out .4ms;
  transition: opacity 300ms ease-out .4ms;
}

.is-expanded .swatch-list__close-button {
  opacity: 1;
  pointer-events: auto;
  z-index: 10;
}

@media (min-width: 1025px) {
  .swatch-list__close-button {
    display: none;
  }
}

.swatch-list__expand-button {
  position: absolute;
  z-index: 50;
  bottom: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.swatch-list__expand-button .icon {
  -webkit-transition: -webkit-transform 300ms ease-out .4ms;
  transition: -webkit-transform 300ms ease-out .4ms;
  transition: transform 300ms ease-out .4ms;
  transition: transform 300ms ease-out .4ms, -webkit-transform 300ms ease-out .4ms;
}

.is-open.swatch-list__expand-button .icon {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.pull-quote svg {
  position: absolute;
  right: 0;
  left: 0;
  padding-left: 1rem;
  padding-right: 1rem;
  z-index: -1;
}

@media (max-width: 480px) {
  .pull-quote svg {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .pull-quote svg {
    margin-left: 5.5rem;
  }
}

/*
View filter

Used on Interlayer PLP for swapping between exploded and compact mode.

Markup:
<div class="view-filter">
View <ul class="view-filter__nav">
<li class="view-filter__nav-item view-filter__nav-item--border"><a href="" title="Exploded Mode"><svg class="icon icon-pinterest" aria-hidden="true" focusable="false"><use xlink:href="#icon-pinterest"></use></svg><span class="sr-only">Exploded Mode</span></a></li>
<li class="view-filter__nav-item is-active"><a href="" title="Family Mode"><svg class="icon icon-pinterest" aria-hidden="true" focusable="false"><use xlink:href="#icon-pinterest"></use></svg><span class="sr-only">Family Mode</span></a></li>
</ul>
</div>

Styleguide: Modules.view-filter
*/

.view-filter {
  line-height: 1.5;
  font-weight: 500;
  display: inline-block;
}

.view-filter__nav {
  list-style: none;
  padding: 0;
  display: inline-block;
  float: right;
  overflow-y: hidden;
  height: 1.5rem;
}

.view-filter__nav-item {
  display: inline-block;
  float: left;
  color: #ccc;
}

.view-filter__nav-item a {
  color: #ccc;
  display: inline-block;
  -webkit-transition: color .2s ease-in-out;
  transition: color .2s ease-in-out;
  will-change: color;
}

.view-filter__nav-item a:hover {
  color: #222;
}

.view-filter__nav-item.is-active a {
  color: #222;
}

.view-filter__nav-item--border {
  padding-left: 1.5rem;
  padding-right: 1rem;
  border-right-width: 1px;
  margin-right: 1rem;
  border-color: #eee;
}

.exploded-interlayer.is-hidden {
  display: none;
}

#addsearch-logo-img {
  visibility: hidden;
}

.search-box {
  background-color: #f8f8f8;
  padding-top: .5rem;
  padding-bottom: .5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 1rem;
}

.search-box.search-box--shadow {
  -webkit-box-shadow: 0 2px 0 0 #ddd;
          box-shadow: 0 2px 0 0 #ddd;
}

.search-heading {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

@media (max-width: 480px) {
  .search-heading {
    font-size: 1.25rem;
  }
}

.search-results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 1rem;
}

.search-results a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: inherit;
  text-decoration: none;
}

.search-result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* This is intentionally "px" so it doesn't scale with font size. */
  border-bottom: 2px solid #ececec;
  cursor: pointer;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-right: .875rem;
}

.search-result:hover heading {
  text-decoration: underline;
}

.search-result img,
.search-result svg {
  width: 8.5rem;
  height: 8.5rem;
  margin-right: 1.5rem;
}

.search-result figcaption heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: .5rem;
  font-weight: bold;
}

.search-result figcaption article {
  font-weight: 100;
  padding-top: 1rem;
  padding-right: .875rem;
}

.search-result figcaption footer {
  font-weight: bold;
  padding-top: 1rem;
  text-transform: uppercase;
  color: #999;
  font-size: .75rem;
}

.search-pagination {
  /* Override ul default */
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  list-style-type: none;
  padding-top: 1.875rem;
  margin-bottom: 3rem;
}

.search-pagination > li > a {
  padding: .25rem .375rem;
  margin-right: .375rem;
  font-size: .875rem;
}

.search-pagination > li > a.active {
  color: #aaa;
}

#tech-specs-main table {
  margin-top: 1.5rem;
}

#tech-specs-main table tbody tr:nth-child(odd) {
  background-color: #f8f8f8;
}

#tech-specs-main table tbody tr:nth-child(even) {
  background-color: #fff;
}

#tech-specs-main table th,
#tech-specs-main table td {
  text-align: left;
  padding: .75rem 1rem .75rem 0;
}

#tech-specs-main table th {
  font-size: .9rem;
}

#tech-specs-main table td {
  font-weight: 200;
}

#tech-specs-main a {
  text-decoration: none;
  color: black;
}

.tech-specs-top {
  padding: 50px 100px 50px 100px;
  background-color: #f8f8f8;
}

.tech-specs-bottom {
  padding: 0 100px 100px 100px;
  background-color: #fafafa;
}

.tech-specs-documents {
  padding-top: 50px;
}

.tech-specs-documents-heading {
  font-size: 1.8rem;
  display: inline-block;
}

.tech-specs-clear-all-button-container {
  padding-top: 1em;
}

.tech-specs-clear-all-button {
  margin-left: 0;
  font-size: .9rem;
  font-weight: 500;
  border: black solid 1px;
  padding: .4rem;
}

.tech-specs-hidden {
  display: none;
}

.tech-specs-categories .tech-specs-categories-title {
  font-weight: 200;
  font-size: 1rem;
  margin-right: .8rem;
}

.tech-specs-categories ul {
  display: inline;
  padding: 0;
  text-align: left;
}

.tech-specs-categories li {
  display: inline-block;
  margin-bottom: .5rem;
}

.tech-specs-categories li a {
  white-space: nowrap;
  color: #b2b2b2;
  font-size: 1rem;
}

.tech-specs-categories li + li:before {
  content: "  |  ";
  font-weight: 300;
  font-size: 1rem;
  color: #666;
}

.tech-specs-categories li.tech-specs-category-selected a {
  font-weight: 500;
  color: black;
}

.tech-specs-categories li.tech-specs-category-selected .tech-specs-category-name:after {
  content: " x ";
  font-weight: bold;
  color: black;
}

.tech-specs-categories li.tech-specs-category-bold a {
  font-weight: 500;
  color: black;
}

.tech-specs-subcategories {
  margin-top: 1.5rem;
}

.tech-specs-search {
  background-color: #eee;
  padding: 1rem 1.5rem 1rem 1.5rem;
}

.tech-specs-search input {
  font-size: 1.3rem;
  font-weight: 300;
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: transparent;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 42px;
  width: 80%;
}

.tech-specs-see-all {
  margin-top: 1rem;
  height: 24px;
}

.tech-specs-see-all :hover {
  cursor: pointer;
}

.tech-specs-see-all svg {
  margin-left: 1rem;
  float: left;
  pointer-events: auto;
}

.tech-specs-see-all span {
  display: block;
  float: left;
  line-height: 24px;
  margin-left: .5rem;
  font-weight: bold;
}

.tech-specs-featured-categories-container {
  margin-bottom: 2rem;
}

.tech-specs-featured-categories {
  display: grid;
  grid-gap: 0;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}

@media only screen and (min-width: 640px) {
  .tech-specs-featured-categories {
    grid-gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (min-width: 875px) {
  .tech-specs-featured-categories {
    grid-gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (min-width: 1110px) {
  .tech-specs-featured-categories {
    grid-gap: 2rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

@media only screen and (min-width: 1350px) {
  .tech-specs-featured-categories {
    grid-gap: 2rem;
    grid-template-columns: repeat(5, 1fr);
  }
}

.tech-specs-featured-categories .button {
  height: 100%;
}

.tech-specs-featured-categories .tech-specs-category .tech-specs-category-name {
  font-size: 1.3rem;
  margin-right: 2rem;
}

.tech-specs-featured-categories .tech-specs-featured-category.tech-specs-category-selected {
  opacity: .3;
}

.tech-specs-featured-categories .tech-specs-featured-category.tech-specs-image-category.tech-specs-category-selected {
  opacity: 1;
}

.tech-specs-featured-categories .tech-specs-category-icon {
  position: absolute;
  bottom: 1.5rem;
  right: 1rem;
}

.tech-specs-featured-categories .icon-close-circle {
  display: none;
}

.tech-specs-featured-categories .icon-cta {
  display: block;
}

.tech-specs-featured-categories .tech-specs-image-category {
  position: relative;
}

.tech-specs-featured-categories .tech-specs-image-category .tech-specs-category-image {
  width: 100%;
}

.tech-specs-featured-categories .tech-specs-image-category .tech-specs-category-name {
  position: absolute;
  top: 1.5rem;
  left: 1rem;
  margin-left: 1rem;
  font-weight: 500;
  font-size: 1.7rem;
}

.tech-specs-featured-categories .tech-specs-category-selected .tech-specs-category-image {
  outline: #b2b2b2 5px solid;
}

.tech-specs-featured-categories .tech-specs-category-selected .icon-close-circle {
  display: block;
}

.tech-specs-featured-categories .tech-specs-category-selected .icon-cta {
  display: none;
}

.tech-specs-file-format-icon {
  width: 1rem;
  height: 1rem;
  margin: 0 .8rem 0 .8rem;
}

.footer-page section {
  margin-bottom: 3rem;
}

.footer-page p,
.footer-page ol {
  margin-bottom: 1rem;
  line-height: 1.5em;
}

.footer-page li {
  line-height: 1.5em;
}

.footer-page li h4 {
  margin-bottom: 1rem;
}

.footer-page li address {
  margin-top: -0.5em;
}

.footer-page ol[type=a] p {
  margin-bottom: 1rem;
}

.footer-page ol[type=a] li {
  margin-bottom: .5rem;
}

.footer-page hr {
  border-bottom: 1px solid black;
  margin-bottom: 2rem;
}

.footer-page h1 {
  font-family: "3form Graphik", Helvetica, sans-serif;
  color: #222;
  font-size: 1.5rem;
  line-height: calc(100% + 8px);
  font-weight: 300;
  letter-spacing: -1px;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .footer-page h1 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 3rem;
    line-height: calc(100% + 8px);
    letter-spacing: -1.5px;
    margin-bottom: 3rem;
  }
}

.footer-page h2 {
  font-family: "3form Graphik", Helvetica, sans-serif;
  color: #222;
  font-size: 1.5rem;
  line-height: calc(100% + 8px);
  font-weight: 300;
  letter-spacing: -1px;
  font-weight: 500;
  margin-bottom: 2rem;
}

.footer-page h3 {
  font-family: "3form Graphik", Helvetica, sans-serif;
  color: #222;
  font-size: 1.5rem;
  line-height: calc(100% + 8px);
  font-weight: 300;
  letter-spacing: -1px;
  font-weight: 500;
  margin-bottom: 1rem;
}

.footer-page a {
  color: #222;
}

.footer-page b {
  font-weight: 500;
}

.footer-page__sub-section {
  margin-bottom: 2rem;
}

.footer-page__sub-section h4 {
  margin-bottom: 1rem;
}

.footer-page__table {
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  margin-left: 1rem;
  border: 1px solid black;
}

.footer-page__table th {
  background-color: #ddd;
  padding: .5rem;
  border: 1px solid black;
}

.footer-page__table td {
  padding: .5rem;
  border: 1px solid black;
}

.footer-page__intro {
  text-align: center;
  text-decoration: underline;
  font-weight: 300;
  letter-spacing: -0.05em;
  font-size: 1.5rem;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.footer-page__center {
  text-align: center;
}

.footer-page__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1.5rem;
  list-style-type: none;
}

.footer-page__list-col {
  padding: 0;
  width: 100%;
  list-style-type: none;
}

@media (min-width: 600px) {
  .footer-page__list-col {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .footer-page__list-col {
    width: 33.33333%;
  }
}

.footer-page__list-img {
  width: 33.33333%;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

@media (min-width: 768px) {
  .footer-page__list-img {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.footer-page--items-my li {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.footer-page__address-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 1.5rem;
  margin-left: 1rem;
}

.footer-page--underlined {
  text-decoration: underline;
}

.footer-page__indent {
  margin-left: 2rem;
  margin-right: 2rem;
}

.list-reset {
  list-style: none;
  padding: 0;
}

.appearance-none {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.bg-fixed {
  background-attachment: fixed;
}

.bg-local {
  background-attachment: local;
}

.bg-scroll {
  background-attachment: scroll;
}

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

.bg-brand {
  background-color: #ff993d;
}

.bg-dealer-brand {
  background-color: #305371;
}

.bg-oem-brand {
  background-color: #91989e;
}

.bg-black {
  background-color: #222;
}

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

.bg-grey-darkest {
  background-color: #333;
}

.bg-grey-darker {
  background-color: #626262;
}

.bg-grey-md-dark {
  background-color: #999;
}

.bg-grey-dark {
  background-color: #b2b2b2;
}

.bg-grey {
  background-color: #ccc;
}

.bg-grey-light {
  background-color: #ddd;
}

.bg-grey-lighter {
  background-color: #eee;
}

.bg-grey-lightest {
  background-color: #f8f8f8;
}

.bg-grey-accent {
  background-color: #efefef;
}

.bg-success {
  background-color: #449343;
}

.hover\:bg-transparent:hover {
  background-color: transparent;
}

.hover\:bg-brand:hover {
  background-color: #ff993d;
}

.hover\:bg-dealer-brand:hover {
  background-color: #305371;
}

.hover\:bg-oem-brand:hover {
  background-color: #91989e;
}

.hover\:bg-black:hover {
  background-color: #222;
}

.hover\:bg-white:hover {
  background-color: #fff;
}

.hover\:bg-grey-darkest:hover {
  background-color: #333;
}

.hover\:bg-grey-darker:hover {
  background-color: #626262;
}

.hover\:bg-grey-md-dark:hover {
  background-color: #999;
}

.hover\:bg-grey-dark:hover {
  background-color: #b2b2b2;
}

.hover\:bg-grey:hover {
  background-color: #ccc;
}

.hover\:bg-grey-light:hover {
  background-color: #ddd;
}

.hover\:bg-grey-lighter:hover {
  background-color: #eee;
}

.hover\:bg-grey-lightest:hover {
  background-color: #f8f8f8;
}

.hover\:bg-grey-accent:hover {
  background-color: #efefef;
}

.hover\:bg-success:hover {
  background-color: #449343;
}

.bg-bottom {
  background-position: bottom;
}

.bg-center {
  background-position: center;
}

.bg-left {
  background-position: left;
}

.bg-left-bottom {
  background-position: left bottom;
}

.bg-left-top {
  background-position: left top;
}

.bg-right {
  background-position: right;
}

.bg-right-bottom {
  background-position: right bottom;
}

.bg-right-top {
  background-position: right top;
}

.bg-top {
  background-position: top;
}

.bg-repeat {
  background-repeat: repeat;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.bg-repeat-x {
  background-repeat: repeat-x;
}

.bg-repeat-y {
  background-repeat: repeat-y;
}

.bg-auto {
  background-size: auto;
}

.bg-cover {
  background-size: cover;
}

.bg-contain {
  background-size: contain;
}

.border-collapse {
  border-collapse: collapse;
}

.border-separate {
  border-collapse: separate;
}

.border-transparent {
  border-color: transparent;
}

.border-brand {
  border-color: #ff993d;
}

.border-dealer-brand {
  border-color: #305371;
}

.border-oem-brand {
  border-color: #91989e;
}

.border-black {
  border-color: #222;
}

.border-white {
  border-color: #fff;
}

.border-grey-darkest {
  border-color: #333;
}

.border-grey-darker {
  border-color: #626262;
}

.border-grey-md-dark {
  border-color: #999;
}

.border-grey-dark {
  border-color: #b2b2b2;
}

.border-grey {
  border-color: #ccc;
}

.border-grey-light {
  border-color: #ddd;
}

.border-grey-lighter {
  border-color: #eee;
}

.border-grey-lightest {
  border-color: #f8f8f8;
}

.border-grey-accent {
  border-color: #efefef;
}

.border-success {
  border-color: #449343;
}

.hover\:border-transparent:hover {
  border-color: transparent;
}

.hover\:border-brand:hover {
  border-color: #ff993d;
}

.hover\:border-dealer-brand:hover {
  border-color: #305371;
}

.hover\:border-oem-brand:hover {
  border-color: #91989e;
}

.hover\:border-black:hover {
  border-color: #222;
}

.hover\:border-white:hover {
  border-color: #fff;
}

.hover\:border-grey-darkest:hover {
  border-color: #333;
}

.hover\:border-grey-darker:hover {
  border-color: #626262;
}

.hover\:border-grey-md-dark:hover {
  border-color: #999;
}

.hover\:border-grey-dark:hover {
  border-color: #b2b2b2;
}

.hover\:border-grey:hover {
  border-color: #ccc;
}

.hover\:border-grey-light:hover {
  border-color: #ddd;
}

.hover\:border-grey-lighter:hover {
  border-color: #eee;
}

.hover\:border-grey-lightest:hover {
  border-color: #f8f8f8;
}

.hover\:border-grey-accent:hover {
  border-color: #efefef;
}

.hover\:border-success:hover {
  border-color: #449343;
}

.rounded-none {
  border-radius: 0;
}

.rounded-xm {
  border-radius: .125rem;
}

.rounded {
  border-radius: .25rem;
}

.rounded-lg {
  border-radius: .5rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-t-none {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.rounded-r-none {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.rounded-b-none {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.rounded-l-none {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.rounded-t-xm {
  border-top-left-radius: .125rem;
  border-top-right-radius: .125rem;
}

.rounded-r-xm {
  border-top-right-radius: .125rem;
  border-bottom-right-radius: .125rem;
}

.rounded-b-xm {
  border-bottom-right-radius: .125rem;
  border-bottom-left-radius: .125rem;
}

.rounded-l-xm {
  border-top-left-radius: .125rem;
  border-bottom-left-radius: .125rem;
}

.rounded-t {
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
}

.rounded-r {
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
}

.rounded-b {
  border-bottom-right-radius: .25rem;
  border-bottom-left-radius: .25rem;
}

.rounded-l {
  border-top-left-radius: .25rem;
  border-bottom-left-radius: .25rem;
}

.rounded-t-lg {
  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem;
}

.rounded-r-lg {
  border-top-right-radius: .5rem;
  border-bottom-right-radius: .5rem;
}

.rounded-b-lg {
  border-bottom-right-radius: .5rem;
  border-bottom-left-radius: .5rem;
}

.rounded-l-lg {
  border-top-left-radius: .5rem;
  border-bottom-left-radius: .5rem;
}

.rounded-t-full {
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
}

.rounded-r-full {
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.rounded-b-full {
  border-bottom-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
}

.rounded-l-full {
  border-top-left-radius: 9999px;
  border-bottom-left-radius: 9999px;
}

.rounded-tl-none {
  border-top-left-radius: 0;
}

.rounded-tr-none {
  border-top-right-radius: 0;
}

.rounded-br-none {
  border-bottom-right-radius: 0;
}

.rounded-bl-none {
  border-bottom-left-radius: 0;
}

.rounded-tl-xm {
  border-top-left-radius: .125rem;
}

.rounded-tr-xm {
  border-top-right-radius: .125rem;
}

.rounded-br-xm {
  border-bottom-right-radius: .125rem;
}

.rounded-bl-xm {
  border-bottom-left-radius: .125rem;
}

.rounded-tl {
  border-top-left-radius: .25rem;
}

.rounded-tr {
  border-top-right-radius: .25rem;
}

.rounded-br {
  border-bottom-right-radius: .25rem;
}

.rounded-bl {
  border-bottom-left-radius: .25rem;
}

.rounded-tl-lg {
  border-top-left-radius: .5rem;
}

.rounded-tr-lg {
  border-top-right-radius: .5rem;
}

.rounded-br-lg {
  border-bottom-right-radius: .5rem;
}

.rounded-bl-lg {
  border-bottom-left-radius: .5rem;
}

.rounded-tl-full {
  border-top-left-radius: 9999px;
}

.rounded-tr-full {
  border-top-right-radius: 9999px;
}

.rounded-br-full {
  border-bottom-right-radius: 9999px;
}

.rounded-bl-full {
  border-bottom-left-radius: 9999px;
}

.border-solid {
  border-style: solid;
}

.border-dashed {
  border-style: dashed;
}

.border-dotted {
  border-style: dotted;
}

.border-none {
  border-style: none;
}

.border-0 {
  border-width: 0;
}

.border-1 {
  border-width: 1px;
}

.border-2 {
  border-width: 2px;
}

.border-4 {
  border-width: 4px;
}

.border-8 {
  border-width: 8px;
}

.border-t-0 {
  border-top-width: 0;
}

.border-r-0 {
  border-right-width: 0;
}

.border-b-0 {
  border-bottom-width: 0;
}

.border-l-0 {
  border-left-width: 0;
}

.border-t-1 {
  border-top-width: 1px;
}

.border-r-1 {
  border-right-width: 1px;
}

.border-b-1 {
  border-bottom-width: 1px;
}

.border-l-1 {
  border-left-width: 1px;
}

.border-t-2 {
  border-top-width: 2px;
}

.border-r-2 {
  border-right-width: 2px;
}

.border-b-2 {
  border-bottom-width: 2px;
}

.border-l-2 {
  border-left-width: 2px;
}

.border-t-4 {
  border-top-width: 4px;
}

.border-r-4 {
  border-right-width: 4px;
}

.border-b-4 {
  border-bottom-width: 4px;
}

.border-l-4 {
  border-left-width: 4px;
}

.border-t-8 {
  border-top-width: 8px;
}

.border-r-8 {
  border-right-width: 8px;
}

.border-b-8 {
  border-bottom-width: 8px;
}

.border-l-8 {
  border-left-width: 8px;
}

.cursor-auto {
  cursor: auto;
}

.cursor-default {
  cursor: default;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-wait {
  cursor: wait;
}

.cursor-move {
  cursor: move;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.block {
  display: block;
}

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

.inline {
  display: inline;
}

.table {
  display: table;
}

.table-row {
  display: table-row;
}

.table-cell {
  display: table-cell;
}

.hidden {
  display: none;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-col-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
}

.flex-no-wrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.items-baseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.items-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.self-auto {
  -ms-flex-item-align: auto;
      align-self: auto;
}

.self-start {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.self-end {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.self-center {
  -ms-flex-item-align: center;
      align-self: center;
}

.self-stretch {
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

.justify-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

.justify-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.content-center {
  -ms-flex-line-pack: center;
      align-content: center;
}

.content-start {
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

.content-end {
  -ms-flex-line-pack: end;
      align-content: flex-end;
}

.content-between {
  -ms-flex-line-pack: justify;
      align-content: space-between;
}

.content-around {
  -ms-flex-line-pack: distribute;
      align-content: space-around;
}

.flex-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.flex-auto {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}

.flex-initial {
  -webkit-box-flex: initial;
      -ms-flex: initial;
          flex: initial;
}

.flex-none {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.flex-grow {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.flex-shrink {
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.flex-no-grow {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.flex-no-shrink {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

.float-none {
  float: none;
}

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

.font-sans {
  font-family: "3form Graphik", Helvetica, sans-serif;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.hover\:font-light:hover {
  font-weight: 300;
}

.hover\:font-normal:hover {
  font-weight: 400;
}

.hover\:font-medium:hover {
  font-weight: 500;
}

.h-1 {
  height: .25rem;
}

.h-2 {
  height: .5rem;
}

.h-3 {
  height: .75rem;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-8 {
  height: 2rem;
}

.h-9 {
  height: 2.25rem;
}

.h-12 {
  height: 3rem;
}

.h-16 {
  height: 4rem;
}

.h-24 {
  height: 6rem;
}

.h-32 {
  height: 8rem;
}

.h-48 {
  height: 12rem;
}

.h-64 {
  height: 16rem;
}

.h-auto {
  height: auto;
}

.h-px {
  height: 1px;
}

.h-full {
  height: 100%;
}

.h-screen {
  height: 100vh;
}

.h-90v {
  height: 90vh;
}

.leading-none {
  line-height: 1;
}

.leading-tightish {
  line-height: 1.1;
}

.leading-tight {
  line-height: 1.25;
}

.leading-normal {
  line-height: 1.5;
}

.leading-normloose {
  line-height: 1.75;
}

.leading-loose {
  line-height: 2;
}

.leading-md {
  line-height: 24px;
}

.leading-heading {
  line-height: calc(100% + 8px);
}

.m-0 {
  margin: 0;
}

.m-1 {
  margin: .25rem;
}

.m-2 {
  margin: .5rem;
}

.m-3 {
  margin: .75rem;
}

.m-4 {
  margin: 1rem;
}

.m-5 {
  margin: 1.25rem;
}

.m-6 {
  margin: 1.5rem;
}

.m-8 {
  margin: 2rem;
}

.m-10 {
  margin: 2.5rem;
}

.m-12 {
  margin: 3rem;
}

.m-16 {
  margin: 4rem;
}

.m-20 {
  margin: 5rem;
}

.m-24 {
  margin: 6rem;
}

.m-32 {
  margin: 8rem;
}

.m-48 {
  margin: 12rem;
}

.m-64 {
  margin: 16rem;
}

.m-auto {
  margin: auto;
}

.m-px {
  margin: 1px;
}

.m--20 {
  margin: -5rem;
}

.m-30\% {
  margin: 30%;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.mx-0 {
  margin-left: 0;
  margin-right: 0;
}

.my-1 {
  margin-top: .25rem;
  margin-bottom: .25rem;
}

.mx-1 {
  margin-left: .25rem;
  margin-right: .25rem;
}

.my-2 {
  margin-top: .5rem;
  margin-bottom: .5rem;
}

.mx-2 {
  margin-left: .5rem;
  margin-right: .5rem;
}

.my-3 {
  margin-top: .75rem;
  margin-bottom: .75rem;
}

.mx-3 {
  margin-left: .75rem;
  margin-right: .75rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.mx-5 {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.mx-6 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.mx-8 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.my-10 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.mx-10 {
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}

.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.mx-12 {
  margin-left: 3rem;
  margin-right: 3rem;
}

.my-16 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.mx-16 {
  margin-left: 4rem;
  margin-right: 4rem;
}

.my-20 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.mx-20 {
  margin-left: 5rem;
  margin-right: 5rem;
}

.my-24 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.mx-24 {
  margin-left: 6rem;
  margin-right: 6rem;
}

.my-32 {
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.mx-32 {
  margin-left: 8rem;
  margin-right: 8rem;
}

.my-48 {
  margin-top: 12rem;
  margin-bottom: 12rem;
}

.mx-48 {
  margin-left: 12rem;
  margin-right: 12rem;
}

.my-64 {
  margin-top: 16rem;
  margin-bottom: 16rem;
}

.mx-64 {
  margin-left: 16rem;
  margin-right: 16rem;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-px {
  margin-top: 1px;
  margin-bottom: 1px;
}

.mx-px {
  margin-left: 1px;
  margin-right: 1px;
}

.my--20 {
  margin-top: -5rem;
  margin-bottom: -5rem;
}

.mx--20 {
  margin-left: -5rem;
  margin-right: -5rem;
}

.my-30\% {
  margin-top: 30%;
  margin-bottom: 30%;
}

.mx-30\% {
  margin-left: 30%;
  margin-right: 30%;
}

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

.mr-0 {
  margin-right: 0;
}

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

.ml-0 {
  margin-left: 0;
}

.mt-1 {
  margin-top: .25rem;
}

.mr-1 {
  margin-right: .25rem;
}

.mb-1 {
  margin-bottom: .25rem;
}

.ml-1 {
  margin-left: .25rem;
}

.mt-2 {
  margin-top: .5rem;
}

.mr-2 {
  margin-right: .5rem;
}

.mb-2 {
  margin-bottom: .5rem;
}

.ml-2 {
  margin-left: .5rem;
}

.mt-3 {
  margin-top: .75rem;
}

.mr-3 {
  margin-right: .75rem;
}

.mb-3 {
  margin-bottom: .75rem;
}

.ml-3 {
  margin-left: .75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.ml-4 {
  margin-left: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mr-5 {
  margin-right: 1.25rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.ml-5 {
  margin-left: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mr-6 {
  margin-right: 1.5rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.ml-6 {
  margin-left: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mr-8 {
  margin-right: 2rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.ml-8 {
  margin-left: 2rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mr-10 {
  margin-right: 2.5rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.ml-10 {
  margin-left: 2.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mr-12 {
  margin-right: 3rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.ml-12 {
  margin-left: 3rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mr-16 {
  margin-right: 4rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.ml-16 {
  margin-left: 4rem;
}

.mt-20 {
  margin-top: 5rem;
}

.mr-20 {
  margin-right: 5rem;
}

.mb-20 {
  margin-bottom: 5rem;
}

.ml-20 {
  margin-left: 5rem;
}

.mt-24 {
  margin-top: 6rem;
}

.mr-24 {
  margin-right: 6rem;
}

.mb-24 {
  margin-bottom: 6rem;
}

.ml-24 {
  margin-left: 6rem;
}

.mt-32 {
  margin-top: 8rem;
}

.mr-32 {
  margin-right: 8rem;
}

.mb-32 {
  margin-bottom: 8rem;
}

.ml-32 {
  margin-left: 8rem;
}

.mt-48 {
  margin-top: 12rem;
}

.mr-48 {
  margin-right: 12rem;
}

.mb-48 {
  margin-bottom: 12rem;
}

.ml-48 {
  margin-left: 12rem;
}

.mt-64 {
  margin-top: 16rem;
}

.mr-64 {
  margin-right: 16rem;
}

.mb-64 {
  margin-bottom: 16rem;
}

.ml-64 {
  margin-left: 16rem;
}

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

.mr-auto {
  margin-right: auto;
}

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

.ml-auto {
  margin-left: auto;
}

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

.mr-px {
  margin-right: 1px;
}

.mb-px {
  margin-bottom: 1px;
}

.ml-px {
  margin-left: 1px;
}

.mt--20 {
  margin-top: -5rem;
}

.mr--20 {
  margin-right: -5rem;
}

.mb--20 {
  margin-bottom: -5rem;
}

.ml--20 {
  margin-left: -5rem;
}

.mt-30\% {
  margin-top: 30%;
}

.mr-30\% {
  margin-right: 30%;
}

.mb-30\% {
  margin-bottom: 30%;
}

.ml-30\% {
  margin-left: 30%;
}

.max-h-full {
  max-height: 100%;
}

.max-h-md {
  max-height: 40rem;
}

.max-h-lg {
  max-height: 50rem;
}

.max-h-screen {
  max-height: 100vh;
}

.max-w-50 {
  max-width: 50%;
}

.max-w-xxs {
  max-width: 16rem;
}

.max-w-xs {
  max-width: 20rem;
}

.max-w-sm {
  max-width: 30rem;
}

.max-w-md {
  max-width: 40rem;
}

.max-w-lg {
  max-width: 50rem;
}

.max-w-xl {
  max-width: 60rem;
}

.max-w-2xl {
  max-width: 70rem;
}

.max-w-3xl {
  max-width: 80rem;
}

.max-w-4xl {
  max-width: 90rem;
}

.max-w-5xl {
  max-width: 100rem;
}

.max-w-full {
  max-width: 100%;
}

.min-h-0 {
  min-height: 0;
}

.min-h-full {
  min-height: 100%;
}

.min-h-screen {
  min-height: 100vh;
}

.min-w-0 {
  min-width: 0;
}

.min-w-full {
  min-width: 100%;
}

.-m-0 {
  margin: 0;
}

.-m-1 {
  margin: -0.25rem;
}

.-m-2 {
  margin: -0.5rem;
}

.-m-3 {
  margin: -0.75rem;
}

.-m-4 {
  margin: -1rem;
}

.-m-5 {
  margin: -1.25rem;
}

.-m-6 {
  margin: -1.5rem;
}

.-m-8 {
  margin: -2rem;
}

.-m-12 {
  margin: -3rem;
}

.-m-16 {
  margin: -4rem;
}

.-m-20 {
  margin: -5rem;
}

.-m-24 {
  margin: -6rem;
}

.-m-32 {
  margin: -8rem;
}

.-m-48 {
  margin: -12rem;
}

.-m-64 {
  margin: -16rem;
}

.-m-px {
  margin: -1px;
}

.-m-30\% {
  margin: -30%;
}

.-my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.-mx-0 {
  margin-left: 0;
  margin-right: 0;
}

.-my-1 {
  margin-top: -0.25rem;
  margin-bottom: -0.25rem;
}

.-mx-1 {
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}

.-my-2 {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}

.-mx-2 {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.-my-3 {
  margin-top: -0.75rem;
  margin-bottom: -0.75rem;
}

.-mx-3 {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.-my-4 {
  margin-top: -1rem;
  margin-bottom: -1rem;
}

.-mx-4 {
  margin-left: -1rem;
  margin-right: -1rem;
}

.-my-5 {
  margin-top: -1.25rem;
  margin-bottom: -1.25rem;
}

.-mx-5 {
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}

.-my-6 {
  margin-top: -1.5rem;
  margin-bottom: -1.5rem;
}

.-mx-6 {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.-my-8 {
  margin-top: -2rem;
  margin-bottom: -2rem;
}

.-mx-8 {
  margin-left: -2rem;
  margin-right: -2rem;
}

.-my-12 {
  margin-top: -3rem;
  margin-bottom: -3rem;
}

.-mx-12 {
  margin-left: -3rem;
  margin-right: -3rem;
}

.-my-16 {
  margin-top: -4rem;
  margin-bottom: -4rem;
}

.-mx-16 {
  margin-left: -4rem;
  margin-right: -4rem;
}

.-my-20 {
  margin-top: -5rem;
  margin-bottom: -5rem;
}

.-mx-20 {
  margin-left: -5rem;
  margin-right: -5rem;
}

.-my-24 {
  margin-top: -6rem;
  margin-bottom: -6rem;
}

.-mx-24 {
  margin-left: -6rem;
  margin-right: -6rem;
}

.-my-32 {
  margin-top: -8rem;
  margin-bottom: -8rem;
}

.-mx-32 {
  margin-left: -8rem;
  margin-right: -8rem;
}

.-my-48 {
  margin-top: -12rem;
  margin-bottom: -12rem;
}

.-mx-48 {
  margin-left: -12rem;
  margin-right: -12rem;
}

.-my-64 {
  margin-top: -16rem;
  margin-bottom: -16rem;
}

.-mx-64 {
  margin-left: -16rem;
  margin-right: -16rem;
}

.-my-px {
  margin-top: -1px;
  margin-bottom: -1px;
}

.-mx-px {
  margin-left: -1px;
  margin-right: -1px;
}

.-my-30\% {
  margin-top: -30%;
  margin-bottom: -30%;
}

.-mx-30\% {
  margin-left: -30%;
  margin-right: -30%;
}

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

.-mr-0 {
  margin-right: 0;
}

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

.-ml-0 {
  margin-left: 0;
}

.-mt-1 {
  margin-top: -0.25rem;
}

.-mr-1 {
  margin-right: -0.25rem;
}

.-mb-1 {
  margin-bottom: -0.25rem;
}

.-ml-1 {
  margin-left: -0.25rem;
}

.-mt-2 {
  margin-top: -0.5rem;
}

.-mr-2 {
  margin-right: -0.5rem;
}

.-mb-2 {
  margin-bottom: -0.5rem;
}

.-ml-2 {
  margin-left: -0.5rem;
}

.-mt-3 {
  margin-top: -0.75rem;
}

.-mr-3 {
  margin-right: -0.75rem;
}

.-mb-3 {
  margin-bottom: -0.75rem;
}

.-ml-3 {
  margin-left: -0.75rem;
}

.-mt-4 {
  margin-top: -1rem;
}

.-mr-4 {
  margin-right: -1rem;
}

.-mb-4 {
  margin-bottom: -1rem;
}

.-ml-4 {
  margin-left: -1rem;
}

.-mt-5 {
  margin-top: -1.25rem;
}

.-mr-5 {
  margin-right: -1.25rem;
}

.-mb-5 {
  margin-bottom: -1.25rem;
}

.-ml-5 {
  margin-left: -1.25rem;
}

.-mt-6 {
  margin-top: -1.5rem;
}

.-mr-6 {
  margin-right: -1.5rem;
}

.-mb-6 {
  margin-bottom: -1.5rem;
}

.-ml-6 {
  margin-left: -1.5rem;
}

.-mt-8 {
  margin-top: -2rem;
}

.-mr-8 {
  margin-right: -2rem;
}

.-mb-8 {
  margin-bottom: -2rem;
}

.-ml-8 {
  margin-left: -2rem;
}

.-mt-12 {
  margin-top: -3rem;
}

.-mr-12 {
  margin-right: -3rem;
}

.-mb-12 {
  margin-bottom: -3rem;
}

.-ml-12 {
  margin-left: -3rem;
}

.-mt-16 {
  margin-top: -4rem;
}

.-mr-16 {
  margin-right: -4rem;
}

.-mb-16 {
  margin-bottom: -4rem;
}

.-ml-16 {
  margin-left: -4rem;
}

.-mt-20 {
  margin-top: -5rem;
}

.-mr-20 {
  margin-right: -5rem;
}

.-mb-20 {
  margin-bottom: -5rem;
}

.-ml-20 {
  margin-left: -5rem;
}

.-mt-24 {
  margin-top: -6rem;
}

.-mr-24 {
  margin-right: -6rem;
}

.-mb-24 {
  margin-bottom: -6rem;
}

.-ml-24 {
  margin-left: -6rem;
}

.-mt-32 {
  margin-top: -8rem;
}

.-mr-32 {
  margin-right: -8rem;
}

.-mb-32 {
  margin-bottom: -8rem;
}

.-ml-32 {
  margin-left: -8rem;
}

.-mt-48 {
  margin-top: -12rem;
}

.-mr-48 {
  margin-right: -12rem;
}

.-mb-48 {
  margin-bottom: -12rem;
}

.-ml-48 {
  margin-left: -12rem;
}

.-mt-64 {
  margin-top: -16rem;
}

.-mr-64 {
  margin-right: -16rem;
}

.-mb-64 {
  margin-bottom: -16rem;
}

.-ml-64 {
  margin-left: -16rem;
}

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

.-mr-px {
  margin-right: -1px;
}

.-mb-px {
  margin-bottom: -1px;
}

.-ml-px {
  margin-left: -1px;
}

.-mt-30\% {
  margin-top: -30%;
}

.-mr-30\% {
  margin-right: -30%;
}

.-mb-30\% {
  margin-bottom: -30%;
}

.-ml-30\% {
  margin-left: -30%;
}

.opacity-0 {
  opacity: 0;
}

.opacity-20 {
  opacity: .2;
}

.opacity-40 {
  opacity: .4;
}

.opacity-60 {
  opacity: .6;
}

.opacity-80 {
  opacity: .8;
}

.opacity-100 {
  opacity: 1;
}

.outline-none {
  outline: 0;
}

.focus\:outline-none:focus {
  outline: 0;
}

.overflow-auto {
  overflow: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-visible {
  overflow: visible;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-x-auto {
  overflow-x: auto;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.overflow-x-visible {
  overflow-x: visible;
}

.overflow-y-visible {
  overflow-y: visible;
}

.overflow-x-scroll {
  overflow-x: scroll;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.scrolling-touch {
  -webkit-overflow-scrolling: touch;
}

.scrolling-auto {
  -webkit-overflow-scrolling: auto;
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: .25rem;
}

.p-2 {
  padding: .5rem;
}

.p-3 {
  padding: .75rem;
}

.p-4 {
  padding: 1rem;
}

.p-5 {
  padding: 1.25rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.p-10 {
  padding: 2.5rem;
}

.p-12 {
  padding: 3rem;
}

.p-16 {
  padding: 4rem;
}

.p-20 {
  padding: 5rem;
}

.p-24 {
  padding: 6rem;
}

.p-32 {
  padding: 8rem;
}

.p-48 {
  padding: 12rem;
}

.p-64 {
  padding: 16rem;
}

.p-px {
  padding: 1px;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.py-1 {
  padding-top: .25rem;
  padding-bottom: .25rem;
}

.px-1 {
  padding-left: .25rem;
  padding-right: .25rem;
}

.py-2 {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.px-2 {
  padding-left: .5rem;
  padding-right: .5rem;
}

.py-3 {
  padding-top: .75rem;
  padding-bottom: .75rem;
}

.px-3 {
  padding-left: .75rem;
  padding-right: .75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.px-16 {
  padding-left: 4rem;
  padding-right: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.px-20 {
  padding-left: 5rem;
  padding-right: 5rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.px-24 {
  padding-left: 6rem;
  padding-right: 6rem;
}

.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.px-32 {
  padding-left: 8rem;
  padding-right: 8rem;
}

.py-48 {
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.px-48 {
  padding-left: 12rem;
  padding-right: 12rem;
}

.py-64 {
  padding-top: 16rem;
  padding-bottom: 16rem;
}

.px-64 {
  padding-left: 16rem;
  padding-right: 16rem;
}

.py-px {
  padding-top: 1px;
  padding-bottom: 1px;
}

.px-px {
  padding-left: 1px;
  padding-right: 1px;
}

.pt-0 {
  padding-top: 0;
}

.pr-0 {
  padding-right: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pl-0 {
  padding-left: 0;
}

.pt-1 {
  padding-top: .25rem;
}

.pr-1 {
  padding-right: .25rem;
}

.pb-1 {
  padding-bottom: .25rem;
}

.pl-1 {
  padding-left: .25rem;
}

.pt-2 {
  padding-top: .5rem;
}

.pr-2 {
  padding-right: .5rem;
}

.pb-2 {
  padding-bottom: .5rem;
}

.pl-2 {
  padding-left: .5rem;
}

.pt-3 {
  padding-top: .75rem;
}

.pr-3 {
  padding-right: .75rem;
}

.pb-3 {
  padding-bottom: .75rem;
}

.pl-3 {
  padding-left: .75rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pr-4 {
  padding-right: 1rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pl-4 {
  padding-left: 1rem;
}

.pt-5 {
  padding-top: 1.25rem;
}

.pr-5 {
  padding-right: 1.25rem;
}

.pb-5 {
  padding-bottom: 1.25rem;
}

.pl-5 {
  padding-left: 1.25rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pr-6 {
  padding-right: 1.5rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pl-6 {
  padding-left: 1.5rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pr-8 {
  padding-right: 2rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pl-8 {
  padding-left: 2rem;
}

.pt-10 {
  padding-top: 2.5rem;
}

.pr-10 {
  padding-right: 2.5rem;
}

.pb-10 {
  padding-bottom: 2.5rem;
}

.pl-10 {
  padding-left: 2.5rem;
}

.pt-12 {
  padding-top: 3rem;
}

.pr-12 {
  padding-right: 3rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

.pl-12 {
  padding-left: 3rem;
}

.pt-16 {
  padding-top: 4rem;
}

.pr-16 {
  padding-right: 4rem;
}

.pb-16 {
  padding-bottom: 4rem;
}

.pl-16 {
  padding-left: 4rem;
}

.pt-20 {
  padding-top: 5rem;
}

.pr-20 {
  padding-right: 5rem;
}

.pb-20 {
  padding-bottom: 5rem;
}

.pl-20 {
  padding-left: 5rem;
}

.pt-24 {
  padding-top: 6rem;
}

.pr-24 {
  padding-right: 6rem;
}

.pb-24 {
  padding-bottom: 6rem;
}

.pl-24 {
  padding-left: 6rem;
}

.pt-32 {
  padding-top: 8rem;
}

.pr-32 {
  padding-right: 8rem;
}

.pb-32 {
  padding-bottom: 8rem;
}

.pl-32 {
  padding-left: 8rem;
}

.pt-48 {
  padding-top: 12rem;
}

.pr-48 {
  padding-right: 12rem;
}

.pb-48 {
  padding-bottom: 12rem;
}

.pl-48 {
  padding-left: 12rem;
}

.pt-64 {
  padding-top: 16rem;
}

.pr-64 {
  padding-right: 16rem;
}

.pb-64 {
  padding-bottom: 16rem;
}

.pl-64 {
  padding-left: 16rem;
}

.pt-px {
  padding-top: 1px;
}

.pr-px {
  padding-right: 1px;
}

.pb-px {
  padding-bottom: 1px;
}

.pl-px {
  padding-left: 1px;
}

.pointer-events-none {
  pointer-events: none;
}

.pointer-events-auto {
  pointer-events: auto;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.pin-none {
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}

.pin {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.pin-y {
  top: 0;
  bottom: 0;
}

.pin-x {
  right: 0;
  left: 0;
}

.pin-t {
  top: 0;
}

.pin-r {
  right: 0;
}

.pin-b {
  bottom: 0;
}

.pin-l {
  left: 0;
}

.resize-none {
  resize: none;
}

.resize-y {
  resize: vertical;
}

.resize-x {
  resize: horizontal;
}

.resize {
  resize: both;
}

.shadow-swatch-sm {
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .1);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .1);
}

.shadow-swatch-lg {
  -webkit-box-shadow: 0 8px 8px 0 rgba(34, 34, 34, .1);
          box-shadow: 0 8px 8px 0 rgba(34, 34, 34, .1);
}

.shadow-swatch-xl {
  -webkit-box-shadow: 0 16px 16px 0 rgba(34, 34, 34, .1);
          box-shadow: 0 16px 16px 0 rgba(34, 34, 34, .1);
}

.shadow-dark {
  -webkit-box-shadow: 8px 8px 0px 0px #222;
          box-shadow: 8px 8px 0px 0px #222;
}

.shadow-button-white-off {
  -webkit-box-shadow: 0 2px 0 0 #eee;
          box-shadow: 0 2px 0 0 #eee;
}

.shadow-button-white-hover {
  -webkit-box-shadow: 8px 8px 0 0 #eee;
          box-shadow: 8px 8px 0 0 #eee;
}

.shadow-button-white-hover-vertical {
  -webkit-box-shadow: 0px 8px 0 0 #eee;
          box-shadow: 0px 8px 0 0 #eee;
}

.shadow-button-black-hover {
  -webkit-box-shadow: 8px 8px 0 0 #000;
          box-shadow: 8px 8px 0 0 #000;
}

.shadow-tooltip-white-off {
  -webkit-box-shadow: 0 2px 0 0 #e9e9e9;
          box-shadow: 0 2px 0 0 #e9e9e9;
}

.shadow-tooltip-white-hover {
  -webkit-box-shadow: 4px 4px 0 0 #e9e9e9;
          box-shadow: 4px 4px 0 0 #e9e9e9;
}

.shadow-pagination-greg-light-hover {
  -webkit-box-shadow: 2px 2px 0 0 #b2b2b2;
          box-shadow: 2px 2px 0 0 #b2b2b2;
}

.shadow-dropdown-off {
  -webkit-box-shadow: 0 2px 0 0 #ddd;
          box-shadow: 0 2px 0 0 #ddd;
}

.shadow-dropdown-hover {
  -webkit-box-shadow: 0 8px 0 0 #ddd;
          box-shadow: 0 8px 0 0 #ddd;
}

.shadow-dropdown-dark-off {
  -webkit-box-shadow: 0 2px 0 0 #111;
          box-shadow: 0 2px 0 0 #111;
}

.shadow-tooltip-grey-light-active {
  -webkit-box-shadow: 0 2px 0 0 #ccc;
          box-shadow: 0 2px 0 0 #ccc;
}

.shadow-inset-top-black {
  -webkit-box-shadow: inset 0px 2px 0px 0px #222;
          box-shadow: inset 0px 2px 0px 0px #222;
}

.shadow-inset-top-white {
  -webkit-box-shadow: inset 0px 2px 0px 0px #fff;
          box-shadow: inset 0px 2px 0px 0px #fff;
}

.shadow-none {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.fill-current {
  fill: currentColor;
}

.stroke-current {
  stroke: currentColor;
}

.table-auto {
  table-layout: auto;
}

.table-fixed {
  table-layout: fixed;
}

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

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

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

.text-justify {
  text-align: justify;
}

.text-transparent {
  color: transparent;
}

.text-brand {
  color: #ff993d;
}

.text-dealer-brand {
  color: #305371;
}

.text-oem-brand {
  color: #91989e;
}

.text-black {
  color: #222;
}

.text-white {
  color: #fff;
}

.text-grey-darkest {
  color: #333;
}

.text-grey-darker {
  color: #626262;
}

.text-grey-md-dark {
  color: #999;
}

.text-grey-dark {
  color: #b2b2b2;
}

.text-grey {
  color: #ccc;
}

.text-grey-light {
  color: #ddd;
}

.text-grey-lighter {
  color: #eee;
}

.text-grey-lightest {
  color: #f8f8f8;
}

.text-grey-accent {
  color: #efefef;
}

.text-success {
  color: #449343;
}

.hover\:text-transparent:hover {
  color: transparent;
}

.hover\:text-brand:hover {
  color: #ff993d;
}

.hover\:text-dealer-brand:hover {
  color: #305371;
}

.hover\:text-oem-brand:hover {
  color: #91989e;
}

.hover\:text-black:hover {
  color: #222;
}

.hover\:text-white:hover {
  color: #fff;
}

.hover\:text-grey-darkest:hover {
  color: #333;
}

.hover\:text-grey-darker:hover {
  color: #626262;
}

.hover\:text-grey-md-dark:hover {
  color: #999;
}

.hover\:text-grey-dark:hover {
  color: #b2b2b2;
}

.hover\:text-grey:hover {
  color: #ccc;
}

.hover\:text-grey-light:hover {
  color: #ddd;
}

.hover\:text-grey-lighter:hover {
  color: #eee;
}

.hover\:text-grey-lightest:hover {
  color: #f8f8f8;
}

.hover\:text-grey-accent:hover {
  color: #efefef;
}

.hover\:text-success:hover {
  color: #449343;
}

.text-xxs {
  font-size: .625rem;
}

.text-xs {
  font-size: .75rem;
}

.text-sm {
  font-size: .875rem;
}

.text-base {
  font-size: 1rem;
}

.text-smd {
  font-size: 1.25rem;
}

.text-md {
  font-size: 1.5rem;
}

.text-lmd {
  font-size: 1.75rem;
}

.text-lg {
  font-size: 2rem;
}

.text-xl {
  font-size: 2.5rem;
}

.text-2xl {
  font-size: 3rem;
}

.text-3xl {
  font-size: 3.5rem;
}

.text-4xl {
  font-size: 5rem;
}

.text-5xl {
  font-size: 6rem;
}

.italic {
  font-style: italic;
}

.roman {
  font-style: normal;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.normal-case {
  text-transform: none;
}

.underline {
  text-decoration: underline;
}

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

.no-underline {
  text-decoration: none;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.subpixel-antialiased {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

.hover\:italic:hover {
  font-style: italic;
}

.hover\:roman:hover {
  font-style: normal;
}

.hover\:uppercase:hover {
  text-transform: uppercase;
}

.hover\:lowercase:hover {
  text-transform: lowercase;
}

.hover\:capitalize:hover {
  text-transform: capitalize;
}

.hover\:normal-case:hover {
  text-transform: none;
}

.hover\:underline:hover {
  text-decoration: underline;
}

.hover\:line-through:hover {
  text-decoration: line-through;
}

.hover\:no-underline:hover {
  text-decoration: none;
}

.hover\:antialiased:hover {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hover\:subpixel-antialiased:hover {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

.tracking-tight {
  letter-spacing: -0.05em;
}

.tracking-tightish {
  letter-spacing: -0.032em;
}

.tracking-normal {
  letter-spacing: 0;
}

.tracking-wide {
  letter-spacing: .05em;
}

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

.select-text {
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
}

.align-baseline {
  vertical-align: baseline;
}

.align-top {
  vertical-align: top;
}

.align-middle {
  vertical-align: middle;
}

.align-bottom {
  vertical-align: bottom;
}

.align-text-top {
  vertical-align: text-top;
}

.align-text-bottom {
  vertical-align: text-bottom;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

.whitespace-normal {
  white-space: normal;
}

.whitespace-no-wrap {
  white-space: nowrap;
}

.whitespace-pre {
  white-space: pre;
}

.whitespace-pre-line {
  white-space: pre-line;
}

.whitespace-pre-wrap {
  white-space: pre-wrap;
}

.break-words {
  word-wrap: break-word;
}

.break-normal {
  word-wrap: normal;
}

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

.w-1 {
  width: .25rem;
}

.w-2 {
  width: .5rem;
}

.w-3 {
  width: .75rem;
}

.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-8 {
  width: 2rem;
}

.w-12 {
  width: 3rem;
}

.w-16 {
  width: 4rem;
}

.w-24 {
  width: 6rem;
}

.w-32 {
  width: 8rem;
}

.w-48 {
  width: 12rem;
}

.w-64 {
  width: 16rem;
}

.w-auto {
  width: auto;
}

.w-px {
  width: 1px;
}

.w-1\/2 {
  width: 50%;
}

.w-1\/3 {
  width: 33.33333%;
}

.w-2\/3 {
  width: 66.66667%;
}

.w-1\/4 {
  width: 25%;
}

.w-3\/4 {
  width: 75%;
}

.w-1\/5 {
  width: 20%;
}

.w-2\/5 {
  width: 40%;
}

.w-3\/5 {
  width: 60%;
}

.w-4\/5 {
  width: 80%;
}

.w-1\/6 {
  width: 16.66667%;
}

.w-5\/6 {
  width: 83.33333%;
}

.w-full {
  width: 100%;
}

.w-screen {
  width: 100vw;
}

.w--borderfix {
  width: calc(100% - 1px);
}

.w-borderfix {
  width: calc(100% + 1px);
}

.w-fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.z-0 {
  z-index: 0;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.z-100 {
  z-index: 100;
}

.z-200 {
  z-index: 200;
}

.z-300 {
  z-index: 300;
}

.z-400 {
  z-index: 400;
}

.z-500 {
  z-index: 500;
}

.z-1000 {
  z-index: 1000;
}

.z-2000 {
  z-index: 2000;
}

.transition-transform {
  -webkit-transition: -webkit-transform .2s ease-in-out;
  transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
  will-change: transform;
}

.transition-opacity {
  -webkit-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out;
  will-change: opacity;
}

@media (min-width: 375px) {
  .xs\:col-xs {
    -webkit-box-flex: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  @media (min-width: 768px) {
    .col-xs {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xs\:col-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  @media (min-width: 768px) {
    .col-1 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xs\:col-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  @media (min-width: 768px) {
    .col-2 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xs\:col-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  @media (min-width: 768px) {
    .col-3 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xs\:col-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  @media (min-width: 768px) {
    .col-4 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xs\:col-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  @media (min-width: 768px) {
    .col-5 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xs\:col-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  @media (min-width: 768px) {
    .col-6 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xs\:col-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  @media (min-width: 768px) {
    .col-7 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xs\:col-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  @media (min-width: 768px) {
    .col-8 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xs\:col-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  @media (min-width: 768px) {
    .col-9 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xs\:col-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  @media (min-width: 768px) {
    .col-10 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xs\:col-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  @media (min-width: 768px) {
    .col-11 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xs\:col-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  @media (min-width: 768px) {
    .col-12 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xs\:col-offset-0 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 0;
  }

  @media (min-width: 768px) {
    .col-offset-0 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xs\:col-offset-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 8.33333333%;
  }

  @media (min-width: 768px) {
    .col-offset-1 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xs\:col-offset-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 16.66666667%;
  }

  @media (min-width: 768px) {
    .col-offset-2 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xs\:col-offset-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 25%;
  }

  @media (min-width: 768px) {
    .col-offset-3 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xs\:col-offset-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 33.33333333%;
  }

  @media (min-width: 768px) {
    .col-offset-4 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xs\:col-offset-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 41.66666667%;
  }

  @media (min-width: 768px) {
    .col-offset-5 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xs\:col-offset-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 50%;
  }

  @media (min-width: 768px) {
    .col-offset-6 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xs\:col-offset-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 58.33333333%;
  }

  @media (min-width: 768px) {
    .col-offset-7 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xs\:col-offset-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 66.66666667%;
  }

  @media (min-width: 768px) {
    .col-offset-8 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xs\:col-offset-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 75%;
  }

  @media (min-width: 768px) {
    .col-offset-9 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xs\:col-offset-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 83.33333333%;
  }

  @media (min-width: 768px) {
    .col-offset-10 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xs\:col-offset-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 91.66666667%;
  }

  @media (min-width: 768px) {
    .col-offset-11 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xs\:start-xs {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .xs\:center-xs {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .xs\:end-xs {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .xs\:top-xs {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .xs\:middle-xs {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .xs\:bottom-xs {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .xs\:around-xs {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .xs\:between-xs {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .xs\:first-xs {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .xs\:last-xs {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .xs\:row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
  }

  .xs\:col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }

  .xs\:grid-row {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-right: -0.5rem;
    margin-left: -0.5rem;
  }

  @media (min-width: 768px) {
    .grid-row {
      margin-right: -1rem;
      margin-left: -1rem;
    }
  }

  .grid-row .xs\:grid-row {
    margin-right: -0.25rem;
    margin-left: -0.25rem;
  }

  @media (min-width: 768px) {
    .grid-row .grid-row {
      margin-right: -0.5rem;
      margin-left: -0.5rem;
    }
  }

  .xs\:h1 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 6rem;
    line-height: calc(100% + 8px);
    letter-spacing: -4px;
  }

  .xs\:h2 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 5rem;
    line-height: calc(100% + 8px);
    letter-spacing: -3px;
  }

  .xs\:h3-large {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 4rem;
    line-height: calc(100% + 8px);
    letter-spacing: -2.66px;
  }

  .xs\:h3 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 3.5rem;
    line-height: calc(100% + 8px);
    letter-spacing: -2px;
  }

  .xs\:h4 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 3rem;
    line-height: calc(100% + 8px);
    letter-spacing: -1.5px;
  }

  .xs\:h5 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 1.5rem;
    line-height: calc(100% + 8px);
    font-weight: 300;
    letter-spacing: -1px;
  }

  .xs\:h6 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    line-height: calc(100% + 8px);
    font-weight: 300;
  }

  .xs\:header-d0 {
    font-size: 2.5rem;
    line-height: calc(100% + 8px);
    letter-spacing: -1.5px;
  }

  .xs\:header-d1 {
    font-size: 2rem;
    line-height: calc(100% + 8px);
    letter-spacing: -1.25px;
  }

  .xs\:header-e1 {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: -1px;
  }

  .xs\:grid-wrapper {
    margin: 0 auto;
    max-width: 1368px;
    padding: 0 2rem;
  }

  .xs\:card-driver__content-outer--left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .xs\:card-driver__content-outer--right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .xs\:card-driver__content--lg {
    width: 83.33333%;
  }

  .xs\:card-driver__content--md {
    width: 66.66666%;
  }

  .xs\:card-driver__content--sm {
    width: 50%;
  }

  .xs\:card-driver__content--smx {
    width: 33%;
  }

  .xs\:card-driver__content--xs {
    width: 25%;
  }

  .xs\:card-driver__content--auto {
    width: auto;
  }

  .xs\:list-reset {
    list-style: none;
    padding: 0;
  }

  .xs\:appearance-none {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .xs\:bg-fixed {
    background-attachment: fixed;
  }

  .xs\:bg-local {
    background-attachment: local;
  }

  .xs\:bg-scroll {
    background-attachment: scroll;
  }

  .xs\:bg-transparent {
    background-color: transparent;
  }

  .xs\:bg-brand {
    background-color: #ff993d;
  }

  .xs\:bg-dealer-brand {
    background-color: #305371;
  }

  .xs\:bg-oem-brand {
    background-color: #91989e;
  }

  .xs\:bg-black {
    background-color: #222;
  }

  .xs\:bg-white {
    background-color: #fff;
  }

  .xs\:bg-grey-darkest {
    background-color: #333;
  }

  .xs\:bg-grey-darker {
    background-color: #626262;
  }

  .xs\:bg-grey-md-dark {
    background-color: #999;
  }

  .xs\:bg-grey-dark {
    background-color: #b2b2b2;
  }

  .xs\:bg-grey {
    background-color: #ccc;
  }

  .xs\:bg-grey-light {
    background-color: #ddd;
  }

  .xs\:bg-grey-lighter {
    background-color: #eee;
  }

  .xs\:bg-grey-lightest {
    background-color: #f8f8f8;
  }

  .xs\:bg-grey-accent {
    background-color: #efefef;
  }

  .xs\:bg-success {
    background-color: #449343;
  }

  .xs\:hover\:bg-transparent:hover {
    background-color: transparent;
  }

  .xs\:hover\:bg-brand:hover {
    background-color: #ff993d;
  }

  .xs\:hover\:bg-dealer-brand:hover {
    background-color: #305371;
  }

  .xs\:hover\:bg-oem-brand:hover {
    background-color: #91989e;
  }

  .xs\:hover\:bg-black:hover {
    background-color: #222;
  }

  .xs\:hover\:bg-white:hover {
    background-color: #fff;
  }

  .xs\:hover\:bg-grey-darkest:hover {
    background-color: #333;
  }

  .xs\:hover\:bg-grey-darker:hover {
    background-color: #626262;
  }

  .xs\:hover\:bg-grey-md-dark:hover {
    background-color: #999;
  }

  .xs\:hover\:bg-grey-dark:hover {
    background-color: #b2b2b2;
  }

  .xs\:hover\:bg-grey:hover {
    background-color: #ccc;
  }

  .xs\:hover\:bg-grey-light:hover {
    background-color: #ddd;
  }

  .xs\:hover\:bg-grey-lighter:hover {
    background-color: #eee;
  }

  .xs\:hover\:bg-grey-lightest:hover {
    background-color: #f8f8f8;
  }

  .xs\:hover\:bg-grey-accent:hover {
    background-color: #efefef;
  }

  .xs\:hover\:bg-success:hover {
    background-color: #449343;
  }

  .xs\:bg-bottom {
    background-position: bottom;
  }

  .xs\:bg-center {
    background-position: center;
  }

  .xs\:bg-left {
    background-position: left;
  }

  .xs\:bg-left-bottom {
    background-position: left bottom;
  }

  .xs\:bg-left-top {
    background-position: left top;
  }

  .xs\:bg-right {
    background-position: right;
  }

  .xs\:bg-right-bottom {
    background-position: right bottom;
  }

  .xs\:bg-right-top {
    background-position: right top;
  }

  .xs\:bg-top {
    background-position: top;
  }

  .xs\:bg-repeat {
    background-repeat: repeat;
  }

  .xs\:bg-no-repeat {
    background-repeat: no-repeat;
  }

  .xs\:bg-repeat-x {
    background-repeat: repeat-x;
  }

  .xs\:bg-repeat-y {
    background-repeat: repeat-y;
  }

  .xs\:bg-auto {
    background-size: auto;
  }

  .xs\:bg-cover {
    background-size: cover;
  }

  .xs\:bg-contain {
    background-size: contain;
  }

  .xs\:border-transparent {
    border-color: transparent;
  }

  .xs\:border-brand {
    border-color: #ff993d;
  }

  .xs\:border-dealer-brand {
    border-color: #305371;
  }

  .xs\:border-oem-brand {
    border-color: #91989e;
  }

  .xs\:border-black {
    border-color: #222;
  }

  .xs\:border-white {
    border-color: #fff;
  }

  .xs\:border-grey-darkest {
    border-color: #333;
  }

  .xs\:border-grey-darker {
    border-color: #626262;
  }

  .xs\:border-grey-md-dark {
    border-color: #999;
  }

  .xs\:border-grey-dark {
    border-color: #b2b2b2;
  }

  .xs\:border-grey {
    border-color: #ccc;
  }

  .xs\:border-grey-light {
    border-color: #ddd;
  }

  .xs\:border-grey-lighter {
    border-color: #eee;
  }

  .xs\:border-grey-lightest {
    border-color: #f8f8f8;
  }

  .xs\:border-grey-accent {
    border-color: #efefef;
  }

  .xs\:border-success {
    border-color: #449343;
  }

  .xs\:hover\:border-transparent:hover {
    border-color: transparent;
  }

  .xs\:hover\:border-brand:hover {
    border-color: #ff993d;
  }

  .xs\:hover\:border-dealer-brand:hover {
    border-color: #305371;
  }

  .xs\:hover\:border-oem-brand:hover {
    border-color: #91989e;
  }

  .xs\:hover\:border-black:hover {
    border-color: #222;
  }

  .xs\:hover\:border-white:hover {
    border-color: #fff;
  }

  .xs\:hover\:border-grey-darkest:hover {
    border-color: #333;
  }

  .xs\:hover\:border-grey-darker:hover {
    border-color: #626262;
  }

  .xs\:hover\:border-grey-md-dark:hover {
    border-color: #999;
  }

  .xs\:hover\:border-grey-dark:hover {
    border-color: #b2b2b2;
  }

  .xs\:hover\:border-grey:hover {
    border-color: #ccc;
  }

  .xs\:hover\:border-grey-light:hover {
    border-color: #ddd;
  }

  .xs\:hover\:border-grey-lighter:hover {
    border-color: #eee;
  }

  .xs\:hover\:border-grey-lightest:hover {
    border-color: #f8f8f8;
  }

  .xs\:hover\:border-grey-accent:hover {
    border-color: #efefef;
  }

  .xs\:hover\:border-success:hover {
    border-color: #449343;
  }

  .xs\:rounded-none {
    border-radius: 0;
  }

  .xs\:rounded-xm {
    border-radius: .125rem;
  }

  .xs\:rounded {
    border-radius: .25rem;
  }

  .xs\:rounded-lg {
    border-radius: .5rem;
  }

  .xs\:rounded-full {
    border-radius: 9999px;
  }

  .xs\:rounded-t-none {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .xs\:rounded-r-none {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .xs\:rounded-b-none {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .xs\:rounded-l-none {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .xs\:rounded-t-xm {
    border-top-left-radius: .125rem;
    border-top-right-radius: .125rem;
  }

  .xs\:rounded-r-xm {
    border-top-right-radius: .125rem;
    border-bottom-right-radius: .125rem;
  }

  .xs\:rounded-b-xm {
    border-bottom-right-radius: .125rem;
    border-bottom-left-radius: .125rem;
  }

  .xs\:rounded-l-xm {
    border-top-left-radius: .125rem;
    border-bottom-left-radius: .125rem;
  }

  .xs\:rounded-t {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
  }

  .xs\:rounded-r {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
  }

  .xs\:rounded-b {
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem;
  }

  .xs\:rounded-l {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
  }

  .xs\:rounded-t-lg {
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
  }

  .xs\:rounded-r-lg {
    border-top-right-radius: .5rem;
    border-bottom-right-radius: .5rem;
  }

  .xs\:rounded-b-lg {
    border-bottom-right-radius: .5rem;
    border-bottom-left-radius: .5rem;
  }

  .xs\:rounded-l-lg {
    border-top-left-radius: .5rem;
    border-bottom-left-radius: .5rem;
  }

  .xs\:rounded-t-full {
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .xs\:rounded-r-full {
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .xs\:rounded-b-full {
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .xs\:rounded-l-full {
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .xs\:rounded-tl-none {
    border-top-left-radius: 0;
  }

  .xs\:rounded-tr-none {
    border-top-right-radius: 0;
  }

  .xs\:rounded-br-none {
    border-bottom-right-radius: 0;
  }

  .xs\:rounded-bl-none {
    border-bottom-left-radius: 0;
  }

  .xs\:rounded-tl-xm {
    border-top-left-radius: .125rem;
  }

  .xs\:rounded-tr-xm {
    border-top-right-radius: .125rem;
  }

  .xs\:rounded-br-xm {
    border-bottom-right-radius: .125rem;
  }

  .xs\:rounded-bl-xm {
    border-bottom-left-radius: .125rem;
  }

  .xs\:rounded-tl {
    border-top-left-radius: .25rem;
  }

  .xs\:rounded-tr {
    border-top-right-radius: .25rem;
  }

  .xs\:rounded-br {
    border-bottom-right-radius: .25rem;
  }

  .xs\:rounded-bl {
    border-bottom-left-radius: .25rem;
  }

  .xs\:rounded-tl-lg {
    border-top-left-radius: .5rem;
  }

  .xs\:rounded-tr-lg {
    border-top-right-radius: .5rem;
  }

  .xs\:rounded-br-lg {
    border-bottom-right-radius: .5rem;
  }

  .xs\:rounded-bl-lg {
    border-bottom-left-radius: .5rem;
  }

  .xs\:rounded-tl-full {
    border-top-left-radius: 9999px;
  }

  .xs\:rounded-tr-full {
    border-top-right-radius: 9999px;
  }

  .xs\:rounded-br-full {
    border-bottom-right-radius: 9999px;
  }

  .xs\:rounded-bl-full {
    border-bottom-left-radius: 9999px;
  }

  .xs\:border-solid {
    border-style: solid;
  }

  .xs\:border-dashed {
    border-style: dashed;
  }

  .xs\:border-dotted {
    border-style: dotted;
  }

  .xs\:border-none {
    border-style: none;
  }

  .xs\:border-0 {
    border-width: 0;
  }

  .xs\:border-1 {
    border-width: 1px;
  }

  .xs\:border-2 {
    border-width: 2px;
  }

  .xs\:border-4 {
    border-width: 4px;
  }

  .xs\:border-8 {
    border-width: 8px;
  }

  .xs\:border-t-0 {
    border-top-width: 0;
  }

  .xs\:border-r-0 {
    border-right-width: 0;
  }

  .xs\:border-b-0 {
    border-bottom-width: 0;
  }

  .xs\:border-l-0 {
    border-left-width: 0;
  }

  .xs\:border-t-1 {
    border-top-width: 1px;
  }

  .xs\:border-r-1 {
    border-right-width: 1px;
  }

  .xs\:border-b-1 {
    border-bottom-width: 1px;
  }

  .xs\:border-l-1 {
    border-left-width: 1px;
  }

  .xs\:border-t-2 {
    border-top-width: 2px;
  }

  .xs\:border-r-2 {
    border-right-width: 2px;
  }

  .xs\:border-b-2 {
    border-bottom-width: 2px;
  }

  .xs\:border-l-2 {
    border-left-width: 2px;
  }

  .xs\:border-t-4 {
    border-top-width: 4px;
  }

  .xs\:border-r-4 {
    border-right-width: 4px;
  }

  .xs\:border-b-4 {
    border-bottom-width: 4px;
  }

  .xs\:border-l-4 {
    border-left-width: 4px;
  }

  .xs\:border-t-8 {
    border-top-width: 8px;
  }

  .xs\:border-r-8 {
    border-right-width: 8px;
  }

  .xs\:border-b-8 {
    border-bottom-width: 8px;
  }

  .xs\:border-l-8 {
    border-left-width: 8px;
  }

  .xs\:cursor-auto {
    cursor: auto;
  }

  .xs\:cursor-default {
    cursor: default;
  }

  .xs\:cursor-pointer {
    cursor: pointer;
  }

  .xs\:cursor-wait {
    cursor: wait;
  }

  .xs\:cursor-move {
    cursor: move;
  }

  .xs\:cursor-not-allowed {
    cursor: not-allowed;
  }

  .xs\:block {
    display: block;
  }

  .xs\:inline-block {
    display: inline-block;
  }

  .xs\:inline {
    display: inline;
  }

  .xs\:table {
    display: table;
  }

  .xs\:table-row {
    display: table-row;
  }

  .xs\:table-cell {
    display: table-cell;
  }

  .xs\:hidden {
    display: none;
  }

  .xs\:flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .xs\:inline-flex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .xs\:flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .xs\:flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .xs\:flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .xs\:flex-col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .xs\:flex-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .xs\:flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }

  .xs\:flex-no-wrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .xs\:items-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .xs\:items-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

  .xs\:items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .xs\:items-baseline {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }

  .xs\:items-stretch {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .xs\:self-auto {
    -ms-flex-item-align: auto;
        align-self: auto;
  }

  .xs\:self-start {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }

  .xs\:self-end {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }

  .xs\:self-center {
    -ms-flex-item-align: center;
        align-self: center;
  }

  .xs\:self-stretch {
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }

  .xs\:justify-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .xs\:justify-end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .xs\:justify-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .xs\:justify-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .xs\:justify-around {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }

  .xs\:content-center {
    -ms-flex-line-pack: center;
        align-content: center;
  }

  .xs\:content-start {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }

  .xs\:content-end {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }

  .xs\:content-between {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }

  .xs\:content-around {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }

  .xs\:flex-1 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }

  .xs\:flex-auto {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }

  .xs\:flex-initial {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }

  .xs\:flex-none {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }

  .xs\:flex-grow {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }

  .xs\:flex-shrink {
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }

  .xs\:flex-no-grow {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }

  .xs\:flex-no-shrink {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }

  .xs\:float-right {
    float: right;
  }

  .xs\:float-left {
    float: left;
  }

  .xs\:float-none {
    float: none;
  }

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

  .xs\:font-sans {
    font-family: "3form Graphik", Helvetica, sans-serif;
  }

  .xs\:font-light {
    font-weight: 300;
  }

  .xs\:font-normal {
    font-weight: 400;
  }

  .xs\:font-medium {
    font-weight: 500;
  }

  .xs\:hover\:font-light:hover {
    font-weight: 300;
  }

  .xs\:hover\:font-normal:hover {
    font-weight: 400;
  }

  .xs\:hover\:font-medium:hover {
    font-weight: 500;
  }

  .xs\:h-1 {
    height: .25rem;
  }

  .xs\:h-2 {
    height: .5rem;
  }

  .xs\:h-3 {
    height: .75rem;
  }

  .xs\:h-4 {
    height: 1rem;
  }

  .xs\:h-5 {
    height: 1.25rem;
  }

  .xs\:h-6 {
    height: 1.5rem;
  }

  .xs\:h-8 {
    height: 2rem;
  }

  .xs\:h-9 {
    height: 2.25rem;
  }

  .xs\:h-12 {
    height: 3rem;
  }

  .xs\:h-16 {
    height: 4rem;
  }

  .xs\:h-24 {
    height: 6rem;
  }

  .xs\:h-32 {
    height: 8rem;
  }

  .xs\:h-48 {
    height: 12rem;
  }

  .xs\:h-64 {
    height: 16rem;
  }

  .xs\:h-auto {
    height: auto;
  }

  .xs\:h-px {
    height: 1px;
  }

  .xs\:h-full {
    height: 100%;
  }

  .xs\:h-screen {
    height: 100vh;
  }

  .xs\:h-90v {
    height: 90vh;
  }

  .xs\:leading-none {
    line-height: 1;
  }

  .xs\:leading-tightish {
    line-height: 1.1;
  }

  .xs\:leading-tight {
    line-height: 1.25;
  }

  .xs\:leading-normal {
    line-height: 1.5;
  }

  .xs\:leading-normloose {
    line-height: 1.75;
  }

  .xs\:leading-loose {
    line-height: 2;
  }

  .xs\:leading-md {
    line-height: 24px;
  }

  .xs\:leading-heading {
    line-height: calc(100% + 8px);
  }

  .xs\:m-0 {
    margin: 0;
  }

  .xs\:m-1 {
    margin: .25rem;
  }

  .xs\:m-2 {
    margin: .5rem;
  }

  .xs\:m-3 {
    margin: .75rem;
  }

  .xs\:m-4 {
    margin: 1rem;
  }

  .xs\:m-5 {
    margin: 1.25rem;
  }

  .xs\:m-6 {
    margin: 1.5rem;
  }

  .xs\:m-8 {
    margin: 2rem;
  }

  .xs\:m-10 {
    margin: 2.5rem;
  }

  .xs\:m-12 {
    margin: 3rem;
  }

  .xs\:m-16 {
    margin: 4rem;
  }

  .xs\:m-20 {
    margin: 5rem;
  }

  .xs\:m-24 {
    margin: 6rem;
  }

  .xs\:m-32 {
    margin: 8rem;
  }

  .xs\:m-48 {
    margin: 12rem;
  }

  .xs\:m-64 {
    margin: 16rem;
  }

  .xs\:m-auto {
    margin: auto;
  }

  .xs\:m-px {
    margin: 1px;
  }

  .xs\:m--20 {
    margin: -5rem;
  }

  .xs\:m-30\% {
    margin: 30%;
  }

  .xs\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .xs\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .xs\:my-1 {
    margin-top: .25rem;
    margin-bottom: .25rem;
  }

  .xs\:mx-1 {
    margin-left: .25rem;
    margin-right: .25rem;
  }

  .xs\:my-2 {
    margin-top: .5rem;
    margin-bottom: .5rem;
  }

  .xs\:mx-2 {
    margin-left: .5rem;
    margin-right: .5rem;
  }

  .xs\:my-3 {
    margin-top: .75rem;
    margin-bottom: .75rem;
  }

  .xs\:mx-3 {
    margin-left: .75rem;
    margin-right: .75rem;
  }

  .xs\:my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .xs\:mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .xs\:my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .xs\:mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .xs\:my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .xs\:mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .xs\:my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .xs\:mx-8 {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .xs\:my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .xs\:mx-10 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .xs\:my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .xs\:mx-12 {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .xs\:my-16 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .xs\:mx-16 {
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .xs\:my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .xs\:mx-20 {
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .xs\:my-24 {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .xs\:mx-24 {
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .xs\:my-32 {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .xs\:mx-32 {
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .xs\:my-48 {
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .xs\:mx-48 {
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .xs\:my-64 {
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .xs\:mx-64 {
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .xs\:my-auto {
    margin-top: auto;
    margin-bottom: auto;
  }

  .xs\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .xs\:my-px {
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .xs\:mx-px {
    margin-left: 1px;
    margin-right: 1px;
  }

  .xs\:my--20 {
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .xs\:mx--20 {
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .xs\:my-30\% {
    margin-top: 30%;
    margin-bottom: 30%;
  }

  .xs\:mx-30\% {
    margin-left: 30%;
    margin-right: 30%;
  }

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

  .xs\:mr-0 {
    margin-right: 0;
  }

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

  .xs\:ml-0 {
    margin-left: 0;
  }

  .xs\:mt-1 {
    margin-top: .25rem;
  }

  .xs\:mr-1 {
    margin-right: .25rem;
  }

  .xs\:mb-1 {
    margin-bottom: .25rem;
  }

  .xs\:ml-1 {
    margin-left: .25rem;
  }

  .xs\:mt-2 {
    margin-top: .5rem;
  }

  .xs\:mr-2 {
    margin-right: .5rem;
  }

  .xs\:mb-2 {
    margin-bottom: .5rem;
  }

  .xs\:ml-2 {
    margin-left: .5rem;
  }

  .xs\:mt-3 {
    margin-top: .75rem;
  }

  .xs\:mr-3 {
    margin-right: .75rem;
  }

  .xs\:mb-3 {
    margin-bottom: .75rem;
  }

  .xs\:ml-3 {
    margin-left: .75rem;
  }

  .xs\:mt-4 {
    margin-top: 1rem;
  }

  .xs\:mr-4 {
    margin-right: 1rem;
  }

  .xs\:mb-4 {
    margin-bottom: 1rem;
  }

  .xs\:ml-4 {
    margin-left: 1rem;
  }

  .xs\:mt-5 {
    margin-top: 1.25rem;
  }

  .xs\:mr-5 {
    margin-right: 1.25rem;
  }

  .xs\:mb-5 {
    margin-bottom: 1.25rem;
  }

  .xs\:ml-5 {
    margin-left: 1.25rem;
  }

  .xs\:mt-6 {
    margin-top: 1.5rem;
  }

  .xs\:mr-6 {
    margin-right: 1.5rem;
  }

  .xs\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .xs\:ml-6 {
    margin-left: 1.5rem;
  }

  .xs\:mt-8 {
    margin-top: 2rem;
  }

  .xs\:mr-8 {
    margin-right: 2rem;
  }

  .xs\:mb-8 {
    margin-bottom: 2rem;
  }

  .xs\:ml-8 {
    margin-left: 2rem;
  }

  .xs\:mt-10 {
    margin-top: 2.5rem;
  }

  .xs\:mr-10 {
    margin-right: 2.5rem;
  }

  .xs\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .xs\:ml-10 {
    margin-left: 2.5rem;
  }

  .xs\:mt-12 {
    margin-top: 3rem;
  }

  .xs\:mr-12 {
    margin-right: 3rem;
  }

  .xs\:mb-12 {
    margin-bottom: 3rem;
  }

  .xs\:ml-12 {
    margin-left: 3rem;
  }

  .xs\:mt-16 {
    margin-top: 4rem;
  }

  .xs\:mr-16 {
    margin-right: 4rem;
  }

  .xs\:mb-16 {
    margin-bottom: 4rem;
  }

  .xs\:ml-16 {
    margin-left: 4rem;
  }

  .xs\:mt-20 {
    margin-top: 5rem;
  }

  .xs\:mr-20 {
    margin-right: 5rem;
  }

  .xs\:mb-20 {
    margin-bottom: 5rem;
  }

  .xs\:ml-20 {
    margin-left: 5rem;
  }

  .xs\:mt-24 {
    margin-top: 6rem;
  }

  .xs\:mr-24 {
    margin-right: 6rem;
  }

  .xs\:mb-24 {
    margin-bottom: 6rem;
  }

  .xs\:ml-24 {
    margin-left: 6rem;
  }

  .xs\:mt-32 {
    margin-top: 8rem;
  }

  .xs\:mr-32 {
    margin-right: 8rem;
  }

  .xs\:mb-32 {
    margin-bottom: 8rem;
  }

  .xs\:ml-32 {
    margin-left: 8rem;
  }

  .xs\:mt-48 {
    margin-top: 12rem;
  }

  .xs\:mr-48 {
    margin-right: 12rem;
  }

  .xs\:mb-48 {
    margin-bottom: 12rem;
  }

  .xs\:ml-48 {
    margin-left: 12rem;
  }

  .xs\:mt-64 {
    margin-top: 16rem;
  }

  .xs\:mr-64 {
    margin-right: 16rem;
  }

  .xs\:mb-64 {
    margin-bottom: 16rem;
  }

  .xs\:ml-64 {
    margin-left: 16rem;
  }

  .xs\:mt-auto {
    margin-top: auto;
  }

  .xs\:mr-auto {
    margin-right: auto;
  }

  .xs\:mb-auto {
    margin-bottom: auto;
  }

  .xs\:ml-auto {
    margin-left: auto;
  }

  .xs\:mt-px {
    margin-top: 1px;
  }

  .xs\:mr-px {
    margin-right: 1px;
  }

  .xs\:mb-px {
    margin-bottom: 1px;
  }

  .xs\:ml-px {
    margin-left: 1px;
  }

  .xs\:mt--20 {
    margin-top: -5rem;
  }

  .xs\:mr--20 {
    margin-right: -5rem;
  }

  .xs\:mb--20 {
    margin-bottom: -5rem;
  }

  .xs\:ml--20 {
    margin-left: -5rem;
  }

  .xs\:mt-30\% {
    margin-top: 30%;
  }

  .xs\:mr-30\% {
    margin-right: 30%;
  }

  .xs\:mb-30\% {
    margin-bottom: 30%;
  }

  .xs\:ml-30\% {
    margin-left: 30%;
  }

  .xs\:max-h-full {
    max-height: 100%;
  }

  .xs\:max-h-md {
    max-height: 40rem;
  }

  .xs\:max-h-lg {
    max-height: 50rem;
  }

  .xs\:max-h-screen {
    max-height: 100vh;
  }

  .xs\:max-w-50 {
    max-width: 50%;
  }

  .xs\:max-w-xxs {
    max-width: 16rem;
  }

  .xs\:max-w-xs {
    max-width: 20rem;
  }

  .xs\:max-w-sm {
    max-width: 30rem;
  }

  .xs\:max-w-md {
    max-width: 40rem;
  }

  .xs\:max-w-lg {
    max-width: 50rem;
  }

  .xs\:max-w-xl {
    max-width: 60rem;
  }

  .xs\:max-w-2xl {
    max-width: 70rem;
  }

  .xs\:max-w-3xl {
    max-width: 80rem;
  }

  .xs\:max-w-4xl {
    max-width: 90rem;
  }

  .xs\:max-w-5xl {
    max-width: 100rem;
  }

  .xs\:max-w-full {
    max-width: 100%;
  }

  .xs\:min-h-0 {
    min-height: 0;
  }

  .xs\:min-h-full {
    min-height: 100%;
  }

  .xs\:min-h-screen {
    min-height: 100vh;
  }

  .xs\:min-w-0 {
    min-width: 0;
  }

  .xs\:min-w-full {
    min-width: 100%;
  }

  .xs\:-m-0 {
    margin: 0;
  }

  .xs\:-m-1 {
    margin: -0.25rem;
  }

  .xs\:-m-2 {
    margin: -0.5rem;
  }

  .xs\:-m-3 {
    margin: -0.75rem;
  }

  .xs\:-m-4 {
    margin: -1rem;
  }

  .xs\:-m-5 {
    margin: -1.25rem;
  }

  .xs\:-m-6 {
    margin: -1.5rem;
  }

  .xs\:-m-8 {
    margin: -2rem;
  }

  .xs\:-m-12 {
    margin: -3rem;
  }

  .xs\:-m-16 {
    margin: -4rem;
  }

  .xs\:-m-20 {
    margin: -5rem;
  }

  .xs\:-m-24 {
    margin: -6rem;
  }

  .xs\:-m-32 {
    margin: -8rem;
  }

  .xs\:-m-48 {
    margin: -12rem;
  }

  .xs\:-m-64 {
    margin: -16rem;
  }

  .xs\:-m-px {
    margin: -1px;
  }

  .xs\:-m-30\% {
    margin: -30%;
  }

  .xs\:-my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .xs\:-mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .xs\:-my-1 {
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .xs\:-mx-1 {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .xs\:-my-2 {
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .xs\:-mx-2 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .xs\:-my-3 {
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .xs\:-mx-3 {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .xs\:-my-4 {
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .xs\:-mx-4 {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .xs\:-my-5 {
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .xs\:-mx-5 {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .xs\:-my-6 {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .xs\:-mx-6 {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .xs\:-my-8 {
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .xs\:-mx-8 {
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .xs\:-my-12 {
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .xs\:-mx-12 {
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .xs\:-my-16 {
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .xs\:-mx-16 {
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .xs\:-my-20 {
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .xs\:-mx-20 {
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .xs\:-my-24 {
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .xs\:-mx-24 {
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .xs\:-my-32 {
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .xs\:-mx-32 {
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .xs\:-my-48 {
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .xs\:-mx-48 {
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .xs\:-my-64 {
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .xs\:-mx-64 {
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .xs\:-my-px {
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .xs\:-mx-px {
    margin-left: -1px;
    margin-right: -1px;
  }

  .xs\:-my-30\% {
    margin-top: -30%;
    margin-bottom: -30%;
  }

  .xs\:-mx-30\% {
    margin-left: -30%;
    margin-right: -30%;
  }

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

  .xs\:-mr-0 {
    margin-right: 0;
  }

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

  .xs\:-ml-0 {
    margin-left: 0;
  }

  .xs\:-mt-1 {
    margin-top: -0.25rem;
  }

  .xs\:-mr-1 {
    margin-right: -0.25rem;
  }

  .xs\:-mb-1 {
    margin-bottom: -0.25rem;
  }

  .xs\:-ml-1 {
    margin-left: -0.25rem;
  }

  .xs\:-mt-2 {
    margin-top: -0.5rem;
  }

  .xs\:-mr-2 {
    margin-right: -0.5rem;
  }

  .xs\:-mb-2 {
    margin-bottom: -0.5rem;
  }

  .xs\:-ml-2 {
    margin-left: -0.5rem;
  }

  .xs\:-mt-3 {
    margin-top: -0.75rem;
  }

  .xs\:-mr-3 {
    margin-right: -0.75rem;
  }

  .xs\:-mb-3 {
    margin-bottom: -0.75rem;
  }

  .xs\:-ml-3 {
    margin-left: -0.75rem;
  }

  .xs\:-mt-4 {
    margin-top: -1rem;
  }

  .xs\:-mr-4 {
    margin-right: -1rem;
  }

  .xs\:-mb-4 {
    margin-bottom: -1rem;
  }

  .xs\:-ml-4 {
    margin-left: -1rem;
  }

  .xs\:-mt-5 {
    margin-top: -1.25rem;
  }

  .xs\:-mr-5 {
    margin-right: -1.25rem;
  }

  .xs\:-mb-5 {
    margin-bottom: -1.25rem;
  }

  .xs\:-ml-5 {
    margin-left: -1.25rem;
  }

  .xs\:-mt-6 {
    margin-top: -1.5rem;
  }

  .xs\:-mr-6 {
    margin-right: -1.5rem;
  }

  .xs\:-mb-6 {
    margin-bottom: -1.5rem;
  }

  .xs\:-ml-6 {
    margin-left: -1.5rem;
  }

  .xs\:-mt-8 {
    margin-top: -2rem;
  }

  .xs\:-mr-8 {
    margin-right: -2rem;
  }

  .xs\:-mb-8 {
    margin-bottom: -2rem;
  }

  .xs\:-ml-8 {
    margin-left: -2rem;
  }

  .xs\:-mt-12 {
    margin-top: -3rem;
  }

  .xs\:-mr-12 {
    margin-right: -3rem;
  }

  .xs\:-mb-12 {
    margin-bottom: -3rem;
  }

  .xs\:-ml-12 {
    margin-left: -3rem;
  }

  .xs\:-mt-16 {
    margin-top: -4rem;
  }

  .xs\:-mr-16 {
    margin-right: -4rem;
  }

  .xs\:-mb-16 {
    margin-bottom: -4rem;
  }

  .xs\:-ml-16 {
    margin-left: -4rem;
  }

  .xs\:-mt-20 {
    margin-top: -5rem;
  }

  .xs\:-mr-20 {
    margin-right: -5rem;
  }

  .xs\:-mb-20 {
    margin-bottom: -5rem;
  }

  .xs\:-ml-20 {
    margin-left: -5rem;
  }

  .xs\:-mt-24 {
    margin-top: -6rem;
  }

  .xs\:-mr-24 {
    margin-right: -6rem;
  }

  .xs\:-mb-24 {
    margin-bottom: -6rem;
  }

  .xs\:-ml-24 {
    margin-left: -6rem;
  }

  .xs\:-mt-32 {
    margin-top: -8rem;
  }

  .xs\:-mr-32 {
    margin-right: -8rem;
  }

  .xs\:-mb-32 {
    margin-bottom: -8rem;
  }

  .xs\:-ml-32 {
    margin-left: -8rem;
  }

  .xs\:-mt-48 {
    margin-top: -12rem;
  }

  .xs\:-mr-48 {
    margin-right: -12rem;
  }

  .xs\:-mb-48 {
    margin-bottom: -12rem;
  }

  .xs\:-ml-48 {
    margin-left: -12rem;
  }

  .xs\:-mt-64 {
    margin-top: -16rem;
  }

  .xs\:-mr-64 {
    margin-right: -16rem;
  }

  .xs\:-mb-64 {
    margin-bottom: -16rem;
  }

  .xs\:-ml-64 {
    margin-left: -16rem;
  }

  .xs\:-mt-px {
    margin-top: -1px;
  }

  .xs\:-mr-px {
    margin-right: -1px;
  }

  .xs\:-mb-px {
    margin-bottom: -1px;
  }

  .xs\:-ml-px {
    margin-left: -1px;
  }

  .xs\:-mt-30\% {
    margin-top: -30%;
  }

  .xs\:-mr-30\% {
    margin-right: -30%;
  }

  .xs\:-mb-30\% {
    margin-bottom: -30%;
  }

  .xs\:-ml-30\% {
    margin-left: -30%;
  }

  .xs\:opacity-0 {
    opacity: 0;
  }

  .xs\:opacity-20 {
    opacity: .2;
  }

  .xs\:opacity-40 {
    opacity: .4;
  }

  .xs\:opacity-60 {
    opacity: .6;
  }

  .xs\:opacity-80 {
    opacity: .8;
  }

  .xs\:opacity-100 {
    opacity: 1;
  }

  .xs\:overflow-auto {
    overflow: auto;
  }

  .xs\:overflow-hidden {
    overflow: hidden;
  }

  .xs\:overflow-visible {
    overflow: visible;
  }

  .xs\:overflow-scroll {
    overflow: scroll;
  }

  .xs\:overflow-x-auto {
    overflow-x: auto;
  }

  .xs\:overflow-y-auto {
    overflow-y: auto;
  }

  .xs\:overflow-x-hidden {
    overflow-x: hidden;
  }

  .xs\:overflow-y-hidden {
    overflow-y: hidden;
  }

  .xs\:overflow-x-visible {
    overflow-x: visible;
  }

  .xs\:overflow-y-visible {
    overflow-y: visible;
  }

  .xs\:overflow-x-scroll {
    overflow-x: scroll;
  }

  .xs\:overflow-y-scroll {
    overflow-y: scroll;
  }

  .xs\:scrolling-touch {
    -webkit-overflow-scrolling: touch;
  }

  .xs\:scrolling-auto {
    -webkit-overflow-scrolling: auto;
  }

  .xs\:p-0 {
    padding: 0;
  }

  .xs\:p-1 {
    padding: .25rem;
  }

  .xs\:p-2 {
    padding: .5rem;
  }

  .xs\:p-3 {
    padding: .75rem;
  }

  .xs\:p-4 {
    padding: 1rem;
  }

  .xs\:p-5 {
    padding: 1.25rem;
  }

  .xs\:p-6 {
    padding: 1.5rem;
  }

  .xs\:p-8 {
    padding: 2rem;
  }

  .xs\:p-10 {
    padding: 2.5rem;
  }

  .xs\:p-12 {
    padding: 3rem;
  }

  .xs\:p-16 {
    padding: 4rem;
  }

  .xs\:p-20 {
    padding: 5rem;
  }

  .xs\:p-24 {
    padding: 6rem;
  }

  .xs\:p-32 {
    padding: 8rem;
  }

  .xs\:p-48 {
    padding: 12rem;
  }

  .xs\:p-64 {
    padding: 16rem;
  }

  .xs\:p-px {
    padding: 1px;
  }

  .xs\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .xs\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .xs\:py-1 {
    padding-top: .25rem;
    padding-bottom: .25rem;
  }

  .xs\:px-1 {
    padding-left: .25rem;
    padding-right: .25rem;
  }

  .xs\:py-2 {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .xs\:px-2 {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .xs\:py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .xs\:px-3 {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .xs\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .xs\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .xs\:py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .xs\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .xs\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .xs\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .xs\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .xs\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .xs\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .xs\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .xs\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .xs\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .xs\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .xs\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .xs\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .xs\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .xs\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .xs\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .xs\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .xs\:px-32 {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .xs\:py-48 {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .xs\:px-48 {
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .xs\:py-64 {
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .xs\:px-64 {
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .xs\:py-px {
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .xs\:px-px {
    padding-left: 1px;
    padding-right: 1px;
  }

  .xs\:pt-0 {
    padding-top: 0;
  }

  .xs\:pr-0 {
    padding-right: 0;
  }

  .xs\:pb-0 {
    padding-bottom: 0;
  }

  .xs\:pl-0 {
    padding-left: 0;
  }

  .xs\:pt-1 {
    padding-top: .25rem;
  }

  .xs\:pr-1 {
    padding-right: .25rem;
  }

  .xs\:pb-1 {
    padding-bottom: .25rem;
  }

  .xs\:pl-1 {
    padding-left: .25rem;
  }

  .xs\:pt-2 {
    padding-top: .5rem;
  }

  .xs\:pr-2 {
    padding-right: .5rem;
  }

  .xs\:pb-2 {
    padding-bottom: .5rem;
  }

  .xs\:pl-2 {
    padding-left: .5rem;
  }

  .xs\:pt-3 {
    padding-top: .75rem;
  }

  .xs\:pr-3 {
    padding-right: .75rem;
  }

  .xs\:pb-3 {
    padding-bottom: .75rem;
  }

  .xs\:pl-3 {
    padding-left: .75rem;
  }

  .xs\:pt-4 {
    padding-top: 1rem;
  }

  .xs\:pr-4 {
    padding-right: 1rem;
  }

  .xs\:pb-4 {
    padding-bottom: 1rem;
  }

  .xs\:pl-4 {
    padding-left: 1rem;
  }

  .xs\:pt-5 {
    padding-top: 1.25rem;
  }

  .xs\:pr-5 {
    padding-right: 1.25rem;
  }

  .xs\:pb-5 {
    padding-bottom: 1.25rem;
  }

  .xs\:pl-5 {
    padding-left: 1.25rem;
  }

  .xs\:pt-6 {
    padding-top: 1.5rem;
  }

  .xs\:pr-6 {
    padding-right: 1.5rem;
  }

  .xs\:pb-6 {
    padding-bottom: 1.5rem;
  }

  .xs\:pl-6 {
    padding-left: 1.5rem;
  }

  .xs\:pt-8 {
    padding-top: 2rem;
  }

  .xs\:pr-8 {
    padding-right: 2rem;
  }

  .xs\:pb-8 {
    padding-bottom: 2rem;
  }

  .xs\:pl-8 {
    padding-left: 2rem;
  }

  .xs\:pt-10 {
    padding-top: 2.5rem;
  }

  .xs\:pr-10 {
    padding-right: 2.5rem;
  }

  .xs\:pb-10 {
    padding-bottom: 2.5rem;
  }

  .xs\:pl-10 {
    padding-left: 2.5rem;
  }

  .xs\:pt-12 {
    padding-top: 3rem;
  }

  .xs\:pr-12 {
    padding-right: 3rem;
  }

  .xs\:pb-12 {
    padding-bottom: 3rem;
  }

  .xs\:pl-12 {
    padding-left: 3rem;
  }

  .xs\:pt-16 {
    padding-top: 4rem;
  }

  .xs\:pr-16 {
    padding-right: 4rem;
  }

  .xs\:pb-16 {
    padding-bottom: 4rem;
  }

  .xs\:pl-16 {
    padding-left: 4rem;
  }

  .xs\:pt-20 {
    padding-top: 5rem;
  }

  .xs\:pr-20 {
    padding-right: 5rem;
  }

  .xs\:pb-20 {
    padding-bottom: 5rem;
  }

  .xs\:pl-20 {
    padding-left: 5rem;
  }

  .xs\:pt-24 {
    padding-top: 6rem;
  }

  .xs\:pr-24 {
    padding-right: 6rem;
  }

  .xs\:pb-24 {
    padding-bottom: 6rem;
  }

  .xs\:pl-24 {
    padding-left: 6rem;
  }

  .xs\:pt-32 {
    padding-top: 8rem;
  }

  .xs\:pr-32 {
    padding-right: 8rem;
  }

  .xs\:pb-32 {
    padding-bottom: 8rem;
  }

  .xs\:pl-32 {
    padding-left: 8rem;
  }

  .xs\:pt-48 {
    padding-top: 12rem;
  }

  .xs\:pr-48 {
    padding-right: 12rem;
  }

  .xs\:pb-48 {
    padding-bottom: 12rem;
  }

  .xs\:pl-48 {
    padding-left: 12rem;
  }

  .xs\:pt-64 {
    padding-top: 16rem;
  }

  .xs\:pr-64 {
    padding-right: 16rem;
  }

  .xs\:pb-64 {
    padding-bottom: 16rem;
  }

  .xs\:pl-64 {
    padding-left: 16rem;
  }

  .xs\:pt-px {
    padding-top: 1px;
  }

  .xs\:pr-px {
    padding-right: 1px;
  }

  .xs\:pb-px {
    padding-bottom: 1px;
  }

  .xs\:pl-px {
    padding-left: 1px;
  }

  .xs\:pointer-events-none {
    pointer-events: none;
  }

  .xs\:pointer-events-auto {
    pointer-events: auto;
  }

  .xs\:static {
    position: static;
  }

  .xs\:fixed {
    position: fixed;
  }

  .xs\:absolute {
    position: absolute;
  }

  .xs\:relative {
    position: relative;
  }

  .xs\:sticky {
    position: sticky;
  }

  .xs\:pin-none {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .xs\:pin {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .xs\:pin-y {
    top: 0;
    bottom: 0;
  }

  .xs\:pin-x {
    right: 0;
    left: 0;
  }

  .xs\:pin-t {
    top: 0;
  }

  .xs\:pin-r {
    right: 0;
  }

  .xs\:pin-b {
    bottom: 0;
  }

  .xs\:pin-l {
    left: 0;
  }

  .xs\:resize-none {
    resize: none;
  }

  .xs\:resize-y {
    resize: vertical;
  }

  .xs\:resize-x {
    resize: horizontal;
  }

  .xs\:resize {
    resize: both;
  }

  .xs\:shadow-swatch-sm {
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .1);
            box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .1);
  }

  .xs\:shadow-swatch-lg {
    -webkit-box-shadow: 0 8px 8px 0 rgba(34, 34, 34, .1);
            box-shadow: 0 8px 8px 0 rgba(34, 34, 34, .1);
  }

  .xs\:shadow-swatch-xl {
    -webkit-box-shadow: 0 16px 16px 0 rgba(34, 34, 34, .1);
            box-shadow: 0 16px 16px 0 rgba(34, 34, 34, .1);
  }

  .xs\:shadow-dark {
    -webkit-box-shadow: 8px 8px 0px 0px #222;
            box-shadow: 8px 8px 0px 0px #222;
  }

  .xs\:shadow-button-white-off {
    -webkit-box-shadow: 0 2px 0 0 #eee;
            box-shadow: 0 2px 0 0 #eee;
  }

  .xs\:shadow-button-white-hover {
    -webkit-box-shadow: 8px 8px 0 0 #eee;
            box-shadow: 8px 8px 0 0 #eee;
  }

  .xs\:shadow-button-white-hover-vertical {
    -webkit-box-shadow: 0px 8px 0 0 #eee;
            box-shadow: 0px 8px 0 0 #eee;
  }

  .xs\:shadow-button-black-hover {
    -webkit-box-shadow: 8px 8px 0 0 #000;
            box-shadow: 8px 8px 0 0 #000;
  }

  .xs\:shadow-tooltip-white-off {
    -webkit-box-shadow: 0 2px 0 0 #e9e9e9;
            box-shadow: 0 2px 0 0 #e9e9e9;
  }

  .xs\:shadow-tooltip-white-hover {
    -webkit-box-shadow: 4px 4px 0 0 #e9e9e9;
            box-shadow: 4px 4px 0 0 #e9e9e9;
  }

  .xs\:shadow-pagination-greg-light-hover {
    -webkit-box-shadow: 2px 2px 0 0 #b2b2b2;
            box-shadow: 2px 2px 0 0 #b2b2b2;
  }

  .xs\:shadow-dropdown-off {
    -webkit-box-shadow: 0 2px 0 0 #ddd;
            box-shadow: 0 2px 0 0 #ddd;
  }

  .xs\:shadow-dropdown-hover {
    -webkit-box-shadow: 0 8px 0 0 #ddd;
            box-shadow: 0 8px 0 0 #ddd;
  }

  .xs\:shadow-dropdown-dark-off {
    -webkit-box-shadow: 0 2px 0 0 #111;
            box-shadow: 0 2px 0 0 #111;
  }

  .xs\:shadow-tooltip-grey-light-active {
    -webkit-box-shadow: 0 2px 0 0 #ccc;
            box-shadow: 0 2px 0 0 #ccc;
  }

  .xs\:shadow-inset-top-black {
    -webkit-box-shadow: inset 0px 2px 0px 0px #222;
            box-shadow: inset 0px 2px 0px 0px #222;
  }

  .xs\:shadow-inset-top-white {
    -webkit-box-shadow: inset 0px 2px 0px 0px #fff;
            box-shadow: inset 0px 2px 0px 0px #fff;
  }

  .xs\:shadow-none {
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .xs\:table-auto {
    table-layout: auto;
  }

  .xs\:table-fixed {
    table-layout: fixed;
  }

  .xs\:text-left {
    text-align: left;
  }

  .xs\:text-center {
    text-align: center;
  }

  .xs\:text-right {
    text-align: right;
  }

  .xs\:text-justify {
    text-align: justify;
  }

  .xs\:text-transparent {
    color: transparent;
  }

  .xs\:text-brand {
    color: #ff993d;
  }

  .xs\:text-dealer-brand {
    color: #305371;
  }

  .xs\:text-oem-brand {
    color: #91989e;
  }

  .xs\:text-black {
    color: #222;
  }

  .xs\:text-white {
    color: #fff;
  }

  .xs\:text-grey-darkest {
    color: #333;
  }

  .xs\:text-grey-darker {
    color: #626262;
  }

  .xs\:text-grey-md-dark {
    color: #999;
  }

  .xs\:text-grey-dark {
    color: #b2b2b2;
  }

  .xs\:text-grey {
    color: #ccc;
  }

  .xs\:text-grey-light {
    color: #ddd;
  }

  .xs\:text-grey-lighter {
    color: #eee;
  }

  .xs\:text-grey-lightest {
    color: #f8f8f8;
  }

  .xs\:text-grey-accent {
    color: #efefef;
  }

  .xs\:text-success {
    color: #449343;
  }

  .xs\:hover\:text-transparent:hover {
    color: transparent;
  }

  .xs\:hover\:text-brand:hover {
    color: #ff993d;
  }

  .xs\:hover\:text-dealer-brand:hover {
    color: #305371;
  }

  .xs\:hover\:text-oem-brand:hover {
    color: #91989e;
  }

  .xs\:hover\:text-black:hover {
    color: #222;
  }

  .xs\:hover\:text-white:hover {
    color: #fff;
  }

  .xs\:hover\:text-grey-darkest:hover {
    color: #333;
  }

  .xs\:hover\:text-grey-darker:hover {
    color: #626262;
  }

  .xs\:hover\:text-grey-md-dark:hover {
    color: #999;
  }

  .xs\:hover\:text-grey-dark:hover {
    color: #b2b2b2;
  }

  .xs\:hover\:text-grey:hover {
    color: #ccc;
  }

  .xs\:hover\:text-grey-light:hover {
    color: #ddd;
  }

  .xs\:hover\:text-grey-lighter:hover {
    color: #eee;
  }

  .xs\:hover\:text-grey-lightest:hover {
    color: #f8f8f8;
  }

  .xs\:hover\:text-grey-accent:hover {
    color: #efefef;
  }

  .xs\:hover\:text-success:hover {
    color: #449343;
  }

  .xs\:text-xxs {
    font-size: .625rem;
  }

  .xs\:text-xs {
    font-size: .75rem;
  }

  .xs\:text-sm {
    font-size: .875rem;
  }

  .xs\:text-base {
    font-size: 1rem;
  }

  .xs\:text-smd {
    font-size: 1.25rem;
  }

  .xs\:text-md {
    font-size: 1.5rem;
  }

  .xs\:text-lmd {
    font-size: 1.75rem;
  }

  .xs\:text-lg {
    font-size: 2rem;
  }

  .xs\:text-xl {
    font-size: 2.5rem;
  }

  .xs\:text-2xl {
    font-size: 3rem;
  }

  .xs\:text-3xl {
    font-size: 3.5rem;
  }

  .xs\:text-4xl {
    font-size: 5rem;
  }

  .xs\:text-5xl {
    font-size: 6rem;
  }

  .xs\:italic {
    font-style: italic;
  }

  .xs\:roman {
    font-style: normal;
  }

  .xs\:uppercase {
    text-transform: uppercase;
  }

  .xs\:lowercase {
    text-transform: lowercase;
  }

  .xs\:capitalize {
    text-transform: capitalize;
  }

  .xs\:normal-case {
    text-transform: none;
  }

  .xs\:underline {
    text-decoration: underline;
  }

  .xs\:line-through {
    text-decoration: line-through;
  }

  .xs\:no-underline {
    text-decoration: none;
  }

  .xs\:antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .xs\:subpixel-antialiased {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .xs\:hover\:italic:hover {
    font-style: italic;
  }

  .xs\:hover\:roman:hover {
    font-style: normal;
  }

  .xs\:hover\:uppercase:hover {
    text-transform: uppercase;
  }

  .xs\:hover\:lowercase:hover {
    text-transform: lowercase;
  }

  .xs\:hover\:capitalize:hover {
    text-transform: capitalize;
  }

  .xs\:hover\:normal-case:hover {
    text-transform: none;
  }

  .xs\:hover\:underline:hover {
    text-decoration: underline;
  }

  .xs\:hover\:line-through:hover {
    text-decoration: line-through;
  }

  .xs\:hover\:no-underline:hover {
    text-decoration: none;
  }

  .xs\:hover\:antialiased:hover {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .xs\:hover\:subpixel-antialiased:hover {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .xs\:tracking-tight {
    letter-spacing: -0.05em;
  }

  .xs\:tracking-tightish {
    letter-spacing: -0.032em;
  }

  .xs\:tracking-normal {
    letter-spacing: 0;
  }

  .xs\:tracking-wide {
    letter-spacing: .05em;
  }

  .xs\:select-none {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .xs\:select-text {
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .xs\:align-baseline {
    vertical-align: baseline;
  }

  .xs\:align-top {
    vertical-align: top;
  }

  .xs\:align-middle {
    vertical-align: middle;
  }

  .xs\:align-bottom {
    vertical-align: bottom;
  }

  .xs\:align-text-top {
    vertical-align: text-top;
  }

  .xs\:align-text-bottom {
    vertical-align: text-bottom;
  }

  .xs\:visible {
    visibility: visible;
  }

  .xs\:invisible {
    visibility: hidden;
  }

  .xs\:whitespace-normal {
    white-space: normal;
  }

  .xs\:whitespace-no-wrap {
    white-space: nowrap;
  }

  .xs\:whitespace-pre {
    white-space: pre;
  }

  .xs\:whitespace-pre-line {
    white-space: pre-line;
  }

  .xs\:whitespace-pre-wrap {
    white-space: pre-wrap;
  }

  .xs\:break-words {
    word-wrap: break-word;
  }

  .xs\:break-normal {
    word-wrap: normal;
  }

  .xs\:truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .xs\:w-1 {
    width: .25rem;
  }

  .xs\:w-2 {
    width: .5rem;
  }

  .xs\:w-3 {
    width: .75rem;
  }

  .xs\:w-4 {
    width: 1rem;
  }

  .xs\:w-5 {
    width: 1.25rem;
  }

  .xs\:w-6 {
    width: 1.5rem;
  }

  .xs\:w-8 {
    width: 2rem;
  }

  .xs\:w-12 {
    width: 3rem;
  }

  .xs\:w-16 {
    width: 4rem;
  }

  .xs\:w-24 {
    width: 6rem;
  }

  .xs\:w-32 {
    width: 8rem;
  }

  .xs\:w-48 {
    width: 12rem;
  }

  .xs\:w-64 {
    width: 16rem;
  }

  .xs\:w-auto {
    width: auto;
  }

  .xs\:w-px {
    width: 1px;
  }

  .xs\:w-1\/2 {
    width: 50%;
  }

  .xs\:w-1\/3 {
    width: 33.33333%;
  }

  .xs\:w-2\/3 {
    width: 66.66667%;
  }

  .xs\:w-1\/4 {
    width: 25%;
  }

  .xs\:w-3\/4 {
    width: 75%;
  }

  .xs\:w-1\/5 {
    width: 20%;
  }

  .xs\:w-2\/5 {
    width: 40%;
  }

  .xs\:w-3\/5 {
    width: 60%;
  }

  .xs\:w-4\/5 {
    width: 80%;
  }

  .xs\:w-1\/6 {
    width: 16.66667%;
  }

  .xs\:w-5\/6 {
    width: 83.33333%;
  }

  .xs\:w-full {
    width: 100%;
  }

  .xs\:w-screen {
    width: 100vw;
  }

  .xs\:w--borderfix {
    width: calc(100% - 1px);
  }

  .xs\:w-borderfix {
    width: calc(100% + 1px);
  }

  .xs\:w-fit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .xs\:z-0 {
    z-index: 0;
  }

  .xs\:z-10 {
    z-index: 10;
  }

  .xs\:z-20 {
    z-index: 20;
  }

  .xs\:z-30 {
    z-index: 30;
  }

  .xs\:z-40 {
    z-index: 40;
  }

  .xs\:z-50 {
    z-index: 50;
  }

  .xs\:z-100 {
    z-index: 100;
  }

  .xs\:z-200 {
    z-index: 200;
  }

  .xs\:z-300 {
    z-index: 300;
  }

  .xs\:z-400 {
    z-index: 400;
  }

  .xs\:z-500 {
    z-index: 500;
  }

  .xs\:z-1000 {
    z-index: 1000;
  }

  .xs\:z-2000 {
    z-index: 2000;
  }
}

@media (min-width: 600px) {
  .sm\:col-xs {
    -webkit-box-flex: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  @media (min-width: 768px) {
    .col-xs {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .sm\:col-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  @media (min-width: 768px) {
    .col-1 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .sm\:col-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  @media (min-width: 768px) {
    .col-2 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .sm\:col-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  @media (min-width: 768px) {
    .col-3 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .sm\:col-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  @media (min-width: 768px) {
    .col-4 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .sm\:col-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  @media (min-width: 768px) {
    .col-5 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .sm\:col-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  @media (min-width: 768px) {
    .col-6 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .sm\:col-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  @media (min-width: 768px) {
    .col-7 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .sm\:col-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  @media (min-width: 768px) {
    .col-8 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .sm\:col-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  @media (min-width: 768px) {
    .col-9 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .sm\:col-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  @media (min-width: 768px) {
    .col-10 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .sm\:col-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  @media (min-width: 768px) {
    .col-11 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .sm\:col-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  @media (min-width: 768px) {
    .col-12 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .sm\:col-offset-0 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 0;
  }

  @media (min-width: 768px) {
    .col-offset-0 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .sm\:col-offset-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 8.33333333%;
  }

  @media (min-width: 768px) {
    .col-offset-1 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .sm\:col-offset-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 16.66666667%;
  }

  @media (min-width: 768px) {
    .col-offset-2 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .sm\:col-offset-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 25%;
  }

  @media (min-width: 768px) {
    .col-offset-3 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .sm\:col-offset-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 33.33333333%;
  }

  @media (min-width: 768px) {
    .col-offset-4 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .sm\:col-offset-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 41.66666667%;
  }

  @media (min-width: 768px) {
    .col-offset-5 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .sm\:col-offset-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 50%;
  }

  @media (min-width: 768px) {
    .col-offset-6 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .sm\:col-offset-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 58.33333333%;
  }

  @media (min-width: 768px) {
    .col-offset-7 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .sm\:col-offset-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 66.66666667%;
  }

  @media (min-width: 768px) {
    .col-offset-8 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .sm\:col-offset-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 75%;
  }

  @media (min-width: 768px) {
    .col-offset-9 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .sm\:col-offset-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 83.33333333%;
  }

  @media (min-width: 768px) {
    .col-offset-10 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .sm\:col-offset-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 91.66666667%;
  }

  @media (min-width: 768px) {
    .col-offset-11 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .sm\:start-xs {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .sm\:center-xs {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .sm\:end-xs {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .sm\:top-xs {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .sm\:middle-xs {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .sm\:bottom-xs {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .sm\:around-xs {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .sm\:between-xs {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .sm\:first-xs {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .sm\:last-xs {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .sm\:row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
  }

  .sm\:col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }

  .sm\:grid-row {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-right: -0.5rem;
    margin-left: -0.5rem;
  }

  @media (min-width: 768px) {
    .grid-row {
      margin-right: -1rem;
      margin-left: -1rem;
    }
  }

  .grid-row .sm\:grid-row {
    margin-right: -0.25rem;
    margin-left: -0.25rem;
  }

  @media (min-width: 768px) {
    .grid-row .grid-row {
      margin-right: -0.5rem;
      margin-left: -0.5rem;
    }
  }

  .sm\:h1 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 6rem;
    line-height: calc(100% + 8px);
    letter-spacing: -4px;
  }

  .sm\:h2 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 5rem;
    line-height: calc(100% + 8px);
    letter-spacing: -3px;
  }

  .sm\:h3-large {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 4rem;
    line-height: calc(100% + 8px);
    letter-spacing: -2.66px;
  }

  .sm\:h3 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 3.5rem;
    line-height: calc(100% + 8px);
    letter-spacing: -2px;
  }

  .sm\:h4 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 3rem;
    line-height: calc(100% + 8px);
    letter-spacing: -1.5px;
  }

  .sm\:h5 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 1.5rem;
    line-height: calc(100% + 8px);
    font-weight: 300;
    letter-spacing: -1px;
  }

  .sm\:h6 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    line-height: calc(100% + 8px);
    font-weight: 300;
  }

  .sm\:header-d0 {
    font-size: 2.5rem;
    line-height: calc(100% + 8px);
    letter-spacing: -1.5px;
  }

  .sm\:header-d1 {
    font-size: 2rem;
    line-height: calc(100% + 8px);
    letter-spacing: -1.25px;
  }

  .sm\:header-e1 {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: -1px;
  }

  .sm\:grid-wrapper {
    margin: 0 auto;
    max-width: 1368px;
    padding: 0 2rem;
  }

  .sm\:card-driver__content-outer--left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .sm\:card-driver__content-outer--right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .sm\:card-driver__content--lg {
    width: 83.33333%;
  }

  .sm\:card-driver__content--md {
    width: 66.66666%;
  }

  .sm\:card-driver__content--sm {
    width: 50%;
  }

  .sm\:card-driver__content--smx {
    width: 33%;
  }

  .sm\:card-driver__content--xs {
    width: 25%;
  }

  .sm\:card-driver__content--auto {
    width: auto;
  }

  .sm\:list-reset {
    list-style: none;
    padding: 0;
  }

  .sm\:appearance-none {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .sm\:bg-fixed {
    background-attachment: fixed;
  }

  .sm\:bg-local {
    background-attachment: local;
  }

  .sm\:bg-scroll {
    background-attachment: scroll;
  }

  .sm\:bg-transparent {
    background-color: transparent;
  }

  .sm\:bg-brand {
    background-color: #ff993d;
  }

  .sm\:bg-dealer-brand {
    background-color: #305371;
  }

  .sm\:bg-oem-brand {
    background-color: #91989e;
  }

  .sm\:bg-black {
    background-color: #222;
  }

  .sm\:bg-white {
    background-color: #fff;
  }

  .sm\:bg-grey-darkest {
    background-color: #333;
  }

  .sm\:bg-grey-darker {
    background-color: #626262;
  }

  .sm\:bg-grey-md-dark {
    background-color: #999;
  }

  .sm\:bg-grey-dark {
    background-color: #b2b2b2;
  }

  .sm\:bg-grey {
    background-color: #ccc;
  }

  .sm\:bg-grey-light {
    background-color: #ddd;
  }

  .sm\:bg-grey-lighter {
    background-color: #eee;
  }

  .sm\:bg-grey-lightest {
    background-color: #f8f8f8;
  }

  .sm\:bg-grey-accent {
    background-color: #efefef;
  }

  .sm\:bg-success {
    background-color: #449343;
  }

  .sm\:hover\:bg-transparent:hover {
    background-color: transparent;
  }

  .sm\:hover\:bg-brand:hover {
    background-color: #ff993d;
  }

  .sm\:hover\:bg-dealer-brand:hover {
    background-color: #305371;
  }

  .sm\:hover\:bg-oem-brand:hover {
    background-color: #91989e;
  }

  .sm\:hover\:bg-black:hover {
    background-color: #222;
  }

  .sm\:hover\:bg-white:hover {
    background-color: #fff;
  }

  .sm\:hover\:bg-grey-darkest:hover {
    background-color: #333;
  }

  .sm\:hover\:bg-grey-darker:hover {
    background-color: #626262;
  }

  .sm\:hover\:bg-grey-md-dark:hover {
    background-color: #999;
  }

  .sm\:hover\:bg-grey-dark:hover {
    background-color: #b2b2b2;
  }

  .sm\:hover\:bg-grey:hover {
    background-color: #ccc;
  }

  .sm\:hover\:bg-grey-light:hover {
    background-color: #ddd;
  }

  .sm\:hover\:bg-grey-lighter:hover {
    background-color: #eee;
  }

  .sm\:hover\:bg-grey-lightest:hover {
    background-color: #f8f8f8;
  }

  .sm\:hover\:bg-grey-accent:hover {
    background-color: #efefef;
  }

  .sm\:hover\:bg-success:hover {
    background-color: #449343;
  }

  .sm\:bg-bottom {
    background-position: bottom;
  }

  .sm\:bg-center {
    background-position: center;
  }

  .sm\:bg-left {
    background-position: left;
  }

  .sm\:bg-left-bottom {
    background-position: left bottom;
  }

  .sm\:bg-left-top {
    background-position: left top;
  }

  .sm\:bg-right {
    background-position: right;
  }

  .sm\:bg-right-bottom {
    background-position: right bottom;
  }

  .sm\:bg-right-top {
    background-position: right top;
  }

  .sm\:bg-top {
    background-position: top;
  }

  .sm\:bg-repeat {
    background-repeat: repeat;
  }

  .sm\:bg-no-repeat {
    background-repeat: no-repeat;
  }

  .sm\:bg-repeat-x {
    background-repeat: repeat-x;
  }

  .sm\:bg-repeat-y {
    background-repeat: repeat-y;
  }

  .sm\:bg-auto {
    background-size: auto;
  }

  .sm\:bg-cover {
    background-size: cover;
  }

  .sm\:bg-contain {
    background-size: contain;
  }

  .sm\:border-transparent {
    border-color: transparent;
  }

  .sm\:border-brand {
    border-color: #ff993d;
  }

  .sm\:border-dealer-brand {
    border-color: #305371;
  }

  .sm\:border-oem-brand {
    border-color: #91989e;
  }

  .sm\:border-black {
    border-color: #222;
  }

  .sm\:border-white {
    border-color: #fff;
  }

  .sm\:border-grey-darkest {
    border-color: #333;
  }

  .sm\:border-grey-darker {
    border-color: #626262;
  }

  .sm\:border-grey-md-dark {
    border-color: #999;
  }

  .sm\:border-grey-dark {
    border-color: #b2b2b2;
  }

  .sm\:border-grey {
    border-color: #ccc;
  }

  .sm\:border-grey-light {
    border-color: #ddd;
  }

  .sm\:border-grey-lighter {
    border-color: #eee;
  }

  .sm\:border-grey-lightest {
    border-color: #f8f8f8;
  }

  .sm\:border-grey-accent {
    border-color: #efefef;
  }

  .sm\:border-success {
    border-color: #449343;
  }

  .sm\:hover\:border-transparent:hover {
    border-color: transparent;
  }

  .sm\:hover\:border-brand:hover {
    border-color: #ff993d;
  }

  .sm\:hover\:border-dealer-brand:hover {
    border-color: #305371;
  }

  .sm\:hover\:border-oem-brand:hover {
    border-color: #91989e;
  }

  .sm\:hover\:border-black:hover {
    border-color: #222;
  }

  .sm\:hover\:border-white:hover {
    border-color: #fff;
  }

  .sm\:hover\:border-grey-darkest:hover {
    border-color: #333;
  }

  .sm\:hover\:border-grey-darker:hover {
    border-color: #626262;
  }

  .sm\:hover\:border-grey-md-dark:hover {
    border-color: #999;
  }

  .sm\:hover\:border-grey-dark:hover {
    border-color: #b2b2b2;
  }

  .sm\:hover\:border-grey:hover {
    border-color: #ccc;
  }

  .sm\:hover\:border-grey-light:hover {
    border-color: #ddd;
  }

  .sm\:hover\:border-grey-lighter:hover {
    border-color: #eee;
  }

  .sm\:hover\:border-grey-lightest:hover {
    border-color: #f8f8f8;
  }

  .sm\:hover\:border-grey-accent:hover {
    border-color: #efefef;
  }

  .sm\:hover\:border-success:hover {
    border-color: #449343;
  }

  .sm\:rounded-none {
    border-radius: 0;
  }

  .sm\:rounded-xm {
    border-radius: .125rem;
  }

  .sm\:rounded {
    border-radius: .25rem;
  }

  .sm\:rounded-lg {
    border-radius: .5rem;
  }

  .sm\:rounded-full {
    border-radius: 9999px;
  }

  .sm\:rounded-t-none {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .sm\:rounded-r-none {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .sm\:rounded-b-none {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .sm\:rounded-l-none {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .sm\:rounded-t-xm {
    border-top-left-radius: .125rem;
    border-top-right-radius: .125rem;
  }

  .sm\:rounded-r-xm {
    border-top-right-radius: .125rem;
    border-bottom-right-radius: .125rem;
  }

  .sm\:rounded-b-xm {
    border-bottom-right-radius: .125rem;
    border-bottom-left-radius: .125rem;
  }

  .sm\:rounded-l-xm {
    border-top-left-radius: .125rem;
    border-bottom-left-radius: .125rem;
  }

  .sm\:rounded-t {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
  }

  .sm\:rounded-r {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
  }

  .sm\:rounded-b {
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem;
  }

  .sm\:rounded-l {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
  }

  .sm\:rounded-t-lg {
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
  }

  .sm\:rounded-r-lg {
    border-top-right-radius: .5rem;
    border-bottom-right-radius: .5rem;
  }

  .sm\:rounded-b-lg {
    border-bottom-right-radius: .5rem;
    border-bottom-left-radius: .5rem;
  }

  .sm\:rounded-l-lg {
    border-top-left-radius: .5rem;
    border-bottom-left-radius: .5rem;
  }

  .sm\:rounded-t-full {
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .sm\:rounded-r-full {
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .sm\:rounded-b-full {
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .sm\:rounded-l-full {
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .sm\:rounded-tl-none {
    border-top-left-radius: 0;
  }

  .sm\:rounded-tr-none {
    border-top-right-radius: 0;
  }

  .sm\:rounded-br-none {
    border-bottom-right-radius: 0;
  }

  .sm\:rounded-bl-none {
    border-bottom-left-radius: 0;
  }

  .sm\:rounded-tl-xm {
    border-top-left-radius: .125rem;
  }

  .sm\:rounded-tr-xm {
    border-top-right-radius: .125rem;
  }

  .sm\:rounded-br-xm {
    border-bottom-right-radius: .125rem;
  }

  .sm\:rounded-bl-xm {
    border-bottom-left-radius: .125rem;
  }

  .sm\:rounded-tl {
    border-top-left-radius: .25rem;
  }

  .sm\:rounded-tr {
    border-top-right-radius: .25rem;
  }

  .sm\:rounded-br {
    border-bottom-right-radius: .25rem;
  }

  .sm\:rounded-bl {
    border-bottom-left-radius: .25rem;
  }

  .sm\:rounded-tl-lg {
    border-top-left-radius: .5rem;
  }

  .sm\:rounded-tr-lg {
    border-top-right-radius: .5rem;
  }

  .sm\:rounded-br-lg {
    border-bottom-right-radius: .5rem;
  }

  .sm\:rounded-bl-lg {
    border-bottom-left-radius: .5rem;
  }

  .sm\:rounded-tl-full {
    border-top-left-radius: 9999px;
  }

  .sm\:rounded-tr-full {
    border-top-right-radius: 9999px;
  }

  .sm\:rounded-br-full {
    border-bottom-right-radius: 9999px;
  }

  .sm\:rounded-bl-full {
    border-bottom-left-radius: 9999px;
  }

  .sm\:border-solid {
    border-style: solid;
  }

  .sm\:border-dashed {
    border-style: dashed;
  }

  .sm\:border-dotted {
    border-style: dotted;
  }

  .sm\:border-none {
    border-style: none;
  }

  .sm\:border-0 {
    border-width: 0;
  }

  .sm\:border-1 {
    border-width: 1px;
  }

  .sm\:border-2 {
    border-width: 2px;
  }

  .sm\:border-4 {
    border-width: 4px;
  }

  .sm\:border-8 {
    border-width: 8px;
  }

  .sm\:border-t-0 {
    border-top-width: 0;
  }

  .sm\:border-r-0 {
    border-right-width: 0;
  }

  .sm\:border-b-0 {
    border-bottom-width: 0;
  }

  .sm\:border-l-0 {
    border-left-width: 0;
  }

  .sm\:border-t-1 {
    border-top-width: 1px;
  }

  .sm\:border-r-1 {
    border-right-width: 1px;
  }

  .sm\:border-b-1 {
    border-bottom-width: 1px;
  }

  .sm\:border-l-1 {
    border-left-width: 1px;
  }

  .sm\:border-t-2 {
    border-top-width: 2px;
  }

  .sm\:border-r-2 {
    border-right-width: 2px;
  }

  .sm\:border-b-2 {
    border-bottom-width: 2px;
  }

  .sm\:border-l-2 {
    border-left-width: 2px;
  }

  .sm\:border-t-4 {
    border-top-width: 4px;
  }

  .sm\:border-r-4 {
    border-right-width: 4px;
  }

  .sm\:border-b-4 {
    border-bottom-width: 4px;
  }

  .sm\:border-l-4 {
    border-left-width: 4px;
  }

  .sm\:border-t-8 {
    border-top-width: 8px;
  }

  .sm\:border-r-8 {
    border-right-width: 8px;
  }

  .sm\:border-b-8 {
    border-bottom-width: 8px;
  }

  .sm\:border-l-8 {
    border-left-width: 8px;
  }

  .sm\:cursor-auto {
    cursor: auto;
  }

  .sm\:cursor-default {
    cursor: default;
  }

  .sm\:cursor-pointer {
    cursor: pointer;
  }

  .sm\:cursor-wait {
    cursor: wait;
  }

  .sm\:cursor-move {
    cursor: move;
  }

  .sm\:cursor-not-allowed {
    cursor: not-allowed;
  }

  .sm\:block {
    display: block;
  }

  .sm\:inline-block {
    display: inline-block;
  }

  .sm\:inline {
    display: inline;
  }

  .sm\:table {
    display: table;
  }

  .sm\:table-row {
    display: table-row;
  }

  .sm\:table-cell {
    display: table-cell;
  }

  .sm\:hidden {
    display: none;
  }

  .sm\:flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .sm\:inline-flex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .sm\:flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .sm\:flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .sm\:flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .sm\:flex-col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .sm\:flex-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .sm\:flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }

  .sm\:flex-no-wrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .sm\:items-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .sm\:items-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

  .sm\:items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .sm\:items-baseline {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }

  .sm\:items-stretch {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .sm\:self-auto {
    -ms-flex-item-align: auto;
        align-self: auto;
  }

  .sm\:self-start {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }

  .sm\:self-end {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }

  .sm\:self-center {
    -ms-flex-item-align: center;
        align-self: center;
  }

  .sm\:self-stretch {
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }

  .sm\:justify-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .sm\:justify-end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .sm\:justify-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .sm\:justify-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .sm\:justify-around {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }

  .sm\:content-center {
    -ms-flex-line-pack: center;
        align-content: center;
  }

  .sm\:content-start {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }

  .sm\:content-end {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }

  .sm\:content-between {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }

  .sm\:content-around {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }

  .sm\:flex-1 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }

  .sm\:flex-auto {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }

  .sm\:flex-initial {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }

  .sm\:flex-none {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }

  .sm\:flex-grow {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }

  .sm\:flex-shrink {
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }

  .sm\:flex-no-grow {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }

  .sm\:flex-no-shrink {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }

  .sm\:float-right {
    float: right;
  }

  .sm\:float-left {
    float: left;
  }

  .sm\:float-none {
    float: none;
  }

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

  .sm\:font-sans {
    font-family: "3form Graphik", Helvetica, sans-serif;
  }

  .sm\:font-light {
    font-weight: 300;
  }

  .sm\:font-normal {
    font-weight: 400;
  }

  .sm\:font-medium {
    font-weight: 500;
  }

  .sm\:hover\:font-light:hover {
    font-weight: 300;
  }

  .sm\:hover\:font-normal:hover {
    font-weight: 400;
  }

  .sm\:hover\:font-medium:hover {
    font-weight: 500;
  }

  .sm\:h-1 {
    height: .25rem;
  }

  .sm\:h-2 {
    height: .5rem;
  }

  .sm\:h-3 {
    height: .75rem;
  }

  .sm\:h-4 {
    height: 1rem;
  }

  .sm\:h-5 {
    height: 1.25rem;
  }

  .sm\:h-6 {
    height: 1.5rem;
  }

  .sm\:h-8 {
    height: 2rem;
  }

  .sm\:h-9 {
    height: 2.25rem;
  }

  .sm\:h-12 {
    height: 3rem;
  }

  .sm\:h-16 {
    height: 4rem;
  }

  .sm\:h-24 {
    height: 6rem;
  }

  .sm\:h-32 {
    height: 8rem;
  }

  .sm\:h-48 {
    height: 12rem;
  }

  .sm\:h-64 {
    height: 16rem;
  }

  .sm\:h-auto {
    height: auto;
  }

  .sm\:h-px {
    height: 1px;
  }

  .sm\:h-full {
    height: 100%;
  }

  .sm\:h-screen {
    height: 100vh;
  }

  .sm\:h-90v {
    height: 90vh;
  }

  .sm\:leading-none {
    line-height: 1;
  }

  .sm\:leading-tightish {
    line-height: 1.1;
  }

  .sm\:leading-tight {
    line-height: 1.25;
  }

  .sm\:leading-normal {
    line-height: 1.5;
  }

  .sm\:leading-normloose {
    line-height: 1.75;
  }

  .sm\:leading-loose {
    line-height: 2;
  }

  .sm\:leading-md {
    line-height: 24px;
  }

  .sm\:leading-heading {
    line-height: calc(100% + 8px);
  }

  .sm\:m-0 {
    margin: 0;
  }

  .sm\:m-1 {
    margin: .25rem;
  }

  .sm\:m-2 {
    margin: .5rem;
  }

  .sm\:m-3 {
    margin: .75rem;
  }

  .sm\:m-4 {
    margin: 1rem;
  }

  .sm\:m-5 {
    margin: 1.25rem;
  }

  .sm\:m-6 {
    margin: 1.5rem;
  }

  .sm\:m-8 {
    margin: 2rem;
  }

  .sm\:m-10 {
    margin: 2.5rem;
  }

  .sm\:m-12 {
    margin: 3rem;
  }

  .sm\:m-16 {
    margin: 4rem;
  }

  .sm\:m-20 {
    margin: 5rem;
  }

  .sm\:m-24 {
    margin: 6rem;
  }

  .sm\:m-32 {
    margin: 8rem;
  }

  .sm\:m-48 {
    margin: 12rem;
  }

  .sm\:m-64 {
    margin: 16rem;
  }

  .sm\:m-auto {
    margin: auto;
  }

  .sm\:m-px {
    margin: 1px;
  }

  .sm\:m--20 {
    margin: -5rem;
  }

  .sm\:m-30\% {
    margin: 30%;
  }

  .sm\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .sm\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .sm\:my-1 {
    margin-top: .25rem;
    margin-bottom: .25rem;
  }

  .sm\:mx-1 {
    margin-left: .25rem;
    margin-right: .25rem;
  }

  .sm\:my-2 {
    margin-top: .5rem;
    margin-bottom: .5rem;
  }

  .sm\:mx-2 {
    margin-left: .5rem;
    margin-right: .5rem;
  }

  .sm\:my-3 {
    margin-top: .75rem;
    margin-bottom: .75rem;
  }

  .sm\:mx-3 {
    margin-left: .75rem;
    margin-right: .75rem;
  }

  .sm\:my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .sm\:mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .sm\:my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .sm\:mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .sm\:my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .sm\:mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .sm\:my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .sm\:mx-8 {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .sm\:my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .sm\:mx-10 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .sm\:my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .sm\:mx-12 {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .sm\:my-16 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .sm\:mx-16 {
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .sm\:my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .sm\:mx-20 {
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .sm\:my-24 {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .sm\:mx-24 {
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .sm\:my-32 {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .sm\:mx-32 {
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .sm\:my-48 {
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .sm\:mx-48 {
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .sm\:my-64 {
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .sm\:mx-64 {
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .sm\:my-auto {
    margin-top: auto;
    margin-bottom: auto;
  }

  .sm\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .sm\:my-px {
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .sm\:mx-px {
    margin-left: 1px;
    margin-right: 1px;
  }

  .sm\:my--20 {
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .sm\:mx--20 {
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .sm\:my-30\% {
    margin-top: 30%;
    margin-bottom: 30%;
  }

  .sm\:mx-30\% {
    margin-left: 30%;
    margin-right: 30%;
  }

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

  .sm\:mr-0 {
    margin-right: 0;
  }

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

  .sm\:ml-0 {
    margin-left: 0;
  }

  .sm\:mt-1 {
    margin-top: .25rem;
  }

  .sm\:mr-1 {
    margin-right: .25rem;
  }

  .sm\:mb-1 {
    margin-bottom: .25rem;
  }

  .sm\:ml-1 {
    margin-left: .25rem;
  }

  .sm\:mt-2 {
    margin-top: .5rem;
  }

  .sm\:mr-2 {
    margin-right: .5rem;
  }

  .sm\:mb-2 {
    margin-bottom: .5rem;
  }

  .sm\:ml-2 {
    margin-left: .5rem;
  }

  .sm\:mt-3 {
    margin-top: .75rem;
  }

  .sm\:mr-3 {
    margin-right: .75rem;
  }

  .sm\:mb-3 {
    margin-bottom: .75rem;
  }

  .sm\:ml-3 {
    margin-left: .75rem;
  }

  .sm\:mt-4 {
    margin-top: 1rem;
  }

  .sm\:mr-4 {
    margin-right: 1rem;
  }

  .sm\:mb-4 {
    margin-bottom: 1rem;
  }

  .sm\:ml-4 {
    margin-left: 1rem;
  }

  .sm\:mt-5 {
    margin-top: 1.25rem;
  }

  .sm\:mr-5 {
    margin-right: 1.25rem;
  }

  .sm\:mb-5 {
    margin-bottom: 1.25rem;
  }

  .sm\:ml-5 {
    margin-left: 1.25rem;
  }

  .sm\:mt-6 {
    margin-top: 1.5rem;
  }

  .sm\:mr-6 {
    margin-right: 1.5rem;
  }

  .sm\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .sm\:ml-6 {
    margin-left: 1.5rem;
  }

  .sm\:mt-8 {
    margin-top: 2rem;
  }

  .sm\:mr-8 {
    margin-right: 2rem;
  }

  .sm\:mb-8 {
    margin-bottom: 2rem;
  }

  .sm\:ml-8 {
    margin-left: 2rem;
  }

  .sm\:mt-10 {
    margin-top: 2.5rem;
  }

  .sm\:mr-10 {
    margin-right: 2.5rem;
  }

  .sm\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .sm\:ml-10 {
    margin-left: 2.5rem;
  }

  .sm\:mt-12 {
    margin-top: 3rem;
  }

  .sm\:mr-12 {
    margin-right: 3rem;
  }

  .sm\:mb-12 {
    margin-bottom: 3rem;
  }

  .sm\:ml-12 {
    margin-left: 3rem;
  }

  .sm\:mt-16 {
    margin-top: 4rem;
  }

  .sm\:mr-16 {
    margin-right: 4rem;
  }

  .sm\:mb-16 {
    margin-bottom: 4rem;
  }

  .sm\:ml-16 {
    margin-left: 4rem;
  }

  .sm\:mt-20 {
    margin-top: 5rem;
  }

  .sm\:mr-20 {
    margin-right: 5rem;
  }

  .sm\:mb-20 {
    margin-bottom: 5rem;
  }

  .sm\:ml-20 {
    margin-left: 5rem;
  }

  .sm\:mt-24 {
    margin-top: 6rem;
  }

  .sm\:mr-24 {
    margin-right: 6rem;
  }

  .sm\:mb-24 {
    margin-bottom: 6rem;
  }

  .sm\:ml-24 {
    margin-left: 6rem;
  }

  .sm\:mt-32 {
    margin-top: 8rem;
  }

  .sm\:mr-32 {
    margin-right: 8rem;
  }

  .sm\:mb-32 {
    margin-bottom: 8rem;
  }

  .sm\:ml-32 {
    margin-left: 8rem;
  }

  .sm\:mt-48 {
    margin-top: 12rem;
  }

  .sm\:mr-48 {
    margin-right: 12rem;
  }

  .sm\:mb-48 {
    margin-bottom: 12rem;
  }

  .sm\:ml-48 {
    margin-left: 12rem;
  }

  .sm\:mt-64 {
    margin-top: 16rem;
  }

  .sm\:mr-64 {
    margin-right: 16rem;
  }

  .sm\:mb-64 {
    margin-bottom: 16rem;
  }

  .sm\:ml-64 {
    margin-left: 16rem;
  }

  .sm\:mt-auto {
    margin-top: auto;
  }

  .sm\:mr-auto {
    margin-right: auto;
  }

  .sm\:mb-auto {
    margin-bottom: auto;
  }

  .sm\:ml-auto {
    margin-left: auto;
  }

  .sm\:mt-px {
    margin-top: 1px;
  }

  .sm\:mr-px {
    margin-right: 1px;
  }

  .sm\:mb-px {
    margin-bottom: 1px;
  }

  .sm\:ml-px {
    margin-left: 1px;
  }

  .sm\:mt--20 {
    margin-top: -5rem;
  }

  .sm\:mr--20 {
    margin-right: -5rem;
  }

  .sm\:mb--20 {
    margin-bottom: -5rem;
  }

  .sm\:ml--20 {
    margin-left: -5rem;
  }

  .sm\:mt-30\% {
    margin-top: 30%;
  }

  .sm\:mr-30\% {
    margin-right: 30%;
  }

  .sm\:mb-30\% {
    margin-bottom: 30%;
  }

  .sm\:ml-30\% {
    margin-left: 30%;
  }

  .sm\:max-h-full {
    max-height: 100%;
  }

  .sm\:max-h-md {
    max-height: 40rem;
  }

  .sm\:max-h-lg {
    max-height: 50rem;
  }

  .sm\:max-h-screen {
    max-height: 100vh;
  }

  .sm\:max-w-50 {
    max-width: 50%;
  }

  .sm\:max-w-xxs {
    max-width: 16rem;
  }

  .sm\:max-w-xs {
    max-width: 20rem;
  }

  .sm\:max-w-sm {
    max-width: 30rem;
  }

  .sm\:max-w-md {
    max-width: 40rem;
  }

  .sm\:max-w-lg {
    max-width: 50rem;
  }

  .sm\:max-w-xl {
    max-width: 60rem;
  }

  .sm\:max-w-2xl {
    max-width: 70rem;
  }

  .sm\:max-w-3xl {
    max-width: 80rem;
  }

  .sm\:max-w-4xl {
    max-width: 90rem;
  }

  .sm\:max-w-5xl {
    max-width: 100rem;
  }

  .sm\:max-w-full {
    max-width: 100%;
  }

  .sm\:min-h-0 {
    min-height: 0;
  }

  .sm\:min-h-full {
    min-height: 100%;
  }

  .sm\:min-h-screen {
    min-height: 100vh;
  }

  .sm\:min-w-0 {
    min-width: 0;
  }

  .sm\:min-w-full {
    min-width: 100%;
  }

  .sm\:-m-0 {
    margin: 0;
  }

  .sm\:-m-1 {
    margin: -0.25rem;
  }

  .sm\:-m-2 {
    margin: -0.5rem;
  }

  .sm\:-m-3 {
    margin: -0.75rem;
  }

  .sm\:-m-4 {
    margin: -1rem;
  }

  .sm\:-m-5 {
    margin: -1.25rem;
  }

  .sm\:-m-6 {
    margin: -1.5rem;
  }

  .sm\:-m-8 {
    margin: -2rem;
  }

  .sm\:-m-12 {
    margin: -3rem;
  }

  .sm\:-m-16 {
    margin: -4rem;
  }

  .sm\:-m-20 {
    margin: -5rem;
  }

  .sm\:-m-24 {
    margin: -6rem;
  }

  .sm\:-m-32 {
    margin: -8rem;
  }

  .sm\:-m-48 {
    margin: -12rem;
  }

  .sm\:-m-64 {
    margin: -16rem;
  }

  .sm\:-m-px {
    margin: -1px;
  }

  .sm\:-m-30\% {
    margin: -30%;
  }

  .sm\:-my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .sm\:-mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .sm\:-my-1 {
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .sm\:-mx-1 {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .sm\:-my-2 {
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .sm\:-mx-2 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .sm\:-my-3 {
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .sm\:-mx-3 {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .sm\:-my-4 {
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .sm\:-mx-4 {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .sm\:-my-5 {
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .sm\:-mx-5 {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .sm\:-my-6 {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .sm\:-mx-6 {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .sm\:-my-8 {
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .sm\:-mx-8 {
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .sm\:-my-12 {
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .sm\:-mx-12 {
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .sm\:-my-16 {
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .sm\:-mx-16 {
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .sm\:-my-20 {
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .sm\:-mx-20 {
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .sm\:-my-24 {
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .sm\:-mx-24 {
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .sm\:-my-32 {
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .sm\:-mx-32 {
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .sm\:-my-48 {
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .sm\:-mx-48 {
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .sm\:-my-64 {
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .sm\:-mx-64 {
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .sm\:-my-px {
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .sm\:-mx-px {
    margin-left: -1px;
    margin-right: -1px;
  }

  .sm\:-my-30\% {
    margin-top: -30%;
    margin-bottom: -30%;
  }

  .sm\:-mx-30\% {
    margin-left: -30%;
    margin-right: -30%;
  }

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

  .sm\:-mr-0 {
    margin-right: 0;
  }

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

  .sm\:-ml-0 {
    margin-left: 0;
  }

  .sm\:-mt-1 {
    margin-top: -0.25rem;
  }

  .sm\:-mr-1 {
    margin-right: -0.25rem;
  }

  .sm\:-mb-1 {
    margin-bottom: -0.25rem;
  }

  .sm\:-ml-1 {
    margin-left: -0.25rem;
  }

  .sm\:-mt-2 {
    margin-top: -0.5rem;
  }

  .sm\:-mr-2 {
    margin-right: -0.5rem;
  }

  .sm\:-mb-2 {
    margin-bottom: -0.5rem;
  }

  .sm\:-ml-2 {
    margin-left: -0.5rem;
  }

  .sm\:-mt-3 {
    margin-top: -0.75rem;
  }

  .sm\:-mr-3 {
    margin-right: -0.75rem;
  }

  .sm\:-mb-3 {
    margin-bottom: -0.75rem;
  }

  .sm\:-ml-3 {
    margin-left: -0.75rem;
  }

  .sm\:-mt-4 {
    margin-top: -1rem;
  }

  .sm\:-mr-4 {
    margin-right: -1rem;
  }

  .sm\:-mb-4 {
    margin-bottom: -1rem;
  }

  .sm\:-ml-4 {
    margin-left: -1rem;
  }

  .sm\:-mt-5 {
    margin-top: -1.25rem;
  }

  .sm\:-mr-5 {
    margin-right: -1.25rem;
  }

  .sm\:-mb-5 {
    margin-bottom: -1.25rem;
  }

  .sm\:-ml-5 {
    margin-left: -1.25rem;
  }

  .sm\:-mt-6 {
    margin-top: -1.5rem;
  }

  .sm\:-mr-6 {
    margin-right: -1.5rem;
  }

  .sm\:-mb-6 {
    margin-bottom: -1.5rem;
  }

  .sm\:-ml-6 {
    margin-left: -1.5rem;
  }

  .sm\:-mt-8 {
    margin-top: -2rem;
  }

  .sm\:-mr-8 {
    margin-right: -2rem;
  }

  .sm\:-mb-8 {
    margin-bottom: -2rem;
  }

  .sm\:-ml-8 {
    margin-left: -2rem;
  }

  .sm\:-mt-12 {
    margin-top: -3rem;
  }

  .sm\:-mr-12 {
    margin-right: -3rem;
  }

  .sm\:-mb-12 {
    margin-bottom: -3rem;
  }

  .sm\:-ml-12 {
    margin-left: -3rem;
  }

  .sm\:-mt-16 {
    margin-top: -4rem;
  }

  .sm\:-mr-16 {
    margin-right: -4rem;
  }

  .sm\:-mb-16 {
    margin-bottom: -4rem;
  }

  .sm\:-ml-16 {
    margin-left: -4rem;
  }

  .sm\:-mt-20 {
    margin-top: -5rem;
  }

  .sm\:-mr-20 {
    margin-right: -5rem;
  }

  .sm\:-mb-20 {
    margin-bottom: -5rem;
  }

  .sm\:-ml-20 {
    margin-left: -5rem;
  }

  .sm\:-mt-24 {
    margin-top: -6rem;
  }

  .sm\:-mr-24 {
    margin-right: -6rem;
  }

  .sm\:-mb-24 {
    margin-bottom: -6rem;
  }

  .sm\:-ml-24 {
    margin-left: -6rem;
  }

  .sm\:-mt-32 {
    margin-top: -8rem;
  }

  .sm\:-mr-32 {
    margin-right: -8rem;
  }

  .sm\:-mb-32 {
    margin-bottom: -8rem;
  }

  .sm\:-ml-32 {
    margin-left: -8rem;
  }

  .sm\:-mt-48 {
    margin-top: -12rem;
  }

  .sm\:-mr-48 {
    margin-right: -12rem;
  }

  .sm\:-mb-48 {
    margin-bottom: -12rem;
  }

  .sm\:-ml-48 {
    margin-left: -12rem;
  }

  .sm\:-mt-64 {
    margin-top: -16rem;
  }

  .sm\:-mr-64 {
    margin-right: -16rem;
  }

  .sm\:-mb-64 {
    margin-bottom: -16rem;
  }

  .sm\:-ml-64 {
    margin-left: -16rem;
  }

  .sm\:-mt-px {
    margin-top: -1px;
  }

  .sm\:-mr-px {
    margin-right: -1px;
  }

  .sm\:-mb-px {
    margin-bottom: -1px;
  }

  .sm\:-ml-px {
    margin-left: -1px;
  }

  .sm\:-mt-30\% {
    margin-top: -30%;
  }

  .sm\:-mr-30\% {
    margin-right: -30%;
  }

  .sm\:-mb-30\% {
    margin-bottom: -30%;
  }

  .sm\:-ml-30\% {
    margin-left: -30%;
  }

  .sm\:opacity-0 {
    opacity: 0;
  }

  .sm\:opacity-20 {
    opacity: .2;
  }

  .sm\:opacity-40 {
    opacity: .4;
  }

  .sm\:opacity-60 {
    opacity: .6;
  }

  .sm\:opacity-80 {
    opacity: .8;
  }

  .sm\:opacity-100 {
    opacity: 1;
  }

  .sm\:overflow-auto {
    overflow: auto;
  }

  .sm\:overflow-hidden {
    overflow: hidden;
  }

  .sm\:overflow-visible {
    overflow: visible;
  }

  .sm\:overflow-scroll {
    overflow: scroll;
  }

  .sm\:overflow-x-auto {
    overflow-x: auto;
  }

  .sm\:overflow-y-auto {
    overflow-y: auto;
  }

  .sm\:overflow-x-hidden {
    overflow-x: hidden;
  }

  .sm\:overflow-y-hidden {
    overflow-y: hidden;
  }

  .sm\:overflow-x-visible {
    overflow-x: visible;
  }

  .sm\:overflow-y-visible {
    overflow-y: visible;
  }

  .sm\:overflow-x-scroll {
    overflow-x: scroll;
  }

  .sm\:overflow-y-scroll {
    overflow-y: scroll;
  }

  .sm\:scrolling-touch {
    -webkit-overflow-scrolling: touch;
  }

  .sm\:scrolling-auto {
    -webkit-overflow-scrolling: auto;
  }

  .sm\:p-0 {
    padding: 0;
  }

  .sm\:p-1 {
    padding: .25rem;
  }

  .sm\:p-2 {
    padding: .5rem;
  }

  .sm\:p-3 {
    padding: .75rem;
  }

  .sm\:p-4 {
    padding: 1rem;
  }

  .sm\:p-5 {
    padding: 1.25rem;
  }

  .sm\:p-6 {
    padding: 1.5rem;
  }

  .sm\:p-8 {
    padding: 2rem;
  }

  .sm\:p-10 {
    padding: 2.5rem;
  }

  .sm\:p-12 {
    padding: 3rem;
  }

  .sm\:p-16 {
    padding: 4rem;
  }

  .sm\:p-20 {
    padding: 5rem;
  }

  .sm\:p-24 {
    padding: 6rem;
  }

  .sm\:p-32 {
    padding: 8rem;
  }

  .sm\:p-48 {
    padding: 12rem;
  }

  .sm\:p-64 {
    padding: 16rem;
  }

  .sm\:p-px {
    padding: 1px;
  }

  .sm\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .sm\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .sm\:py-1 {
    padding-top: .25rem;
    padding-bottom: .25rem;
  }

  .sm\:px-1 {
    padding-left: .25rem;
    padding-right: .25rem;
  }

  .sm\:py-2 {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .sm\:px-2 {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .sm\:py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .sm\:px-3 {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .sm\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .sm\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .sm\:py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .sm\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .sm\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .sm\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .sm\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .sm\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .sm\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .sm\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .sm\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .sm\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .sm\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .sm\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .sm\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .sm\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .sm\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .sm\:px-32 {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .sm\:py-48 {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .sm\:px-48 {
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .sm\:py-64 {
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .sm\:px-64 {
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .sm\:py-px {
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .sm\:px-px {
    padding-left: 1px;
    padding-right: 1px;
  }

  .sm\:pt-0 {
    padding-top: 0;
  }

  .sm\:pr-0 {
    padding-right: 0;
  }

  .sm\:pb-0 {
    padding-bottom: 0;
  }

  .sm\:pl-0 {
    padding-left: 0;
  }

  .sm\:pt-1 {
    padding-top: .25rem;
  }

  .sm\:pr-1 {
    padding-right: .25rem;
  }

  .sm\:pb-1 {
    padding-bottom: .25rem;
  }

  .sm\:pl-1 {
    padding-left: .25rem;
  }

  .sm\:pt-2 {
    padding-top: .5rem;
  }

  .sm\:pr-2 {
    padding-right: .5rem;
  }

  .sm\:pb-2 {
    padding-bottom: .5rem;
  }

  .sm\:pl-2 {
    padding-left: .5rem;
  }

  .sm\:pt-3 {
    padding-top: .75rem;
  }

  .sm\:pr-3 {
    padding-right: .75rem;
  }

  .sm\:pb-3 {
    padding-bottom: .75rem;
  }

  .sm\:pl-3 {
    padding-left: .75rem;
  }

  .sm\:pt-4 {
    padding-top: 1rem;
  }

  .sm\:pr-4 {
    padding-right: 1rem;
  }

  .sm\:pb-4 {
    padding-bottom: 1rem;
  }

  .sm\:pl-4 {
    padding-left: 1rem;
  }

  .sm\:pt-5 {
    padding-top: 1.25rem;
  }

  .sm\:pr-5 {
    padding-right: 1.25rem;
  }

  .sm\:pb-5 {
    padding-bottom: 1.25rem;
  }

  .sm\:pl-5 {
    padding-left: 1.25rem;
  }

  .sm\:pt-6 {
    padding-top: 1.5rem;
  }

  .sm\:pr-6 {
    padding-right: 1.5rem;
  }

  .sm\:pb-6 {
    padding-bottom: 1.5rem;
  }

  .sm\:pl-6 {
    padding-left: 1.5rem;
  }

  .sm\:pt-8 {
    padding-top: 2rem;
  }

  .sm\:pr-8 {
    padding-right: 2rem;
  }

  .sm\:pb-8 {
    padding-bottom: 2rem;
  }

  .sm\:pl-8 {
    padding-left: 2rem;
  }

  .sm\:pt-10 {
    padding-top: 2.5rem;
  }

  .sm\:pr-10 {
    padding-right: 2.5rem;
  }

  .sm\:pb-10 {
    padding-bottom: 2.5rem;
  }

  .sm\:pl-10 {
    padding-left: 2.5rem;
  }

  .sm\:pt-12 {
    padding-top: 3rem;
  }

  .sm\:pr-12 {
    padding-right: 3rem;
  }

  .sm\:pb-12 {
    padding-bottom: 3rem;
  }

  .sm\:pl-12 {
    padding-left: 3rem;
  }

  .sm\:pt-16 {
    padding-top: 4rem;
  }

  .sm\:pr-16 {
    padding-right: 4rem;
  }

  .sm\:pb-16 {
    padding-bottom: 4rem;
  }

  .sm\:pl-16 {
    padding-left: 4rem;
  }

  .sm\:pt-20 {
    padding-top: 5rem;
  }

  .sm\:pr-20 {
    padding-right: 5rem;
  }

  .sm\:pb-20 {
    padding-bottom: 5rem;
  }

  .sm\:pl-20 {
    padding-left: 5rem;
  }

  .sm\:pt-24 {
    padding-top: 6rem;
  }

  .sm\:pr-24 {
    padding-right: 6rem;
  }

  .sm\:pb-24 {
    padding-bottom: 6rem;
  }

  .sm\:pl-24 {
    padding-left: 6rem;
  }

  .sm\:pt-32 {
    padding-top: 8rem;
  }

  .sm\:pr-32 {
    padding-right: 8rem;
  }

  .sm\:pb-32 {
    padding-bottom: 8rem;
  }

  .sm\:pl-32 {
    padding-left: 8rem;
  }

  .sm\:pt-48 {
    padding-top: 12rem;
  }

  .sm\:pr-48 {
    padding-right: 12rem;
  }

  .sm\:pb-48 {
    padding-bottom: 12rem;
  }

  .sm\:pl-48 {
    padding-left: 12rem;
  }

  .sm\:pt-64 {
    padding-top: 16rem;
  }

  .sm\:pr-64 {
    padding-right: 16rem;
  }

  .sm\:pb-64 {
    padding-bottom: 16rem;
  }

  .sm\:pl-64 {
    padding-left: 16rem;
  }

  .sm\:pt-px {
    padding-top: 1px;
  }

  .sm\:pr-px {
    padding-right: 1px;
  }

  .sm\:pb-px {
    padding-bottom: 1px;
  }

  .sm\:pl-px {
    padding-left: 1px;
  }

  .sm\:pointer-events-none {
    pointer-events: none;
  }

  .sm\:pointer-events-auto {
    pointer-events: auto;
  }

  .sm\:static {
    position: static;
  }

  .sm\:fixed {
    position: fixed;
  }

  .sm\:absolute {
    position: absolute;
  }

  .sm\:relative {
    position: relative;
  }

  .sm\:sticky {
    position: sticky;
  }

  .sm\:pin-none {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .sm\:pin {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .sm\:pin-y {
    top: 0;
    bottom: 0;
  }

  .sm\:pin-x {
    right: 0;
    left: 0;
  }

  .sm\:pin-t {
    top: 0;
  }

  .sm\:pin-r {
    right: 0;
  }

  .sm\:pin-b {
    bottom: 0;
  }

  .sm\:pin-l {
    left: 0;
  }

  .sm\:resize-none {
    resize: none;
  }

  .sm\:resize-y {
    resize: vertical;
  }

  .sm\:resize-x {
    resize: horizontal;
  }

  .sm\:resize {
    resize: both;
  }

  .sm\:shadow-swatch-sm {
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .1);
            box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .1);
  }

  .sm\:shadow-swatch-lg {
    -webkit-box-shadow: 0 8px 8px 0 rgba(34, 34, 34, .1);
            box-shadow: 0 8px 8px 0 rgba(34, 34, 34, .1);
  }

  .sm\:shadow-swatch-xl {
    -webkit-box-shadow: 0 16px 16px 0 rgba(34, 34, 34, .1);
            box-shadow: 0 16px 16px 0 rgba(34, 34, 34, .1);
  }

  .sm\:shadow-dark {
    -webkit-box-shadow: 8px 8px 0px 0px #222;
            box-shadow: 8px 8px 0px 0px #222;
  }

  .sm\:shadow-button-white-off {
    -webkit-box-shadow: 0 2px 0 0 #eee;
            box-shadow: 0 2px 0 0 #eee;
  }

  .sm\:shadow-button-white-hover {
    -webkit-box-shadow: 8px 8px 0 0 #eee;
            box-shadow: 8px 8px 0 0 #eee;
  }

  .sm\:shadow-button-white-hover-vertical {
    -webkit-box-shadow: 0px 8px 0 0 #eee;
            box-shadow: 0px 8px 0 0 #eee;
  }

  .sm\:shadow-button-black-hover {
    -webkit-box-shadow: 8px 8px 0 0 #000;
            box-shadow: 8px 8px 0 0 #000;
  }

  .sm\:shadow-tooltip-white-off {
    -webkit-box-shadow: 0 2px 0 0 #e9e9e9;
            box-shadow: 0 2px 0 0 #e9e9e9;
  }

  .sm\:shadow-tooltip-white-hover {
    -webkit-box-shadow: 4px 4px 0 0 #e9e9e9;
            box-shadow: 4px 4px 0 0 #e9e9e9;
  }

  .sm\:shadow-pagination-greg-light-hover {
    -webkit-box-shadow: 2px 2px 0 0 #b2b2b2;
            box-shadow: 2px 2px 0 0 #b2b2b2;
  }

  .sm\:shadow-dropdown-off {
    -webkit-box-shadow: 0 2px 0 0 #ddd;
            box-shadow: 0 2px 0 0 #ddd;
  }

  .sm\:shadow-dropdown-hover {
    -webkit-box-shadow: 0 8px 0 0 #ddd;
            box-shadow: 0 8px 0 0 #ddd;
  }

  .sm\:shadow-dropdown-dark-off {
    -webkit-box-shadow: 0 2px 0 0 #111;
            box-shadow: 0 2px 0 0 #111;
  }

  .sm\:shadow-tooltip-grey-light-active {
    -webkit-box-shadow: 0 2px 0 0 #ccc;
            box-shadow: 0 2px 0 0 #ccc;
  }

  .sm\:shadow-inset-top-black {
    -webkit-box-shadow: inset 0px 2px 0px 0px #222;
            box-shadow: inset 0px 2px 0px 0px #222;
  }

  .sm\:shadow-inset-top-white {
    -webkit-box-shadow: inset 0px 2px 0px 0px #fff;
            box-shadow: inset 0px 2px 0px 0px #fff;
  }

  .sm\:shadow-none {
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .sm\:table-auto {
    table-layout: auto;
  }

  .sm\:table-fixed {
    table-layout: fixed;
  }

  .sm\:text-left {
    text-align: left;
  }

  .sm\:text-center {
    text-align: center;
  }

  .sm\:text-right {
    text-align: right;
  }

  .sm\:text-justify {
    text-align: justify;
  }

  .sm\:text-transparent {
    color: transparent;
  }

  .sm\:text-brand {
    color: #ff993d;
  }

  .sm\:text-dealer-brand {
    color: #305371;
  }

  .sm\:text-oem-brand {
    color: #91989e;
  }

  .sm\:text-black {
    color: #222;
  }

  .sm\:text-white {
    color: #fff;
  }

  .sm\:text-grey-darkest {
    color: #333;
  }

  .sm\:text-grey-darker {
    color: #626262;
  }

  .sm\:text-grey-md-dark {
    color: #999;
  }

  .sm\:text-grey-dark {
    color: #b2b2b2;
  }

  .sm\:text-grey {
    color: #ccc;
  }

  .sm\:text-grey-light {
    color: #ddd;
  }

  .sm\:text-grey-lighter {
    color: #eee;
  }

  .sm\:text-grey-lightest {
    color: #f8f8f8;
  }

  .sm\:text-grey-accent {
    color: #efefef;
  }

  .sm\:text-success {
    color: #449343;
  }

  .sm\:hover\:text-transparent:hover {
    color: transparent;
  }

  .sm\:hover\:text-brand:hover {
    color: #ff993d;
  }

  .sm\:hover\:text-dealer-brand:hover {
    color: #305371;
  }

  .sm\:hover\:text-oem-brand:hover {
    color: #91989e;
  }

  .sm\:hover\:text-black:hover {
    color: #222;
  }

  .sm\:hover\:text-white:hover {
    color: #fff;
  }

  .sm\:hover\:text-grey-darkest:hover {
    color: #333;
  }

  .sm\:hover\:text-grey-darker:hover {
    color: #626262;
  }

  .sm\:hover\:text-grey-md-dark:hover {
    color: #999;
  }

  .sm\:hover\:text-grey-dark:hover {
    color: #b2b2b2;
  }

  .sm\:hover\:text-grey:hover {
    color: #ccc;
  }

  .sm\:hover\:text-grey-light:hover {
    color: #ddd;
  }

  .sm\:hover\:text-grey-lighter:hover {
    color: #eee;
  }

  .sm\:hover\:text-grey-lightest:hover {
    color: #f8f8f8;
  }

  .sm\:hover\:text-grey-accent:hover {
    color: #efefef;
  }

  .sm\:hover\:text-success:hover {
    color: #449343;
  }

  .sm\:text-xxs {
    font-size: .625rem;
  }

  .sm\:text-xs {
    font-size: .75rem;
  }

  .sm\:text-sm {
    font-size: .875rem;
  }

  .sm\:text-base {
    font-size: 1rem;
  }

  .sm\:text-smd {
    font-size: 1.25rem;
  }

  .sm\:text-md {
    font-size: 1.5rem;
  }

  .sm\:text-lmd {
    font-size: 1.75rem;
  }

  .sm\:text-lg {
    font-size: 2rem;
  }

  .sm\:text-xl {
    font-size: 2.5rem;
  }

  .sm\:text-2xl {
    font-size: 3rem;
  }

  .sm\:text-3xl {
    font-size: 3.5rem;
  }

  .sm\:text-4xl {
    font-size: 5rem;
  }

  .sm\:text-5xl {
    font-size: 6rem;
  }

  .sm\:italic {
    font-style: italic;
  }

  .sm\:roman {
    font-style: normal;
  }

  .sm\:uppercase {
    text-transform: uppercase;
  }

  .sm\:lowercase {
    text-transform: lowercase;
  }

  .sm\:capitalize {
    text-transform: capitalize;
  }

  .sm\:normal-case {
    text-transform: none;
  }

  .sm\:underline {
    text-decoration: underline;
  }

  .sm\:line-through {
    text-decoration: line-through;
  }

  .sm\:no-underline {
    text-decoration: none;
  }

  .sm\:antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .sm\:subpixel-antialiased {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .sm\:hover\:italic:hover {
    font-style: italic;
  }

  .sm\:hover\:roman:hover {
    font-style: normal;
  }

  .sm\:hover\:uppercase:hover {
    text-transform: uppercase;
  }

  .sm\:hover\:lowercase:hover {
    text-transform: lowercase;
  }

  .sm\:hover\:capitalize:hover {
    text-transform: capitalize;
  }

  .sm\:hover\:normal-case:hover {
    text-transform: none;
  }

  .sm\:hover\:underline:hover {
    text-decoration: underline;
  }

  .sm\:hover\:line-through:hover {
    text-decoration: line-through;
  }

  .sm\:hover\:no-underline:hover {
    text-decoration: none;
  }

  .sm\:hover\:antialiased:hover {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .sm\:hover\:subpixel-antialiased:hover {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .sm\:tracking-tight {
    letter-spacing: -0.05em;
  }

  .sm\:tracking-tightish {
    letter-spacing: -0.032em;
  }

  .sm\:tracking-normal {
    letter-spacing: 0;
  }

  .sm\:tracking-wide {
    letter-spacing: .05em;
  }

  .sm\:select-none {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .sm\:select-text {
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .sm\:align-baseline {
    vertical-align: baseline;
  }

  .sm\:align-top {
    vertical-align: top;
  }

  .sm\:align-middle {
    vertical-align: middle;
  }

  .sm\:align-bottom {
    vertical-align: bottom;
  }

  .sm\:align-text-top {
    vertical-align: text-top;
  }

  .sm\:align-text-bottom {
    vertical-align: text-bottom;
  }

  .sm\:visible {
    visibility: visible;
  }

  .sm\:invisible {
    visibility: hidden;
  }

  .sm\:whitespace-normal {
    white-space: normal;
  }

  .sm\:whitespace-no-wrap {
    white-space: nowrap;
  }

  .sm\:whitespace-pre {
    white-space: pre;
  }

  .sm\:whitespace-pre-line {
    white-space: pre-line;
  }

  .sm\:whitespace-pre-wrap {
    white-space: pre-wrap;
  }

  .sm\:break-words {
    word-wrap: break-word;
  }

  .sm\:break-normal {
    word-wrap: normal;
  }

  .sm\:truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .sm\:w-1 {
    width: .25rem;
  }

  .sm\:w-2 {
    width: .5rem;
  }

  .sm\:w-3 {
    width: .75rem;
  }

  .sm\:w-4 {
    width: 1rem;
  }

  .sm\:w-5 {
    width: 1.25rem;
  }

  .sm\:w-6 {
    width: 1.5rem;
  }

  .sm\:w-8 {
    width: 2rem;
  }

  .sm\:w-12 {
    width: 3rem;
  }

  .sm\:w-16 {
    width: 4rem;
  }

  .sm\:w-24 {
    width: 6rem;
  }

  .sm\:w-32 {
    width: 8rem;
  }

  .sm\:w-48 {
    width: 12rem;
  }

  .sm\:w-64 {
    width: 16rem;
  }

  .sm\:w-auto {
    width: auto;
  }

  .sm\:w-px {
    width: 1px;
  }

  .sm\:w-1\/2 {
    width: 50%;
  }

  .sm\:w-1\/3 {
    width: 33.33333%;
  }

  .sm\:w-2\/3 {
    width: 66.66667%;
  }

  .sm\:w-1\/4 {
    width: 25%;
  }

  .sm\:w-3\/4 {
    width: 75%;
  }

  .sm\:w-1\/5 {
    width: 20%;
  }

  .sm\:w-2\/5 {
    width: 40%;
  }

  .sm\:w-3\/5 {
    width: 60%;
  }

  .sm\:w-4\/5 {
    width: 80%;
  }

  .sm\:w-1\/6 {
    width: 16.66667%;
  }

  .sm\:w-5\/6 {
    width: 83.33333%;
  }

  .sm\:w-full {
    width: 100%;
  }

  .sm\:w-screen {
    width: 100vw;
  }

  .sm\:w--borderfix {
    width: calc(100% - 1px);
  }

  .sm\:w-borderfix {
    width: calc(100% + 1px);
  }

  .sm\:w-fit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .sm\:z-0 {
    z-index: 0;
  }

  .sm\:z-10 {
    z-index: 10;
  }

  .sm\:z-20 {
    z-index: 20;
  }

  .sm\:z-30 {
    z-index: 30;
  }

  .sm\:z-40 {
    z-index: 40;
  }

  .sm\:z-50 {
    z-index: 50;
  }

  .sm\:z-100 {
    z-index: 100;
  }

  .sm\:z-200 {
    z-index: 200;
  }

  .sm\:z-300 {
    z-index: 300;
  }

  .sm\:z-400 {
    z-index: 400;
  }

  .sm\:z-500 {
    z-index: 500;
  }

  .sm\:z-1000 {
    z-index: 1000;
  }

  .sm\:z-2000 {
    z-index: 2000;
  }
}

@media (min-width: 768px) {
  .md\:col-xs {
    -webkit-box-flex: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  @media (min-width: 768px) {
    .col-xs {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .md\:col-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  @media (min-width: 768px) {
    .col-1 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .md\:col-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  @media (min-width: 768px) {
    .col-2 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .md\:col-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  @media (min-width: 768px) {
    .col-3 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .md\:col-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  @media (min-width: 768px) {
    .col-4 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .md\:col-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  @media (min-width: 768px) {
    .col-5 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .md\:col-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  @media (min-width: 768px) {
    .col-6 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .md\:col-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  @media (min-width: 768px) {
    .col-7 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .md\:col-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  @media (min-width: 768px) {
    .col-8 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .md\:col-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  @media (min-width: 768px) {
    .col-9 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .md\:col-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  @media (min-width: 768px) {
    .col-10 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .md\:col-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  @media (min-width: 768px) {
    .col-11 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .md\:col-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  @media (min-width: 768px) {
    .col-12 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .md\:col-offset-0 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 0;
  }

  @media (min-width: 768px) {
    .col-offset-0 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .md\:col-offset-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 8.33333333%;
  }

  @media (min-width: 768px) {
    .col-offset-1 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .md\:col-offset-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 16.66666667%;
  }

  @media (min-width: 768px) {
    .col-offset-2 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .md\:col-offset-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 25%;
  }

  @media (min-width: 768px) {
    .col-offset-3 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .md\:col-offset-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 33.33333333%;
  }

  @media (min-width: 768px) {
    .col-offset-4 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .md\:col-offset-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 41.66666667%;
  }

  @media (min-width: 768px) {
    .col-offset-5 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .md\:col-offset-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 50%;
  }

  @media (min-width: 768px) {
    .col-offset-6 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .md\:col-offset-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 58.33333333%;
  }

  @media (min-width: 768px) {
    .col-offset-7 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .md\:col-offset-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 66.66666667%;
  }

  @media (min-width: 768px) {
    .col-offset-8 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .md\:col-offset-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 75%;
  }

  @media (min-width: 768px) {
    .col-offset-9 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .md\:col-offset-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 83.33333333%;
  }

  @media (min-width: 768px) {
    .col-offset-10 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .md\:col-offset-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 91.66666667%;
  }

  @media (min-width: 768px) {
    .col-offset-11 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .md\:start-xs {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .md\:center-xs {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .md\:end-xs {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .md\:top-xs {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .md\:middle-xs {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .md\:bottom-xs {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .md\:around-xs {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .md\:between-xs {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .md\:first-xs {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .md\:last-xs {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .md\:row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
  }

  .md\:col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }

  .md\:grid-row {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-right: -0.5rem;
    margin-left: -0.5rem;
  }

  @media (min-width: 768px) {
    .grid-row {
      margin-right: -1rem;
      margin-left: -1rem;
    }
  }

  .grid-row .md\:grid-row {
    margin-right: -0.25rem;
    margin-left: -0.25rem;
  }

  @media (min-width: 768px) {
    .grid-row .grid-row {
      margin-right: -0.5rem;
      margin-left: -0.5rem;
    }
  }

  .md\:h1 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 6rem;
    line-height: calc(100% + 8px);
    letter-spacing: -4px;
  }

  .md\:h2 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 5rem;
    line-height: calc(100% + 8px);
    letter-spacing: -3px;
  }

  .md\:h3-large {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 4rem;
    line-height: calc(100% + 8px);
    letter-spacing: -2.66px;
  }

  .md\:h3 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 3.5rem;
    line-height: calc(100% + 8px);
    letter-spacing: -2px;
  }

  .md\:h4 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 3rem;
    line-height: calc(100% + 8px);
    letter-spacing: -1.5px;
  }

  .md\:h5 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 1.5rem;
    line-height: calc(100% + 8px);
    font-weight: 300;
    letter-spacing: -1px;
  }

  .md\:h6 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    line-height: calc(100% + 8px);
    font-weight: 300;
  }

  .md\:header-d0 {
    font-size: 2.5rem;
    line-height: calc(100% + 8px);
    letter-spacing: -1.5px;
  }

  .md\:header-d1 {
    font-size: 2rem;
    line-height: calc(100% + 8px);
    letter-spacing: -1.25px;
  }

  .md\:header-e1 {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: -1px;
  }

  .md\:grid-wrapper {
    margin: 0 auto;
    max-width: 1368px;
    padding: 0 2rem;
  }

  .md\:card-driver__content-outer--left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .md\:card-driver__content-outer--right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .md\:card-driver__content--lg {
    width: 83.33333%;
  }

  .md\:card-driver__content--md {
    width: 66.66666%;
  }

  .md\:card-driver__content--sm {
    width: 50%;
  }

  .md\:card-driver__content--smx {
    width: 33%;
  }

  .md\:card-driver__content--xs {
    width: 25%;
  }

  .md\:card-driver__content--auto {
    width: auto;
  }

  .md\:list-reset {
    list-style: none;
    padding: 0;
  }

  .md\:appearance-none {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .md\:bg-fixed {
    background-attachment: fixed;
  }

  .md\:bg-local {
    background-attachment: local;
  }

  .md\:bg-scroll {
    background-attachment: scroll;
  }

  .md\:bg-transparent {
    background-color: transparent;
  }

  .md\:bg-brand {
    background-color: #ff993d;
  }

  .md\:bg-dealer-brand {
    background-color: #305371;
  }

  .md\:bg-oem-brand {
    background-color: #91989e;
  }

  .md\:bg-black {
    background-color: #222;
  }

  .md\:bg-white {
    background-color: #fff;
  }

  .md\:bg-grey-darkest {
    background-color: #333;
  }

  .md\:bg-grey-darker {
    background-color: #626262;
  }

  .md\:bg-grey-md-dark {
    background-color: #999;
  }

  .md\:bg-grey-dark {
    background-color: #b2b2b2;
  }

  .md\:bg-grey {
    background-color: #ccc;
  }

  .md\:bg-grey-light {
    background-color: #ddd;
  }

  .md\:bg-grey-lighter {
    background-color: #eee;
  }

  .md\:bg-grey-lightest {
    background-color: #f8f8f8;
  }

  .md\:bg-grey-accent {
    background-color: #efefef;
  }

  .md\:bg-success {
    background-color: #449343;
  }

  .md\:hover\:bg-transparent:hover {
    background-color: transparent;
  }

  .md\:hover\:bg-brand:hover {
    background-color: #ff993d;
  }

  .md\:hover\:bg-dealer-brand:hover {
    background-color: #305371;
  }

  .md\:hover\:bg-oem-brand:hover {
    background-color: #91989e;
  }

  .md\:hover\:bg-black:hover {
    background-color: #222;
  }

  .md\:hover\:bg-white:hover {
    background-color: #fff;
  }

  .md\:hover\:bg-grey-darkest:hover {
    background-color: #333;
  }

  .md\:hover\:bg-grey-darker:hover {
    background-color: #626262;
  }

  .md\:hover\:bg-grey-md-dark:hover {
    background-color: #999;
  }

  .md\:hover\:bg-grey-dark:hover {
    background-color: #b2b2b2;
  }

  .md\:hover\:bg-grey:hover {
    background-color: #ccc;
  }

  .md\:hover\:bg-grey-light:hover {
    background-color: #ddd;
  }

  .md\:hover\:bg-grey-lighter:hover {
    background-color: #eee;
  }

  .md\:hover\:bg-grey-lightest:hover {
    background-color: #f8f8f8;
  }

  .md\:hover\:bg-grey-accent:hover {
    background-color: #efefef;
  }

  .md\:hover\:bg-success:hover {
    background-color: #449343;
  }

  .md\:bg-bottom {
    background-position: bottom;
  }

  .md\:bg-center {
    background-position: center;
  }

  .md\:bg-left {
    background-position: left;
  }

  .md\:bg-left-bottom {
    background-position: left bottom;
  }

  .md\:bg-left-top {
    background-position: left top;
  }

  .md\:bg-right {
    background-position: right;
  }

  .md\:bg-right-bottom {
    background-position: right bottom;
  }

  .md\:bg-right-top {
    background-position: right top;
  }

  .md\:bg-top {
    background-position: top;
  }

  .md\:bg-repeat {
    background-repeat: repeat;
  }

  .md\:bg-no-repeat {
    background-repeat: no-repeat;
  }

  .md\:bg-repeat-x {
    background-repeat: repeat-x;
  }

  .md\:bg-repeat-y {
    background-repeat: repeat-y;
  }

  .md\:bg-auto {
    background-size: auto;
  }

  .md\:bg-cover {
    background-size: cover;
  }

  .md\:bg-contain {
    background-size: contain;
  }

  .md\:border-transparent {
    border-color: transparent;
  }

  .md\:border-brand {
    border-color: #ff993d;
  }

  .md\:border-dealer-brand {
    border-color: #305371;
  }

  .md\:border-oem-brand {
    border-color: #91989e;
  }

  .md\:border-black {
    border-color: #222;
  }

  .md\:border-white {
    border-color: #fff;
  }

  .md\:border-grey-darkest {
    border-color: #333;
  }

  .md\:border-grey-darker {
    border-color: #626262;
  }

  .md\:border-grey-md-dark {
    border-color: #999;
  }

  .md\:border-grey-dark {
    border-color: #b2b2b2;
  }

  .md\:border-grey {
    border-color: #ccc;
  }

  .md\:border-grey-light {
    border-color: #ddd;
  }

  .md\:border-grey-lighter {
    border-color: #eee;
  }

  .md\:border-grey-lightest {
    border-color: #f8f8f8;
  }

  .md\:border-grey-accent {
    border-color: #efefef;
  }

  .md\:border-success {
    border-color: #449343;
  }

  .md\:hover\:border-transparent:hover {
    border-color: transparent;
  }

  .md\:hover\:border-brand:hover {
    border-color: #ff993d;
  }

  .md\:hover\:border-dealer-brand:hover {
    border-color: #305371;
  }

  .md\:hover\:border-oem-brand:hover {
    border-color: #91989e;
  }

  .md\:hover\:border-black:hover {
    border-color: #222;
  }

  .md\:hover\:border-white:hover {
    border-color: #fff;
  }

  .md\:hover\:border-grey-darkest:hover {
    border-color: #333;
  }

  .md\:hover\:border-grey-darker:hover {
    border-color: #626262;
  }

  .md\:hover\:border-grey-md-dark:hover {
    border-color: #999;
  }

  .md\:hover\:border-grey-dark:hover {
    border-color: #b2b2b2;
  }

  .md\:hover\:border-grey:hover {
    border-color: #ccc;
  }

  .md\:hover\:border-grey-light:hover {
    border-color: #ddd;
  }

  .md\:hover\:border-grey-lighter:hover {
    border-color: #eee;
  }

  .md\:hover\:border-grey-lightest:hover {
    border-color: #f8f8f8;
  }

  .md\:hover\:border-grey-accent:hover {
    border-color: #efefef;
  }

  .md\:hover\:border-success:hover {
    border-color: #449343;
  }

  .md\:rounded-none {
    border-radius: 0;
  }

  .md\:rounded-xm {
    border-radius: .125rem;
  }

  .md\:rounded {
    border-radius: .25rem;
  }

  .md\:rounded-lg {
    border-radius: .5rem;
  }

  .md\:rounded-full {
    border-radius: 9999px;
  }

  .md\:rounded-t-none {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .md\:rounded-r-none {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .md\:rounded-b-none {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .md\:rounded-l-none {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .md\:rounded-t-xm {
    border-top-left-radius: .125rem;
    border-top-right-radius: .125rem;
  }

  .md\:rounded-r-xm {
    border-top-right-radius: .125rem;
    border-bottom-right-radius: .125rem;
  }

  .md\:rounded-b-xm {
    border-bottom-right-radius: .125rem;
    border-bottom-left-radius: .125rem;
  }

  .md\:rounded-l-xm {
    border-top-left-radius: .125rem;
    border-bottom-left-radius: .125rem;
  }

  .md\:rounded-t {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
  }

  .md\:rounded-r {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
  }

  .md\:rounded-b {
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem;
  }

  .md\:rounded-l {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
  }

  .md\:rounded-t-lg {
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
  }

  .md\:rounded-r-lg {
    border-top-right-radius: .5rem;
    border-bottom-right-radius: .5rem;
  }

  .md\:rounded-b-lg {
    border-bottom-right-radius: .5rem;
    border-bottom-left-radius: .5rem;
  }

  .md\:rounded-l-lg {
    border-top-left-radius: .5rem;
    border-bottom-left-radius: .5rem;
  }

  .md\:rounded-t-full {
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .md\:rounded-r-full {
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .md\:rounded-b-full {
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .md\:rounded-l-full {
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .md\:rounded-tl-none {
    border-top-left-radius: 0;
  }

  .md\:rounded-tr-none {
    border-top-right-radius: 0;
  }

  .md\:rounded-br-none {
    border-bottom-right-radius: 0;
  }

  .md\:rounded-bl-none {
    border-bottom-left-radius: 0;
  }

  .md\:rounded-tl-xm {
    border-top-left-radius: .125rem;
  }

  .md\:rounded-tr-xm {
    border-top-right-radius: .125rem;
  }

  .md\:rounded-br-xm {
    border-bottom-right-radius: .125rem;
  }

  .md\:rounded-bl-xm {
    border-bottom-left-radius: .125rem;
  }

  .md\:rounded-tl {
    border-top-left-radius: .25rem;
  }

  .md\:rounded-tr {
    border-top-right-radius: .25rem;
  }

  .md\:rounded-br {
    border-bottom-right-radius: .25rem;
  }

  .md\:rounded-bl {
    border-bottom-left-radius: .25rem;
  }

  .md\:rounded-tl-lg {
    border-top-left-radius: .5rem;
  }

  .md\:rounded-tr-lg {
    border-top-right-radius: .5rem;
  }

  .md\:rounded-br-lg {
    border-bottom-right-radius: .5rem;
  }

  .md\:rounded-bl-lg {
    border-bottom-left-radius: .5rem;
  }

  .md\:rounded-tl-full {
    border-top-left-radius: 9999px;
  }

  .md\:rounded-tr-full {
    border-top-right-radius: 9999px;
  }

  .md\:rounded-br-full {
    border-bottom-right-radius: 9999px;
  }

  .md\:rounded-bl-full {
    border-bottom-left-radius: 9999px;
  }

  .md\:border-solid {
    border-style: solid;
  }

  .md\:border-dashed {
    border-style: dashed;
  }

  .md\:border-dotted {
    border-style: dotted;
  }

  .md\:border-none {
    border-style: none;
  }

  .md\:border-0 {
    border-width: 0;
  }

  .md\:border-1 {
    border-width: 1px;
  }

  .md\:border-2 {
    border-width: 2px;
  }

  .md\:border-4 {
    border-width: 4px;
  }

  .md\:border-8 {
    border-width: 8px;
  }

  .md\:border-t-0 {
    border-top-width: 0;
  }

  .md\:border-r-0 {
    border-right-width: 0;
  }

  .md\:border-b-0 {
    border-bottom-width: 0;
  }

  .md\:border-l-0 {
    border-left-width: 0;
  }

  .md\:border-t-1 {
    border-top-width: 1px;
  }

  .md\:border-r-1 {
    border-right-width: 1px;
  }

  .md\:border-b-1 {
    border-bottom-width: 1px;
  }

  .md\:border-l-1 {
    border-left-width: 1px;
  }

  .md\:border-t-2 {
    border-top-width: 2px;
  }

  .md\:border-r-2 {
    border-right-width: 2px;
  }

  .md\:border-b-2 {
    border-bottom-width: 2px;
  }

  .md\:border-l-2 {
    border-left-width: 2px;
  }

  .md\:border-t-4 {
    border-top-width: 4px;
  }

  .md\:border-r-4 {
    border-right-width: 4px;
  }

  .md\:border-b-4 {
    border-bottom-width: 4px;
  }

  .md\:border-l-4 {
    border-left-width: 4px;
  }

  .md\:border-t-8 {
    border-top-width: 8px;
  }

  .md\:border-r-8 {
    border-right-width: 8px;
  }

  .md\:border-b-8 {
    border-bottom-width: 8px;
  }

  .md\:border-l-8 {
    border-left-width: 8px;
  }

  .md\:cursor-auto {
    cursor: auto;
  }

  .md\:cursor-default {
    cursor: default;
  }

  .md\:cursor-pointer {
    cursor: pointer;
  }

  .md\:cursor-wait {
    cursor: wait;
  }

  .md\:cursor-move {
    cursor: move;
  }

  .md\:cursor-not-allowed {
    cursor: not-allowed;
  }

  .md\:block {
    display: block;
  }

  .md\:inline-block {
    display: inline-block;
  }

  .md\:inline {
    display: inline;
  }

  .md\:table {
    display: table;
  }

  .md\:table-row {
    display: table-row;
  }

  .md\:table-cell {
    display: table-cell;
  }

  .md\:hidden {
    display: none;
  }

  .md\:flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .md\:inline-flex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .md\:flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .md\:flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .md\:flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .md\:flex-col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .md\:flex-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .md\:flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }

  .md\:flex-no-wrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .md\:items-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .md\:items-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

  .md\:items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .md\:items-baseline {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }

  .md\:items-stretch {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .md\:self-auto {
    -ms-flex-item-align: auto;
        align-self: auto;
  }

  .md\:self-start {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }

  .md\:self-end {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }

  .md\:self-center {
    -ms-flex-item-align: center;
        align-self: center;
  }

  .md\:self-stretch {
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }

  .md\:justify-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .md\:justify-end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .md\:justify-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .md\:justify-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .md\:justify-around {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }

  .md\:content-center {
    -ms-flex-line-pack: center;
        align-content: center;
  }

  .md\:content-start {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }

  .md\:content-end {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }

  .md\:content-between {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }

  .md\:content-around {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }

  .md\:flex-1 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }

  .md\:flex-auto {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }

  .md\:flex-initial {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }

  .md\:flex-none {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }

  .md\:flex-grow {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }

  .md\:flex-shrink {
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }

  .md\:flex-no-grow {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }

  .md\:flex-no-shrink {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }

  .md\:float-right {
    float: right;
  }

  .md\:float-left {
    float: left;
  }

  .md\:float-none {
    float: none;
  }

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

  .md\:font-sans {
    font-family: "3form Graphik", Helvetica, sans-serif;
  }

  .md\:font-light {
    font-weight: 300;
  }

  .md\:font-normal {
    font-weight: 400;
  }

  .md\:font-medium {
    font-weight: 500;
  }

  .md\:hover\:font-light:hover {
    font-weight: 300;
  }

  .md\:hover\:font-normal:hover {
    font-weight: 400;
  }

  .md\:hover\:font-medium:hover {
    font-weight: 500;
  }

  .md\:h-1 {
    height: .25rem;
  }

  .md\:h-2 {
    height: .5rem;
  }

  .md\:h-3 {
    height: .75rem;
  }

  .md\:h-4 {
    height: 1rem;
  }

  .md\:h-5 {
    height: 1.25rem;
  }

  .md\:h-6 {
    height: 1.5rem;
  }

  .md\:h-8 {
    height: 2rem;
  }

  .md\:h-9 {
    height: 2.25rem;
  }

  .md\:h-12 {
    height: 3rem;
  }

  .md\:h-16 {
    height: 4rem;
  }

  .md\:h-24 {
    height: 6rem;
  }

  .md\:h-32 {
    height: 8rem;
  }

  .md\:h-48 {
    height: 12rem;
  }

  .md\:h-64 {
    height: 16rem;
  }

  .md\:h-auto {
    height: auto;
  }

  .md\:h-px {
    height: 1px;
  }

  .md\:h-full {
    height: 100%;
  }

  .md\:h-screen {
    height: 100vh;
  }

  .md\:h-90v {
    height: 90vh;
  }

  .md\:leading-none {
    line-height: 1;
  }

  .md\:leading-tightish {
    line-height: 1.1;
  }

  .md\:leading-tight {
    line-height: 1.25;
  }

  .md\:leading-normal {
    line-height: 1.5;
  }

  .md\:leading-normloose {
    line-height: 1.75;
  }

  .md\:leading-loose {
    line-height: 2;
  }

  .md\:leading-md {
    line-height: 24px;
  }

  .md\:leading-heading {
    line-height: calc(100% + 8px);
  }

  .md\:m-0 {
    margin: 0;
  }

  .md\:m-1 {
    margin: .25rem;
  }

  .md\:m-2 {
    margin: .5rem;
  }

  .md\:m-3 {
    margin: .75rem;
  }

  .md\:m-4 {
    margin: 1rem;
  }

  .md\:m-5 {
    margin: 1.25rem;
  }

  .md\:m-6 {
    margin: 1.5rem;
  }

  .md\:m-8 {
    margin: 2rem;
  }

  .md\:m-10 {
    margin: 2.5rem;
  }

  .md\:m-12 {
    margin: 3rem;
  }

  .md\:m-16 {
    margin: 4rem;
  }

  .md\:m-20 {
    margin: 5rem;
  }

  .md\:m-24 {
    margin: 6rem;
  }

  .md\:m-32 {
    margin: 8rem;
  }

  .md\:m-48 {
    margin: 12rem;
  }

  .md\:m-64 {
    margin: 16rem;
  }

  .md\:m-auto {
    margin: auto;
  }

  .md\:m-px {
    margin: 1px;
  }

  .md\:m--20 {
    margin: -5rem;
  }

  .md\:m-30\% {
    margin: 30%;
  }

  .md\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .md\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .md\:my-1 {
    margin-top: .25rem;
    margin-bottom: .25rem;
  }

  .md\:mx-1 {
    margin-left: .25rem;
    margin-right: .25rem;
  }

  .md\:my-2 {
    margin-top: .5rem;
    margin-bottom: .5rem;
  }

  .md\:mx-2 {
    margin-left: .5rem;
    margin-right: .5rem;
  }

  .md\:my-3 {
    margin-top: .75rem;
    margin-bottom: .75rem;
  }

  .md\:mx-3 {
    margin-left: .75rem;
    margin-right: .75rem;
  }

  .md\:my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .md\:mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .md\:my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .md\:mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .md\:my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .md\:mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .md\:my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .md\:mx-8 {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .md\:my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .md\:mx-10 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .md\:my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .md\:mx-12 {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .md\:my-16 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .md\:mx-16 {
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .md\:my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .md\:mx-20 {
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .md\:my-24 {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .md\:mx-24 {
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .md\:my-32 {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .md\:mx-32 {
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .md\:my-48 {
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .md\:mx-48 {
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .md\:my-64 {
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .md\:mx-64 {
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .md\:my-auto {
    margin-top: auto;
    margin-bottom: auto;
  }

  .md\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .md\:my-px {
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .md\:mx-px {
    margin-left: 1px;
    margin-right: 1px;
  }

  .md\:my--20 {
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .md\:mx--20 {
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .md\:my-30\% {
    margin-top: 30%;
    margin-bottom: 30%;
  }

  .md\:mx-30\% {
    margin-left: 30%;
    margin-right: 30%;
  }

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

  .md\:mr-0 {
    margin-right: 0;
  }

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

  .md\:ml-0 {
    margin-left: 0;
  }

  .md\:mt-1 {
    margin-top: .25rem;
  }

  .md\:mr-1 {
    margin-right: .25rem;
  }

  .md\:mb-1 {
    margin-bottom: .25rem;
  }

  .md\:ml-1 {
    margin-left: .25rem;
  }

  .md\:mt-2 {
    margin-top: .5rem;
  }

  .md\:mr-2 {
    margin-right: .5rem;
  }

  .md\:mb-2 {
    margin-bottom: .5rem;
  }

  .md\:ml-2 {
    margin-left: .5rem;
  }

  .md\:mt-3 {
    margin-top: .75rem;
  }

  .md\:mr-3 {
    margin-right: .75rem;
  }

  .md\:mb-3 {
    margin-bottom: .75rem;
  }

  .md\:ml-3 {
    margin-left: .75rem;
  }

  .md\:mt-4 {
    margin-top: 1rem;
  }

  .md\:mr-4 {
    margin-right: 1rem;
  }

  .md\:mb-4 {
    margin-bottom: 1rem;
  }

  .md\:ml-4 {
    margin-left: 1rem;
  }

  .md\:mt-5 {
    margin-top: 1.25rem;
  }

  .md\:mr-5 {
    margin-right: 1.25rem;
  }

  .md\:mb-5 {
    margin-bottom: 1.25rem;
  }

  .md\:ml-5 {
    margin-left: 1.25rem;
  }

  .md\:mt-6 {
    margin-top: 1.5rem;
  }

  .md\:mr-6 {
    margin-right: 1.5rem;
  }

  .md\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .md\:ml-6 {
    margin-left: 1.5rem;
  }

  .md\:mt-8 {
    margin-top: 2rem;
  }

  .md\:mr-8 {
    margin-right: 2rem;
  }

  .md\:mb-8 {
    margin-bottom: 2rem;
  }

  .md\:ml-8 {
    margin-left: 2rem;
  }

  .md\:mt-10 {
    margin-top: 2.5rem;
  }

  .md\:mr-10 {
    margin-right: 2.5rem;
  }

  .md\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .md\:ml-10 {
    margin-left: 2.5rem;
  }

  .md\:mt-12 {
    margin-top: 3rem;
  }

  .md\:mr-12 {
    margin-right: 3rem;
  }

  .md\:mb-12 {
    margin-bottom: 3rem;
  }

  .md\:ml-12 {
    margin-left: 3rem;
  }

  .md\:mt-16 {
    margin-top: 4rem;
  }

  .md\:mr-16 {
    margin-right: 4rem;
  }

  .md\:mb-16 {
    margin-bottom: 4rem;
  }

  .md\:ml-16 {
    margin-left: 4rem;
  }

  .md\:mt-20 {
    margin-top: 5rem;
  }

  .md\:mr-20 {
    margin-right: 5rem;
  }

  .md\:mb-20 {
    margin-bottom: 5rem;
  }

  .md\:ml-20 {
    margin-left: 5rem;
  }

  .md\:mt-24 {
    margin-top: 6rem;
  }

  .md\:mr-24 {
    margin-right: 6rem;
  }

  .md\:mb-24 {
    margin-bottom: 6rem;
  }

  .md\:ml-24 {
    margin-left: 6rem;
  }

  .md\:mt-32 {
    margin-top: 8rem;
  }

  .md\:mr-32 {
    margin-right: 8rem;
  }

  .md\:mb-32 {
    margin-bottom: 8rem;
  }

  .md\:ml-32 {
    margin-left: 8rem;
  }

  .md\:mt-48 {
    margin-top: 12rem;
  }

  .md\:mr-48 {
    margin-right: 12rem;
  }

  .md\:mb-48 {
    margin-bottom: 12rem;
  }

  .md\:ml-48 {
    margin-left: 12rem;
  }

  .md\:mt-64 {
    margin-top: 16rem;
  }

  .md\:mr-64 {
    margin-right: 16rem;
  }

  .md\:mb-64 {
    margin-bottom: 16rem;
  }

  .md\:ml-64 {
    margin-left: 16rem;
  }

  .md\:mt-auto {
    margin-top: auto;
  }

  .md\:mr-auto {
    margin-right: auto;
  }

  .md\:mb-auto {
    margin-bottom: auto;
  }

  .md\:ml-auto {
    margin-left: auto;
  }

  .md\:mt-px {
    margin-top: 1px;
  }

  .md\:mr-px {
    margin-right: 1px;
  }

  .md\:mb-px {
    margin-bottom: 1px;
  }

  .md\:ml-px {
    margin-left: 1px;
  }

  .md\:mt--20 {
    margin-top: -5rem;
  }

  .md\:mr--20 {
    margin-right: -5rem;
  }

  .md\:mb--20 {
    margin-bottom: -5rem;
  }

  .md\:ml--20 {
    margin-left: -5rem;
  }

  .md\:mt-30\% {
    margin-top: 30%;
  }

  .md\:mr-30\% {
    margin-right: 30%;
  }

  .md\:mb-30\% {
    margin-bottom: 30%;
  }

  .md\:ml-30\% {
    margin-left: 30%;
  }

  .md\:max-h-full {
    max-height: 100%;
  }

  .md\:max-h-md {
    max-height: 40rem;
  }

  .md\:max-h-lg {
    max-height: 50rem;
  }

  .md\:max-h-screen {
    max-height: 100vh;
  }

  .md\:max-w-50 {
    max-width: 50%;
  }

  .md\:max-w-xxs {
    max-width: 16rem;
  }

  .md\:max-w-xs {
    max-width: 20rem;
  }

  .md\:max-w-sm {
    max-width: 30rem;
  }

  .md\:max-w-md {
    max-width: 40rem;
  }

  .md\:max-w-lg {
    max-width: 50rem;
  }

  .md\:max-w-xl {
    max-width: 60rem;
  }

  .md\:max-w-2xl {
    max-width: 70rem;
  }

  .md\:max-w-3xl {
    max-width: 80rem;
  }

  .md\:max-w-4xl {
    max-width: 90rem;
  }

  .md\:max-w-5xl {
    max-width: 100rem;
  }

  .md\:max-w-full {
    max-width: 100%;
  }

  .md\:min-h-0 {
    min-height: 0;
  }

  .md\:min-h-full {
    min-height: 100%;
  }

  .md\:min-h-screen {
    min-height: 100vh;
  }

  .md\:min-w-0 {
    min-width: 0;
  }

  .md\:min-w-full {
    min-width: 100%;
  }

  .md\:-m-0 {
    margin: 0;
  }

  .md\:-m-1 {
    margin: -0.25rem;
  }

  .md\:-m-2 {
    margin: -0.5rem;
  }

  .md\:-m-3 {
    margin: -0.75rem;
  }

  .md\:-m-4 {
    margin: -1rem;
  }

  .md\:-m-5 {
    margin: -1.25rem;
  }

  .md\:-m-6 {
    margin: -1.5rem;
  }

  .md\:-m-8 {
    margin: -2rem;
  }

  .md\:-m-12 {
    margin: -3rem;
  }

  .md\:-m-16 {
    margin: -4rem;
  }

  .md\:-m-20 {
    margin: -5rem;
  }

  .md\:-m-24 {
    margin: -6rem;
  }

  .md\:-m-32 {
    margin: -8rem;
  }

  .md\:-m-48 {
    margin: -12rem;
  }

  .md\:-m-64 {
    margin: -16rem;
  }

  .md\:-m-px {
    margin: -1px;
  }

  .md\:-m-30\% {
    margin: -30%;
  }

  .md\:-my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .md\:-mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .md\:-my-1 {
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .md\:-mx-1 {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .md\:-my-2 {
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .md\:-mx-2 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .md\:-my-3 {
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .md\:-mx-3 {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .md\:-my-4 {
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .md\:-mx-4 {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .md\:-my-5 {
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .md\:-mx-5 {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .md\:-my-6 {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .md\:-mx-6 {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .md\:-my-8 {
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .md\:-mx-8 {
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .md\:-my-12 {
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .md\:-mx-12 {
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .md\:-my-16 {
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .md\:-mx-16 {
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .md\:-my-20 {
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .md\:-mx-20 {
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .md\:-my-24 {
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .md\:-mx-24 {
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .md\:-my-32 {
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .md\:-mx-32 {
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .md\:-my-48 {
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .md\:-mx-48 {
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .md\:-my-64 {
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .md\:-mx-64 {
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .md\:-my-px {
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .md\:-mx-px {
    margin-left: -1px;
    margin-right: -1px;
  }

  .md\:-my-30\% {
    margin-top: -30%;
    margin-bottom: -30%;
  }

  .md\:-mx-30\% {
    margin-left: -30%;
    margin-right: -30%;
  }

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

  .md\:-mr-0 {
    margin-right: 0;
  }

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

  .md\:-ml-0 {
    margin-left: 0;
  }

  .md\:-mt-1 {
    margin-top: -0.25rem;
  }

  .md\:-mr-1 {
    margin-right: -0.25rem;
  }

  .md\:-mb-1 {
    margin-bottom: -0.25rem;
  }

  .md\:-ml-1 {
    margin-left: -0.25rem;
  }

  .md\:-mt-2 {
    margin-top: -0.5rem;
  }

  .md\:-mr-2 {
    margin-right: -0.5rem;
  }

  .md\:-mb-2 {
    margin-bottom: -0.5rem;
  }

  .md\:-ml-2 {
    margin-left: -0.5rem;
  }

  .md\:-mt-3 {
    margin-top: -0.75rem;
  }

  .md\:-mr-3 {
    margin-right: -0.75rem;
  }

  .md\:-mb-3 {
    margin-bottom: -0.75rem;
  }

  .md\:-ml-3 {
    margin-left: -0.75rem;
  }

  .md\:-mt-4 {
    margin-top: -1rem;
  }

  .md\:-mr-4 {
    margin-right: -1rem;
  }

  .md\:-mb-4 {
    margin-bottom: -1rem;
  }

  .md\:-ml-4 {
    margin-left: -1rem;
  }

  .md\:-mt-5 {
    margin-top: -1.25rem;
  }

  .md\:-mr-5 {
    margin-right: -1.25rem;
  }

  .md\:-mb-5 {
    margin-bottom: -1.25rem;
  }

  .md\:-ml-5 {
    margin-left: -1.25rem;
  }

  .md\:-mt-6 {
    margin-top: -1.5rem;
  }

  .md\:-mr-6 {
    margin-right: -1.5rem;
  }

  .md\:-mb-6 {
    margin-bottom: -1.5rem;
  }

  .md\:-ml-6 {
    margin-left: -1.5rem;
  }

  .md\:-mt-8 {
    margin-top: -2rem;
  }

  .md\:-mr-8 {
    margin-right: -2rem;
  }

  .md\:-mb-8 {
    margin-bottom: -2rem;
  }

  .md\:-ml-8 {
    margin-left: -2rem;
  }

  .md\:-mt-12 {
    margin-top: -3rem;
  }

  .md\:-mr-12 {
    margin-right: -3rem;
  }

  .md\:-mb-12 {
    margin-bottom: -3rem;
  }

  .md\:-ml-12 {
    margin-left: -3rem;
  }

  .md\:-mt-16 {
    margin-top: -4rem;
  }

  .md\:-mr-16 {
    margin-right: -4rem;
  }

  .md\:-mb-16 {
    margin-bottom: -4rem;
  }

  .md\:-ml-16 {
    margin-left: -4rem;
  }

  .md\:-mt-20 {
    margin-top: -5rem;
  }

  .md\:-mr-20 {
    margin-right: -5rem;
  }

  .md\:-mb-20 {
    margin-bottom: -5rem;
  }

  .md\:-ml-20 {
    margin-left: -5rem;
  }

  .md\:-mt-24 {
    margin-top: -6rem;
  }

  .md\:-mr-24 {
    margin-right: -6rem;
  }

  .md\:-mb-24 {
    margin-bottom: -6rem;
  }

  .md\:-ml-24 {
    margin-left: -6rem;
  }

  .md\:-mt-32 {
    margin-top: -8rem;
  }

  .md\:-mr-32 {
    margin-right: -8rem;
  }

  .md\:-mb-32 {
    margin-bottom: -8rem;
  }

  .md\:-ml-32 {
    margin-left: -8rem;
  }

  .md\:-mt-48 {
    margin-top: -12rem;
  }

  .md\:-mr-48 {
    margin-right: -12rem;
  }

  .md\:-mb-48 {
    margin-bottom: -12rem;
  }

  .md\:-ml-48 {
    margin-left: -12rem;
  }

  .md\:-mt-64 {
    margin-top: -16rem;
  }

  .md\:-mr-64 {
    margin-right: -16rem;
  }

  .md\:-mb-64 {
    margin-bottom: -16rem;
  }

  .md\:-ml-64 {
    margin-left: -16rem;
  }

  .md\:-mt-px {
    margin-top: -1px;
  }

  .md\:-mr-px {
    margin-right: -1px;
  }

  .md\:-mb-px {
    margin-bottom: -1px;
  }

  .md\:-ml-px {
    margin-left: -1px;
  }

  .md\:-mt-30\% {
    margin-top: -30%;
  }

  .md\:-mr-30\% {
    margin-right: -30%;
  }

  .md\:-mb-30\% {
    margin-bottom: -30%;
  }

  .md\:-ml-30\% {
    margin-left: -30%;
  }

  .md\:opacity-0 {
    opacity: 0;
  }

  .md\:opacity-20 {
    opacity: .2;
  }

  .md\:opacity-40 {
    opacity: .4;
  }

  .md\:opacity-60 {
    opacity: .6;
  }

  .md\:opacity-80 {
    opacity: .8;
  }

  .md\:opacity-100 {
    opacity: 1;
  }

  .md\:overflow-auto {
    overflow: auto;
  }

  .md\:overflow-hidden {
    overflow: hidden;
  }

  .md\:overflow-visible {
    overflow: visible;
  }

  .md\:overflow-scroll {
    overflow: scroll;
  }

  .md\:overflow-x-auto {
    overflow-x: auto;
  }

  .md\:overflow-y-auto {
    overflow-y: auto;
  }

  .md\:overflow-x-hidden {
    overflow-x: hidden;
  }

  .md\:overflow-y-hidden {
    overflow-y: hidden;
  }

  .md\:overflow-x-visible {
    overflow-x: visible;
  }

  .md\:overflow-y-visible {
    overflow-y: visible;
  }

  .md\:overflow-x-scroll {
    overflow-x: scroll;
  }

  .md\:overflow-y-scroll {
    overflow-y: scroll;
  }

  .md\:scrolling-touch {
    -webkit-overflow-scrolling: touch;
  }

  .md\:scrolling-auto {
    -webkit-overflow-scrolling: auto;
  }

  .md\:p-0 {
    padding: 0;
  }

  .md\:p-1 {
    padding: .25rem;
  }

  .md\:p-2 {
    padding: .5rem;
  }

  .md\:p-3 {
    padding: .75rem;
  }

  .md\:p-4 {
    padding: 1rem;
  }

  .md\:p-5 {
    padding: 1.25rem;
  }

  .md\:p-6 {
    padding: 1.5rem;
  }

  .md\:p-8 {
    padding: 2rem;
  }

  .md\:p-10 {
    padding: 2.5rem;
  }

  .md\:p-12 {
    padding: 3rem;
  }

  .md\:p-16 {
    padding: 4rem;
  }

  .md\:p-20 {
    padding: 5rem;
  }

  .md\:p-24 {
    padding: 6rem;
  }

  .md\:p-32 {
    padding: 8rem;
  }

  .md\:p-48 {
    padding: 12rem;
  }

  .md\:p-64 {
    padding: 16rem;
  }

  .md\:p-px {
    padding: 1px;
  }

  .md\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .md\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .md\:py-1 {
    padding-top: .25rem;
    padding-bottom: .25rem;
  }

  .md\:px-1 {
    padding-left: .25rem;
    padding-right: .25rem;
  }

  .md\:py-2 {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .md\:px-2 {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .md\:py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .md\:px-3 {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .md\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .md\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .md\:py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .md\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .md\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .md\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .md\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .md\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .md\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .md\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .md\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .md\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .md\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .md\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .md\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .md\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .md\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .md\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .md\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .md\:px-32 {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .md\:py-48 {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .md\:px-48 {
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .md\:py-64 {
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .md\:px-64 {
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .md\:py-px {
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .md\:px-px {
    padding-left: 1px;
    padding-right: 1px;
  }

  .md\:pt-0 {
    padding-top: 0;
  }

  .md\:pr-0 {
    padding-right: 0;
  }

  .md\:pb-0 {
    padding-bottom: 0;
  }

  .md\:pl-0 {
    padding-left: 0;
  }

  .md\:pt-1 {
    padding-top: .25rem;
  }

  .md\:pr-1 {
    padding-right: .25rem;
  }

  .md\:pb-1 {
    padding-bottom: .25rem;
  }

  .md\:pl-1 {
    padding-left: .25rem;
  }

  .md\:pt-2 {
    padding-top: .5rem;
  }

  .md\:pr-2 {
    padding-right: .5rem;
  }

  .md\:pb-2 {
    padding-bottom: .5rem;
  }

  .md\:pl-2 {
    padding-left: .5rem;
  }

  .md\:pt-3 {
    padding-top: .75rem;
  }

  .md\:pr-3 {
    padding-right: .75rem;
  }

  .md\:pb-3 {
    padding-bottom: .75rem;
  }

  .md\:pl-3 {
    padding-left: .75rem;
  }

  .md\:pt-4 {
    padding-top: 1rem;
  }

  .md\:pr-4 {
    padding-right: 1rem;
  }

  .md\:pb-4 {
    padding-bottom: 1rem;
  }

  .md\:pl-4 {
    padding-left: 1rem;
  }

  .md\:pt-5 {
    padding-top: 1.25rem;
  }

  .md\:pr-5 {
    padding-right: 1.25rem;
  }

  .md\:pb-5 {
    padding-bottom: 1.25rem;
  }

  .md\:pl-5 {
    padding-left: 1.25rem;
  }

  .md\:pt-6 {
    padding-top: 1.5rem;
  }

  .md\:pr-6 {
    padding-right: 1.5rem;
  }

  .md\:pb-6 {
    padding-bottom: 1.5rem;
  }

  .md\:pl-6 {
    padding-left: 1.5rem;
  }

  .md\:pt-8 {
    padding-top: 2rem;
  }

  .md\:pr-8 {
    padding-right: 2rem;
  }

  .md\:pb-8 {
    padding-bottom: 2rem;
  }

  .md\:pl-8 {
    padding-left: 2rem;
  }

  .md\:pt-10 {
    padding-top: 2.5rem;
  }

  .md\:pr-10 {
    padding-right: 2.5rem;
  }

  .md\:pb-10 {
    padding-bottom: 2.5rem;
  }

  .md\:pl-10 {
    padding-left: 2.5rem;
  }

  .md\:pt-12 {
    padding-top: 3rem;
  }

  .md\:pr-12 {
    padding-right: 3rem;
  }

  .md\:pb-12 {
    padding-bottom: 3rem;
  }

  .md\:pl-12 {
    padding-left: 3rem;
  }

  .md\:pt-16 {
    padding-top: 4rem;
  }

  .md\:pr-16 {
    padding-right: 4rem;
  }

  .md\:pb-16 {
    padding-bottom: 4rem;
  }

  .md\:pl-16 {
    padding-left: 4rem;
  }

  .md\:pt-20 {
    padding-top: 5rem;
  }

  .md\:pr-20 {
    padding-right: 5rem;
  }

  .md\:pb-20 {
    padding-bottom: 5rem;
  }

  .md\:pl-20 {
    padding-left: 5rem;
  }

  .md\:pt-24 {
    padding-top: 6rem;
  }

  .md\:pr-24 {
    padding-right: 6rem;
  }

  .md\:pb-24 {
    padding-bottom: 6rem;
  }

  .md\:pl-24 {
    padding-left: 6rem;
  }

  .md\:pt-32 {
    padding-top: 8rem;
  }

  .md\:pr-32 {
    padding-right: 8rem;
  }

  .md\:pb-32 {
    padding-bottom: 8rem;
  }

  .md\:pl-32 {
    padding-left: 8rem;
  }

  .md\:pt-48 {
    padding-top: 12rem;
  }

  .md\:pr-48 {
    padding-right: 12rem;
  }

  .md\:pb-48 {
    padding-bottom: 12rem;
  }

  .md\:pl-48 {
    padding-left: 12rem;
  }

  .md\:pt-64 {
    padding-top: 16rem;
  }

  .md\:pr-64 {
    padding-right: 16rem;
  }

  .md\:pb-64 {
    padding-bottom: 16rem;
  }

  .md\:pl-64 {
    padding-left: 16rem;
  }

  .md\:pt-px {
    padding-top: 1px;
  }

  .md\:pr-px {
    padding-right: 1px;
  }

  .md\:pb-px {
    padding-bottom: 1px;
  }

  .md\:pl-px {
    padding-left: 1px;
  }

  .md\:pointer-events-none {
    pointer-events: none;
  }

  .md\:pointer-events-auto {
    pointer-events: auto;
  }

  .md\:static {
    position: static;
  }

  .md\:fixed {
    position: fixed;
  }

  .md\:absolute {
    position: absolute;
  }

  .md\:relative {
    position: relative;
  }

  .md\:sticky {
    position: sticky;
  }

  .md\:pin-none {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .md\:pin {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .md\:pin-y {
    top: 0;
    bottom: 0;
  }

  .md\:pin-x {
    right: 0;
    left: 0;
  }

  .md\:pin-t {
    top: 0;
  }

  .md\:pin-r {
    right: 0;
  }

  .md\:pin-b {
    bottom: 0;
  }

  .md\:pin-l {
    left: 0;
  }

  .md\:resize-none {
    resize: none;
  }

  .md\:resize-y {
    resize: vertical;
  }

  .md\:resize-x {
    resize: horizontal;
  }

  .md\:resize {
    resize: both;
  }

  .md\:shadow-swatch-sm {
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .1);
            box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .1);
  }

  .md\:shadow-swatch-lg {
    -webkit-box-shadow: 0 8px 8px 0 rgba(34, 34, 34, .1);
            box-shadow: 0 8px 8px 0 rgba(34, 34, 34, .1);
  }

  .md\:shadow-swatch-xl {
    -webkit-box-shadow: 0 16px 16px 0 rgba(34, 34, 34, .1);
            box-shadow: 0 16px 16px 0 rgba(34, 34, 34, .1);
  }

  .md\:shadow-dark {
    -webkit-box-shadow: 8px 8px 0px 0px #222;
            box-shadow: 8px 8px 0px 0px #222;
  }

  .md\:shadow-button-white-off {
    -webkit-box-shadow: 0 2px 0 0 #eee;
            box-shadow: 0 2px 0 0 #eee;
  }

  .md\:shadow-button-white-hover {
    -webkit-box-shadow: 8px 8px 0 0 #eee;
            box-shadow: 8px 8px 0 0 #eee;
  }

  .md\:shadow-button-white-hover-vertical {
    -webkit-box-shadow: 0px 8px 0 0 #eee;
            box-shadow: 0px 8px 0 0 #eee;
  }

  .md\:shadow-button-black-hover {
    -webkit-box-shadow: 8px 8px 0 0 #000;
            box-shadow: 8px 8px 0 0 #000;
  }

  .md\:shadow-tooltip-white-off {
    -webkit-box-shadow: 0 2px 0 0 #e9e9e9;
            box-shadow: 0 2px 0 0 #e9e9e9;
  }

  .md\:shadow-tooltip-white-hover {
    -webkit-box-shadow: 4px 4px 0 0 #e9e9e9;
            box-shadow: 4px 4px 0 0 #e9e9e9;
  }

  .md\:shadow-pagination-greg-light-hover {
    -webkit-box-shadow: 2px 2px 0 0 #b2b2b2;
            box-shadow: 2px 2px 0 0 #b2b2b2;
  }

  .md\:shadow-dropdown-off {
    -webkit-box-shadow: 0 2px 0 0 #ddd;
            box-shadow: 0 2px 0 0 #ddd;
  }

  .md\:shadow-dropdown-hover {
    -webkit-box-shadow: 0 8px 0 0 #ddd;
            box-shadow: 0 8px 0 0 #ddd;
  }

  .md\:shadow-dropdown-dark-off {
    -webkit-box-shadow: 0 2px 0 0 #111;
            box-shadow: 0 2px 0 0 #111;
  }

  .md\:shadow-tooltip-grey-light-active {
    -webkit-box-shadow: 0 2px 0 0 #ccc;
            box-shadow: 0 2px 0 0 #ccc;
  }

  .md\:shadow-inset-top-black {
    -webkit-box-shadow: inset 0px 2px 0px 0px #222;
            box-shadow: inset 0px 2px 0px 0px #222;
  }

  .md\:shadow-inset-top-white {
    -webkit-box-shadow: inset 0px 2px 0px 0px #fff;
            box-shadow: inset 0px 2px 0px 0px #fff;
  }

  .md\:shadow-none {
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .md\:table-auto {
    table-layout: auto;
  }

  .md\:table-fixed {
    table-layout: fixed;
  }

  .md\:text-left {
    text-align: left;
  }

  .md\:text-center {
    text-align: center;
  }

  .md\:text-right {
    text-align: right;
  }

  .md\:text-justify {
    text-align: justify;
  }

  .md\:text-transparent {
    color: transparent;
  }

  .md\:text-brand {
    color: #ff993d;
  }

  .md\:text-dealer-brand {
    color: #305371;
  }

  .md\:text-oem-brand {
    color: #91989e;
  }

  .md\:text-black {
    color: #222;
  }

  .md\:text-white {
    color: #fff;
  }

  .md\:text-grey-darkest {
    color: #333;
  }

  .md\:text-grey-darker {
    color: #626262;
  }

  .md\:text-grey-md-dark {
    color: #999;
  }

  .md\:text-grey-dark {
    color: #b2b2b2;
  }

  .md\:text-grey {
    color: #ccc;
  }

  .md\:text-grey-light {
    color: #ddd;
  }

  .md\:text-grey-lighter {
    color: #eee;
  }

  .md\:text-grey-lightest {
    color: #f8f8f8;
  }

  .md\:text-grey-accent {
    color: #efefef;
  }

  .md\:text-success {
    color: #449343;
  }

  .md\:hover\:text-transparent:hover {
    color: transparent;
  }

  .md\:hover\:text-brand:hover {
    color: #ff993d;
  }

  .md\:hover\:text-dealer-brand:hover {
    color: #305371;
  }

  .md\:hover\:text-oem-brand:hover {
    color: #91989e;
  }

  .md\:hover\:text-black:hover {
    color: #222;
  }

  .md\:hover\:text-white:hover {
    color: #fff;
  }

  .md\:hover\:text-grey-darkest:hover {
    color: #333;
  }

  .md\:hover\:text-grey-darker:hover {
    color: #626262;
  }

  .md\:hover\:text-grey-md-dark:hover {
    color: #999;
  }

  .md\:hover\:text-grey-dark:hover {
    color: #b2b2b2;
  }

  .md\:hover\:text-grey:hover {
    color: #ccc;
  }

  .md\:hover\:text-grey-light:hover {
    color: #ddd;
  }

  .md\:hover\:text-grey-lighter:hover {
    color: #eee;
  }

  .md\:hover\:text-grey-lightest:hover {
    color: #f8f8f8;
  }

  .md\:hover\:text-grey-accent:hover {
    color: #efefef;
  }

  .md\:hover\:text-success:hover {
    color: #449343;
  }

  .md\:text-xxs {
    font-size: .625rem;
  }

  .md\:text-xs {
    font-size: .75rem;
  }

  .md\:text-sm {
    font-size: .875rem;
  }

  .md\:text-base {
    font-size: 1rem;
  }

  .md\:text-smd {
    font-size: 1.25rem;
  }

  .md\:text-md {
    font-size: 1.5rem;
  }

  .md\:text-lmd {
    font-size: 1.75rem;
  }

  .md\:text-lg {
    font-size: 2rem;
  }

  .md\:text-xl {
    font-size: 2.5rem;
  }

  .md\:text-2xl {
    font-size: 3rem;
  }

  .md\:text-3xl {
    font-size: 3.5rem;
  }

  .md\:text-4xl {
    font-size: 5rem;
  }

  .md\:text-5xl {
    font-size: 6rem;
  }

  .md\:italic {
    font-style: italic;
  }

  .md\:roman {
    font-style: normal;
  }

  .md\:uppercase {
    text-transform: uppercase;
  }

  .md\:lowercase {
    text-transform: lowercase;
  }

  .md\:capitalize {
    text-transform: capitalize;
  }

  .md\:normal-case {
    text-transform: none;
  }

  .md\:underline {
    text-decoration: underline;
  }

  .md\:line-through {
    text-decoration: line-through;
  }

  .md\:no-underline {
    text-decoration: none;
  }

  .md\:antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .md\:subpixel-antialiased {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .md\:hover\:italic:hover {
    font-style: italic;
  }

  .md\:hover\:roman:hover {
    font-style: normal;
  }

  .md\:hover\:uppercase:hover {
    text-transform: uppercase;
  }

  .md\:hover\:lowercase:hover {
    text-transform: lowercase;
  }

  .md\:hover\:capitalize:hover {
    text-transform: capitalize;
  }

  .md\:hover\:normal-case:hover {
    text-transform: none;
  }

  .md\:hover\:underline:hover {
    text-decoration: underline;
  }

  .md\:hover\:line-through:hover {
    text-decoration: line-through;
  }

  .md\:hover\:no-underline:hover {
    text-decoration: none;
  }

  .md\:hover\:antialiased:hover {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .md\:hover\:subpixel-antialiased:hover {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .md\:tracking-tight {
    letter-spacing: -0.05em;
  }

  .md\:tracking-tightish {
    letter-spacing: -0.032em;
  }

  .md\:tracking-normal {
    letter-spacing: 0;
  }

  .md\:tracking-wide {
    letter-spacing: .05em;
  }

  .md\:select-none {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .md\:select-text {
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .md\:align-baseline {
    vertical-align: baseline;
  }

  .md\:align-top {
    vertical-align: top;
  }

  .md\:align-middle {
    vertical-align: middle;
  }

  .md\:align-bottom {
    vertical-align: bottom;
  }

  .md\:align-text-top {
    vertical-align: text-top;
  }

  .md\:align-text-bottom {
    vertical-align: text-bottom;
  }

  .md\:visible {
    visibility: visible;
  }

  .md\:invisible {
    visibility: hidden;
  }

  .md\:whitespace-normal {
    white-space: normal;
  }

  .md\:whitespace-no-wrap {
    white-space: nowrap;
  }

  .md\:whitespace-pre {
    white-space: pre;
  }

  .md\:whitespace-pre-line {
    white-space: pre-line;
  }

  .md\:whitespace-pre-wrap {
    white-space: pre-wrap;
  }

  .md\:break-words {
    word-wrap: break-word;
  }

  .md\:break-normal {
    word-wrap: normal;
  }

  .md\:truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .md\:w-1 {
    width: .25rem;
  }

  .md\:w-2 {
    width: .5rem;
  }

  .md\:w-3 {
    width: .75rem;
  }

  .md\:w-4 {
    width: 1rem;
  }

  .md\:w-5 {
    width: 1.25rem;
  }

  .md\:w-6 {
    width: 1.5rem;
  }

  .md\:w-8 {
    width: 2rem;
  }

  .md\:w-12 {
    width: 3rem;
  }

  .md\:w-16 {
    width: 4rem;
  }

  .md\:w-24 {
    width: 6rem;
  }

  .md\:w-32 {
    width: 8rem;
  }

  .md\:w-48 {
    width: 12rem;
  }

  .md\:w-64 {
    width: 16rem;
  }

  .md\:w-auto {
    width: auto;
  }

  .md\:w-px {
    width: 1px;
  }

  .md\:w-1\/2 {
    width: 50%;
  }

  .md\:w-1\/3 {
    width: 33.33333%;
  }

  .md\:w-2\/3 {
    width: 66.66667%;
  }

  .md\:w-1\/4 {
    width: 25%;
  }

  .md\:w-3\/4 {
    width: 75%;
  }

  .md\:w-1\/5 {
    width: 20%;
  }

  .md\:w-2\/5 {
    width: 40%;
  }

  .md\:w-3\/5 {
    width: 60%;
  }

  .md\:w-4\/5 {
    width: 80%;
  }

  .md\:w-1\/6 {
    width: 16.66667%;
  }

  .md\:w-5\/6 {
    width: 83.33333%;
  }

  .md\:w-full {
    width: 100%;
  }

  .md\:w-screen {
    width: 100vw;
  }

  .md\:w--borderfix {
    width: calc(100% - 1px);
  }

  .md\:w-borderfix {
    width: calc(100% + 1px);
  }

  .md\:w-fit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .md\:z-0 {
    z-index: 0;
  }

  .md\:z-10 {
    z-index: 10;
  }

  .md\:z-20 {
    z-index: 20;
  }

  .md\:z-30 {
    z-index: 30;
  }

  .md\:z-40 {
    z-index: 40;
  }

  .md\:z-50 {
    z-index: 50;
  }

  .md\:z-100 {
    z-index: 100;
  }

  .md\:z-200 {
    z-index: 200;
  }

  .md\:z-300 {
    z-index: 300;
  }

  .md\:z-400 {
    z-index: 400;
  }

  .md\:z-500 {
    z-index: 500;
  }

  .md\:z-1000 {
    z-index: 1000;
  }

  .md\:z-2000 {
    z-index: 2000;
  }
}

@media (min-width: 1024px) {
  .lg\:col-xs {
    -webkit-box-flex: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  @media (min-width: 768px) {
    .col-xs {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .lg\:col-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  @media (min-width: 768px) {
    .col-1 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .lg\:col-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  @media (min-width: 768px) {
    .col-2 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .lg\:col-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  @media (min-width: 768px) {
    .col-3 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .lg\:col-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  @media (min-width: 768px) {
    .col-4 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .lg\:col-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  @media (min-width: 768px) {
    .col-5 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .lg\:col-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  @media (min-width: 768px) {
    .col-6 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .lg\:col-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  @media (min-width: 768px) {
    .col-7 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .lg\:col-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  @media (min-width: 768px) {
    .col-8 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .lg\:col-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  @media (min-width: 768px) {
    .col-9 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .lg\:col-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  @media (min-width: 768px) {
    .col-10 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .lg\:col-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  @media (min-width: 768px) {
    .col-11 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .lg\:col-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  @media (min-width: 768px) {
    .col-12 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .lg\:col-offset-0 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 0;
  }

  @media (min-width: 768px) {
    .col-offset-0 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .lg\:col-offset-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 8.33333333%;
  }

  @media (min-width: 768px) {
    .col-offset-1 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .lg\:col-offset-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 16.66666667%;
  }

  @media (min-width: 768px) {
    .col-offset-2 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .lg\:col-offset-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 25%;
  }

  @media (min-width: 768px) {
    .col-offset-3 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .lg\:col-offset-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 33.33333333%;
  }

  @media (min-width: 768px) {
    .col-offset-4 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .lg\:col-offset-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 41.66666667%;
  }

  @media (min-width: 768px) {
    .col-offset-5 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .lg\:col-offset-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 50%;
  }

  @media (min-width: 768px) {
    .col-offset-6 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .lg\:col-offset-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 58.33333333%;
  }

  @media (min-width: 768px) {
    .col-offset-7 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .lg\:col-offset-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 66.66666667%;
  }

  @media (min-width: 768px) {
    .col-offset-8 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .lg\:col-offset-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 75%;
  }

  @media (min-width: 768px) {
    .col-offset-9 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .lg\:col-offset-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 83.33333333%;
  }

  @media (min-width: 768px) {
    .col-offset-10 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .lg\:col-offset-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 91.66666667%;
  }

  @media (min-width: 768px) {
    .col-offset-11 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .lg\:start-xs {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .lg\:center-xs {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .lg\:end-xs {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .lg\:top-xs {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .lg\:middle-xs {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .lg\:bottom-xs {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .lg\:around-xs {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .lg\:between-xs {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .lg\:first-xs {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .lg\:last-xs {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .lg\:row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
  }

  .lg\:col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }

  .lg\:grid-row {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-right: -0.5rem;
    margin-left: -0.5rem;
  }

  @media (min-width: 768px) {
    .grid-row {
      margin-right: -1rem;
      margin-left: -1rem;
    }
  }

  .grid-row .lg\:grid-row {
    margin-right: -0.25rem;
    margin-left: -0.25rem;
  }

  @media (min-width: 768px) {
    .grid-row .grid-row {
      margin-right: -0.5rem;
      margin-left: -0.5rem;
    }
  }

  .lg\:h1 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 6rem;
    line-height: calc(100% + 8px);
    letter-spacing: -4px;
  }

  .lg\:h2 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 5rem;
    line-height: calc(100% + 8px);
    letter-spacing: -3px;
  }

  .lg\:h3-large {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 4rem;
    line-height: calc(100% + 8px);
    letter-spacing: -2.66px;
  }

  .lg\:h3 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 3.5rem;
    line-height: calc(100% + 8px);
    letter-spacing: -2px;
  }

  .lg\:h4 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 3rem;
    line-height: calc(100% + 8px);
    letter-spacing: -1.5px;
  }

  .lg\:h5 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 1.5rem;
    line-height: calc(100% + 8px);
    font-weight: 300;
    letter-spacing: -1px;
  }

  .lg\:h6 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    line-height: calc(100% + 8px);
    font-weight: 300;
  }

  .lg\:header-d0 {
    font-size: 2.5rem;
    line-height: calc(100% + 8px);
    letter-spacing: -1.5px;
  }

  .lg\:header-d1 {
    font-size: 2rem;
    line-height: calc(100% + 8px);
    letter-spacing: -1.25px;
  }

  .lg\:header-e1 {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: -1px;
  }

  .lg\:grid-wrapper {
    margin: 0 auto;
    max-width: 1368px;
    padding: 0 2rem;
  }

  .lg\:card-driver__content-outer--left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .lg\:card-driver__content-outer--right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .lg\:card-driver__content--lg {
    width: 83.33333%;
  }

  .lg\:card-driver__content--md {
    width: 66.66666%;
  }

  .lg\:card-driver__content--sm {
    width: 50%;
  }

  .lg\:card-driver__content--smx {
    width: 33%;
  }

  .lg\:card-driver__content--xs {
    width: 25%;
  }

  .lg\:card-driver__content--auto {
    width: auto;
  }

  .lg\:list-reset {
    list-style: none;
    padding: 0;
  }

  .lg\:appearance-none {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .lg\:bg-fixed {
    background-attachment: fixed;
  }

  .lg\:bg-local {
    background-attachment: local;
  }

  .lg\:bg-scroll {
    background-attachment: scroll;
  }

  .lg\:bg-transparent {
    background-color: transparent;
  }

  .lg\:bg-brand {
    background-color: #ff993d;
  }

  .lg\:bg-dealer-brand {
    background-color: #305371;
  }

  .lg\:bg-oem-brand {
    background-color: #91989e;
  }

  .lg\:bg-black {
    background-color: #222;
  }

  .lg\:bg-white {
    background-color: #fff;
  }

  .lg\:bg-grey-darkest {
    background-color: #333;
  }

  .lg\:bg-grey-darker {
    background-color: #626262;
  }

  .lg\:bg-grey-md-dark {
    background-color: #999;
  }

  .lg\:bg-grey-dark {
    background-color: #b2b2b2;
  }

  .lg\:bg-grey {
    background-color: #ccc;
  }

  .lg\:bg-grey-light {
    background-color: #ddd;
  }

  .lg\:bg-grey-lighter {
    background-color: #eee;
  }

  .lg\:bg-grey-lightest {
    background-color: #f8f8f8;
  }

  .lg\:bg-grey-accent {
    background-color: #efefef;
  }

  .lg\:bg-success {
    background-color: #449343;
  }

  .lg\:hover\:bg-transparent:hover {
    background-color: transparent;
  }

  .lg\:hover\:bg-brand:hover {
    background-color: #ff993d;
  }

  .lg\:hover\:bg-dealer-brand:hover {
    background-color: #305371;
  }

  .lg\:hover\:bg-oem-brand:hover {
    background-color: #91989e;
  }

  .lg\:hover\:bg-black:hover {
    background-color: #222;
  }

  .lg\:hover\:bg-white:hover {
    background-color: #fff;
  }

  .lg\:hover\:bg-grey-darkest:hover {
    background-color: #333;
  }

  .lg\:hover\:bg-grey-darker:hover {
    background-color: #626262;
  }

  .lg\:hover\:bg-grey-md-dark:hover {
    background-color: #999;
  }

  .lg\:hover\:bg-grey-dark:hover {
    background-color: #b2b2b2;
  }

  .lg\:hover\:bg-grey:hover {
    background-color: #ccc;
  }

  .lg\:hover\:bg-grey-light:hover {
    background-color: #ddd;
  }

  .lg\:hover\:bg-grey-lighter:hover {
    background-color: #eee;
  }

  .lg\:hover\:bg-grey-lightest:hover {
    background-color: #f8f8f8;
  }

  .lg\:hover\:bg-grey-accent:hover {
    background-color: #efefef;
  }

  .lg\:hover\:bg-success:hover {
    background-color: #449343;
  }

  .lg\:bg-bottom {
    background-position: bottom;
  }

  .lg\:bg-center {
    background-position: center;
  }

  .lg\:bg-left {
    background-position: left;
  }

  .lg\:bg-left-bottom {
    background-position: left bottom;
  }

  .lg\:bg-left-top {
    background-position: left top;
  }

  .lg\:bg-right {
    background-position: right;
  }

  .lg\:bg-right-bottom {
    background-position: right bottom;
  }

  .lg\:bg-right-top {
    background-position: right top;
  }

  .lg\:bg-top {
    background-position: top;
  }

  .lg\:bg-repeat {
    background-repeat: repeat;
  }

  .lg\:bg-no-repeat {
    background-repeat: no-repeat;
  }

  .lg\:bg-repeat-x {
    background-repeat: repeat-x;
  }

  .lg\:bg-repeat-y {
    background-repeat: repeat-y;
  }

  .lg\:bg-auto {
    background-size: auto;
  }

  .lg\:bg-cover {
    background-size: cover;
  }

  .lg\:bg-contain {
    background-size: contain;
  }

  .lg\:border-transparent {
    border-color: transparent;
  }

  .lg\:border-brand {
    border-color: #ff993d;
  }

  .lg\:border-dealer-brand {
    border-color: #305371;
  }

  .lg\:border-oem-brand {
    border-color: #91989e;
  }

  .lg\:border-black {
    border-color: #222;
  }

  .lg\:border-white {
    border-color: #fff;
  }

  .lg\:border-grey-darkest {
    border-color: #333;
  }

  .lg\:border-grey-darker {
    border-color: #626262;
  }

  .lg\:border-grey-md-dark {
    border-color: #999;
  }

  .lg\:border-grey-dark {
    border-color: #b2b2b2;
  }

  .lg\:border-grey {
    border-color: #ccc;
  }

  .lg\:border-grey-light {
    border-color: #ddd;
  }

  .lg\:border-grey-lighter {
    border-color: #eee;
  }

  .lg\:border-grey-lightest {
    border-color: #f8f8f8;
  }

  .lg\:border-grey-accent {
    border-color: #efefef;
  }

  .lg\:border-success {
    border-color: #449343;
  }

  .lg\:hover\:border-transparent:hover {
    border-color: transparent;
  }

  .lg\:hover\:border-brand:hover {
    border-color: #ff993d;
  }

  .lg\:hover\:border-dealer-brand:hover {
    border-color: #305371;
  }

  .lg\:hover\:border-oem-brand:hover {
    border-color: #91989e;
  }

  .lg\:hover\:border-black:hover {
    border-color: #222;
  }

  .lg\:hover\:border-white:hover {
    border-color: #fff;
  }

  .lg\:hover\:border-grey-darkest:hover {
    border-color: #333;
  }

  .lg\:hover\:border-grey-darker:hover {
    border-color: #626262;
  }

  .lg\:hover\:border-grey-md-dark:hover {
    border-color: #999;
  }

  .lg\:hover\:border-grey-dark:hover {
    border-color: #b2b2b2;
  }

  .lg\:hover\:border-grey:hover {
    border-color: #ccc;
  }

  .lg\:hover\:border-grey-light:hover {
    border-color: #ddd;
  }

  .lg\:hover\:border-grey-lighter:hover {
    border-color: #eee;
  }

  .lg\:hover\:border-grey-lightest:hover {
    border-color: #f8f8f8;
  }

  .lg\:hover\:border-grey-accent:hover {
    border-color: #efefef;
  }

  .lg\:hover\:border-success:hover {
    border-color: #449343;
  }

  .lg\:rounded-none {
    border-radius: 0;
  }

  .lg\:rounded-xm {
    border-radius: .125rem;
  }

  .lg\:rounded {
    border-radius: .25rem;
  }

  .lg\:rounded-lg {
    border-radius: .5rem;
  }

  .lg\:rounded-full {
    border-radius: 9999px;
  }

  .lg\:rounded-t-none {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .lg\:rounded-r-none {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .lg\:rounded-b-none {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .lg\:rounded-l-none {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .lg\:rounded-t-xm {
    border-top-left-radius: .125rem;
    border-top-right-radius: .125rem;
  }

  .lg\:rounded-r-xm {
    border-top-right-radius: .125rem;
    border-bottom-right-radius: .125rem;
  }

  .lg\:rounded-b-xm {
    border-bottom-right-radius: .125rem;
    border-bottom-left-radius: .125rem;
  }

  .lg\:rounded-l-xm {
    border-top-left-radius: .125rem;
    border-bottom-left-radius: .125rem;
  }

  .lg\:rounded-t {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
  }

  .lg\:rounded-r {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
  }

  .lg\:rounded-b {
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem;
  }

  .lg\:rounded-l {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
  }

  .lg\:rounded-t-lg {
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
  }

  .lg\:rounded-r-lg {
    border-top-right-radius: .5rem;
    border-bottom-right-radius: .5rem;
  }

  .lg\:rounded-b-lg {
    border-bottom-right-radius: .5rem;
    border-bottom-left-radius: .5rem;
  }

  .lg\:rounded-l-lg {
    border-top-left-radius: .5rem;
    border-bottom-left-radius: .5rem;
  }

  .lg\:rounded-t-full {
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .lg\:rounded-r-full {
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .lg\:rounded-b-full {
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .lg\:rounded-l-full {
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .lg\:rounded-tl-none {
    border-top-left-radius: 0;
  }

  .lg\:rounded-tr-none {
    border-top-right-radius: 0;
  }

  .lg\:rounded-br-none {
    border-bottom-right-radius: 0;
  }

  .lg\:rounded-bl-none {
    border-bottom-left-radius: 0;
  }

  .lg\:rounded-tl-xm {
    border-top-left-radius: .125rem;
  }

  .lg\:rounded-tr-xm {
    border-top-right-radius: .125rem;
  }

  .lg\:rounded-br-xm {
    border-bottom-right-radius: .125rem;
  }

  .lg\:rounded-bl-xm {
    border-bottom-left-radius: .125rem;
  }

  .lg\:rounded-tl {
    border-top-left-radius: .25rem;
  }

  .lg\:rounded-tr {
    border-top-right-radius: .25rem;
  }

  .lg\:rounded-br {
    border-bottom-right-radius: .25rem;
  }

  .lg\:rounded-bl {
    border-bottom-left-radius: .25rem;
  }

  .lg\:rounded-tl-lg {
    border-top-left-radius: .5rem;
  }

  .lg\:rounded-tr-lg {
    border-top-right-radius: .5rem;
  }

  .lg\:rounded-br-lg {
    border-bottom-right-radius: .5rem;
  }

  .lg\:rounded-bl-lg {
    border-bottom-left-radius: .5rem;
  }

  .lg\:rounded-tl-full {
    border-top-left-radius: 9999px;
  }

  .lg\:rounded-tr-full {
    border-top-right-radius: 9999px;
  }

  .lg\:rounded-br-full {
    border-bottom-right-radius: 9999px;
  }

  .lg\:rounded-bl-full {
    border-bottom-left-radius: 9999px;
  }

  .lg\:border-solid {
    border-style: solid;
  }

  .lg\:border-dashed {
    border-style: dashed;
  }

  .lg\:border-dotted {
    border-style: dotted;
  }

  .lg\:border-none {
    border-style: none;
  }

  .lg\:border-0 {
    border-width: 0;
  }

  .lg\:border-1 {
    border-width: 1px;
  }

  .lg\:border-2 {
    border-width: 2px;
  }

  .lg\:border-4 {
    border-width: 4px;
  }

  .lg\:border-8 {
    border-width: 8px;
  }

  .lg\:border-t-0 {
    border-top-width: 0;
  }

  .lg\:border-r-0 {
    border-right-width: 0;
  }

  .lg\:border-b-0 {
    border-bottom-width: 0;
  }

  .lg\:border-l-0 {
    border-left-width: 0;
  }

  .lg\:border-t-1 {
    border-top-width: 1px;
  }

  .lg\:border-r-1 {
    border-right-width: 1px;
  }

  .lg\:border-b-1 {
    border-bottom-width: 1px;
  }

  .lg\:border-l-1 {
    border-left-width: 1px;
  }

  .lg\:border-t-2 {
    border-top-width: 2px;
  }

  .lg\:border-r-2 {
    border-right-width: 2px;
  }

  .lg\:border-b-2 {
    border-bottom-width: 2px;
  }

  .lg\:border-l-2 {
    border-left-width: 2px;
  }

  .lg\:border-t-4 {
    border-top-width: 4px;
  }

  .lg\:border-r-4 {
    border-right-width: 4px;
  }

  .lg\:border-b-4 {
    border-bottom-width: 4px;
  }

  .lg\:border-l-4 {
    border-left-width: 4px;
  }

  .lg\:border-t-8 {
    border-top-width: 8px;
  }

  .lg\:border-r-8 {
    border-right-width: 8px;
  }

  .lg\:border-b-8 {
    border-bottom-width: 8px;
  }

  .lg\:border-l-8 {
    border-left-width: 8px;
  }

  .lg\:cursor-auto {
    cursor: auto;
  }

  .lg\:cursor-default {
    cursor: default;
  }

  .lg\:cursor-pointer {
    cursor: pointer;
  }

  .lg\:cursor-wait {
    cursor: wait;
  }

  .lg\:cursor-move {
    cursor: move;
  }

  .lg\:cursor-not-allowed {
    cursor: not-allowed;
  }

  .lg\:block {
    display: block;
  }

  .lg\:inline-block {
    display: inline-block;
  }

  .lg\:inline {
    display: inline;
  }

  .lg\:table {
    display: table;
  }

  .lg\:table-row {
    display: table-row;
  }

  .lg\:table-cell {
    display: table-cell;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .lg\:inline-flex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .lg\:flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .lg\:flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .lg\:flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .lg\:flex-col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .lg\:flex-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .lg\:flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }

  .lg\:flex-no-wrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .lg\:items-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .lg\:items-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

  .lg\:items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .lg\:items-baseline {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }

  .lg\:items-stretch {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .lg\:self-auto {
    -ms-flex-item-align: auto;
        align-self: auto;
  }

  .lg\:self-start {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }

  .lg\:self-end {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }

  .lg\:self-center {
    -ms-flex-item-align: center;
        align-self: center;
  }

  .lg\:self-stretch {
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }

  .lg\:justify-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .lg\:justify-end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .lg\:justify-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .lg\:justify-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .lg\:justify-around {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }

  .lg\:content-center {
    -ms-flex-line-pack: center;
        align-content: center;
  }

  .lg\:content-start {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }

  .lg\:content-end {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }

  .lg\:content-between {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }

  .lg\:content-around {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }

  .lg\:flex-1 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }

  .lg\:flex-auto {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }

  .lg\:flex-initial {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }

  .lg\:flex-none {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }

  .lg\:flex-grow {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }

  .lg\:flex-shrink {
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }

  .lg\:flex-no-grow {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }

  .lg\:flex-no-shrink {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }

  .lg\:float-right {
    float: right;
  }

  .lg\:float-left {
    float: left;
  }

  .lg\:float-none {
    float: none;
  }

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

  .lg\:font-sans {
    font-family: "3form Graphik", Helvetica, sans-serif;
  }

  .lg\:font-light {
    font-weight: 300;
  }

  .lg\:font-normal {
    font-weight: 400;
  }

  .lg\:font-medium {
    font-weight: 500;
  }

  .lg\:hover\:font-light:hover {
    font-weight: 300;
  }

  .lg\:hover\:font-normal:hover {
    font-weight: 400;
  }

  .lg\:hover\:font-medium:hover {
    font-weight: 500;
  }

  .lg\:h-1 {
    height: .25rem;
  }

  .lg\:h-2 {
    height: .5rem;
  }

  .lg\:h-3 {
    height: .75rem;
  }

  .lg\:h-4 {
    height: 1rem;
  }

  .lg\:h-5 {
    height: 1.25rem;
  }

  .lg\:h-6 {
    height: 1.5rem;
  }

  .lg\:h-8 {
    height: 2rem;
  }

  .lg\:h-9 {
    height: 2.25rem;
  }

  .lg\:h-12 {
    height: 3rem;
  }

  .lg\:h-16 {
    height: 4rem;
  }

  .lg\:h-24 {
    height: 6rem;
  }

  .lg\:h-32 {
    height: 8rem;
  }

  .lg\:h-48 {
    height: 12rem;
  }

  .lg\:h-64 {
    height: 16rem;
  }

  .lg\:h-auto {
    height: auto;
  }

  .lg\:h-px {
    height: 1px;
  }

  .lg\:h-full {
    height: 100%;
  }

  .lg\:h-screen {
    height: 100vh;
  }

  .lg\:h-90v {
    height: 90vh;
  }

  .lg\:leading-none {
    line-height: 1;
  }

  .lg\:leading-tightish {
    line-height: 1.1;
  }

  .lg\:leading-tight {
    line-height: 1.25;
  }

  .lg\:leading-normal {
    line-height: 1.5;
  }

  .lg\:leading-normloose {
    line-height: 1.75;
  }

  .lg\:leading-loose {
    line-height: 2;
  }

  .lg\:leading-md {
    line-height: 24px;
  }

  .lg\:leading-heading {
    line-height: calc(100% + 8px);
  }

  .lg\:m-0 {
    margin: 0;
  }

  .lg\:m-1 {
    margin: .25rem;
  }

  .lg\:m-2 {
    margin: .5rem;
  }

  .lg\:m-3 {
    margin: .75rem;
  }

  .lg\:m-4 {
    margin: 1rem;
  }

  .lg\:m-5 {
    margin: 1.25rem;
  }

  .lg\:m-6 {
    margin: 1.5rem;
  }

  .lg\:m-8 {
    margin: 2rem;
  }

  .lg\:m-10 {
    margin: 2.5rem;
  }

  .lg\:m-12 {
    margin: 3rem;
  }

  .lg\:m-16 {
    margin: 4rem;
  }

  .lg\:m-20 {
    margin: 5rem;
  }

  .lg\:m-24 {
    margin: 6rem;
  }

  .lg\:m-32 {
    margin: 8rem;
  }

  .lg\:m-48 {
    margin: 12rem;
  }

  .lg\:m-64 {
    margin: 16rem;
  }

  .lg\:m-auto {
    margin: auto;
  }

  .lg\:m-px {
    margin: 1px;
  }

  .lg\:m--20 {
    margin: -5rem;
  }

  .lg\:m-30\% {
    margin: 30%;
  }

  .lg\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .lg\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .lg\:my-1 {
    margin-top: .25rem;
    margin-bottom: .25rem;
  }

  .lg\:mx-1 {
    margin-left: .25rem;
    margin-right: .25rem;
  }

  .lg\:my-2 {
    margin-top: .5rem;
    margin-bottom: .5rem;
  }

  .lg\:mx-2 {
    margin-left: .5rem;
    margin-right: .5rem;
  }

  .lg\:my-3 {
    margin-top: .75rem;
    margin-bottom: .75rem;
  }

  .lg\:mx-3 {
    margin-left: .75rem;
    margin-right: .75rem;
  }

  .lg\:my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .lg\:mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .lg\:my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .lg\:mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .lg\:my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .lg\:mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .lg\:my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .lg\:mx-8 {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .lg\:my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .lg\:mx-10 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .lg\:my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .lg\:mx-12 {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .lg\:my-16 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .lg\:mx-16 {
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .lg\:my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .lg\:mx-20 {
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .lg\:my-24 {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .lg\:mx-24 {
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .lg\:my-32 {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .lg\:mx-32 {
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .lg\:my-48 {
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .lg\:mx-48 {
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .lg\:my-64 {
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .lg\:mx-64 {
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .lg\:my-auto {
    margin-top: auto;
    margin-bottom: auto;
  }

  .lg\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .lg\:my-px {
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .lg\:mx-px {
    margin-left: 1px;
    margin-right: 1px;
  }

  .lg\:my--20 {
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .lg\:mx--20 {
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .lg\:my-30\% {
    margin-top: 30%;
    margin-bottom: 30%;
  }

  .lg\:mx-30\% {
    margin-left: 30%;
    margin-right: 30%;
  }

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

  .lg\:mr-0 {
    margin-right: 0;
  }

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

  .lg\:ml-0 {
    margin-left: 0;
  }

  .lg\:mt-1 {
    margin-top: .25rem;
  }

  .lg\:mr-1 {
    margin-right: .25rem;
  }

  .lg\:mb-1 {
    margin-bottom: .25rem;
  }

  .lg\:ml-1 {
    margin-left: .25rem;
  }

  .lg\:mt-2 {
    margin-top: .5rem;
  }

  .lg\:mr-2 {
    margin-right: .5rem;
  }

  .lg\:mb-2 {
    margin-bottom: .5rem;
  }

  .lg\:ml-2 {
    margin-left: .5rem;
  }

  .lg\:mt-3 {
    margin-top: .75rem;
  }

  .lg\:mr-3 {
    margin-right: .75rem;
  }

  .lg\:mb-3 {
    margin-bottom: .75rem;
  }

  .lg\:ml-3 {
    margin-left: .75rem;
  }

  .lg\:mt-4 {
    margin-top: 1rem;
  }

  .lg\:mr-4 {
    margin-right: 1rem;
  }

  .lg\:mb-4 {
    margin-bottom: 1rem;
  }

  .lg\:ml-4 {
    margin-left: 1rem;
  }

  .lg\:mt-5 {
    margin-top: 1.25rem;
  }

  .lg\:mr-5 {
    margin-right: 1.25rem;
  }

  .lg\:mb-5 {
    margin-bottom: 1.25rem;
  }

  .lg\:ml-5 {
    margin-left: 1.25rem;
  }

  .lg\:mt-6 {
    margin-top: 1.5rem;
  }

  .lg\:mr-6 {
    margin-right: 1.5rem;
  }

  .lg\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .lg\:ml-6 {
    margin-left: 1.5rem;
  }

  .lg\:mt-8 {
    margin-top: 2rem;
  }

  .lg\:mr-8 {
    margin-right: 2rem;
  }

  .lg\:mb-8 {
    margin-bottom: 2rem;
  }

  .lg\:ml-8 {
    margin-left: 2rem;
  }

  .lg\:mt-10 {
    margin-top: 2.5rem;
  }

  .lg\:mr-10 {
    margin-right: 2.5rem;
  }

  .lg\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .lg\:ml-10 {
    margin-left: 2.5rem;
  }

  .lg\:mt-12 {
    margin-top: 3rem;
  }

  .lg\:mr-12 {
    margin-right: 3rem;
  }

  .lg\:mb-12 {
    margin-bottom: 3rem;
  }

  .lg\:ml-12 {
    margin-left: 3rem;
  }

  .lg\:mt-16 {
    margin-top: 4rem;
  }

  .lg\:mr-16 {
    margin-right: 4rem;
  }

  .lg\:mb-16 {
    margin-bottom: 4rem;
  }

  .lg\:ml-16 {
    margin-left: 4rem;
  }

  .lg\:mt-20 {
    margin-top: 5rem;
  }

  .lg\:mr-20 {
    margin-right: 5rem;
  }

  .lg\:mb-20 {
    margin-bottom: 5rem;
  }

  .lg\:ml-20 {
    margin-left: 5rem;
  }

  .lg\:mt-24 {
    margin-top: 6rem;
  }

  .lg\:mr-24 {
    margin-right: 6rem;
  }

  .lg\:mb-24 {
    margin-bottom: 6rem;
  }

  .lg\:ml-24 {
    margin-left: 6rem;
  }

  .lg\:mt-32 {
    margin-top: 8rem;
  }

  .lg\:mr-32 {
    margin-right: 8rem;
  }

  .lg\:mb-32 {
    margin-bottom: 8rem;
  }

  .lg\:ml-32 {
    margin-left: 8rem;
  }

  .lg\:mt-48 {
    margin-top: 12rem;
  }

  .lg\:mr-48 {
    margin-right: 12rem;
  }

  .lg\:mb-48 {
    margin-bottom: 12rem;
  }

  .lg\:ml-48 {
    margin-left: 12rem;
  }

  .lg\:mt-64 {
    margin-top: 16rem;
  }

  .lg\:mr-64 {
    margin-right: 16rem;
  }

  .lg\:mb-64 {
    margin-bottom: 16rem;
  }

  .lg\:ml-64 {
    margin-left: 16rem;
  }

  .lg\:mt-auto {
    margin-top: auto;
  }

  .lg\:mr-auto {
    margin-right: auto;
  }

  .lg\:mb-auto {
    margin-bottom: auto;
  }

  .lg\:ml-auto {
    margin-left: auto;
  }

  .lg\:mt-px {
    margin-top: 1px;
  }

  .lg\:mr-px {
    margin-right: 1px;
  }

  .lg\:mb-px {
    margin-bottom: 1px;
  }

  .lg\:ml-px {
    margin-left: 1px;
  }

  .lg\:mt--20 {
    margin-top: -5rem;
  }

  .lg\:mr--20 {
    margin-right: -5rem;
  }

  .lg\:mb--20 {
    margin-bottom: -5rem;
  }

  .lg\:ml--20 {
    margin-left: -5rem;
  }

  .lg\:mt-30\% {
    margin-top: 30%;
  }

  .lg\:mr-30\% {
    margin-right: 30%;
  }

  .lg\:mb-30\% {
    margin-bottom: 30%;
  }

  .lg\:ml-30\% {
    margin-left: 30%;
  }

  .lg\:max-h-full {
    max-height: 100%;
  }

  .lg\:max-h-md {
    max-height: 40rem;
  }

  .lg\:max-h-lg {
    max-height: 50rem;
  }

  .lg\:max-h-screen {
    max-height: 100vh;
  }

  .lg\:max-w-50 {
    max-width: 50%;
  }

  .lg\:max-w-xxs {
    max-width: 16rem;
  }

  .lg\:max-w-xs {
    max-width: 20rem;
  }

  .lg\:max-w-sm {
    max-width: 30rem;
  }

  .lg\:max-w-md {
    max-width: 40rem;
  }

  .lg\:max-w-lg {
    max-width: 50rem;
  }

  .lg\:max-w-xl {
    max-width: 60rem;
  }

  .lg\:max-w-2xl {
    max-width: 70rem;
  }

  .lg\:max-w-3xl {
    max-width: 80rem;
  }

  .lg\:max-w-4xl {
    max-width: 90rem;
  }

  .lg\:max-w-5xl {
    max-width: 100rem;
  }

  .lg\:max-w-full {
    max-width: 100%;
  }

  .lg\:min-h-0 {
    min-height: 0;
  }

  .lg\:min-h-full {
    min-height: 100%;
  }

  .lg\:min-h-screen {
    min-height: 100vh;
  }

  .lg\:min-w-0 {
    min-width: 0;
  }

  .lg\:min-w-full {
    min-width: 100%;
  }

  .lg\:-m-0 {
    margin: 0;
  }

  .lg\:-m-1 {
    margin: -0.25rem;
  }

  .lg\:-m-2 {
    margin: -0.5rem;
  }

  .lg\:-m-3 {
    margin: -0.75rem;
  }

  .lg\:-m-4 {
    margin: -1rem;
  }

  .lg\:-m-5 {
    margin: -1.25rem;
  }

  .lg\:-m-6 {
    margin: -1.5rem;
  }

  .lg\:-m-8 {
    margin: -2rem;
  }

  .lg\:-m-12 {
    margin: -3rem;
  }

  .lg\:-m-16 {
    margin: -4rem;
  }

  .lg\:-m-20 {
    margin: -5rem;
  }

  .lg\:-m-24 {
    margin: -6rem;
  }

  .lg\:-m-32 {
    margin: -8rem;
  }

  .lg\:-m-48 {
    margin: -12rem;
  }

  .lg\:-m-64 {
    margin: -16rem;
  }

  .lg\:-m-px {
    margin: -1px;
  }

  .lg\:-m-30\% {
    margin: -30%;
  }

  .lg\:-my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .lg\:-mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .lg\:-my-1 {
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .lg\:-mx-1 {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .lg\:-my-2 {
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .lg\:-mx-2 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .lg\:-my-3 {
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .lg\:-mx-3 {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .lg\:-my-4 {
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .lg\:-mx-4 {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .lg\:-my-5 {
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .lg\:-mx-5 {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .lg\:-my-6 {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .lg\:-mx-6 {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .lg\:-my-8 {
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .lg\:-mx-8 {
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .lg\:-my-12 {
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .lg\:-mx-12 {
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .lg\:-my-16 {
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .lg\:-mx-16 {
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .lg\:-my-20 {
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .lg\:-mx-20 {
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .lg\:-my-24 {
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .lg\:-mx-24 {
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .lg\:-my-32 {
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .lg\:-mx-32 {
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .lg\:-my-48 {
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .lg\:-mx-48 {
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .lg\:-my-64 {
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .lg\:-mx-64 {
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .lg\:-my-px {
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .lg\:-mx-px {
    margin-left: -1px;
    margin-right: -1px;
  }

  .lg\:-my-30\% {
    margin-top: -30%;
    margin-bottom: -30%;
  }

  .lg\:-mx-30\% {
    margin-left: -30%;
    margin-right: -30%;
  }

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

  .lg\:-mr-0 {
    margin-right: 0;
  }

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

  .lg\:-ml-0 {
    margin-left: 0;
  }

  .lg\:-mt-1 {
    margin-top: -0.25rem;
  }

  .lg\:-mr-1 {
    margin-right: -0.25rem;
  }

  .lg\:-mb-1 {
    margin-bottom: -0.25rem;
  }

  .lg\:-ml-1 {
    margin-left: -0.25rem;
  }

  .lg\:-mt-2 {
    margin-top: -0.5rem;
  }

  .lg\:-mr-2 {
    margin-right: -0.5rem;
  }

  .lg\:-mb-2 {
    margin-bottom: -0.5rem;
  }

  .lg\:-ml-2 {
    margin-left: -0.5rem;
  }

  .lg\:-mt-3 {
    margin-top: -0.75rem;
  }

  .lg\:-mr-3 {
    margin-right: -0.75rem;
  }

  .lg\:-mb-3 {
    margin-bottom: -0.75rem;
  }

  .lg\:-ml-3 {
    margin-left: -0.75rem;
  }

  .lg\:-mt-4 {
    margin-top: -1rem;
  }

  .lg\:-mr-4 {
    margin-right: -1rem;
  }

  .lg\:-mb-4 {
    margin-bottom: -1rem;
  }

  .lg\:-ml-4 {
    margin-left: -1rem;
  }

  .lg\:-mt-5 {
    margin-top: -1.25rem;
  }

  .lg\:-mr-5 {
    margin-right: -1.25rem;
  }

  .lg\:-mb-5 {
    margin-bottom: -1.25rem;
  }

  .lg\:-ml-5 {
    margin-left: -1.25rem;
  }

  .lg\:-mt-6 {
    margin-top: -1.5rem;
  }

  .lg\:-mr-6 {
    margin-right: -1.5rem;
  }

  .lg\:-mb-6 {
    margin-bottom: -1.5rem;
  }

  .lg\:-ml-6 {
    margin-left: -1.5rem;
  }

  .lg\:-mt-8 {
    margin-top: -2rem;
  }

  .lg\:-mr-8 {
    margin-right: -2rem;
  }

  .lg\:-mb-8 {
    margin-bottom: -2rem;
  }

  .lg\:-ml-8 {
    margin-left: -2rem;
  }

  .lg\:-mt-12 {
    margin-top: -3rem;
  }

  .lg\:-mr-12 {
    margin-right: -3rem;
  }

  .lg\:-mb-12 {
    margin-bottom: -3rem;
  }

  .lg\:-ml-12 {
    margin-left: -3rem;
  }

  .lg\:-mt-16 {
    margin-top: -4rem;
  }

  .lg\:-mr-16 {
    margin-right: -4rem;
  }

  .lg\:-mb-16 {
    margin-bottom: -4rem;
  }

  .lg\:-ml-16 {
    margin-left: -4rem;
  }

  .lg\:-mt-20 {
    margin-top: -5rem;
  }

  .lg\:-mr-20 {
    margin-right: -5rem;
  }

  .lg\:-mb-20 {
    margin-bottom: -5rem;
  }

  .lg\:-ml-20 {
    margin-left: -5rem;
  }

  .lg\:-mt-24 {
    margin-top: -6rem;
  }

  .lg\:-mr-24 {
    margin-right: -6rem;
  }

  .lg\:-mb-24 {
    margin-bottom: -6rem;
  }

  .lg\:-ml-24 {
    margin-left: -6rem;
  }

  .lg\:-mt-32 {
    margin-top: -8rem;
  }

  .lg\:-mr-32 {
    margin-right: -8rem;
  }

  .lg\:-mb-32 {
    margin-bottom: -8rem;
  }

  .lg\:-ml-32 {
    margin-left: -8rem;
  }

  .lg\:-mt-48 {
    margin-top: -12rem;
  }

  .lg\:-mr-48 {
    margin-right: -12rem;
  }

  .lg\:-mb-48 {
    margin-bottom: -12rem;
  }

  .lg\:-ml-48 {
    margin-left: -12rem;
  }

  .lg\:-mt-64 {
    margin-top: -16rem;
  }

  .lg\:-mr-64 {
    margin-right: -16rem;
  }

  .lg\:-mb-64 {
    margin-bottom: -16rem;
  }

  .lg\:-ml-64 {
    margin-left: -16rem;
  }

  .lg\:-mt-px {
    margin-top: -1px;
  }

  .lg\:-mr-px {
    margin-right: -1px;
  }

  .lg\:-mb-px {
    margin-bottom: -1px;
  }

  .lg\:-ml-px {
    margin-left: -1px;
  }

  .lg\:-mt-30\% {
    margin-top: -30%;
  }

  .lg\:-mr-30\% {
    margin-right: -30%;
  }

  .lg\:-mb-30\% {
    margin-bottom: -30%;
  }

  .lg\:-ml-30\% {
    margin-left: -30%;
  }

  .lg\:opacity-0 {
    opacity: 0;
  }

  .lg\:opacity-20 {
    opacity: .2;
  }

  .lg\:opacity-40 {
    opacity: .4;
  }

  .lg\:opacity-60 {
    opacity: .6;
  }

  .lg\:opacity-80 {
    opacity: .8;
  }

  .lg\:opacity-100 {
    opacity: 1;
  }

  .lg\:overflow-auto {
    overflow: auto;
  }

  .lg\:overflow-hidden {
    overflow: hidden;
  }

  .lg\:overflow-visible {
    overflow: visible;
  }

  .lg\:overflow-scroll {
    overflow: scroll;
  }

  .lg\:overflow-x-auto {
    overflow-x: auto;
  }

  .lg\:overflow-y-auto {
    overflow-y: auto;
  }

  .lg\:overflow-x-hidden {
    overflow-x: hidden;
  }

  .lg\:overflow-y-hidden {
    overflow-y: hidden;
  }

  .lg\:overflow-x-visible {
    overflow-x: visible;
  }

  .lg\:overflow-y-visible {
    overflow-y: visible;
  }

  .lg\:overflow-x-scroll {
    overflow-x: scroll;
  }

  .lg\:overflow-y-scroll {
    overflow-y: scroll;
  }

  .lg\:scrolling-touch {
    -webkit-overflow-scrolling: touch;
  }

  .lg\:scrolling-auto {
    -webkit-overflow-scrolling: auto;
  }

  .lg\:p-0 {
    padding: 0;
  }

  .lg\:p-1 {
    padding: .25rem;
  }

  .lg\:p-2 {
    padding: .5rem;
  }

  .lg\:p-3 {
    padding: .75rem;
  }

  .lg\:p-4 {
    padding: 1rem;
  }

  .lg\:p-5 {
    padding: 1.25rem;
  }

  .lg\:p-6 {
    padding: 1.5rem;
  }

  .lg\:p-8 {
    padding: 2rem;
  }

  .lg\:p-10 {
    padding: 2.5rem;
  }

  .lg\:p-12 {
    padding: 3rem;
  }

  .lg\:p-16 {
    padding: 4rem;
  }

  .lg\:p-20 {
    padding: 5rem;
  }

  .lg\:p-24 {
    padding: 6rem;
  }

  .lg\:p-32 {
    padding: 8rem;
  }

  .lg\:p-48 {
    padding: 12rem;
  }

  .lg\:p-64 {
    padding: 16rem;
  }

  .lg\:p-px {
    padding: 1px;
  }

  .lg\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .lg\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .lg\:py-1 {
    padding-top: .25rem;
    padding-bottom: .25rem;
  }

  .lg\:px-1 {
    padding-left: .25rem;
    padding-right: .25rem;
  }

  .lg\:py-2 {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .lg\:px-2 {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .lg\:py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .lg\:px-3 {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .lg\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .lg\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .lg\:py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .lg\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .lg\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .lg\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .lg\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .lg\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .lg\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .lg\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .lg\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .lg\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .lg\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .lg\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .lg\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .lg\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .lg\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .lg\:px-32 {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .lg\:py-48 {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .lg\:px-48 {
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .lg\:py-64 {
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .lg\:px-64 {
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .lg\:py-px {
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .lg\:px-px {
    padding-left: 1px;
    padding-right: 1px;
  }

  .lg\:pt-0 {
    padding-top: 0;
  }

  .lg\:pr-0 {
    padding-right: 0;
  }

  .lg\:pb-0 {
    padding-bottom: 0;
  }

  .lg\:pl-0 {
    padding-left: 0;
  }

  .lg\:pt-1 {
    padding-top: .25rem;
  }

  .lg\:pr-1 {
    padding-right: .25rem;
  }

  .lg\:pb-1 {
    padding-bottom: .25rem;
  }

  .lg\:pl-1 {
    padding-left: .25rem;
  }

  .lg\:pt-2 {
    padding-top: .5rem;
  }

  .lg\:pr-2 {
    padding-right: .5rem;
  }

  .lg\:pb-2 {
    padding-bottom: .5rem;
  }

  .lg\:pl-2 {
    padding-left: .5rem;
  }

  .lg\:pt-3 {
    padding-top: .75rem;
  }

  .lg\:pr-3 {
    padding-right: .75rem;
  }

  .lg\:pb-3 {
    padding-bottom: .75rem;
  }

  .lg\:pl-3 {
    padding-left: .75rem;
  }

  .lg\:pt-4 {
    padding-top: 1rem;
  }

  .lg\:pr-4 {
    padding-right: 1rem;
  }

  .lg\:pb-4 {
    padding-bottom: 1rem;
  }

  .lg\:pl-4 {
    padding-left: 1rem;
  }

  .lg\:pt-5 {
    padding-top: 1.25rem;
  }

  .lg\:pr-5 {
    padding-right: 1.25rem;
  }

  .lg\:pb-5 {
    padding-bottom: 1.25rem;
  }

  .lg\:pl-5 {
    padding-left: 1.25rem;
  }

  .lg\:pt-6 {
    padding-top: 1.5rem;
  }

  .lg\:pr-6 {
    padding-right: 1.5rem;
  }

  .lg\:pb-6 {
    padding-bottom: 1.5rem;
  }

  .lg\:pl-6 {
    padding-left: 1.5rem;
  }

  .lg\:pt-8 {
    padding-top: 2rem;
  }

  .lg\:pr-8 {
    padding-right: 2rem;
  }

  .lg\:pb-8 {
    padding-bottom: 2rem;
  }

  .lg\:pl-8 {
    padding-left: 2rem;
  }

  .lg\:pt-10 {
    padding-top: 2.5rem;
  }

  .lg\:pr-10 {
    padding-right: 2.5rem;
  }

  .lg\:pb-10 {
    padding-bottom: 2.5rem;
  }

  .lg\:pl-10 {
    padding-left: 2.5rem;
  }

  .lg\:pt-12 {
    padding-top: 3rem;
  }

  .lg\:pr-12 {
    padding-right: 3rem;
  }

  .lg\:pb-12 {
    padding-bottom: 3rem;
  }

  .lg\:pl-12 {
    padding-left: 3rem;
  }

  .lg\:pt-16 {
    padding-top: 4rem;
  }

  .lg\:pr-16 {
    padding-right: 4rem;
  }

  .lg\:pb-16 {
    padding-bottom: 4rem;
  }

  .lg\:pl-16 {
    padding-left: 4rem;
  }

  .lg\:pt-20 {
    padding-top: 5rem;
  }

  .lg\:pr-20 {
    padding-right: 5rem;
  }

  .lg\:pb-20 {
    padding-bottom: 5rem;
  }

  .lg\:pl-20 {
    padding-left: 5rem;
  }

  .lg\:pt-24 {
    padding-top: 6rem;
  }

  .lg\:pr-24 {
    padding-right: 6rem;
  }

  .lg\:pb-24 {
    padding-bottom: 6rem;
  }

  .lg\:pl-24 {
    padding-left: 6rem;
  }

  .lg\:pt-32 {
    padding-top: 8rem;
  }

  .lg\:pr-32 {
    padding-right: 8rem;
  }

  .lg\:pb-32 {
    padding-bottom: 8rem;
  }

  .lg\:pl-32 {
    padding-left: 8rem;
  }

  .lg\:pt-48 {
    padding-top: 12rem;
  }

  .lg\:pr-48 {
    padding-right: 12rem;
  }

  .lg\:pb-48 {
    padding-bottom: 12rem;
  }

  .lg\:pl-48 {
    padding-left: 12rem;
  }

  .lg\:pt-64 {
    padding-top: 16rem;
  }

  .lg\:pr-64 {
    padding-right: 16rem;
  }

  .lg\:pb-64 {
    padding-bottom: 16rem;
  }

  .lg\:pl-64 {
    padding-left: 16rem;
  }

  .lg\:pt-px {
    padding-top: 1px;
  }

  .lg\:pr-px {
    padding-right: 1px;
  }

  .lg\:pb-px {
    padding-bottom: 1px;
  }

  .lg\:pl-px {
    padding-left: 1px;
  }

  .lg\:pointer-events-none {
    pointer-events: none;
  }

  .lg\:pointer-events-auto {
    pointer-events: auto;
  }

  .lg\:static {
    position: static;
  }

  .lg\:fixed {
    position: fixed;
  }

  .lg\:absolute {
    position: absolute;
  }

  .lg\:relative {
    position: relative;
  }

  .lg\:sticky {
    position: sticky;
  }

  .lg\:pin-none {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .lg\:pin {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .lg\:pin-y {
    top: 0;
    bottom: 0;
  }

  .lg\:pin-x {
    right: 0;
    left: 0;
  }

  .lg\:pin-t {
    top: 0;
  }

  .lg\:pin-r {
    right: 0;
  }

  .lg\:pin-b {
    bottom: 0;
  }

  .lg\:pin-l {
    left: 0;
  }

  .lg\:resize-none {
    resize: none;
  }

  .lg\:resize-y {
    resize: vertical;
  }

  .lg\:resize-x {
    resize: horizontal;
  }

  .lg\:resize {
    resize: both;
  }

  .lg\:shadow-swatch-sm {
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .1);
            box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .1);
  }

  .lg\:shadow-swatch-lg {
    -webkit-box-shadow: 0 8px 8px 0 rgba(34, 34, 34, .1);
            box-shadow: 0 8px 8px 0 rgba(34, 34, 34, .1);
  }

  .lg\:shadow-swatch-xl {
    -webkit-box-shadow: 0 16px 16px 0 rgba(34, 34, 34, .1);
            box-shadow: 0 16px 16px 0 rgba(34, 34, 34, .1);
  }

  .lg\:shadow-dark {
    -webkit-box-shadow: 8px 8px 0px 0px #222;
            box-shadow: 8px 8px 0px 0px #222;
  }

  .lg\:shadow-button-white-off {
    -webkit-box-shadow: 0 2px 0 0 #eee;
            box-shadow: 0 2px 0 0 #eee;
  }

  .lg\:shadow-button-white-hover {
    -webkit-box-shadow: 8px 8px 0 0 #eee;
            box-shadow: 8px 8px 0 0 #eee;
  }

  .lg\:shadow-button-white-hover-vertical {
    -webkit-box-shadow: 0px 8px 0 0 #eee;
            box-shadow: 0px 8px 0 0 #eee;
  }

  .lg\:shadow-button-black-hover {
    -webkit-box-shadow: 8px 8px 0 0 #000;
            box-shadow: 8px 8px 0 0 #000;
  }

  .lg\:shadow-tooltip-white-off {
    -webkit-box-shadow: 0 2px 0 0 #e9e9e9;
            box-shadow: 0 2px 0 0 #e9e9e9;
  }

  .lg\:shadow-tooltip-white-hover {
    -webkit-box-shadow: 4px 4px 0 0 #e9e9e9;
            box-shadow: 4px 4px 0 0 #e9e9e9;
  }

  .lg\:shadow-pagination-greg-light-hover {
    -webkit-box-shadow: 2px 2px 0 0 #b2b2b2;
            box-shadow: 2px 2px 0 0 #b2b2b2;
  }

  .lg\:shadow-dropdown-off {
    -webkit-box-shadow: 0 2px 0 0 #ddd;
            box-shadow: 0 2px 0 0 #ddd;
  }

  .lg\:shadow-dropdown-hover {
    -webkit-box-shadow: 0 8px 0 0 #ddd;
            box-shadow: 0 8px 0 0 #ddd;
  }

  .lg\:shadow-dropdown-dark-off {
    -webkit-box-shadow: 0 2px 0 0 #111;
            box-shadow: 0 2px 0 0 #111;
  }

  .lg\:shadow-tooltip-grey-light-active {
    -webkit-box-shadow: 0 2px 0 0 #ccc;
            box-shadow: 0 2px 0 0 #ccc;
  }

  .lg\:shadow-inset-top-black {
    -webkit-box-shadow: inset 0px 2px 0px 0px #222;
            box-shadow: inset 0px 2px 0px 0px #222;
  }

  .lg\:shadow-inset-top-white {
    -webkit-box-shadow: inset 0px 2px 0px 0px #fff;
            box-shadow: inset 0px 2px 0px 0px #fff;
  }

  .lg\:shadow-none {
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .lg\:table-auto {
    table-layout: auto;
  }

  .lg\:table-fixed {
    table-layout: fixed;
  }

  .lg\:text-left {
    text-align: left;
  }

  .lg\:text-center {
    text-align: center;
  }

  .lg\:text-right {
    text-align: right;
  }

  .lg\:text-justify {
    text-align: justify;
  }

  .lg\:text-transparent {
    color: transparent;
  }

  .lg\:text-brand {
    color: #ff993d;
  }

  .lg\:text-dealer-brand {
    color: #305371;
  }

  .lg\:text-oem-brand {
    color: #91989e;
  }

  .lg\:text-black {
    color: #222;
  }

  .lg\:text-white {
    color: #fff;
  }

  .lg\:text-grey-darkest {
    color: #333;
  }

  .lg\:text-grey-darker {
    color: #626262;
  }

  .lg\:text-grey-md-dark {
    color: #999;
  }

  .lg\:text-grey-dark {
    color: #b2b2b2;
  }

  .lg\:text-grey {
    color: #ccc;
  }

  .lg\:text-grey-light {
    color: #ddd;
  }

  .lg\:text-grey-lighter {
    color: #eee;
  }

  .lg\:text-grey-lightest {
    color: #f8f8f8;
  }

  .lg\:text-grey-accent {
    color: #efefef;
  }

  .lg\:text-success {
    color: #449343;
  }

  .lg\:hover\:text-transparent:hover {
    color: transparent;
  }

  .lg\:hover\:text-brand:hover {
    color: #ff993d;
  }

  .lg\:hover\:text-dealer-brand:hover {
    color: #305371;
  }

  .lg\:hover\:text-oem-brand:hover {
    color: #91989e;
  }

  .lg\:hover\:text-black:hover {
    color: #222;
  }

  .lg\:hover\:text-white:hover {
    color: #fff;
  }

  .lg\:hover\:text-grey-darkest:hover {
    color: #333;
  }

  .lg\:hover\:text-grey-darker:hover {
    color: #626262;
  }

  .lg\:hover\:text-grey-md-dark:hover {
    color: #999;
  }

  .lg\:hover\:text-grey-dark:hover {
    color: #b2b2b2;
  }

  .lg\:hover\:text-grey:hover {
    color: #ccc;
  }

  .lg\:hover\:text-grey-light:hover {
    color: #ddd;
  }

  .lg\:hover\:text-grey-lighter:hover {
    color: #eee;
  }

  .lg\:hover\:text-grey-lightest:hover {
    color: #f8f8f8;
  }

  .lg\:hover\:text-grey-accent:hover {
    color: #efefef;
  }

  .lg\:hover\:text-success:hover {
    color: #449343;
  }

  .lg\:text-xxs {
    font-size: .625rem;
  }

  .lg\:text-xs {
    font-size: .75rem;
  }

  .lg\:text-sm {
    font-size: .875rem;
  }

  .lg\:text-base {
    font-size: 1rem;
  }

  .lg\:text-smd {
    font-size: 1.25rem;
  }

  .lg\:text-md {
    font-size: 1.5rem;
  }

  .lg\:text-lmd {
    font-size: 1.75rem;
  }

  .lg\:text-lg {
    font-size: 2rem;
  }

  .lg\:text-xl {
    font-size: 2.5rem;
  }

  .lg\:text-2xl {
    font-size: 3rem;
  }

  .lg\:text-3xl {
    font-size: 3.5rem;
  }

  .lg\:text-4xl {
    font-size: 5rem;
  }

  .lg\:text-5xl {
    font-size: 6rem;
  }

  .lg\:italic {
    font-style: italic;
  }

  .lg\:roman {
    font-style: normal;
  }

  .lg\:uppercase {
    text-transform: uppercase;
  }

  .lg\:lowercase {
    text-transform: lowercase;
  }

  .lg\:capitalize {
    text-transform: capitalize;
  }

  .lg\:normal-case {
    text-transform: none;
  }

  .lg\:underline {
    text-decoration: underline;
  }

  .lg\:line-through {
    text-decoration: line-through;
  }

  .lg\:no-underline {
    text-decoration: none;
  }

  .lg\:antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .lg\:subpixel-antialiased {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .lg\:hover\:italic:hover {
    font-style: italic;
  }

  .lg\:hover\:roman:hover {
    font-style: normal;
  }

  .lg\:hover\:uppercase:hover {
    text-transform: uppercase;
  }

  .lg\:hover\:lowercase:hover {
    text-transform: lowercase;
  }

  .lg\:hover\:capitalize:hover {
    text-transform: capitalize;
  }

  .lg\:hover\:normal-case:hover {
    text-transform: none;
  }

  .lg\:hover\:underline:hover {
    text-decoration: underline;
  }

  .lg\:hover\:line-through:hover {
    text-decoration: line-through;
  }

  .lg\:hover\:no-underline:hover {
    text-decoration: none;
  }

  .lg\:hover\:antialiased:hover {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .lg\:hover\:subpixel-antialiased:hover {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .lg\:tracking-tight {
    letter-spacing: -0.05em;
  }

  .lg\:tracking-tightish {
    letter-spacing: -0.032em;
  }

  .lg\:tracking-normal {
    letter-spacing: 0;
  }

  .lg\:tracking-wide {
    letter-spacing: .05em;
  }

  .lg\:select-none {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .lg\:select-text {
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .lg\:align-baseline {
    vertical-align: baseline;
  }

  .lg\:align-top {
    vertical-align: top;
  }

  .lg\:align-middle {
    vertical-align: middle;
  }

  .lg\:align-bottom {
    vertical-align: bottom;
  }

  .lg\:align-text-top {
    vertical-align: text-top;
  }

  .lg\:align-text-bottom {
    vertical-align: text-bottom;
  }

  .lg\:visible {
    visibility: visible;
  }

  .lg\:invisible {
    visibility: hidden;
  }

  .lg\:whitespace-normal {
    white-space: normal;
  }

  .lg\:whitespace-no-wrap {
    white-space: nowrap;
  }

  .lg\:whitespace-pre {
    white-space: pre;
  }

  .lg\:whitespace-pre-line {
    white-space: pre-line;
  }

  .lg\:whitespace-pre-wrap {
    white-space: pre-wrap;
  }

  .lg\:break-words {
    word-wrap: break-word;
  }

  .lg\:break-normal {
    word-wrap: normal;
  }

  .lg\:truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .lg\:w-1 {
    width: .25rem;
  }

  .lg\:w-2 {
    width: .5rem;
  }

  .lg\:w-3 {
    width: .75rem;
  }

  .lg\:w-4 {
    width: 1rem;
  }

  .lg\:w-5 {
    width: 1.25rem;
  }

  .lg\:w-6 {
    width: 1.5rem;
  }

  .lg\:w-8 {
    width: 2rem;
  }

  .lg\:w-12 {
    width: 3rem;
  }

  .lg\:w-16 {
    width: 4rem;
  }

  .lg\:w-24 {
    width: 6rem;
  }

  .lg\:w-32 {
    width: 8rem;
  }

  .lg\:w-48 {
    width: 12rem;
  }

  .lg\:w-64 {
    width: 16rem;
  }

  .lg\:w-auto {
    width: auto;
  }

  .lg\:w-px {
    width: 1px;
  }

  .lg\:w-1\/2 {
    width: 50%;
  }

  .lg\:w-1\/3 {
    width: 33.33333%;
  }

  .lg\:w-2\/3 {
    width: 66.66667%;
  }

  .lg\:w-1\/4 {
    width: 25%;
  }

  .lg\:w-3\/4 {
    width: 75%;
  }

  .lg\:w-1\/5 {
    width: 20%;
  }

  .lg\:w-2\/5 {
    width: 40%;
  }

  .lg\:w-3\/5 {
    width: 60%;
  }

  .lg\:w-4\/5 {
    width: 80%;
  }

  .lg\:w-1\/6 {
    width: 16.66667%;
  }

  .lg\:w-5\/6 {
    width: 83.33333%;
  }

  .lg\:w-full {
    width: 100%;
  }

  .lg\:w-screen {
    width: 100vw;
  }

  .lg\:w--borderfix {
    width: calc(100% - 1px);
  }

  .lg\:w-borderfix {
    width: calc(100% + 1px);
  }

  .lg\:w-fit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .lg\:z-0 {
    z-index: 0;
  }

  .lg\:z-10 {
    z-index: 10;
  }

  .lg\:z-20 {
    z-index: 20;
  }

  .lg\:z-30 {
    z-index: 30;
  }

  .lg\:z-40 {
    z-index: 40;
  }

  .lg\:z-50 {
    z-index: 50;
  }

  .lg\:z-100 {
    z-index: 100;
  }

  .lg\:z-200 {
    z-index: 200;
  }

  .lg\:z-300 {
    z-index: 300;
  }

  .lg\:z-400 {
    z-index: 400;
  }

  .lg\:z-500 {
    z-index: 500;
  }

  .lg\:z-1000 {
    z-index: 1000;
  }

  .lg\:z-2000 {
    z-index: 2000;
  }
}

@media (min-width: 1200px) {
  .xl\:col-xs {
    -webkit-box-flex: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  @media (min-width: 768px) {
    .col-xs {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xl\:col-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  @media (min-width: 768px) {
    .col-1 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xl\:col-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  @media (min-width: 768px) {
    .col-2 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xl\:col-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  @media (min-width: 768px) {
    .col-3 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xl\:col-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  @media (min-width: 768px) {
    .col-4 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xl\:col-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  @media (min-width: 768px) {
    .col-5 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xl\:col-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  @media (min-width: 768px) {
    .col-6 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xl\:col-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  @media (min-width: 768px) {
    .col-7 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xl\:col-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  @media (min-width: 768px) {
    .col-8 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xl\:col-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  @media (min-width: 768px) {
    .col-9 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xl\:col-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  @media (min-width: 768px) {
    .col-10 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xl\:col-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  @media (min-width: 768px) {
    .col-11 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xl\:col-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  @media (min-width: 768px) {
    .col-12 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xl\:col-offset-0 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 0;
  }

  @media (min-width: 768px) {
    .col-offset-0 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xl\:col-offset-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 8.33333333%;
  }

  @media (min-width: 768px) {
    .col-offset-1 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xl\:col-offset-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 16.66666667%;
  }

  @media (min-width: 768px) {
    .col-offset-2 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xl\:col-offset-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 25%;
  }

  @media (min-width: 768px) {
    .col-offset-3 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xl\:col-offset-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 33.33333333%;
  }

  @media (min-width: 768px) {
    .col-offset-4 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xl\:col-offset-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 41.66666667%;
  }

  @media (min-width: 768px) {
    .col-offset-5 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xl\:col-offset-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 50%;
  }

  @media (min-width: 768px) {
    .col-offset-6 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xl\:col-offset-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 58.33333333%;
  }

  @media (min-width: 768px) {
    .col-offset-7 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xl\:col-offset-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 66.66666667%;
  }

  @media (min-width: 768px) {
    .col-offset-8 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xl\:col-offset-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 75%;
  }

  @media (min-width: 768px) {
    .col-offset-9 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xl\:col-offset-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 83.33333333%;
  }

  @media (min-width: 768px) {
    .col-offset-10 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xl\:col-offset-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 91.66666667%;
  }

  @media (min-width: 768px) {
    .col-offset-11 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .xl\:start-xs {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .xl\:center-xs {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .xl\:end-xs {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .xl\:top-xs {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .xl\:middle-xs {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .xl\:bottom-xs {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .xl\:around-xs {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .xl\:between-xs {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .xl\:first-xs {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .xl\:last-xs {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .xl\:row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
  }

  .xl\:col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }

  .xl\:grid-row {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-right: -0.5rem;
    margin-left: -0.5rem;
  }

  @media (min-width: 768px) {
    .grid-row {
      margin-right: -1rem;
      margin-left: -1rem;
    }
  }

  .grid-row .xl\:grid-row {
    margin-right: -0.25rem;
    margin-left: -0.25rem;
  }

  @media (min-width: 768px) {
    .grid-row .grid-row {
      margin-right: -0.5rem;
      margin-left: -0.5rem;
    }
  }

  .xl\:h1 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 6rem;
    line-height: calc(100% + 8px);
    letter-spacing: -4px;
  }

  .xl\:h2 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 5rem;
    line-height: calc(100% + 8px);
    letter-spacing: -3px;
  }

  .xl\:h3-large {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 4rem;
    line-height: calc(100% + 8px);
    letter-spacing: -2.66px;
  }

  .xl\:h3 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 3.5rem;
    line-height: calc(100% + 8px);
    letter-spacing: -2px;
  }

  .xl\:h4 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 3rem;
    line-height: calc(100% + 8px);
    letter-spacing: -1.5px;
  }

  .xl\:h5 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 1.5rem;
    line-height: calc(100% + 8px);
    font-weight: 300;
    letter-spacing: -1px;
  }

  .xl\:h6 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    line-height: calc(100% + 8px);
    font-weight: 300;
  }

  .xl\:header-d0 {
    font-size: 2.5rem;
    line-height: calc(100% + 8px);
    letter-spacing: -1.5px;
  }

  .xl\:header-d1 {
    font-size: 2rem;
    line-height: calc(100% + 8px);
    letter-spacing: -1.25px;
  }

  .xl\:header-e1 {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: -1px;
  }

  .xl\:grid-wrapper {
    margin: 0 auto;
    max-width: 1368px;
    padding: 0 2rem;
  }

  .xl\:card-driver__content-outer--left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .xl\:card-driver__content-outer--right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .xl\:card-driver__content--lg {
    width: 83.33333%;
  }

  .xl\:card-driver__content--md {
    width: 66.66666%;
  }

  .xl\:card-driver__content--sm {
    width: 50%;
  }

  .xl\:card-driver__content--smx {
    width: 33%;
  }

  .xl\:card-driver__content--xs {
    width: 25%;
  }

  .xl\:card-driver__content--auto {
    width: auto;
  }

  .xl\:list-reset {
    list-style: none;
    padding: 0;
  }

  .xl\:appearance-none {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .xl\:bg-fixed {
    background-attachment: fixed;
  }

  .xl\:bg-local {
    background-attachment: local;
  }

  .xl\:bg-scroll {
    background-attachment: scroll;
  }

  .xl\:bg-transparent {
    background-color: transparent;
  }

  .xl\:bg-brand {
    background-color: #ff993d;
  }

  .xl\:bg-dealer-brand {
    background-color: #305371;
  }

  .xl\:bg-oem-brand {
    background-color: #91989e;
  }

  .xl\:bg-black {
    background-color: #222;
  }

  .xl\:bg-white {
    background-color: #fff;
  }

  .xl\:bg-grey-darkest {
    background-color: #333;
  }

  .xl\:bg-grey-darker {
    background-color: #626262;
  }

  .xl\:bg-grey-md-dark {
    background-color: #999;
  }

  .xl\:bg-grey-dark {
    background-color: #b2b2b2;
  }

  .xl\:bg-grey {
    background-color: #ccc;
  }

  .xl\:bg-grey-light {
    background-color: #ddd;
  }

  .xl\:bg-grey-lighter {
    background-color: #eee;
  }

  .xl\:bg-grey-lightest {
    background-color: #f8f8f8;
  }

  .xl\:bg-grey-accent {
    background-color: #efefef;
  }

  .xl\:bg-success {
    background-color: #449343;
  }

  .xl\:hover\:bg-transparent:hover {
    background-color: transparent;
  }

  .xl\:hover\:bg-brand:hover {
    background-color: #ff993d;
  }

  .xl\:hover\:bg-dealer-brand:hover {
    background-color: #305371;
  }

  .xl\:hover\:bg-oem-brand:hover {
    background-color: #91989e;
  }

  .xl\:hover\:bg-black:hover {
    background-color: #222;
  }

  .xl\:hover\:bg-white:hover {
    background-color: #fff;
  }

  .xl\:hover\:bg-grey-darkest:hover {
    background-color: #333;
  }

  .xl\:hover\:bg-grey-darker:hover {
    background-color: #626262;
  }

  .xl\:hover\:bg-grey-md-dark:hover {
    background-color: #999;
  }

  .xl\:hover\:bg-grey-dark:hover {
    background-color: #b2b2b2;
  }

  .xl\:hover\:bg-grey:hover {
    background-color: #ccc;
  }

  .xl\:hover\:bg-grey-light:hover {
    background-color: #ddd;
  }

  .xl\:hover\:bg-grey-lighter:hover {
    background-color: #eee;
  }

  .xl\:hover\:bg-grey-lightest:hover {
    background-color: #f8f8f8;
  }

  .xl\:hover\:bg-grey-accent:hover {
    background-color: #efefef;
  }

  .xl\:hover\:bg-success:hover {
    background-color: #449343;
  }

  .xl\:bg-bottom {
    background-position: bottom;
  }

  .xl\:bg-center {
    background-position: center;
  }

  .xl\:bg-left {
    background-position: left;
  }

  .xl\:bg-left-bottom {
    background-position: left bottom;
  }

  .xl\:bg-left-top {
    background-position: left top;
  }

  .xl\:bg-right {
    background-position: right;
  }

  .xl\:bg-right-bottom {
    background-position: right bottom;
  }

  .xl\:bg-right-top {
    background-position: right top;
  }

  .xl\:bg-top {
    background-position: top;
  }

  .xl\:bg-repeat {
    background-repeat: repeat;
  }

  .xl\:bg-no-repeat {
    background-repeat: no-repeat;
  }

  .xl\:bg-repeat-x {
    background-repeat: repeat-x;
  }

  .xl\:bg-repeat-y {
    background-repeat: repeat-y;
  }

  .xl\:bg-auto {
    background-size: auto;
  }

  .xl\:bg-cover {
    background-size: cover;
  }

  .xl\:bg-contain {
    background-size: contain;
  }

  .xl\:border-transparent {
    border-color: transparent;
  }

  .xl\:border-brand {
    border-color: #ff993d;
  }

  .xl\:border-dealer-brand {
    border-color: #305371;
  }

  .xl\:border-oem-brand {
    border-color: #91989e;
  }

  .xl\:border-black {
    border-color: #222;
  }

  .xl\:border-white {
    border-color: #fff;
  }

  .xl\:border-grey-darkest {
    border-color: #333;
  }

  .xl\:border-grey-darker {
    border-color: #626262;
  }

  .xl\:border-grey-md-dark {
    border-color: #999;
  }

  .xl\:border-grey-dark {
    border-color: #b2b2b2;
  }

  .xl\:border-grey {
    border-color: #ccc;
  }

  .xl\:border-grey-light {
    border-color: #ddd;
  }

  .xl\:border-grey-lighter {
    border-color: #eee;
  }

  .xl\:border-grey-lightest {
    border-color: #f8f8f8;
  }

  .xl\:border-grey-accent {
    border-color: #efefef;
  }

  .xl\:border-success {
    border-color: #449343;
  }

  .xl\:hover\:border-transparent:hover {
    border-color: transparent;
  }

  .xl\:hover\:border-brand:hover {
    border-color: #ff993d;
  }

  .xl\:hover\:border-dealer-brand:hover {
    border-color: #305371;
  }

  .xl\:hover\:border-oem-brand:hover {
    border-color: #91989e;
  }

  .xl\:hover\:border-black:hover {
    border-color: #222;
  }

  .xl\:hover\:border-white:hover {
    border-color: #fff;
  }

  .xl\:hover\:border-grey-darkest:hover {
    border-color: #333;
  }

  .xl\:hover\:border-grey-darker:hover {
    border-color: #626262;
  }

  .xl\:hover\:border-grey-md-dark:hover {
    border-color: #999;
  }

  .xl\:hover\:border-grey-dark:hover {
    border-color: #b2b2b2;
  }

  .xl\:hover\:border-grey:hover {
    border-color: #ccc;
  }

  .xl\:hover\:border-grey-light:hover {
    border-color: #ddd;
  }

  .xl\:hover\:border-grey-lighter:hover {
    border-color: #eee;
  }

  .xl\:hover\:border-grey-lightest:hover {
    border-color: #f8f8f8;
  }

  .xl\:hover\:border-grey-accent:hover {
    border-color: #efefef;
  }

  .xl\:hover\:border-success:hover {
    border-color: #449343;
  }

  .xl\:rounded-none {
    border-radius: 0;
  }

  .xl\:rounded-xm {
    border-radius: .125rem;
  }

  .xl\:rounded {
    border-radius: .25rem;
  }

  .xl\:rounded-lg {
    border-radius: .5rem;
  }

  .xl\:rounded-full {
    border-radius: 9999px;
  }

  .xl\:rounded-t-none {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .xl\:rounded-r-none {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .xl\:rounded-b-none {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .xl\:rounded-l-none {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .xl\:rounded-t-xm {
    border-top-left-radius: .125rem;
    border-top-right-radius: .125rem;
  }

  .xl\:rounded-r-xm {
    border-top-right-radius: .125rem;
    border-bottom-right-radius: .125rem;
  }

  .xl\:rounded-b-xm {
    border-bottom-right-radius: .125rem;
    border-bottom-left-radius: .125rem;
  }

  .xl\:rounded-l-xm {
    border-top-left-radius: .125rem;
    border-bottom-left-radius: .125rem;
  }

  .xl\:rounded-t {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
  }

  .xl\:rounded-r {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
  }

  .xl\:rounded-b {
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem;
  }

  .xl\:rounded-l {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
  }

  .xl\:rounded-t-lg {
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
  }

  .xl\:rounded-r-lg {
    border-top-right-radius: .5rem;
    border-bottom-right-radius: .5rem;
  }

  .xl\:rounded-b-lg {
    border-bottom-right-radius: .5rem;
    border-bottom-left-radius: .5rem;
  }

  .xl\:rounded-l-lg {
    border-top-left-radius: .5rem;
    border-bottom-left-radius: .5rem;
  }

  .xl\:rounded-t-full {
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .xl\:rounded-r-full {
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .xl\:rounded-b-full {
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .xl\:rounded-l-full {
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .xl\:rounded-tl-none {
    border-top-left-radius: 0;
  }

  .xl\:rounded-tr-none {
    border-top-right-radius: 0;
  }

  .xl\:rounded-br-none {
    border-bottom-right-radius: 0;
  }

  .xl\:rounded-bl-none {
    border-bottom-left-radius: 0;
  }

  .xl\:rounded-tl-xm {
    border-top-left-radius: .125rem;
  }

  .xl\:rounded-tr-xm {
    border-top-right-radius: .125rem;
  }

  .xl\:rounded-br-xm {
    border-bottom-right-radius: .125rem;
  }

  .xl\:rounded-bl-xm {
    border-bottom-left-radius: .125rem;
  }

  .xl\:rounded-tl {
    border-top-left-radius: .25rem;
  }

  .xl\:rounded-tr {
    border-top-right-radius: .25rem;
  }

  .xl\:rounded-br {
    border-bottom-right-radius: .25rem;
  }

  .xl\:rounded-bl {
    border-bottom-left-radius: .25rem;
  }

  .xl\:rounded-tl-lg {
    border-top-left-radius: .5rem;
  }

  .xl\:rounded-tr-lg {
    border-top-right-radius: .5rem;
  }

  .xl\:rounded-br-lg {
    border-bottom-right-radius: .5rem;
  }

  .xl\:rounded-bl-lg {
    border-bottom-left-radius: .5rem;
  }

  .xl\:rounded-tl-full {
    border-top-left-radius: 9999px;
  }

  .xl\:rounded-tr-full {
    border-top-right-radius: 9999px;
  }

  .xl\:rounded-br-full {
    border-bottom-right-radius: 9999px;
  }

  .xl\:rounded-bl-full {
    border-bottom-left-radius: 9999px;
  }

  .xl\:border-solid {
    border-style: solid;
  }

  .xl\:border-dashed {
    border-style: dashed;
  }

  .xl\:border-dotted {
    border-style: dotted;
  }

  .xl\:border-none {
    border-style: none;
  }

  .xl\:border-0 {
    border-width: 0;
  }

  .xl\:border-1 {
    border-width: 1px;
  }

  .xl\:border-2 {
    border-width: 2px;
  }

  .xl\:border-4 {
    border-width: 4px;
  }

  .xl\:border-8 {
    border-width: 8px;
  }

  .xl\:border-t-0 {
    border-top-width: 0;
  }

  .xl\:border-r-0 {
    border-right-width: 0;
  }

  .xl\:border-b-0 {
    border-bottom-width: 0;
  }

  .xl\:border-l-0 {
    border-left-width: 0;
  }

  .xl\:border-t-1 {
    border-top-width: 1px;
  }

  .xl\:border-r-1 {
    border-right-width: 1px;
  }

  .xl\:border-b-1 {
    border-bottom-width: 1px;
  }

  .xl\:border-l-1 {
    border-left-width: 1px;
  }

  .xl\:border-t-2 {
    border-top-width: 2px;
  }

  .xl\:border-r-2 {
    border-right-width: 2px;
  }

  .xl\:border-b-2 {
    border-bottom-width: 2px;
  }

  .xl\:border-l-2 {
    border-left-width: 2px;
  }

  .xl\:border-t-4 {
    border-top-width: 4px;
  }

  .xl\:border-r-4 {
    border-right-width: 4px;
  }

  .xl\:border-b-4 {
    border-bottom-width: 4px;
  }

  .xl\:border-l-4 {
    border-left-width: 4px;
  }

  .xl\:border-t-8 {
    border-top-width: 8px;
  }

  .xl\:border-r-8 {
    border-right-width: 8px;
  }

  .xl\:border-b-8 {
    border-bottom-width: 8px;
  }

  .xl\:border-l-8 {
    border-left-width: 8px;
  }

  .xl\:cursor-auto {
    cursor: auto;
  }

  .xl\:cursor-default {
    cursor: default;
  }

  .xl\:cursor-pointer {
    cursor: pointer;
  }

  .xl\:cursor-wait {
    cursor: wait;
  }

  .xl\:cursor-move {
    cursor: move;
  }

  .xl\:cursor-not-allowed {
    cursor: not-allowed;
  }

  .xl\:block {
    display: block;
  }

  .xl\:inline-block {
    display: inline-block;
  }

  .xl\:inline {
    display: inline;
  }

  .xl\:table {
    display: table;
  }

  .xl\:table-row {
    display: table-row;
  }

  .xl\:table-cell {
    display: table-cell;
  }

  .xl\:hidden {
    display: none;
  }

  .xl\:flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .xl\:inline-flex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .xl\:flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .xl\:flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .xl\:flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .xl\:flex-col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .xl\:flex-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .xl\:flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }

  .xl\:flex-no-wrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .xl\:items-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .xl\:items-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

  .xl\:items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .xl\:items-baseline {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }

  .xl\:items-stretch {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .xl\:self-auto {
    -ms-flex-item-align: auto;
        align-self: auto;
  }

  .xl\:self-start {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }

  .xl\:self-end {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }

  .xl\:self-center {
    -ms-flex-item-align: center;
        align-self: center;
  }

  .xl\:self-stretch {
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }

  .xl\:justify-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .xl\:justify-end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .xl\:justify-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .xl\:justify-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .xl\:justify-around {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }

  .xl\:content-center {
    -ms-flex-line-pack: center;
        align-content: center;
  }

  .xl\:content-start {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }

  .xl\:content-end {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }

  .xl\:content-between {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }

  .xl\:content-around {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }

  .xl\:flex-1 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }

  .xl\:flex-auto {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }

  .xl\:flex-initial {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }

  .xl\:flex-none {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }

  .xl\:flex-grow {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }

  .xl\:flex-shrink {
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }

  .xl\:flex-no-grow {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }

  .xl\:flex-no-shrink {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }

  .xl\:float-right {
    float: right;
  }

  .xl\:float-left {
    float: left;
  }

  .xl\:float-none {
    float: none;
  }

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

  .xl\:font-sans {
    font-family: "3form Graphik", Helvetica, sans-serif;
  }

  .xl\:font-light {
    font-weight: 300;
  }

  .xl\:font-normal {
    font-weight: 400;
  }

  .xl\:font-medium {
    font-weight: 500;
  }

  .xl\:hover\:font-light:hover {
    font-weight: 300;
  }

  .xl\:hover\:font-normal:hover {
    font-weight: 400;
  }

  .xl\:hover\:font-medium:hover {
    font-weight: 500;
  }

  .xl\:h-1 {
    height: .25rem;
  }

  .xl\:h-2 {
    height: .5rem;
  }

  .xl\:h-3 {
    height: .75rem;
  }

  .xl\:h-4 {
    height: 1rem;
  }

  .xl\:h-5 {
    height: 1.25rem;
  }

  .xl\:h-6 {
    height: 1.5rem;
  }

  .xl\:h-8 {
    height: 2rem;
  }

  .xl\:h-9 {
    height: 2.25rem;
  }

  .xl\:h-12 {
    height: 3rem;
  }

  .xl\:h-16 {
    height: 4rem;
  }

  .xl\:h-24 {
    height: 6rem;
  }

  .xl\:h-32 {
    height: 8rem;
  }

  .xl\:h-48 {
    height: 12rem;
  }

  .xl\:h-64 {
    height: 16rem;
  }

  .xl\:h-auto {
    height: auto;
  }

  .xl\:h-px {
    height: 1px;
  }

  .xl\:h-full {
    height: 100%;
  }

  .xl\:h-screen {
    height: 100vh;
  }

  .xl\:h-90v {
    height: 90vh;
  }

  .xl\:leading-none {
    line-height: 1;
  }

  .xl\:leading-tightish {
    line-height: 1.1;
  }

  .xl\:leading-tight {
    line-height: 1.25;
  }

  .xl\:leading-normal {
    line-height: 1.5;
  }

  .xl\:leading-normloose {
    line-height: 1.75;
  }

  .xl\:leading-loose {
    line-height: 2;
  }

  .xl\:leading-md {
    line-height: 24px;
  }

  .xl\:leading-heading {
    line-height: calc(100% + 8px);
  }

  .xl\:m-0 {
    margin: 0;
  }

  .xl\:m-1 {
    margin: .25rem;
  }

  .xl\:m-2 {
    margin: .5rem;
  }

  .xl\:m-3 {
    margin: .75rem;
  }

  .xl\:m-4 {
    margin: 1rem;
  }

  .xl\:m-5 {
    margin: 1.25rem;
  }

  .xl\:m-6 {
    margin: 1.5rem;
  }

  .xl\:m-8 {
    margin: 2rem;
  }

  .xl\:m-10 {
    margin: 2.5rem;
  }

  .xl\:m-12 {
    margin: 3rem;
  }

  .xl\:m-16 {
    margin: 4rem;
  }

  .xl\:m-20 {
    margin: 5rem;
  }

  .xl\:m-24 {
    margin: 6rem;
  }

  .xl\:m-32 {
    margin: 8rem;
  }

  .xl\:m-48 {
    margin: 12rem;
  }

  .xl\:m-64 {
    margin: 16rem;
  }

  .xl\:m-auto {
    margin: auto;
  }

  .xl\:m-px {
    margin: 1px;
  }

  .xl\:m--20 {
    margin: -5rem;
  }

  .xl\:m-30\% {
    margin: 30%;
  }

  .xl\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .xl\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .xl\:my-1 {
    margin-top: .25rem;
    margin-bottom: .25rem;
  }

  .xl\:mx-1 {
    margin-left: .25rem;
    margin-right: .25rem;
  }

  .xl\:my-2 {
    margin-top: .5rem;
    margin-bottom: .5rem;
  }

  .xl\:mx-2 {
    margin-left: .5rem;
    margin-right: .5rem;
  }

  .xl\:my-3 {
    margin-top: .75rem;
    margin-bottom: .75rem;
  }

  .xl\:mx-3 {
    margin-left: .75rem;
    margin-right: .75rem;
  }

  .xl\:my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .xl\:mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .xl\:my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .xl\:mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .xl\:my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .xl\:mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .xl\:my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .xl\:mx-8 {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .xl\:my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .xl\:mx-10 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .xl\:my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .xl\:mx-12 {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .xl\:my-16 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .xl\:mx-16 {
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .xl\:my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .xl\:mx-20 {
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .xl\:my-24 {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .xl\:mx-24 {
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .xl\:my-32 {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .xl\:mx-32 {
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .xl\:my-48 {
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .xl\:mx-48 {
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .xl\:my-64 {
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .xl\:mx-64 {
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .xl\:my-auto {
    margin-top: auto;
    margin-bottom: auto;
  }

  .xl\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .xl\:my-px {
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .xl\:mx-px {
    margin-left: 1px;
    margin-right: 1px;
  }

  .xl\:my--20 {
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .xl\:mx--20 {
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .xl\:my-30\% {
    margin-top: 30%;
    margin-bottom: 30%;
  }

  .xl\:mx-30\% {
    margin-left: 30%;
    margin-right: 30%;
  }

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

  .xl\:mr-0 {
    margin-right: 0;
  }

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

  .xl\:ml-0 {
    margin-left: 0;
  }

  .xl\:mt-1 {
    margin-top: .25rem;
  }

  .xl\:mr-1 {
    margin-right: .25rem;
  }

  .xl\:mb-1 {
    margin-bottom: .25rem;
  }

  .xl\:ml-1 {
    margin-left: .25rem;
  }

  .xl\:mt-2 {
    margin-top: .5rem;
  }

  .xl\:mr-2 {
    margin-right: .5rem;
  }

  .xl\:mb-2 {
    margin-bottom: .5rem;
  }

  .xl\:ml-2 {
    margin-left: .5rem;
  }

  .xl\:mt-3 {
    margin-top: .75rem;
  }

  .xl\:mr-3 {
    margin-right: .75rem;
  }

  .xl\:mb-3 {
    margin-bottom: .75rem;
  }

  .xl\:ml-3 {
    margin-left: .75rem;
  }

  .xl\:mt-4 {
    margin-top: 1rem;
  }

  .xl\:mr-4 {
    margin-right: 1rem;
  }

  .xl\:mb-4 {
    margin-bottom: 1rem;
  }

  .xl\:ml-4 {
    margin-left: 1rem;
  }

  .xl\:mt-5 {
    margin-top: 1.25rem;
  }

  .xl\:mr-5 {
    margin-right: 1.25rem;
  }

  .xl\:mb-5 {
    margin-bottom: 1.25rem;
  }

  .xl\:ml-5 {
    margin-left: 1.25rem;
  }

  .xl\:mt-6 {
    margin-top: 1.5rem;
  }

  .xl\:mr-6 {
    margin-right: 1.5rem;
  }

  .xl\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .xl\:ml-6 {
    margin-left: 1.5rem;
  }

  .xl\:mt-8 {
    margin-top: 2rem;
  }

  .xl\:mr-8 {
    margin-right: 2rem;
  }

  .xl\:mb-8 {
    margin-bottom: 2rem;
  }

  .xl\:ml-8 {
    margin-left: 2rem;
  }

  .xl\:mt-10 {
    margin-top: 2.5rem;
  }

  .xl\:mr-10 {
    margin-right: 2.5rem;
  }

  .xl\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .xl\:ml-10 {
    margin-left: 2.5rem;
  }

  .xl\:mt-12 {
    margin-top: 3rem;
  }

  .xl\:mr-12 {
    margin-right: 3rem;
  }

  .xl\:mb-12 {
    margin-bottom: 3rem;
  }

  .xl\:ml-12 {
    margin-left: 3rem;
  }

  .xl\:mt-16 {
    margin-top: 4rem;
  }

  .xl\:mr-16 {
    margin-right: 4rem;
  }

  .xl\:mb-16 {
    margin-bottom: 4rem;
  }

  .xl\:ml-16 {
    margin-left: 4rem;
  }

  .xl\:mt-20 {
    margin-top: 5rem;
  }

  .xl\:mr-20 {
    margin-right: 5rem;
  }

  .xl\:mb-20 {
    margin-bottom: 5rem;
  }

  .xl\:ml-20 {
    margin-left: 5rem;
  }

  .xl\:mt-24 {
    margin-top: 6rem;
  }

  .xl\:mr-24 {
    margin-right: 6rem;
  }

  .xl\:mb-24 {
    margin-bottom: 6rem;
  }

  .xl\:ml-24 {
    margin-left: 6rem;
  }

  .xl\:mt-32 {
    margin-top: 8rem;
  }

  .xl\:mr-32 {
    margin-right: 8rem;
  }

  .xl\:mb-32 {
    margin-bottom: 8rem;
  }

  .xl\:ml-32 {
    margin-left: 8rem;
  }

  .xl\:mt-48 {
    margin-top: 12rem;
  }

  .xl\:mr-48 {
    margin-right: 12rem;
  }

  .xl\:mb-48 {
    margin-bottom: 12rem;
  }

  .xl\:ml-48 {
    margin-left: 12rem;
  }

  .xl\:mt-64 {
    margin-top: 16rem;
  }

  .xl\:mr-64 {
    margin-right: 16rem;
  }

  .xl\:mb-64 {
    margin-bottom: 16rem;
  }

  .xl\:ml-64 {
    margin-left: 16rem;
  }

  .xl\:mt-auto {
    margin-top: auto;
  }

  .xl\:mr-auto {
    margin-right: auto;
  }

  .xl\:mb-auto {
    margin-bottom: auto;
  }

  .xl\:ml-auto {
    margin-left: auto;
  }

  .xl\:mt-px {
    margin-top: 1px;
  }

  .xl\:mr-px {
    margin-right: 1px;
  }

  .xl\:mb-px {
    margin-bottom: 1px;
  }

  .xl\:ml-px {
    margin-left: 1px;
  }

  .xl\:mt--20 {
    margin-top: -5rem;
  }

  .xl\:mr--20 {
    margin-right: -5rem;
  }

  .xl\:mb--20 {
    margin-bottom: -5rem;
  }

  .xl\:ml--20 {
    margin-left: -5rem;
  }

  .xl\:mt-30\% {
    margin-top: 30%;
  }

  .xl\:mr-30\% {
    margin-right: 30%;
  }

  .xl\:mb-30\% {
    margin-bottom: 30%;
  }

  .xl\:ml-30\% {
    margin-left: 30%;
  }

  .xl\:max-h-full {
    max-height: 100%;
  }

  .xl\:max-h-md {
    max-height: 40rem;
  }

  .xl\:max-h-lg {
    max-height: 50rem;
  }

  .xl\:max-h-screen {
    max-height: 100vh;
  }

  .xl\:max-w-50 {
    max-width: 50%;
  }

  .xl\:max-w-xxs {
    max-width: 16rem;
  }

  .xl\:max-w-xs {
    max-width: 20rem;
  }

  .xl\:max-w-sm {
    max-width: 30rem;
  }

  .xl\:max-w-md {
    max-width: 40rem;
  }

  .xl\:max-w-lg {
    max-width: 50rem;
  }

  .xl\:max-w-xl {
    max-width: 60rem;
  }

  .xl\:max-w-2xl {
    max-width: 70rem;
  }

  .xl\:max-w-3xl {
    max-width: 80rem;
  }

  .xl\:max-w-4xl {
    max-width: 90rem;
  }

  .xl\:max-w-5xl {
    max-width: 100rem;
  }

  .xl\:max-w-full {
    max-width: 100%;
  }

  .xl\:min-h-0 {
    min-height: 0;
  }

  .xl\:min-h-full {
    min-height: 100%;
  }

  .xl\:min-h-screen {
    min-height: 100vh;
  }

  .xl\:min-w-0 {
    min-width: 0;
  }

  .xl\:min-w-full {
    min-width: 100%;
  }

  .xl\:-m-0 {
    margin: 0;
  }

  .xl\:-m-1 {
    margin: -0.25rem;
  }

  .xl\:-m-2 {
    margin: -0.5rem;
  }

  .xl\:-m-3 {
    margin: -0.75rem;
  }

  .xl\:-m-4 {
    margin: -1rem;
  }

  .xl\:-m-5 {
    margin: -1.25rem;
  }

  .xl\:-m-6 {
    margin: -1.5rem;
  }

  .xl\:-m-8 {
    margin: -2rem;
  }

  .xl\:-m-12 {
    margin: -3rem;
  }

  .xl\:-m-16 {
    margin: -4rem;
  }

  .xl\:-m-20 {
    margin: -5rem;
  }

  .xl\:-m-24 {
    margin: -6rem;
  }

  .xl\:-m-32 {
    margin: -8rem;
  }

  .xl\:-m-48 {
    margin: -12rem;
  }

  .xl\:-m-64 {
    margin: -16rem;
  }

  .xl\:-m-px {
    margin: -1px;
  }

  .xl\:-m-30\% {
    margin: -30%;
  }

  .xl\:-my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .xl\:-mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .xl\:-my-1 {
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .xl\:-mx-1 {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .xl\:-my-2 {
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .xl\:-mx-2 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .xl\:-my-3 {
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .xl\:-mx-3 {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .xl\:-my-4 {
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .xl\:-mx-4 {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .xl\:-my-5 {
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .xl\:-mx-5 {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .xl\:-my-6 {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .xl\:-mx-6 {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .xl\:-my-8 {
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .xl\:-mx-8 {
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .xl\:-my-12 {
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .xl\:-mx-12 {
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .xl\:-my-16 {
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .xl\:-mx-16 {
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .xl\:-my-20 {
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .xl\:-mx-20 {
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .xl\:-my-24 {
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .xl\:-mx-24 {
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .xl\:-my-32 {
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .xl\:-mx-32 {
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .xl\:-my-48 {
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .xl\:-mx-48 {
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .xl\:-my-64 {
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .xl\:-mx-64 {
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .xl\:-my-px {
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .xl\:-mx-px {
    margin-left: -1px;
    margin-right: -1px;
  }

  .xl\:-my-30\% {
    margin-top: -30%;
    margin-bottom: -30%;
  }

  .xl\:-mx-30\% {
    margin-left: -30%;
    margin-right: -30%;
  }

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

  .xl\:-mr-0 {
    margin-right: 0;
  }

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

  .xl\:-ml-0 {
    margin-left: 0;
  }

  .xl\:-mt-1 {
    margin-top: -0.25rem;
  }

  .xl\:-mr-1 {
    margin-right: -0.25rem;
  }

  .xl\:-mb-1 {
    margin-bottom: -0.25rem;
  }

  .xl\:-ml-1 {
    margin-left: -0.25rem;
  }

  .xl\:-mt-2 {
    margin-top: -0.5rem;
  }

  .xl\:-mr-2 {
    margin-right: -0.5rem;
  }

  .xl\:-mb-2 {
    margin-bottom: -0.5rem;
  }

  .xl\:-ml-2 {
    margin-left: -0.5rem;
  }

  .xl\:-mt-3 {
    margin-top: -0.75rem;
  }

  .xl\:-mr-3 {
    margin-right: -0.75rem;
  }

  .xl\:-mb-3 {
    margin-bottom: -0.75rem;
  }

  .xl\:-ml-3 {
    margin-left: -0.75rem;
  }

  .xl\:-mt-4 {
    margin-top: -1rem;
  }

  .xl\:-mr-4 {
    margin-right: -1rem;
  }

  .xl\:-mb-4 {
    margin-bottom: -1rem;
  }

  .xl\:-ml-4 {
    margin-left: -1rem;
  }

  .xl\:-mt-5 {
    margin-top: -1.25rem;
  }

  .xl\:-mr-5 {
    margin-right: -1.25rem;
  }

  .xl\:-mb-5 {
    margin-bottom: -1.25rem;
  }

  .xl\:-ml-5 {
    margin-left: -1.25rem;
  }

  .xl\:-mt-6 {
    margin-top: -1.5rem;
  }

  .xl\:-mr-6 {
    margin-right: -1.5rem;
  }

  .xl\:-mb-6 {
    margin-bottom: -1.5rem;
  }

  .xl\:-ml-6 {
    margin-left: -1.5rem;
  }

  .xl\:-mt-8 {
    margin-top: -2rem;
  }

  .xl\:-mr-8 {
    margin-right: -2rem;
  }

  .xl\:-mb-8 {
    margin-bottom: -2rem;
  }

  .xl\:-ml-8 {
    margin-left: -2rem;
  }

  .xl\:-mt-12 {
    margin-top: -3rem;
  }

  .xl\:-mr-12 {
    margin-right: -3rem;
  }

  .xl\:-mb-12 {
    margin-bottom: -3rem;
  }

  .xl\:-ml-12 {
    margin-left: -3rem;
  }

  .xl\:-mt-16 {
    margin-top: -4rem;
  }

  .xl\:-mr-16 {
    margin-right: -4rem;
  }

  .xl\:-mb-16 {
    margin-bottom: -4rem;
  }

  .xl\:-ml-16 {
    margin-left: -4rem;
  }

  .xl\:-mt-20 {
    margin-top: -5rem;
  }

  .xl\:-mr-20 {
    margin-right: -5rem;
  }

  .xl\:-mb-20 {
    margin-bottom: -5rem;
  }

  .xl\:-ml-20 {
    margin-left: -5rem;
  }

  .xl\:-mt-24 {
    margin-top: -6rem;
  }

  .xl\:-mr-24 {
    margin-right: -6rem;
  }

  .xl\:-mb-24 {
    margin-bottom: -6rem;
  }

  .xl\:-ml-24 {
    margin-left: -6rem;
  }

  .xl\:-mt-32 {
    margin-top: -8rem;
  }

  .xl\:-mr-32 {
    margin-right: -8rem;
  }

  .xl\:-mb-32 {
    margin-bottom: -8rem;
  }

  .xl\:-ml-32 {
    margin-left: -8rem;
  }

  .xl\:-mt-48 {
    margin-top: -12rem;
  }

  .xl\:-mr-48 {
    margin-right: -12rem;
  }

  .xl\:-mb-48 {
    margin-bottom: -12rem;
  }

  .xl\:-ml-48 {
    margin-left: -12rem;
  }

  .xl\:-mt-64 {
    margin-top: -16rem;
  }

  .xl\:-mr-64 {
    margin-right: -16rem;
  }

  .xl\:-mb-64 {
    margin-bottom: -16rem;
  }

  .xl\:-ml-64 {
    margin-left: -16rem;
  }

  .xl\:-mt-px {
    margin-top: -1px;
  }

  .xl\:-mr-px {
    margin-right: -1px;
  }

  .xl\:-mb-px {
    margin-bottom: -1px;
  }

  .xl\:-ml-px {
    margin-left: -1px;
  }

  .xl\:-mt-30\% {
    margin-top: -30%;
  }

  .xl\:-mr-30\% {
    margin-right: -30%;
  }

  .xl\:-mb-30\% {
    margin-bottom: -30%;
  }

  .xl\:-ml-30\% {
    margin-left: -30%;
  }

  .xl\:opacity-0 {
    opacity: 0;
  }

  .xl\:opacity-20 {
    opacity: .2;
  }

  .xl\:opacity-40 {
    opacity: .4;
  }

  .xl\:opacity-60 {
    opacity: .6;
  }

  .xl\:opacity-80 {
    opacity: .8;
  }

  .xl\:opacity-100 {
    opacity: 1;
  }

  .xl\:overflow-auto {
    overflow: auto;
  }

  .xl\:overflow-hidden {
    overflow: hidden;
  }

  .xl\:overflow-visible {
    overflow: visible;
  }

  .xl\:overflow-scroll {
    overflow: scroll;
  }

  .xl\:overflow-x-auto {
    overflow-x: auto;
  }

  .xl\:overflow-y-auto {
    overflow-y: auto;
  }

  .xl\:overflow-x-hidden {
    overflow-x: hidden;
  }

  .xl\:overflow-y-hidden {
    overflow-y: hidden;
  }

  .xl\:overflow-x-visible {
    overflow-x: visible;
  }

  .xl\:overflow-y-visible {
    overflow-y: visible;
  }

  .xl\:overflow-x-scroll {
    overflow-x: scroll;
  }

  .xl\:overflow-y-scroll {
    overflow-y: scroll;
  }

  .xl\:scrolling-touch {
    -webkit-overflow-scrolling: touch;
  }

  .xl\:scrolling-auto {
    -webkit-overflow-scrolling: auto;
  }

  .xl\:p-0 {
    padding: 0;
  }

  .xl\:p-1 {
    padding: .25rem;
  }

  .xl\:p-2 {
    padding: .5rem;
  }

  .xl\:p-3 {
    padding: .75rem;
  }

  .xl\:p-4 {
    padding: 1rem;
  }

  .xl\:p-5 {
    padding: 1.25rem;
  }

  .xl\:p-6 {
    padding: 1.5rem;
  }

  .xl\:p-8 {
    padding: 2rem;
  }

  .xl\:p-10 {
    padding: 2.5rem;
  }

  .xl\:p-12 {
    padding: 3rem;
  }

  .xl\:p-16 {
    padding: 4rem;
  }

  .xl\:p-20 {
    padding: 5rem;
  }

  .xl\:p-24 {
    padding: 6rem;
  }

  .xl\:p-32 {
    padding: 8rem;
  }

  .xl\:p-48 {
    padding: 12rem;
  }

  .xl\:p-64 {
    padding: 16rem;
  }

  .xl\:p-px {
    padding: 1px;
  }

  .xl\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .xl\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .xl\:py-1 {
    padding-top: .25rem;
    padding-bottom: .25rem;
  }

  .xl\:px-1 {
    padding-left: .25rem;
    padding-right: .25rem;
  }

  .xl\:py-2 {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .xl\:px-2 {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .xl\:py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .xl\:px-3 {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .xl\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .xl\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .xl\:py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .xl\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .xl\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .xl\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .xl\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .xl\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .xl\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .xl\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .xl\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .xl\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .xl\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .xl\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .xl\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .xl\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .xl\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .xl\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .xl\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .xl\:px-32 {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .xl\:py-48 {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .xl\:px-48 {
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .xl\:py-64 {
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .xl\:px-64 {
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .xl\:py-px {
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .xl\:px-px {
    padding-left: 1px;
    padding-right: 1px;
  }

  .xl\:pt-0 {
    padding-top: 0;
  }

  .xl\:pr-0 {
    padding-right: 0;
  }

  .xl\:pb-0 {
    padding-bottom: 0;
  }

  .xl\:pl-0 {
    padding-left: 0;
  }

  .xl\:pt-1 {
    padding-top: .25rem;
  }

  .xl\:pr-1 {
    padding-right: .25rem;
  }

  .xl\:pb-1 {
    padding-bottom: .25rem;
  }

  .xl\:pl-1 {
    padding-left: .25rem;
  }

  .xl\:pt-2 {
    padding-top: .5rem;
  }

  .xl\:pr-2 {
    padding-right: .5rem;
  }

  .xl\:pb-2 {
    padding-bottom: .5rem;
  }

  .xl\:pl-2 {
    padding-left: .5rem;
  }

  .xl\:pt-3 {
    padding-top: .75rem;
  }

  .xl\:pr-3 {
    padding-right: .75rem;
  }

  .xl\:pb-3 {
    padding-bottom: .75rem;
  }

  .xl\:pl-3 {
    padding-left: .75rem;
  }

  .xl\:pt-4 {
    padding-top: 1rem;
  }

  .xl\:pr-4 {
    padding-right: 1rem;
  }

  .xl\:pb-4 {
    padding-bottom: 1rem;
  }

  .xl\:pl-4 {
    padding-left: 1rem;
  }

  .xl\:pt-5 {
    padding-top: 1.25rem;
  }

  .xl\:pr-5 {
    padding-right: 1.25rem;
  }

  .xl\:pb-5 {
    padding-bottom: 1.25rem;
  }

  .xl\:pl-5 {
    padding-left: 1.25rem;
  }

  .xl\:pt-6 {
    padding-top: 1.5rem;
  }

  .xl\:pr-6 {
    padding-right: 1.5rem;
  }

  .xl\:pb-6 {
    padding-bottom: 1.5rem;
  }

  .xl\:pl-6 {
    padding-left: 1.5rem;
  }

  .xl\:pt-8 {
    padding-top: 2rem;
  }

  .xl\:pr-8 {
    padding-right: 2rem;
  }

  .xl\:pb-8 {
    padding-bottom: 2rem;
  }

  .xl\:pl-8 {
    padding-left: 2rem;
  }

  .xl\:pt-10 {
    padding-top: 2.5rem;
  }

  .xl\:pr-10 {
    padding-right: 2.5rem;
  }

  .xl\:pb-10 {
    padding-bottom: 2.5rem;
  }

  .xl\:pl-10 {
    padding-left: 2.5rem;
  }

  .xl\:pt-12 {
    padding-top: 3rem;
  }

  .xl\:pr-12 {
    padding-right: 3rem;
  }

  .xl\:pb-12 {
    padding-bottom: 3rem;
  }

  .xl\:pl-12 {
    padding-left: 3rem;
  }

  .xl\:pt-16 {
    padding-top: 4rem;
  }

  .xl\:pr-16 {
    padding-right: 4rem;
  }

  .xl\:pb-16 {
    padding-bottom: 4rem;
  }

  .xl\:pl-16 {
    padding-left: 4rem;
  }

  .xl\:pt-20 {
    padding-top: 5rem;
  }

  .xl\:pr-20 {
    padding-right: 5rem;
  }

  .xl\:pb-20 {
    padding-bottom: 5rem;
  }

  .xl\:pl-20 {
    padding-left: 5rem;
  }

  .xl\:pt-24 {
    padding-top: 6rem;
  }

  .xl\:pr-24 {
    padding-right: 6rem;
  }

  .xl\:pb-24 {
    padding-bottom: 6rem;
  }

  .xl\:pl-24 {
    padding-left: 6rem;
  }

  .xl\:pt-32 {
    padding-top: 8rem;
  }

  .xl\:pr-32 {
    padding-right: 8rem;
  }

  .xl\:pb-32 {
    padding-bottom: 8rem;
  }

  .xl\:pl-32 {
    padding-left: 8rem;
  }

  .xl\:pt-48 {
    padding-top: 12rem;
  }

  .xl\:pr-48 {
    padding-right: 12rem;
  }

  .xl\:pb-48 {
    padding-bottom: 12rem;
  }

  .xl\:pl-48 {
    padding-left: 12rem;
  }

  .xl\:pt-64 {
    padding-top: 16rem;
  }

  .xl\:pr-64 {
    padding-right: 16rem;
  }

  .xl\:pb-64 {
    padding-bottom: 16rem;
  }

  .xl\:pl-64 {
    padding-left: 16rem;
  }

  .xl\:pt-px {
    padding-top: 1px;
  }

  .xl\:pr-px {
    padding-right: 1px;
  }

  .xl\:pb-px {
    padding-bottom: 1px;
  }

  .xl\:pl-px {
    padding-left: 1px;
  }

  .xl\:pointer-events-none {
    pointer-events: none;
  }

  .xl\:pointer-events-auto {
    pointer-events: auto;
  }

  .xl\:static {
    position: static;
  }

  .xl\:fixed {
    position: fixed;
  }

  .xl\:absolute {
    position: absolute;
  }

  .xl\:relative {
    position: relative;
  }

  .xl\:sticky {
    position: sticky;
  }

  .xl\:pin-none {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .xl\:pin {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .xl\:pin-y {
    top: 0;
    bottom: 0;
  }

  .xl\:pin-x {
    right: 0;
    left: 0;
  }

  .xl\:pin-t {
    top: 0;
  }

  .xl\:pin-r {
    right: 0;
  }

  .xl\:pin-b {
    bottom: 0;
  }

  .xl\:pin-l {
    left: 0;
  }

  .xl\:resize-none {
    resize: none;
  }

  .xl\:resize-y {
    resize: vertical;
  }

  .xl\:resize-x {
    resize: horizontal;
  }

  .xl\:resize {
    resize: both;
  }

  .xl\:shadow-swatch-sm {
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .1);
            box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .1);
  }

  .xl\:shadow-swatch-lg {
    -webkit-box-shadow: 0 8px 8px 0 rgba(34, 34, 34, .1);
            box-shadow: 0 8px 8px 0 rgba(34, 34, 34, .1);
  }

  .xl\:shadow-swatch-xl {
    -webkit-box-shadow: 0 16px 16px 0 rgba(34, 34, 34, .1);
            box-shadow: 0 16px 16px 0 rgba(34, 34, 34, .1);
  }

  .xl\:shadow-dark {
    -webkit-box-shadow: 8px 8px 0px 0px #222;
            box-shadow: 8px 8px 0px 0px #222;
  }

  .xl\:shadow-button-white-off {
    -webkit-box-shadow: 0 2px 0 0 #eee;
            box-shadow: 0 2px 0 0 #eee;
  }

  .xl\:shadow-button-white-hover {
    -webkit-box-shadow: 8px 8px 0 0 #eee;
            box-shadow: 8px 8px 0 0 #eee;
  }

  .xl\:shadow-button-white-hover-vertical {
    -webkit-box-shadow: 0px 8px 0 0 #eee;
            box-shadow: 0px 8px 0 0 #eee;
  }

  .xl\:shadow-button-black-hover {
    -webkit-box-shadow: 8px 8px 0 0 #000;
            box-shadow: 8px 8px 0 0 #000;
  }

  .xl\:shadow-tooltip-white-off {
    -webkit-box-shadow: 0 2px 0 0 #e9e9e9;
            box-shadow: 0 2px 0 0 #e9e9e9;
  }

  .xl\:shadow-tooltip-white-hover {
    -webkit-box-shadow: 4px 4px 0 0 #e9e9e9;
            box-shadow: 4px 4px 0 0 #e9e9e9;
  }

  .xl\:shadow-pagination-greg-light-hover {
    -webkit-box-shadow: 2px 2px 0 0 #b2b2b2;
            box-shadow: 2px 2px 0 0 #b2b2b2;
  }

  .xl\:shadow-dropdown-off {
    -webkit-box-shadow: 0 2px 0 0 #ddd;
            box-shadow: 0 2px 0 0 #ddd;
  }

  .xl\:shadow-dropdown-hover {
    -webkit-box-shadow: 0 8px 0 0 #ddd;
            box-shadow: 0 8px 0 0 #ddd;
  }

  .xl\:shadow-dropdown-dark-off {
    -webkit-box-shadow: 0 2px 0 0 #111;
            box-shadow: 0 2px 0 0 #111;
  }

  .xl\:shadow-tooltip-grey-light-active {
    -webkit-box-shadow: 0 2px 0 0 #ccc;
            box-shadow: 0 2px 0 0 #ccc;
  }

  .xl\:shadow-inset-top-black {
    -webkit-box-shadow: inset 0px 2px 0px 0px #222;
            box-shadow: inset 0px 2px 0px 0px #222;
  }

  .xl\:shadow-inset-top-white {
    -webkit-box-shadow: inset 0px 2px 0px 0px #fff;
            box-shadow: inset 0px 2px 0px 0px #fff;
  }

  .xl\:shadow-none {
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .xl\:table-auto {
    table-layout: auto;
  }

  .xl\:table-fixed {
    table-layout: fixed;
  }

  .xl\:text-left {
    text-align: left;
  }

  .xl\:text-center {
    text-align: center;
  }

  .xl\:text-right {
    text-align: right;
  }

  .xl\:text-justify {
    text-align: justify;
  }

  .xl\:text-transparent {
    color: transparent;
  }

  .xl\:text-brand {
    color: #ff993d;
  }

  .xl\:text-dealer-brand {
    color: #305371;
  }

  .xl\:text-oem-brand {
    color: #91989e;
  }

  .xl\:text-black {
    color: #222;
  }

  .xl\:text-white {
    color: #fff;
  }

  .xl\:text-grey-darkest {
    color: #333;
  }

  .xl\:text-grey-darker {
    color: #626262;
  }

  .xl\:text-grey-md-dark {
    color: #999;
  }

  .xl\:text-grey-dark {
    color: #b2b2b2;
  }

  .xl\:text-grey {
    color: #ccc;
  }

  .xl\:text-grey-light {
    color: #ddd;
  }

  .xl\:text-grey-lighter {
    color: #eee;
  }

  .xl\:text-grey-lightest {
    color: #f8f8f8;
  }

  .xl\:text-grey-accent {
    color: #efefef;
  }

  .xl\:text-success {
    color: #449343;
  }

  .xl\:hover\:text-transparent:hover {
    color: transparent;
  }

  .xl\:hover\:text-brand:hover {
    color: #ff993d;
  }

  .xl\:hover\:text-dealer-brand:hover {
    color: #305371;
  }

  .xl\:hover\:text-oem-brand:hover {
    color: #91989e;
  }

  .xl\:hover\:text-black:hover {
    color: #222;
  }

  .xl\:hover\:text-white:hover {
    color: #fff;
  }

  .xl\:hover\:text-grey-darkest:hover {
    color: #333;
  }

  .xl\:hover\:text-grey-darker:hover {
    color: #626262;
  }

  .xl\:hover\:text-grey-md-dark:hover {
    color: #999;
  }

  .xl\:hover\:text-grey-dark:hover {
    color: #b2b2b2;
  }

  .xl\:hover\:text-grey:hover {
    color: #ccc;
  }

  .xl\:hover\:text-grey-light:hover {
    color: #ddd;
  }

  .xl\:hover\:text-grey-lighter:hover {
    color: #eee;
  }

  .xl\:hover\:text-grey-lightest:hover {
    color: #f8f8f8;
  }

  .xl\:hover\:text-grey-accent:hover {
    color: #efefef;
  }

  .xl\:hover\:text-success:hover {
    color: #449343;
  }

  .xl\:text-xxs {
    font-size: .625rem;
  }

  .xl\:text-xs {
    font-size: .75rem;
  }

  .xl\:text-sm {
    font-size: .875rem;
  }

  .xl\:text-base {
    font-size: 1rem;
  }

  .xl\:text-smd {
    font-size: 1.25rem;
  }

  .xl\:text-md {
    font-size: 1.5rem;
  }

  .xl\:text-lmd {
    font-size: 1.75rem;
  }

  .xl\:text-lg {
    font-size: 2rem;
  }

  .xl\:text-xl {
    font-size: 2.5rem;
  }

  .xl\:text-2xl {
    font-size: 3rem;
  }

  .xl\:text-3xl {
    font-size: 3.5rem;
  }

  .xl\:text-4xl {
    font-size: 5rem;
  }

  .xl\:text-5xl {
    font-size: 6rem;
  }

  .xl\:italic {
    font-style: italic;
  }

  .xl\:roman {
    font-style: normal;
  }

  .xl\:uppercase {
    text-transform: uppercase;
  }

  .xl\:lowercase {
    text-transform: lowercase;
  }

  .xl\:capitalize {
    text-transform: capitalize;
  }

  .xl\:normal-case {
    text-transform: none;
  }

  .xl\:underline {
    text-decoration: underline;
  }

  .xl\:line-through {
    text-decoration: line-through;
  }

  .xl\:no-underline {
    text-decoration: none;
  }

  .xl\:antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .xl\:subpixel-antialiased {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .xl\:hover\:italic:hover {
    font-style: italic;
  }

  .xl\:hover\:roman:hover {
    font-style: normal;
  }

  .xl\:hover\:uppercase:hover {
    text-transform: uppercase;
  }

  .xl\:hover\:lowercase:hover {
    text-transform: lowercase;
  }

  .xl\:hover\:capitalize:hover {
    text-transform: capitalize;
  }

  .xl\:hover\:normal-case:hover {
    text-transform: none;
  }

  .xl\:hover\:underline:hover {
    text-decoration: underline;
  }

  .xl\:hover\:line-through:hover {
    text-decoration: line-through;
  }

  .xl\:hover\:no-underline:hover {
    text-decoration: none;
  }

  .xl\:hover\:antialiased:hover {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .xl\:hover\:subpixel-antialiased:hover {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .xl\:tracking-tight {
    letter-spacing: -0.05em;
  }

  .xl\:tracking-tightish {
    letter-spacing: -0.032em;
  }

  .xl\:tracking-normal {
    letter-spacing: 0;
  }

  .xl\:tracking-wide {
    letter-spacing: .05em;
  }

  .xl\:select-none {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .xl\:select-text {
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .xl\:align-baseline {
    vertical-align: baseline;
  }

  .xl\:align-top {
    vertical-align: top;
  }

  .xl\:align-middle {
    vertical-align: middle;
  }

  .xl\:align-bottom {
    vertical-align: bottom;
  }

  .xl\:align-text-top {
    vertical-align: text-top;
  }

  .xl\:align-text-bottom {
    vertical-align: text-bottom;
  }

  .xl\:visible {
    visibility: visible;
  }

  .xl\:invisible {
    visibility: hidden;
  }

  .xl\:whitespace-normal {
    white-space: normal;
  }

  .xl\:whitespace-no-wrap {
    white-space: nowrap;
  }

  .xl\:whitespace-pre {
    white-space: pre;
  }

  .xl\:whitespace-pre-line {
    white-space: pre-line;
  }

  .xl\:whitespace-pre-wrap {
    white-space: pre-wrap;
  }

  .xl\:break-words {
    word-wrap: break-word;
  }

  .xl\:break-normal {
    word-wrap: normal;
  }

  .xl\:truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .xl\:w-1 {
    width: .25rem;
  }

  .xl\:w-2 {
    width: .5rem;
  }

  .xl\:w-3 {
    width: .75rem;
  }

  .xl\:w-4 {
    width: 1rem;
  }

  .xl\:w-5 {
    width: 1.25rem;
  }

  .xl\:w-6 {
    width: 1.5rem;
  }

  .xl\:w-8 {
    width: 2rem;
  }

  .xl\:w-12 {
    width: 3rem;
  }

  .xl\:w-16 {
    width: 4rem;
  }

  .xl\:w-24 {
    width: 6rem;
  }

  .xl\:w-32 {
    width: 8rem;
  }

  .xl\:w-48 {
    width: 12rem;
  }

  .xl\:w-64 {
    width: 16rem;
  }

  .xl\:w-auto {
    width: auto;
  }

  .xl\:w-px {
    width: 1px;
  }

  .xl\:w-1\/2 {
    width: 50%;
  }

  .xl\:w-1\/3 {
    width: 33.33333%;
  }

  .xl\:w-2\/3 {
    width: 66.66667%;
  }

  .xl\:w-1\/4 {
    width: 25%;
  }

  .xl\:w-3\/4 {
    width: 75%;
  }

  .xl\:w-1\/5 {
    width: 20%;
  }

  .xl\:w-2\/5 {
    width: 40%;
  }

  .xl\:w-3\/5 {
    width: 60%;
  }

  .xl\:w-4\/5 {
    width: 80%;
  }

  .xl\:w-1\/6 {
    width: 16.66667%;
  }

  .xl\:w-5\/6 {
    width: 83.33333%;
  }

  .xl\:w-full {
    width: 100%;
  }

  .xl\:w-screen {
    width: 100vw;
  }

  .xl\:w--borderfix {
    width: calc(100% - 1px);
  }

  .xl\:w-borderfix {
    width: calc(100% + 1px);
  }

  .xl\:w-fit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .xl\:z-0 {
    z-index: 0;
  }

  .xl\:z-10 {
    z-index: 10;
  }

  .xl\:z-20 {
    z-index: 20;
  }

  .xl\:z-30 {
    z-index: 30;
  }

  .xl\:z-40 {
    z-index: 40;
  }

  .xl\:z-50 {
    z-index: 50;
  }

  .xl\:z-100 {
    z-index: 100;
  }

  .xl\:z-200 {
    z-index: 200;
  }

  .xl\:z-300 {
    z-index: 300;
  }

  .xl\:z-400 {
    z-index: 400;
  }

  .xl\:z-500 {
    z-index: 500;
  }

  .xl\:z-1000 {
    z-index: 1000;
  }

  .xl\:z-2000 {
    z-index: 2000;
  }
}

@media (min-width: 1600px) {
  .2x\:col-xs {
    -webkit-box-flex: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  @media (min-width: 768px) {
    .col-xs {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .2x\:col-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  @media (min-width: 768px) {
    .col-1 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .2x\:col-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  @media (min-width: 768px) {
    .col-2 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .2x\:col-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  @media (min-width: 768px) {
    .col-3 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .2x\:col-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  @media (min-width: 768px) {
    .col-4 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .2x\:col-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  @media (min-width: 768px) {
    .col-5 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .2x\:col-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  @media (min-width: 768px) {
    .col-6 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .2x\:col-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  @media (min-width: 768px) {
    .col-7 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .2x\:col-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  @media (min-width: 768px) {
    .col-8 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .2x\:col-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  @media (min-width: 768px) {
    .col-9 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .2x\:col-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  @media (min-width: 768px) {
    .col-10 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .2x\:col-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  @media (min-width: 768px) {
    .col-11 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .2x\:col-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  @media (min-width: 768px) {
    .col-12 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .2x\:col-offset-0 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 0;
  }

  @media (min-width: 768px) {
    .col-offset-0 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .2x\:col-offset-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 8.33333333%;
  }

  @media (min-width: 768px) {
    .col-offset-1 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .2x\:col-offset-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 16.66666667%;
  }

  @media (min-width: 768px) {
    .col-offset-2 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .2x\:col-offset-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 25%;
  }

  @media (min-width: 768px) {
    .col-offset-3 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .2x\:col-offset-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 33.33333333%;
  }

  @media (min-width: 768px) {
    .col-offset-4 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .2x\:col-offset-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 41.66666667%;
  }

  @media (min-width: 768px) {
    .col-offset-5 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .2x\:col-offset-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 50%;
  }

  @media (min-width: 768px) {
    .col-offset-6 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .2x\:col-offset-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 58.33333333%;
  }

  @media (min-width: 768px) {
    .col-offset-7 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .2x\:col-offset-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 66.66666667%;
  }

  @media (min-width: 768px) {
    .col-offset-8 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .2x\:col-offset-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 75%;
  }

  @media (min-width: 768px) {
    .col-offset-9 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .2x\:col-offset-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 83.33333333%;
  }

  @media (min-width: 768px) {
    .col-offset-10 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .2x\:col-offset-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 91.66666667%;
  }

  @media (min-width: 768px) {
    .col-offset-11 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .2x\:start-xs {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .2x\:center-xs {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .2x\:end-xs {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .2x\:top-xs {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .2x\:middle-xs {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .2x\:bottom-xs {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .2x\:around-xs {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .2x\:between-xs {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .2x\:first-xs {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .2x\:last-xs {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .2x\:row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
  }

  .2x\:col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }

  .2x\:grid-row {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-right: -0.5rem;
    margin-left: -0.5rem;
  }

  @media (min-width: 768px) {
    .grid-row {
      margin-right: -1rem;
      margin-left: -1rem;
    }
  }

  .grid-row .2x\:grid-row {
    margin-right: -0.25rem;
    margin-left: -0.25rem;
  }

  @media (min-width: 768px) {
    .grid-row .grid-row {
      margin-right: -0.5rem;
      margin-left: -0.5rem;
    }
  }

  .2x\:h1 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 6rem;
    line-height: calc(100% + 8px);
    letter-spacing: -4px;
  }

  .2x\:h2 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 5rem;
    line-height: calc(100% + 8px);
    letter-spacing: -3px;
  }

  .2x\:h3-large {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 4rem;
    line-height: calc(100% + 8px);
    letter-spacing: -2.66px;
  }

  .2x\:h3 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 3.5rem;
    line-height: calc(100% + 8px);
    letter-spacing: -2px;
  }

  .2x\:h4 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 3rem;
    line-height: calc(100% + 8px);
    letter-spacing: -1.5px;
  }

  .2x\:h5 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 1.5rem;
    line-height: calc(100% + 8px);
    font-weight: 300;
    letter-spacing: -1px;
  }

  .2x\:h6 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    line-height: calc(100% + 8px);
    font-weight: 300;
  }

  .2x\:header-d0 {
    font-size: 2.5rem;
    line-height: calc(100% + 8px);
    letter-spacing: -1.5px;
  }

  .2x\:header-d1 {
    font-size: 2rem;
    line-height: calc(100% + 8px);
    letter-spacing: -1.25px;
  }

  .2x\:header-e1 {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: -1px;
  }

  .2x\:grid-wrapper {
    margin: 0 auto;
    max-width: 1368px;
    padding: 0 2rem;
  }

  .2x\:card-driver__content-outer--left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .2x\:card-driver__content-outer--right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .2x\:card-driver__content--lg {
    width: 83.33333%;
  }

  .2x\:card-driver__content--md {
    width: 66.66666%;
  }

  .2x\:card-driver__content--sm {
    width: 50%;
  }

  .2x\:card-driver__content--smx {
    width: 33%;
  }

  .2x\:card-driver__content--xs {
    width: 25%;
  }

  .2x\:card-driver__content--auto {
    width: auto;
  }

  .2x\:list-reset {
    list-style: none;
    padding: 0;
  }

  .2x\:appearance-none {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .2x\:bg-fixed {
    background-attachment: fixed;
  }

  .2x\:bg-local {
    background-attachment: local;
  }

  .2x\:bg-scroll {
    background-attachment: scroll;
  }

  .2x\:bg-transparent {
    background-color: transparent;
  }

  .2x\:bg-brand {
    background-color: #ff993d;
  }

  .2x\:bg-dealer-brand {
    background-color: #305371;
  }

  .2x\:bg-oem-brand {
    background-color: #91989e;
  }

  .2x\:bg-black {
    background-color: #222;
  }

  .2x\:bg-white {
    background-color: #fff;
  }

  .2x\:bg-grey-darkest {
    background-color: #333;
  }

  .2x\:bg-grey-darker {
    background-color: #626262;
  }

  .2x\:bg-grey-md-dark {
    background-color: #999;
  }

  .2x\:bg-grey-dark {
    background-color: #b2b2b2;
  }

  .2x\:bg-grey {
    background-color: #ccc;
  }

  .2x\:bg-grey-light {
    background-color: #ddd;
  }

  .2x\:bg-grey-lighter {
    background-color: #eee;
  }

  .2x\:bg-grey-lightest {
    background-color: #f8f8f8;
  }

  .2x\:bg-grey-accent {
    background-color: #efefef;
  }

  .2x\:bg-success {
    background-color: #449343;
  }

  .2x\:hover\:bg-transparent:hover {
    background-color: transparent;
  }

  .2x\:hover\:bg-brand:hover {
    background-color: #ff993d;
  }

  .2x\:hover\:bg-dealer-brand:hover {
    background-color: #305371;
  }

  .2x\:hover\:bg-oem-brand:hover {
    background-color: #91989e;
  }

  .2x\:hover\:bg-black:hover {
    background-color: #222;
  }

  .2x\:hover\:bg-white:hover {
    background-color: #fff;
  }

  .2x\:hover\:bg-grey-darkest:hover {
    background-color: #333;
  }

  .2x\:hover\:bg-grey-darker:hover {
    background-color: #626262;
  }

  .2x\:hover\:bg-grey-md-dark:hover {
    background-color: #999;
  }

  .2x\:hover\:bg-grey-dark:hover {
    background-color: #b2b2b2;
  }

  .2x\:hover\:bg-grey:hover {
    background-color: #ccc;
  }

  .2x\:hover\:bg-grey-light:hover {
    background-color: #ddd;
  }

  .2x\:hover\:bg-grey-lighter:hover {
    background-color: #eee;
  }

  .2x\:hover\:bg-grey-lightest:hover {
    background-color: #f8f8f8;
  }

  .2x\:hover\:bg-grey-accent:hover {
    background-color: #efefef;
  }

  .2x\:hover\:bg-success:hover {
    background-color: #449343;
  }

  .2x\:bg-bottom {
    background-position: bottom;
  }

  .2x\:bg-center {
    background-position: center;
  }

  .2x\:bg-left {
    background-position: left;
  }

  .2x\:bg-left-bottom {
    background-position: left bottom;
  }

  .2x\:bg-left-top {
    background-position: left top;
  }

  .2x\:bg-right {
    background-position: right;
  }

  .2x\:bg-right-bottom {
    background-position: right bottom;
  }

  .2x\:bg-right-top {
    background-position: right top;
  }

  .2x\:bg-top {
    background-position: top;
  }

  .2x\:bg-repeat {
    background-repeat: repeat;
  }

  .2x\:bg-no-repeat {
    background-repeat: no-repeat;
  }

  .2x\:bg-repeat-x {
    background-repeat: repeat-x;
  }

  .2x\:bg-repeat-y {
    background-repeat: repeat-y;
  }

  .2x\:bg-auto {
    background-size: auto;
  }

  .2x\:bg-cover {
    background-size: cover;
  }

  .2x\:bg-contain {
    background-size: contain;
  }

  .2x\:border-transparent {
    border-color: transparent;
  }

  .2x\:border-brand {
    border-color: #ff993d;
  }

  .2x\:border-dealer-brand {
    border-color: #305371;
  }

  .2x\:border-oem-brand {
    border-color: #91989e;
  }

  .2x\:border-black {
    border-color: #222;
  }

  .2x\:border-white {
    border-color: #fff;
  }

  .2x\:border-grey-darkest {
    border-color: #333;
  }

  .2x\:border-grey-darker {
    border-color: #626262;
  }

  .2x\:border-grey-md-dark {
    border-color: #999;
  }

  .2x\:border-grey-dark {
    border-color: #b2b2b2;
  }

  .2x\:border-grey {
    border-color: #ccc;
  }

  .2x\:border-grey-light {
    border-color: #ddd;
  }

  .2x\:border-grey-lighter {
    border-color: #eee;
  }

  .2x\:border-grey-lightest {
    border-color: #f8f8f8;
  }

  .2x\:border-grey-accent {
    border-color: #efefef;
  }

  .2x\:border-success {
    border-color: #449343;
  }

  .2x\:hover\:border-transparent:hover {
    border-color: transparent;
  }

  .2x\:hover\:border-brand:hover {
    border-color: #ff993d;
  }

  .2x\:hover\:border-dealer-brand:hover {
    border-color: #305371;
  }

  .2x\:hover\:border-oem-brand:hover {
    border-color: #91989e;
  }

  .2x\:hover\:border-black:hover {
    border-color: #222;
  }

  .2x\:hover\:border-white:hover {
    border-color: #fff;
  }

  .2x\:hover\:border-grey-darkest:hover {
    border-color: #333;
  }

  .2x\:hover\:border-grey-darker:hover {
    border-color: #626262;
  }

  .2x\:hover\:border-grey-md-dark:hover {
    border-color: #999;
  }

  .2x\:hover\:border-grey-dark:hover {
    border-color: #b2b2b2;
  }

  .2x\:hover\:border-grey:hover {
    border-color: #ccc;
  }

  .2x\:hover\:border-grey-light:hover {
    border-color: #ddd;
  }

  .2x\:hover\:border-grey-lighter:hover {
    border-color: #eee;
  }

  .2x\:hover\:border-grey-lightest:hover {
    border-color: #f8f8f8;
  }

  .2x\:hover\:border-grey-accent:hover {
    border-color: #efefef;
  }

  .2x\:hover\:border-success:hover {
    border-color: #449343;
  }

  .2x\:rounded-none {
    border-radius: 0;
  }

  .2x\:rounded-xm {
    border-radius: .125rem;
  }

  .2x\:rounded {
    border-radius: .25rem;
  }

  .2x\:rounded-lg {
    border-radius: .5rem;
  }

  .2x\:rounded-full {
    border-radius: 9999px;
  }

  .2x\:rounded-t-none {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .2x\:rounded-r-none {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .2x\:rounded-b-none {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .2x\:rounded-l-none {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .2x\:rounded-t-xm {
    border-top-left-radius: .125rem;
    border-top-right-radius: .125rem;
  }

  .2x\:rounded-r-xm {
    border-top-right-radius: .125rem;
    border-bottom-right-radius: .125rem;
  }

  .2x\:rounded-b-xm {
    border-bottom-right-radius: .125rem;
    border-bottom-left-radius: .125rem;
  }

  .2x\:rounded-l-xm {
    border-top-left-radius: .125rem;
    border-bottom-left-radius: .125rem;
  }

  .2x\:rounded-t {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
  }

  .2x\:rounded-r {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
  }

  .2x\:rounded-b {
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem;
  }

  .2x\:rounded-l {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
  }

  .2x\:rounded-t-lg {
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
  }

  .2x\:rounded-r-lg {
    border-top-right-radius: .5rem;
    border-bottom-right-radius: .5rem;
  }

  .2x\:rounded-b-lg {
    border-bottom-right-radius: .5rem;
    border-bottom-left-radius: .5rem;
  }

  .2x\:rounded-l-lg {
    border-top-left-radius: .5rem;
    border-bottom-left-radius: .5rem;
  }

  .2x\:rounded-t-full {
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .2x\:rounded-r-full {
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .2x\:rounded-b-full {
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .2x\:rounded-l-full {
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .2x\:rounded-tl-none {
    border-top-left-radius: 0;
  }

  .2x\:rounded-tr-none {
    border-top-right-radius: 0;
  }

  .2x\:rounded-br-none {
    border-bottom-right-radius: 0;
  }

  .2x\:rounded-bl-none {
    border-bottom-left-radius: 0;
  }

  .2x\:rounded-tl-xm {
    border-top-left-radius: .125rem;
  }

  .2x\:rounded-tr-xm {
    border-top-right-radius: .125rem;
  }

  .2x\:rounded-br-xm {
    border-bottom-right-radius: .125rem;
  }

  .2x\:rounded-bl-xm {
    border-bottom-left-radius: .125rem;
  }

  .2x\:rounded-tl {
    border-top-left-radius: .25rem;
  }

  .2x\:rounded-tr {
    border-top-right-radius: .25rem;
  }

  .2x\:rounded-br {
    border-bottom-right-radius: .25rem;
  }

  .2x\:rounded-bl {
    border-bottom-left-radius: .25rem;
  }

  .2x\:rounded-tl-lg {
    border-top-left-radius: .5rem;
  }

  .2x\:rounded-tr-lg {
    border-top-right-radius: .5rem;
  }

  .2x\:rounded-br-lg {
    border-bottom-right-radius: .5rem;
  }

  .2x\:rounded-bl-lg {
    border-bottom-left-radius: .5rem;
  }

  .2x\:rounded-tl-full {
    border-top-left-radius: 9999px;
  }

  .2x\:rounded-tr-full {
    border-top-right-radius: 9999px;
  }

  .2x\:rounded-br-full {
    border-bottom-right-radius: 9999px;
  }

  .2x\:rounded-bl-full {
    border-bottom-left-radius: 9999px;
  }

  .2x\:border-solid {
    border-style: solid;
  }

  .2x\:border-dashed {
    border-style: dashed;
  }

  .2x\:border-dotted {
    border-style: dotted;
  }

  .2x\:border-none {
    border-style: none;
  }

  .2x\:border-0 {
    border-width: 0;
  }

  .2x\:border-1 {
    border-width: 1px;
  }

  .2x\:border-2 {
    border-width: 2px;
  }

  .2x\:border-4 {
    border-width: 4px;
  }

  .2x\:border-8 {
    border-width: 8px;
  }

  .2x\:border-t-0 {
    border-top-width: 0;
  }

  .2x\:border-r-0 {
    border-right-width: 0;
  }

  .2x\:border-b-0 {
    border-bottom-width: 0;
  }

  .2x\:border-l-0 {
    border-left-width: 0;
  }

  .2x\:border-t-1 {
    border-top-width: 1px;
  }

  .2x\:border-r-1 {
    border-right-width: 1px;
  }

  .2x\:border-b-1 {
    border-bottom-width: 1px;
  }

  .2x\:border-l-1 {
    border-left-width: 1px;
  }

  .2x\:border-t-2 {
    border-top-width: 2px;
  }

  .2x\:border-r-2 {
    border-right-width: 2px;
  }

  .2x\:border-b-2 {
    border-bottom-width: 2px;
  }

  .2x\:border-l-2 {
    border-left-width: 2px;
  }

  .2x\:border-t-4 {
    border-top-width: 4px;
  }

  .2x\:border-r-4 {
    border-right-width: 4px;
  }

  .2x\:border-b-4 {
    border-bottom-width: 4px;
  }

  .2x\:border-l-4 {
    border-left-width: 4px;
  }

  .2x\:border-t-8 {
    border-top-width: 8px;
  }

  .2x\:border-r-8 {
    border-right-width: 8px;
  }

  .2x\:border-b-8 {
    border-bottom-width: 8px;
  }

  .2x\:border-l-8 {
    border-left-width: 8px;
  }

  .2x\:cursor-auto {
    cursor: auto;
  }

  .2x\:cursor-default {
    cursor: default;
  }

  .2x\:cursor-pointer {
    cursor: pointer;
  }

  .2x\:cursor-wait {
    cursor: wait;
  }

  .2x\:cursor-move {
    cursor: move;
  }

  .2x\:cursor-not-allowed {
    cursor: not-allowed;
  }

  .2x\:block {
    display: block;
  }

  .2x\:inline-block {
    display: inline-block;
  }

  .2x\:inline {
    display: inline;
  }

  .2x\:table {
    display: table;
  }

  .2x\:table-row {
    display: table-row;
  }

  .2x\:table-cell {
    display: table-cell;
  }

  .2x\:hidden {
    display: none;
  }

  .2x\:flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .2x\:inline-flex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .2x\:flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .2x\:flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .2x\:flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .2x\:flex-col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .2x\:flex-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .2x\:flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }

  .2x\:flex-no-wrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .2x\:items-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .2x\:items-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

  .2x\:items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .2x\:items-baseline {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }

  .2x\:items-stretch {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .2x\:self-auto {
    -ms-flex-item-align: auto;
        align-self: auto;
  }

  .2x\:self-start {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }

  .2x\:self-end {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }

  .2x\:self-center {
    -ms-flex-item-align: center;
        align-self: center;
  }

  .2x\:self-stretch {
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }

  .2x\:justify-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .2x\:justify-end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .2x\:justify-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .2x\:justify-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .2x\:justify-around {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }

  .2x\:content-center {
    -ms-flex-line-pack: center;
        align-content: center;
  }

  .2x\:content-start {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }

  .2x\:content-end {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }

  .2x\:content-between {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }

  .2x\:content-around {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }

  .2x\:flex-1 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }

  .2x\:flex-auto {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }

  .2x\:flex-initial {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }

  .2x\:flex-none {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }

  .2x\:flex-grow {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }

  .2x\:flex-shrink {
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }

  .2x\:flex-no-grow {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }

  .2x\:flex-no-shrink {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }

  .2x\:float-right {
    float: right;
  }

  .2x\:float-left {
    float: left;
  }

  .2x\:float-none {
    float: none;
  }

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

  .2x\:font-sans {
    font-family: "3form Graphik", Helvetica, sans-serif;
  }

  .2x\:font-light {
    font-weight: 300;
  }

  .2x\:font-normal {
    font-weight: 400;
  }

  .2x\:font-medium {
    font-weight: 500;
  }

  .2x\:hover\:font-light:hover {
    font-weight: 300;
  }

  .2x\:hover\:font-normal:hover {
    font-weight: 400;
  }

  .2x\:hover\:font-medium:hover {
    font-weight: 500;
  }

  .2x\:h-1 {
    height: .25rem;
  }

  .2x\:h-2 {
    height: .5rem;
  }

  .2x\:h-3 {
    height: .75rem;
  }

  .2x\:h-4 {
    height: 1rem;
  }

  .2x\:h-5 {
    height: 1.25rem;
  }

  .2x\:h-6 {
    height: 1.5rem;
  }

  .2x\:h-8 {
    height: 2rem;
  }

  .2x\:h-9 {
    height: 2.25rem;
  }

  .2x\:h-12 {
    height: 3rem;
  }

  .2x\:h-16 {
    height: 4rem;
  }

  .2x\:h-24 {
    height: 6rem;
  }

  .2x\:h-32 {
    height: 8rem;
  }

  .2x\:h-48 {
    height: 12rem;
  }

  .2x\:h-64 {
    height: 16rem;
  }

  .2x\:h-auto {
    height: auto;
  }

  .2x\:h-px {
    height: 1px;
  }

  .2x\:h-full {
    height: 100%;
  }

  .2x\:h-screen {
    height: 100vh;
  }

  .2x\:h-90v {
    height: 90vh;
  }

  .2x\:leading-none {
    line-height: 1;
  }

  .2x\:leading-tightish {
    line-height: 1.1;
  }

  .2x\:leading-tight {
    line-height: 1.25;
  }

  .2x\:leading-normal {
    line-height: 1.5;
  }

  .2x\:leading-normloose {
    line-height: 1.75;
  }

  .2x\:leading-loose {
    line-height: 2;
  }

  .2x\:leading-md {
    line-height: 24px;
  }

  .2x\:leading-heading {
    line-height: calc(100% + 8px);
  }

  .2x\:m-0 {
    margin: 0;
  }

  .2x\:m-1 {
    margin: .25rem;
  }

  .2x\:m-2 {
    margin: .5rem;
  }

  .2x\:m-3 {
    margin: .75rem;
  }

  .2x\:m-4 {
    margin: 1rem;
  }

  .2x\:m-5 {
    margin: 1.25rem;
  }

  .2x\:m-6 {
    margin: 1.5rem;
  }

  .2x\:m-8 {
    margin: 2rem;
  }

  .2x\:m-10 {
    margin: 2.5rem;
  }

  .2x\:m-12 {
    margin: 3rem;
  }

  .2x\:m-16 {
    margin: 4rem;
  }

  .2x\:m-20 {
    margin: 5rem;
  }

  .2x\:m-24 {
    margin: 6rem;
  }

  .2x\:m-32 {
    margin: 8rem;
  }

  .2x\:m-48 {
    margin: 12rem;
  }

  .2x\:m-64 {
    margin: 16rem;
  }

  .2x\:m-auto {
    margin: auto;
  }

  .2x\:m-px {
    margin: 1px;
  }

  .2x\:m--20 {
    margin: -5rem;
  }

  .2x\:m-30\% {
    margin: 30%;
  }

  .2x\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .2x\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .2x\:my-1 {
    margin-top: .25rem;
    margin-bottom: .25rem;
  }

  .2x\:mx-1 {
    margin-left: .25rem;
    margin-right: .25rem;
  }

  .2x\:my-2 {
    margin-top: .5rem;
    margin-bottom: .5rem;
  }

  .2x\:mx-2 {
    margin-left: .5rem;
    margin-right: .5rem;
  }

  .2x\:my-3 {
    margin-top: .75rem;
    margin-bottom: .75rem;
  }

  .2x\:mx-3 {
    margin-left: .75rem;
    margin-right: .75rem;
  }

  .2x\:my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .2x\:mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .2x\:my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .2x\:mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .2x\:my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .2x\:mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .2x\:my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .2x\:mx-8 {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .2x\:my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .2x\:mx-10 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .2x\:my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .2x\:mx-12 {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .2x\:my-16 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .2x\:mx-16 {
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .2x\:my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .2x\:mx-20 {
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .2x\:my-24 {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .2x\:mx-24 {
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .2x\:my-32 {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .2x\:mx-32 {
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .2x\:my-48 {
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .2x\:mx-48 {
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .2x\:my-64 {
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .2x\:mx-64 {
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .2x\:my-auto {
    margin-top: auto;
    margin-bottom: auto;
  }

  .2x\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .2x\:my-px {
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .2x\:mx-px {
    margin-left: 1px;
    margin-right: 1px;
  }

  .2x\:my--20 {
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .2x\:mx--20 {
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .2x\:my-30\% {
    margin-top: 30%;
    margin-bottom: 30%;
  }

  .2x\:mx-30\% {
    margin-left: 30%;
    margin-right: 30%;
  }

  .2x\:mt-0 {
    margin-top: 0;
  }

  .2x\:mr-0 {
    margin-right: 0;
  }

  .2x\:mb-0 {
    margin-bottom: 0;
  }

  .2x\:ml-0 {
    margin-left: 0;
  }

  .2x\:mt-1 {
    margin-top: .25rem;
  }

  .2x\:mr-1 {
    margin-right: .25rem;
  }

  .2x\:mb-1 {
    margin-bottom: .25rem;
  }

  .2x\:ml-1 {
    margin-left: .25rem;
  }

  .2x\:mt-2 {
    margin-top: .5rem;
  }

  .2x\:mr-2 {
    margin-right: .5rem;
  }

  .2x\:mb-2 {
    margin-bottom: .5rem;
  }

  .2x\:ml-2 {
    margin-left: .5rem;
  }

  .2x\:mt-3 {
    margin-top: .75rem;
  }

  .2x\:mr-3 {
    margin-right: .75rem;
  }

  .2x\:mb-3 {
    margin-bottom: .75rem;
  }

  .2x\:ml-3 {
    margin-left: .75rem;
  }

  .2x\:mt-4 {
    margin-top: 1rem;
  }

  .2x\:mr-4 {
    margin-right: 1rem;
  }

  .2x\:mb-4 {
    margin-bottom: 1rem;
  }

  .2x\:ml-4 {
    margin-left: 1rem;
  }

  .2x\:mt-5 {
    margin-top: 1.25rem;
  }

  .2x\:mr-5 {
    margin-right: 1.25rem;
  }

  .2x\:mb-5 {
    margin-bottom: 1.25rem;
  }

  .2x\:ml-5 {
    margin-left: 1.25rem;
  }

  .2x\:mt-6 {
    margin-top: 1.5rem;
  }

  .2x\:mr-6 {
    margin-right: 1.5rem;
  }

  .2x\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .2x\:ml-6 {
    margin-left: 1.5rem;
  }

  .2x\:mt-8 {
    margin-top: 2rem;
  }

  .2x\:mr-8 {
    margin-right: 2rem;
  }

  .2x\:mb-8 {
    margin-bottom: 2rem;
  }

  .2x\:ml-8 {
    margin-left: 2rem;
  }

  .2x\:mt-10 {
    margin-top: 2.5rem;
  }

  .2x\:mr-10 {
    margin-right: 2.5rem;
  }

  .2x\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .2x\:ml-10 {
    margin-left: 2.5rem;
  }

  .2x\:mt-12 {
    margin-top: 3rem;
  }

  .2x\:mr-12 {
    margin-right: 3rem;
  }

  .2x\:mb-12 {
    margin-bottom: 3rem;
  }

  .2x\:ml-12 {
    margin-left: 3rem;
  }

  .2x\:mt-16 {
    margin-top: 4rem;
  }

  .2x\:mr-16 {
    margin-right: 4rem;
  }

  .2x\:mb-16 {
    margin-bottom: 4rem;
  }

  .2x\:ml-16 {
    margin-left: 4rem;
  }

  .2x\:mt-20 {
    margin-top: 5rem;
  }

  .2x\:mr-20 {
    margin-right: 5rem;
  }

  .2x\:mb-20 {
    margin-bottom: 5rem;
  }

  .2x\:ml-20 {
    margin-left: 5rem;
  }

  .2x\:mt-24 {
    margin-top: 6rem;
  }

  .2x\:mr-24 {
    margin-right: 6rem;
  }

  .2x\:mb-24 {
    margin-bottom: 6rem;
  }

  .2x\:ml-24 {
    margin-left: 6rem;
  }

  .2x\:mt-32 {
    margin-top: 8rem;
  }

  .2x\:mr-32 {
    margin-right: 8rem;
  }

  .2x\:mb-32 {
    margin-bottom: 8rem;
  }

  .2x\:ml-32 {
    margin-left: 8rem;
  }

  .2x\:mt-48 {
    margin-top: 12rem;
  }

  .2x\:mr-48 {
    margin-right: 12rem;
  }

  .2x\:mb-48 {
    margin-bottom: 12rem;
  }

  .2x\:ml-48 {
    margin-left: 12rem;
  }

  .2x\:mt-64 {
    margin-top: 16rem;
  }

  .2x\:mr-64 {
    margin-right: 16rem;
  }

  .2x\:mb-64 {
    margin-bottom: 16rem;
  }

  .2x\:ml-64 {
    margin-left: 16rem;
  }

  .2x\:mt-auto {
    margin-top: auto;
  }

  .2x\:mr-auto {
    margin-right: auto;
  }

  .2x\:mb-auto {
    margin-bottom: auto;
  }

  .2x\:ml-auto {
    margin-left: auto;
  }

  .2x\:mt-px {
    margin-top: 1px;
  }

  .2x\:mr-px {
    margin-right: 1px;
  }

  .2x\:mb-px {
    margin-bottom: 1px;
  }

  .2x\:ml-px {
    margin-left: 1px;
  }

  .2x\:mt--20 {
    margin-top: -5rem;
  }

  .2x\:mr--20 {
    margin-right: -5rem;
  }

  .2x\:mb--20 {
    margin-bottom: -5rem;
  }

  .2x\:ml--20 {
    margin-left: -5rem;
  }

  .2x\:mt-30\% {
    margin-top: 30%;
  }

  .2x\:mr-30\% {
    margin-right: 30%;
  }

  .2x\:mb-30\% {
    margin-bottom: 30%;
  }

  .2x\:ml-30\% {
    margin-left: 30%;
  }

  .2x\:max-h-full {
    max-height: 100%;
  }

  .2x\:max-h-md {
    max-height: 40rem;
  }

  .2x\:max-h-lg {
    max-height: 50rem;
  }

  .2x\:max-h-screen {
    max-height: 100vh;
  }

  .2x\:max-w-50 {
    max-width: 50%;
  }

  .2x\:max-w-xxs {
    max-width: 16rem;
  }

  .2x\:max-w-xs {
    max-width: 20rem;
  }

  .2x\:max-w-sm {
    max-width: 30rem;
  }

  .2x\:max-w-md {
    max-width: 40rem;
  }

  .2x\:max-w-lg {
    max-width: 50rem;
  }

  .2x\:max-w-xl {
    max-width: 60rem;
  }

  .2x\:max-w-2xl {
    max-width: 70rem;
  }

  .2x\:max-w-3xl {
    max-width: 80rem;
  }

  .2x\:max-w-4xl {
    max-width: 90rem;
  }

  .2x\:max-w-5xl {
    max-width: 100rem;
  }

  .2x\:max-w-full {
    max-width: 100%;
  }

  .2x\:min-h-0 {
    min-height: 0;
  }

  .2x\:min-h-full {
    min-height: 100%;
  }

  .2x\:min-h-screen {
    min-height: 100vh;
  }

  .2x\:min-w-0 {
    min-width: 0;
  }

  .2x\:min-w-full {
    min-width: 100%;
  }

  .2x\:-m-0 {
    margin: 0;
  }

  .2x\:-m-1 {
    margin: -0.25rem;
  }

  .2x\:-m-2 {
    margin: -0.5rem;
  }

  .2x\:-m-3 {
    margin: -0.75rem;
  }

  .2x\:-m-4 {
    margin: -1rem;
  }

  .2x\:-m-5 {
    margin: -1.25rem;
  }

  .2x\:-m-6 {
    margin: -1.5rem;
  }

  .2x\:-m-8 {
    margin: -2rem;
  }

  .2x\:-m-12 {
    margin: -3rem;
  }

  .2x\:-m-16 {
    margin: -4rem;
  }

  .2x\:-m-20 {
    margin: -5rem;
  }

  .2x\:-m-24 {
    margin: -6rem;
  }

  .2x\:-m-32 {
    margin: -8rem;
  }

  .2x\:-m-48 {
    margin: -12rem;
  }

  .2x\:-m-64 {
    margin: -16rem;
  }

  .2x\:-m-px {
    margin: -1px;
  }

  .2x\:-m-30\% {
    margin: -30%;
  }

  .2x\:-my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .2x\:-mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .2x\:-my-1 {
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .2x\:-mx-1 {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .2x\:-my-2 {
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .2x\:-mx-2 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .2x\:-my-3 {
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .2x\:-mx-3 {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .2x\:-my-4 {
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .2x\:-mx-4 {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .2x\:-my-5 {
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .2x\:-mx-5 {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .2x\:-my-6 {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .2x\:-mx-6 {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .2x\:-my-8 {
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .2x\:-mx-8 {
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .2x\:-my-12 {
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .2x\:-mx-12 {
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .2x\:-my-16 {
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .2x\:-mx-16 {
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .2x\:-my-20 {
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .2x\:-mx-20 {
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .2x\:-my-24 {
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .2x\:-mx-24 {
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .2x\:-my-32 {
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .2x\:-mx-32 {
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .2x\:-my-48 {
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .2x\:-mx-48 {
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .2x\:-my-64 {
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .2x\:-mx-64 {
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .2x\:-my-px {
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .2x\:-mx-px {
    margin-left: -1px;
    margin-right: -1px;
  }

  .2x\:-my-30\% {
    margin-top: -30%;
    margin-bottom: -30%;
  }

  .2x\:-mx-30\% {
    margin-left: -30%;
    margin-right: -30%;
  }

  .2x\:-mt-0 {
    margin-top: 0;
  }

  .2x\:-mr-0 {
    margin-right: 0;
  }

  .2x\:-mb-0 {
    margin-bottom: 0;
  }

  .2x\:-ml-0 {
    margin-left: 0;
  }

  .2x\:-mt-1 {
    margin-top: -0.25rem;
  }

  .2x\:-mr-1 {
    margin-right: -0.25rem;
  }

  .2x\:-mb-1 {
    margin-bottom: -0.25rem;
  }

  .2x\:-ml-1 {
    margin-left: -0.25rem;
  }

  .2x\:-mt-2 {
    margin-top: -0.5rem;
  }

  .2x\:-mr-2 {
    margin-right: -0.5rem;
  }

  .2x\:-mb-2 {
    margin-bottom: -0.5rem;
  }

  .2x\:-ml-2 {
    margin-left: -0.5rem;
  }

  .2x\:-mt-3 {
    margin-top: -0.75rem;
  }

  .2x\:-mr-3 {
    margin-right: -0.75rem;
  }

  .2x\:-mb-3 {
    margin-bottom: -0.75rem;
  }

  .2x\:-ml-3 {
    margin-left: -0.75rem;
  }

  .2x\:-mt-4 {
    margin-top: -1rem;
  }

  .2x\:-mr-4 {
    margin-right: -1rem;
  }

  .2x\:-mb-4 {
    margin-bottom: -1rem;
  }

  .2x\:-ml-4 {
    margin-left: -1rem;
  }

  .2x\:-mt-5 {
    margin-top: -1.25rem;
  }

  .2x\:-mr-5 {
    margin-right: -1.25rem;
  }

  .2x\:-mb-5 {
    margin-bottom: -1.25rem;
  }

  .2x\:-ml-5 {
    margin-left: -1.25rem;
  }

  .2x\:-mt-6 {
    margin-top: -1.5rem;
  }

  .2x\:-mr-6 {
    margin-right: -1.5rem;
  }

  .2x\:-mb-6 {
    margin-bottom: -1.5rem;
  }

  .2x\:-ml-6 {
    margin-left: -1.5rem;
  }

  .2x\:-mt-8 {
    margin-top: -2rem;
  }

  .2x\:-mr-8 {
    margin-right: -2rem;
  }

  .2x\:-mb-8 {
    margin-bottom: -2rem;
  }

  .2x\:-ml-8 {
    margin-left: -2rem;
  }

  .2x\:-mt-12 {
    margin-top: -3rem;
  }

  .2x\:-mr-12 {
    margin-right: -3rem;
  }

  .2x\:-mb-12 {
    margin-bottom: -3rem;
  }

  .2x\:-ml-12 {
    margin-left: -3rem;
  }

  .2x\:-mt-16 {
    margin-top: -4rem;
  }

  .2x\:-mr-16 {
    margin-right: -4rem;
  }

  .2x\:-mb-16 {
    margin-bottom: -4rem;
  }

  .2x\:-ml-16 {
    margin-left: -4rem;
  }

  .2x\:-mt-20 {
    margin-top: -5rem;
  }

  .2x\:-mr-20 {
    margin-right: -5rem;
  }

  .2x\:-mb-20 {
    margin-bottom: -5rem;
  }

  .2x\:-ml-20 {
    margin-left: -5rem;
  }

  .2x\:-mt-24 {
    margin-top: -6rem;
  }

  .2x\:-mr-24 {
    margin-right: -6rem;
  }

  .2x\:-mb-24 {
    margin-bottom: -6rem;
  }

  .2x\:-ml-24 {
    margin-left: -6rem;
  }

  .2x\:-mt-32 {
    margin-top: -8rem;
  }

  .2x\:-mr-32 {
    margin-right: -8rem;
  }

  .2x\:-mb-32 {
    margin-bottom: -8rem;
  }

  .2x\:-ml-32 {
    margin-left: -8rem;
  }

  .2x\:-mt-48 {
    margin-top: -12rem;
  }

  .2x\:-mr-48 {
    margin-right: -12rem;
  }

  .2x\:-mb-48 {
    margin-bottom: -12rem;
  }

  .2x\:-ml-48 {
    margin-left: -12rem;
  }

  .2x\:-mt-64 {
    margin-top: -16rem;
  }

  .2x\:-mr-64 {
    margin-right: -16rem;
  }

  .2x\:-mb-64 {
    margin-bottom: -16rem;
  }

  .2x\:-ml-64 {
    margin-left: -16rem;
  }

  .2x\:-mt-px {
    margin-top: -1px;
  }

  .2x\:-mr-px {
    margin-right: -1px;
  }

  .2x\:-mb-px {
    margin-bottom: -1px;
  }

  .2x\:-ml-px {
    margin-left: -1px;
  }

  .2x\:-mt-30\% {
    margin-top: -30%;
  }

  .2x\:-mr-30\% {
    margin-right: -30%;
  }

  .2x\:-mb-30\% {
    margin-bottom: -30%;
  }

  .2x\:-ml-30\% {
    margin-left: -30%;
  }

  .2x\:opacity-0 {
    opacity: 0;
  }

  .2x\:opacity-20 {
    opacity: .2;
  }

  .2x\:opacity-40 {
    opacity: .4;
  }

  .2x\:opacity-60 {
    opacity: .6;
  }

  .2x\:opacity-80 {
    opacity: .8;
  }

  .2x\:opacity-100 {
    opacity: 1;
  }

  .2x\:overflow-auto {
    overflow: auto;
  }

  .2x\:overflow-hidden {
    overflow: hidden;
  }

  .2x\:overflow-visible {
    overflow: visible;
  }

  .2x\:overflow-scroll {
    overflow: scroll;
  }

  .2x\:overflow-x-auto {
    overflow-x: auto;
  }

  .2x\:overflow-y-auto {
    overflow-y: auto;
  }

  .2x\:overflow-x-hidden {
    overflow-x: hidden;
  }

  .2x\:overflow-y-hidden {
    overflow-y: hidden;
  }

  .2x\:overflow-x-visible {
    overflow-x: visible;
  }

  .2x\:overflow-y-visible {
    overflow-y: visible;
  }

  .2x\:overflow-x-scroll {
    overflow-x: scroll;
  }

  .2x\:overflow-y-scroll {
    overflow-y: scroll;
  }

  .2x\:scrolling-touch {
    -webkit-overflow-scrolling: touch;
  }

  .2x\:scrolling-auto {
    -webkit-overflow-scrolling: auto;
  }

  .2x\:p-0 {
    padding: 0;
  }

  .2x\:p-1 {
    padding: .25rem;
  }

  .2x\:p-2 {
    padding: .5rem;
  }

  .2x\:p-3 {
    padding: .75rem;
  }

  .2x\:p-4 {
    padding: 1rem;
  }

  .2x\:p-5 {
    padding: 1.25rem;
  }

  .2x\:p-6 {
    padding: 1.5rem;
  }

  .2x\:p-8 {
    padding: 2rem;
  }

  .2x\:p-10 {
    padding: 2.5rem;
  }

  .2x\:p-12 {
    padding: 3rem;
  }

  .2x\:p-16 {
    padding: 4rem;
  }

  .2x\:p-20 {
    padding: 5rem;
  }

  .2x\:p-24 {
    padding: 6rem;
  }

  .2x\:p-32 {
    padding: 8rem;
  }

  .2x\:p-48 {
    padding: 12rem;
  }

  .2x\:p-64 {
    padding: 16rem;
  }

  .2x\:p-px {
    padding: 1px;
  }

  .2x\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .2x\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .2x\:py-1 {
    padding-top: .25rem;
    padding-bottom: .25rem;
  }

  .2x\:px-1 {
    padding-left: .25rem;
    padding-right: .25rem;
  }

  .2x\:py-2 {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .2x\:px-2 {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .2x\:py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .2x\:px-3 {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .2x\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .2x\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .2x\:py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .2x\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .2x\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .2x\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .2x\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .2x\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .2x\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .2x\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .2x\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .2x\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .2x\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .2x\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .2x\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .2x\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .2x\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .2x\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .2x\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .2x\:px-32 {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .2x\:py-48 {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .2x\:px-48 {
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .2x\:py-64 {
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .2x\:px-64 {
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .2x\:py-px {
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .2x\:px-px {
    padding-left: 1px;
    padding-right: 1px;
  }

  .2x\:pt-0 {
    padding-top: 0;
  }

  .2x\:pr-0 {
    padding-right: 0;
  }

  .2x\:pb-0 {
    padding-bottom: 0;
  }

  .2x\:pl-0 {
    padding-left: 0;
  }

  .2x\:pt-1 {
    padding-top: .25rem;
  }

  .2x\:pr-1 {
    padding-right: .25rem;
  }

  .2x\:pb-1 {
    padding-bottom: .25rem;
  }

  .2x\:pl-1 {
    padding-left: .25rem;
  }

  .2x\:pt-2 {
    padding-top: .5rem;
  }

  .2x\:pr-2 {
    padding-right: .5rem;
  }

  .2x\:pb-2 {
    padding-bottom: .5rem;
  }

  .2x\:pl-2 {
    padding-left: .5rem;
  }

  .2x\:pt-3 {
    padding-top: .75rem;
  }

  .2x\:pr-3 {
    padding-right: .75rem;
  }

  .2x\:pb-3 {
    padding-bottom: .75rem;
  }

  .2x\:pl-3 {
    padding-left: .75rem;
  }

  .2x\:pt-4 {
    padding-top: 1rem;
  }

  .2x\:pr-4 {
    padding-right: 1rem;
  }

  .2x\:pb-4 {
    padding-bottom: 1rem;
  }

  .2x\:pl-4 {
    padding-left: 1rem;
  }

  .2x\:pt-5 {
    padding-top: 1.25rem;
  }

  .2x\:pr-5 {
    padding-right: 1.25rem;
  }

  .2x\:pb-5 {
    padding-bottom: 1.25rem;
  }

  .2x\:pl-5 {
    padding-left: 1.25rem;
  }

  .2x\:pt-6 {
    padding-top: 1.5rem;
  }

  .2x\:pr-6 {
    padding-right: 1.5rem;
  }

  .2x\:pb-6 {
    padding-bottom: 1.5rem;
  }

  .2x\:pl-6 {
    padding-left: 1.5rem;
  }

  .2x\:pt-8 {
    padding-top: 2rem;
  }

  .2x\:pr-8 {
    padding-right: 2rem;
  }

  .2x\:pb-8 {
    padding-bottom: 2rem;
  }

  .2x\:pl-8 {
    padding-left: 2rem;
  }

  .2x\:pt-10 {
    padding-top: 2.5rem;
  }

  .2x\:pr-10 {
    padding-right: 2.5rem;
  }

  .2x\:pb-10 {
    padding-bottom: 2.5rem;
  }

  .2x\:pl-10 {
    padding-left: 2.5rem;
  }

  .2x\:pt-12 {
    padding-top: 3rem;
  }

  .2x\:pr-12 {
    padding-right: 3rem;
  }

  .2x\:pb-12 {
    padding-bottom: 3rem;
  }

  .2x\:pl-12 {
    padding-left: 3rem;
  }

  .2x\:pt-16 {
    padding-top: 4rem;
  }

  .2x\:pr-16 {
    padding-right: 4rem;
  }

  .2x\:pb-16 {
    padding-bottom: 4rem;
  }

  .2x\:pl-16 {
    padding-left: 4rem;
  }

  .2x\:pt-20 {
    padding-top: 5rem;
  }

  .2x\:pr-20 {
    padding-right: 5rem;
  }

  .2x\:pb-20 {
    padding-bottom: 5rem;
  }

  .2x\:pl-20 {
    padding-left: 5rem;
  }

  .2x\:pt-24 {
    padding-top: 6rem;
  }

  .2x\:pr-24 {
    padding-right: 6rem;
  }

  .2x\:pb-24 {
    padding-bottom: 6rem;
  }

  .2x\:pl-24 {
    padding-left: 6rem;
  }

  .2x\:pt-32 {
    padding-top: 8rem;
  }

  .2x\:pr-32 {
    padding-right: 8rem;
  }

  .2x\:pb-32 {
    padding-bottom: 8rem;
  }

  .2x\:pl-32 {
    padding-left: 8rem;
  }

  .2x\:pt-48 {
    padding-top: 12rem;
  }

  .2x\:pr-48 {
    padding-right: 12rem;
  }

  .2x\:pb-48 {
    padding-bottom: 12rem;
  }

  .2x\:pl-48 {
    padding-left: 12rem;
  }

  .2x\:pt-64 {
    padding-top: 16rem;
  }

  .2x\:pr-64 {
    padding-right: 16rem;
  }

  .2x\:pb-64 {
    padding-bottom: 16rem;
  }

  .2x\:pl-64 {
    padding-left: 16rem;
  }

  .2x\:pt-px {
    padding-top: 1px;
  }

  .2x\:pr-px {
    padding-right: 1px;
  }

  .2x\:pb-px {
    padding-bottom: 1px;
  }

  .2x\:pl-px {
    padding-left: 1px;
  }

  .2x\:pointer-events-none {
    pointer-events: none;
  }

  .2x\:pointer-events-auto {
    pointer-events: auto;
  }

  .2x\:static {
    position: static;
  }

  .2x\:fixed {
    position: fixed;
  }

  .2x\:absolute {
    position: absolute;
  }

  .2x\:relative {
    position: relative;
  }

  .2x\:sticky {
    position: sticky;
  }

  .2x\:pin-none {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .2x\:pin {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .2x\:pin-y {
    top: 0;
    bottom: 0;
  }

  .2x\:pin-x {
    right: 0;
    left: 0;
  }

  .2x\:pin-t {
    top: 0;
  }

  .2x\:pin-r {
    right: 0;
  }

  .2x\:pin-b {
    bottom: 0;
  }

  .2x\:pin-l {
    left: 0;
  }

  .2x\:resize-none {
    resize: none;
  }

  .2x\:resize-y {
    resize: vertical;
  }

  .2x\:resize-x {
    resize: horizontal;
  }

  .2x\:resize {
    resize: both;
  }

  .2x\:shadow-swatch-sm {
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .1);
            box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .1);
  }

  .2x\:shadow-swatch-lg {
    -webkit-box-shadow: 0 8px 8px 0 rgba(34, 34, 34, .1);
            box-shadow: 0 8px 8px 0 rgba(34, 34, 34, .1);
  }

  .2x\:shadow-swatch-xl {
    -webkit-box-shadow: 0 16px 16px 0 rgba(34, 34, 34, .1);
            box-shadow: 0 16px 16px 0 rgba(34, 34, 34, .1);
  }

  .2x\:shadow-dark {
    -webkit-box-shadow: 8px 8px 0px 0px #222;
            box-shadow: 8px 8px 0px 0px #222;
  }

  .2x\:shadow-button-white-off {
    -webkit-box-shadow: 0 2px 0 0 #eee;
            box-shadow: 0 2px 0 0 #eee;
  }

  .2x\:shadow-button-white-hover {
    -webkit-box-shadow: 8px 8px 0 0 #eee;
            box-shadow: 8px 8px 0 0 #eee;
  }

  .2x\:shadow-button-white-hover-vertical {
    -webkit-box-shadow: 0px 8px 0 0 #eee;
            box-shadow: 0px 8px 0 0 #eee;
  }

  .2x\:shadow-button-black-hover {
    -webkit-box-shadow: 8px 8px 0 0 #000;
            box-shadow: 8px 8px 0 0 #000;
  }

  .2x\:shadow-tooltip-white-off {
    -webkit-box-shadow: 0 2px 0 0 #e9e9e9;
            box-shadow: 0 2px 0 0 #e9e9e9;
  }

  .2x\:shadow-tooltip-white-hover {
    -webkit-box-shadow: 4px 4px 0 0 #e9e9e9;
            box-shadow: 4px 4px 0 0 #e9e9e9;
  }

  .2x\:shadow-pagination-greg-light-hover {
    -webkit-box-shadow: 2px 2px 0 0 #b2b2b2;
            box-shadow: 2px 2px 0 0 #b2b2b2;
  }

  .2x\:shadow-dropdown-off {
    -webkit-box-shadow: 0 2px 0 0 #ddd;
            box-shadow: 0 2px 0 0 #ddd;
  }

  .2x\:shadow-dropdown-hover {
    -webkit-box-shadow: 0 8px 0 0 #ddd;
            box-shadow: 0 8px 0 0 #ddd;
  }

  .2x\:shadow-dropdown-dark-off {
    -webkit-box-shadow: 0 2px 0 0 #111;
            box-shadow: 0 2px 0 0 #111;
  }

  .2x\:shadow-tooltip-grey-light-active {
    -webkit-box-shadow: 0 2px 0 0 #ccc;
            box-shadow: 0 2px 0 0 #ccc;
  }

  .2x\:shadow-inset-top-black {
    -webkit-box-shadow: inset 0px 2px 0px 0px #222;
            box-shadow: inset 0px 2px 0px 0px #222;
  }

  .2x\:shadow-inset-top-white {
    -webkit-box-shadow: inset 0px 2px 0px 0px #fff;
            box-shadow: inset 0px 2px 0px 0px #fff;
  }

  .2x\:shadow-none {
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .2x\:table-auto {
    table-layout: auto;
  }

  .2x\:table-fixed {
    table-layout: fixed;
  }

  .2x\:text-left {
    text-align: left;
  }

  .2x\:text-center {
    text-align: center;
  }

  .2x\:text-right {
    text-align: right;
  }

  .2x\:text-justify {
    text-align: justify;
  }

  .2x\:text-transparent {
    color: transparent;
  }

  .2x\:text-brand {
    color: #ff993d;
  }

  .2x\:text-dealer-brand {
    color: #305371;
  }

  .2x\:text-oem-brand {
    color: #91989e;
  }

  .2x\:text-black {
    color: #222;
  }

  .2x\:text-white {
    color: #fff;
  }

  .2x\:text-grey-darkest {
    color: #333;
  }

  .2x\:text-grey-darker {
    color: #626262;
  }

  .2x\:text-grey-md-dark {
    color: #999;
  }

  .2x\:text-grey-dark {
    color: #b2b2b2;
  }

  .2x\:text-grey {
    color: #ccc;
  }

  .2x\:text-grey-light {
    color: #ddd;
  }

  .2x\:text-grey-lighter {
    color: #eee;
  }

  .2x\:text-grey-lightest {
    color: #f8f8f8;
  }

  .2x\:text-grey-accent {
    color: #efefef;
  }

  .2x\:text-success {
    color: #449343;
  }

  .2x\:hover\:text-transparent:hover {
    color: transparent;
  }

  .2x\:hover\:text-brand:hover {
    color: #ff993d;
  }

  .2x\:hover\:text-dealer-brand:hover {
    color: #305371;
  }

  .2x\:hover\:text-oem-brand:hover {
    color: #91989e;
  }

  .2x\:hover\:text-black:hover {
    color: #222;
  }

  .2x\:hover\:text-white:hover {
    color: #fff;
  }

  .2x\:hover\:text-grey-darkest:hover {
    color: #333;
  }

  .2x\:hover\:text-grey-darker:hover {
    color: #626262;
  }

  .2x\:hover\:text-grey-md-dark:hover {
    color: #999;
  }

  .2x\:hover\:text-grey-dark:hover {
    color: #b2b2b2;
  }

  .2x\:hover\:text-grey:hover {
    color: #ccc;
  }

  .2x\:hover\:text-grey-light:hover {
    color: #ddd;
  }

  .2x\:hover\:text-grey-lighter:hover {
    color: #eee;
  }

  .2x\:hover\:text-grey-lightest:hover {
    color: #f8f8f8;
  }

  .2x\:hover\:text-grey-accent:hover {
    color: #efefef;
  }

  .2x\:hover\:text-success:hover {
    color: #449343;
  }

  .2x\:text-xxs {
    font-size: .625rem;
  }

  .2x\:text-xs {
    font-size: .75rem;
  }

  .2x\:text-sm {
    font-size: .875rem;
  }

  .2x\:text-base {
    font-size: 1rem;
  }

  .2x\:text-smd {
    font-size: 1.25rem;
  }

  .2x\:text-md {
    font-size: 1.5rem;
  }

  .2x\:text-lmd {
    font-size: 1.75rem;
  }

  .2x\:text-lg {
    font-size: 2rem;
  }

  .2x\:text-xl {
    font-size: 2.5rem;
  }

  .2x\:text-2xl {
    font-size: 3rem;
  }

  .2x\:text-3xl {
    font-size: 3.5rem;
  }

  .2x\:text-4xl {
    font-size: 5rem;
  }

  .2x\:text-5xl {
    font-size: 6rem;
  }

  .2x\:italic {
    font-style: italic;
  }

  .2x\:roman {
    font-style: normal;
  }

  .2x\:uppercase {
    text-transform: uppercase;
  }

  .2x\:lowercase {
    text-transform: lowercase;
  }

  .2x\:capitalize {
    text-transform: capitalize;
  }

  .2x\:normal-case {
    text-transform: none;
  }

  .2x\:underline {
    text-decoration: underline;
  }

  .2x\:line-through {
    text-decoration: line-through;
  }

  .2x\:no-underline {
    text-decoration: none;
  }

  .2x\:antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .2x\:subpixel-antialiased {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .2x\:hover\:italic:hover {
    font-style: italic;
  }

  .2x\:hover\:roman:hover {
    font-style: normal;
  }

  .2x\:hover\:uppercase:hover {
    text-transform: uppercase;
  }

  .2x\:hover\:lowercase:hover {
    text-transform: lowercase;
  }

  .2x\:hover\:capitalize:hover {
    text-transform: capitalize;
  }

  .2x\:hover\:normal-case:hover {
    text-transform: none;
  }

  .2x\:hover\:underline:hover {
    text-decoration: underline;
  }

  .2x\:hover\:line-through:hover {
    text-decoration: line-through;
  }

  .2x\:hover\:no-underline:hover {
    text-decoration: none;
  }

  .2x\:hover\:antialiased:hover {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .2x\:hover\:subpixel-antialiased:hover {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .2x\:tracking-tight {
    letter-spacing: -0.05em;
  }

  .2x\:tracking-tightish {
    letter-spacing: -0.032em;
  }

  .2x\:tracking-normal {
    letter-spacing: 0;
  }

  .2x\:tracking-wide {
    letter-spacing: .05em;
  }

  .2x\:select-none {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .2x\:select-text {
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .2x\:align-baseline {
    vertical-align: baseline;
  }

  .2x\:align-top {
    vertical-align: top;
  }

  .2x\:align-middle {
    vertical-align: middle;
  }

  .2x\:align-bottom {
    vertical-align: bottom;
  }

  .2x\:align-text-top {
    vertical-align: text-top;
  }

  .2x\:align-text-bottom {
    vertical-align: text-bottom;
  }

  .2x\:visible {
    visibility: visible;
  }

  .2x\:invisible {
    visibility: hidden;
  }

  .2x\:whitespace-normal {
    white-space: normal;
  }

  .2x\:whitespace-no-wrap {
    white-space: nowrap;
  }

  .2x\:whitespace-pre {
    white-space: pre;
  }

  .2x\:whitespace-pre-line {
    white-space: pre-line;
  }

  .2x\:whitespace-pre-wrap {
    white-space: pre-wrap;
  }

  .2x\:break-words {
    word-wrap: break-word;
  }

  .2x\:break-normal {
    word-wrap: normal;
  }

  .2x\:truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .2x\:w-1 {
    width: .25rem;
  }

  .2x\:w-2 {
    width: .5rem;
  }

  .2x\:w-3 {
    width: .75rem;
  }

  .2x\:w-4 {
    width: 1rem;
  }

  .2x\:w-5 {
    width: 1.25rem;
  }

  .2x\:w-6 {
    width: 1.5rem;
  }

  .2x\:w-8 {
    width: 2rem;
  }

  .2x\:w-12 {
    width: 3rem;
  }

  .2x\:w-16 {
    width: 4rem;
  }

  .2x\:w-24 {
    width: 6rem;
  }

  .2x\:w-32 {
    width: 8rem;
  }

  .2x\:w-48 {
    width: 12rem;
  }

  .2x\:w-64 {
    width: 16rem;
  }

  .2x\:w-auto {
    width: auto;
  }

  .2x\:w-px {
    width: 1px;
  }

  .2x\:w-1\/2 {
    width: 50%;
  }

  .2x\:w-1\/3 {
    width: 33.33333%;
  }

  .2x\:w-2\/3 {
    width: 66.66667%;
  }

  .2x\:w-1\/4 {
    width: 25%;
  }

  .2x\:w-3\/4 {
    width: 75%;
  }

  .2x\:w-1\/5 {
    width: 20%;
  }

  .2x\:w-2\/5 {
    width: 40%;
  }

  .2x\:w-3\/5 {
    width: 60%;
  }

  .2x\:w-4\/5 {
    width: 80%;
  }

  .2x\:w-1\/6 {
    width: 16.66667%;
  }

  .2x\:w-5\/6 {
    width: 83.33333%;
  }

  .2x\:w-full {
    width: 100%;
  }

  .2x\:w-screen {
    width: 100vw;
  }

  .2x\:w--borderfix {
    width: calc(100% - 1px);
  }

  .2x\:w-borderfix {
    width: calc(100% + 1px);
  }

  .2x\:w-fit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .2x\:z-0 {
    z-index: 0;
  }

  .2x\:z-10 {
    z-index: 10;
  }

  .2x\:z-20 {
    z-index: 20;
  }

  .2x\:z-30 {
    z-index: 30;
  }

  .2x\:z-40 {
    z-index: 40;
  }

  .2x\:z-50 {
    z-index: 50;
  }

  .2x\:z-100 {
    z-index: 100;
  }

  .2x\:z-200 {
    z-index: 200;
  }

  .2x\:z-300 {
    z-index: 300;
  }

  .2x\:z-400 {
    z-index: 400;
  }

  .2x\:z-500 {
    z-index: 500;
  }

  .2x\:z-1000 {
    z-index: 1000;
  }

  .2x\:z-2000 {
    z-index: 2000;
  }
}

@media (min-width: 2560px) {
  .3x\:col-xs {
    -webkit-box-flex: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  @media (min-width: 768px) {
    .col-xs {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .3x\:col-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  @media (min-width: 768px) {
    .col-1 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .3x\:col-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  @media (min-width: 768px) {
    .col-2 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .3x\:col-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  @media (min-width: 768px) {
    .col-3 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .3x\:col-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  @media (min-width: 768px) {
    .col-4 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .3x\:col-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  @media (min-width: 768px) {
    .col-5 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .3x\:col-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  @media (min-width: 768px) {
    .col-6 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .3x\:col-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  @media (min-width: 768px) {
    .col-7 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .3x\:col-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  @media (min-width: 768px) {
    .col-8 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .3x\:col-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  @media (min-width: 768px) {
    .col-9 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .3x\:col-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  @media (min-width: 768px) {
    .col-10 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .3x\:col-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  @media (min-width: 768px) {
    .col-11 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .3x\:col-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  @media (min-width: 768px) {
    .col-12 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .3x\:col-offset-0 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 0;
  }

  @media (min-width: 768px) {
    .col-offset-0 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .3x\:col-offset-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 8.33333333%;
  }

  @media (min-width: 768px) {
    .col-offset-1 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .3x\:col-offset-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 16.66666667%;
  }

  @media (min-width: 768px) {
    .col-offset-2 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .3x\:col-offset-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 25%;
  }

  @media (min-width: 768px) {
    .col-offset-3 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .3x\:col-offset-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 33.33333333%;
  }

  @media (min-width: 768px) {
    .col-offset-4 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .3x\:col-offset-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 41.66666667%;
  }

  @media (min-width: 768px) {
    .col-offset-5 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .3x\:col-offset-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 50%;
  }

  @media (min-width: 768px) {
    .col-offset-6 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .3x\:col-offset-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 58.33333333%;
  }

  @media (min-width: 768px) {
    .col-offset-7 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .3x\:col-offset-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 66.66666667%;
  }

  @media (min-width: 768px) {
    .col-offset-8 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .3x\:col-offset-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 75%;
  }

  @media (min-width: 768px) {
    .col-offset-9 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .3x\:col-offset-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 83.33333333%;
  }

  @media (min-width: 768px) {
    .col-offset-10 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .3x\:col-offset-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 91.66666667%;
  }

  @media (min-width: 768px) {
    .col-offset-11 {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }

  .3x\:start-xs {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .3x\:center-xs {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .3x\:end-xs {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .3x\:top-xs {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .3x\:middle-xs {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .3x\:bottom-xs {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .3x\:around-xs {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .3x\:between-xs {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .3x\:first-xs {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .3x\:last-xs {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .3x\:row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
  }

  .3x\:col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }

  .3x\:grid-row {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-right: -0.5rem;
    margin-left: -0.5rem;
  }

  @media (min-width: 768px) {
    .grid-row {
      margin-right: -1rem;
      margin-left: -1rem;
    }
  }

  .grid-row .3x\:grid-row {
    margin-right: -0.25rem;
    margin-left: -0.25rem;
  }

  @media (min-width: 768px) {
    .grid-row .grid-row {
      margin-right: -0.5rem;
      margin-left: -0.5rem;
    }
  }

  .3x\:h1 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 6rem;
    line-height: calc(100% + 8px);
    letter-spacing: -4px;
  }

  .3x\:h2 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 5rem;
    line-height: calc(100% + 8px);
    letter-spacing: -3px;
  }

  .3x\:h3-large {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 4rem;
    line-height: calc(100% + 8px);
    letter-spacing: -2.66px;
  }

  .3x\:h3 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 3.5rem;
    line-height: calc(100% + 8px);
    letter-spacing: -2px;
  }

  .3x\:h4 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 3rem;
    line-height: calc(100% + 8px);
    letter-spacing: -1.5px;
  }

  .3x\:h5 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    font-size: 1.5rem;
    line-height: calc(100% + 8px);
    font-weight: 300;
    letter-spacing: -1px;
  }

  .3x\:h6 {
    font-family: "3form Graphik", Helvetica, sans-serif;
    color: #222;
    line-height: calc(100% + 8px);
    font-weight: 300;
  }

  .3x\:header-d0 {
    font-size: 2.5rem;
    line-height: calc(100% + 8px);
    letter-spacing: -1.5px;
  }

  .3x\:header-d1 {
    font-size: 2rem;
    line-height: calc(100% + 8px);
    letter-spacing: -1.25px;
  }

  .3x\:header-e1 {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: -1px;
  }

  .3x\:grid-wrapper {
    margin: 0 auto;
    max-width: 1368px;
    padding: 0 2rem;
  }

  .3x\:card-driver__content-outer--left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .3x\:card-driver__content-outer--right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .3x\:card-driver__content--lg {
    width: 83.33333%;
  }

  .3x\:card-driver__content--md {
    width: 66.66666%;
  }

  .3x\:card-driver__content--sm {
    width: 50%;
  }

  .3x\:card-driver__content--smx {
    width: 33%;
  }

  .3x\:card-driver__content--xs {
    width: 25%;
  }

  .3x\:card-driver__content--auto {
    width: auto;
  }

  .3x\:list-reset {
    list-style: none;
    padding: 0;
  }

  .3x\:appearance-none {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .3x\:bg-fixed {
    background-attachment: fixed;
  }

  .3x\:bg-local {
    background-attachment: local;
  }

  .3x\:bg-scroll {
    background-attachment: scroll;
  }

  .3x\:bg-transparent {
    background-color: transparent;
  }

  .3x\:bg-brand {
    background-color: #ff993d;
  }

  .3x\:bg-dealer-brand {
    background-color: #305371;
  }

  .3x\:bg-oem-brand {
    background-color: #91989e;
  }

  .3x\:bg-black {
    background-color: #222;
  }

  .3x\:bg-white {
    background-color: #fff;
  }

  .3x\:bg-grey-darkest {
    background-color: #333;
  }

  .3x\:bg-grey-darker {
    background-color: #626262;
  }

  .3x\:bg-grey-md-dark {
    background-color: #999;
  }

  .3x\:bg-grey-dark {
    background-color: #b2b2b2;
  }

  .3x\:bg-grey {
    background-color: #ccc;
  }

  .3x\:bg-grey-light {
    background-color: #ddd;
  }

  .3x\:bg-grey-lighter {
    background-color: #eee;
  }

  .3x\:bg-grey-lightest {
    background-color: #f8f8f8;
  }

  .3x\:bg-grey-accent {
    background-color: #efefef;
  }

  .3x\:bg-success {
    background-color: #449343;
  }

  .3x\:hover\:bg-transparent:hover {
    background-color: transparent;
  }

  .3x\:hover\:bg-brand:hover {
    background-color: #ff993d;
  }

  .3x\:hover\:bg-dealer-brand:hover {
    background-color: #305371;
  }

  .3x\:hover\:bg-oem-brand:hover {
    background-color: #91989e;
  }

  .3x\:hover\:bg-black:hover {
    background-color: #222;
  }

  .3x\:hover\:bg-white:hover {
    background-color: #fff;
  }

  .3x\:hover\:bg-grey-darkest:hover {
    background-color: #333;
  }

  .3x\:hover\:bg-grey-darker:hover {
    background-color: #626262;
  }

  .3x\:hover\:bg-grey-md-dark:hover {
    background-color: #999;
  }

  .3x\:hover\:bg-grey-dark:hover {
    background-color: #b2b2b2;
  }

  .3x\:hover\:bg-grey:hover {
    background-color: #ccc;
  }

  .3x\:hover\:bg-grey-light:hover {
    background-color: #ddd;
  }

  .3x\:hover\:bg-grey-lighter:hover {
    background-color: #eee;
  }

  .3x\:hover\:bg-grey-lightest:hover {
    background-color: #f8f8f8;
  }

  .3x\:hover\:bg-grey-accent:hover {
    background-color: #efefef;
  }

  .3x\:hover\:bg-success:hover {
    background-color: #449343;
  }

  .3x\:bg-bottom {
    background-position: bottom;
  }

  .3x\:bg-center {
    background-position: center;
  }

  .3x\:bg-left {
    background-position: left;
  }

  .3x\:bg-left-bottom {
    background-position: left bottom;
  }

  .3x\:bg-left-top {
    background-position: left top;
  }

  .3x\:bg-right {
    background-position: right;
  }

  .3x\:bg-right-bottom {
    background-position: right bottom;
  }

  .3x\:bg-right-top {
    background-position: right top;
  }

  .3x\:bg-top {
    background-position: top;
  }

  .3x\:bg-repeat {
    background-repeat: repeat;
  }

  .3x\:bg-no-repeat {
    background-repeat: no-repeat;
  }

  .3x\:bg-repeat-x {
    background-repeat: repeat-x;
  }

  .3x\:bg-repeat-y {
    background-repeat: repeat-y;
  }

  .3x\:bg-auto {
    background-size: auto;
  }

  .3x\:bg-cover {
    background-size: cover;
  }

  .3x\:bg-contain {
    background-size: contain;
  }

  .3x\:border-transparent {
    border-color: transparent;
  }

  .3x\:border-brand {
    border-color: #ff993d;
  }

  .3x\:border-dealer-brand {
    border-color: #305371;
  }

  .3x\:border-oem-brand {
    border-color: #91989e;
  }

  .3x\:border-black {
    border-color: #222;
  }

  .3x\:border-white {
    border-color: #fff;
  }

  .3x\:border-grey-darkest {
    border-color: #333;
  }

  .3x\:border-grey-darker {
    border-color: #626262;
  }

  .3x\:border-grey-md-dark {
    border-color: #999;
  }

  .3x\:border-grey-dark {
    border-color: #b2b2b2;
  }

  .3x\:border-grey {
    border-color: #ccc;
  }

  .3x\:border-grey-light {
    border-color: #ddd;
  }

  .3x\:border-grey-lighter {
    border-color: #eee;
  }

  .3x\:border-grey-lightest {
    border-color: #f8f8f8;
  }

  .3x\:border-grey-accent {
    border-color: #efefef;
  }

  .3x\:border-success {
    border-color: #449343;
  }

  .3x\:hover\:border-transparent:hover {
    border-color: transparent;
  }

  .3x\:hover\:border-brand:hover {
    border-color: #ff993d;
  }

  .3x\:hover\:border-dealer-brand:hover {
    border-color: #305371;
  }

  .3x\:hover\:border-oem-brand:hover {
    border-color: #91989e;
  }

  .3x\:hover\:border-black:hover {
    border-color: #222;
  }

  .3x\:hover\:border-white:hover {
    border-color: #fff;
  }

  .3x\:hover\:border-grey-darkest:hover {
    border-color: #333;
  }

  .3x\:hover\:border-grey-darker:hover {
    border-color: #626262;
  }

  .3x\:hover\:border-grey-md-dark:hover {
    border-color: #999;
  }

  .3x\:hover\:border-grey-dark:hover {
    border-color: #b2b2b2;
  }

  .3x\:hover\:border-grey:hover {
    border-color: #ccc;
  }

  .3x\:hover\:border-grey-light:hover {
    border-color: #ddd;
  }

  .3x\:hover\:border-grey-lighter:hover {
    border-color: #eee;
  }

  .3x\:hover\:border-grey-lightest:hover {
    border-color: #f8f8f8;
  }

  .3x\:hover\:border-grey-accent:hover {
    border-color: #efefef;
  }

  .3x\:hover\:border-success:hover {
    border-color: #449343;
  }

  .3x\:rounded-none {
    border-radius: 0;
  }

  .3x\:rounded-xm {
    border-radius: .125rem;
  }

  .3x\:rounded {
    border-radius: .25rem;
  }

  .3x\:rounded-lg {
    border-radius: .5rem;
  }

  .3x\:rounded-full {
    border-radius: 9999px;
  }

  .3x\:rounded-t-none {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .3x\:rounded-r-none {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .3x\:rounded-b-none {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .3x\:rounded-l-none {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .3x\:rounded-t-xm {
    border-top-left-radius: .125rem;
    border-top-right-radius: .125rem;
  }

  .3x\:rounded-r-xm {
    border-top-right-radius: .125rem;
    border-bottom-right-radius: .125rem;
  }

  .3x\:rounded-b-xm {
    border-bottom-right-radius: .125rem;
    border-bottom-left-radius: .125rem;
  }

  .3x\:rounded-l-xm {
    border-top-left-radius: .125rem;
    border-bottom-left-radius: .125rem;
  }

  .3x\:rounded-t {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
  }

  .3x\:rounded-r {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
  }

  .3x\:rounded-b {
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem;
  }

  .3x\:rounded-l {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
  }

  .3x\:rounded-t-lg {
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
  }

  .3x\:rounded-r-lg {
    border-top-right-radius: .5rem;
    border-bottom-right-radius: .5rem;
  }

  .3x\:rounded-b-lg {
    border-bottom-right-radius: .5rem;
    border-bottom-left-radius: .5rem;
  }

  .3x\:rounded-l-lg {
    border-top-left-radius: .5rem;
    border-bottom-left-radius: .5rem;
  }

  .3x\:rounded-t-full {
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .3x\:rounded-r-full {
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .3x\:rounded-b-full {
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .3x\:rounded-l-full {
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .3x\:rounded-tl-none {
    border-top-left-radius: 0;
  }

  .3x\:rounded-tr-none {
    border-top-right-radius: 0;
  }

  .3x\:rounded-br-none {
    border-bottom-right-radius: 0;
  }

  .3x\:rounded-bl-none {
    border-bottom-left-radius: 0;
  }

  .3x\:rounded-tl-xm {
    border-top-left-radius: .125rem;
  }

  .3x\:rounded-tr-xm {
    border-top-right-radius: .125rem;
  }

  .3x\:rounded-br-xm {
    border-bottom-right-radius: .125rem;
  }

  .3x\:rounded-bl-xm {
    border-bottom-left-radius: .125rem;
  }

  .3x\:rounded-tl {
    border-top-left-radius: .25rem;
  }

  .3x\:rounded-tr {
    border-top-right-radius: .25rem;
  }

  .3x\:rounded-br {
    border-bottom-right-radius: .25rem;
  }

  .3x\:rounded-bl {
    border-bottom-left-radius: .25rem;
  }

  .3x\:rounded-tl-lg {
    border-top-left-radius: .5rem;
  }

  .3x\:rounded-tr-lg {
    border-top-right-radius: .5rem;
  }

  .3x\:rounded-br-lg {
    border-bottom-right-radius: .5rem;
  }

  .3x\:rounded-bl-lg {
    border-bottom-left-radius: .5rem;
  }

  .3x\:rounded-tl-full {
    border-top-left-radius: 9999px;
  }

  .3x\:rounded-tr-full {
    border-top-right-radius: 9999px;
  }

  .3x\:rounded-br-full {
    border-bottom-right-radius: 9999px;
  }

  .3x\:rounded-bl-full {
    border-bottom-left-radius: 9999px;
  }

  .3x\:border-solid {
    border-style: solid;
  }

  .3x\:border-dashed {
    border-style: dashed;
  }

  .3x\:border-dotted {
    border-style: dotted;
  }

  .3x\:border-none {
    border-style: none;
  }

  .3x\:border-0 {
    border-width: 0;
  }

  .3x\:border-1 {
    border-width: 1px;
  }

  .3x\:border-2 {
    border-width: 2px;
  }

  .3x\:border-4 {
    border-width: 4px;
  }

  .3x\:border-8 {
    border-width: 8px;
  }

  .3x\:border-t-0 {
    border-top-width: 0;
  }

  .3x\:border-r-0 {
    border-right-width: 0;
  }

  .3x\:border-b-0 {
    border-bottom-width: 0;
  }

  .3x\:border-l-0 {
    border-left-width: 0;
  }

  .3x\:border-t-1 {
    border-top-width: 1px;
  }

  .3x\:border-r-1 {
    border-right-width: 1px;
  }

  .3x\:border-b-1 {
    border-bottom-width: 1px;
  }

  .3x\:border-l-1 {
    border-left-width: 1px;
  }

  .3x\:border-t-2 {
    border-top-width: 2px;
  }

  .3x\:border-r-2 {
    border-right-width: 2px;
  }

  .3x\:border-b-2 {
    border-bottom-width: 2px;
  }

  .3x\:border-l-2 {
    border-left-width: 2px;
  }

  .3x\:border-t-4 {
    border-top-width: 4px;
  }

  .3x\:border-r-4 {
    border-right-width: 4px;
  }

  .3x\:border-b-4 {
    border-bottom-width: 4px;
  }

  .3x\:border-l-4 {
    border-left-width: 4px;
  }

  .3x\:border-t-8 {
    border-top-width: 8px;
  }

  .3x\:border-r-8 {
    border-right-width: 8px;
  }

  .3x\:border-b-8 {
    border-bottom-width: 8px;
  }

  .3x\:border-l-8 {
    border-left-width: 8px;
  }

  .3x\:cursor-auto {
    cursor: auto;
  }

  .3x\:cursor-default {
    cursor: default;
  }

  .3x\:cursor-pointer {
    cursor: pointer;
  }

  .3x\:cursor-wait {
    cursor: wait;
  }

  .3x\:cursor-move {
    cursor: move;
  }

  .3x\:cursor-not-allowed {
    cursor: not-allowed;
  }

  .3x\:block {
    display: block;
  }

  .3x\:inline-block {
    display: inline-block;
  }

  .3x\:inline {
    display: inline;
  }

  .3x\:table {
    display: table;
  }

  .3x\:table-row {
    display: table-row;
  }

  .3x\:table-cell {
    display: table-cell;
  }

  .3x\:hidden {
    display: none;
  }

  .3x\:flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .3x\:inline-flex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .3x\:flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .3x\:flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .3x\:flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .3x\:flex-col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .3x\:flex-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .3x\:flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }

  .3x\:flex-no-wrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .3x\:items-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .3x\:items-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

  .3x\:items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .3x\:items-baseline {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }

  .3x\:items-stretch {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .3x\:self-auto {
    -ms-flex-item-align: auto;
        align-self: auto;
  }

  .3x\:self-start {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }

  .3x\:self-end {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }

  .3x\:self-center {
    -ms-flex-item-align: center;
        align-self: center;
  }

  .3x\:self-stretch {
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }

  .3x\:justify-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .3x\:justify-end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .3x\:justify-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .3x\:justify-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .3x\:justify-around {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }

  .3x\:content-center {
    -ms-flex-line-pack: center;
        align-content: center;
  }

  .3x\:content-start {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }

  .3x\:content-end {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }

  .3x\:content-between {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }

  .3x\:content-around {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }

  .3x\:flex-1 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }

  .3x\:flex-auto {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }

  .3x\:flex-initial {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }

  .3x\:flex-none {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }

  .3x\:flex-grow {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }

  .3x\:flex-shrink {
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }

  .3x\:flex-no-grow {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }

  .3x\:flex-no-shrink {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }

  .3x\:float-right {
    float: right;
  }

  .3x\:float-left {
    float: left;
  }

  .3x\:float-none {
    float: none;
  }

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

  .3x\:font-sans {
    font-family: "3form Graphik", Helvetica, sans-serif;
  }

  .3x\:font-light {
    font-weight: 300;
  }

  .3x\:font-normal {
    font-weight: 400;
  }

  .3x\:font-medium {
    font-weight: 500;
  }

  .3x\:hover\:font-light:hover {
    font-weight: 300;
  }

  .3x\:hover\:font-normal:hover {
    font-weight: 400;
  }

  .3x\:hover\:font-medium:hover {
    font-weight: 500;
  }

  .3x\:h-1 {
    height: .25rem;
  }

  .3x\:h-2 {
    height: .5rem;
  }

  .3x\:h-3 {
    height: .75rem;
  }

  .3x\:h-4 {
    height: 1rem;
  }

  .3x\:h-5 {
    height: 1.25rem;
  }

  .3x\:h-6 {
    height: 1.5rem;
  }

  .3x\:h-8 {
    height: 2rem;
  }

  .3x\:h-9 {
    height: 2.25rem;
  }

  .3x\:h-12 {
    height: 3rem;
  }

  .3x\:h-16 {
    height: 4rem;
  }

  .3x\:h-24 {
    height: 6rem;
  }

  .3x\:h-32 {
    height: 8rem;
  }

  .3x\:h-48 {
    height: 12rem;
  }

  .3x\:h-64 {
    height: 16rem;
  }

  .3x\:h-auto {
    height: auto;
  }

  .3x\:h-px {
    height: 1px;
  }

  .3x\:h-full {
    height: 100%;
  }

  .3x\:h-screen {
    height: 100vh;
  }

  .3x\:h-90v {
    height: 90vh;
  }

  .3x\:leading-none {
    line-height: 1;
  }

  .3x\:leading-tightish {
    line-height: 1.1;
  }

  .3x\:leading-tight {
    line-height: 1.25;
  }

  .3x\:leading-normal {
    line-height: 1.5;
  }

  .3x\:leading-normloose {
    line-height: 1.75;
  }

  .3x\:leading-loose {
    line-height: 2;
  }

  .3x\:leading-md {
    line-height: 24px;
  }

  .3x\:leading-heading {
    line-height: calc(100% + 8px);
  }

  .3x\:m-0 {
    margin: 0;
  }

  .3x\:m-1 {
    margin: .25rem;
  }

  .3x\:m-2 {
    margin: .5rem;
  }

  .3x\:m-3 {
    margin: .75rem;
  }

  .3x\:m-4 {
    margin: 1rem;
  }

  .3x\:m-5 {
    margin: 1.25rem;
  }

  .3x\:m-6 {
    margin: 1.5rem;
  }

  .3x\:m-8 {
    margin: 2rem;
  }

  .3x\:m-10 {
    margin: 2.5rem;
  }

  .3x\:m-12 {
    margin: 3rem;
  }

  .3x\:m-16 {
    margin: 4rem;
  }

  .3x\:m-20 {
    margin: 5rem;
  }

  .3x\:m-24 {
    margin: 6rem;
  }

  .3x\:m-32 {
    margin: 8rem;
  }

  .3x\:m-48 {
    margin: 12rem;
  }

  .3x\:m-64 {
    margin: 16rem;
  }

  .3x\:m-auto {
    margin: auto;
  }

  .3x\:m-px {
    margin: 1px;
  }

  .3x\:m--20 {
    margin: -5rem;
  }

  .3x\:m-30\% {
    margin: 30%;
  }

  .3x\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .3x\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .3x\:my-1 {
    margin-top: .25rem;
    margin-bottom: .25rem;
  }

  .3x\:mx-1 {
    margin-left: .25rem;
    margin-right: .25rem;
  }

  .3x\:my-2 {
    margin-top: .5rem;
    margin-bottom: .5rem;
  }

  .3x\:mx-2 {
    margin-left: .5rem;
    margin-right: .5rem;
  }

  .3x\:my-3 {
    margin-top: .75rem;
    margin-bottom: .75rem;
  }

  .3x\:mx-3 {
    margin-left: .75rem;
    margin-right: .75rem;
  }

  .3x\:my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .3x\:mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .3x\:my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .3x\:mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .3x\:my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .3x\:mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .3x\:my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .3x\:mx-8 {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .3x\:my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .3x\:mx-10 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .3x\:my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .3x\:mx-12 {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .3x\:my-16 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .3x\:mx-16 {
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .3x\:my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .3x\:mx-20 {
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .3x\:my-24 {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .3x\:mx-24 {
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .3x\:my-32 {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .3x\:mx-32 {
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .3x\:my-48 {
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .3x\:mx-48 {
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .3x\:my-64 {
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .3x\:mx-64 {
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .3x\:my-auto {
    margin-top: auto;
    margin-bottom: auto;
  }

  .3x\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .3x\:my-px {
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .3x\:mx-px {
    margin-left: 1px;
    margin-right: 1px;
  }

  .3x\:my--20 {
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .3x\:mx--20 {
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .3x\:my-30\% {
    margin-top: 30%;
    margin-bottom: 30%;
  }

  .3x\:mx-30\% {
    margin-left: 30%;
    margin-right: 30%;
  }

  .3x\:mt-0 {
    margin-top: 0;
  }

  .3x\:mr-0 {
    margin-right: 0;
  }

  .3x\:mb-0 {
    margin-bottom: 0;
  }

  .3x\:ml-0 {
    margin-left: 0;
  }

  .3x\:mt-1 {
    margin-top: .25rem;
  }

  .3x\:mr-1 {
    margin-right: .25rem;
  }

  .3x\:mb-1 {
    margin-bottom: .25rem;
  }

  .3x\:ml-1 {
    margin-left: .25rem;
  }

  .3x\:mt-2 {
    margin-top: .5rem;
  }

  .3x\:mr-2 {
    margin-right: .5rem;
  }

  .3x\:mb-2 {
    margin-bottom: .5rem;
  }

  .3x\:ml-2 {
    margin-left: .5rem;
  }

  .3x\:mt-3 {
    margin-top: .75rem;
  }

  .3x\:mr-3 {
    margin-right: .75rem;
  }

  .3x\:mb-3 {
    margin-bottom: .75rem;
  }

  .3x\:ml-3 {
    margin-left: .75rem;
  }

  .3x\:mt-4 {
    margin-top: 1rem;
  }

  .3x\:mr-4 {
    margin-right: 1rem;
  }

  .3x\:mb-4 {
    margin-bottom: 1rem;
  }

  .3x\:ml-4 {
    margin-left: 1rem;
  }

  .3x\:mt-5 {
    margin-top: 1.25rem;
  }

  .3x\:mr-5 {
    margin-right: 1.25rem;
  }

  .3x\:mb-5 {
    margin-bottom: 1.25rem;
  }

  .3x\:ml-5 {
    margin-left: 1.25rem;
  }

  .3x\:mt-6 {
    margin-top: 1.5rem;
  }

  .3x\:mr-6 {
    margin-right: 1.5rem;
  }

  .3x\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .3x\:ml-6 {
    margin-left: 1.5rem;
  }

  .3x\:mt-8 {
    margin-top: 2rem;
  }

  .3x\:mr-8 {
    margin-right: 2rem;
  }

  .3x\:mb-8 {
    margin-bottom: 2rem;
  }

  .3x\:ml-8 {
    margin-left: 2rem;
  }

  .3x\:mt-10 {
    margin-top: 2.5rem;
  }

  .3x\:mr-10 {
    margin-right: 2.5rem;
  }

  .3x\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .3x\:ml-10 {
    margin-left: 2.5rem;
  }

  .3x\:mt-12 {
    margin-top: 3rem;
  }

  .3x\:mr-12 {
    margin-right: 3rem;
  }

  .3x\:mb-12 {
    margin-bottom: 3rem;
  }

  .3x\:ml-12 {
    margin-left: 3rem;
  }

  .3x\:mt-16 {
    margin-top: 4rem;
  }

  .3x\:mr-16 {
    margin-right: 4rem;
  }

  .3x\:mb-16 {
    margin-bottom: 4rem;
  }

  .3x\:ml-16 {
    margin-left: 4rem;
  }

  .3x\:mt-20 {
    margin-top: 5rem;
  }

  .3x\:mr-20 {
    margin-right: 5rem;
  }

  .3x\:mb-20 {
    margin-bottom: 5rem;
  }

  .3x\:ml-20 {
    margin-left: 5rem;
  }

  .3x\:mt-24 {
    margin-top: 6rem;
  }

  .3x\:mr-24 {
    margin-right: 6rem;
  }

  .3x\:mb-24 {
    margin-bottom: 6rem;
  }

  .3x\:ml-24 {
    margin-left: 6rem;
  }

  .3x\:mt-32 {
    margin-top: 8rem;
  }

  .3x\:mr-32 {
    margin-right: 8rem;
  }

  .3x\:mb-32 {
    margin-bottom: 8rem;
  }

  .3x\:ml-32 {
    margin-left: 8rem;
  }

  .3x\:mt-48 {
    margin-top: 12rem;
  }

  .3x\:mr-48 {
    margin-right: 12rem;
  }

  .3x\:mb-48 {
    margin-bottom: 12rem;
  }

  .3x\:ml-48 {
    margin-left: 12rem;
  }

  .3x\:mt-64 {
    margin-top: 16rem;
  }

  .3x\:mr-64 {
    margin-right: 16rem;
  }

  .3x\:mb-64 {
    margin-bottom: 16rem;
  }

  .3x\:ml-64 {
    margin-left: 16rem;
  }

  .3x\:mt-auto {
    margin-top: auto;
  }

  .3x\:mr-auto {
    margin-right: auto;
  }

  .3x\:mb-auto {
    margin-bottom: auto;
  }

  .3x\:ml-auto {
    margin-left: auto;
  }

  .3x\:mt-px {
    margin-top: 1px;
  }

  .3x\:mr-px {
    margin-right: 1px;
  }

  .3x\:mb-px {
    margin-bottom: 1px;
  }

  .3x\:ml-px {
    margin-left: 1px;
  }

  .3x\:mt--20 {
    margin-top: -5rem;
  }

  .3x\:mr--20 {
    margin-right: -5rem;
  }

  .3x\:mb--20 {
    margin-bottom: -5rem;
  }

  .3x\:ml--20 {
    margin-left: -5rem;
  }

  .3x\:mt-30\% {
    margin-top: 30%;
  }

  .3x\:mr-30\% {
    margin-right: 30%;
  }

  .3x\:mb-30\% {
    margin-bottom: 30%;
  }

  .3x\:ml-30\% {
    margin-left: 30%;
  }

  .3x\:max-h-full {
    max-height: 100%;
  }

  .3x\:max-h-md {
    max-height: 40rem;
  }

  .3x\:max-h-lg {
    max-height: 50rem;
  }

  .3x\:max-h-screen {
    max-height: 100vh;
  }

  .3x\:max-w-50 {
    max-width: 50%;
  }

  .3x\:max-w-xxs {
    max-width: 16rem;
  }

  .3x\:max-w-xs {
    max-width: 20rem;
  }

  .3x\:max-w-sm {
    max-width: 30rem;
  }

  .3x\:max-w-md {
    max-width: 40rem;
  }

  .3x\:max-w-lg {
    max-width: 50rem;
  }

  .3x\:max-w-xl {
    max-width: 60rem;
  }

  .3x\:max-w-2xl {
    max-width: 70rem;
  }

  .3x\:max-w-3xl {
    max-width: 80rem;
  }

  .3x\:max-w-4xl {
    max-width: 90rem;
  }

  .3x\:max-w-5xl {
    max-width: 100rem;
  }

  .3x\:max-w-full {
    max-width: 100%;
  }

  .3x\:min-h-0 {
    min-height: 0;
  }

  .3x\:min-h-full {
    min-height: 100%;
  }

  .3x\:min-h-screen {
    min-height: 100vh;
  }

  .3x\:min-w-0 {
    min-width: 0;
  }

  .3x\:min-w-full {
    min-width: 100%;
  }

  .3x\:-m-0 {
    margin: 0;
  }

  .3x\:-m-1 {
    margin: -0.25rem;
  }

  .3x\:-m-2 {
    margin: -0.5rem;
  }

  .3x\:-m-3 {
    margin: -0.75rem;
  }

  .3x\:-m-4 {
    margin: -1rem;
  }

  .3x\:-m-5 {
    margin: -1.25rem;
  }

  .3x\:-m-6 {
    margin: -1.5rem;
  }

  .3x\:-m-8 {
    margin: -2rem;
  }

  .3x\:-m-12 {
    margin: -3rem;
  }

  .3x\:-m-16 {
    margin: -4rem;
  }

  .3x\:-m-20 {
    margin: -5rem;
  }

  .3x\:-m-24 {
    margin: -6rem;
  }

  .3x\:-m-32 {
    margin: -8rem;
  }

  .3x\:-m-48 {
    margin: -12rem;
  }

  .3x\:-m-64 {
    margin: -16rem;
  }

  .3x\:-m-px {
    margin: -1px;
  }

  .3x\:-m-30\% {
    margin: -30%;
  }

  .3x\:-my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .3x\:-mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .3x\:-my-1 {
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .3x\:-mx-1 {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .3x\:-my-2 {
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .3x\:-mx-2 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .3x\:-my-3 {
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .3x\:-mx-3 {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .3x\:-my-4 {
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .3x\:-mx-4 {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .3x\:-my-5 {
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .3x\:-mx-5 {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .3x\:-my-6 {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .3x\:-mx-6 {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .3x\:-my-8 {
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .3x\:-mx-8 {
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .3x\:-my-12 {
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .3x\:-mx-12 {
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .3x\:-my-16 {
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .3x\:-mx-16 {
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .3x\:-my-20 {
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .3x\:-mx-20 {
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .3x\:-my-24 {
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .3x\:-mx-24 {
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .3x\:-my-32 {
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .3x\:-mx-32 {
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .3x\:-my-48 {
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .3x\:-mx-48 {
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .3x\:-my-64 {
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .3x\:-mx-64 {
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .3x\:-my-px {
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .3x\:-mx-px {
    margin-left: -1px;
    margin-right: -1px;
  }

  .3x\:-my-30\% {
    margin-top: -30%;
    margin-bottom: -30%;
  }

  .3x\:-mx-30\% {
    margin-left: -30%;
    margin-right: -30%;
  }

  .3x\:-mt-0 {
    margin-top: 0;
  }

  .3x\:-mr-0 {
    margin-right: 0;
  }

  .3x\:-mb-0 {
    margin-bottom: 0;
  }

  .3x\:-ml-0 {
    margin-left: 0;
  }

  .3x\:-mt-1 {
    margin-top: -0.25rem;
  }

  .3x\:-mr-1 {
    margin-right: -0.25rem;
  }

  .3x\:-mb-1 {
    margin-bottom: -0.25rem;
  }

  .3x\:-ml-1 {
    margin-left: -0.25rem;
  }

  .3x\:-mt-2 {
    margin-top: -0.5rem;
  }

  .3x\:-mr-2 {
    margin-right: -0.5rem;
  }

  .3x\:-mb-2 {
    margin-bottom: -0.5rem;
  }

  .3x\:-ml-2 {
    margin-left: -0.5rem;
  }

  .3x\:-mt-3 {
    margin-top: -0.75rem;
  }

  .3x\:-mr-3 {
    margin-right: -0.75rem;
  }

  .3x\:-mb-3 {
    margin-bottom: -0.75rem;
  }

  .3x\:-ml-3 {
    margin-left: -0.75rem;
  }

  .3x\:-mt-4 {
    margin-top: -1rem;
  }

  .3x\:-mr-4 {
    margin-right: -1rem;
  }

  .3x\:-mb-4 {
    margin-bottom: -1rem;
  }

  .3x\:-ml-4 {
    margin-left: -1rem;
  }

  .3x\:-mt-5 {
    margin-top: -1.25rem;
  }

  .3x\:-mr-5 {
    margin-right: -1.25rem;
  }

  .3x\:-mb-5 {
    margin-bottom: -1.25rem;
  }

  .3x\:-ml-5 {
    margin-left: -1.25rem;
  }

  .3x\:-mt-6 {
    margin-top: -1.5rem;
  }

  .3x\:-mr-6 {
    margin-right: -1.5rem;
  }

  .3x\:-mb-6 {
    margin-bottom: -1.5rem;
  }

  .3x\:-ml-6 {
    margin-left: -1.5rem;
  }

  .3x\:-mt-8 {
    margin-top: -2rem;
  }

  .3x\:-mr-8 {
    margin-right: -2rem;
  }

  .3x\:-mb-8 {
    margin-bottom: -2rem;
  }

  .3x\:-ml-8 {
    margin-left: -2rem;
  }

  .3x\:-mt-12 {
    margin-top: -3rem;
  }

  .3x\:-mr-12 {
    margin-right: -3rem;
  }

  .3x\:-mb-12 {
    margin-bottom: -3rem;
  }

  .3x\:-ml-12 {
    margin-left: -3rem;
  }

  .3x\:-mt-16 {
    margin-top: -4rem;
  }

  .3x\:-mr-16 {
    margin-right: -4rem;
  }

  .3x\:-mb-16 {
    margin-bottom: -4rem;
  }

  .3x\:-ml-16 {
    margin-left: -4rem;
  }

  .3x\:-mt-20 {
    margin-top: -5rem;
  }

  .3x\:-mr-20 {
    margin-right: -5rem;
  }

  .3x\:-mb-20 {
    margin-bottom: -5rem;
  }

  .3x\:-ml-20 {
    margin-left: -5rem;
  }

  .3x\:-mt-24 {
    margin-top: -6rem;
  }

  .3x\:-mr-24 {
    margin-right: -6rem;
  }

  .3x\:-mb-24 {
    margin-bottom: -6rem;
  }

  .3x\:-ml-24 {
    margin-left: -6rem;
  }

  .3x\:-mt-32 {
    margin-top: -8rem;
  }

  .3x\:-mr-32 {
    margin-right: -8rem;
  }

  .3x\:-mb-32 {
    margin-bottom: -8rem;
  }

  .3x\:-ml-32 {
    margin-left: -8rem;
  }

  .3x\:-mt-48 {
    margin-top: -12rem;
  }

  .3x\:-mr-48 {
    margin-right: -12rem;
  }

  .3x\:-mb-48 {
    margin-bottom: -12rem;
  }

  .3x\:-ml-48 {
    margin-left: -12rem;
  }

  .3x\:-mt-64 {
    margin-top: -16rem;
  }

  .3x\:-mr-64 {
    margin-right: -16rem;
  }

  .3x\:-mb-64 {
    margin-bottom: -16rem;
  }

  .3x\:-ml-64 {
    margin-left: -16rem;
  }

  .3x\:-mt-px {
    margin-top: -1px;
  }

  .3x\:-mr-px {
    margin-right: -1px;
  }

  .3x\:-mb-px {
    margin-bottom: -1px;
  }

  .3x\:-ml-px {
    margin-left: -1px;
  }

  .3x\:-mt-30\% {
    margin-top: -30%;
  }

  .3x\:-mr-30\% {
    margin-right: -30%;
  }

  .3x\:-mb-30\% {
    margin-bottom: -30%;
  }

  .3x\:-ml-30\% {
    margin-left: -30%;
  }

  .3x\:opacity-0 {
    opacity: 0;
  }

  .3x\:opacity-20 {
    opacity: .2;
  }

  .3x\:opacity-40 {
    opacity: .4;
  }

  .3x\:opacity-60 {
    opacity: .6;
  }

  .3x\:opacity-80 {
    opacity: .8;
  }

  .3x\:opacity-100 {
    opacity: 1;
  }

  .3x\:overflow-auto {
    overflow: auto;
  }

  .3x\:overflow-hidden {
    overflow: hidden;
  }

  .3x\:overflow-visible {
    overflow: visible;
  }

  .3x\:overflow-scroll {
    overflow: scroll;
  }

  .3x\:overflow-x-auto {
    overflow-x: auto;
  }

  .3x\:overflow-y-auto {
    overflow-y: auto;
  }

  .3x\:overflow-x-hidden {
    overflow-x: hidden;
  }

  .3x\:overflow-y-hidden {
    overflow-y: hidden;
  }

  .3x\:overflow-x-visible {
    overflow-x: visible;
  }

  .3x\:overflow-y-visible {
    overflow-y: visible;
  }

  .3x\:overflow-x-scroll {
    overflow-x: scroll;
  }

  .3x\:overflow-y-scroll {
    overflow-y: scroll;
  }

  .3x\:scrolling-touch {
    -webkit-overflow-scrolling: touch;
  }

  .3x\:scrolling-auto {
    -webkit-overflow-scrolling: auto;
  }

  .3x\:p-0 {
    padding: 0;
  }

  .3x\:p-1 {
    padding: .25rem;
  }

  .3x\:p-2 {
    padding: .5rem;
  }

  .3x\:p-3 {
    padding: .75rem;
  }

  .3x\:p-4 {
    padding: 1rem;
  }

  .3x\:p-5 {
    padding: 1.25rem;
  }

  .3x\:p-6 {
    padding: 1.5rem;
  }

  .3x\:p-8 {
    padding: 2rem;
  }

  .3x\:p-10 {
    padding: 2.5rem;
  }

  .3x\:p-12 {
    padding: 3rem;
  }

  .3x\:p-16 {
    padding: 4rem;
  }

  .3x\:p-20 {
    padding: 5rem;
  }

  .3x\:p-24 {
    padding: 6rem;
  }

  .3x\:p-32 {
    padding: 8rem;
  }

  .3x\:p-48 {
    padding: 12rem;
  }

  .3x\:p-64 {
    padding: 16rem;
  }

  .3x\:p-px {
    padding: 1px;
  }

  .3x\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .3x\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .3x\:py-1 {
    padding-top: .25rem;
    padding-bottom: .25rem;
  }

  .3x\:px-1 {
    padding-left: .25rem;
    padding-right: .25rem;
  }

  .3x\:py-2 {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .3x\:px-2 {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .3x\:py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .3x\:px-3 {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .3x\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .3x\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .3x\:py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .3x\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .3x\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .3x\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .3x\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .3x\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .3x\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .3x\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .3x\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .3x\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .3x\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .3x\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .3x\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .3x\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .3x\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .3x\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .3x\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .3x\:px-32 {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .3x\:py-48 {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .3x\:px-48 {
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .3x\:py-64 {
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .3x\:px-64 {
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .3x\:py-px {
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .3x\:px-px {
    padding-left: 1px;
    padding-right: 1px;
  }

  .3x\:pt-0 {
    padding-top: 0;
  }

  .3x\:pr-0 {
    padding-right: 0;
  }

  .3x\:pb-0 {
    padding-bottom: 0;
  }

  .3x\:pl-0 {
    padding-left: 0;
  }

  .3x\:pt-1 {
    padding-top: .25rem;
  }

  .3x\:pr-1 {
    padding-right: .25rem;
  }

  .3x\:pb-1 {
    padding-bottom: .25rem;
  }

  .3x\:pl-1 {
    padding-left: .25rem;
  }

  .3x\:pt-2 {
    padding-top: .5rem;
  }

  .3x\:pr-2 {
    padding-right: .5rem;
  }

  .3x\:pb-2 {
    padding-bottom: .5rem;
  }

  .3x\:pl-2 {
    padding-left: .5rem;
  }

  .3x\:pt-3 {
    padding-top: .75rem;
  }

  .3x\:pr-3 {
    padding-right: .75rem;
  }

  .3x\:pb-3 {
    padding-bottom: .75rem;
  }

  .3x\:pl-3 {
    padding-left: .75rem;
  }

  .3x\:pt-4 {
    padding-top: 1rem;
  }

  .3x\:pr-4 {
    padding-right: 1rem;
  }

  .3x\:pb-4 {
    padding-bottom: 1rem;
  }

  .3x\:pl-4 {
    padding-left: 1rem;
  }

  .3x\:pt-5 {
    padding-top: 1.25rem;
  }

  .3x\:pr-5 {
    padding-right: 1.25rem;
  }

  .3x\:pb-5 {
    padding-bottom: 1.25rem;
  }

  .3x\:pl-5 {
    padding-left: 1.25rem;
  }

  .3x\:pt-6 {
    padding-top: 1.5rem;
  }

  .3x\:pr-6 {
    padding-right: 1.5rem;
  }

  .3x\:pb-6 {
    padding-bottom: 1.5rem;
  }

  .3x\:pl-6 {
    padding-left: 1.5rem;
  }

  .3x\:pt-8 {
    padding-top: 2rem;
  }

  .3x\:pr-8 {
    padding-right: 2rem;
  }

  .3x\:pb-8 {
    padding-bottom: 2rem;
  }

  .3x\:pl-8 {
    padding-left: 2rem;
  }

  .3x\:pt-10 {
    padding-top: 2.5rem;
  }

  .3x\:pr-10 {
    padding-right: 2.5rem;
  }

  .3x\:pb-10 {
    padding-bottom: 2.5rem;
  }

  .3x\:pl-10 {
    padding-left: 2.5rem;
  }

  .3x\:pt-12 {
    padding-top: 3rem;
  }

  .3x\:pr-12 {
    padding-right: 3rem;
  }

  .3x\:pb-12 {
    padding-bottom: 3rem;
  }

  .3x\:pl-12 {
    padding-left: 3rem;
  }

  .3x\:pt-16 {
    padding-top: 4rem;
  }

  .3x\:pr-16 {
    padding-right: 4rem;
  }

  .3x\:pb-16 {
    padding-bottom: 4rem;
  }

  .3x\:pl-16 {
    padding-left: 4rem;
  }

  .3x\:pt-20 {
    padding-top: 5rem;
  }

  .3x\:pr-20 {
    padding-right: 5rem;
  }

  .3x\:pb-20 {
    padding-bottom: 5rem;
  }

  .3x\:pl-20 {
    padding-left: 5rem;
  }

  .3x\:pt-24 {
    padding-top: 6rem;
  }

  .3x\:pr-24 {
    padding-right: 6rem;
  }

  .3x\:pb-24 {
    padding-bottom: 6rem;
  }

  .3x\:pl-24 {
    padding-left: 6rem;
  }

  .3x\:pt-32 {
    padding-top: 8rem;
  }

  .3x\:pr-32 {
    padding-right: 8rem;
  }

  .3x\:pb-32 {
    padding-bottom: 8rem;
  }

  .3x\:pl-32 {
    padding-left: 8rem;
  }

  .3x\:pt-48 {
    padding-top: 12rem;
  }

  .3x\:pr-48 {
    padding-right: 12rem;
  }

  .3x\:pb-48 {
    padding-bottom: 12rem;
  }

  .3x\:pl-48 {
    padding-left: 12rem;
  }

  .3x\:pt-64 {
    padding-top: 16rem;
  }

  .3x\:pr-64 {
    padding-right: 16rem;
  }

  .3x\:pb-64 {
    padding-bottom: 16rem;
  }

  .3x\:pl-64 {
    padding-left: 16rem;
  }

  .3x\:pt-px {
    padding-top: 1px;
  }

  .3x\:pr-px {
    padding-right: 1px;
  }

  .3x\:pb-px {
    padding-bottom: 1px;
  }

  .3x\:pl-px {
    padding-left: 1px;
  }

  .3x\:pointer-events-none {
    pointer-events: none;
  }

  .3x\:pointer-events-auto {
    pointer-events: auto;
  }

  .3x\:static {
    position: static;
  }

  .3x\:fixed {
    position: fixed;
  }

  .3x\:absolute {
    position: absolute;
  }

  .3x\:relative {
    position: relative;
  }

  .3x\:sticky {
    position: sticky;
  }

  .3x\:pin-none {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .3x\:pin {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .3x\:pin-y {
    top: 0;
    bottom: 0;
  }

  .3x\:pin-x {
    right: 0;
    left: 0;
  }

  .3x\:pin-t {
    top: 0;
  }

  .3x\:pin-r {
    right: 0;
  }

  .3x\:pin-b {
    bottom: 0;
  }

  .3x\:pin-l {
    left: 0;
  }

  .3x\:resize-none {
    resize: none;
  }

  .3x\:resize-y {
    resize: vertical;
  }

  .3x\:resize-x {
    resize: horizontal;
  }

  .3x\:resize {
    resize: both;
  }

  .3x\:shadow-swatch-sm {
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .1);
            box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .1);
  }

  .3x\:shadow-swatch-lg {
    -webkit-box-shadow: 0 8px 8px 0 rgba(34, 34, 34, .1);
            box-shadow: 0 8px 8px 0 rgba(34, 34, 34, .1);
  }

  .3x\:shadow-swatch-xl {
    -webkit-box-shadow: 0 16px 16px 0 rgba(34, 34, 34, .1);
            box-shadow: 0 16px 16px 0 rgba(34, 34, 34, .1);
  }

  .3x\:shadow-dark {
    -webkit-box-shadow: 8px 8px 0px 0px #222;
            box-shadow: 8px 8px 0px 0px #222;
  }

  .3x\:shadow-button-white-off {
    -webkit-box-shadow: 0 2px 0 0 #eee;
            box-shadow: 0 2px 0 0 #eee;
  }

  .3x\:shadow-button-white-hover {
    -webkit-box-shadow: 8px 8px 0 0 #eee;
            box-shadow: 8px 8px 0 0 #eee;
  }

  .3x\:shadow-button-white-hover-vertical {
    -webkit-box-shadow: 0px 8px 0 0 #eee;
            box-shadow: 0px 8px 0 0 #eee;
  }

  .3x\:shadow-button-black-hover {
    -webkit-box-shadow: 8px 8px 0 0 #000;
            box-shadow: 8px 8px 0 0 #000;
  }

  .3x\:shadow-tooltip-white-off {
    -webkit-box-shadow: 0 2px 0 0 #e9e9e9;
            box-shadow: 0 2px 0 0 #e9e9e9;
  }

  .3x\:shadow-tooltip-white-hover {
    -webkit-box-shadow: 4px 4px 0 0 #e9e9e9;
            box-shadow: 4px 4px 0 0 #e9e9e9;
  }

  .3x\:shadow-pagination-greg-light-hover {
    -webkit-box-shadow: 2px 2px 0 0 #b2b2b2;
            box-shadow: 2px 2px 0 0 #b2b2b2;
  }

  .3x\:shadow-dropdown-off {
    -webkit-box-shadow: 0 2px 0 0 #ddd;
            box-shadow: 0 2px 0 0 #ddd;
  }

  .3x\:shadow-dropdown-hover {
    -webkit-box-shadow: 0 8px 0 0 #ddd;
            box-shadow: 0 8px 0 0 #ddd;
  }

  .3x\:shadow-dropdown-dark-off {
    -webkit-box-shadow: 0 2px 0 0 #111;
            box-shadow: 0 2px 0 0 #111;
  }

  .3x\:shadow-tooltip-grey-light-active {
    -webkit-box-shadow: 0 2px 0 0 #ccc;
            box-shadow: 0 2px 0 0 #ccc;
  }

  .3x\:shadow-inset-top-black {
    -webkit-box-shadow: inset 0px 2px 0px 0px #222;
            box-shadow: inset 0px 2px 0px 0px #222;
  }

  .3x\:shadow-inset-top-white {
    -webkit-box-shadow: inset 0px 2px 0px 0px #fff;
            box-shadow: inset 0px 2px 0px 0px #fff;
  }

  .3x\:shadow-none {
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .3x\:table-auto {
    table-layout: auto;
  }

  .3x\:table-fixed {
    table-layout: fixed;
  }

  .3x\:text-left {
    text-align: left;
  }

  .3x\:text-center {
    text-align: center;
  }

  .3x\:text-right {
    text-align: right;
  }

  .3x\:text-justify {
    text-align: justify;
  }

  .3x\:text-transparent {
    color: transparent;
  }

  .3x\:text-brand {
    color: #ff993d;
  }

  .3x\:text-dealer-brand {
    color: #305371;
  }

  .3x\:text-oem-brand {
    color: #91989e;
  }

  .3x\:text-black {
    color: #222;
  }

  .3x\:text-white {
    color: #fff;
  }

  .3x\:text-grey-darkest {
    color: #333;
  }

  .3x\:text-grey-darker {
    color: #626262;
  }

  .3x\:text-grey-md-dark {
    color: #999;
  }

  .3x\:text-grey-dark {
    color: #b2b2b2;
  }

  .3x\:text-grey {
    color: #ccc;
  }

  .3x\:text-grey-light {
    color: #ddd;
  }

  .3x\:text-grey-lighter {
    color: #eee;
  }

  .3x\:text-grey-lightest {
    color: #f8f8f8;
  }

  .3x\:text-grey-accent {
    color: #efefef;
  }

  .3x\:text-success {
    color: #449343;
  }

  .3x\:hover\:text-transparent:hover {
    color: transparent;
  }

  .3x\:hover\:text-brand:hover {
    color: #ff993d;
  }

  .3x\:hover\:text-dealer-brand:hover {
    color: #305371;
  }

  .3x\:hover\:text-oem-brand:hover {
    color: #91989e;
  }

  .3x\:hover\:text-black:hover {
    color: #222;
  }

  .3x\:hover\:text-white:hover {
    color: #fff;
  }

  .3x\:hover\:text-grey-darkest:hover {
    color: #333;
  }

  .3x\:hover\:text-grey-darker:hover {
    color: #626262;
  }

  .3x\:hover\:text-grey-md-dark:hover {
    color: #999;
  }

  .3x\:hover\:text-grey-dark:hover {
    color: #b2b2b2;
  }

  .3x\:hover\:text-grey:hover {
    color: #ccc;
  }

  .3x\:hover\:text-grey-light:hover {
    color: #ddd;
  }

  .3x\:hover\:text-grey-lighter:hover {
    color: #eee;
  }

  .3x\:hover\:text-grey-lightest:hover {
    color: #f8f8f8;
  }

  .3x\:hover\:text-grey-accent:hover {
    color: #efefef;
  }

  .3x\:hover\:text-success:hover {
    color: #449343;
  }

  .3x\:text-xxs {
    font-size: .625rem;
  }

  .3x\:text-xs {
    font-size: .75rem;
  }

  .3x\:text-sm {
    font-size: .875rem;
  }

  .3x\:text-base {
    font-size: 1rem;
  }

  .3x\:text-smd {
    font-size: 1.25rem;
  }

  .3x\:text-md {
    font-size: 1.5rem;
  }

  .3x\:text-lmd {
    font-size: 1.75rem;
  }

  .3x\:text-lg {
    font-size: 2rem;
  }

  .3x\:text-xl {
    font-size: 2.5rem;
  }

  .3x\:text-2xl {
    font-size: 3rem;
  }

  .3x\:text-3xl {
    font-size: 3.5rem;
  }

  .3x\:text-4xl {
    font-size: 5rem;
  }

  .3x\:text-5xl {
    font-size: 6rem;
  }

  .3x\:italic {
    font-style: italic;
  }

  .3x\:roman {
    font-style: normal;
  }

  .3x\:uppercase {
    text-transform: uppercase;
  }

  .3x\:lowercase {
    text-transform: lowercase;
  }

  .3x\:capitalize {
    text-transform: capitalize;
  }

  .3x\:normal-case {
    text-transform: none;
  }

  .3x\:underline {
    text-decoration: underline;
  }

  .3x\:line-through {
    text-decoration: line-through;
  }

  .3x\:no-underline {
    text-decoration: none;
  }

  .3x\:antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .3x\:subpixel-antialiased {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .3x\:hover\:italic:hover {
    font-style: italic;
  }

  .3x\:hover\:roman:hover {
    font-style: normal;
  }

  .3x\:hover\:uppercase:hover {
    text-transform: uppercase;
  }

  .3x\:hover\:lowercase:hover {
    text-transform: lowercase;
  }

  .3x\:hover\:capitalize:hover {
    text-transform: capitalize;
  }

  .3x\:hover\:normal-case:hover {
    text-transform: none;
  }

  .3x\:hover\:underline:hover {
    text-decoration: underline;
  }

  .3x\:hover\:line-through:hover {
    text-decoration: line-through;
  }

  .3x\:hover\:no-underline:hover {
    text-decoration: none;
  }

  .3x\:hover\:antialiased:hover {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .3x\:hover\:subpixel-antialiased:hover {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .3x\:tracking-tight {
    letter-spacing: -0.05em;
  }

  .3x\:tracking-tightish {
    letter-spacing: -0.032em;
  }

  .3x\:tracking-normal {
    letter-spacing: 0;
  }

  .3x\:tracking-wide {
    letter-spacing: .05em;
  }

  .3x\:select-none {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .3x\:select-text {
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .3x\:align-baseline {
    vertical-align: baseline;
  }

  .3x\:align-top {
    vertical-align: top;
  }

  .3x\:align-middle {
    vertical-align: middle;
  }

  .3x\:align-bottom {
    vertical-align: bottom;
  }

  .3x\:align-text-top {
    vertical-align: text-top;
  }

  .3x\:align-text-bottom {
    vertical-align: text-bottom;
  }

  .3x\:visible {
    visibility: visible;
  }

  .3x\:invisible {
    visibility: hidden;
  }

  .3x\:whitespace-normal {
    white-space: normal;
  }

  .3x\:whitespace-no-wrap {
    white-space: nowrap;
  }

  .3x\:whitespace-pre {
    white-space: pre;
  }

  .3x\:whitespace-pre-line {
    white-space: pre-line;
  }

  .3x\:whitespace-pre-wrap {
    white-space: pre-wrap;
  }

  .3x\:break-words {
    word-wrap: break-word;
  }

  .3x\:break-normal {
    word-wrap: normal;
  }

  .3x\:truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .3x\:w-1 {
    width: .25rem;
  }

  .3x\:w-2 {
    width: .5rem;
  }

  .3x\:w-3 {
    width: .75rem;
  }

  .3x\:w-4 {
    width: 1rem;
  }

  .3x\:w-5 {
    width: 1.25rem;
  }

  .3x\:w-6 {
    width: 1.5rem;
  }

  .3x\:w-8 {
    width: 2rem;
  }

  .3x\:w-12 {
    width: 3rem;
  }

  .3x\:w-16 {
    width: 4rem;
  }

  .3x\:w-24 {
    width: 6rem;
  }

  .3x\:w-32 {
    width: 8rem;
  }

  .3x\:w-48 {
    width: 12rem;
  }

  .3x\:w-64 {
    width: 16rem;
  }

  .3x\:w-auto {
    width: auto;
  }

  .3x\:w-px {
    width: 1px;
  }

  .3x\:w-1\/2 {
    width: 50%;
  }

  .3x\:w-1\/3 {
    width: 33.33333%;
  }

  .3x\:w-2\/3 {
    width: 66.66667%;
  }

  .3x\:w-1\/4 {
    width: 25%;
  }

  .3x\:w-3\/4 {
    width: 75%;
  }

  .3x\:w-1\/5 {
    width: 20%;
  }

  .3x\:w-2\/5 {
    width: 40%;
  }

  .3x\:w-3\/5 {
    width: 60%;
  }

  .3x\:w-4\/5 {
    width: 80%;
  }

  .3x\:w-1\/6 {
    width: 16.66667%;
  }

  .3x\:w-5\/6 {
    width: 83.33333%;
  }

  .3x\:w-full {
    width: 100%;
  }

  .3x\:w-screen {
    width: 100vw;
  }

  .3x\:w--borderfix {
    width: calc(100% - 1px);
  }

  .3x\:w-borderfix {
    width: calc(100% + 1px);
  }

  .3x\:w-fit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .3x\:z-0 {
    z-index: 0;
  }

  .3x\:z-10 {
    z-index: 10;
  }

  .3x\:z-20 {
    z-index: 20;
  }

  .3x\:z-30 {
    z-index: 30;
  }

  .3x\:z-40 {
    z-index: 40;
  }

  .3x\:z-50 {
    z-index: 50;
  }

  .3x\:z-100 {
    z-index: 100;
  }

  .3x\:z-200 {
    z-index: 200;
  }

  .3x\:z-300 {
    z-index: 300;
  }

  .3x\:z-400 {
    z-index: 400;
  }

  .3x\:z-500 {
    z-index: 500;
  }

  .3x\:z-1000 {
    z-index: 1000;
  }

  .3x\:z-2000 {
    z-index: 2000;
  }
}

