@charset "UTF-8";
/*** General Styles **/
/*!
 * inuitcss, by @csswizardry
 *
 * github.com/inuitcss | inuitcss.com
 */
/*** Colors ***/
@font-face {
  font-family: "Frutiger75Black";
  src: url("../imgs/fonts/frutiger-75black.eot");
  src: url("../imgs/fonts/frutiger-75black.eot?#iefix") format("embedded-opentype"), url("../imgs/fonts/frutiger-75black.woff") format("woff"), url("../imgs/fonts/frutiger-75black.ttf") format("truetype"), url("../imgs/fonts/frutiger-75black.svg#Frutiger75Black") format("svg");
  font-weight: bolder;
  font-style: bolder; }

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@-webkit-keyframes shake {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  25% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px); }
  50% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px); }
  75% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px); }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0); } }

@keyframes shake {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  25% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px); }
  50% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px); }
  75% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px); }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0); } }

/*------------------------------------*    #PAGE
\*------------------------------------*/
/**
 * High-, page-level styling.
 *
 * 1. Set the default `font-size` and `line-height` for the entire project,
 *    sourced from our default variables. The `font-size` is calculated to exist
 *    in ems, the `line-height` is calculated to exist unitlessly.
 * 2. Force scrollbars to always be visible to prevent awkward ‘jumps’ when
 *    navigating between pages that do/do not have enough content to produce
 *    scrollbars naturally.
 * 3. Ensure the page always fills at least the entire height of the viewport.
 * 4. Prevent certain mobile browsers from automatically zooming fonts.
 * 5. Fonts on OSX will look more consistent with other systems that do not
 *    render text using sub-pixel anti-aliasing.
 */
html {
  font-size: 1em;
  /* [1] */
  line-height: 1.5;
  /* [1] */
  background-color: #fff;
  color: #333;
  overflow-y: scroll;
  /* [2] */
  min-height: 100%;
  /* [3] */
  -webkit-text-size-adjust: 100%;
  /* [4] */
  -ms-text-size-adjust: 100%;
  /* [4] */
  -moz-osx-font-smoothing: grayscale;
  /* [5] */
  -webkit-font-smoothing: antialiased;
  /* [5] */ }

html, body {
  height: 100%;
  color: #fff; }

a:hover {
  text-decoration: underline; }

.hf-noscroll {
  overflow: hidden;
  position: fixed; }

/*------------------------------------*    #LAYOUT
\*------------------------------------*/
/**
 * The inuitcss layout system uses `box-sizing: border-box;` and
 * `display: inline-block;` to create an extremely powerful, flexible
 * alternative to the traditional grid system. Combine the layout items with
 * the widths found in `trumps.widths`.
 */
/**
 * Begin a layout group.
 */
.hf-layout {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -24px; }

/**
     * 1. Cause columns to stack side-by-side.
     * 2. Space columns apart.
     * 3. Align columns to the tops of each other.
     * 4. Full-width unless told to behave otherwise.
     * 5. Required to combine fluid widths and fixed gutters.
     */
.hf-layout__item {
  display: inline-block;
  /* [1] */
  padding-left: 24px;
  /* [2] */
  vertical-align: top;
  /* [3] */
  width: 100%;
  /* [4] */
  /* [5] */
  /* [5] */
  box-sizing: border-box;
  /* [5] */ }

.hf-page {
  overflow: hidden;
  position: relative; }

.hf-page__wrapper {
  overflow: hidden;
  position: relative;
  background: url(/assets/imgs/shared/bg.jpg) no-repeat center center;
  background-size: cover; }

.hf-page__background {
  width: 100%;
  position: absolute;
  z-index: 0; }
  .hf-page__background.bring-to-front {
    z-index: 101; }

.hf-page__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 30px; }
  @media screen and (min-width: 575px) and (max-width: 814px) {
    .hf-page__container {
      padding: 0 30px 90px 30px; } }
  @media screen and (max-width: 574px) {
    .hf-page__container {
      padding: 45px 30px 90px 30px; } }
  .hf-page__container--landing {
    text-align: center; }
    .hf-page__container--landing .hf-layout {
      position: relative; }
    .hf-page__container--landing .hf-nav--top {
      position: absolute;
      left: 24px; }
      @media screen and (max-width: 814px) {
        .hf-page__container--landing .hf-nav--top {
          left: 0px;
          top: -60px;
          text-align: center; } }
    @media screen and (min-width: 575px) and (max-width: 814px) {
      .hf-page__container--landing {
        padding: 60px 20px; } }
    @media screen and (max-width: 574px) {
      .hf-page__container--landing {
        padding: 60px 20px; } }

.hf-button {
  font-family: Frutiger45Light, sans-serif;
  background-color: #fff;
  padding: 0.6em 1em;
  display: block;
  clear: both;
  position: relative;
  cursor: pointer; }

