@charset "UTF-8";
/*! Flickity v2.0.8
http://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative; }

.flickity-enabled:focus {
  outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%; }

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%; }

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab; }

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: white;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  /* vertically center */
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
      transform: translateY(-50%); }

.flickity-prev-next-button:hover {
  background: white; }

.flickity-prev-next-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #09F; }

.flickity-prev-next-button:active {
  opacity: 0.6; }

.flickity-prev-next-button.previous {
  left: 10px; }

.flickity-prev-next-button.next {
  right: 10px; }

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px; }

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px; }

.flickity-prev-next-button:disabled {
  opacity: 0.3;
  cursor: auto; }

.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%; }

.flickity-prev-next-button .arrow {
  fill: #333; }

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1; }

.flickity-rtl .flickity-page-dots {
  direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer; }

.flickity-page-dots .dot.is-selected {
  opacity: 1; }

/* ------------------------------------ *    #BORDER BOX
\* ------------------------------------ */
*,
*::before,
*::after {
  box-sizing: inherit;
  outline: 0; }

html {
  box-sizing: border-box; }

/* ------------------------------------ *    #CUSTOM FONTS
\* ------------------------------------ */
@font-face {
  font-family: 'arialblack';
  src: url("../fonts/arial-black-webfont.woff2") format("woff2"), url("../fonts/arial-black-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: optional; }

/* ------------------------------------ *    #PAGE
\* ------------------------------------ */
html {
  background: #fff;
  color: #000;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.37;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

dd {
  margin: 0; }

/* ------------------------------------ *    #TYPOGRAPY
\* ------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 20px;
  font-size: 1.2rem;
  line-height: 1.37; }

p {
  margin: 0 0 20px; }

ul,
ol,
dl {
  margin: 0 0 20px; }

a {
  color: #ec2227;
  text-decoration: none; }

hr {
  margin: 0 0 20px;
  border: solid #bfbfbf;
  border-width: 0 0 1px; }

/* ------------------------------------ *    #IMAGES
\* ------------------------------------ */
img {
  vertical-align: middle;
  margin: 0 0 20px; }

figure {
  margin: 0 0 20px; }

figcaption {
  font-size: 0.85714em;
  font-style: italic; }

/* ------------------------------------ *    #FORMS
\* ------------------------------------ */
input,
textarea,
select {
  border: 1px solid #bfbfbf;
  border-radius: 0;
  background: #fff; }

/* ------------------------------------ *    #WRAP
\* ------------------------------------ */
.o-wrap {
  overflow: hidden; }

/* ------------------------------------ *    #CONTAINER
\* ------------------------------------ */
.o-container {
  padding: 0 0;
  margin: 0 auto;
  width: 100%;
  max-width: 1280px; }

/* ------------------------------------ *    #LIST UNSTYLED
\* ------------------------------------ */
.o-list-unstyled {
  list-style: none;
  padding: 0; }

/* ------------------------------------ *    #LIST INLINE
\* ------------------------------------ */
.o-list-inline {
  list-style: none;
  padding: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }

.o-list-flush {
  list-style: none;
  padding: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  .o-list-flush > li {
    -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto; }

.o-list-close {
  list-style: none;
  padding: 0;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  @media (min-width: 480px) {
    .o-list-close {
      -webkit-flex-flow: initial;
          -ms-flex-flow: initial;
              flex-flow: initial; } }
  .o-list-close > li {
    -webkit-flex: 0 1 26%;
        -ms-flex: 0 1 26%;
            flex: 0 1 26%;
    padding: 6px; }
    @media (min-width: 768px) {
      .o-list-close > li {
        -webkit-flex: 0 1 18%;
            -ms-flex: 0 1 18%;
                flex: 0 1 18%; } }

/* ------------------------------------ *    #GRID
\* ------------------------------------ */
.o-grid {
  margin-right: -8px;
  margin-left: -8px; }
  .o-grid::before, .o-grid::after {
    content: ' ';
    display: table; }
  .o-grid::after {
    clear: both; }
  @media (min-width: 1024px) {
    .o-grid {
      margin-right: -15px;
      margin-left: -15px; } }

.o-grid__column {
  position: relative;
  padding-right: 8px;
  padding-left: 8px;
  width: 100%;
  min-height: 1px;
  float: left; }
  @media (min-width: 1024px) {
    .o-grid__column {
      padding-right: 15px;
      padding-left: 15px; } }

.o-grid__column--1 {
  width: 8.33333%; }

.o-grid__column--2 {
  width: 16.66667%; }

.o-grid__column--3 {
  width: 25%; }

.o-grid__column--4 {
  width: 33.33333%; }

.o-grid__column--5 {
  width: 41.66667%; }

.o-grid__column--6 {
  width: 50%; }

.o-grid__column--7 {
  width: 58.33333%; }

.o-grid__column--8 {
  width: 66.66667%; }

.o-grid__column--9 {
  width: 75%; }

.o-grid__column--10 {
  width: 83.33333%; }

.o-grid__column--11 {
  width: 91.66667%; }

.o-grid__column--12 {
  width: 100%; }

@media (min-width: 768px) {
  .o-grid__column--1\@sm {
    width: 8.33333%; }
  .o-grid__column--2\@sm {
    width: 16.66667%; }
  .o-grid__column--3\@sm {
    width: 25%; }
  .o-grid__column--4\@sm {
    width: 33.33333%; }
  .o-grid__column--5\@sm {
    width: 41.66667%; }
  .o-grid__column--6\@sm {
    width: 50%; }
  .o-grid__column--7\@sm {
    width: 58.33333%; }
  .o-grid__column--8\@sm {
    width: 66.66667%; }
  .o-grid__column--9\@sm {
    width: 75%; }
  .o-grid__column--10\@sm {
    width: 83.33333%; }
  .o-grid__column--11\@sm {
    width: 91.66667%; }
  .o-grid__column--12\@sm {
    width: 100%; } }

@media (min-width: 1024px) {
  .o-grid__column--1\@md {
    width: 8.33333%; }
  .o-grid__column--2\@md {
    width: 16.66667%; }
  .o-grid__column--3\@md {
    width: 25%; }
  .o-grid__column--4\@md {
    width: 33.33333%; }
  .o-grid__column--5\@md {
    width: 41.66667%; }
  .o-grid__column--6\@md {
    width: 50%; }
  .o-grid__column--7\@md {
    width: 58.33333%; }
  .o-grid__column--8\@md {
    width: 66.66667%; }
  .o-grid__column--9\@md {
    width: 75%; }
  .o-grid__column--10\@md {
    width: 83.33333%; }
  .o-grid__column--11\@md {
    width: 91.66667%; }
  .o-grid__column--12\@md {
    width: 100%; } }

@media (min-width: 1280px) {
  .o-grid__column--1\@lg {
    width: 8.33333%; }
  .o-grid__column--2\@lg {
    width: 16.66667%; }
  .o-grid__column--3\@lg {
    width: 25%; }
  .o-grid__column--4\@lg {
    width: 33.33333%; }
  .o-grid__column--5\@lg {
    width: 41.66667%; }
  .o-grid__column--6\@lg {
    width: 50%; }
  .o-grid__column--7\@lg {
    width: 58.33333%; }
  .o-grid__column--8\@lg {
    width: 66.66667%; }
  .o-grid__column--9\@lg {
    width: 75%; }
  .o-grid__column--10\@lg {
    width: 83.33333%; }
  .o-grid__column--11\@lg {
    width: 91.66667%; }
  .o-grid__column--12\@lg {
    width: 100%; } }

/* ------------------------------------ *    # ALIGNMENT OF ELEMENTS
\* ------------------------------------ */
.o-align-top-25 {
  position: absolute;
  top: 25%;
  -webkit-transform: translateY(25%);
  -ms-transform: translateY(25%);
  transform: translateY(25%); }

/* ------------------------------------ *    #POSITION
\* ------------------------------------ */
.o-position-relative {
  position: relative; }

/* ------------------------------------ *    #TOP WHITE BORDER
\* ------------------------------------ */
.o-border-white {
  border-top: 5px solid #fff; }

.o-border-white-bot {
  border-bottom: 5px solid #fff; }

/* ------------------------------------ *    #ASPECT
\* ------------------------------------ */
.o-aspect {
  overflow: hidden;
  margin-bottom: 20px;
  width: 100%;
  position: relative; }
  .o-aspect::before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 100%; }
  .o-aspect img,
  .o-aspect iframe,
  .o-aspect embed,
  .o-aspect video {
    margin: 0;
    width: 100%;
    height: auto;
    border: 0;
    position: absolute;
    top: 0;
    left: 0; }
  .o-aspect iframe,
  .o-aspect embed,
  .o-aspect video {
    height: 100%; }

.o-aspect--16x9::before {
  padding-top: 56.25%; }

.o-aspect--1280x780::before {
  padding-top: 60.9375%; }

.o-aspect--197x94::before {
  padding-top: 47.71574%; }

.o-aspect--1278x579::before {
  padding-top: 45.30516%; }

.o-aspect--1171x528::before {
  padding-top: 45.08967%; }

.o-aspect--312x205::before {
  padding-top: 65.70513%; }

.o-aspect--1280x400::before {
  padding-top: 33.33333%; }

.o-aspect--1170x530::before {
  padding-top: 45.29915%; }

.o-aspect--320x290::before {
  padding-top: 90.625%; }

.o-aspect--640x480::before {
  padding-top: 75%; }

.o-aspect--1280x535::before {
  padding-top: 41.79688%; }

.o-aspect--1280x579::before {
  padding-top: 45.23438%; }

.o-aspect--1280x840::before {
  padding-top: 65.625%; }

.o-aspect--425x235::before {
  padding-top: 55.29412%; }

.o-aspect--1150x560::before {
  padding-top: 48.69565%; }

/* ------------------------------------ *    #MEDIA
\* ------------------------------------ */
@media (min-width: 768px) {
  .o-media {
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start; } }

@media (min-width: 768px) {
  .o-media--flip {
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse; } }

.o-media__graphic {
  width: 100%;
  height: auto; }
  @media (min-width: 768px) {
    .o-media__graphic {
      width: auto; } }

@media (min-width: 768px) {
  .o-media__content {
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-left: 20px; } }

@media (min-width: 768px) {
  .o-media--flip .o-media__content {
    margin-left: 0;
    margin-right: 20px; } }

/* ------------------------------------ *    #CATEGORY LAYOU
\* ------------------------------------ */
@media (min-width: 768px) {
  .o-category-layout {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; } }

.o-category-layout__sidebar {
  padding: 0 24px;
  background: #fff; }
  @media (min-width: 768px) {
    .o-category-layout__sidebar {
      -webkit-flex: 0 0 auto;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 326px; } }

.o-category-layout__content {
  padding: 0 15px; }
  @media (min-width: 768px) {
    .o-category-layout__content {
      -webkit-flex: 1 1 100%;
          -ms-flex: 1 1 100%;
              flex: 1 1 100%;
      padding: 0 27px; } }

/* ------------------------------------ *    #FORM GROUP
\* ------------------------------------ */
.c-form-group {
  margin-bottom: 10px; }

.c-form-group__label {
  display: block;
  cursor: pointer;
  padding: 5px 0;
  transition: color 0.15s; }
  .c-form-group.has-error .c-form-group__label {
    color: #f00; }

.c-form-group__input {
  display: block;
  padding: 0.71429em;
  margin-bottom: 10px;
  width: 100%;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  transition: border 0.15s; }
  .c-form-group__label .c-form-group__input {
    margin: 0 5px 0 0; }
  .c-form-group.has-error .c-form-group__input {
    border-color: #f00; }

.c-form-group__input--inline {
  display: inline-block;
  width: auto; }

.c-form-group__help-block {
  display: block;
  font-size: 0.85714em;
  margin: 0 0 20px; }

.c-form-group__validation {
  display: block;
  padding: 0.71429em;
  border: 1px solid #bfbfbf;
  background-color: #e5e5e5;
  color: #c0bfc0;
  font-weight: bold;
  position: relative;
  transition: 0.15s; }
  .c-form-group.has-error .c-form-group__validation {
    border-color: #f00;
    background-color: #ff4d4d;
    color: #fff; }

/* ------------------------------------ *    #BACKDROPS
\* ------------------------------------ */
.c-backdrop-dot-gradient {
  background: #bfc1c4 url("../img/backdrops/backdrop-dot-gradient.jpg") left top no-repeat;
  background-size: 1000px auto;
  overflow: hidden; }
  @media (min-width: 1024px) {
    .c-backdrop-dot-gradient {
      background-size: 100% auto; } }

.c-backdrop-dot-gradient-home {
  background: #585858 url("../img/backdrops/backdrop-dot-gradient-home.jpg") center top no-repeat; }

.c-backdrop-white {
  background-color: #fff;
  width: 90%;
  margin: 0 auto;
  height: 100%;
  padding: 25px 30px 35px 25px;
  margin-bottom: 38px; }

.c-backdrop-white-full {
  background-color: #fff; }

.c-backdrop-speedway {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../img/backdrops/air-jet-drone-background.jpg") no-repeat;
  background-size: cover;
  overflow: hidden; }

/* ------------------------------------ *    #BUTTONS
\* ------------------------------------ */
.c-btn {
  display: inline-block;
  cursor: pointer;
  padding: 0.71429em 1.42857em;
  border: 0;
  color: #ec2227;
  background: #eee;
  font-size: 14px;
  line-height: 1;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: 0.15s; }
  .c-btn:hover, .c-btn:active, .c-btn:focus {
    background: #d5d5d5;
    text-decoration: none; }

/**
 * Modifiers for the buttons
 */
.c-btn--primary {
  background: #337ab7;
  color: #fff; }
  .c-btn--primary:hover, .c-btn--primary:active, .c-btn--primary:focus {
    background: #285f8f; }

/**
 * Modifiers for the buttons
 */
.c-btn--white {
  background: #fff;
  color: #000;
  font-size: 16px;
  line-height: 1.2;
  padding: 8px 10px 5px; }
  .c-btn--white:hover, .c-btn--white:active, .c-btn--white:focus {
    background: #fff; }

/* ------------------------------------ *    #FRAME PIECE
\* ------------------------------------ */
.c-frame-piece {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  margin: 0;
  display: block;
  position: relative;
  z-index: -1; }

/* ------------------------------------ *    #HEADINGS
\* ------------------------------------ */
.c-heading-70 {
  font-size: 4.5vw;
  line-height: 1.2; }
  @media (max-width: 777.77778) {
    .c-heading-70 {
      font-size: 35; } }
  @media (min-width: 1555.55556px) {
    .c-heading-70 {
      font-size: 70px; } }

.c-heading-48 {
  font-size: 4vw;
  line-height: 1.2; }
  @media (max-width: 475) {
    .c-heading-48 {
      font-size: 19; } }
  @media (min-width: 1200px) {
    .c-heading-48 {
      font-size: 48px; } }

.c-heading-45 {
  font-size: 4vw;
  line-height: 1.2; }
  @media (max-width: 425px) {
    .c-heading-45 {
      font-size: 17px; } }
  @media (min-width: 1125px) {
    .c-heading-45 {
      font-size: 45px; } }

.c-heading-52 {
  font-size: 4vw;
  line-height: 1.2; }
  @media (max-width: 850px) {
    .c-heading-52 {
      font-size: 34px; } }
  @media (min-width: 1300px) {
    .c-heading-52 {
      font-size: 52px; } }

.c-heading-35 {
  font-size: 4vw;
  line-height: 1.2; }
  @media (max-width: 425px) {
    .c-heading-35 {
      font-size: 17px; } }
  @media (min-width: 875px) {
    .c-heading-35 {
      font-size: 35px; } }

.c-heading-30 {
  font-size: 4vw;
  line-height: 1.2; }
  @media (max-width: 425px) {
    .c-heading-30 {
      font-size: 17px; } }
  @media (min-width: 750px) {
    .c-heading-30 {
      font-size: 30px; } }

.c-heading-52-38 {
  font-size: 3.65vw; }
  @media (max-width: 1041.09589px) {
    .c-heading-52-38 {
      font-size: 38px; } }
  @media (min-width: 1424.65753px) {
    .c-heading-52-38 {
      font-size: 52px; } }

.c-heading-20 {
  font-size: 1.28571rem;
  line-height: 1.2; }
  @media (min-width: 768px) {
    .c-heading-20 {
      font-size: 1.42857rem; } }

.c-heading-18 {
  font-size: 1.28571rem;
  line-height: 1.2; }

/* ------------------------------------ *    #LINK
\* ------------------------------------ */
.c-link {
  padding: 0;
  border: 0;
  background: none;
  color: #ec2227;
  font-family: "Teko", sans-serif;
  font-size: 1.42857rem;
  text-transform: uppercase; }
  .c-link:hover {
    text-decoration: underline; }

/* ------------------------------------ *    #MODAL
\* ------------------------------------ */
@-webkit-keyframes appear {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes appear {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.c-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1000;
  -webkit-animation: appear 0.4s linear forwards;
          animation: appear 0.4s linear forwards; }

.c-modal__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75); }

/* ------------------------------------ *    #LINE BUTTON
\* ------------------------------------ */
.c-line-button {
  padding: 0;
  display: inline-block;
  text-align: center;
  width: 200px;
  background: none;
  border: 0;
  position: relative;
  z-index: 1; }
  @media (min-width: 768px) {
    .c-line-button {
      width: 435px; } }

.c-line-button__backdrop {
  padding: 19.0231px 0 13.63227px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: -1; }
  @media (min-width: 768px) {
    .c-line-button__backdrop {
      padding: 42.55025px 0 30.82518px; } }

.c-line-button__repeater {
  height: 100%;
  position: relative; }

.c-line-button__piece {
  position: absolute;
  width: 100%;
  left: 0; }

.c-line-button__piece--top {
  height: 20.0231px;
  top: 0; }
  @media (min-width: 768px) {
    .c-line-button__piece--top {
      height: 43.55025px; } }

.c-line-button__piece--middle {
  height: 100%; }

.c-line-button__piece--bottom {
  height: 14.63227px;
  bottom: 0; }
  @media (min-width: 768px) {
    .c-line-button__piece--bottom {
      height: 31.82518px; } }

.c-line-button__content {
  color: #fff;
  padding: 16px 30px 7px 14px;
  font-family: "Racing Sans One", sans-serif;
  font-size: 0.92857rem;
  line-height: 1;
  position: relative;
  z-index: 1; }
  @media (min-width: 768px) {
    .c-line-button__content {
      padding: 28px 50px 12px 22px;
      font-size: 2.14286rem;
      line-height: 1.16667; } }

/* ------------------------------------ *    # BRANDS
\* ------------------------------------ */
.c-brands {
  width: 100%;
  padding: 0 20px; }

.c-brands svg {
  overflow: visible; }

/* ------------------------------------ *    #SECTION HEADER
\* ------------------------------------ */
.c-section-header {
  padding: 15px 24px;
  background: #808285;
  color: #fff;
  text-align: center; }

.c-section-header--black {
  background: #000; }

.c-section-header__title {
  margin: 0;
  font-family: "Racing Sans One", sans-serif;
  line-height: 1;
  font-weight: normal; }

/* ------------------------------------ *    #LOADING
\* ------------------------------------ */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg); }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes spin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg); }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg); } }

.c-loading {
  position: relative;
  color: #4a4a4a;
  font-family: "Teko", sans-serif;
  font-size: 1.71429rem;
  text-align: center;
  padding: 100px 50px; }

.c-loading__text {
  position: relative;
  z-index: 1; }

.c-loading__prop {
  position: absolute;
  top: 50%;
  left: 50%; }

.c-loading__propeller {
  height: 0.33333em;
  position: absolute;
  top: 50%;
  left: 50%;
  fill: #ec2227;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }

.c-loading__propeller--1 {
  -webkit-animation: spin 1.5s 0s linear infinite;
          animation: spin 1.5s 0s linear infinite; }

.c-loading__propeller--2 {
  -webkit-animation: spin 1.5s 0.02s linear infinite;
          animation: spin 1.5s 0.02s linear infinite; }

.c-loading__propeller--3 {
  -webkit-animation: spin 1.5s 0.04s linear infinite;
          animation: spin 1.5s 0.04s linear infinite; }

/* ------------------------------------ *    #DEVICE
\* ------------------------------------ */
.c-device {
  background: url("../img/device-iphone.png");
  background-size: cover;
  width: 100%;
  max-width: 562px;
  position: relative; }
  .c-device::before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 48.0427%; }

.c-device__content {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 3.02491% 12.09964% 1.77936% 12.27758%; }

/* ------------------------------------ *    #PRODUCT EXCERPT
\* ------------------------------------ */
.c-product-excerpt {
  -webkit-clip-path: polygon(20px 0%, 100% 0%, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0% 100%, 0% 20px);
          clip-path: polygon(20px 0%, 100% 0%, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0% 100%, 0% 20px);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  color: #fff;
  font-size: 0.85714rem; }

.c-product-excerpt__thumb-wrap {
  background: #fff; }

.c-product-excerpt__body {
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 10px;
  min-height: 100px;
  background: #4a4a4a; }

.c-product-excerpt__title {
  margin-bottom: 5px;
  font-family: "Teko", sans-serif;
  font-size: 1.35714rem;
  font-weight: normal; }

.c-product-excerpt__footer {
  padding: 1px 10px 0;
  background: #4a4a4a;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  text-align: center; }

.c-product-excerpt__more {
  display: block;
  font-family: "Teko", sans-serif;
  font-size: 1.28571rem;
  line-height: 1.26667em;
  color: #a3a3a3; }

/* ------------------------------------ *    #PRODUCTS HEADER
\* ------------------------------------ */
.c-products-header {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px 24px; }
  @media (min-width: 768px) {
    .c-products-header {
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row; } }

.c-products-header__link {
  color: #ec2227;
  font-family: "Teko", sans-serif; }

/* ------------------------------------ *    #PRODUCT LIST
\* ------------------------------------ */
.c-product-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-right: -7px;
  margin-left: -7px; }

.c-product-list__item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-bottom: 24px;
  padding: 0 7px;
  width: 100%; }
  @media (min-width: 768px) {
    .c-product-list__item {
      width: 50%; } }
  @media (min-width: 1280px) {
    .c-product-list__item {
      width: 33.33333%; } }

/* ------------------------------------ *    #PRODUCT FILTERS
\* ------------------------------------ */
.c-product-filters {
  padding-top: 30px; }

.c-product-filters__header {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 10px; }

.c-product-filters__title {
  margin: 0; }

.c-product-filters__category-title {
  color: #4a4a4a;
  font-family: "Teko", sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 10px; }

/* ------------------------------------ *    #SKEWED THUMBS
\* ------------------------------------ */
.c-skewed-thumbs {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  @media (min-width: 768px) {
    .c-skewed-thumbs {
      padding: 2px 3px;
      background: #fff;
      -webkit-transform: skewX(-45deg);
          -ms-transform: skewX(-45deg);
              transform: skewX(-45deg); } }

.c-skewed-thumbs__item {
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto; }
  @media (min-width: 768px) {
    .c-skewed-thumbs__item + .c-skewed-thumbs__item {
      background: red;
      margin-left: 3px; } }

.c-skewed-thumbs__button {
  display: block;
  border: 0;
  background: none;
  padding: 0; }

.c-skewed-thumbs__outer {
  border: solid red;
  border-width: 2px 3px;
  padding: 4px; }
  @media (min-width: 768px) {
    .c-skewed-thumbs__outer {
      background: #000; } }

.c-skewed-thumbs__inner {
  overflow: hidden;
  background: #fff;
  height: 54px;
  width: 54px;
  position: relative; }
  @media (min-width: 768px) {
    .c-skewed-thumbs__inner {
      height: 100px;
      width: 150px; } }

.c-skewed-thumbs__img {
  height: 54px;
  width: 54px;
  transition: 0.15s;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0); }
  @media (min-width: 768px) {
    .c-skewed-thumbs__img {
      margin: -75px;
      width: 150px;
      height: 150px;
      -webkit-transform: skewX(45deg);
          -ms-transform: skewX(45deg);
              transform: skewX(45deg);
      position: absolute;
      top: 50%;
      left: 50%; }
      .c-skewed-thumbs__button:hover .c-skewed-thumbs__img {
        -webkit-transform: scale(1.05) skewX(45deg);
            -ms-transform: scale(1.05) skewX(45deg);
                transform: scale(1.05) skewX(45deg); } }

/* ------------------------------------ *    #GALLERY
\* ------------------------------------ */
.c-gallery {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
  @media (min-width: 480px) {
    .c-gallery {
      margin: 7px -7px; } }

.c-gallery__item {
  overflow: hidden;
  width: 100%; }
  @media (min-width: 480px) {
    .c-gallery__item {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      background: center no-repeat;
      background-size: cover;
      height: 250px;
      width: 50%; } }
  @media (min-width: 768px) {
    .c-gallery__item {
      width: 50%;
      height: 500px; } }

@media (min-width: 768px) {
  .c-gallery__item--1 {
    width: 25%; } }

@media (min-width: 768px) {
  .c-gallery__item--2 {
    width: 50%; } }

@media (min-width: 768px) {
  .c-gallery__item--3 {
    width: 25%; } }

.c-gallery__item--5 {
  width: 100%; }
  @media (min-width: 768px) {
    .c-gallery__item--5 {
      width: 50%;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-align-items: stretch;
          -ms-flex-align: stretch;
              align-items: stretch; } }

.c-gallery__view {
  width: 100%; }
  @media (min-width: 480px) {
    .c-gallery__view {
      -webkit-flex-grow: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      margin: 7px;
      width: auto;
      background: #666 center no-repeat;
      background-size: cover; } }

.c-gallery__image {
  margin: 0; }
  @media (min-width: 480px) {
    .c-gallery__image {
      display: none; } }

/* ------------------------------------ *    #PRODUCT HERO
\* ------------------------------------ */
.c-product-hero {
  position: relative;
  overflow: hidden; }

.c-product-hero__backdrop {
  min-height: 190px;
  height: 59.375vw;
  background: #c0bfc0 center bottom no-repeat;
  background-size: cover;
  position: relative; }
  @media (min-width: 1280px) {
    .c-product-hero__backdrop {
      height: 760px; } }

.c-product-hero__product {
  margin: 0;
  width: 80%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%); }

.c-product-hero__header {
  font-size: 4.29688vw;
  width: 100%;
  position: absolute;
  bottom: 17px;
  right: 0;
  z-index: 1; }
  @media (max-width: 395.63636px) {
    .c-product-hero__header {
      font-size: 17px; } }
  @media (min-width: 1280px) {
    .c-product-hero__header {
      font-size: 55px; } }
  @media (min-width: 768px) {
    .c-product-hero__header {
      bottom: 40px; } }

.c-product-hero__header-inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end; }

.c-product-hero__header-content {
  width: 55.625vw;
  position: relative; }
  @media (min-width: 480px) {
    .c-product-hero__header-content {
      width: 42.1875vw; } }
  @media (min-width: 1280px) {
    .c-product-hero__header-content {
      width: 540px; } }

.c-product-hero__title {
  margin: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 15.9375vw;
  padding-right: 15px;
  padding-top: 20px;
  font-size: inherit;
  color: #fff;
  font-family: "Racing Sans One", sans-serif;
  text-align: left;
  line-height: 0.9;
  font-weight: normal;
  text-transform: uppercase;
  position: relative; }
  @media (min-width: 480px) {
    .c-product-hero__title {
      min-height: 9.53125vw; } }
  @media (min-width: 1280px) {
    .c-product-hero__title {
      min-height: 122px; } }

.c-product-hero__cta {
  margin-right: 10px;
  margin-bottom: -10px;
  text-align: right; }
  @media (min-width: 768px) {
    .c-product-hero__cta {
      margin-left: -100vw;
      margin-bottom: -30px; } }

.c-product-hero__header-frame {
  position: absolute;
  min-width: 422px;
  width: 131.875vw;
  height: auto;
  right: 0; }
  @media (min-width: 480px) {
    .c-product-hero__header-frame {
      width: 109.375vw;
      right: -3.90625vw; } }
  @media (min-width: 1280px) {
    .c-product-hero__header-frame {
      width: 1409px;
      right: -50px; } }

.c-product-hero__header-frame--top {
  top: 21px; }
  @media (min-width: 480px) {
    .c-product-hero__header-frame--top {
      top: 11px;
      height: 10.46875vw; } }
  @media (min-width: 768px) {
    .c-product-hero__header-frame--top {
      top: 0; } }
  @media (min-width: 1280px) {
    .c-product-hero__header-frame--top {
      height: 134px; } }

.c-product-hero__header-frame--bottom {
  bottom: 0; }
  @media (min-width: 480px) {
    .c-product-hero__header-frame--bottom {
      height: 5.54688vw; } }
  @media (min-width: 1280px) {
    .c-product-hero__header-frame--bottom {
      height: 71px; } }

/* ------------------------------------ *    #DOWNLOAD APP
\* ------------------------------------ */
.c-download-app {
  background: #000 10% top no-repeat;
  background-size: cover; }
  @media (min-width: 768px) {
    .c-download-app {
      background-position: center; } }

.c-download-app__content {
  padding: 4.6875% 15px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; }
  @media (min-width: 768px) {
    .c-download-app__content {
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row;
      padding: 100px 36px; } }

.c-download-app__about {
  text-align: center;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto; }
  @media (min-width: 768px) {
    .c-download-app__about {
      width: 50%; } }

.c-download-app__app-icon {
  margin: auto;
  width: 60px; }
  @media (min-width: 768px) {
    .c-download-app__app-icon {
      width: 90px; } }

.c-download-app__downloads {
  border: solid rgba(255, 255, 255, 0.45);
  border-width: 3px 0;
  padding: 15px 0; }

.c-download-app__stores {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -9px; }
  @media (min-width: 768px) {
    .c-download-app__stores {
      margin: 0; } }

.c-download-app__stores-item {
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-right: 9px;
  padding-left: 9px; }
  @media (min-width: 1024px) {
    .c-download-app__stores-item {
      padding-right: 15px;
      padding-left: 15px; } }

.c-download-app__preview {
  margin-bottom: 20px;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%; }
  @media (min-width: 768px) {
    .c-download-app__preview {
      margin-bottom: 0;
      margin-left: 20px;
      width: 50%; } }

/* ------------------------------------ *    #DETAILS TILE
\* ------------------------------------ */
.c-details-tile {
  background: #000 center no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative; }

.c-details-tile__content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5.46875% 15px; }

.c-details-tile__product {
  display: block;
  margin: 0 auto;
  width: 100%; }
  @media (min-width: 1024px) {
    .c-details-tile__product {
      width: 100%;
      position: absolute;
      top: 0;
      left: 0;
      -webkit-transform: translateX(-10%);
          -ms-transform: translateX(-10%);
              transform: translateX(-10%); } }
  @media (min-width: 1280px) {
    .c-details-tile__product {
      -webkit-transform: none;
          -ms-transform: none;
              transform: none; } }

.c-details-tile__box {
  font-size: 3vw;
  -webkit-order: 99;
      -ms-flex-order: 99;
          order: 99;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: auto;
  min-height: 400px;
  width: 530px;
  max-width: 100%;
  color: #fff;
  position: relative;
  z-index: 0; }
  @media (max-width: 333.33333px) {
    .c-details-tile__box {
      font-size: 10px; } }
  @media (min-width: 566.66667px) {
    .c-details-tile__box {
      font-size: 17px; } }
  @media (min-width: 480px) {
    .c-details-tile__box {
      min-height: 530px; } }
  @media (min-width: 1024px) {
    .c-details-tile__box {
      max-width: 50%; } }
  @media (min-width: 1024px) {
    .c-details-tile__box {
      -webkit-order: 0;
          -ms-flex-order: 0;
              order: 0;
      margin: 0 34px 40px auto; } }

.c-details-tile__box-content {
  padding: 30px; }
  @media (min-width: 480px) {
    .c-details-tile__box-content {
      padding: 11.32075% 5.66038% 13.20755% 11.32075%; } }
  .c-details-tile__box-content a {
    color: inherit;
    text-decoration: underline; }

.c-details-tile__backdrop {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1; }

.c-details-tile__backdrop-top {
  position: absolute;
  top: 2px;
  left: 0;
  width: 100%;
  padding-top: 47.16981%; }

.c-details-tile__backdrop-bottom {
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  padding-top: 47.16981%; }

.c-details-tile__backdrop-repeater {
  margin: 47.16981% 0;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0; }

.c-details-tile__backdrop-slice {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%; }

.c-details-tile__backdrop-slice--top {
  top: 0; }

.c-details-tile__backdrop-slice--middle {
  position: relative;
  height: 100%; }

.c-details-tile__backdrop-slice--bottom {
  bottom: 0; }

.c-details-tile__bar {
  padding-bottom: 11%;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 0;
  margin: 0 0 -5%; }
  @media (min-width: 1024px) {
    .c-details-tile__bar {
      padding: 0 0 58px 260px;
      text-align: left; } }

.c-details-tile__bar-frame {
  margin: 0 -15px;
  width: 250%;
  height: auto;
  position: absolute;
  left: -40%;
  bottom: 0; }
  @media (min-width: 1024px) {
    .c-details-tile__bar-frame {
      width: 1406px;
      left: 0; } }

/* ------------------------------------ *    #DETAILS TILE
\* ------------------------------------ */
.c-polybox {
  background: #000 center no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative; }

.c-polybox__content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5.46875% 15px; }

.c-polybox__product {
  display: block;
  margin: 0 auto;
  width: 100%; }
  @media (min-width: 1024px) {
    .c-polybox__product {
      width: 100%;
      position: absolute;
      top: 0;
      left: 0;
      -webkit-transform: translateX(-10%);
          -ms-transform: translateX(-10%);
              transform: translateX(-10%); } }
  @media (min-width: 1280px) {
    .c-polybox__product {
      -webkit-transform: none;
          -ms-transform: none;
              transform: none; } }

.c-polybox__box {
  font-size: 3vw;
  -webkit-order: 99;
      -ms-flex-order: 99;
          order: 99;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: auto;
  min-height: 400px;
  max-width: 100%;
  color: #fff;
  position: relative;
  z-index: 0; }
  @media (max-width: 333.33333px) {
    .c-polybox__box {
      font-size: 10px; } }
  @media (min-width: 566.66667px) {
    .c-polybox__box {
      font-size: 17px; } }
  @media (min-width: 480px) {
    .c-polybox__box {
      min-height: 530px; } }
  @media (min-width: 1024px) {
    .c-polybox__box {
      -webkit-order: 0;
          -ms-flex-order: 0;
              order: 0;
      margin: 0 34px 40px auto; } }

.c-polybox__box--small {
  min-height: 320px; }
  @media (min-width: 480px) {
    .c-polybox__box--small {
      min-height: 365px; } }
  @media (min-width: 768px) {
    .c-polybox__box--small {
      min-height: 420px; } }

.c-polybox__box-content {
  width: 100%;
  padding: 30px; }
  @media (min-width: 480px) {
    .c-polybox__box-content {
      padding: 11.32075% 5.66038% 13.20755% 11.32075%; } }
  @media (min-width: 768px) {
    .c-polybox__box-content {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%); } }

.c-polybox__box-content-outer {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 0; }

.c-polybox__box-content-inner {
  padding-left: 20px; }

.c-polybox__box-content__separator {
  width: 95%;
  height: 2px;
  margin: 20px auto;
  background-color: #fff; }

.c-polybox__backdrop {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1; }

.c-polybox__backdrop-top {
  position: absolute;
  top: 2px;
  left: 0;
  width: 100%;
  padding-top: 47.16981%; }

.c-polybox__backdrop-bottom {
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  padding-top: 47.16981%; }

.c-polybox__backdrop-repeater {
  margin: 47.16981% 0;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0; }

.c-polybox__backdrop-slice {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%; }

.c-polybox__backdrop-slice--top {
  top: 0; }

.c-polybox__backdrop-slice--middle {
  position: relative;
  height: 100%; }

.c-polybox__backdrop-slice--bottom {
  bottom: 0; }

.c-polybox__bar {
  padding-bottom: 11%;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 0;
  margin: 0 0 -5%; }
  @media (min-width: 1024px) {
    .c-polybox__bar {
      padding: 0 0 58px 260px;
      text-align: left; } }

.c-polybox__bar-frame {
  margin: 0 -15px;
  width: 250%;
  height: auto;
  position: absolute;
  left: -40%;
  bottom: 0; }
  @media (min-width: 1024px) {
    .c-polybox__bar-frame {
      width: 1406px;
      left: 0; } }

/* ------------------------------------ *    #SCROLL TOP
\* ------------------------------------ */
.c-scroll-top {
  position: fixed;
  padding: 15px;
  background-color: #000;
  z-index: 100;
  bottom: 30px; }
  @media (min-width: 768px) {
    .c-scroll-top {
      right: auto; } }

/* ------------------------------------ *    #GLOSSARY
\* ------------------------------------ */
.c-glossary__title {
  padding: 40px 30px 30px; }

.c-glossary-content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start; }
  @media (min-width: 1024px) {
    .c-glossary-content {
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row; } }

.c-glossary__aside {
  -webkit-flex: 0 1 50%;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%; }

.c-glossary-list__title {
  padding: 12px 55px 12px 0; }

.c-glossary-list__description {
  padding-bottom: 12px; }

.c-glossary-sublist {
  padding-bottom: 10px; }

.c-glossary-list__icon {
  position: absolute;
  display: inline;
  width: 16px;
  height: 16px;
  right: 4%;
  top: 25%; }
  .c-glossary-list__icon::before, .c-glossary-list__icon::after {
    content: "";
    position: absolute;
    background-color: #ec2227;
    transition: -webkit-transform 0.25s ease-out;
    transition: transform 0.25s ease-out;
    transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out; }
  .c-glossary-list__icon::before {
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    margin-left: -2px; }
  .c-glossary-list__icon::after {
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    margin-top: -2px; }

.c-glossary-list__icon--inverted {
  width: 20px;
  height: 20px;
  background: red;
  border-radius: 10px; }
  .c-glossary-list__icon--inverted::before {
    top: 3px;
    height: 70%;
    background-color: #fff; }
  .c-glossary-list__icon--inverted::after {
    left: 3px;
    width: 70%;
    background-color: #fff; }

.is-open .c-glossary-list__icon::before {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg); }

.is-open .c-glossary-list__icon::after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg); }

.c-glossary__main {
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
  padding: 22px; }

/* ------------------------------------ *    #WELL
\* ------------------------------------ */
.c-well {
  margin-bottom: 20px;
  padding: 20px;
  background: #fff; }
  @media (min-width: 1024px) {
    .c-well {
      padding: 40px; } }

/* ------------------------------------ *    #NAVIGATION
\* ------------------------------------ */
.c-nav {
  font-family: "Teko", sans-serif;
  font-size: 1.57143rem;
  height: 100%;
  text-transform: uppercase;
  font-weight: 500; }

.c-nav__list {
  height: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch; }

.c-nav__item {
  height: 100%; }

.c-nav__link {
  height: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  padding: 0 30px; }

/* ------------------------------------ *    #MOBILE NAVIGATION
    #APPLIES TO BELOW 1280px
\* ------------------------------------ */
.c-mobile-nav {
  font-family: "Teko", sans-serif;
  font-size: 1.42857rem; }

.c-mobile-nav__item span {
  display: block; }

.c-mobile-nav__link {
  display: block;
  padding: 0 20px;
  background: none;
  border: 0;
  color: #4d4d4d;
  font-size: 1.42857rem;
  font-family: "Teko", sans-serif; }

.c-mobile-nav__link--cta {
  padding: 10px;
  text-align: center;
  background-color: #ec2227;
  color: #fff; }

.c-mobile-nav__item--red {
  color: #fff; }

/* ------------------------------------ *    #OFF CANVAS MENU
\* ------------------------------------ */
.c-off-canvas {
  width: 90%;
  max-width: 350px;
  height: 100%;
  background: white;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  transition: -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in;
  transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in; }
  .c-off-canvas.is-active {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none; }

/* ------------------------------------ *    #SOCIAL
\* ------------------------------------ */
.c-social {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  padding: 10px 30px; }
  @media (min-width: 1280px) {
    .c-social {
      padding: 0; } }

.c-social__link {
  display: block;
  padding: 12px;
  color: #474747;
  transition: 0.15s; }
  @media (min-width: 1280px) {
    .c-social__link {
      color: #fff; } }
  .c-social__link:hover {
    color: #ec2227; }

.c-social__icon {
  fill: currentColor; }

/* ------------------------------------ *    # HERO CAROUSEL
\* ------------------------------------ */
.c-hero {
  background: #000; }

.c-hero__header {
  position: absolute;
  bottom: 12px;
  right: 0;
  padding-left: 13px;
  padding-bottom: 12px;
  padding-right: 18%;
  background-color: rgba(0, 0, 0, 0.65);
  will-change: transform;
  width: auto; }
  .c-hero__header::after {
    width: 25%;
    height: 100%;
    background: linear-gradient(to left bottom, rgba(0, 0, 0, 0.65) 50%, transparent 50%);
    position: absolute;
    left: -25%;
    top: 0;
    content: ''; }
  @media (min-width: 768px) {
    .c-hero__header {
      bottom: 70px; } }

.c-hero__slide {
  width: 100%;
  overflow: hidden; }

.c-hero__btn,
.c-hero__title {
  font-family: "Racing Sans One", sans-serif;
  margin: 0;
  color: #fff; }

.c-hero__title {
  position: relative;
  left: 30%;
  text-transform: capitalize;
  font-size: 3.5vw; }
  @media (max-width: 600px) {
    .c-hero__title {
      font-size: 21px; } }
  @media (min-width: 1285.71429px) {
    .c-hero__title {
      font-size: 45px; } }
  @media (min-width: 768px) {
    .c-hero__title {
      left: 55%; } }

.c-hero__cta {
  margin-top: -4px; }

.c-hero__btn {
  display: inline-block;
  padding: 0 13px;
  background: none;
  border: 0;
  text-transform: uppercase;
  position: relative;
  font-size: 1.7vw; }
  @media (max-width: 705.88235px) {
    .c-hero__btn {
      font-size: 12px; } }
  @media (min-width: 1176.47059px) {
    .c-hero__btn {
      font-size: 20px; } }
  @media (min-width: 768px) {
    .c-hero__btn {
      padding: 0 43px; } }

.c-hero__btn-box {
  position: relative;
  z-index: 100;
  text-align: right; }
  .c-hero__btn-box::before {
    content: '';
    position: absolute;
    width: 260%;
    height: 2px;
    left: 65%;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: -1; }
  .c-hero__btn-box:first-child {
    left: 8%; }
    @media (min-width: 768px) {
      .c-hero__btn-box:first-child {
        margin-bottom: 5px; } }
  .c-hero__btn-box:last-child {
    text-align: right; }

.c-hero__btn--ground {
  background-color: #39b54a;
  border-left: 1px solid #39b54a;
  border-right: 1px solid #39b54a; }

.c-hero__btn-box--ground::before {
  background-color: #39b54a; }

.c-triangle-left--ground,
.c-triangle-right--ground {
  fill: #39b54a; }

.c-hero__btn--outdoor {
  background-color: #0089d0;
  border-left: 1px solid #0089d0;
  border-right: 1px solid #0089d0; }

.c-hero__btn-box--outdoor::before {
  background-color: #0089d0; }

.c-triangle-left--outdoor,
.c-triangle-right--outdoor {
  fill: #0089d0; }

.c-hero__btn--stunt {
  background-color: #f7941d;
  border-left: 1px solid #f7941d;
  border-right: 1px solid #f7941d; }

.c-hero__btn-box--stunt::before {
  background-color: #f7941d; }

.c-triangle-left--stunt,
.c-triangle-right--stunt {
  fill: #f7941d; }

.c-hero__btn--race {
  background-color: #ec2028;
  border-left: 1px solid #ec2028;
  border-right: 1px solid #ec2028; }

.c-hero__btn-box--race::before {
  background-color: #ec2028; }

.c-triangle-left--race,
.c-triangle-right--race {
  fill: #ec2028; }

.c-hero__aspect-box::before {
  padding-top: 79.6875%; }
  @media (min-width: 480px) {
    .c-hero__aspect-box::before {
      padding-top: 33.20312%; } }

.c-hero__aspect-img {
  min-height: 400px; }

/* ------------------------------------ *    #VOD
\* ------------------------------------ */
.c-vod {
  overflow: hidden;
  position: relative;
  background: #000; }

.c-vod__overlay {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  transition: 0.15s; }
  .c-vod.is-hidden .c-vod__overlay {
    visibility: hidden;
    opacity: 0; }

.c-vod__header {
  padding: 0 10px;
  width: 100%;
  color: #fff;
  font-size: 0.71429rem;
  font-family: "Racing Sans One", sans-serif;
  position: absolute;
  bottom: 30px;
  left: 0;
  z-index: 1; }
  @media (min-width: 768px) {
    .c-vod__header {
      font-size: 1.71429rem; } }
  @media (min-width: 1024px) {
    .c-vod__header {
      height: 123px;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      font-size: 2.42857rem; } }

.c-vod__header-frame {
  display: none; }
  @media (min-width: 1024px) {
    .c-vod__header-frame {
      display: block;
      width: 1280px;
      height: 100%;
      position: absolute;
      bottom: 0;
      left: 0;
      z-index: -1; } }

.c-vod__header-title {
  margin: 0;
  width: 40%;
  font-size: inherit;
  line-height: 0.82353em;
  font-weight: normal;
  text-transform: uppercase; }
  @media (min-width: 1024px) {
    .c-vod__header-title {
      padding: 0 32px;
      width: 340px; } }

.c-vod__header-subtitle {
  margin: 0;
  font-size: inherit;
  font-weight: normal; }
  @media (min-width: 1024px) {
    .c-vod__header-subtitle {
      font-size: 0.73529em;
      height: 45px;
      line-height: 45px;
      position: absolute;
      bottom: 0;
      left: 430px; } }

/* ------------------------------------ *    #COMMUNITY
\* ------------------------------------ */
.c-community__title {
  margin: 0;
  padding: 20px 0;
  font-family: "Teko", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff; }

.c-community__feed {
  -webkit-column-count: 1;
          column-count: 1;
  margin-left: -7px;
  margin-right: -7px; }
  @media (min-width: 768px) {
    .c-community__feed {
      -webkit-column-count: 2;
              column-count: 2; } }
  @media (min-width: 1024px) {
    .c-community__feed {
      -webkit-column-count: 3;
              column-count: 3; } }

.c-community__box {
  padding: 0 13px; }
  @media (min-width: 768px) {
    .c-community__box {
      padding: 0 23px; } }

.c-community__feed-item {
  display: inline-block;
  width: 100%;
  padding-bottom: 20px;
  padding-left: 7px;
  padding-right: 7px;
  position: relative; }

.c-community__thumbnail-wrap {
  background: #000;
  position: relative;
  z-index: 0; }

.c-community__link {
  display: block;
  width: 19%;
  height: 19%;
  background-image: linear-gradient(to left bottom, #2a2a2a 50%, #2a2a2a 0%, transparent 0%);
  text-align: right;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10; }
  .c-community__link svg {
    width: 35%;
    height: 35%;
    margin-top: 13%;
    margin-right: 13%;
    fill: #fff; }

.c-community__link--yt {
  height: 34%;
  background-image: linear-gradient(to left bottom, #ec2227 50%, #ec2227 0%, transparent 0%); }

.c-community__description {
  font-size: 1.375vw;
  background-color: white;
  font-family: Arial;
  line-height: 1.3;
  padding: 10px;
  word-wrap: break-word; }
  @media (max-width: 945.45455px) {
    .c-community__description {
      font-size: 13px; } }
  @media (min-width: 1236.36364px) {
    .c-community__description {
      font-size: 17px; } }

/* ------------------------------------ *    #CONTACT US PAGE
\* ------------------------------------ */
.c-contact {
  padding: 65px 32px 25px; }

.c-contact__wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around; }
  @media (min-width: 768px) {
    .c-contact__wrapper {
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row; } }

@media (min-width: 768px) {
  .c-contact-intro,
  .c-contact-info {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%; } }

.c-contact-intro {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media (min-width: 768px) {
    .c-contact-intro {
      display: block; } }

.c-contact-intro__title {
  -webkit-order: -1;
      -ms-flex-order: -1;
          order: -1; }

.c-contact-intro__img {
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1; }

.c-contact-info__details {
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2; }

.c-contact-info {
  max-width: 500px; }

.c-contact-intro__title {
  font-size: 2.14286rem; }
  @media (min-width: 768px) {
    .c-contact-intro__title {
      font-size: 2.85714rem; } }

.c-contact-intro__subtitle {
  font-size: 1.42857rem; }
  @media (min-width: 768px) {
    .c-contact-intro__subtitle {
      font-size: 2rem; } }

.c-contact-info__details {
  font-size: 1.07143rem; }

.c-contact__btn {
  color: #000;
  text-decoration: none;
  position: relative; }
  .c-contact__btn::after {
    position: absolute;
    content: '';
    left: 100%;
    width: 0;
    top: 0;
    height: 0;
    border-style: solid;
    border-width: 16px 0 16px 20px;
    border-color: transparent transparent transparent white; }
  .c-contact__btn::before {
    position: absolute;
    content: '';
    right: 100%;
    width: 0;
    top: 0;
    height: 0;
    border-style: solid;
    border-width: 16px 20px 16px 0;
    border-color: transparent white transparent transparent; }

/* ------------------------------------ *    #FILTER
\* ------------------------------------ */
.c-filter {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 1.21429rem;
  line-height: 1.17647em;
  margin-bottom: 0.47059em;
  color: #000; }
  .c-filter::before {
    content: '';
    display: block;
    margin-right: 10px;
    width: 17px;
    height: 17px;
    line-height: 17px;
    font-size: 12px;
    text-align: center;
    border: 2px solid #4a4a4a;
    border-radius: 3px; }
  .c-filter.is-active::before {
    content: '✓'; }

/* ------------------------------------ *    #FEATURE VIEWER
\* ------------------------------------ */
.c-feature-viewer {
  margin-bottom: 20px;
  border-bottom: 2px solid #000; }

.c-feature-viewer__options {
  margin-bottom: 0; }

.c-feature-viewer__title {
  font-family: "Racing Sans One", sans-serif;
  font-weight: normal;
  text-align: center; }

/* ------------------------------------ *    #FEATURE LIST
\* ------------------------------------ */
.c-feature-list {
  font-size: 0.92857rem;
  line-height: 1.23529em; }
  @media (min-width: 768px) {
    .c-feature-list {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      -webkit-align-items: stretch;
          -ms-flex-align: stretch;
              align-items: stretch;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; } }
  @media (min-width: 1280px) {
    .c-feature-list {
      font-size: 1.21429rem; } }

.c-feature-list__item {
  padding: 0.76923em 0;
  border-bottom: 2px solid #000; }
  @media (min-width: 768px) {
    .c-feature-list__item {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex: 0 0 auto;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      padding: 0.56em 0.68em;
      width: calc(50% - 25px); } }

.c-feature-list__title {
  display: block;
  font-weight: bold;
  color: #000; }
  @media (min-width: 768px) {
    .c-feature-list__title {
      display: inline-block;
      min-width: 200px; } }

.c-feature-list__description {
  display: block;
  color: #fff; }
  @media (min-width: 768px) {
    .c-feature-list__description {
      display: inline-block; } }
  @media (min-width: 1024px) {
    .c-feature-list__description {
      padding-left: 20px; } }

/* ------------------------------------ *    #VIDEO CONTENT
\* ------------------------------------ */
.c-video-content {
  background: #666;
  position: relative;
  overflow: hidden; }

.c-video-content__overlay {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0; }

.c-video-content__icon {
  margin: -30px;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%; }
  @media (min-width: 768px) {
    .c-video-content__icon {
      margin: -51px;
      width: 102px;
      height: 102px; } }

.c-video-content__icon-back {
  opacity: 0.8;
  transition: 0.15s; }
  .c-video-content:hover .c-video-content__icon-back {
    opacity: 1; }

/* ------------------------------------ *    #VIDEO PLAYLIST DROPDOWN
\* ------------------------------------ */
.c-playlistdropdown__item:hover {
  text-decoration: underline; }

.c-playlistdropdown__header {
  background-color: transparent;
  border: none; }

.c-playlistdropdown__list {
  position: absolute;
  background: white;
  z-index: 100;
  padding: 10px;
  text-align: left;
  right: 0;
  margin-right: 20px; }

/* ------------------------------------ *    #FEATURE ICONS
\* ------------------------------------ */
.c-feature-icons {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  max-width: 320px;
  margin: 0 auto; }
  @media (min-width: 768px) {
    .c-feature-icons {
      max-width: 550px; } }

.c-feature-icons__item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-bottom: 15px;
  width: 20%; }
  @media (min-width: 768px) {
    .c-feature-icons__item {
      margin-bottom: 28px; } }

.c-feature-icons__button {
  padding: 5px;
  border: 0;
  background: #000;
  width: 44px;
  height: 44px;
  border-radius: 50%; }
  @media (min-width: 768px) {
    .c-feature-icons__button {
      width: 84px;
      height: 84px; } }

/* ------------------------------------ *    #FEATURES
\* ------------------------------------ */
.c-features {
  background: #c0bfc0;
  padding: 18px 0;
  position: relative;
  overflow: hidden; }
  @media (min-width: 768px) {
    .c-features {
      padding: 60px 0 50px; } }

@media (min-width: 768px) {
  .c-features__header {
    position: absolute;
    top: 18px;
    top: 60px; } }

.c-features__title {
  display: inline-block;
  padding: 0 15px;
  margin: 0;
  background: #666;
  color: #fff;
  line-height: 30px;
  font-family: "Racing Sans One", sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  position: relative;
  z-index: 10; }
  @media (min-width: 768px) {
    .c-features__title {
      min-width: 400px;
      padding: 0 35px;
      line-height: 56px; } }
  .c-features__title::after {
    content: '';
    display: block;
    border: 15px solid transparent;
    border-left-color: #666;
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 100%; }
    @media (min-width: 768px) {
      .c-features__title::after {
        border-width: 28px; } }

.c-features__header-frame {
  display: none;
  position: absolute;
  z-index: 1; }
  @media (min-width: 768px) {
    .c-features__header-frame {
      display: block; } }

.c-features__header-frame--bottom {
  width: 1409px;
  height: 71px;
  bottom: -10px;
  left: -129px;
  z-index: 2;
  -webkit-transform: scale(-1, 1);
      -ms-transform: scale(-1, 1);
          transform: scale(-1, 1); }

.c-features__header-frame--messy {
  width: 667px;
  height: 115px;
  left: 235px;
  bottom: -22px; }

.c-features__product-image {
  margin-bottom: 0;
  position: relative;
  z-index: 5; }
  @media (min-width: 768px) {
    .c-features__product-image {
      margin-bottom: -20px; } }

.c-features__content {
  padding: 0 15px;
  position: relative;
  z-index: 5; }
  @media (min-width: 1024px) {
    .c-features__content {
      padding: 0 15.625%; } }

/* ------------------------------------ *    #VIDEO PLAYLIST
\* ------------------------------------ */
.c-playlist__feed {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -7px;
  margin-right: -7px; }

.c-playlist__box {
  padding: 0 13px 11px; }
  @media (min-width: 768px) {
    .c-playlist__box {
      padding: 0 58px 23px; } }

.c-playlist__feed-item {
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding-left: 7px;
  padding-right: 7px;
  width: 100%;
  position: relative; }
  @media (min-width: 768px) {
    .c-playlist__feed-item {
      width: 50%; } }
  @media (min-width: 1024px) {
    .c-playlist__feed-item {
      width: 25%; } }

.c-playlist__title {
  font-family: "Teko", sans-serif;
  font-size: 1.1vw; }
  @media (max-width: 1545.45455px) {
    .c-playlist__title {
      font-size: 17px; } }
  @media (min-width: 2000px) {
    .c-playlist__title {
      font-size: 22px; } }

.c-playlist__img {
  border: 2px solid #ec2227;
  border-radius: 5px; }

.c-playlist-header {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media (min-width: 768px) {
    .c-playlist-header {
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row; } }

.c-playlist-header__link {
  font-size: 1.1vw; }
  @media (max-width: 1363.63636px) {
    .c-playlist-header__link {
      font-size: 15px; } }
  @media (min-width: 1545.45455px) {
    .c-playlist-header__link {
      font-size: 17px; } }

.c-playlist__icon {
  position: absolute;
  width: 83px;
  height: 83px;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 40%;
  display: block;
  z-index: 10;
  cursor: pointer; }
  @media (min-width: 768px) {
    .c-playlist__icon {
      top: 35%; } }
  @media (min-width: 1024px) {
    .c-playlist__icon {
      width: 53px;
      height: 53px;
      top: 31%; } }

.c-playlist-hero__icon {
  position: absolute;
  display: block;
  width: 83px;
  height: 83px;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 30%;
  z-index: 10;
  cursor: pointer; }
  @media (min-width: 1024px) {
    .c-playlist-hero__icon {
      width: 83px;
      height: 83px;
      top: 40%; } }

/* ------------------------------------ *    #HEADER
\* ------------------------------------ */
.c-header {
  background: #000;
  position: relative; }

.c-header__content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  height: 65px; }

.c-header__block {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%; }

.c-header__block--grow {
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; }

.c-header__block--end {
  margin-right: 0;
  margin-left: auto; }

.c-header__logo {
  max-width: 343px;
  width: 100%;
  vertical-align: middle; }

/* ------------------------------------ *    #DOWNLOAD APP
\* ------------------------------------ */
.c-retailer {
  background: url("../img/retailers-bg.jpg") left top no-repeat;
  background-size: cover;
  border: 2px solid #24b9e4;
  padding: 28px;
  max-width: 1028px;
  margin: auto 20px;
  color: #fff;
  font-size: 1.71429rem;
  font-family: "Oswald", sans-serif;
  position: relative;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%); }
  @media (min-width: 768px) {
    .c-retailer {
      margin: auto; } }

.c-retailer__close {
  margin: 20px;
  padding: 0;
  width: 20px;
  height: 20px;
  background: none;
  border: 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1; }
  @media (min-width: 768px) {
    .c-retailer__close {
      margin: 30px;
      width: 30px;
      height: 30px; } }
  .c-retailer__close::before, .c-retailer__close::after {
    content: '';
    display: block;
    margin: -2px -15px;
    width: 30px;
    height: 4px;
    background: #24b9e4;
    position: absolute;
    top: 50%;
    left: 50%; }
    @media (min-width: 768px) {
      .c-retailer__close::before, .c-retailer__close::after {
        margin: -2px -20px;
        width: 40px; } }
  .c-retailer__close::before {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg); }
  .c-retailer__close::after {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg); }

.c-retailer__title {
  margin-bottom: 10px;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  font-family: "Oswald", sans-serif;
  font-size: 1.71429rem;
  text-indent: -0.05333em;
  line-height: 1.2; }
  @media (min-width: 768px) {
    .c-retailer__title {
      font-size: 3.125em; } }

.c-retailer__list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 -2%; }
  @media (min-width: 768px) {
    .c-retailer__list {
      margin: 0 -10px; } }

.c-retailer__location {
  overflow: hidden;
  padding: 10px;
  width: 46%;
  margin: 0 2% 10px;
  background: #fff;
  border-radius: 10px;
  transition: -webkit-transform 150ms ease-in-out;
  transition: transform 150ms ease-in-out;
  transition: transform 150ms ease-in-out, -webkit-transform 150ms ease-in-out; }
  @media (min-width: 768px) {
    .c-retailer__location {
      margin: 0 10px 10px;
      width: 224px; } }
  .c-retailer__location:hover {
    -webkit-transform: translateY(-4px);
        -ms-transform: translateY(-4px);
            transform: translateY(-4px); }
  .c-retailer__location:last-child {
    margin-right: auto; }

.c-retailer__btn {
  color: #ec2227;
  border: none;
  padding: 0; }

/* ------------------------------------ *    # END OF ELEMENT TRIANGLE
\* ------------------------------------ */
.c-triangle-left,
.c-triangle-right {
  position: absolute;
  height: 100%;
  bottom: 0;
  top: 0;
  width: 20px;
  z-index: 100; }

.c-triangle-left {
  right: 100%; }

.c-triangle-right {
  left: 100%; }

/* ------------------------------------ *    # LOCALE SELECTOR
\* ------------------------------------ */
.c-locale {
  position: absolute;
  top: 100%;
  right: 30px;
  z-index: 10; }

.c-locale__list-button {
  padding: 10px;
  border: 0;
  text-align: left;
  width: 100%; }

.c-locale__item,
.c-locale__list-button {
  background-color: #fff;
  border-radius: 0; }

.c-locale__title {
  padding-left: 4px;
  display: none; }
  @media (min-width: 768px) {
    .c-locale__title {
      display: inline-block; } }

.c-locale__arrow {
  display: inline-block; }

.c-locale__arrow-svg {
  fill: #ec2227;
  vertical-align: middle;
  padding-left: 2px; }

.c-locale__region-button {
  padding: 10px;
  border: 0;
  background: none;
  display: block;
  color: #000; }

/* ------------------------------------ *    #PRODUCTS SUBMENU
\* ------------------------------------ */
.c-submenu {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background: white;
  position: absolute;
  z-index: 100; }

.c-submenu__list {
  padding: 20px 0 20px 40px; }

.c-submenu__sub-list {
  width: 300px;
  padding: 20px 30px 20px 40px; }

.c-submenu__sub-link {
  font-family: Arial;
  text-transform: capitalize;
  color: #000;
  font-size: 1.07143rem;
  line-height: 1.7; }
  .c-submenu__sub-link:hover {
    color: #a9a9a9; }

.c-submenu__button {
  padding: 0;
  border: 0;
  background: none;
  color: #4a4a4a; }
  .c-submenu__item.is-active .c-submenu__button {
    color: #ec2227;
    text-decoration: underline; }

.c-submenu__button--red {
  color: #ec2227;
  font-size: 0.92857rem; }

/* ------------------------------------ *    #MOBILE SUBMENU
\* ------------------------------------ */
.c-mobile-submenu {
  display: block; }

.c-mobile-submenu__sub-link {
  padding: 4px 0;
  font-family: Arial, sans-serif;
  font-size: 1.14286rem; }

.c-mobile-submenu__link {
  display: block;
  padding: 0;
  border: 0;
  background: none;
  color: #4d4d4d;
  font-size: 1.42857rem; }

.c-mobile-submenu__item,
.c-mobile-submenu__sub-list {
  padding: 5px 0 5px 40px; }

.c-mobile-submenu__sub-list {
  display: none; }
  .c-mobile-submenu__item.is-active .c-mobile-submenu__sub-list {
    display: block; }

.c-mobile-submenu__sub-link {
  color: #000; }

/* ------------------------------------ *    #HAMBURGER ICON - MOBILE MENU
\* ------------------------------------ */
/**
* Toggle Switch Globals
*
* All switches should take on the class `c-hamburger` as well as their
* variant that will give them unique properties. This class is an overview
* class that acts as a reset for all versions of the icon.
*/
.c-hamburger {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 65px;
  height: 65px;
  font-size: 0;
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  margin-left: auto; }

.c-hamburger:focus {
  outline: none; }

.c-hamburger span {
  display: block;
  position: absolute;
  top: 30px;
  left: 16px;
  right: 16px;
  height: 5px;
  background: white; }

.c-hamburger span::before,
.c-hamburger span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #fff;
  content: ""; }

.c-hamburger span::before {
  top: -12px; }

.c-hamburger span::after {
  bottom: -12px; }

/**
* Style 2
*
* Hamburger to "x" (htx). Takes on a hamburger shape, bars slide
* down to center and transform into an "x".
*/
.c-hamburger--htx {
  background-color: transparent; }

.c-hamburger--htx span {
  transition: background 0s 0.3s; }

.c-hamburger--htx span::before,
.c-hamburger--htx span::after {
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s; }

.c-hamburger--htx span::before {
  transition-property: top, -webkit-transform;
  transition-property: top, transform;
  transition-property: top, transform, -webkit-transform; }

.c-hamburger--htx span::after {
  transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform; }

/* active state, i.e. menu open */
.c-hamburger--htx.is-active {
  background-color: #fff; }

.c-hamburger--htx.is-active span {
  background: none; }

.c-hamburger--htx.is-active span::before {
  top: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg); }

.c-hamburger--htx.is-active span::after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg); }

.c-hamburger--htx.is-active span::before,
.c-hamburger--htx.is-active span::after {
  transition-delay: 0s, 0.3s;
  background-color: #000; }

/* ------------------------------------ *    #FOOTER LINKS
\* ------------------------------------ */
.c-footer-links {
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #302c39;
  font-size: 1.07143rem;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media (min-width: 1024px) {
    .c-footer-links {
      margin: 0 auto;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row; } }

.c-footer-link__link {
  color: inherit; }

.c-footer-links__item--divider {
  display: none; }
  @media (min-width: 1024px) {
    .c-footer-links__item--divider {
      display: inline-block;
      margin: 0 24px; } }

/* ------------------------------------ *    #FOOTER
\* ------------------------------------ */
.c-footer {
  background: #808285;
  padding: 20px 0;
  color: #fff;
  text-align: center; }

/* ------------------------------------ *    #VISIBILITY UTILITIES
\* ------------------------------------ */
.u-hidden {
  display: none; }

@media (min-width: 480px) {
  .u-hidden\@xs {
    display: none; } }

@media (max-width: 479px) {
  .u-hidden\@less-than-xs {
    display: none; } }

@media (min-width: 768px) {
  .u-hidden\@sm {
    display: none; } }

@media (max-width: 767px) {
  .u-hidden\@less-than-sm {
    display: none; } }

@media (min-width: 1024px) {
  .u-hidden\@md {
    display: none; } }

@media (max-width: 1023px) {
  .u-hidden\@less-than-md {
    display: none; } }

@media (min-width: 1280px) {
  .u-hidden\@lg {
    display: none; } }

@media (max-width: 1279px) {
  .u-hidden\@less-than-lg {
    display: none; } }

.u-sr-only {
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
  position: absolute; }

/* ------------------------------------ *    #COLOR UTILITIES
\* ------------------------------------ */
.u-color-link {
  color: #ec2227; }

.u-color-grey {
  color: #c0bfc0; }

.u-color-red {
  color: #ec2227; }

.u-color-white {
  color: #fff; }

/* ------------------------------------ *    #FONT UTILITIES
\* ------------------------------------ */
.u-font-arial {
  font-family: "arialblack", sans-serif; }

.u-font-arial-light {
  font-family: Arial, sans-serif; }

.u-font-teko {
  font-family: "Teko", sans-serif;
  font-weight: 500;
  text-transform: uppercase; }

.u-font-holtwood {
  font-family: "Holtwood One SC", serif; }

.u-font-racing {
  font-family: "Racing Sans One", sans-serif; }

/* ------------------------------------ *    #TEXT UTILITIES
\* ------------------------------------ */
.u-text-center {
  text-align: center; }

.u-text-uppercase {
  text-transform: uppercase; }

.u-text-right {
  text-align: right; }

.u-text-base-font {
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  font-weight: 500; }

.u-text-white {
  color: #fff; }

.u-text-red {
  color: #ec2227; }

.u-text-link {
  color: #2a2a2a;
  text-decoration: underline; }

.u-text-700 {
  font-weight: 700; }

.u-text-lowercase {
  text-transform: lowercase; }

.u-text-none {
  text-transform: none; }

/* ------------------------------------ *    #IMAGE UTILITIES
\* ------------------------------------ */
.u-img-respond {
  max-width: 100%;
  height: auto; }

.u-img-full {
  width: 100%;
  height: auto; }

.u-img-quarter {
  width: 25%;
  height: auto; }

/* ------------------------------------ *    #WHITE BORDER
\* ------------------------------------ */
.u-border-top {
  border-top: 4px solid #fff; }
  @media (min-width: 768px) {
    .u-border-top {
      border-top: 8px solid #fff; } }

.u-border-bottom {
  border-bottom: 4px solid #fff; }
  @media (min-width: 768px) {
    .u-border-bottom {
      border-bottom: 8px solid #fff; } }

.u-border-media {
  border: 2px solid #ec2227;
  border-radius: 5px; }

.u-border-media-hero {
  border: 2px solid #000;
  border-radius: 5px; }

.u-border-black {
  border-bottom: 2px solid #000; }

/* ------------------------------------ *    #SPACING UTILITIES
\* ------------------------------------ */
.u-spacing-flush {
  margin-bottom: 0; }

.u-spacing-close {
  margin-bottom: 10px; }

.u-spacing-normal {
  margin-bottom: 20px; }

.u-spacing-far {
  margin-bottom: 40px; }

.u-spacing-farther {
  margin-bottom: 60px; }

@media (min-width: 768px) {
  .u-spacing-flush\@sm {
    margin-bottom: 0; }
  .u-spacing-close\@sm {
    margin-bottom: 10px; }
  .u-spacing-normal\@sm {
    margin-bottom: 20px; }
  .u-spacing-far\@sm {
    margin-bottom: 40px; }
  .u-spacing-farther\@sm {
    margin-bottom: 60px; } }

@media (min-width: 1024px) {
  .u-spacing-flush\@md {
    margin-bottom: 0; }
  .u-spacing-close\@md {
    margin-bottom: 10px; }
  .u-spacing-normal\@md {
    margin-bottom: 20px; }
  .u-spacing-far\@md {
    margin-bottom: 40px; }
  .u-spacing-farther\@md {
    margin-bottom: 60px; } }

@media (min-width: 1280px) {
  .u-spacing-flush\@lg {
    margin-bottom: 0; }
  .u-spacing-close\@lg {
    margin-bottom: 10px; }
  .u-spacing-normal\@lg {
    margin-bottom: 20px; }
  .u-spacing-far\@lg {
    margin-bottom: 40px; }
  .u-spacing-farther\@lg {
    margin-bottom: 60px; } }

/* ------------------------------------ *    #IMAGE UTILITIES
\* ------------------------------------ */
.u-link-ninja {
  display: block;
  width: 100%; }
  .u-link-ninja:hover {
    text-decoration: none; }

/* ------------------------------------ *    #PADDING UTILITIES
\* ------------------------------------ */
.u-pad-normal {
  padding: 20px; }

.u-pad-far {
  padding: 40px; }

.u-pad-bot {
  padding-bottom: 15px; }
  @media (min-width: 768px) {
    .u-pad-bot {
      padding-bottom: 22px; } }

.u-pad-top-50 {
  padding-top: 50px; }

/* stylelint-disable */
/* ------------------------------------ *    #FLICKITY.JS STYLE OVERRIDES
\* ------------------------------------ */
.flickity-page-dots {
  bottom: 30px;
  display: none; }
  @media (min-width: 768px) {
    .flickity-page-dots {
      display: inline-block; } }

.flickity-page-dots .dot {
  width: 16px;
  height: 16px;
  opacity: 0.5;
  margin: 0 5px;
  background: #fff; }

.flickity-page-dots .dot.is-selected {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5); }

.flickity-prev-next-button {
  background: none;
  width: 35px;
  height: 70px; }
  @media (min-width: 768px) {
    .flickity-prev-next-button {
      width: 50px; } }

.flickity-prev-next-button .arrow {
  fill: rgba(255, 255, 255, 0.7); }

.flickity-prev-next-button svg {
  left: 0%;
  top: 7%;
  height: 100%;
  width: 100%; }

.flickity-prev-next-button:hover {
  background: none; }

/* ------------------------------------ *    #PRICE SPIDER OVERRIDES
\* ------------------------------------ */
.ps_CloseStyle.ps_TopStyle {
  display: block !important; }

/*# sourceMappingURL=global.css.map */