.hf-button--turquoise {
  color: #fff;
  background-color: #3b98ac;
  color: white;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  background: linear-gradient(#4698ac 50%, #3a7e8e); }

.hf-button--grey {
  color: #022b5a;
  background-color: #d8d8d8;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  background: linear-gradient(#e2e2e2, #cfcfcf); }

.hf-button--green {
  color: #D6EFF7;
  font-weight: bold;
  background-color: rgba(61, 117, 116, 0.5);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  border: 1px solid #003c1d;
  border-radius: 3px; }

.hf-button--blue {
  color: #fff;
  background-color: #507CBE; }

.hf-button--large {
  font-weight: bold;
  padding: 0.8em 2em;
  border: 5px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  background-clip: padding-box;
  margin-bottom: 7px; }

.hf-button--modal {
  font-weight: bold;
  padding: 0.5em 1.3em;
  border: none;
  border-radius: 5px;
  background-clip: padding-box;
  margin-bottom: 7px;
  font-size: 30px;
  color: #878787;
  background-image: linear-gradient(#fcfffe, #dadada);
  background-image: url("../imgs/shared/shop_sale_btn_bg.png"), linear-gradient(#fcfffe, #dadada);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  width: 227px;
  height: 36px; }
  @media screen and (max-width: 814px) {
    .hf-button--modal {
      width: 181px;
      height: 29px;
      font-size: 24px;
      padding: 0.4em 0.8em;
      background-size: 80%, 100%; } }

.hf-button--grouped {
  display: inline-block; }
  .hf-button--grouped:not(:first-child) {
    margin-left: -5px; }
  @media screen and (max-width: 814px) {
    .hf-button--grouped {
      font-size: 13px; } }

.hf-button--icon {
  padding-left: 2.3em; }
  @media screen and (min-width: 815px) and (max-width: 1040px) {
    .hf-button--icon span {
      display: none; } }
  @media screen and (max-width: 814px) {
    .hf-button--icon span {
      display: none; } }

.hf-button--shake {
  -webkit-animation-name: shake;
          animation-name: shake;
  -webkit-animation-duration: 300ms;
          animation-duration: 300ms;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear; }

.hf-button--cta {
  font-size: 35px;
  padding: 10px 0;
  border-radius: 5px;
  position: relative;
  z-index: 100;
  font-weight: 600; }

.hf-button--crash {
  color: #878787;
  background-image: linear-gradient(#fcfffe, #dadada);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  width: 100%;
  max-width: 240px;
  padding: 17px 45px;
  margin: 0 auto; }
  .hf-button--crash:hover {
    background-image: linear-gradient(#D6D6D6, #B7B7B7); }
  .hf-button--crash span {
    display: block;
    margin-top: -7px; }
  @media screen and (min-width: 575px) and (max-width: 814px) {
    .hf-button--crash {
      width: 200px;
      line-height: 36px;
      padding: 12px 10px;
      font-size: 24px;
      vertical-align: middle; }
      .hf-button--crash span {
        display: inline-block;
        margin: 0; } }
  @media screen and (max-width: 574px) {
    .hf-button--crash {
      padding: 0.4em 0.8em; } }
  @media screen and (max-height: 480px) {
    .hf-button--crash {
      padding: 0.4em 0.4em; } }
  .hf-button--crash.hf-button--cta--disabled {
    line-height: 36px;
    vertical-align: middle; }
    .hf-button--crash.hf-button--cta--disabled span {
      display: inline-block;
      margin: 0; }
    @media screen and (min-width: 575px) and (max-width: 814px) {
      .hf-button--crash.hf-button--cta--disabled {
        width: 200px;
        padding: 12px 10px;
        font-size: 24px; } }
    .hf-button--crash.hf-button--cta--disabled.hasCopy {
      width: 100%;
      max-width: 270px;
      padding: 17px 25px;
      background-image: linear-gradient(#fcfffe, #dadada);
      font-size: 18px; }
      @media screen and (min-width: 575px) and (max-width: 814px) {
        .hf-button--crash.hf-button--cta--disabled.hasCopy {
          width: 105%;
          max-width: 270px;
          font-size: 18px;
          padding: 15px; } }
      @media screen and (min-width: 575px) and (max-width: 682px) {
        .hf-button--crash.hf-button--cta--disabled.hasCopy {
          width: 120%;
          margin-left: -20%; } }
      @media screen and (max-width: 574px) {
        .hf-button--crash.hf-button--cta--disabled.hasCopy {
          max-width: 270px;
          padding: 12px 10px;
          width: 90%;
          font-size: 18px; } }

.hf-button--cta--disabled {
  color: #B0B0AF;
  opacity: 0.5; }

.hf-button--bluegrad {
  color: #ffffff;
  border-radius: 5px;
  text-align: center;
  padding: 17px 110px;
  transition: background 0.5s;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#419eda+0,2f7cb4+100 */
  background: #419eda;
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzQxOWVkYSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMyZjdjYjQiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  /* FF3.6-15 */
  /* Chrome4-9,Safari4-5 */
  /* Chrome10-25,Safari5.1-6 */
  /* Opera 11.10-11.50 */
  /* IE10 preview */
  background: linear-gradient(to bottom, #449eda 0%, #307eb5 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#419eda', endColorstr='#2f7cb4',GradientType=0 );
  /* IE6-8 */ }
  .hf-button--bluegrad:hover {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#2870a7+0,1d5c90+100 */
    background: #2870a7;
    /* Old browsers */
    /* IE9 SVG, needs conditional override of 'filter' to 'none' */
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzI4NzBhNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMxZDVjOTAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    /* FF3.6-15 */
    /* Chrome4-9,Safari4-5 */
    /* Chrome10-25,Safari5.1-6 */
    /* Opera 11.10-11.50 */
    /* IE10 preview */
    background: linear-gradient(to bottom, #2971a8 0%, #1d5d91 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2870a7', endColorstr='#1d5c90',GradientType=0 );
    /* IE6-8 */ }
  @media screen and (min-width: 575px) and (max-width: 814px) {
    .hf-button--bluegrad {
      padding: 0.6em 1em; } }
  @media screen and (max-width: 574px) {
    .hf-button--bluegrad {
      padding: 17px; } }

.hf-button--bluegrad--disabled {
  background: #cccccc !important; }

.hf-jumbotron {
  position: relative;
  background-image: url("../imgs/landing/devices_darkened.png");
  background-repeat: no-repeat;
  background-size: 80%;
  margin-top: -29px;
  background-position: top;
  padding-top: 160px;
  text-align: center; }
  .hf-isFriday .hf-jumbotron {
    background-image: url("../imgs/landing/devices_darkened.png"); }
  @media screen and (max-width: 814px) {
    .hf-jumbotron {
      background-image: none; } }

.hf-jumbotron__product {
  height: 100%;
  max-height: 200px;
  width: auto;
  display: block;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  top: 20px; }
  @media screen and (max-width: 814px) {
    .hf-jumbotron__product {
      top: 0px; } }

.hf-jumbotron__container {
  background-image: url("../imgs/landing/panel-glitch.png");
  background-repeat: no-repeat;
  padding: 15px;
  background-position: -50px top;
  width: 195%;
  margin-left: -50%;
  text-align: center; }
  @media screen and (max-width: 814px) {
    .hf-jumbotron__container {
      background-position: top center;
      margin-top: -65px; } }
  @media screen and (max-width: 574px) {
    .hf-jumbotron__container {
      width: 100%;
      margin-left: 0;
      padding: 15px 0; } }

.hf-jumbotron__content {
  position: relative;
  width: 65%;
  margin: 0 auto;
  z-index: 105; }
  @media screen and (max-width: 574px) {
    .hf-jumbotron__content {
      width: 100%; } }
  .hf-isAuth .hf-jumbotron__content .hf-js-fblogin {
    display: none; }

.hf-jumbotron__title {
  padding-bottom: 8px;
  font-size: 1.4rem !important; }
  .hf-jumbotron__title.hf-glitch {
    color: inherit;
    position: relative; }

@-webkit-keyframes hf-jumbotron__title-anim-1 {
  0% {
    clip: rect(19px, 653px, 20px, 0); }
  10% {
    clip: rect(14px, 653px, 14px, 0); }
  20% {
    clip: rect(14px, 653px, 22px, 0); }
  30% {
    clip: rect(26px, 653px, 17px, 0); }
  40% {
    clip: rect(29px, 653px, 29px, 0); }
  50% {
    clip: rect(24px, 653px, 18px, 0); }
  60% {
    clip: rect(26px, 653px, 8px, 0); }
  70% {
    clip: rect(8px, 653px, 3px, 0); }
  80% {
    clip: rect(4px, 653px, 19px, 0); }
  90% {
    clip: rect(17px, 653px, 2px, 0); }
  100% {
    clip: rect(21px, 653px, 4px, 0); } }

@keyframes hf-jumbotron__title-anim-1 {
  0% {
    clip: rect(19px, 653px, 20px, 0); }
  10% {
    clip: rect(14px, 653px, 14px, 0); }
  20% {
    clip: rect(14px, 653px, 22px, 0); }
  30% {
    clip: rect(26px, 653px, 17px, 0); }
  40% {
    clip: rect(29px, 653px, 29px, 0); }
  50% {
    clip: rect(24px, 653px, 18px, 0); }
  60% {
    clip: rect(26px, 653px, 8px, 0); }
  70% {
    clip: rect(8px, 653px, 3px, 0); }
  80% {
    clip: rect(4px, 653px, 19px, 0); }
  90% {
    clip: rect(17px, 653px, 2px, 0); }
  100% {
    clip: rect(21px, 653px, 4px, 0); } }

@-webkit-keyframes hf-jumbotron__title-anim-2 {
  0% {
    clip: rect(2px, 653px, 1px, 0); }
  10% {
    clip: rect(1px, 653px, 9px, 0); }
  20% {
    clip: rect(19px, 653px, 2px, 0); }
  30% {
    clip: rect(29px, 653px, 21px, 0); }
  40% {
    clip: rect(22px, 653px, 8px, 0); }
  50% {
    clip: rect(11px, 653px, 17px, 0); }
  60% {
    clip: rect(10px, 653px, 12px, 0); }
  70% {
    clip: rect(4px, 653px, 8px, 0); }
  80% {
    clip: rect(25px, 653px, 29px, 0); }
  90% {
    clip: rect(17px, 653px, 9px, 0); }
  100% {
    clip: rect(15px, 653px, 18px, 0); } }

@keyframes hf-jumbotron__title-anim-2 {
  0% {
    clip: rect(2px, 653px, 1px, 0); }
  10% {
    clip: rect(1px, 653px, 9px, 0); }
  20% {
    clip: rect(19px, 653px, 2px, 0); }
  30% {
    clip: rect(29px, 653px, 21px, 0); }
  40% {
    clip: rect(22px, 653px, 8px, 0); }
  50% {
    clip: rect(11px, 653px, 17px, 0); }
  60% {
    clip: rect(10px, 653px, 12px, 0); }
  70% {
    clip: rect(4px, 653px, 8px, 0); }
  80% {
    clip: rect(25px, 653px, 29px, 0); }
  90% {
    clip: rect(17px, 653px, 9px, 0); }
  100% {
    clip: rect(15px, 653px, 18px, 0); } }
    .hf-jumbotron__title.hf-glitch:before, .hf-jumbotron__title.hf-glitch:after {
      content: attr(data-text);
      position: absolute;
      top: 0px;
      left: 0px;
      width: 100%;
      background: transparent;
      clip: rect(0, 0, 0, 0); }
    .hf-jumbotron__title.hf-glitch:after {
      left: 2px;
      text-shadow: -1px 0 #3b98ac !important;
      -webkit-transform: translateZ(0);
              transform: translateZ(0);
      -webkit-animation: hf-jumbotron__title-anim-1 0.125s infinite linear alternate-reverse;
              animation: hf-jumbotron__title-anim-1 0.125s infinite linear alternate-reverse;
      -webkit-animation-delay: 1s;
              animation-delay: 1s; }
    .hf-jumbotron__title.hf-glitch:before {
      left: -2px;
      text-shadow: 2px 0 #3b98ac !important;
      -webkit-transform: translateZ(0);
              transform: translateZ(0);
      -webkit-animation: hf-jumbotron__title-anim-2 0.5s infinite linear alternate-reverse;
              animation: hf-jumbotron__title-anim-2 0.5s infinite linear alternate-reverse;
      -webkit-animation-delay: -1s;
              animation-delay: -1s; }

.hf-jumbotron__subtitle {
  padding-bottom: 10px; }
  .hf-jumbotron__subtitle.hf-glitch {
    color: inherit;
    position: relative; }

@-webkit-keyframes hf-jumbotron__subtitle-anim-1 {
  0% {
    clip: rect(26px, 653px, 26px, 0); }
  10% {
    clip: rect(29px, 653px, 22px, 0); }
  20% {
    clip: rect(5px, 653px, 29px, 0); }
  30% {
    clip: rect(17px, 653px, 3px, 0); }
  40% {
    clip: rect(22px, 653px, 18px, 0); }
  50% {
    clip: rect(15px, 653px, 9px, 0); }
  60% {
    clip: rect(26px, 653px, 13px, 0); }
  70% {
    clip: rect(21px, 653px, 11px, 0); }
  80% {
    clip: rect(4px, 653px, 15px, 0); }
  90% {
    clip: rect(5px, 653px, 17px, 0); }
  100% {
    clip: rect(30px, 653px, 18px, 0); } }

@keyframes hf-jumbotron__subtitle-anim-1 {
  0% {
    clip: rect(26px, 653px, 26px, 0); }
  10% {
    clip: rect(29px, 653px, 22px, 0); }
  20% {
    clip: rect(5px, 653px, 29px, 0); }
  30% {
    clip: rect(17px, 653px, 3px, 0); }
  40% {
    clip: rect(22px, 653px, 18px, 0); }
  50% {
    clip: rect(15px, 653px, 9px, 0); }
  60% {
    clip: rect(26px, 653px, 13px, 0); }
  70% {
    clip: rect(21px, 653px, 11px, 0); }
  80% {
    clip: rect(4px, 653px, 15px, 0); }
  90% {
    clip: rect(5px, 653px, 17px, 0); }
  100% {
    clip: rect(30px, 653px, 18px, 0); } }

@-webkit-keyframes hf-jumbotron__subtitle-anim-2 {
  0% {
    clip: rect(15px, 653px, 4px, 0); }
  10% {
    clip: rect(16px, 653px, 17px, 0); }
  20% {
    clip: rect(23px, 653px, 27px, 0); }
  30% {
    clip: rect(16px, 653px, 15px, 0); }
  40% {
    clip: rect(19px, 653px, 9px, 0); }
  50% {
    clip: rect(2px, 653px, 6px, 0); }
  60% {
    clip: rect(2px, 653px, 26px, 0); }
  70% {
    clip: rect(11px, 653px, 6px, 0); }
  80% {
    clip: rect(7px, 653px, 23px, 0); }
  90% {
    clip: rect(8px, 653px, 15px, 0); }
  100% {
    clip: rect(22px, 653px, 5px, 0); } }

@keyframes hf-jumbotron__subtitle-anim-2 {
  0% {
    clip: rect(15px, 653px, 4px, 0); }
  10% {
    clip: rect(16px, 653px, 17px, 0); }
  20% {
    clip: rect(23px, 653px, 27px, 0); }
  30% {
    clip: rect(16px, 653px, 15px, 0); }
  40% {
    clip: rect(19px, 653px, 9px, 0); }
  50% {
    clip: rect(2px, 653px, 6px, 0); }
  60% {
    clip: rect(2px, 653px, 26px, 0); }
  70% {
    clip: rect(11px, 653px, 6px, 0); }
  80% {
    clip: rect(7px, 653px, 23px, 0); }
  90% {
    clip: rect(8px, 653px, 15px, 0); }
  100% {
    clip: rect(22px, 653px, 5px, 0); } }
    .hf-jumbotron__subtitle.hf-glitch:before, .hf-jumbotron__subtitle.hf-glitch:after {
      content: attr(data-text);
      position: absolute;
      top: 0px;
      left: 0px;
      width: 100%;
      background: transparent;
      clip: rect(0, 0, 0, 0); }
    .hf-jumbotron__subtitle.hf-glitch:after {
      left: 2px;
      text-shadow: -1px 0 #3b98ac !important;
      -webkit-transform: translateZ(0);
              transform: translateZ(0);
      -webkit-animation: hf-jumbotron__subtitle-anim-1 0.125s infinite linear alternate-reverse;
              animation: hf-jumbotron__subtitle-anim-1 0.125s infinite linear alternate-reverse;
      -webkit-animation-delay: 1s;
              animation-delay: 1s; }
    .hf-jumbotron__subtitle.hf-glitch:before {
      left: -2px;
      text-shadow: 2px 0 #3b98ac !important;
      -webkit-transform: translateZ(0);
              transform: translateZ(0);
      -webkit-animation: hf-jumbotron__subtitle-anim-2 0.5s infinite linear alternate-reverse;
              animation: hf-jumbotron__subtitle-anim-2 0.5s infinite linear alternate-reverse;
      -webkit-animation-delay: -1s;
              animation-delay: -1s; }

.hf-countdown__title {
  font-size: 17px;
  font-weight: bold;
  color: #D6EFF7;
  margin-bottom: 8px; }
  @media screen and (max-width: 574px) {
    .hf-countdown__title {
      margin-bottom: 0px; } }

.hf-countdown__timer {
  font-size: 45px;
  line-height: 40px; }
  @media screen and (max-width: 814px) {
    .hf-countdown__timer {
      font-size: 35px; } }
  @media screen and (max-width: 574px) {
    .hf-countdown__timer {
      font-size: 30px;
      line-height: 35px; } }

.hf-countdown__labels {
  margin-top: -10px;
  padding-left: 15px; }
  .hf-countdown__labels span {
    margin-left: 0px;
    font-size: 12px;
    margin-right: 55px; }
    .hf-countdown__labels span:last-of-type {
      margin-right: 0; }
    @media screen and (max-width: 814px) {
      .hf-countdown__labels span {
        margin-right: 3em; } }
    @media screen and (max-width: 574px) {
      .hf-countdown__labels span {
        display: none; } }

.hf-countdown--large {
  margin-top: 1em;
  font-weight: bold;
  letter-spacing: 1px;
  margin: 0 auto;
  line-height: 1.2em; }
  .hf-countdown--large b {
    font-size: 50px; }

.hf-countdown--large__counter {
  font-size: 300px;
  line-height: 340px;
  font-weight: Frutiger65Bold, sans-serif;
  max-width: 300px;
  margin: 0 auto; }
  @media screen and (max-width: 574px) {
    .hf-countdown--large__counter {
      font-size: 240px;
      line-height: 280px; } }
  @media screen and (max-height: 480px) {
    .hf-countdown--large__counter {
      font-size: 200px;
      line-height: 240px; } }

.hf-logo {
  margin-top: 8px;
  margin-bottom: 8px;
  background: url("../imgs/landing/logo-sprite.png") no-repeat 0 0%; }
  @media screen and (max-width: 814px) {
    .hf-logo {
      background-size: 100%; } }

.hf-logo--landing {
  background-size: 100%;
  background-position: 0 0;
  width: 895px;
  height: 148px;
  position: relative;
  -webkit-transform-origin: 0% 50%;
      -ms-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  margin: 20px auto 28px auto; }
  .hf-logo--landing.hf-glitch {
    -webkit-animation: sprite 0.5s steps(8);
            animation: sprite 0.5s steps(8); }
  @media screen and (max-width: 574px) {
    .hf-logo--landing {
      background-size: contain;
      zoom: 1 !important;
      width: 100%;
      height: 80px;
      margin: 10px auto 20px;
      background: url("../imgs/shared/logo-large-1.png") no-repeat center center;
      background-size: contain; } }

@-webkit-keyframes sprite {
  from {
    background-position: 0 0; }
  to {
    background-position: 0 -1184px; } }

@keyframes sprite {
  from {
    background-position: 0 0; }
  to {
    background-position: 0 -1184px; } }

@-webkit-keyframes sprite2 {
  from {
    background-position: 0 0; }
  to {
    background-position: 0 -895px; } }

@keyframes sprite2 {
  from {
    background-position: 0 0; }
  to {
    background-position: 0 -895px; } }

.hf-logo--multiline {
  margin-top: -15px;
  margin-bottom: 30px;
  background: url("../imgs/shared/multiline-logo-sprite.png") no-repeat 0 0%;
  background-size: 100%;
  background-position: 0 0;
  width: 398px;
  height: 180px;
  z-index: 2;
  position: relative; }
  .hf-logo--multiline.hf-glitch {
    -webkit-animation: sprite2 0.25s steps(5);
            animation: sprite2 0.25s steps(5); }
  @media screen and (max-width: 574px) {
    .hf-logo--multiline {
      zoom: 1 !important;
      -webkit-transform: translateX(0) scale(1) !important;
          -ms-transform: translateX(0) scale(1) !important;
              transform: translateX(0) scale(1) !important;
      height: 80px;
      left: 0 !important;
      margin-bottom: 0;
      background: url("../imgs/shared/logo-large-2.png") no-repeat center center;
      background-size: contain; } }
  @media screen and (min-width: 575px) and (max-width: 814px) {
    .hf-logo--multiline {
      margin: 0 0 15px 0; } }

.hf-statusdot:after {
  content: '';
  width: 9px;
  height: 9px;
  background-color: #fff;
  position: absolute;
  border-radius: 5px;
  top: 8px;
  right: 10px;
  color: #D6EFF7;
  box-shadow: 0px 0px 14px 0px #5CB6C9; }

.hf-statusdot--active:after {
  box-shadow: 0px 0px 14px 0px #4a9d5d;
  background-color: #4a9d5d; }

.hf-nav--top .hf-button:nth-child(1) {
  box-shadow: none;
  margin-right: -25px;
  padding: 0.4em 2em;
  text-decoration: none !important; }
  @media screen and (min-width: 815px) and (max-width: 1040px) {
    .hf-nav--top .hf-button:nth-child(1) {
      padding-left: 1.5em; } }
  @media screen and (max-width: 814px) {
    .hf-nav--top .hf-button:nth-child(1) {
      margin-right: -3px; } }

.hf-nav--top .hf-button:nth-child(2) {
  padding: 0.4em 1em;
  margin-left: -12px; }
  .hf-nav--top .hf-button:nth-child(2):hover {
    text-decoration: none; }
  @media screen and (min-width: 815px) and (max-width: 1040px) {
    .hf-nav--top .hf-button:nth-child(2) {
      margin-left: -22px; } }

.hf-nav--top .hf-button:nth-child(3) {
  padding: 0.4em 1em;
  margin-left: -15px;
  padding-right: 25px; }
  .hf-nav--top .hf-button:nth-child(3):hover {
    text-decoration: none; }
  @media screen and (max-width: 814px) {
    .hf-nav--top .hf-button:nth-child(3) {
      margin-left: -13px; } }
  @media screen and (min-width: 815px) and (max-width: 1040px) {
    .hf-nav--top .hf-button:nth-child(3) {
      margin-left: -22px; } }

.hf-nav--top .hf-button {
  background-size: auto;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9); }
  @media screen and (min-width: 815px) and (max-width: 1040px) {
    .hf-nav--top .hf-button {
      -webkit-transform: scale(0.8);
          -ms-transform: scale(0.8);
              transform: scale(0.8); } }
  @media screen and (max-width: 814px) {
    .hf-nav--top .hf-button {
      background-size: contain; } }

@media screen and (max-width: 814px) {
  .hf-nav--top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center; } }

.hf-nav--bottom {
  position: absolute;
  right: 0;
  bottom: 0px;
  font-size: 14px;
  background-image: url("../imgs/shared/bg-footer.jpg");
  width: 100%;
  text-align: right;
  height: 54px;
  z-index: 100;
  background-size: 100% 100%;
  background-position: bottom, center;
  background-repeat: no-repeat; }
  .hf-nav--bottom .hf-page__container {
    padding: 0 10px 0 0; }
    @media screen and (max-width: 814px) {
      .hf-nav--bottom .hf-page__container {
        padding: 0; } }
  .hf-nav--bottom li {
    display: inline-block;
    margin-left: 10px; }
    .hf-nav--bottom li.hf-js-logout {
      display: none; }
      .hf-isAuth .hf-nav--bottom li.hf-js-logout {
        display: inline-block; }
  @media screen and (max-width: 814px) {
    .hf-nav--bottom {
      text-align: center; } }

.hf-icon--info {
  height: 1em;
  width: 1em;
  background-image: url("../imgs/shared/icon-info.png");
  background-repeat: no-repeat;
  display: inline-block;
  position: absolute;
  margin-left: -1.3em;
  margin-top: 3px; }

.hf-icon--cross {
  height: 1em;
  width: 1em;
  background-image: url("../imgs/shared/crash-cross.png");
  background-repeat: no-repeat;
  display: inline-block;
  position: absolute;
  margin-left: -1.3em;
  margin-top: 3px; }

.hf-icon--tooltip {
  height: 1em;
  width: 1em;
  background-image: url("../imgs/shared/icon-plan.png");
  background-repeat: no-repeat;
  display: inline-block;
  position: absolute;
  margin-left: 5px;
  margin-top: 6px;
  cursor: pointer;
  left: 0; }

.hf-icon--sound {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: bottom;
  margin-left: 5px;
  box-sizing: border-box;
  position: relative;
  background: #9FC7E2;
  padding: 1px 4px 0 4px;
  border-radius: 4px; }
  .hf-icon--sound svg g g path {
    fill: #16597D; }
  .hf-icon--sound--off {
    display: none; }
  .hf-icon--sound.off .hf-icon--sound--off {
    display: block;
    margin-top: 3px; }
  .hf-icon--sound.off .hf-icon--sound--on {
    display: none; }
  @media screen and (max-width: 814px) {
    .hf-icon--sound {
      display: none; } }

.hf-modal {
  position: absolute;
  top: 80px;
  width: 70%;
  height: 450px;
  background-color: #fff;
  z-index: 11;
  left: 15%;
  color: #022b5a;
  display: none; }
  .hf-modal__wrapper {
    display: table;
    width: 100%;
    max-width: none;
    height: 100%;
    color: #fff; }
    .hf-modal__wrapper h1 {
      font-family: Frutiger65Bold, sans-serif;
      font-size: 100px;
      line-height: 60px;
      letter-spacing: -0.05em; }
      .hf-modal__wrapper h1 span {
        font-family: Frutiger65Bold, sans-serif;
        font-size: 60px; }
        @media screen and (max-width: 574px) {
          .hf-modal__wrapper h1 span {
            font-size: 1.0em; } }
      @media screen and (max-width: 574px) {
        .hf-modal__wrapper h1 {
          font-size: 2.4em;
          line-height: 36px; } }
    .hf-modal__wrapper h2 {
      font-size: 30px;
      margin: 60px 0 40px; }
      @media screen and (max-width: 814px) {
        .hf-modal__wrapper h2 {
          margin: 30px 0 30px;
          font-size: 1.6em; } }
      @media screen and (max-height: 480px) {
        .hf-modal__wrapper h2 {
          margin: 10px 0 10px;
          font-size: 1em; } }
    .hf-modal__wrapper .hf-button {
      margin: 0 auto; }
  .hf-modal--gameover {
    max-width: none; }
  .hf-modal--offline {
    width: 100%;
    left: 0;
    height: 100%;
    top: 0; }

.hf-modal--howto {
  width: 80%;
  max-height: 600px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch; }
  @media screen and (max-width: 574px) {
    .hf-modal--howto .hf-modal__header h1 {
      padding-right: 25px; } }
  .hf-modal--howto .hf-modal__header div {
    padding-left: 0; }

.hf-modal--terms {
  width: 80%;
  max-height: 600px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch; }
  @media screen and (max-width: 574px) {
    .hf-modal--terms .hf-modal__header h1 {
      padding-right: 25px; } }
  .hf-modal--terms .hf-modal__header div {
    padding-left: 0; }
  .hf-modal--terms .hf-modal__content {
    display: block; }
    @media screen and (min-width: 815px) {
      .hf-modal--terms .hf-modal__content {
        display: block; } }
    @media screen and (min-width: 815px) and (max-width: 1040px) {
      .hf-modal--terms .hf-modal__content {
        display: block; } }

.hf-modal--crashed {
  background: #fff;
  color: #032b5a;
  padding: 0;
  position: relative; }

.hf-modal--howto,
.hf-modal--products,
.hf-modal--large {
  margin: 0 auto; }
  @media screen and (max-width: 814px) {
    .hf-modal--howto,
    .hf-modal--products,
    .hf-modal--large {
      top: 5px;
      margin: 0 auto;
      min-width: auto;
      width: 95%; } }
  @media screen and (max-width: 574px) {
    .hf-modal--howto,
    .hf-modal--products,
    .hf-modal--large {
      position: static; } }

.hf-modal--products {
  max-width: 1100px;
  width: 80%; }
  @media screen and (max-width: 574px) {
    .hf-modal--products {
      width: 99%; } }

.hf-modal--active .hf-modal, .hf-modal--active.hf-modal, .hf-modal--active .hf-modal__overlay {
  display: block; }

.hf-modal__overlay {
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none; }

.hf-modal__header {
  position: relative;
  z-index: 2;
  padding: 20px 26px 14px;
  margin: 0 24px;
  border-bottom: 1px solid #e6e6e6;
  text-align: left; }
  @media screen and (max-width: 574px) {
    .hf-modal__header {
      padding: 15px 0 10px; } }
  .hf-modal__header h1 {
    margin-bottom: 5px;
    font-size: 2.3em; }
    @media screen and (max-width: 814px) {
      .hf-modal__header h1 {
        font-size: 2em; } }
    @media screen and (max-width: 574px) {
      .hf-modal__header h1 {
        font-size: 1.8em;
        padding-right: 25px; } }
    @media screen and (max-height: 480px) {
      .hf-modal__header h1 {
        font-size: 1.5em; } }
  @media screen and (max-width: 574px) {
    .hf-modal__header p {
      font-size: 0.9em;
      padding-top: 24px; } }

.hf-modal__content {
  position: relative;
  z-index: 1; }
  @media screen and (min-width: 815px) {
    .hf-modal__content {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; } }
  @media screen and (min-width: 815px) and (max-width: 1040px) {
    .hf-modal__content {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; } }
  .hf-modal__content--productList {
    display: block;
    min-height: 400px;
    overflow: hidden;
    padding: 0 60px 32px; }
    @media screen and (max-width: 574px) {
      .hf-modal__content--productList {
        -webkit-flex: 1;
            -ms-flex: 1;
                flex: 1;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column; } }
    @media screen and (max-width: 814px) {
      .hf-modal__content--productList {
        height: calc(100% - 92px);
        padding-bottom: 0; } }

.hf-modal__close {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 20px;
  right: 0px;
  background: url("../imgs/shared/icon-close.png") no-repeat center center; }
  @media screen and (max-width: 574px) {
    .hf-modal__close {
      top: 25px;
      z-index: 2; } }

.hf-modal__column {
  padding: 30px 50px;
  text-align: left; }
  .hf-modal__column:first-of-type {
    border-right: 1px solid #e2e2e2;
    padding: 30px 30px; }

.hf-overlay {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  height: 100%;
  width: 100%;
  display: none; }
  @media screen and (max-width: 574px) {
    .hf-overlay {
      position: fixed;
      top: 95px;
      margin-left: 0.5%;
      height: 99%;
      width: 99%; }
      .hf-overlay--products .hf-overlay--translucent {
        display: block; }
      .hf-overlay--products #hf-overlay-content, .hf-overlay--products .hf-overlay-content {
        display: block;
        margin: 0 auto; } }
  .hf-overlay--products #hf-overlay-content, .hf-overlay--products .hf-overlay-content {
    max-width: 1100px; }
  .hf-overlay--oldBrowser {
    padding: 20px 0;
    position: relative; }
  .hf-overlay--secondary.hf-modal--terms {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
    .hf-overlay--secondary.hf-modal--terms .hf-terms__links {
      display: none; }

.hf-overlay--active {
  display: block;
  z-index: 106; }
  @media screen and (max-width: 574px) {
    .hf-overlay--active {
      overflow: auto;
      -webkit-overflow-scrolling: touch; } }

.hf-overlay__center {
  text-align: center;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%); }

.hf-overlay--translucent {
  position: absolute;
  display: table;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(4, 15, 35, 0.58); }
  @media screen and (max-width: 574px) {
    .hf-overlay--translucent {
      position: static;
      display: table; } }

.hf-overlay--splash {
  position: relative;
  bottom: 0;
  right: 0;
  width: 100%;
  background: url(/assets/imgs/shared/bg.jpg) no-repeat center center;
  background-size: cover;
  line-height: 1.2em;
  padding: 0px 0; }
  .hf-overlay--splash .hf-overlay--translucent {
    position: relative;
    min-height: 500px;
    width: 100%;
    background: transparent;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#99040f23,endColorstr=#99040f23);
    zoom: 1; }
  .hf-overlay--splash .hf-overlay-content {
    padding: 20px 0; }
  .hf-overlay--splash .browserhappy-message {
    margin: 0 auto;
    max-width: 800px; }
  @media screen and (max-width: 574px) {
    .hf-overlay--splash {
      position: absolute;
      display: table; } }

.hf-overlay--solid {
  background: url("../imgs/shared/bg.jpg") no-repeat center center;
  background-size: cover;
  left: 0;
  right: 0;
  padding-left: 0;
  margin-left: 0;
  top: 0;
  padding-bottom: 10px; }
  @media screen and (max-width: 574px) {
    .hf-overlay--solid {
      top: 93px; } }
  @media screen and (max-width: 574px) {
    .hf-overlay--solid .hf-overlay--translucent {
      position: absolute;
      display: table; } }

@media screen and (max-width: 574px) {
  .hf-overlay--offline {
    top: 0px; } }

#hf-overlay-content, .hf-overlay-content {
  display: table-cell;
  vertical-align: middle;
  text-align: center; }

.hf-overlay-modal-form, .hf-overlay-modal-stats {
  background: #fff;
  color: #032b5a;
  padding: 0;
  position: relative; }
  @media screen and (max-width: 574px) {
    .hf-overlay-modal-form, .hf-overlay-modal-stats {
      background: #f9f9f9; } }
  @media screen and (max-width: 574px) {
    .hf-overlay-modal-form:before, .hf-overlay-modal-form:after, .hf-overlay-modal-stats:before, .hf-overlay-modal-stats:after {
      display: none; } }
  .hf-overlay-modal-form .hf-modal-header, .hf-overlay-modal-stats .hf-modal-header {
    position: relative;
    z-index: 2;
    padding: 20px 26px 14px;
    border-bottom: 1px solid #e6e6e6;
    text-align: left;
    margin: 0 24px; }
    .hf-overlay-modal-form .hf-modal-header h1, .hf-overlay-modal-stats .hf-modal-header h1 {
      font-family: Frutiger45Light, sans-serif;
      margin-bottom: 5px; }
    .hf-overlay-modal-form .hf-modal-header .hf-modal-close, .hf-overlay-modal-stats .hf-modal-header .hf-modal-close {
      position: absolute;
      width: 16px;
      height: 16px;
      top: 20px;
      right: 0px;
      background: url("../imgs/shared/icon-close.png") no-repeat center center; }
    @media screen and (max-width: 574px) {
      .hf-overlay-modal-form .hf-modal-header, .hf-overlay-modal-stats .hf-modal-header {
        padding: 20px 0 14px; } }
  .hf-overlay-modal-form .hf-modal-body, .hf-overlay-modal-stats .hf-modal-body {
    position: relative;
    z-index: 1; }
    .hf-overlay-modal-form .hf-modal-body img, .hf-overlay-modal-stats .hf-modal-body img {
      width: 100%; }
    .hf-overlay-modal-form .hf-modal-body .hf-column-product, .hf-overlay-modal-stats .hf-modal-body .hf-column-product {
      float: left;
      padding: 20px; }
      @media screen and (min-width: 575px) and (max-width: 814px) {
        .hf-overlay-modal-form .hf-modal-body .hf-column-product, .hf-overlay-modal-stats .hf-modal-body .hf-column-product {
          padding: 10px 15px 15px; } }
    .hf-overlay-modal-form .hf-modal-body .hf-column-form, .hf-overlay-modal-stats .hf-modal-body .hf-column-form {
      padding: 40px 100px 40px 55px;
      text-align: left; }
      .hf-overlay-modal-form .hf-modal-body .hf-column-form fieldset, .hf-overlay-modal-stats .hf-modal-body .hf-column-form fieldset {
        padding: 0 10px;
        margin: 10px 0;
        border: 2px solid #acacac;
        font-size: 1.2em;
        font-family: Frutiger45Light, sans-serif;
        transition: border-color 0.3s; }
        .hf-overlay-modal-form .hf-modal-body .hf-column-form fieldset.hf-valid, .hf-overlay-modal-stats .hf-modal-body .hf-column-form fieldset.hf-valid {
          border-color: #032b5a; }
        .hf-overlay-modal-form .hf-modal-body .hf-column-form fieldset legend, .hf-overlay-modal-stats .hf-modal-body .hf-column-form fieldset legend {
          padding: 0 5px; }
        .hf-overlay-modal-form .hf-modal-body .hf-column-form fieldset input, .hf-overlay-modal-stats .hf-modal-body .hf-column-form fieldset input {
          width: 100%;
          border: none;
          background: transparent;
          padding-bottom: 5px;
          font-size: 1.3em; }
      .hf-overlay-modal-form .hf-modal-body .hf-column-form .hf-button.shake, .hf-overlay-modal-stats .hf-modal-body .hf-column-form .hf-button.shake {
        -webkit-animation-name: shake;
                animation-name: shake;
        -webkit-animation-duration: 300ms;
                animation-duration: 300ms;
        -webkit-animation-iteration-count: 1;
                animation-iteration-count: 1;
        -webkit-animation-timing-function: linear;
                animation-timing-function: linear; }
    @media screen and (max-width: 814px) {
      .hf-overlay-modal-form .hf-modal-body, .hf-overlay-modal-stats .hf-modal-body {
        height: 500px;
        overflow: auto; } }
    @media screen and (max-width: 574px) {
      .hf-overlay-modal-form .hf-modal-body, .hf-overlay-modal-stats .hf-modal-body {
        height: auto;
        overflow: none; } }

#template-overlay-old-browser {
  display: none; }
  #template-overlay-old-browser a {
    color: #fff !important;
    text-decoration: underline; }
  #template-overlay-old-browser.show {
    display: block; }

@keyframes shake {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  25% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px); }
  50% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px); }
  75% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px); }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0); } }

.hf-form {
  padding-right: 0; }
  @media screen and (max-width: 574px) {
    .hf-form {
      border-top: 1px solid #e2e2e2; } }
  @media screen and (max-width: 574px) {
    .hf-form__wrapper {
      padding-right: 24px; } }
  .hf-form .hf-layout {
    margin-left: 0;
    margin-right: 24px; }
    @media screen and (max-width: 574px) {
      .hf-form .hf-layout {
        margin-right: 0; } }
  .hf-form fieldset {
    padding: 0 10px;
    margin: 10px 0;
    border: 2px solid #d8d8d8;
    font-size: 1.2em;
    font-family: Frutiger45Light, sans-serif;
    transition: border-color 0.3s; }
    .hf-form fieldset.hf-valid {
      border-color: #032b5a; }
    .hf-form fieldset legend {
      padding: 0 5px; }
    .hf-form fieldset input {
      width: 100%;
      border: none;
      background: transparent;
      padding-bottom: 5px;
      font-size: 1.3em; }

#crash-users {
  float: right; }
  @media screen and (max-width: 574px) {
    #crash-users {
      position: absolute;
      right: 0; } }

.hf-crashers {
  opacity: 0.9;
  font-weight: bold;
  text-align: right;
  color: #D6EFF7;
  margin-top: 60px;
  margin-right: 15px;
  width: 250px;
  float: right; }
  @media screen and (max-width: 574px) {
    .hf-crashers {
      margin-top: 0; } }

.hf-crashers__title {
  font-family: Frutiger65Bold, sans-serif;
  font-weight: bold;
  padding-right: 30px; }

.hf-crashers__title, .hf-crashers ul li {
  margin-bottom: 8px;
  position: relative; }

.hf-crashers ul li {
  padding-right: 30px;
  clear: both; }
  .hf-crashers ul li:not(.hf-me) {
    opacity: 0;
    margin-right: -20px;
    transition: opacity 0.2s, margin 0.2s; }
    .hf-crashers ul li:not(.hf-me):nth-child(1) {
      transition-delay: 0.1s; }
    .hf-crashers ul li:not(.hf-me):nth-child(2) {
      transition-delay: 0.2s; }
    .hf-crashers ul li:not(.hf-me):nth-child(3) {
      transition-delay: 0.3s; }
    .hf-crashers ul li:not(.hf-me):nth-child(4) {
      transition-delay: 0.4s; }
    .hf-crashers ul li:not(.hf-me):nth-child(5) {
      transition-delay: 0.5s; }
    .hf-crashers ul li:not(.hf-me):nth-child(6) {
      transition-delay: 0.6s; }
    .hf-crashers ul li:not(.hf-me):nth-child(7) {
      transition-delay: 0.7s; }
    .hf-crashers ul li:not(.hf-me):nth-child(8) {
      transition-delay: 0.8s; }
    .hf-crashers ul li:not(.hf-me):nth-child(9) {
      transition-delay: 0.9s; }
    .hf-crashers ul li:not(.hf-me):nth-child(10) {
      transition-delay: 1s; }
  .hf-crashers ul li.in:not(.hf-me) {
    opacity: 1;
    margin-right: 0; }
  @media screen and (max-width: 574px) {
    .hf-crashers ul li {
      display: none; } }

.hf-crashers ul li:first-child {
  font-weight: bold;
  font-family: Frutiger65Bold, sans-serif;
  padding-right: 0; }
  .hf-crashers ul li:first-child > span {
    padding-right: 30px;
    position: relative;
    border: 2px solid #fff;
    box-shadow: 0 0 8px #5CB6C9;
    margin-bottom: 7px;
    width: 50%;
    float: right;
    margin-top: -4px;
    cursor: pointer; }
  @media screen and (max-width: 574px) {
    .hf-crashers ul li:first-child {
      display: block; } }

.hf-social {
  margin-top: 45px; }
  .hf-social h3 {
    font-family: Frutiger65Bold, sans-serif;
    font-weight: bold;
    margin-bottom: 15px;
    color: #D6EFF7; }
  .hf-social li {
    margin-bottom: 15px; }
  .hf-social img {
    width: 100%;
    border-radius: 50%;
    opacity: 0.6; }
  @media screen and (min-width: 575px) and (max-width: 814px) {
    .hf-social {
      margin-top: 0; } }
  @media screen and (max-width: 574px) {
    .hf-social {
      display: none; } }

.hf-social__name {
  opacity: 0.7;
  position: relative;
  font-weight: bold; }
  .hf-social__name a {
    color: #fff; }
  .hf-social__name:before {
    content: '@';
    position: absolute;
    left: -14px;
    font-weight: bold; }

.hf-social__content {
  opacity: 0.8;
  color: #9dc9cf;
  font-size: 14px;
  line-height: 1.2em;
  margin-right: 15px; }

.hf-product {
  text-align: center;
  font-size: 0.9em; }
  .hf-product h1 {
    margin-bottom: -8px;
    font-size: 1.51rem; }
    @media screen and (min-width: 575px) and (max-width: 814px) {
      .hf-product h1 {
        margin-bottom: 8px; } }
    @media screen and (max-width: 574px) {
      .hf-product h1 {
        margin-bottom: 0; } }
  @media screen and (min-width: 575px) and (max-width: 814px) {
    .hf-product {
      margin-top: 90px; } }
  @media screen and (max-width: 574px) {
    .hf-product {
      margin-top: 0; } }
  .hf-product--form small {
    font-size: 1.3em;
    font-family: Frutiger45Light, sans-serif;
    margin-top: 8px;
    display: inline-block; }

.hf-product__overview {
  font-size: 18px;
  opacity: 0.8;
  margin-top: -40px;
  margin-bottom: 7px;
  color: #4D6271;
  font-weight: bold; }

.hf-product__image {
  padding: 0;
  max-width: 100%; }
  .hf-product__image--overlay {
    max-height: 270px;
    padding: 10px 20px 20px;
    box-sizing: border-box; }
    @media screen and (max-width: 814px) {
      .hf-product__image--overlay {
        padding: 0; } }
  @media screen and (max-width: 574px) {
    .hf-product__image {
      max-height: 200px;
      margin: 0 auto; } }
  @media screen and (max-height: 480px) {
    .hf-product__image {
      max-height: 120px;
      margin: 0 auto;
      margin-top: 5px; } }

.hf-product__loading {
  margin-top: 15px;
  width: 100%;
  background: url("../imgs/shared/loading.gif") no-repeat center center;
  background-size: contain;
  height: 15px; }

.hf-product__name {
  position: relative;
  font-size: 1.3em; }
  @media screen and (min-width: 815px) and (max-width: 1040px) {
    .hf-product__name {
      font-size: 1.3em; } }
  @media screen and (max-height: 480px) {
    .hf-product__name {
      font-size: 1.3em;
      line-height: 1.15em; } }
  .hf-product__name--form {
    font-size: 1.3em; }
  .hf-modal-body .hf-product__name {
    font-family: Frutiger45Light, sans-serif;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 14px; }

.hf-product__link {
  color: #419eda;
  display: inline-block;
  background: url("../imgs/shared/link_arrow.png") no-repeat 0px 4px;
  padding-left: 23px; }

.hf-product--live .hf-product__loading {
  display: none; }

.hf-product--live .hf-product__image {
  margin: 0;
  max-height: 310px; }
  @media screen and (max-width: 574px) {
    .hf-product--live .hf-product__image {
      max-height: 100px; } }

.hf-product--small {
  text-align: center;
  position: relative; }
  .hf-product--small img {
    width: 100%; }
    @media screen and (max-width: 574px) {
      .hf-product--small img {
        width: 70%; } }

.hf-product__saving {
  top: -68px !important;
  right: -20px !important; }

.hf-product__bfCopy {
  font-family: Frutiger45Light, sans-serif;
  font-size: 1.25em; }
  @media screen and (max-width: 814px) {
    .hf-product__bfCopy {
      margin: 12px 0 0; } }

.hf-product__bfPrice {
  font-family: Frutiger65Bold, sans-serif;
  font-size: 1.25em; }

.hf-product__bfAvailable {
  font-size: 1.5em;
  font-family: Frutiger45Light, sans-serif;
  padding: 10px 0; }

.hf-product__name--glitch:first-child.hf-glitch {
  color: inherit;
  position: relative; }

@-webkit-keyframes hf-product__name--glitch-anim-1 {
  0% {
    clip: rect(15px, 104px, 3px, 0); }
  14.2857142857% {
    clip: rect(8px, 104px, 3px, 0); }
  28.5714285714% {
    clip: rect(6px, 104px, 26px, 0); }
  42.8571428571% {
    clip: rect(7px, 104px, 17px, 0); }
  57.1428571429% {
    clip: rect(32px, 104px, 33px, 0); }
  71.4285714286% {
    clip: rect(22px, 104px, 24px, 0); }
  85.7142857143% {
    clip: rect(21px, 104px, 29px, 0); }
  100% {
    clip: rect(24px, 104px, 17px, 0); } }

@keyframes hf-product__name--glitch-anim-1 {
  0% {
    clip: rect(15px, 104px, 3px, 0); }
  14.2857142857% {
    clip: rect(8px, 104px, 3px, 0); }
  28.5714285714% {
    clip: rect(6px, 104px, 26px, 0); }
  42.8571428571% {
    clip: rect(7px, 104px, 17px, 0); }
  57.1428571429% {
    clip: rect(32px, 104px, 33px, 0); }
  71.4285714286% {
    clip: rect(22px, 104px, 24px, 0); }
  85.7142857143% {
    clip: rect(21px, 104px, 29px, 0); }
  100% {
    clip: rect(24px, 104px, 17px, 0); } }

@-webkit-keyframes hf-product__name--glitch-anim-2 {
  0% {
    clip: rect(33px, 104px, 20px, 0); }
  14.2857142857% {
    clip: rect(38px, 104px, 24px, 0); }
  28.5714285714% {
    clip: rect(5px, 104px, 23px, 0); }
  42.8571428571% {
    clip: rect(17px, 104px, 11px, 0); }
  57.1428571429% {
    clip: rect(13px, 104px, 13px, 0); }
  71.4285714286% {
    clip: rect(26px, 104px, 1px, 0); }
  85.7142857143% {
    clip: rect(10px, 104px, 2px, 0); }
  100% {
    clip: rect(31px, 104px, 38px, 0); } }

@keyframes hf-product__name--glitch-anim-2 {
  0% {
    clip: rect(33px, 104px, 20px, 0); }
  14.2857142857% {
    clip: rect(38px, 104px, 24px, 0); }
  28.5714285714% {
    clip: rect(5px, 104px, 23px, 0); }
  42.8571428571% {
    clip: rect(17px, 104px, 11px, 0); }
  57.1428571429% {
    clip: rect(13px, 104px, 13px, 0); }
  71.4285714286% {
    clip: rect(26px, 104px, 1px, 0); }
  85.7142857143% {
    clip: rect(10px, 104px, 2px, 0); }
  100% {
    clip: rect(31px, 104px, 38px, 0); } }
  .hf-product__name--glitch:first-child.hf-glitch:before, .hf-product__name--glitch:first-child.hf-glitch:after {
    content: attr(data-text);
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    background: transparent;
    clip: rect(0, 0, 0, 0); }
  .hf-product__name--glitch:first-child.hf-glitch:after {
    left: 2px;
    text-shadow: -1px 0 #419eda !important;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-animation: hf-product__name--glitch-anim-1 0.25s infinite linear alternate-reverse;
            animation: hf-product__name--glitch-anim-1 0.25s infinite linear alternate-reverse;
    -webkit-animation-delay: 1s;
            animation-delay: 1s; }
  .hf-product__name--glitch:first-child.hf-glitch:before {
    left: -2px;
    text-shadow: 2px 0 #022b5a !important;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-animation: hf-product__name--glitch-anim-2 1s infinite linear alternate-reverse;
            animation: hf-product__name--glitch-anim-2 1s infinite linear alternate-reverse;
    -webkit-animation-delay: -1s;
            animation-delay: -1s; }

.hf-product__name--glitch:last-child.hf-glitch {
  color: inherit;
  position: relative; }

@keyframes hf-product__name--glitch-anim-1 {
  0% {
    clip: rect(19px, 200px, 41px, 0); }
  14.2857142857% {
    clip: rect(24px, 200px, 40px, 0); }
  28.5714285714% {
    clip: rect(38px, 200px, 30px, 0); }
  42.8571428571% {
    clip: rect(15px, 200px, 17px, 0); }
  57.1428571429% {
    clip: rect(31px, 200px, 13px, 0); }
  71.4285714286% {
    clip: rect(17px, 200px, 32px, 0); }
  85.7142857143% {
    clip: rect(33px, 200px, 26px, 0); }
  100% {
    clip: rect(30px, 200px, 5px, 0); } }

@keyframes hf-product__name--glitch-anim-2 {
  0% {
    clip: rect(22px, 200px, 10px, 0); }
  14.2857142857% {
    clip: rect(17px, 200px, 3px, 0); }
  28.5714285714% {
    clip: rect(6px, 200px, 18px, 0); }
  42.8571428571% {
    clip: rect(41px, 200px, 14px, 0); }
  57.1428571429% {
    clip: rect(2px, 200px, 12px, 0); }
  71.4285714286% {
    clip: rect(23px, 200px, 2px, 0); }
  85.7142857143% {
    clip: rect(33px, 200px, 32px, 0); }
  100% {
    clip: rect(34px, 200px, 32px, 0); } }
  .hf-product__name--glitch:last-child.hf-glitch:before, .hf-product__name--glitch:last-child.hf-glitch:after {
    content: attr(data-text);
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    background: transparent;
    clip: rect(0, 0, 0, 0); }
  .hf-product__name--glitch:last-child.hf-glitch:after {
    left: 2px;
    text-shadow: -1px 0 #419eda !important;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-animation: hf-product__name--glitch-anim-1 0.25s infinite linear alternate-reverse;
            animation: hf-product__name--glitch-anim-1 0.25s infinite linear alternate-reverse;
    -webkit-animation-delay: 1s;
            animation-delay: 1s; }
  .hf-product__name--glitch:last-child.hf-glitch:before {
    left: -2px;
    text-shadow: 2px 0 #022b5a !important;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-animation: hf-product__name--glitch-anim-2 1s infinite linear alternate-reverse;
            animation: hf-product__name--glitch-anim-2 1s infinite linear alternate-reverse;
    -webkit-animation-delay: -1s;
            animation-delay: -1s; }

.hf-nextCrash--glitch {
  display: block; }
  .hf-nextCrash--glitch.hf-glitch {
    color: inherit;
    position: relative; }

@keyframes hf-product__name--glitch-anim-1 {
  0% {
    clip: rect(4px, 400px, 37px, 0); }
  14.2857142857% {
    clip: rect(24px, 400px, 19px, 0); }
  28.5714285714% {
    clip: rect(28px, 400px, 10px, 0); }
  42.8571428571% {
    clip: rect(6px, 400px, 20px, 0); }
  57.1428571429% {
    clip: rect(13px, 400px, 6px, 0); }
  71.4285714286% {
    clip: rect(6px, 400px, 4px, 0); }
  85.7142857143% {
    clip: rect(1px, 400px, 12px, 0); }
  100% {
    clip: rect(37px, 400px, 9px, 0); } }

@keyframes hf-product__name--glitch-anim-2 {
  0% {
    clip: rect(24px, 400px, 12px, 0); }
  14.2857142857% {
    clip: rect(30px, 400px, 21px, 0); }
  28.5714285714% {
    clip: rect(6px, 400px, 15px, 0); }
  42.8571428571% {
    clip: rect(41px, 400px, 26px, 0); }
  57.1428571429% {
    clip: rect(2px, 400px, 23px, 0); }
  71.4285714286% {
    clip: rect(15px, 400px, 34px, 0); }
  85.7142857143% {
    clip: rect(3px, 400px, 28px, 0); }
  100% {
    clip: rect(16px, 400px, 26px, 0); } }
    .hf-nextCrash--glitch.hf-glitch:before, .hf-nextCrash--glitch.hf-glitch:after {
      content: attr(data-text);
      position: absolute;
      top: 0px;
      left: 0px;
      width: 100%;
      background: transparent;
      clip: rect(0, 0, 0, 0); }
    .hf-nextCrash--glitch.hf-glitch:after {
      left: 2px;
      text-shadow: -1px 0 #419eda !important;
      -webkit-transform: translateZ(0);
              transform: translateZ(0);
      -webkit-animation: hf-product__name--glitch-anim-1 0.125s infinite linear alternate-reverse;
              animation: hf-product__name--glitch-anim-1 0.125s infinite linear alternate-reverse;
      -webkit-animation-delay: 1s;
              animation-delay: 1s; }
    .hf-nextCrash--glitch.hf-glitch:before {
      left: -2px;
      text-shadow: 2px 0 #022b5a !important;
      -webkit-transform: translateZ(0);
              transform: translateZ(0);
      -webkit-animation: hf-product__name--glitch-anim-2 0.5s infinite linear alternate-reverse;
              animation: hf-product__name--glitch-anim-2 0.5s infinite linear alternate-reverse;
      -webkit-animation-delay: -1s;
              animation-delay: -1s; }

.hf-nextCrash {
  display: none; }

.hf-nextCrashGlitchContainer .hf-nextCrash {
  display: block; }

.hf-nextCrashGlitchContainer .hf-nextProduct {
  display: none; }

.hf-nextCrashGlitchContainer h2 {
  visibility: hidden; }

.hf-price {
  margin-bottom: 15px; }
  @media screen and (max-width: 574px) {
    .hf-price {
      margin-bottom: 8px;
      margin-top: -quarter(30px); } }
  .hf-price--percentage {
    margin-right: 20px; }
    @media screen and (max-width: 814px) {
      .hf-price--percentage {
        margin-right: 10px; } }
    @media screen and (max-width: 574px) {
      .hf-price--percentage {
        margin-right: 0; } }
    @media screen and (min-width: 815px) and (max-width: 1040px) {
      .hf-price--percentage {
        margin-right: 10px; } }
  .hf-price--form {
    text-align: left; }
    .hf-price--form .hf-price__saving {
      display: block;
      font-size: 16px;
      padding-top: 0; }

.hf-price--center {
  font-size: 35px;
  font-weight: bold;
  position: relative; }
  .hf-price--center small {
    font-size: 12px;
    vertical-align: top;
    padding-top: 10px;
    display: inline-block; }
    .hf-price--center small + span {
      margin-left: -30px;
      margin-right: 8px; }
      @media screen and (min-width: 575px) and (max-width: 814px) {
        .hf-price--center small + span {
          margin-left: -20px; } }
      @media screen and (max-width: 574px) {
        .hf-price--center small + span {
          margin-left: 0; } }
  .hf-price--center span {
    vertical-align: middle; }
    .hf-price--center span:first-child {
      margin-right: 15px; }
      .hf-overlay-modal-stats .hf-price--center span:first-child {
        margin-right: 0; }

.hf-price--productList {
  font-size: 1.5em; }
  @media screen and (min-width: 815px) and (max-width: 1040px) {
    .hf-price--productList {
      font-size: 1.3em; } }
  @media screen and (max-height: 480px) {
    .hf-price--productList {
      font-size: 1.3em;
      line-height: 1.15em; } }
  .hf-modal-body .hf-price--productList {
    font-family: Frutiger45Light, sans-serif;
    font-size: 1.25em;
    margin: 12px 0 0; }
    .hf-modal-body .hf-price--productList b {
      font-family: Frutiger65Bold, sans-serif; }
    @media screen and (max-width: 814px) {
      .hf-modal-body .hf-price--productList {
        margin: 12px 0; } }

.hf-price__label {
  width: 100%;
  display: inline-block;
  text-align: center;
  font-size: 20px;
  line-height: 1.2em;
  margin-top: 17px; }
  @media screen and (max-width: 574px) {
    .hf-price__label {
      display: none; } }

.hf-price__number {
  font-size: 69px;
  display: inline-block;
  line-height: 1.2em;
  margin-left: 0 !important; }
  @media screen and (max-width: 814px) {
    .hf-price__number {
      font-size: 50px; } }

.hf-price__saving--form {
  display: block; }

.hf-price--large {
  font-size: 60px; }
  @media screen and (min-width: 575px) and (max-width: 814px) {
    .hf-price--large {
      font-size: 50px; } }

.hf-price--medium {
  font-size: 50px; }

.hf-price__savings {
  background-color: #3b98ac;
  color: #fff;
  border-radius: 50%;
  font-size: 25px;
  line-height: 19px;
  position: absolute;
  width: 60px;
  height: 60px;
  right: -10px;
  top: 10px; }

.hf-winners {
  margin-top: 30px; }
  .hf-winners ul {
    margin-top: 60px; }
  @media screen and (min-width: 575px) and (max-width: 814px) {
    .hf-winners {
      margin-top: 0; } }
  @media screen and (max-width: 574px) {
    .hf-winners {
      margin-top: 8px; }
      .hf-winners ul {
        display: inline-block;
        height: 40px;
        width: 100%;
        margin-top: 0; }
        .hf-winners ul.active {
          width: 100%; } }

.hf-winners__title {
  font-weight: bold;
  position: absolute;
  width: 100%;
  margin-top: -40px; }
  @media screen and (max-width: 574px) {
    .hf-winners__title {
      display: inline-block;
      margin-right: 20px;
      vertical-align: top;
      margin-top: 0px; } }

.hf-winners__block {
  position: relative;
  background-image: url("../imgs/game/winner-bg.png");
  background-repeat: no-repeat;
  background-position-y: center;
  background-size: 95%;
  padding: 0 0 0 12px;
  line-height: 86px; }
  @media screen and (min-width: 575px) and (max-width: 814px) {
    .hf-winners__block .hf-winners__price {
      font-size: 20px; }
    .hf-winners__block .hf-winners__price--large {
      font-size: 34px; }
    .hf-winners__block .hf-winners__details {
      display: none; } }
  @media screen and (max-width: 574px) {
    .hf-winners__block {
      background-size: auto 100%;
      display: inline-block;
      padding-right: 30px;
      margin-right: -10px;
      transition: all ease 0.3s;
      position: absolute;
      width: 100%;
      padding: 0; }
      .hf-winners__block .hf-winners__details {
        display: none; }
      .hf-winners__block .hf-winners__price {
        line-height: 25px; }
      .hf-winners__block:nth-child(1) {
        left: 55%; }
      .hf-winners__block:nth-child(2) {
        left: 70%; }
      .hf-winners__block:nth-child(3) {
        left: 85%; }
      .hf-winners__block.active {
        -webkit-transform: translateX(-45%);
            -ms-transform: translateX(-45%);
                transform: translateX(-45%); }
        .hf-winners__block.active .hf-winners__price > span {
          display: none; }
        .hf-winners__block.active .hf-winners__order {
          display: inline !important; }
      .hf-winners__block.active.last span {
        display: inline-block; } }

.hf-winners__order {
  position: relative; }
  .hf-winners__order .hf-winners__order__num {
    position: relative;
    z-index: 0;
    margin: 0 15px;
    margin-left: 9px;
    text-shadow: none; }
  .hf-winners__order .hf-winners__order__bg {
    position: absolute;
    background-size: auto 80%;
    background-repeat: no-repeat;
    left: -15px;
    right: -15px;
    bottom: -17px;
    top: -17px;
    background-position: 19px 63%; }
    .hf-winners__order .hf-winners__order__bg.hf-silouette {
      background-image: url("../imgs/shared/silouette.png"); }
    @media screen and (max-width: 574px) {
      .hf-winners__order .hf-winners__order__bg {
        background-size: auto 80%; } }
  @media screen and (max-width: 574px) {
    .hf-winners__order {
      display: inline-block; } }

.hf-winners__price {
  font-size: 30px;
  font-weight: bold; }
  .hf-winners__price span {
    vertical-align: middle; }
  @media screen and (max-width: 574px) {
    .hf-winners__price {
      font-size: 25px; } }

.hf-winners__price__currency {
  margin-right: 8px; }

.hf-winners__price--large {
  font-size: 60px; }
  @media screen and (max-width: 574px) {
    .hf-winners__price--large {
      font-size: 45px; } }

.hf-winners__details {
  line-height: 22px;
  margin-left: 60px;
  margin-top: -24px;
  position: absolute; }

.hf-winners_tooltip {
  line-height: 30px;
  position: absolute;
  top: -13px;
  right: -120px;
  background-color: #5CB6C9;
  padding: 8px 35px;
  border-radius: 2px;
  text-align: center;
  margin-top: 10px;
  z-index: 101;
  display: none;
  background-image: url("../imgs/game/tooltip-bg.png"); }
  .hf-winners_tooltip:before {
    content: '';
    background-image: url("../imgs/game/tooltip-arrow.png");
    height: 100%;
    width: 9px;
    position: absolute;
    left: -9px;
    background-repeat: no-repeat;
    background-position: center;
    top: 1px; }
  @media screen and (max-width: 574px) {
    .hf-winners_tooltip {
      top: 50px;
      left: 50px;
      right: auto; }
      .hf-winners_tooltip:before {
        left: 50%;
        top: -48px;
        -webkit-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
                transform: rotate(90deg); } }

.hf-winners_tooltip__title {
  font-weight: bold;
  line-height: 1.2em !important; }

.hf-winners__tooltip--active {
  display: block; }

.hf-loader {
  width: 383px;
  height: 383px;
  margin: 0 auto;
  position: relative; }
  @media screen and (max-width: 574px) {
    .hf-loader {
      width: 363px;
      height: 363px; } }
  @media screen and (max-height: 480px) {
    .hf-loader {
      width: 310px;
      height: 310px; } }

.hf-loader__container {
  position: absolute;
  top: 21px;
  left: 21px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: #081027;
  position: relative;
  padding: 30px;
  box-sizing: border-box; }
  @media screen and (max-width: 574px) {
    .hf-loader__container {
      width: 320px;
      height: 320px; } }
  @media screen and (min-width: 575px) and (max-width: 814px) {
    .hf-loader__container {
      padding: 30px 25px; } }
  @media screen and (max-height: 480px) {
    .hf-loader__container {
      width: 285px;
      height: 285px;
      top: 10px;
      left: 10px;
      padding: 15px; } }
  .hf-loader__container small.hf-glow__text {
    font-size: 90%; }

.hf-loader__spinner {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../imgs/game/spinner.png") no-repeat center center;
  background-size: 100%;
  -webkit-animation-name: spin;
          animation-name: spin;
  -webkit-animation-duration: 4000ms;
          animation-duration: 4000ms;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear; }
  @media screen and (max-width: 574px) {
    .hf-loader__spinner {
      background-size: 93%; } }
  @media screen and (max-height: 480px) {
    .hf-loader__spinner {
      background-size: 95%; } }

.hf-loader__content {
  font-size: 18px; }
  @media screen and (max-width: 574px) {
    .hf-loader__content .hf-price--center small {
      display: block;
      font-size: 14px; }
    .hf-loader__content .hf-price--large {
      font-size: 40px; } }
  @media screen and (max-width: 574px) and (max-height: 480px) {
    .hf-loader__content .hf-price--large {
      font-size: 35px; } }

.hf-loader__dots {
  font-size: 60px;
  position: absolute;
  top: -40px;
  left: 0;
  right: 0; }
  @media screen and (max-height: 480px) {
    .hf-loader__dots {
      top: -45px; } }

.hf-loader__dots--bottom {
  bottom: 0px;
  top: auto; }
  @media screen and (max-height: 480px) {
    .hf-loader__dots--bottom {
      bottom: -15px; } }

.hf-loader__title {
  margin-top: 15px;
  margin-bottom: 15px;
  line-height: 1em !important; }

.hf-loader__divider {
  width: 200px;
  background-color: #fff;
  height: 2px;
  margin-left: 40px;
  margin-bottom: 15px;
  box-shadow: 0px 2px 3px #5CB6C9, 0px -2px 3px #5CB6C9, inset 0px 2px 2px #D6EFF7, inset 0px -2px 2px #D6EFF7; }
  @media screen and (max-width: 574px) {
    .hf-loader__divider {
      margin-bottom: 10px;
      width: 190px;
      margin-left: 35px; } }
  @media screen and (max-height: 480px) {
    .hf-loader__divider {
      margin-bottom: 10px;
      width: 170px; } }

.hf-overlay-modal-stats {
  min-height: 630px;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }
  .hf-overlay-modal-stats .hf-modal-header h1 {
    margin-bottom: 5px;
    font-size: 2.3em; }
    @media screen and (max-width: 574px) {
      .hf-overlay-modal-stats .hf-modal-header h1 {
        font-size: 2em; } }
  .hf-overlay-modal-stats .hf-tabs {
    text-align: right;
    margin-top: 36px; }
    .hf-overlay-modal-stats .hf-tabs li {
      display: inline-block; }
      .hf-overlay-modal-stats .hf-tabs li:nth-child(2) {
        border-left: 1px solid #d5d5d5;
        border-right: 1px solid #d5d5d5; }
      .hf-overlay-modal-stats .hf-tabs li a {
        color: #022b5a;
        text-decoration: none;
        padding: 4px 10px; }
        .hf-overlay-modal-stats .hf-tabs li a:hover {
          text-decoration: underline; }
        .hf-overlay-modal-stats .hf-tabs li a.active {
          color: #319bcf; }
      @media screen and (max-width: 574px) {
        .hf-overlay-modal-stats .hf-tabs li.leaderboard {
          display: none; } }
    @media screen and (max-width: 574px) {
      .hf-overlay-modal-stats .hf-tabs {
        font-size: 0.8em;
        margin-top: 20px; }
        .hf-overlay-modal-stats .hf-tabs li:nth-child(2) {
          border-right: none; }
        .hf-overlay-modal-stats .hf-tabs li:nth-child(3) {
          display: none; } }
  @media screen and (min-width: 815px) {
    .hf-overlay-modal-stats .hf-modal-body .hf-stats {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; }
      .hf-overlay-modal-stats .hf-modal-body .hf-stats > .hf-layout__item {
        -webkit-flex: 1;
            -ms-flex: 1;
                flex: 1; } }
  .hf-overlay-modal-stats .hf-modal-body > div > .hf-layout__item {
    padding-top: 40px;
    min-height: 440px; }
    .hf-overlay-modal-stats .hf-modal-body > div > .hf-layout__item:first-child {
      border-right: 1px solid #e6e6e6; }
      @media screen and (max-width: 574px) {
        .hf-overlay-modal-stats .hf-modal-body > div > .hf-layout__item:first-child {
          min-height: auto;
          box-sizing: border-box;
          padding: 20px;
          border-right: none;
          border-bottom: 1px solid #e6e6e6; } }
    .hf-overlay-modal-stats .hf-modal-body > div > .hf-layout__item:last-child {
      border-left: 1px solid #e6e6e6; }
      .hf-overlay-modal-stats .hf-modal-body > div > .hf-layout__item:last-child .hf-column-wrapper {
        text-align: left; }
        @media screen and (max-width: 814px) {
          .hf-overlay-modal-stats .hf-modal-body > div > .hf-layout__item:last-child .hf-column-wrapper {
            text-align: center;
            padding-left: 24px; } }
        @media screen and (max-width: 574px) {
          .hf-overlay-modal-stats .hf-modal-body > div > .hf-layout__item:last-child .hf-column-wrapper {
            background: none;
            text-align: center; } }
      @media screen and (max-width: 814px) {
        .hf-overlay-modal-stats .hf-modal-body > div > .hf-layout__item:last-child {
          border-top: 1px solid #e6e6e6;
          min-height: auto; } }
      @media screen and (max-width: 574px) {
        .hf-overlay-modal-stats .hf-modal-body > div > .hf-layout__item:last-child {
          border-top: 1px solid #e6e6e6;
          border-left: none;
          background: none;
          padding: 0; } }
    @media screen and (max-width: 574px) {
      .hf-overlay-modal-stats .hf-modal-body > div > .hf-layout__item {
        padding: 20px;
        min-height: auto; } }
    @media screen and (min-width: 575px) and (max-width: 814px) {
      .hf-overlay-modal-stats .hf-modal-body > div > .hf-layout__item {
        padding-top: 15px;
        min-height: auto; } }
  .hf-overlay-modal-stats .hf-modal-body .hf-winner-table table, .hf-overlay-modal-stats .hf-modal-body .hf-winner-table tr, .hf-overlay-modal-stats .hf-modal-body .hf-winner-table td {
    border: 0;
    background: transparent; }
  .hf-overlay-modal-stats .hf-modal-body .hf-winner-table thead {
    font-family: Frutiger65Bold, sans-serif; }
  .hf-overlay-modal-stats .hf-modal-body .hf-winner-table td {
    vertical-align: middle; }
    @media screen and (min-width: 815px) and (max-width: 1040px) {
      .hf-overlay-modal-stats .hf-modal-body .hf-winner-table td {
        padding: 4px 5px; } }
    @media screen and (max-width: 814px) {
      .hf-overlay-modal-stats .hf-modal-body .hf-winner-table td {
        padding: 4px 2px; } }
  @media screen and (max-width: 814px) {
    .hf-overlay-modal-stats .hf-modal-body .hf-winner-table__name {
      max-width: 80px; } }
  .hf-overlay-modal-stats .hf-modal-body .hf-winner-table .hf-winner-color {
    width: 17px;
    height: 17px;
    border-radius: 50%; }
  .hf-overlay-modal-stats .hf-modal-body .hf-winner-table tbody tr td:nth-child(3) {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
  .hf-overlay-modal-stats .hf-modal-body .hf-stats--last h2 {
    font-size: 1.5em; }
  @media screen and (max-width: 574px) {
    .hf-overlay-modal-stats .hf-modal-body .hf-stats--last .hf-column-wrapper {
      margin: 20px;
      background: #e2e2e2;
      border-radius: 10px; } }
  .hf-overlay-modal-stats .hf-modal-body .hf-stats--last .hf-column-product {
    font-size: 0.8em; }
    @media screen and (max-width: 574px) {
      .hf-overlay-modal-stats .hf-modal-body .hf-stats--last .hf-column-product {
        padding: 0;
        margin: 20px auto 0 auto;
        float: none; }
        .hf-overlay-modal-stats .hf-modal-body .hf-stats--last .hf-column-product h2 {
          font-size: 1.17em; } }
    .hf-overlay-modal-stats .hf-modal-body .hf-stats--last .hf-column-product .hf-price--center {
      margin-top: -7px; }
      .hf-overlay-modal-stats .hf-modal-body .hf-stats--last .hf-column-product .hf-price--center .hf-price__large {
        font-size: 1.3em !important;
        line-height: 1; }
        @media screen and (min-width: 575px) and (max-width: 814px) {
          .hf-overlay-modal-stats .hf-modal-body .hf-stats--last .hf-column-product .hf-price--center .hf-price__large {
            font-size: 1em !important; } }
    .hf-overlay-modal-stats .hf-modal-body .hf-stats--last .hf-column-product .hf-price__saving {
      margin-top: 0; }
    .hf-overlay-modal-stats .hf-modal-body .hf-stats--last .hf-column-product img {
      width: 80%; }
      @media screen and (min-width: 575px) and (max-width: 814px) {
        .hf-overlay-modal-stats .hf-modal-body .hf-stats--last .hf-column-product img {
          width: 70%; } }
      @media screen and (max-width: 574px) {
        .hf-overlay-modal-stats .hf-modal-body .hf-stats--last .hf-column-product img {
          width: 70%; } }
    .hf-overlay-modal-stats .hf-modal-body .hf-stats--last .hf-column-product small {
      font-size: 1.5em;
      font-family: Frutiger45Light, sans-serif;
      margin-top: 8px;
      display: inline-block; }
  .hf-overlay-modal-stats .hf-modal-body .hf-stats--last svg {
    margin-top: 20px; }
    @media screen and (min-width: 575px) and (max-width: 814px) {
      .hf-overlay-modal-stats .hf-modal-body .hf-stats--last svg {
        margin-top: 10px; } }
  .hf-overlay-modal-stats .hf-modal-body .hf-stats--last .hf-info-big {
    font-size: 3em;
    fill: #002d59;
    font-family: Frutiger45Light, sans-serif; }
  .hf-overlay-modal-stats .hf-modal-body .hf-stats--last .hf-xs-product {
    display: block;
    width: 100%;
    position: relative;
    float: left;
    margin: 20px 0;
    cursor: pointer; }
    .hf-overlay-modal-stats .hf-modal-body .hf-stats--last .hf-xs-product img {
      width: 25%;
      float: left;
      margin-right: 25px; }
      @media screen and (min-width: 815px) and (max-width: 1040px) {
        .hf-overlay-modal-stats .hf-modal-body .hf-stats--last .hf-xs-product img {
          margin-right: 25px;
          width: 23%; } }
      @media screen and (max-width: 814px) {
        .hf-overlay-modal-stats .hf-modal-body .hf-stats--last .hf-xs-product img {
          margin-right: 24px;
          width: 20%; } }
    .hf-overlay-modal-stats .hf-modal-body .hf-stats--last .hf-xs-product .hf-xs-product--details {
      width: 50%;
      float: left;
      text-align: left; }
      .hf-overlay-modal-stats .hf-modal-body .hf-stats--last .hf-xs-product .hf-xs-product--details strong, .hf-overlay-modal-stats .hf-modal-body .hf-stats--last .hf-xs-product .hf-xs-product--details span, .hf-overlay-modal-stats .hf-modal-body .hf-stats--last .hf-xs-product .hf-xs-product--details a {
        display: block; }
      .hf-overlay-modal-stats .hf-modal-body .hf-stats--last .hf-xs-product .hf-xs-product--details .hf-xs-product--model {
        line-height: 1.2;
        margin-bottom: 6px; }
      .hf-overlay-modal-stats .hf-modal-body .hf-stats--last .hf-xs-product .hf-xs-product--details .hf-xs-product--bfPrice {
        font-size: 14px;
        line-height: 1; }
    .hf-overlay-modal-stats .hf-modal-body .hf-stats--last .hf-xs-product .hf-xs-product--link {
      font-family: Frutiger45Light, sans-serif;
      color: #419eda;
      vertical-align: middle;
      font-size: 1.1em; }
      @media screen and (max-width: 814px) {
        .hf-overlay-modal-stats .hf-modal-body .hf-stats--last .hf-xs-product .hf-xs-product--link {
          font-size: 0.9em; } }
      .hf-overlay-modal-stats .hf-modal-body .hf-stats--last .hf-xs-product .hf-xs-product--link:before {
        content: url("../imgs/game/link-arrow.png");
        vertical-align: middle;
        margin-right: 10px;
        display: inline-block;
        margin-top: 5px; }
  .hf-overlay-modal-stats .hf-modal-body .hf-stats--last .hf-xs-shop-link-wrapper {
    box-sizing: border-box;
    width: 100%;
    padding-left: 60px;
    height: 90px;
    display: table;
    background: #eaeaea;
    border-top: 1px solid #e2e2e2;
    text-align: left; }
    @media screen and (max-width: 814px) {
      .hf-overlay-modal-stats .hf-modal-body .hf-stats--last .hf-xs-shop-link-wrapper {
        padding-left: 0;
        text-align: center; } }
  .hf-overlay-modal-stats .hf-modal-body .hf-stats--last .hf-xs-shop-link {
    font-family: Frutiger45Light, sans-serif;
    color: #002d59;
    vertical-align: middle;
    font-size: 1.7em;
    display: table-cell; }
    .hf-overlay-modal-stats .hf-modal-body .hf-stats--last .hf-xs-shop-link:before {
      content: url("../imgs/game/link-arrow.png");
      vertical-align: middle;
      margin-right: 10px;
      display: inline-block;
      margin-top: 2px; }
  .hf-overlay-modal-stats .hf-modal-body .hf-stats--all {
    margin-left: 0 !important; }
    .hf-overlay-modal-stats .hf-modal-body .hf-stats--all h2 {
      font-size: 1.5em; }
    .hf-overlay-modal-stats .hf-modal-body .hf-stats--all .hf-winner-table {
      margin: 10px 10px 10px 0; }
      @media screen and (max-width: 574px) {
        .hf-overlay-modal-stats .hf-modal-body .hf-stats--all .hf-winner-table {
          margin: 24px; } }
  .hf-overlay-modal-stats .hf-modal-body .hf-stat-fastest {
    display: table;
    width: 100%;
    margin-top: 30px; }
    .hf-overlay-modal-stats .hf-modal-body .hf-stat-fastest .hf-stopclock {
      display: table-cell;
      vertical-align: middle;
      background: url("../imgs/game/stopclock.png") no-repeat center center;
      background-size: contain;
      width: 100%;
      height: 217px; }
      .hf-overlay-modal-stats .hf-modal-body .hf-stat-fastest .hf-stopclock .hf-colon {
        margin: 0 -0.3em; }
      .hf-overlay-modal-stats .hf-modal-body .hf-stat-fastest .hf-stopclock .hf-countdown__timer {
        margin-top: 40px;
        font-family: Frutiger45Light, sans-serif;
        font-size: 2.3em; }
      .hf-overlay-modal-stats .hf-modal-body .hf-stat-fastest .hf-stopclock .hf-countdown__labels {
        margin-top: -5px;
        font-family: Frutiger75Black, sans-serif; }
  .hf-overlay-modal-stats .hf-modal-body .hf-stat-discounts {
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 30px; }
    .hf-overlay-modal-stats .hf-modal-body .hf-stat-discounts .hf-large-discount, .hf-overlay-modal-stats .hf-modal-body .hf-stat-discounts .hf-small-discount {
      position: relative;
      width: 250px;
      height: 250px;
      color: white;
      border-radius: 50%;
      text-align: center;
      z-index: 2;
      margin: 0 auto; }
    .hf-overlay-modal-stats .hf-modal-body .hf-stat-discounts .hf-large-discount {
      background: #419AD0; }
    .hf-overlay-modal-stats .hf-modal-body .hf-stat-discounts .hf-small-discount {
      background: #0C2C5A;
      -webkit-transform: scale(0.7);
          -ms-transform: scale(0.7);
              transform: scale(0.7);
      z-index: 1;
      margin-top: -80px; }
    @media (max-width: 900px) and (min-width: 675px) {
      .hf-overlay-modal-stats .hf-modal-body .hf-stat-discounts .hf-large-discount {
        -webkit-transform: scale(0.7);
            -ms-transform: scale(0.7);
                transform: scale(0.7); }
      .hf-overlay-modal-stats .hf-modal-body .hf-stat-discounts .hf-small-discount {
        -webkit-transform: scale(0.5);
            -ms-transform: scale(0.5);
                transform: scale(0.5); } }
    .hf-overlay-modal-stats .hf-modal-body .hf-stat-discounts .hf-disc--amount {
      font-family: Frutiger65Bold, sans-serif;
      margin-top: 2em;
      font-size: 3em;
      line-height: .5em;
      display: inline-block; }
      .hf-overlay-modal-stats .hf-modal-body .hf-stat-discounts .hf-disc--amount small {
        font-size: .6em; }
    .hf-overlay-modal-stats .hf-modal-body .hf-stat-discounts .hf-divider--small {
      width: 113px;
      height: 12px;
      background: url("../imgs/game/divider-small.png") no-repeat center center;
      margin: 2px auto;
      display: block; }
    .hf-overlay-modal-stats .hf-modal-body .hf-stat-discounts .hf-disc--desc {
      font-family: Frutiger75Black, sans-serif; }
  .hf-overlay-modal-stats .hf-modal-body .hf-stat-player {
    position: relative;
    margin-top: 55px;
    background: url("../imgs/game/stats-people.png") no-repeat bottom center;
    min-height: 143px;
    margin-bottom: 58px; }
    .hf-overlay-modal-stats .hf-modal-body .hf-stat-player .hf-most-players {
      position: absolute;
      bottom: -20px;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%);
      left: 50%;
      display: inline-block; }
      .hf-overlay-modal-stats .hf-modal-body .hf-stat-player .hf-most-players .hf-number-big {
        font-family: Frutiger65Bold, sans-serif;
        font-size: 6em;
        display: block;
        line-height: .7em; }
  .hf-overlay-modal-stats .hf-modal-body .hf-leaderboard-table {
    border: 0;
    width: 90%;
    margin: 0 auto;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    color: #002053; }
    .hf-overlay-modal-stats .hf-modal-body .hf-leaderboard-table thead {
      background: transparent;
      border: 0;
      font-family: Frutiger65Bold, sans-serif; }
      .hf-overlay-modal-stats .hf-modal-body .hf-leaderboard-table thead tr, .hf-overlay-modal-stats .hf-modal-body .hf-leaderboard-table thead td {
        border: 0;
        background: transparent; }
    .hf-overlay-modal-stats .hf-modal-body .hf-leaderboard-table tbody tr {
      display: none;
      border: 0;
      background: #efefef; }
      .hf-overlay-modal-stats .hf-modal-body .hf-leaderboard-table tbody tr.visible {
        display: table-row; }
      .hf-overlay-modal-stats .hf-modal-body .hf-leaderboard-table tbody tr td {
        border: 0;
        border-bottom: 1px solid #fff;
        padding: 10px;
        vertical-align: middle; }
        .hf-overlay-modal-stats .hf-modal-body .hf-leaderboard-table tbody tr td:nth-child(4) {
          text-align: center; }
        .hf-overlay-modal-stats .hf-modal-body .hf-leaderboard-table tbody tr td:nth-child(5), .hf-overlay-modal-stats .hf-modal-body .hf-leaderboard-table tbody tr td:nth-child(6) {
          font-family: Frutiger65Bold, sans-serif; }
        .hf-overlay-modal-stats .hf-modal-body .hf-leaderboard-table tbody tr td img {
          width: auto;
          max-height: 45px; }
      .hf-overlay-modal-stats .hf-modal-body .hf-leaderboard-table tbody tr td:first-of-type {
        font-family: Frutiger45Light, sans-serif;
        font-size: 2em;
        text-align: center; }
      .hf-overlay-modal-stats .hf-modal-body .hf-leaderboard-table tbody tr td:nth-child(2), .hf-overlay-modal-stats .hf-modal-body .hf-leaderboard-table tbody tr td:nth-child(7) {
        background: rgba(255, 255, 255, 0.1); }
  .hf-overlay-modal-stats .hf-modal-body .hf-pagination {
    padding-bottom: 20px;
    color: #1a1a1a; }
    .hf-overlay-modal-stats .hf-modal-body .hf-pagination.hide {
      display: none; }
    .hf-overlay-modal-stats .hf-modal-body .hf-pagination .hf-prev, .hf-overlay-modal-stats .hf-modal-body .hf-pagination .hf-next {
      color: #1a1a1a; }
    .hf-overlay-modal-stats .hf-modal-body .hf-pagination .hf-pages {
      display: inline-block; }
      .hf-overlay-modal-stats .hf-modal-body .hf-pagination .hf-pages a {
        display: inline-block;
        padding: 5px;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        margin: 0 5px;
        line-height: 2em;
        color: #1a1a1a; }
        .hf-overlay-modal-stats .hf-modal-body .hf-pagination .hf-pages a.active {
          background: #022b5a;
          color: white; }

.hf-auth-message {
  display: none; }
  .hf-auth-message.show {
    display: block; }
  .hf-auth-message__name {
    font-style: italic; }
  .hf-auth-message .hf-button {
    background-image: url("../imgs/landing/tick.png");
    background-position: 15px center;
    background-repeat: no-repeat; }
  .hf-auth-message__box {
    padding-left: 55px; }
  .hf-auth-message__content {
    opacity: 0;
    transition: opacity 0.3s ease-out; }
    .hf-auth-message__content.active {
      opacity: 1; }

.hf-howto__content {
  text-align: left; }
  .hf-howto__content--video {
    padding: 24px;
    padding-right: 0; }
    @media screen and (max-width: 814px) {
      .hf-howto__content--video {
        padding-right: 24px; } }
    .hf-howto__content--video .hf-videoWrapper {
      position: relative;
      padding-bottom: 55%;
      padding-top: 25px;
      height: 0; }
      @media screen and (min-width: 575px) and (max-width: 814px) {
        .hf-howto__content--video .hf-videoWrapper {
          width: 80%;
          margin: 0 auto; } }
      .hf-howto__content--video .hf-videoWrapper iframe,
      .hf-howto__content--video .hf-videoWrapper object,
      .hf-howto__content--video .hf-videoWrapper embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; }
  .hf-howto__content--list {
    padding: 24px; }

.hf-howto__list {
  margin: 0;
  text-align: left; }
  .hf-howto__list li:last-child {
    font-weight: bold; }

.hf-howto__links {
  margin-top: 13px;
  text-align: right; }
  @media screen and (max-width: 574px) {
    .hf-howto__links {
      margin-top: 20px; } }
  @media screen and (max-width: 814px) {
    .hf-howto__links {
      text-align: left; } }
  .hf-howto__links li {
    display: inline-block; }
    .hf-howto__links li a {
      background: url("../imgs/shared/link_arrow.png") no-repeat 0px 7px;
      color: #022b5a;
      text-decoration: none;
      padding: 4px 10px;
      padding-left: 20px; }
      .hf-howto__links li a:hover {
        text-decoration: underline; }
    @media screen and (max-width: 574px) {
      .hf-howto__links li:first-child {
        border-right: none;
        padding-bottom: 10px; } }

.hf-slider {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  visibility: hidden;
  display: none;
  /* Slider */ }
  .hf-slider.slick-initialized {
    visibility: visible;
    display: block; }
  .hf-slider.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent; }
    @media screen and (max-width: 814px) {
      .hf-modal-body .hf-slider.slick-slider {
        height: 95%; } }
  .hf-slider .slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0; }
    .hf-slider .slick-list:focus {
      outline: none; }
    .hf-slider .slick-list.dragging {
      cursor: pointer;
      cursor: hand; }
  .hf-slider.slick-slider .slick-track,
  .hf-slider.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  .hf-slider .slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block; }
    .hf-slider .slick-track:before, .hf-slider .slick-track:after {
      content: "";
      display: table; }
    .hf-slider .slick-track:after {
      clear: both; }
    .slick-loading .hf-slider .slick-track {
      visibility: hidden; }
  .hf-slider .slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    outline: none;
    display: none; }
    [dir="rtl"] .hf-slider .slick-slide {
      float: right; }
    .hf-slider .slick-slide img {
      display: block; }
    .hf-slider .slick-slide.slick-loading img {
      display: none; }
    .hf-slider .slick-slide.dragging img {
      pointer-events: none; }
    .slick-initialized .hf-slider .slick-slide {
      display: block; }
    .slick-loading .hf-slider .slick-slide {
      visibility: hidden; }
    .slick-vertical .hf-slider .slick-slide {
      display: block;
      height: auto;
      border: 1px solid transparent; }
  .hf-slider .slick-arrow.slick-hidden {
    display: none; }
  .hf-slider .hf-slider-item-wrapper {
    padding: 20px 40px 60px; }
    @media screen and (min-width: 815px) and (max-width: 1040px) {
      .hf-slider .hf-slider-item-wrapper {
        padding: 20px 20px 60px; } }
    @media screen and (max-width: 814px) {
      .hf-slider .hf-slider-item-wrapper {
        padding: 20px 25px 60px; } }
    @media screen and (max-width: 574px) {
      .hf-slider .hf-slider-item-wrapper {
        padding: 20px 5px 0px; } }
    @media screen and (max-height: 480px) {
      .hf-slider .hf-slider-item-wrapper {
        padding: 5px 5px 0px; } }
    .hf-modal-body .hf-slider .hf-slider-item-wrapper {
      padding: 0 32px; }
      @media screen and (max-width: 574px) {
        .hf-modal-body .hf-slider .hf-slider-item-wrapper {
          padding: 0; } }
  .hf-slider .slick-slide {
    height: 100%;
    display: block;
    float: left; }
    .hf-modal-body .hf-slider .slick-slide {
      margin: 20px 0;
      border-right: 1px solid #e6e6e6; }
      .hf-modal-body .hf-slider .slick-slide:last-child, .hf-modal-body .hf-slider .slick-slide:nth-child(3n + 3) {
        border-right: 0; }
      @media screen and (max-width: 814px) {
        .hf-modal-body .hf-slider .slick-slide {
          border: 0;
          margin-bottom: 0; }
          .hf-modal-body .hf-slider .slick-slide:nth-child(2n + 1) {
            border-right: 1px solid #e6e6e6; } }
      @media screen and (max-width: 574px) {
        .hf-modal-body .hf-slider .slick-slide {
          border-left: 0 !important;
          border-right: 0 !important; } }
  .hf-slider .slick-arrow {
    position: absolute;
    height: 39px;
    width: 39px;
    top: 50%;
    margin-top: -20px;
    z-index: 10000;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("../imgs/shared/carousel-chevron.png");
    background-color: rgba(0, 0, 0, 0.5);
    background-position: 50% 50%;
    cursor: pointer; }
    .hf-slider .slick-arrow.hf-slick-prev {
      left: -42px; }
    .hf-slider .slick-arrow.hf-slick-next {
      right: -42px;
      -webkit-transform: rotateY(180deg);
              transform: rotateY(180deg); }
  .hf-slider .slick-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    display: block;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center; }
    .hf-slider .slick-dots li {
      position: relative;
      display: inline-block;
      width: 15px;
      height: 15px;
      margin: 0 10px;
      padding: 0;
      cursor: pointer; }
      .hf-slider .slick-dots li button {
        font-size: 0;
        line-height: 0;
        display: block;
        width: 10px;
        height: 10px;
        padding: 5px;
        cursor: pointer;
        border: 0;
        outline: none;
        background: transparent; }
        .hf-slider .slick-dots li button:before {
          line-height: 10px;
          position: absolute;
          top: 0px;
          left: 0px;
          width: 10px;
          height: 10px;
          content: "";
          text-align: center;
          opacity: 1;
          -webkit-font-smoothing: antialiased;
          background: none;
          border-radius: 50%;
          border: 2px solid #acacac; }
      .hf-slider .slick-dots li.slick-active button:before {
        background: #479ec7;
        border-color: #479ec7; }
    @media screen and (max-width: 814px) {
      .hf-slider .slick-dots {
        display: none !important; } }
    .hf-modal-body .hf-slider .slick-dots {
      bottom: -16px; }

.hf-alert {
  display: none; }
  .hf-alert--success {
    display: block;
    padding-right: 24px; }
  .hf-alert__header {
    background-color: #c6d4a5;
    color: #596146;
    background-image: url("../imgs/game/form_alert_tick.png");
    background-repeat: no-repeat;
    background-position: 15px 10px;
    border-radius: 3px;
    padding: 15px 50px 15px 70px; }
  .hf-alert__details {
    margin-top: 3px;
    background: #f3f3f3;
    border-radius: 3px;
    padding: 20px 30px 30px; }
    @media screen and (max-width: 574px) {
      .hf-alert__details {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex; }
        .hf-alert__details .hf-alert__column--values {
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-flex-direction: column;
              -ms-flex-direction: column;
                  flex-direction: column;
          -webkit-justify-content: space-around;
              -ms-flex-pack: distribute;
                  justify-content: space-around; } }
    .hf-alert__details p {
      margin: 0 0 15px 0; }
  .hf-alert__sharing {
    margin: 20px 0;
    text-align: center;
    width: auto;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .hf-alert__sharing > span {
      -webkit-flex: 3;
          -ms-flex: 3;
              flex: 3; }
    .hf-alert__sharing:before, .hf-alert__sharing:after {
      -webkit-flex: 1;
          -ms-flex: 1;
              flex: 1;
      content: "";
      width: 50px;
      height: 1px;
      background: #aeb5bd;
      display: inline-block;
      vertical-align: middle; }
      @media screen and (max-width: 574px) {
        .hf-alert__sharing:before, .hf-alert__sharing:after {
          display: block;
          margin: 20px auto;
          width: 80px; } }
    .hf-alert__sharing:before {
      margin-right: 10px; }
      @media screen and (max-width: 574px) {
        .hf-alert__sharing:before {
          margin-right: auto;
          margin-top: 0; } }
    .hf-alert__sharing:after {
      margin-left: 10px; }
      @media screen and (max-width: 574px) {
        .hf-alert__sharing:after {
          margin-left: auto;
          margin-bottom: 0; } }
    @media screen and (max-width: 814px) {
      .hf-alert__sharing {
        margin-bottom: 0;
        display: block; } }
    @media screen and (min-width: 575px) and (max-width: 814px) {
      .hf-alert__sharing:before, .hf-alert__sharing:after {
        display: none; } }
    .hf-alert__sharing .hf-share {
      margin: 20px auto 0; }
      @media screen and (min-width: 815px) {
        .hf-alert__sharing .hf-share {
          margin-top: 0;
          -webkit-flex: 3;
              -ms-flex: 3;
                  flex: 3; }
          .hf-alert__sharing .hf-share__icon {
            margin: 0 5px; } }
  .hf-alert__shop {
    width: 100%;
    border-top: 1px solid #e2e2e2;
    top: 40px;
    position: relative;
    text-align: right; }
    @media screen and (max-width: 574px) {
      .hf-alert__shop {
        background: #eaeaea; } }
  .hf-alert__shop__link {
    font-family: Frutiger45Light, sans-serif;
    display: inline-block;
    background: url("../imgs/shared/link_arrow.png") no-repeat 0px 10px;
    padding-left: 23px;
    margin: 25px 24px 25px 0;
    font-size: 1.5em;
    color: #032b5a; }
    @media screen and (max-width: 574px) {
      .hf-alert__shop__link:first-child {
        width: 160px; } }

.hf-share {
  text-align: center;
  display: inline-block; }
  .hf-share__icon {
    display: inline-block;
    margin: 0 10px;
    height: 30px;
    width: 30px;
    vertical-align: bottom;
    cursor: pointer; }
    .hf-share__icon--fb {
      background: url("../imgs/shared/fb_icon_dark.png") no-repeat; }
    .hf-share__icon--twitter {
      background: url("../imgs/shared/twitter_icon_dark.png") no-repeat; }
    .hf-share__icon--gplus {
      background: url("../imgs/shared/gplus_icon_dark.png") no-repeat; }
  .hf-share--light {
    text-align: right;
    display: inline-block;
    margin-bottom: 5px; }
    .hf-share--light .hf-share__icon {
      height: 20px;
      width: 20px;
      margin: 0 5px; }
      .hf-share--light .hf-share__icon--fb {
        background: url("../imgs/shared/fb_icon_light.png") no-repeat; }
      .hf-share--light .hf-share__icon--twitter {
        background: url("../imgs/shared/twitter_icon_light.png") no-repeat; }
      .hf-share--light .hf-share__icon--gplus {
        background: url("../imgs/shared/gplus_icon_light.png") no-repeat; }

.hf-orientation-screen {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("../imgs/shared/bg.jpg") no-repeat center center;
  background-size: cover;
  display: none;
  z-index: 999; }
  .hf-orientation-screen.show {
    display: table; }
  .hf-orientation-screen .hf-center-me {
    display: table-cell;
    vertical-align: middle;
    text-align: center; }
    .hf-orientation-screen .hf-center-me svg {
      width: 50%; }
    .hf-orientation-screen .hf-center-me h2 {
      margin-top: -1.5em; }

.hf-prefriday-copy, .hf-friday-copy {
  display: none; }
  .hf-prefriday-copy.show, .hf-friday-copy.show {
    display: block; }

.hf-terms__content {
  text-align: left;
  padding: 20px 10px; }

.hf-terms__list {
  margin: 0;
  text-align: left; }
  @media screen and (max-width: 574px) {
    .hf-terms__list {
      width: 85%; } }
  .hf-terms__list li {
    line-height: 1.5;
    padding-bottom: 20px; }

.hf-terms__links {
  margin-top: 13px;
  text-align: right; }
  @media screen and (max-width: 574px) {
    .hf-terms__links {
      margin-top: 20px; } }
  @media screen and (max-width: 814px) {
    .hf-terms__links {
      text-align: left; } }
  .hf-terms__links li {
    display: inline-block; }
    .hf-terms__links li a {
      background: url("../imgs/shared/link_arrow.png") no-repeat 0px 6px;
      color: #022b5a;
      text-decoration: none;
      padding: 4px 10px;
      padding-left: 20px; }
      .hf-terms__links li a:hover {
        text-decoration: underline; }
    @media screen and (max-width: 574px) {
      .hf-terms__links li:first-child {
        border-right: none;
        padding-bottom: 10px; } }

.hf-modal__content--productList .hf-winners_tooltip {
  top: auto;
  right: 0;
  color: white;
  font-size: 0.8em;
  background: #419eda; }
  .hf-modal__content--productList .hf-winners_tooltip:before {
    display: none; }
  .hf-modal__content--productList .hf-winners_tooltip:after {
    bottom: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(65, 158, 218, 0);
    border-bottom-color: #419eda;
    border-width: 10px;
    margin-left: -10px; }

.hf-modal__content--productList .hf-icon--tooltip__container {
  position: relative;
  height: 1em;
  width: 20px;
  display: inline-block; }

.hf-modal__content--productList .hf-icon--tooltip__container:hover ~ .hf-winners_tooltip {
  display: block; }

.hf-underline {
  text-decoration: underline !important; }

/*------------------------------------*    #HEADINGS
\*------------------------------------*/
/**
 * Headings 1–6’s corresponding Greek-alphabet abstract classes for double-
 * stranded heading hierarchy: csswizardry.com/2012/02/pragmatic-practical-font-sizing-in-css
 *
 * Use these helper classes to cause other elements to adopt the styling of the
 * respective heading, e.g.:
 *
   <h2 class="alpha">Lorem ipsum</h2>
 *
 */
.hf-alpha {
  font-size: 34px;
  font-size: 2.125rem;
  line-height: 1.4117647059; }
  @media screen and (min-width: 575px) and (max-width: 814px) {
    .hf-alpha {
      font-size: 24px;
      font-size: 1.5rem;
      line-height: 1; } }
  @media screen and (max-width: 574px) {
    .hf-alpha {
      font-size: 22px;
      font-size: 1.375rem;
      line-height: 1.0909090909;
      letter-spacing: -1px; } }

.hf-beta {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.6; }
  @media screen and (min-width: 575px) and (max-width: 814px) {
    .hf-beta {
      font-size: 22px;
      font-size: 1.375rem;
      line-height: 1.0909090909; } }
  @media screen and (max-width: 574px) {
    .hf-beta {
      font-size: 20px;
      font-size: 1.25rem;
      line-height: 1.2;
      letter-spacing: -1px; } }

.hf-gamma {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1; }
  @media screen and (max-width: 574px) {
    .hf-gamma {
      font-size: 22px;
      font-size: 1.375rem;
      line-height: 1.0909090909; } }

.hf-delta {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3333333333; }

.hf-epsilon {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5; }

.hf-zeta {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7142857143; }

/*------------------------------------*    #WIDTHS
\*------------------------------------*/
/**
 * A series of width helper classes that you can use to size things like grid
 * systems. Classes can take a fraction-like format (e.g. `.u-2/3`) or a spoken-
 * word format (e.g. `.u-2-of-3`). Use these in your markup:
 *
 * <div class="u-7/12">
 */
.hf-u-1\/1 {
  width: 100% !important; }

.hf-u-1\/2 {
  width: 50% !important; }

.hf-u-1\/3 {
  width: 33.3333333333% !important; }

.hf-u-2\/3 {
  width: 66.6666666667% !important; }

.hf-u-1\/4 {
  width: 25% !important; }

.hf-u-2\/4 {
  width: 50% !important; }

.hf-u-3\/4 {
  width: 75% !important; }

.hf-u-1\/5 {
  width: 20% !important; }

.hf-u-2\/5 {
  width: 40% !important; }

.hf-u-3\/5 {
  width: 60% !important; }

.hf-u-4\/5 {
  width: 80% !important; }

.hf-u-1\/7 {
  width: 14.2857142857% !important; }

.hf-u-2\/7 {
  width: 28.5714285714% !important; }

.hf-u-3\/7 {
  width: 42.8571428571% !important; }

.hf-u-4\/7 {
  width: 57.1428571429% !important; }

.hf-u-5\/7 {
  width: 71.4285714286% !important; }

.hf-u-6\/7 {
  width: 85.7142857143% !important; }

.hf-u-1\/10 {
  width: 10% !important; }

.hf-u-2\/10 {
  width: 20% !important; }

.hf-u-3\/10 {
  width: 30% !important; }

.hf-u-4\/10 {
  width: 40% !important; }

.hf-u-5\/10 {
  width: 50% !important; }

.hf-u-6\/10 {
  width: 60% !important; }

.hf-u-7\/10 {
  width: 70% !important; }

.hf-u-8\/10 {
  width: 80% !important; }

.hf-u-9\/10 {
  width: 90% !important; }

/*------------------------------------*    #WIDTHS-RESPONSIVE
\*------------------------------------*/
/**
 * Responsive width classes based on your responsive settings.
 */
@media screen and (max-height: 480px) {
  .hf-u-1\/1-small-palm {
    width: 100% !important; }
  .hf-u-1\/2-small-palm {
    width: 50% !important; }
  .hf-u-1\/3-small-palm {
    width: 33.3333333333% !important; }
  .hf-u-2\/3-small-palm {
    width: 66.6666666667% !important; }
  .hf-u-1\/4-small-palm {
    width: 25% !important; }
  .hf-u-2\/4-small-palm {
    width: 50% !important; }
  .hf-u-3\/4-small-palm {
    width: 75% !important; }
  .hf-u-1\/5-small-palm {
    width: 20% !important; }
  .hf-u-2\/5-small-palm {
    width: 40% !important; }
  .hf-u-3\/5-small-palm {
    width: 60% !important; }
  .hf-u-4\/5-small-palm {
    width: 80% !important; }
  .hf-u-1\/7-small-palm {
    width: 14.2857142857% !important; }
  .hf-u-2\/7-small-palm {
    width: 28.5714285714% !important; }
  .hf-u-3\/7-small-palm {
    width: 42.8571428571% !important; }
  .hf-u-4\/7-small-palm {
    width: 57.1428571429% !important; }
  .hf-u-5\/7-small-palm {
    width: 71.4285714286% !important; }
  .hf-u-6\/7-small-palm {
    width: 85.7142857143% !important; }
  .hf-u-1\/10-small-palm {
    width: 10% !important; }
  .hf-u-2\/10-small-palm {
    width: 20% !important; }
  .hf-u-3\/10-small-palm {
    width: 30% !important; }
  .hf-u-4\/10-small-palm {
    width: 40% !important; }
  .hf-u-5\/10-small-palm {
    width: 50% !important; }
  .hf-u-6\/10-small-palm {
    width: 60% !important; }
  .hf-u-7\/10-small-palm {
    width: 70% !important; }
  .hf-u-8\/10-small-palm {
    width: 80% !important; }
  .hf-u-9\/10-small-palm {
    width: 90% !important; } }

@media screen and (max-width: 574px) {
  .hf-u-1\/1-palm {
    width: 100% !important; }
  .hf-u-1\/2-palm {
    width: 50% !important; }
  .hf-u-1\/3-palm {
    width: 33.3333333333% !important; }
  .hf-u-2\/3-palm {
    width: 66.6666666667% !important; }
  .hf-u-1\/4-palm {
    width: 25% !important; }
  .hf-u-2\/4-palm {
    width: 50% !important; }
  .hf-u-3\/4-palm {
    width: 75% !important; }
  .hf-u-1\/5-palm {
    width: 20% !important; }
  .hf-u-2\/5-palm {
    width: 40% !important; }
  .hf-u-3\/5-palm {
    width: 60% !important; }
  .hf-u-4\/5-palm {
    width: 80% !important; }
  .hf-u-1\/7-palm {
    width: 14.2857142857% !important; }
  .hf-u-2\/7-palm {
    width: 28.5714285714% !important; }
  .hf-u-3\/7-palm {
    width: 42.8571428571% !important; }
  .hf-u-4\/7-palm {
    width: 57.1428571429% !important; }
  .hf-u-5\/7-palm {
    width: 71.4285714286% !important; }
  .hf-u-6\/7-palm {
    width: 85.7142857143% !important; }
  .hf-u-1\/10-palm {
    width: 10% !important; }
  .hf-u-2\/10-palm {
    width: 20% !important; }
  .hf-u-3\/10-palm {
    width: 30% !important; }
  .hf-u-4\/10-palm {
    width: 40% !important; }
  .hf-u-5\/10-palm {
    width: 50% !important; }
  .hf-u-6\/10-palm {
    width: 60% !important; }
  .hf-u-7\/10-palm {
    width: 70% !important; }
  .hf-u-8\/10-palm {
    width: 80% !important; }
  .hf-u-9\/10-palm {
    width: 90% !important; } }

@media screen and (min-width: 575px) and (max-width: 814px) {
  .hf-u-1\/1-lap {
    width: 100% !important; }
  .hf-u-1\/2-lap {
    width: 50% !important; }
  .hf-u-1\/3-lap {
    width: 33.3333333333% !important; }
  .hf-u-2\/3-lap {
    width: 66.6666666667% !important; }
  .hf-u-1\/4-lap {
    width: 25% !important; }
  .hf-u-2\/4-lap {
    width: 50% !important; }
  .hf-u-3\/4-lap {
    width: 75% !important; }
  .hf-u-1\/5-lap {
    width: 20% !important; }
  .hf-u-2\/5-lap {
    width: 40% !important; }
  .hf-u-3\/5-lap {
    width: 60% !important; }
  .hf-u-4\/5-lap {
    width: 80% !important; }
  .hf-u-1\/7-lap {
    width: 14.2857142857% !important; }
  .hf-u-2\/7-lap {
    width: 28.5714285714% !important; }
  .hf-u-3\/7-lap {
    width: 42.8571428571% !important; }
  .hf-u-4\/7-lap {
    width: 57.1428571429% !important; }
  .hf-u-5\/7-lap {
    width: 71.4285714286% !important; }
  .hf-u-6\/7-lap {
    width: 85.7142857143% !important; }
  .hf-u-1\/10-lap {
    width: 10% !important; }
  .hf-u-2\/10-lap {
    width: 20% !important; }
  .hf-u-3\/10-lap {
    width: 30% !important; }
  .hf-u-4\/10-lap {
    width: 40% !important; }
  .hf-u-5\/10-lap {
    width: 50% !important; }
  .hf-u-6\/10-lap {
    width: 60% !important; }
  .hf-u-7\/10-lap {
    width: 70% !important; }
  .hf-u-8\/10-lap {
    width: 80% !important; }
  .hf-u-9\/10-lap {
    width: 90% !important; } }

@media screen and (min-width: 575px) and (max-width: 682px) {
  .hf-u-1\/1-small-lap {
    width: 100% !important; }
  .hf-u-1\/2-small-lap {
    width: 50% !important; }
  .hf-u-1\/3-small-lap {
    width: 33.3333333333% !important; }
  .hf-u-2\/3-small-lap {
    width: 66.6666666667% !important; }
  .hf-u-1\/4-small-lap {
    width: 25% !important; }
  .hf-u-2\/4-small-lap {
    width: 50% !important; }
  .hf-u-3\/4-small-lap {
    width: 75% !important; }
  .hf-u-1\/5-small-lap {
    width: 20% !important; }
  .hf-u-2\/5-small-lap {
    width: 40% !important; }
  .hf-u-3\/5-small-lap {
    width: 60% !important; }
  .hf-u-4\/5-small-lap {
    width: 80% !important; }
  .hf-u-1\/7-small-lap {
    width: 14.2857142857% !important; }
  .hf-u-2\/7-small-lap {
    width: 28.5714285714% !important; }
  .hf-u-3\/7-small-lap {
    width: 42.8571428571% !important; }
  .hf-u-4\/7-small-lap {
    width: 57.1428571429% !important; }
  .hf-u-5\/7-small-lap {
    width: 71.4285714286% !important; }
  .hf-u-6\/7-small-lap {
    width: 85.7142857143% !important; }
  .hf-u-1\/10-small-lap {
    width: 10% !important; }
  .hf-u-2\/10-small-lap {
    width: 20% !important; }
  .hf-u-3\/10-small-lap {
    width: 30% !important; }
  .hf-u-4\/10-small-lap {
    width: 40% !important; }
  .hf-u-5\/10-small-lap {
    width: 50% !important; }
  .hf-u-6\/10-small-lap {
    width: 60% !important; }
  .hf-u-7\/10-small-lap {
    width: 70% !important; }
  .hf-u-8\/10-small-lap {
    width: 80% !important; }
  .hf-u-9\/10-small-lap {
    width: 90% !important; } }

@media screen and (min-width: 814px) and (max-width: 1040px) and (orientation: landscape) {
  .hf-u-1\/1-lap-landscape {
    width: 100% !important; }
  .hf-u-1\/2-lap-landscape {
    width: 50% !important; }
  .hf-u-1\/3-lap-landscape {
    width: 33.3333333333% !important; }
  .hf-u-2\/3-lap-landscape {
    width: 66.6666666667% !important; }
  .hf-u-1\/4-lap-landscape {
    width: 25% !important; }
  .hf-u-2\/4-lap-landscape {
    width: 50% !important; }
  .hf-u-3\/4-lap-landscape {
    width: 75% !important; }
  .hf-u-1\/5-lap-landscape {
    width: 20% !important; }
  .hf-u-2\/5-lap-landscape {
    width: 40% !important; }
  .hf-u-3\/5-lap-landscape {
    width: 60% !important; }
  .hf-u-4\/5-lap-landscape {
    width: 80% !important; }
  .hf-u-1\/7-lap-landscape {
    width: 14.2857142857% !important; }
  .hf-u-2\/7-lap-landscape {
    width: 28.5714285714% !important; }
  .hf-u-3\/7-lap-landscape {
    width: 42.8571428571% !important; }
  .hf-u-4\/7-lap-landscape {
    width: 57.1428571429% !important; }
  .hf-u-5\/7-lap-landscape {
    width: 71.4285714286% !important; }
  .hf-u-6\/7-lap-landscape {
    width: 85.7142857143% !important; }
  .hf-u-1\/10-lap-landscape {
    width: 10% !important; }
  .hf-u-2\/10-lap-landscape {
    width: 20% !important; }
  .hf-u-3\/10-lap-landscape {
    width: 30% !important; }
  .hf-u-4\/10-lap-landscape {
    width: 40% !important; }
  .hf-u-5\/10-lap-landscape {
    width: 50% !important; }
  .hf-u-6\/10-lap-landscape {
    width: 60% !important; }
  .hf-u-7\/10-lap-landscape {
    width: 70% !important; }
  .hf-u-8\/10-lap-landscape {
    width: 80% !important; }
  .hf-u-9\/10-lap-landscape {
    width: 90% !important; } }

@media screen and (max-width: 814px) {
  .hf-u-1\/1-portable {
    width: 100% !important; }
  .hf-u-1\/2-portable {
    width: 50% !important; }
  .hf-u-1\/3-portable {
    width: 33.3333333333% !important; }
  .hf-u-2\/3-portable {
    width: 66.6666666667% !important; }
  .hf-u-1\/4-portable {
    width: 25% !important; }
  .hf-u-2\/4-portable {
    width: 50% !important; }
  .hf-u-3\/4-portable {
    width: 75% !important; }
  .hf-u-1\/5-portable {
    width: 20% !important; }
  .hf-u-2\/5-portable {
    width: 40% !important; }
  .hf-u-3\/5-portable {
    width: 60% !important; }
  .hf-u-4\/5-portable {
    width: 80% !important; }
  .hf-u-1\/7-portable {
    width: 14.2857142857% !important; }
  .hf-u-2\/7-portable {
    width: 28.5714285714% !important; }
  .hf-u-3\/7-portable {
    width: 42.8571428571% !important; }
  .hf-u-4\/7-portable {
    width: 57.1428571429% !important; }
  .hf-u-5\/7-portable {
    width: 71.4285714286% !important; }
  .hf-u-6\/7-portable {
    width: 85.7142857143% !important; }
  .hf-u-1\/10-portable {
    width: 10% !important; }
  .hf-u-2\/10-portable {
    width: 20% !important; }
  .hf-u-3\/10-portable {
    width: 30% !important; }
  .hf-u-4\/10-portable {
    width: 40% !important; }
  .hf-u-5\/10-portable {
    width: 50% !important; }
  .hf-u-6\/10-portable {
    width: 60% !important; }
  .hf-u-7\/10-portable {
    width: 70% !important; }
  .hf-u-8\/10-portable {
    width: 80% !important; }
  .hf-u-9\/10-portable {
    width: 90% !important; } }

@media screen and (min-width: 815px) {
  .hf-u-1\/1-desk {
    width: 100% !important; }
  .hf-u-1\/2-desk {
    width: 50% !important; }
  .hf-u-1\/3-desk {
    width: 33.3333333333% !important; }
  .hf-u-2\/3-desk {
    width: 66.6666666667% !important; }
  .hf-u-1\/4-desk {
    width: 25% !important; }
  .hf-u-2\/4-desk {
    width: 50% !important; }
  .hf-u-3\/4-desk {
    width: 75% !important; }
  .hf-u-1\/5-desk {
    width: 20% !important; }
  .hf-u-2\/5-desk {
    width: 40% !important; }
  .hf-u-3\/5-desk {
    width: 60% !important; }
  .hf-u-4\/5-desk {
    width: 80% !important; }
  .hf-u-1\/7-desk {
    width: 14.2857142857% !important; }
  .hf-u-2\/7-desk {
    width: 28.5714285714% !important; }
  .hf-u-3\/7-desk {
    width: 42.8571428571% !important; }
  .hf-u-4\/7-desk {
    width: 57.1428571429% !important; }
  .hf-u-5\/7-desk {
    width: 71.4285714286% !important; }
  .hf-u-6\/7-desk {
    width: 85.7142857143% !important; }
  .hf-u-1\/10-desk {
    width: 10% !important; }
  .hf-u-2\/10-desk {
    width: 20% !important; }
  .hf-u-3\/10-desk {
    width: 30% !important; }
  .hf-u-4\/10-desk {
    width: 40% !important; }
  .hf-u-5\/10-desk {
    width: 50% !important; }
  .hf-u-6\/10-desk {
    width: 60% !important; }
  .hf-u-7\/10-desk {
    width: 70% !important; }
  .hf-u-8\/10-desk {
    width: 80% !important; }
  .hf-u-9\/10-desk {
    width: 90% !important; } }

@media screen and (min-width: 815px) and (max-width: 1040px) {
  .hf-u-1\/1-small-desk {
    width: 100% !important; }
  .hf-u-1\/2-small-desk {
    width: 50% !important; }
  .hf-u-1\/3-small-desk {
    width: 33.3333333333% !important; }
  .hf-u-2\/3-small-desk {
    width: 66.6666666667% !important; }
  .hf-u-1\/4-small-desk {
    width: 25% !important; }
  .hf-u-2\/4-small-desk {
    width: 50% !important; }
  .hf-u-3\/4-small-desk {
    width: 75% !important; }
  .hf-u-1\/5-small-desk {
    width: 20% !important; }
  .hf-u-2\/5-small-desk {
    width: 40% !important; }
  .hf-u-3\/5-small-desk {
    width: 60% !important; }
  .hf-u-4\/5-small-desk {
    width: 80% !important; }
  .hf-u-1\/7-small-desk {
    width: 14.2857142857% !important; }
  .hf-u-2\/7-small-desk {
    width: 28.5714285714% !important; }
  .hf-u-3\/7-small-desk {
    width: 42.8571428571% !important; }
  .hf-u-4\/7-small-desk {
    width: 57.1428571429% !important; }
  .hf-u-5\/7-small-desk {
    width: 71.4285714286% !important; }
  .hf-u-6\/7-small-desk {
    width: 85.7142857143% !important; }
  .hf-u-1\/10-small-desk {
    width: 10% !important; }
  .hf-u-2\/10-small-desk {
    width: 20% !important; }
  .hf-u-3\/10-small-desk {
    width: 30% !important; }
  .hf-u-4\/10-small-desk {
    width: 40% !important; }
  .hf-u-5\/10-small-desk {
    width: 50% !important; }
  .hf-u-6\/10-small-desk {
    width: 60% !important; }
  .hf-u-7\/10-small-desk {
    width: 70% !important; }
  .hf-u-8\/10-small-desk {
    width: 80% !important; }
  .hf-u-9\/10-small-desk {
    width: 90% !important; } }

/*------------------------------------*    #CLEARFIX
\*------------------------------------*/
/**
 * Micro clearfix, as per: css-101.org/articles/clearfix/latest-new-clearfix-so-far.php
 * Extend the clearfix class with Sass to avoid the `.clearfix` class appearing
 * over and over in your markup.
 */
.clearfix:after {
  content: "";
  display: table;
  clear: both; }

.hf-state--warning {
  color: #fa4444; }

.hf-state--active {
  color: #4a9d5d; }

.hf-state--countdown {
  color: #bcc0c5; }

.hf-glow__text {
  text-shadow: 0 0 0.2em #5CB6C9, 0 0 0.2em #5CB6C9; }

.hf-glow__text--black {
  text-shadow: 0 0 0.1em #022b5a, 0 0 0.1em #022b5a; }

.hf-glow__text--warning {
  color: #fa5353;
  -webkit-text-stroke: 0.03em #f92626;
  text-shadow: 0px 0px 2px #fa4444; }

.hf-glow__text--active {
  text-shadow: 0 0 0.2em #4a9d5d, 0 0 0.2em #4a9d5d; }

.hf-link {
  text-decoration: underline;
  opacity: 0.7;
  transition: opacity 0.3s ease; }
  .hf-link:hover {
    cursor: pointer;
    opacity: 1; }

.hf-layout--noMargin {
  margin-left: 0; }

.hf-layout__item--noPadding {
  padding-left: 0 !important; }

@media screen and (max-width: 574px) {
  .hf-layout__item--submit {
    padding-right: 24px; } }

.hf-layout__item--productList {
  background: linear-gradient(to bottom, #eeeeee 0%, #ffffff 50%, #eeeeee 100%); }
  .hf-layout__item--productList:focus {
    outline: initial; }

.hf-hide {
  display: none !important; }
/*# sourceMappingURL=style.css.map */