@charset "UTF-8";
/*
* BEM CSS Methology : http://getbem.com/ https://www.lullabot.com/articles/bem-atomic-design-a-css-architecture-worth-loving
* CSS Guidelines by Harry Roberts : https://github.com/csswizardry/CSS-Guidelines
*/
/* ------------------------------------*\
    $TABLE OF CONTENTS
    based generally on Harry Roberts excellent CSS Guidelines https://github.com/csswizardry/CSS-Guidelines
\*------------------------------------ */
/**
 * VARIABLES..............................Declarations of Sass variables
 * .....Colors
 * .....Typography
 * .....Layout
 * .....Defaults
 * .....Breakpoints
 * MIXINS.................................Sass mixins
 * RESET..................................Set reset defaults
 * GLOBAL CLASSES.........................Set reset defaults
 * GLOBAL ELEMENTS........................Establish global styles
 * .....Main
 * .....Headings
 * .....Text-related elements (p, blockquote, lists)
 * .....Defaults
 * .....Breakpoints
 * TYPOGRAPHY------------------------------
 * MEDIA------------------------------
 * LAYOUT------------------------------
 * NAVIGATION------------------------------
 * TOC To Be Continued
 */
/* ------------------------------------*\
    $VENDORS
\*------------------------------------ */
/* ==========================================================================
    GRIDLEX
    Just a Flexbox Grid System - v. 2.7.1
========================================================================== */
[class~="u-grid"],
[class*="u-grid-"],
[class*="u-grid_"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin: 0 -0.75rem; }

[class~="u-col"],
[class*="u-col-"],
[class*="u-col_"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 0.75rem 1.5rem;
  max-width: 100%; }

[class~="u-col"],
[class*="u-col_"] {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0%;
          flex: 1 1 0%; }

[class*="u-col-"] {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none; }

[class~="u-grid"][class~="u-col"],
[class~="u-grid"][class*="u-col-"],
[class~="u-grid"][class*="u-col_"],
[class*="u-grid-"][class~="u-col"],
[class*="u-grid-"][class*="u-col-"],
[class*="u-grid-"][class*="u-col_"],
[class*="u-grid_"][class~="u-col"],
[class*="u-grid_"][class*="u-col-"],
[class*="u-grid_"][class*="u-col_"] {
  margin: 0;
  padding: 0; }

/************************
    HELPERS SUFFIXES
*************************/
[class*="u-grid-"][class*="-noGutter"] {
  margin: 0; }
  [class*="u-grid-"][class*="-noGutter"] > [class~="u-col"],
  [class*="u-grid-"][class*="-noGutter"] > [class*="u-col-"] {
    padding: 0; }

[class*="u-grid-"][class*="-noWrap"] {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap; }

[class*="u-grid-"][class*="-center"] {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

[class*="u-grid-"][class*="-right"] {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-left: auto; }

[class*="u-grid-"][class*="-top"] {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }

[class*="u-grid-"][class*="-middle"] {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

[class*="u-grid-"][class*="-bottom"] {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end; }

[class*="u-grid-"][class*="-reverse"] {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse; }

[class*="u-grid-"][class*="-column"] {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  [class*="u-grid-"][class*="-column"] > [class*="u-col-"] {
    -ms-flex-preferred-size: auto;
        flex-basis: auto; }

[class*="u-grid-"][class*="-column-reverse"] {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse; }

[class*="u-grid-"][class*="-spaceBetween"] {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

[class*="u-grid-"][class*="-spaceAround"] {
  -ms-flex-pack: distribute;
      justify-content: space-around; }

[class*="u-grid-"][class*="-equalHeight"] > [class~="u-col"],
[class*="u-grid-"][class*="-equalHeight"] > [class*="u-col-"],
[class*="u-grid-"][class*="-equalHeight"] > [class*="u-col_"] {
  -ms-flex-item-align: stretch;
      align-self: stretch; }
  [class*="u-grid-"][class*="-equalHeight"] > [class~="u-col"] > *,
  [class*="u-grid-"][class*="-equalHeight"] > [class*="u-col-"] > *,
  [class*="u-grid-"][class*="-equalHeight"] > [class*="u-col_"] > * {
    height: 100%; }

[class*="u-grid-"][class*="-noBottom"] > [class~="u-col"],
[class*="u-grid-"][class*="-noBottom"] > [class*="u-col-"],
[class*="u-grid-"][class*="-noBottom"] > [class*="u-col_"] {
  padding-bottom: 0; }

[class*="u-col-"][class*="-top"] {
  -ms-flex-item-align: start;
      align-self: flex-start; }

[class*="u-col-"][class*="-middle"] {
  -ms-flex-item-align: center;
      align-self: center; }

[class*="u-col-"][class*="-bottom"] {
  -ms-flex-item-align: end;
      align-self: flex-end; }

[class*="u-col-"][class*="-first"] {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1; }

[class*="u-col-"][class*="-last"] {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1; }

/************************
    GRID BY NUMBER
*************************/
[class*="u-grid-1"] > [class~="u-col"],
[class*="u-grid-1"] > [class*="u-col-"],
[class*="u-grid-1"] > [class*="u-col_"] {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%; }

[class*="u-grid-2"] > [class~="u-col"],
[class*="u-grid-2"] > [class*="u-col-"],
[class*="u-grid-2"] > [class*="u-col_"] {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  max-width: 50%; }

[class*="u-grid-3"] > [class~="u-col"],
[class*="u-grid-3"] > [class*="u-col-"],
[class*="u-grid-3"] > [class*="u-col_"] {
  -ms-flex-preferred-size: 33.33333%;
      flex-basis: 33.33333%;
  max-width: 33.33333%; }

[class*="u-grid-4"] > [class~="u-col"],
[class*="u-grid-4"] > [class*="u-col-"],
[class*="u-grid-4"] > [class*="u-col_"] {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  max-width: 25%; }

[class*="u-grid-5"] > [class~="u-col"],
[class*="u-grid-5"] > [class*="u-col-"],
[class*="u-grid-5"] > [class*="u-col_"] {
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
  max-width: 20%; }

[class*="u-grid-6"] > [class~="u-col"],
[class*="u-grid-6"] > [class*="u-col-"],
[class*="u-grid-6"] > [class*="u-col_"] {
  -ms-flex-preferred-size: 16.66667%;
      flex-basis: 16.66667%;
  max-width: 16.66667%; }

[class*="u-grid-7"] > [class~="u-col"],
[class*="u-grid-7"] > [class*="u-col-"],
[class*="u-grid-7"] > [class*="u-col_"] {
  -ms-flex-preferred-size: 14.28571%;
      flex-basis: 14.28571%;
  max-width: 14.28571%; }

[class*="u-grid-8"] > [class~="u-col"],
[class*="u-grid-8"] > [class*="u-col-"],
[class*="u-grid-8"] > [class*="u-col_"] {
  -ms-flex-preferred-size: 12.5%;
      flex-basis: 12.5%;
  max-width: 12.5%; }

[class*="u-grid-9"] > [class~="u-col"],
[class*="u-grid-9"] > [class*="u-col-"],
[class*="u-grid-9"] > [class*="u-col_"] {
  -ms-flex-preferred-size: 11.11111%;
      flex-basis: 11.11111%;
  max-width: 11.11111%; }

[class*="u-grid-10"] > [class~="u-col"],
[class*="u-grid-10"] > [class*="u-col-"],
[class*="u-grid-10"] > [class*="u-col_"] {
  -ms-flex-preferred-size: 10%;
      flex-basis: 10%;
  max-width: 10%; }

[class*="u-grid-11"] > [class~="u-col"],
[class*="u-grid-11"] > [class*="u-col-"],
[class*="u-grid-11"] > [class*="u-col_"] {
  -ms-flex-preferred-size: 9.09091%;
      flex-basis: 9.09091%;
  max-width: 9.09091%; }

[class*="u-grid-12"] > [class~="u-col"],
[class*="u-grid-12"] > [class*="u-col-"],
[class*="u-grid-12"] > [class*="u-col_"] {
  -ms-flex-preferred-size: 8.33333%;
      flex-basis: 8.33333%;
  max-width: 8.33333%; }

@media (max-width: 576px) {
  [class*="_mobile-1"] > [class~="u-col"],
  [class*="_mobile-1"] > [class*="u-col-"],
  [class*="_mobile-1"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%; }
  [class*="_mobile-2"] > [class~="u-col"],
  [class*="_mobile-2"] > [class*="u-col-"],
  [class*="_mobile-2"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%; }
  [class*="_mobile-3"] > [class~="u-col"],
  [class*="_mobile-3"] > [class*="u-col-"],
  [class*="_mobile-3"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
    max-width: 33.33333%; }
  [class*="_mobile-4"] > [class~="u-col"],
  [class*="_mobile-4"] > [class*="u-col-"],
  [class*="_mobile-4"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%; }
  [class*="_mobile-5"] > [class~="u-col"],
  [class*="_mobile-5"] > [class*="u-col-"],
  [class*="_mobile-5"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
    max-width: 20%; }
  [class*="_mobile-6"] > [class~="u-col"],
  [class*="_mobile-6"] > [class*="u-col-"],
  [class*="_mobile-6"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
    max-width: 16.66667%; }
  [class*="_mobile-7"] > [class~="u-col"],
  [class*="_mobile-7"] > [class*="u-col-"],
  [class*="_mobile-7"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 14.28571%;
        flex-basis: 14.28571%;
    max-width: 14.28571%; }
  [class*="_mobile-8"] > [class~="u-col"],
  [class*="_mobile-8"] > [class*="u-col-"],
  [class*="_mobile-8"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 12.5%;
        flex-basis: 12.5%;
    max-width: 12.5%; }
  [class*="_mobile-9"] > [class~="u-col"],
  [class*="_mobile-9"] > [class*="u-col-"],
  [class*="_mobile-9"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 11.11111%;
        flex-basis: 11.11111%;
    max-width: 11.11111%; }
  [class*="_mobile-10"] > [class~="u-col"],
  [class*="_mobile-10"] > [class*="u-col-"],
  [class*="_mobile-10"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
    max-width: 10%; }
  [class*="_mobile-11"] > [class~="u-col"],
  [class*="_mobile-11"] > [class*="u-col-"],
  [class*="_mobile-11"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 9.09091%;
        flex-basis: 9.09091%;
    max-width: 9.09091%; }
  [class*="_mobile-12"] > [class~="u-col"],
  [class*="_mobile-12"] > [class*="u-col-"],
  [class*="_mobile-12"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
    max-width: 8.33333%; } }

@media (max-width: 768px) {
  [class*="_tablet-1"] > [class~="u-col"],
  [class*="_tablet-1"] > [class*="u-col-"],
  [class*="_tablet-1"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%; }
  [class*="_tablet-2"] > [class~="u-col"],
  [class*="_tablet-2"] > [class*="u-col-"],
  [class*="_tablet-2"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%; }
  [class*="_tablet-3"] > [class~="u-col"],
  [class*="_tablet-3"] > [class*="u-col-"],
  [class*="_tablet-3"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
    max-width: 33.33333%; }
  [class*="_tablet-4"] > [class~="u-col"],
  [class*="_tablet-4"] > [class*="u-col-"],
  [class*="_tablet-4"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%; }
  [class*="_tablet-5"] > [class~="u-col"],
  [class*="_tablet-5"] > [class*="u-col-"],
  [class*="_tablet-5"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
    max-width: 20%; }
  [class*="_tablet-6"] > [class~="u-col"],
  [class*="_tablet-6"] > [class*="u-col-"],
  [class*="_tablet-6"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
    max-width: 16.66667%; }
  [class*="_tablet-7"] > [class~="u-col"],
  [class*="_tablet-7"] > [class*="u-col-"],
  [class*="_tablet-7"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 14.28571%;
        flex-basis: 14.28571%;
    max-width: 14.28571%; }
  [class*="_tablet-8"] > [class~="u-col"],
  [class*="_tablet-8"] > [class*="u-col-"],
  [class*="_tablet-8"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 12.5%;
        flex-basis: 12.5%;
    max-width: 12.5%; }
  [class*="_tablet-9"] > [class~="u-col"],
  [class*="_tablet-9"] > [class*="u-col-"],
  [class*="_tablet-9"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 11.11111%;
        flex-basis: 11.11111%;
    max-width: 11.11111%; }
  [class*="_tablet-10"] > [class~="u-col"],
  [class*="_tablet-10"] > [class*="u-col-"],
  [class*="_tablet-10"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
    max-width: 10%; }
  [class*="_tablet-11"] > [class~="u-col"],
  [class*="_tablet-11"] > [class*="u-col-"],
  [class*="_tablet-11"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 9.09091%;
        flex-basis: 9.09091%;
    max-width: 9.09091%; }
  [class*="_tablet-12"] > [class~="u-col"],
  [class*="_tablet-12"] > [class*="u-col-"],
  [class*="_tablet-12"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
    max-width: 8.33333%; } }

@media (max-width: 1024px) {
  [class*="_desktop-1"] > [class~="u-col"],
  [class*="_desktop-1"] > [class*="u-col-"],
  [class*="_desktop-1"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%; }
  [class*="_desktop-2"] > [class~="u-col"],
  [class*="_desktop-2"] > [class*="u-col-"],
  [class*="_desktop-2"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%; }
  [class*="_desktop-3"] > [class~="u-col"],
  [class*="_desktop-3"] > [class*="u-col-"],
  [class*="_desktop-3"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
    max-width: 33.33333%; }
  [class*="_desktop-4"] > [class~="u-col"],
  [class*="_desktop-4"] > [class*="u-col-"],
  [class*="_desktop-4"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%; }
  [class*="_desktop-5"] > [class~="u-col"],
  [class*="_desktop-5"] > [class*="u-col-"],
  [class*="_desktop-5"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
    max-width: 20%; }
  [class*="_desktop-6"] > [class~="u-col"],
  [class*="_desktop-6"] > [class*="u-col-"],
  [class*="_desktop-6"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
    max-width: 16.66667%; }
  [class*="_desktop-7"] > [class~="u-col"],
  [class*="_desktop-7"] > [class*="u-col-"],
  [class*="_desktop-7"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 14.28571%;
        flex-basis: 14.28571%;
    max-width: 14.28571%; }
  [class*="_desktop-8"] > [class~="u-col"],
  [class*="_desktop-8"] > [class*="u-col-"],
  [class*="_desktop-8"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 12.5%;
        flex-basis: 12.5%;
    max-width: 12.5%; }
  [class*="_desktop-9"] > [class~="u-col"],
  [class*="_desktop-9"] > [class*="u-col-"],
  [class*="_desktop-9"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 11.11111%;
        flex-basis: 11.11111%;
    max-width: 11.11111%; }
  [class*="_desktop-10"] > [class~="u-col"],
  [class*="_desktop-10"] > [class*="u-col-"],
  [class*="_desktop-10"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
    max-width: 10%; }
  [class*="_desktop-11"] > [class~="u-col"],
  [class*="_desktop-11"] > [class*="u-col-"],
  [class*="_desktop-11"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 9.09091%;
        flex-basis: 9.09091%;
    max-width: 9.09091%; }
  [class*="_desktop-12"] > [class~="u-col"],
  [class*="_desktop-12"] > [class*="u-col-"],
  [class*="_desktop-12"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
    max-width: 8.33333%; } }

@media (max-width: 1200px) {
  [class*="_wide-1"] > [class~="u-col"],
  [class*="_wide-1"] > [class*="u-col-"],
  [class*="_wide-1"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%; }
  [class*="_wide-2"] > [class~="u-col"],
  [class*="_wide-2"] > [class*="u-col-"],
  [class*="_wide-2"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%; }
  [class*="_wide-3"] > [class~="u-col"],
  [class*="_wide-3"] > [class*="u-col-"],
  [class*="_wide-3"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
    max-width: 33.33333%; }
  [class*="_wide-4"] > [class~="u-col"],
  [class*="_wide-4"] > [class*="u-col-"],
  [class*="_wide-4"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%; }
  [class*="_wide-5"] > [class~="u-col"],
  [class*="_wide-5"] > [class*="u-col-"],
  [class*="_wide-5"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
    max-width: 20%; }
  [class*="_wide-6"] > [class~="u-col"],
  [class*="_wide-6"] > [class*="u-col-"],
  [class*="_wide-6"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
    max-width: 16.66667%; }
  [class*="_wide-7"] > [class~="u-col"],
  [class*="_wide-7"] > [class*="u-col-"],
  [class*="_wide-7"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 14.28571%;
        flex-basis: 14.28571%;
    max-width: 14.28571%; }
  [class*="_wide-8"] > [class~="u-col"],
  [class*="_wide-8"] > [class*="u-col-"],
  [class*="_wide-8"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 12.5%;
        flex-basis: 12.5%;
    max-width: 12.5%; }
  [class*="_wide-9"] > [class~="u-col"],
  [class*="_wide-9"] > [class*="u-col-"],
  [class*="_wide-9"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 11.11111%;
        flex-basis: 11.11111%;
    max-width: 11.11111%; }
  [class*="_wide-10"] > [class~="u-col"],
  [class*="_wide-10"] > [class*="u-col-"],
  [class*="_wide-10"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
    max-width: 10%; }
  [class*="_wide-11"] > [class~="u-col"],
  [class*="_wide-11"] > [class*="u-col-"],
  [class*="_wide-11"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 9.09091%;
        flex-basis: 9.09091%;
    max-width: 9.09091%; }
  [class*="_wide-12"] > [class~="u-col"],
  [class*="_wide-12"] > [class*="u-col-"],
  [class*="_wide-12"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
    max-width: 8.33333%; } }

@media (max-width: 1300px) {
  [class*="_wider-1"] > [class~="u-col"],
  [class*="_wider-1"] > [class*="u-col-"],
  [class*="_wider-1"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%; }
  [class*="_wider-2"] > [class~="u-col"],
  [class*="_wider-2"] > [class*="u-col-"],
  [class*="_wider-2"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%; }
  [class*="_wider-3"] > [class~="u-col"],
  [class*="_wider-3"] > [class*="u-col-"],
  [class*="_wider-3"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
    max-width: 33.33333%; }
  [class*="_wider-4"] > [class~="u-col"],
  [class*="_wider-4"] > [class*="u-col-"],
  [class*="_wider-4"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%; }
  [class*="_wider-5"] > [class~="u-col"],
  [class*="_wider-5"] > [class*="u-col-"],
  [class*="_wider-5"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
    max-width: 20%; }
  [class*="_wider-6"] > [class~="u-col"],
  [class*="_wider-6"] > [class*="u-col-"],
  [class*="_wider-6"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
    max-width: 16.66667%; }
  [class*="_wider-7"] > [class~="u-col"],
  [class*="_wider-7"] > [class*="u-col-"],
  [class*="_wider-7"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 14.28571%;
        flex-basis: 14.28571%;
    max-width: 14.28571%; }
  [class*="_wider-8"] > [class~="u-col"],
  [class*="_wider-8"] > [class*="u-col-"],
  [class*="_wider-8"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 12.5%;
        flex-basis: 12.5%;
    max-width: 12.5%; }
  [class*="_wider-9"] > [class~="u-col"],
  [class*="_wider-9"] > [class*="u-col-"],
  [class*="_wider-9"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 11.11111%;
        flex-basis: 11.11111%;
    max-width: 11.11111%; }
  [class*="_wider-10"] > [class~="u-col"],
  [class*="_wider-10"] > [class*="u-col-"],
  [class*="_wider-10"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
    max-width: 10%; }
  [class*="_wider-11"] > [class~="u-col"],
  [class*="_wider-11"] > [class*="u-col-"],
  [class*="_wider-11"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 9.09091%;
        flex-basis: 9.09091%;
    max-width: 9.09091%; }
  [class*="_wider-12"] > [class~="u-col"],
  [class*="_wider-12"] > [class*="u-col-"],
  [class*="_wider-12"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
    max-width: 8.33333%; } }

@media (max-width: 1400px) {
  [class*="_widest-1"] > [class~="u-col"],
  [class*="_widest-1"] > [class*="u-col-"],
  [class*="_widest-1"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%; }
  [class*="_widest-2"] > [class~="u-col"],
  [class*="_widest-2"] > [class*="u-col-"],
  [class*="_widest-2"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%; }
  [class*="_widest-3"] > [class~="u-col"],
  [class*="_widest-3"] > [class*="u-col-"],
  [class*="_widest-3"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
    max-width: 33.33333%; }
  [class*="_widest-4"] > [class~="u-col"],
  [class*="_widest-4"] > [class*="u-col-"],
  [class*="_widest-4"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%; }
  [class*="_widest-5"] > [class~="u-col"],
  [class*="_widest-5"] > [class*="u-col-"],
  [class*="_widest-5"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
    max-width: 20%; }
  [class*="_widest-6"] > [class~="u-col"],
  [class*="_widest-6"] > [class*="u-col-"],
  [class*="_widest-6"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
    max-width: 16.66667%; }
  [class*="_widest-7"] > [class~="u-col"],
  [class*="_widest-7"] > [class*="u-col-"],
  [class*="_widest-7"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 14.28571%;
        flex-basis: 14.28571%;
    max-width: 14.28571%; }
  [class*="_widest-8"] > [class~="u-col"],
  [class*="_widest-8"] > [class*="u-col-"],
  [class*="_widest-8"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 12.5%;
        flex-basis: 12.5%;
    max-width: 12.5%; }
  [class*="_widest-9"] > [class~="u-col"],
  [class*="_widest-9"] > [class*="u-col-"],
  [class*="_widest-9"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 11.11111%;
        flex-basis: 11.11111%;
    max-width: 11.11111%; }
  [class*="_widest-10"] > [class~="u-col"],
  [class*="_widest-10"] > [class*="u-col-"],
  [class*="_widest-10"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
    max-width: 10%; }
  [class*="_widest-11"] > [class~="u-col"],
  [class*="_widest-11"] > [class*="u-col-"],
  [class*="_widest-11"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 9.09091%;
        flex-basis: 9.09091%;
    max-width: 9.09091%; }
  [class*="_widest-12"] > [class~="u-col"],
  [class*="_widest-12"] > [class*="u-col-"],
  [class*="_widest-12"] > [class*="u-col_"] {
    -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
    max-width: 8.33333%; } }

/************************
    COLS SIZES
*************************/
[class~="u-grid"] > [class*="u-col-1"],
[class*="u-grid-"] > [class*="u-col-1"],
[class*="u-grid_"] > [class*="u-col-1"] {
  -ms-flex-preferred-size: 8.33333%;
      flex-basis: 8.33333%;
  max-width: 8.33333%; }

[class~="u-grid"] > [class*="u-col-2"],
[class*="u-grid-"] > [class*="u-col-2"],
[class*="u-grid_"] > [class*="u-col-2"] {
  -ms-flex-preferred-size: 16.66667%;
      flex-basis: 16.66667%;
  max-width: 16.66667%; }

[class~="u-grid"] > [class*="u-col-3"],
[class*="u-grid-"] > [class*="u-col-3"],
[class*="u-grid_"] > [class*="u-col-3"] {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  max-width: 25%; }

[class~="u-grid"] > [class*="u-col-4"],
[class*="u-grid-"] > [class*="u-col-4"],
[class*="u-grid_"] > [class*="u-col-4"] {
  -ms-flex-preferred-size: 33.33333%;
      flex-basis: 33.33333%;
  max-width: 33.33333%; }

[class~="u-grid"] > [class*="u-col-5"],
[class*="u-grid-"] > [class*="u-col-5"],
[class*="u-grid_"] > [class*="u-col-5"] {
  -ms-flex-preferred-size: 41.66667%;
      flex-basis: 41.66667%;
  max-width: 41.66667%; }

[class~="u-grid"] > [class*="u-col-6"],
[class*="u-grid-"] > [class*="u-col-6"],
[class*="u-grid_"] > [class*="u-col-6"] {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  max-width: 50%; }

[class~="u-grid"] > [class*="u-col-7"],
[class*="u-grid-"] > [class*="u-col-7"],
[class*="u-grid_"] > [class*="u-col-7"] {
  -ms-flex-preferred-size: 58.33333%;
      flex-basis: 58.33333%;
  max-width: 58.33333%; }

[class~="u-grid"] > [class*="u-col-8"],
[class*="u-grid-"] > [class*="u-col-8"],
[class*="u-grid_"] > [class*="u-col-8"] {
  -ms-flex-preferred-size: 66.66667%;
      flex-basis: 66.66667%;
  max-width: 66.66667%; }

[class~="u-grid"] > [class*="u-col-9"],
[class*="u-grid-"] > [class*="u-col-9"],
[class*="u-grid_"] > [class*="u-col-9"] {
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
  max-width: 75%; }

[class~="u-grid"] > [class*="u-col-10"],
[class*="u-grid-"] > [class*="u-col-10"],
[class*="u-grid_"] > [class*="u-col-10"] {
  -ms-flex-preferred-size: 83.33333%;
      flex-basis: 83.33333%;
  max-width: 83.33333%; }

[class~="u-grid"] > [class*="u-col-11"],
[class*="u-grid-"] > [class*="u-col-11"],
[class*="u-grid_"] > [class*="u-col-11"] {
  -ms-flex-preferred-size: 91.66667%;
      flex-basis: 91.66667%;
  max-width: 91.66667%; }

[class~="u-grid"] > [class*="u-col-12"],
[class*="u-grid-"] > [class*="u-col-12"],
[class*="u-grid_"] > [class*="u-col-12"] {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%; }

[class~="u-grid"] > [data-push-left*="off-0"],
[class*="u-grid-"] > [data-push-left*="off-0"],
[class*="u-grid_"] > [data-push-left*="off-0"] {
  margin-left: 0; }

[class~="u-grid"] > [data-push-left*="off-1"],
[class*="u-grid-"] > [data-push-left*="off-1"],
[class*="u-grid_"] > [data-push-left*="off-1"] {
  margin-left: 8.33333%; }

[class~="u-grid"] > [data-push-left*="off-2"],
[class*="u-grid-"] > [data-push-left*="off-2"],
[class*="u-grid_"] > [data-push-left*="off-2"] {
  margin-left: 16.66667%; }

[class~="u-grid"] > [data-push-left*="off-3"],
[class*="u-grid-"] > [data-push-left*="off-3"],
[class*="u-grid_"] > [data-push-left*="off-3"] {
  margin-left: 25%; }

[class~="u-grid"] > [data-push-left*="off-4"],
[class*="u-grid-"] > [data-push-left*="off-4"],
[class*="u-grid_"] > [data-push-left*="off-4"] {
  margin-left: 33.33333%; }

[class~="u-grid"] > [data-push-left*="off-5"],
[class*="u-grid-"] > [data-push-left*="off-5"],
[class*="u-grid_"] > [data-push-left*="off-5"] {
  margin-left: 41.66667%; }

[class~="u-grid"] > [data-push-left*="off-6"],
[class*="u-grid-"] > [data-push-left*="off-6"],
[class*="u-grid_"] > [data-push-left*="off-6"] {
  margin-left: 50%; }

[class~="u-grid"] > [data-push-left*="off-7"],
[class*="u-grid-"] > [data-push-left*="off-7"],
[class*="u-grid_"] > [data-push-left*="off-7"] {
  margin-left: 58.33333%; }

[class~="u-grid"] > [data-push-left*="off-8"],
[class*="u-grid-"] > [data-push-left*="off-8"],
[class*="u-grid_"] > [data-push-left*="off-8"] {
  margin-left: 66.66667%; }

[class~="u-grid"] > [data-push-left*="off-9"],
[class*="u-grid-"] > [data-push-left*="off-9"],
[class*="u-grid_"] > [data-push-left*="off-9"] {
  margin-left: 75%; }

[class~="u-grid"] > [data-push-left*="off-10"],
[class*="u-grid-"] > [data-push-left*="off-10"],
[class*="u-grid_"] > [data-push-left*="off-10"] {
  margin-left: 83.33333%; }

[class~="u-grid"] > [data-push-left*="off-11"],
[class*="u-grid-"] > [data-push-left*="off-11"],
[class*="u-grid_"] > [data-push-left*="off-11"] {
  margin-left: 91.66667%; }

[class~="u-grid"] > [data-push-right*="off-0"],
[class*="u-grid-"] > [data-push-right*="off-0"],
[class*="u-grid_"] > [data-push-right*="off-0"] {
  margin-right: 0; }

[class~="u-grid"] > [data-push-right*="off-1"],
[class*="u-grid-"] > [data-push-right*="off-1"],
[class*="u-grid_"] > [data-push-right*="off-1"] {
  margin-right: 8.33333%; }

[class~="u-grid"] > [data-push-right*="off-2"],
[class*="u-grid-"] > [data-push-right*="off-2"],
[class*="u-grid_"] > [data-push-right*="off-2"] {
  margin-right: 16.66667%; }

[class~="u-grid"] > [data-push-right*="off-3"],
[class*="u-grid-"] > [data-push-right*="off-3"],
[class*="u-grid_"] > [data-push-right*="off-3"] {
  margin-right: 25%; }

[class~="u-grid"] > [data-push-right*="off-4"],
[class*="u-grid-"] > [data-push-right*="off-4"],
[class*="u-grid_"] > [data-push-right*="off-4"] {
  margin-right: 33.33333%; }

[class~="u-grid"] > [data-push-right*="off-5"],
[class*="u-grid-"] > [data-push-right*="off-5"],
[class*="u-grid_"] > [data-push-right*="off-5"] {
  margin-right: 41.66667%; }

[class~="u-grid"] > [data-push-right*="off-6"],
[class*="u-grid-"] > [data-push-right*="off-6"],
[class*="u-grid_"] > [data-push-right*="off-6"] {
  margin-right: 50%; }

[class~="u-grid"] > [data-push-right*="off-7"],
[class*="u-grid-"] > [data-push-right*="off-7"],
[class*="u-grid_"] > [data-push-right*="off-7"] {
  margin-right: 58.33333%; }

[class~="u-grid"] > [data-push-right*="off-8"],
[class*="u-grid-"] > [data-push-right*="off-8"],
[class*="u-grid_"] > [data-push-right*="off-8"] {
  margin-right: 66.66667%; }

[class~="u-grid"] > [data-push-right*="off-9"],
[class*="u-grid-"] > [data-push-right*="off-9"],
[class*="u-grid_"] > [data-push-right*="off-9"] {
  margin-right: 75%; }

[class~="u-grid"] > [data-push-right*="off-10"],
[class*="u-grid-"] > [data-push-right*="off-10"],
[class*="u-grid_"] > [data-push-right*="off-10"] {
  margin-right: 83.33333%; }

[class~="u-grid"] > [data-push-right*="off-11"],
[class*="u-grid-"] > [data-push-right*="off-11"],
[class*="u-grid_"] > [data-push-right*="off-11"] {
  margin-right: 91.66667%; }

@media (max-width: 576px) {
  [class~="u-grid"] > [class*="_mobile-1"],
  [class*="u-grid-"] > [class*="_mobile-1"],
  [class*="u-grid_"] > [class*="_mobile-1"] {
    -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
    max-width: 8.33333%; }
  [class~="u-grid"] > [class*="_mobile-2"],
  [class*="u-grid-"] > [class*="_mobile-2"],
  [class*="u-grid_"] > [class*="_mobile-2"] {
    -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
    max-width: 16.66667%; }
  [class~="u-grid"] > [class*="_mobile-3"],
  [class*="u-grid-"] > [class*="_mobile-3"],
  [class*="u-grid_"] > [class*="_mobile-3"] {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%; }
  [class~="u-grid"] > [class*="_mobile-4"],
  [class*="u-grid-"] > [class*="_mobile-4"],
  [class*="u-grid_"] > [class*="_mobile-4"] {
    -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
    max-width: 33.33333%; }
  [class~="u-grid"] > [class*="_mobile-5"],
  [class*="u-grid-"] > [class*="_mobile-5"],
  [class*="u-grid_"] > [class*="_mobile-5"] {
    -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
    max-width: 41.66667%; }
  [class~="u-grid"] > [class*="_mobile-6"],
  [class*="u-grid-"] > [class*="_mobile-6"],
  [class*="u-grid_"] > [class*="_mobile-6"] {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%; }
  [class~="u-grid"] > [class*="_mobile-7"],
  [class*="u-grid-"] > [class*="_mobile-7"],
  [class*="u-grid_"] > [class*="_mobile-7"] {
    -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
    max-width: 58.33333%; }
  [class~="u-grid"] > [class*="_mobile-8"],
  [class*="u-grid-"] > [class*="_mobile-8"],
  [class*="u-grid_"] > [class*="_mobile-8"] {
    -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
    max-width: 66.66667%; }
  [class~="u-grid"] > [class*="_mobile-9"],
  [class*="u-grid-"] > [class*="_mobile-9"],
  [class*="u-grid_"] > [class*="_mobile-9"] {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%; }
  [class~="u-grid"] > [class*="_mobile-10"],
  [class*="u-grid-"] > [class*="_mobile-10"],
  [class*="u-grid_"] > [class*="_mobile-10"] {
    -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
    max-width: 83.33333%; }
  [class~="u-grid"] > [class*="_mobile-11"],
  [class*="u-grid-"] > [class*="_mobile-11"],
  [class*="u-grid_"] > [class*="_mobile-11"] {
    -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
    max-width: 91.66667%; }
  [class~="u-grid"] > [class*="_mobile-12"],
  [class*="u-grid-"] > [class*="_mobile-12"],
  [class*="u-grid_"] > [class*="_mobile-12"] {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%; }
  [class~="u-grid"] > [data-push-left*="_mobile-0"],
  [class*="u-grid-"] > [data-push-left*="_mobile-0"],
  [class*="u-grid_"] > [data-push-left*="_mobile-0"] {
    margin-left: 0; }
  [class~="u-grid"] > [data-push-left*="_mobile-1"],
  [class*="u-grid-"] > [data-push-left*="_mobile-1"],
  [class*="u-grid_"] > [data-push-left*="_mobile-1"] {
    margin-left: 8.33333%; }
  [class~="u-grid"] > [data-push-left*="_mobile-2"],
  [class*="u-grid-"] > [data-push-left*="_mobile-2"],
  [class*="u-grid_"] > [data-push-left*="_mobile-2"] {
    margin-left: 16.66667%; }
  [class~="u-grid"] > [data-push-left*="_mobile-3"],
  [class*="u-grid-"] > [data-push-left*="_mobile-3"],
  [class*="u-grid_"] > [data-push-left*="_mobile-3"] {
    margin-left: 25%; }
  [class~="u-grid"] > [data-push-left*="_mobile-4"],
  [class*="u-grid-"] > [data-push-left*="_mobile-4"],
  [class*="u-grid_"] > [data-push-left*="_mobile-4"] {
    margin-left: 33.33333%; }
  [class~="u-grid"] > [data-push-left*="_mobile-5"],
  [class*="u-grid-"] > [data-push-left*="_mobile-5"],
  [class*="u-grid_"] > [data-push-left*="_mobile-5"] {
    margin-left: 41.66667%; }
  [class~="u-grid"] > [data-push-left*="_mobile-6"],
  [class*="u-grid-"] > [data-push-left*="_mobile-6"],
  [class*="u-grid_"] > [data-push-left*="_mobile-6"] {
    margin-left: 50%; }
  [class~="u-grid"] > [data-push-left*="_mobile-7"],
  [class*="u-grid-"] > [data-push-left*="_mobile-7"],
  [class*="u-grid_"] > [data-push-left*="_mobile-7"] {
    margin-left: 58.33333%; }
  [class~="u-grid"] > [data-push-left*="_mobile-8"],
  [class*="u-grid-"] > [data-push-left*="_mobile-8"],
  [class*="u-grid_"] > [data-push-left*="_mobile-8"] {
    margin-left: 66.66667%; }
  [class~="u-grid"] > [data-push-left*="_mobile-9"],
  [class*="u-grid-"] > [data-push-left*="_mobile-9"],
  [class*="u-grid_"] > [data-push-left*="_mobile-9"] {
    margin-left: 75%; }
  [class~="u-grid"] > [data-push-left*="_mobile-10"],
  [class*="u-grid-"] > [data-push-left*="_mobile-10"],
  [class*="u-grid_"] > [data-push-left*="_mobile-10"] {
    margin-left: 83.33333%; }
  [class~="u-grid"] > [data-push-left*="_mobile-11"],
  [class*="u-grid-"] > [data-push-left*="_mobile-11"],
  [class*="u-grid_"] > [data-push-left*="_mobile-11"] {
    margin-left: 91.66667%; }
  [class~="u-grid"] > [data-push-right*="_mobile-0"],
  [class*="u-grid-"] > [data-push-right*="_mobile-0"],
  [class*="u-grid_"] > [data-push-right*="_mobile-0"] {
    margin-right: 0; }
  [class~="u-grid"] > [data-push-right*="_mobile-1"],
  [class*="u-grid-"] > [data-push-right*="_mobile-1"],
  [class*="u-grid_"] > [data-push-right*="_mobile-1"] {
    margin-right: 8.33333%; }
  [class~="u-grid"] > [data-push-right*="_mobile-2"],
  [class*="u-grid-"] > [data-push-right*="_mobile-2"],
  [class*="u-grid_"] > [data-push-right*="_mobile-2"] {
    margin-right: 16.66667%; }
  [class~="u-grid"] > [data-push-right*="_mobile-3"],
  [class*="u-grid-"] > [data-push-right*="_mobile-3"],
  [class*="u-grid_"] > [data-push-right*="_mobile-3"] {
    margin-right: 25%; }
  [class~="u-grid"] > [data-push-right*="_mobile-4"],
  [class*="u-grid-"] > [data-push-right*="_mobile-4"],
  [class*="u-grid_"] > [data-push-right*="_mobile-4"] {
    margin-right: 33.33333%; }
  [class~="u-grid"] > [data-push-right*="_mobile-5"],
  [class*="u-grid-"] > [data-push-right*="_mobile-5"],
  [class*="u-grid_"] > [data-push-right*="_mobile-5"] {
    margin-right: 41.66667%; }
  [class~="u-grid"] > [data-push-right*="_mobile-6"],
  [class*="u-grid-"] > [data-push-right*="_mobile-6"],
  [class*="u-grid_"] > [data-push-right*="_mobile-6"] {
    margin-right: 50%; }
  [class~="u-grid"] > [data-push-right*="_mobile-7"],
  [class*="u-grid-"] > [data-push-right*="_mobile-7"],
  [class*="u-grid_"] > [data-push-right*="_mobile-7"] {
    margin-right: 58.33333%; }
  [class~="u-grid"] > [data-push-right*="_mobile-8"],
  [class*="u-grid-"] > [data-push-right*="_mobile-8"],
  [class*="u-grid_"] > [data-push-right*="_mobile-8"] {
    margin-right: 66.66667%; }
  [class~="u-grid"] > [data-push-right*="_mobile-9"],
  [class*="u-grid-"] > [data-push-right*="_mobile-9"],
  [class*="u-grid_"] > [data-push-right*="_mobile-9"] {
    margin-right: 75%; }
  [class~="u-grid"] > [data-push-right*="_mobile-10"],
  [class*="u-grid-"] > [data-push-right*="_mobile-10"],
  [class*="u-grid_"] > [data-push-right*="_mobile-10"] {
    margin-right: 83.33333%; }
  [class~="u-grid"] > [data-push-right*="_mobile-11"],
  [class*="u-grid-"] > [data-push-right*="_mobile-11"],
  [class*="u-grid_"] > [data-push-right*="_mobile-11"] {
    margin-right: 91.66667%; }
  [class~="u-grid"] [class*="_mobile-first"],
  [class*="u-grid-"] [class*="_mobile-first"],
  [class*="u-grid_"] [class*="_mobile-first"] {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1; }
  [class~="u-grid"] [class*="_mobile-last"],
  [class*="u-grid-"] [class*="_mobile-last"],
  [class*="u-grid_"] [class*="_mobile-last"] {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1; } }

@media (max-width: 768px) {
  [class~="u-grid"] > [class*="_tablet-1"],
  [class*="u-grid-"] > [class*="_tablet-1"],
  [class*="u-grid_"] > [class*="_tablet-1"] {
    -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
    max-width: 8.33333%; }
  [class~="u-grid"] > [class*="_tablet-2"],
  [class*="u-grid-"] > [class*="_tablet-2"],
  [class*="u-grid_"] > [class*="_tablet-2"] {
    -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
    max-width: 16.66667%; }
  [class~="u-grid"] > [class*="_tablet-3"],
  [class*="u-grid-"] > [class*="_tablet-3"],
  [class*="u-grid_"] > [class*="_tablet-3"] {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%; }
  [class~="u-grid"] > [class*="_tablet-4"],
  [class*="u-grid-"] > [class*="_tablet-4"],
  [class*="u-grid_"] > [class*="_tablet-4"] {
    -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
    max-width: 33.33333%; }
  [class~="u-grid"] > [class*="_tablet-5"],
  [class*="u-grid-"] > [class*="_tablet-5"],
  [class*="u-grid_"] > [class*="_tablet-5"] {
    -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
    max-width: 41.66667%; }
  [class~="u-grid"] > [class*="_tablet-6"],
  [class*="u-grid-"] > [class*="_tablet-6"],
  [class*="u-grid_"] > [class*="_tablet-6"] {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%; }
  [class~="u-grid"] > [class*="_tablet-7"],
  [class*="u-grid-"] > [class*="_tablet-7"],
  [class*="u-grid_"] > [class*="_tablet-7"] {
    -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
    max-width: 58.33333%; }
  [class~="u-grid"] > [class*="_tablet-8"],
  [class*="u-grid-"] > [class*="_tablet-8"],
  [class*="u-grid_"] > [class*="_tablet-8"] {
    -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
    max-width: 66.66667%; }
  [class~="u-grid"] > [class*="_tablet-9"],
  [class*="u-grid-"] > [class*="_tablet-9"],
  [class*="u-grid_"] > [class*="_tablet-9"] {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%; }
  [class~="u-grid"] > [class*="_tablet-10"],
  [class*="u-grid-"] > [class*="_tablet-10"],
  [class*="u-grid_"] > [class*="_tablet-10"] {
    -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
    max-width: 83.33333%; }
  [class~="u-grid"] > [class*="_tablet-11"],
  [class*="u-grid-"] > [class*="_tablet-11"],
  [class*="u-grid_"] > [class*="_tablet-11"] {
    -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
    max-width: 91.66667%; }
  [class~="u-grid"] > [class*="_tablet-12"],
  [class*="u-grid-"] > [class*="_tablet-12"],
  [class*="u-grid_"] > [class*="_tablet-12"] {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%; }
  [class~="u-grid"] > [data-push-left*="_tablet-0"],
  [class*="u-grid-"] > [data-push-left*="_tablet-0"],
  [class*="u-grid_"] > [data-push-left*="_tablet-0"] {
    margin-left: 0; }
  [class~="u-grid"] > [data-push-left*="_tablet-1"],
  [class*="u-grid-"] > [data-push-left*="_tablet-1"],
  [class*="u-grid_"] > [data-push-left*="_tablet-1"] {
    margin-left: 8.33333%; }
  [class~="u-grid"] > [data-push-left*="_tablet-2"],
  [class*="u-grid-"] > [data-push-left*="_tablet-2"],
  [class*="u-grid_"] > [data-push-left*="_tablet-2"] {
    margin-left: 16.66667%; }
  [class~="u-grid"] > [data-push-left*="_tablet-3"],
  [class*="u-grid-"] > [data-push-left*="_tablet-3"],
  [class*="u-grid_"] > [data-push-left*="_tablet-3"] {
    margin-left: 25%; }
  [class~="u-grid"] > [data-push-left*="_tablet-4"],
  [class*="u-grid-"] > [data-push-left*="_tablet-4"],
  [class*="u-grid_"] > [data-push-left*="_tablet-4"] {
    margin-left: 33.33333%; }
  [class~="u-grid"] > [data-push-left*="_tablet-5"],
  [class*="u-grid-"] > [data-push-left*="_tablet-5"],
  [class*="u-grid_"] > [data-push-left*="_tablet-5"] {
    margin-left: 41.66667%; }
  [class~="u-grid"] > [data-push-left*="_tablet-6"],
  [class*="u-grid-"] > [data-push-left*="_tablet-6"],
  [class*="u-grid_"] > [data-push-left*="_tablet-6"] {
    margin-left: 50%; }
  [class~="u-grid"] > [data-push-left*="_tablet-7"],
  [class*="u-grid-"] > [data-push-left*="_tablet-7"],
  [class*="u-grid_"] > [data-push-left*="_tablet-7"] {
    margin-left: 58.33333%; }
  [class~="u-grid"] > [data-push-left*="_tablet-8"],
  [class*="u-grid-"] > [data-push-left*="_tablet-8"],
  [class*="u-grid_"] > [data-push-left*="_tablet-8"] {
    margin-left: 66.66667%; }
  [class~="u-grid"] > [data-push-left*="_tablet-9"],
  [class*="u-grid-"] > [data-push-left*="_tablet-9"],
  [class*="u-grid_"] > [data-push-left*="_tablet-9"] {
    margin-left: 75%; }
  [class~="u-grid"] > [data-push-left*="_tablet-10"],
  [class*="u-grid-"] > [data-push-left*="_tablet-10"],
  [class*="u-grid_"] > [data-push-left*="_tablet-10"] {
    margin-left: 83.33333%; }
  [class~="u-grid"] > [data-push-left*="_tablet-11"],
  [class*="u-grid-"] > [data-push-left*="_tablet-11"],
  [class*="u-grid_"] > [data-push-left*="_tablet-11"] {
    margin-left: 91.66667%; }
  [class~="u-grid"] > [data-push-right*="_tablet-0"],
  [class*="u-grid-"] > [data-push-right*="_tablet-0"],
  [class*="u-grid_"] > [data-push-right*="_tablet-0"] {
    margin-right: 0; }
  [class~="u-grid"] > [data-push-right*="_tablet-1"],
  [class*="u-grid-"] > [data-push-right*="_tablet-1"],
  [class*="u-grid_"] > [data-push-right*="_tablet-1"] {
    margin-right: 8.33333%; }
  [class~="u-grid"] > [data-push-right*="_tablet-2"],
  [class*="u-grid-"] > [data-push-right*="_tablet-2"],
  [class*="u-grid_"] > [data-push-right*="_tablet-2"] {
    margin-right: 16.66667%; }
  [class~="u-grid"] > [data-push-right*="_tablet-3"],
  [class*="u-grid-"] > [data-push-right*="_tablet-3"],
  [class*="u-grid_"] > [data-push-right*="_tablet-3"] {
    margin-right: 25%; }
  [class~="u-grid"] > [data-push-right*="_tablet-4"],
  [class*="u-grid-"] > [data-push-right*="_tablet-4"],
  [class*="u-grid_"] > [data-push-right*="_tablet-4"] {
    margin-right: 33.33333%; }
  [class~="u-grid"] > [data-push-right*="_tablet-5"],
  [class*="u-grid-"] > [data-push-right*="_tablet-5"],
  [class*="u-grid_"] > [data-push-right*="_tablet-5"] {
    margin-right: 41.66667%; }
  [class~="u-grid"] > [data-push-right*="_tablet-6"],
  [class*="u-grid-"] > [data-push-right*="_tablet-6"],
  [class*="u-grid_"] > [data-push-right*="_tablet-6"] {
    margin-right: 50%; }
  [class~="u-grid"] > [data-push-right*="_tablet-7"],
  [class*="u-grid-"] > [data-push-right*="_tablet-7"],
  [class*="u-grid_"] > [data-push-right*="_tablet-7"] {
    margin-right: 58.33333%; }
  [class~="u-grid"] > [data-push-right*="_tablet-8"],
  [class*="u-grid-"] > [data-push-right*="_tablet-8"],
  [class*="u-grid_"] > [data-push-right*="_tablet-8"] {
    margin-right: 66.66667%; }
  [class~="u-grid"] > [data-push-right*="_tablet-9"],
  [class*="u-grid-"] > [data-push-right*="_tablet-9"],
  [class*="u-grid_"] > [data-push-right*="_tablet-9"] {
    margin-right: 75%; }
  [class~="u-grid"] > [data-push-right*="_tablet-10"],
  [class*="u-grid-"] > [data-push-right*="_tablet-10"],
  [class*="u-grid_"] > [data-push-right*="_tablet-10"] {
    margin-right: 83.33333%; }
  [class~="u-grid"] > [data-push-right*="_tablet-11"],
  [class*="u-grid-"] > [data-push-right*="_tablet-11"],
  [class*="u-grid_"] > [data-push-right*="_tablet-11"] {
    margin-right: 91.66667%; }
  [class~="u-grid"] [class*="_tablet-first"],
  [class*="u-grid-"] [class*="_tablet-first"],
  [class*="u-grid_"] [class*="_tablet-first"] {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1; }
  [class~="u-grid"] [class*="_tablet-last"],
  [class*="u-grid-"] [class*="_tablet-last"],
  [class*="u-grid_"] [class*="_tablet-last"] {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1; } }

@media (max-width: 1024px) {
  [class~="u-grid"] > [class*="_desktop-1"],
  [class*="u-grid-"] > [class*="_desktop-1"],
  [class*="u-grid_"] > [class*="_desktop-1"] {
    -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
    max-width: 8.33333%; }
  [class~="u-grid"] > [class*="_desktop-2"],
  [class*="u-grid-"] > [class*="_desktop-2"],
  [class*="u-grid_"] > [class*="_desktop-2"] {
    -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
    max-width: 16.66667%; }
  [class~="u-grid"] > [class*="_desktop-3"],
  [class*="u-grid-"] > [class*="_desktop-3"],
  [class*="u-grid_"] > [class*="_desktop-3"] {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%; }
  [class~="u-grid"] > [class*="_desktop-4"],
  [class*="u-grid-"] > [class*="_desktop-4"],
  [class*="u-grid_"] > [class*="_desktop-4"] {
    -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
    max-width: 33.33333%; }
  [class~="u-grid"] > [class*="_desktop-5"],
  [class*="u-grid-"] > [class*="_desktop-5"],
  [class*="u-grid_"] > [class*="_desktop-5"] {
    -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
    max-width: 41.66667%; }
  [class~="u-grid"] > [class*="_desktop-6"],
  [class*="u-grid-"] > [class*="_desktop-6"],
  [class*="u-grid_"] > [class*="_desktop-6"] {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%; }
  [class~="u-grid"] > [class*="_desktop-7"],
  [class*="u-grid-"] > [class*="_desktop-7"],
  [class*="u-grid_"] > [class*="_desktop-7"] {
    -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
    max-width: 58.33333%; }
  [class~="u-grid"] > [class*="_desktop-8"],
  [class*="u-grid-"] > [class*="_desktop-8"],
  [class*="u-grid_"] > [class*="_desktop-8"] {
    -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
    max-width: 66.66667%; }
  [class~="u-grid"] > [class*="_desktop-9"],
  [class*="u-grid-"] > [class*="_desktop-9"],
  [class*="u-grid_"] > [class*="_desktop-9"] {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%; }
  [class~="u-grid"] > [class*="_desktop-10"],
  [class*="u-grid-"] > [class*="_desktop-10"],
  [class*="u-grid_"] > [class*="_desktop-10"] {
    -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
    max-width: 83.33333%; }
  [class~="u-grid"] > [class*="_desktop-11"],
  [class*="u-grid-"] > [class*="_desktop-11"],
  [class*="u-grid_"] > [class*="_desktop-11"] {
    -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
    max-width: 91.66667%; }
  [class~="u-grid"] > [class*="_desktop-12"],
  [class*="u-grid-"] > [class*="_desktop-12"],
  [class*="u-grid_"] > [class*="_desktop-12"] {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%; }
  [class~="u-grid"] > [data-push-left*="_desktop-0"],
  [class*="u-grid-"] > [data-push-left*="_desktop-0"],
  [class*="u-grid_"] > [data-push-left*="_desktop-0"] {
    margin-left: 0; }
  [class~="u-grid"] > [data-push-left*="_desktop-1"],
  [class*="u-grid-"] > [data-push-left*="_desktop-1"],
  [class*="u-grid_"] > [data-push-left*="_desktop-1"] {
    margin-left: 8.33333%; }
  [class~="u-grid"] > [data-push-left*="_desktop-2"],
  [class*="u-grid-"] > [data-push-left*="_desktop-2"],
  [class*="u-grid_"] > [data-push-left*="_desktop-2"] {
    margin-left: 16.66667%; }
  [class~="u-grid"] > [data-push-left*="_desktop-3"],
  [class*="u-grid-"] > [data-push-left*="_desktop-3"],
  [class*="u-grid_"] > [data-push-left*="_desktop-3"] {
    margin-left: 25%; }
  [class~="u-grid"] > [data-push-left*="_desktop-4"],
  [class*="u-grid-"] > [data-push-left*="_desktop-4"],
  [class*="u-grid_"] > [data-push-left*="_desktop-4"] {
    margin-left: 33.33333%; }
  [class~="u-grid"] > [data-push-left*="_desktop-5"],
  [class*="u-grid-"] > [data-push-left*="_desktop-5"],
  [class*="u-grid_"] > [data-push-left*="_desktop-5"] {
    margin-left: 41.66667%; }
  [class~="u-grid"] > [data-push-left*="_desktop-6"],
  [class*="u-grid-"] > [data-push-left*="_desktop-6"],
  [class*="u-grid_"] > [data-push-left*="_desktop-6"] {
    margin-left: 50%; }
  [class~="u-grid"] > [data-push-left*="_desktop-7"],
  [class*="u-grid-"] > [data-push-left*="_desktop-7"],
  [class*="u-grid_"] > [data-push-left*="_desktop-7"] {
    margin-left: 58.33333%; }
  [class~="u-grid"] > [data-push-left*="_desktop-8"],
  [class*="u-grid-"] > [data-push-left*="_desktop-8"],
  [class*="u-grid_"] > [data-push-left*="_desktop-8"] {
    margin-left: 66.66667%; }
  [class~="u-grid"] > [data-push-left*="_desktop-9"],
  [class*="u-grid-"] > [data-push-left*="_desktop-9"],
  [class*="u-grid_"] > [data-push-left*="_desktop-9"] {
    margin-left: 75%; }
  [class~="u-grid"] > [data-push-left*="_desktop-10"],
  [class*="u-grid-"] > [data-push-left*="_desktop-10"],
  [class*="u-grid_"] > [data-push-left*="_desktop-10"] {
    margin-left: 83.33333%; }
  [class~="u-grid"] > [data-push-left*="_desktop-11"],
  [class*="u-grid-"] > [data-push-left*="_desktop-11"],
  [class*="u-grid_"] > [data-push-left*="_desktop-11"] {
    margin-left: 91.66667%; }
  [class~="u-grid"] > [data-push-right*="_desktop-0"],
  [class*="u-grid-"] > [data-push-right*="_desktop-0"],
  [class*="u-grid_"] > [data-push-right*="_desktop-0"] {
    margin-right: 0; }
  [class~="u-grid"] > [data-push-right*="_desktop-1"],
  [class*="u-grid-"] > [data-push-right*="_desktop-1"],
  [class*="u-grid_"] > [data-push-right*="_desktop-1"] {
    margin-right: 8.33333%; }
  [class~="u-grid"] > [data-push-right*="_desktop-2"],
  [class*="u-grid-"] > [data-push-right*="_desktop-2"],
  [class*="u-grid_"] > [data-push-right*="_desktop-2"] {
    margin-right: 16.66667%; }
  [class~="u-grid"] > [data-push-right*="_desktop-3"],
  [class*="u-grid-"] > [data-push-right*="_desktop-3"],
  [class*="u-grid_"] > [data-push-right*="_desktop-3"] {
    margin-right: 25%; }
  [class~="u-grid"] > [data-push-right*="_desktop-4"],
  [class*="u-grid-"] > [data-push-right*="_desktop-4"],
  [class*="u-grid_"] > [data-push-right*="_desktop-4"] {
    margin-right: 33.33333%; }
  [class~="u-grid"] > [data-push-right*="_desktop-5"],
  [class*="u-grid-"] > [data-push-right*="_desktop-5"],
  [class*="u-grid_"] > [data-push-right*="_desktop-5"] {
    margin-right: 41.66667%; }
  [class~="u-grid"] > [data-push-right*="_desktop-6"],
  [class*="u-grid-"] > [data-push-right*="_desktop-6"],
  [class*="u-grid_"] > [data-push-right*="_desktop-6"] {
    margin-right: 50%; }
  [class~="u-grid"] > [data-push-right*="_desktop-7"],
  [class*="u-grid-"] > [data-push-right*="_desktop-7"],
  [class*="u-grid_"] > [data-push-right*="_desktop-7"] {
    margin-right: 58.33333%; }
  [class~="u-grid"] > [data-push-right*="_desktop-8"],
  [class*="u-grid-"] > [data-push-right*="_desktop-8"],
  [class*="u-grid_"] > [data-push-right*="_desktop-8"] {
    margin-right: 66.66667%; }
  [class~="u-grid"] > [data-push-right*="_desktop-9"],
  [class*="u-grid-"] > [data-push-right*="_desktop-9"],
  [class*="u-grid_"] > [data-push-right*="_desktop-9"] {
    margin-right: 75%; }
  [class~="u-grid"] > [data-push-right*="_desktop-10"],
  [class*="u-grid-"] > [data-push-right*="_desktop-10"],
  [class*="u-grid_"] > [data-push-right*="_desktop-10"] {
    margin-right: 83.33333%; }
  [class~="u-grid"] > [data-push-right*="_desktop-11"],
  [class*="u-grid-"] > [data-push-right*="_desktop-11"],
  [class*="u-grid_"] > [data-push-right*="_desktop-11"] {
    margin-right: 91.66667%; }
  [class~="u-grid"] [class*="_desktop-first"],
  [class*="u-grid-"] [class*="_desktop-first"],
  [class*="u-grid_"] [class*="_desktop-first"] {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1; }
  [class~="u-grid"] [class*="_desktop-last"],
  [class*="u-grid-"] [class*="_desktop-last"],
  [class*="u-grid_"] [class*="_desktop-last"] {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1; } }

@media (max-width: 1200px) {
  [class~="u-grid"] > [class*="_wide-1"],
  [class*="u-grid-"] > [class*="_wide-1"],
  [class*="u-grid_"] > [class*="_wide-1"] {
    -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
    max-width: 8.33333%; }
  [class~="u-grid"] > [class*="_wide-2"],
  [class*="u-grid-"] > [class*="_wide-2"],
  [class*="u-grid_"] > [class*="_wide-2"] {
    -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
    max-width: 16.66667%; }
  [class~="u-grid"] > [class*="_wide-3"],
  [class*="u-grid-"] > [class*="_wide-3"],
  [class*="u-grid_"] > [class*="_wide-3"] {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%; }
  [class~="u-grid"] > [class*="_wide-4"],
  [class*="u-grid-"] > [class*="_wide-4"],
  [class*="u-grid_"] > [class*="_wide-4"] {
    -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
    max-width: 33.33333%; }
  [class~="u-grid"] > [class*="_wide-5"],
  [class*="u-grid-"] > [class*="_wide-5"],
  [class*="u-grid_"] > [class*="_wide-5"] {
    -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
    max-width: 41.66667%; }
  [class~="u-grid"] > [class*="_wide-6"],
  [class*="u-grid-"] > [class*="_wide-6"],
  [class*="u-grid_"] > [class*="_wide-6"] {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%; }
  [class~="u-grid"] > [class*="_wide-7"],
  [class*="u-grid-"] > [class*="_wide-7"],
  [class*="u-grid_"] > [class*="_wide-7"] {
    -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
    max-width: 58.33333%; }
  [class~="u-grid"] > [class*="_wide-8"],
  [class*="u-grid-"] > [class*="_wide-8"],
  [class*="u-grid_"] > [class*="_wide-8"] {
    -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
    max-width: 66.66667%; }
  [class~="u-grid"] > [class*="_wide-9"],
  [class*="u-grid-"] > [class*="_wide-9"],
  [class*="u-grid_"] > [class*="_wide-9"] {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%; }
  [class~="u-grid"] > [class*="_wide-10"],
  [class*="u-grid-"] > [class*="_wide-10"],
  [class*="u-grid_"] > [class*="_wide-10"] {
    -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
    max-width: 83.33333%; }
  [class~="u-grid"] > [class*="_wide-11"],
  [class*="u-grid-"] > [class*="_wide-11"],
  [class*="u-grid_"] > [class*="_wide-11"] {
    -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
    max-width: 91.66667%; }
  [class~="u-grid"] > [class*="_wide-12"],
  [class*="u-grid-"] > [class*="_wide-12"],
  [class*="u-grid_"] > [class*="_wide-12"] {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%; }
  [class~="u-grid"] > [data-push-left*="_wide-0"],
  [class*="u-grid-"] > [data-push-left*="_wide-0"],
  [class*="u-grid_"] > [data-push-left*="_wide-0"] {
    margin-left: 0; }
  [class~="u-grid"] > [data-push-left*="_wide-1"],
  [class*="u-grid-"] > [data-push-left*="_wide-1"],
  [class*="u-grid_"] > [data-push-left*="_wide-1"] {
    margin-left: 8.33333%; }
  [class~="u-grid"] > [data-push-left*="_wide-2"],
  [class*="u-grid-"] > [data-push-left*="_wide-2"],
  [class*="u-grid_"] > [data-push-left*="_wide-2"] {
    margin-left: 16.66667%; }
  [class~="u-grid"] > [data-push-left*="_wide-3"],
  [class*="u-grid-"] > [data-push-left*="_wide-3"],
  [class*="u-grid_"] > [data-push-left*="_wide-3"] {
    margin-left: 25%; }
  [class~="u-grid"] > [data-push-left*="_wide-4"],
  [class*="u-grid-"] > [data-push-left*="_wide-4"],
  [class*="u-grid_"] > [data-push-left*="_wide-4"] {
    margin-left: 33.33333%; }
  [class~="u-grid"] > [data-push-left*="_wide-5"],
  [class*="u-grid-"] > [data-push-left*="_wide-5"],
  [class*="u-grid_"] > [data-push-left*="_wide-5"] {
    margin-left: 41.66667%; }
  [class~="u-grid"] > [data-push-left*="_wide-6"],
  [class*="u-grid-"] > [data-push-left*="_wide-6"],
  [class*="u-grid_"] > [data-push-left*="_wide-6"] {
    margin-left: 50%; }
  [class~="u-grid"] > [data-push-left*="_wide-7"],
  [class*="u-grid-"] > [data-push-left*="_wide-7"],
  [class*="u-grid_"] > [data-push-left*="_wide-7"] {
    margin-left: 58.33333%; }
  [class~="u-grid"] > [data-push-left*="_wide-8"],
  [class*="u-grid-"] > [data-push-left*="_wide-8"],
  [class*="u-grid_"] > [data-push-left*="_wide-8"] {
    margin-left: 66.66667%; }
  [class~="u-grid"] > [data-push-left*="_wide-9"],
  [class*="u-grid-"] > [data-push-left*="_wide-9"],
  [class*="u-grid_"] > [data-push-left*="_wide-9"] {
    margin-left: 75%; }
  [class~="u-grid"] > [data-push-left*="_wide-10"],
  [class*="u-grid-"] > [data-push-left*="_wide-10"],
  [class*="u-grid_"] > [data-push-left*="_wide-10"] {
    margin-left: 83.33333%; }
  [class~="u-grid"] > [data-push-left*="_wide-11"],
  [class*="u-grid-"] > [data-push-left*="_wide-11"],
  [class*="u-grid_"] > [data-push-left*="_wide-11"] {
    margin-left: 91.66667%; }
  [class~="u-grid"] > [data-push-right*="_wide-0"],
  [class*="u-grid-"] > [data-push-right*="_wide-0"],
  [class*="u-grid_"] > [data-push-right*="_wide-0"] {
    margin-right: 0; }
  [class~="u-grid"] > [data-push-right*="_wide-1"],
  [class*="u-grid-"] > [data-push-right*="_wide-1"],
  [class*="u-grid_"] > [data-push-right*="_wide-1"] {
    margin-right: 8.33333%; }
  [class~="u-grid"] > [data-push-right*="_wide-2"],
  [class*="u-grid-"] > [data-push-right*="_wide-2"],
  [class*="u-grid_"] > [data-push-right*="_wide-2"] {
    margin-right: 16.66667%; }
  [class~="u-grid"] > [data-push-right*="_wide-3"],
  [class*="u-grid-"] > [data-push-right*="_wide-3"],
  [class*="u-grid_"] > [data-push-right*="_wide-3"] {
    margin-right: 25%; }
  [class~="u-grid"] > [data-push-right*="_wide-4"],
  [class*="u-grid-"] > [data-push-right*="_wide-4"],
  [class*="u-grid_"] > [data-push-right*="_wide-4"] {
    margin-right: 33.33333%; }
  [class~="u-grid"] > [data-push-right*="_wide-5"],
  [class*="u-grid-"] > [data-push-right*="_wide-5"],
  [class*="u-grid_"] > [data-push-right*="_wide-5"] {
    margin-right: 41.66667%; }
  [class~="u-grid"] > [data-push-right*="_wide-6"],
  [class*="u-grid-"] > [data-push-right*="_wide-6"],
  [class*="u-grid_"] > [data-push-right*="_wide-6"] {
    margin-right: 50%; }
  [class~="u-grid"] > [data-push-right*="_wide-7"],
  [class*="u-grid-"] > [data-push-right*="_wide-7"],
  [class*="u-grid_"] > [data-push-right*="_wide-7"] {
    margin-right: 58.33333%; }
  [class~="u-grid"] > [data-push-right*="_wide-8"],
  [class*="u-grid-"] > [data-push-right*="_wide-8"],
  [class*="u-grid_"] > [data-push-right*="_wide-8"] {
    margin-right: 66.66667%; }
  [class~="u-grid"] > [data-push-right*="_wide-9"],
  [class*="u-grid-"] > [data-push-right*="_wide-9"],
  [class*="u-grid_"] > [data-push-right*="_wide-9"] {
    margin-right: 75%; }
  [class~="u-grid"] > [data-push-right*="_wide-10"],
  [class*="u-grid-"] > [data-push-right*="_wide-10"],
  [class*="u-grid_"] > [data-push-right*="_wide-10"] {
    margin-right: 83.33333%; }
  [class~="u-grid"] > [data-push-right*="_wide-11"],
  [class*="u-grid-"] > [data-push-right*="_wide-11"],
  [class*="u-grid_"] > [data-push-right*="_wide-11"] {
    margin-right: 91.66667%; }
  [class~="u-grid"] [class*="_wide-first"],
  [class*="u-grid-"] [class*="_wide-first"],
  [class*="u-grid_"] [class*="_wide-first"] {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1; }
  [class~="u-grid"] [class*="_wide-last"],
  [class*="u-grid-"] [class*="_wide-last"],
  [class*="u-grid_"] [class*="_wide-last"] {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1; } }

@media (max-width: 1300px) {
  [class~="u-grid"] > [class*="_wider-1"],
  [class*="u-grid-"] > [class*="_wider-1"],
  [class*="u-grid_"] > [class*="_wider-1"] {
    -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
    max-width: 8.33333%; }
  [class~="u-grid"] > [class*="_wider-2"],
  [class*="u-grid-"] > [class*="_wider-2"],
  [class*="u-grid_"] > [class*="_wider-2"] {
    -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
    max-width: 16.66667%; }
  [class~="u-grid"] > [class*="_wider-3"],
  [class*="u-grid-"] > [class*="_wider-3"],
  [class*="u-grid_"] > [class*="_wider-3"] {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%; }
  [class~="u-grid"] > [class*="_wider-4"],
  [class*="u-grid-"] > [class*="_wider-4"],
  [class*="u-grid_"] > [class*="_wider-4"] {
    -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
    max-width: 33.33333%; }
  [class~="u-grid"] > [class*="_wider-5"],
  [class*="u-grid-"] > [class*="_wider-5"],
  [class*="u-grid_"] > [class*="_wider-5"] {
    -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
    max-width: 41.66667%; }
  [class~="u-grid"] > [class*="_wider-6"],
  [class*="u-grid-"] > [class*="_wider-6"],
  [class*="u-grid_"] > [class*="_wider-6"] {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%; }
  [class~="u-grid"] > [class*="_wider-7"],
  [class*="u-grid-"] > [class*="_wider-7"],
  [class*="u-grid_"] > [class*="_wider-7"] {
    -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
    max-width: 58.33333%; }
  [class~="u-grid"] > [class*="_wider-8"],
  [class*="u-grid-"] > [class*="_wider-8"],
  [class*="u-grid_"] > [class*="_wider-8"] {
    -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
    max-width: 66.66667%; }
  [class~="u-grid"] > [class*="_wider-9"],
  [class*="u-grid-"] > [class*="_wider-9"],
  [class*="u-grid_"] > [class*="_wider-9"] {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%; }
  [class~="u-grid"] > [class*="_wider-10"],
  [class*="u-grid-"] > [class*="_wider-10"],
  [class*="u-grid_"] > [class*="_wider-10"] {
    -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
    max-width: 83.33333%; }
  [class~="u-grid"] > [class*="_wider-11"],
  [class*="u-grid-"] > [class*="_wider-11"],
  [class*="u-grid_"] > [class*="_wider-11"] {
    -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
    max-width: 91.66667%; }
  [class~="u-grid"] > [class*="_wider-12"],
  [class*="u-grid-"] > [class*="_wider-12"],
  [class*="u-grid_"] > [class*="_wider-12"] {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%; }
  [class~="u-grid"] > [data-push-left*="_wider-0"],
  [class*="u-grid-"] > [data-push-left*="_wider-0"],
  [class*="u-grid_"] > [data-push-left*="_wider-0"] {
    margin-left: 0; }
  [class~="u-grid"] > [data-push-left*="_wider-1"],
  [class*="u-grid-"] > [data-push-left*="_wider-1"],
  [class*="u-grid_"] > [data-push-left*="_wider-1"] {
    margin-left: 8.33333%; }
  [class~="u-grid"] > [data-push-left*="_wider-2"],
  [class*="u-grid-"] > [data-push-left*="_wider-2"],
  [class*="u-grid_"] > [data-push-left*="_wider-2"] {
    margin-left: 16.66667%; }
  [class~="u-grid"] > [data-push-left*="_wider-3"],
  [class*="u-grid-"] > [data-push-left*="_wider-3"],
  [class*="u-grid_"] > [data-push-left*="_wider-3"] {
    margin-left: 25%; }
  [class~="u-grid"] > [data-push-left*="_wider-4"],
  [class*="u-grid-"] > [data-push-left*="_wider-4"],
  [class*="u-grid_"] > [data-push-left*="_wider-4"] {
    margin-left: 33.33333%; }
  [class~="u-grid"] > [data-push-left*="_wider-5"],
  [class*="u-grid-"] > [data-push-left*="_wider-5"],
  [class*="u-grid_"] > [data-push-left*="_wider-5"] {
    margin-left: 41.66667%; }
  [class~="u-grid"] > [data-push-left*="_wider-6"],
  [class*="u-grid-"] > [data-push-left*="_wider-6"],
  [class*="u-grid_"] > [data-push-left*="_wider-6"] {
    margin-left: 50%; }
  [class~="u-grid"] > [data-push-left*="_wider-7"],
  [class*="u-grid-"] > [data-push-left*="_wider-7"],
  [class*="u-grid_"] > [data-push-left*="_wider-7"] {
    margin-left: 58.33333%; }
  [class~="u-grid"] > [data-push-left*="_wider-8"],
  [class*="u-grid-"] > [data-push-left*="_wider-8"],
  [class*="u-grid_"] > [data-push-left*="_wider-8"] {
    margin-left: 66.66667%; }
  [class~="u-grid"] > [data-push-left*="_wider-9"],
  [class*="u-grid-"] > [data-push-left*="_wider-9"],
  [class*="u-grid_"] > [data-push-left*="_wider-9"] {
    margin-left: 75%; }
  [class~="u-grid"] > [data-push-left*="_wider-10"],
  [class*="u-grid-"] > [data-push-left*="_wider-10"],
  [class*="u-grid_"] > [data-push-left*="_wider-10"] {
    margin-left: 83.33333%; }
  [class~="u-grid"] > [data-push-left*="_wider-11"],
  [class*="u-grid-"] > [data-push-left*="_wider-11"],
  [class*="u-grid_"] > [data-push-left*="_wider-11"] {
    margin-left: 91.66667%; }
  [class~="u-grid"] > [data-push-right*="_wider-0"],
  [class*="u-grid-"] > [data-push-right*="_wider-0"],
  [class*="u-grid_"] > [data-push-right*="_wider-0"] {
    margin-right: 0; }
  [class~="u-grid"] > [data-push-right*="_wider-1"],
  [class*="u-grid-"] > [data-push-right*="_wider-1"],
  [class*="u-grid_"] > [data-push-right*="_wider-1"] {
    margin-right: 8.33333%; }
  [class~="u-grid"] > [data-push-right*="_wider-2"],
  [class*="u-grid-"] > [data-push-right*="_wider-2"],
  [class*="u-grid_"] > [data-push-right*="_wider-2"] {
    margin-right: 16.66667%; }
  [class~="u-grid"] > [data-push-right*="_wider-3"],
  [class*="u-grid-"] > [data-push-right*="_wider-3"],
  [class*="u-grid_"] > [data-push-right*="_wider-3"] {
    margin-right: 25%; }
  [class~="u-grid"] > [data-push-right*="_wider-4"],
  [class*="u-grid-"] > [data-push-right*="_wider-4"],
  [class*="u-grid_"] > [data-push-right*="_wider-4"] {
    margin-right: 33.33333%; }
  [class~="u-grid"] > [data-push-right*="_wider-5"],
  [class*="u-grid-"] > [data-push-right*="_wider-5"],
  [class*="u-grid_"] > [data-push-right*="_wider-5"] {
    margin-right: 41.66667%; }
  [class~="u-grid"] > [data-push-right*="_wider-6"],
  [class*="u-grid-"] > [data-push-right*="_wider-6"],
  [class*="u-grid_"] > [data-push-right*="_wider-6"] {
    margin-right: 50%; }
  [class~="u-grid"] > [data-push-right*="_wider-7"],
  [class*="u-grid-"] > [data-push-right*="_wider-7"],
  [class*="u-grid_"] > [data-push-right*="_wider-7"] {
    margin-right: 58.33333%; }
  [class~="u-grid"] > [data-push-right*="_wider-8"],
  [class*="u-grid-"] > [data-push-right*="_wider-8"],
  [class*="u-grid_"] > [data-push-right*="_wider-8"] {
    margin-right: 66.66667%; }
  [class~="u-grid"] > [data-push-right*="_wider-9"],
  [class*="u-grid-"] > [data-push-right*="_wider-9"],
  [class*="u-grid_"] > [data-push-right*="_wider-9"] {
    margin-right: 75%; }
  [class~="u-grid"] > [data-push-right*="_wider-10"],
  [class*="u-grid-"] > [data-push-right*="_wider-10"],
  [class*="u-grid_"] > [data-push-right*="_wider-10"] {
    margin-right: 83.33333%; }
  [class~="u-grid"] > [data-push-right*="_wider-11"],
  [class*="u-grid-"] > [data-push-right*="_wider-11"],
  [class*="u-grid_"] > [data-push-right*="_wider-11"] {
    margin-right: 91.66667%; }
  [class~="u-grid"] [class*="_wider-first"],
  [class*="u-grid-"] [class*="_wider-first"],
  [class*="u-grid_"] [class*="_wider-first"] {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1; }
  [class~="u-grid"] [class*="_wider-last"],
  [class*="u-grid-"] [class*="_wider-last"],
  [class*="u-grid_"] [class*="_wider-last"] {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1; } }

@media (max-width: 1400px) {
  [class~="u-grid"] > [class*="_widest-1"],
  [class*="u-grid-"] > [class*="_widest-1"],
  [class*="u-grid_"] > [class*="_widest-1"] {
    -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
    max-width: 8.33333%; }
  [class~="u-grid"] > [class*="_widest-2"],
  [class*="u-grid-"] > [class*="_widest-2"],
  [class*="u-grid_"] > [class*="_widest-2"] {
    -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
    max-width: 16.66667%; }
  [class~="u-grid"] > [class*="_widest-3"],
  [class*="u-grid-"] > [class*="_widest-3"],
  [class*="u-grid_"] > [class*="_widest-3"] {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%; }
  [class~="u-grid"] > [class*="_widest-4"],
  [class*="u-grid-"] > [class*="_widest-4"],
  [class*="u-grid_"] > [class*="_widest-4"] {
    -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
    max-width: 33.33333%; }
  [class~="u-grid"] > [class*="_widest-5"],
  [class*="u-grid-"] > [class*="_widest-5"],
  [class*="u-grid_"] > [class*="_widest-5"] {
    -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
    max-width: 41.66667%; }
  [class~="u-grid"] > [class*="_widest-6"],
  [class*="u-grid-"] > [class*="_widest-6"],
  [class*="u-grid_"] > [class*="_widest-6"] {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%; }
  [class~="u-grid"] > [class*="_widest-7"],
  [class*="u-grid-"] > [class*="_widest-7"],
  [class*="u-grid_"] > [class*="_widest-7"] {
    -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
    max-width: 58.33333%; }
  [class~="u-grid"] > [class*="_widest-8"],
  [class*="u-grid-"] > [class*="_widest-8"],
  [class*="u-grid_"] > [class*="_widest-8"] {
    -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
    max-width: 66.66667%; }
  [class~="u-grid"] > [class*="_widest-9"],
  [class*="u-grid-"] > [class*="_widest-9"],
  [class*="u-grid_"] > [class*="_widest-9"] {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%; }
  [class~="u-grid"] > [class*="_widest-10"],
  [class*="u-grid-"] > [class*="_widest-10"],
  [class*="u-grid_"] > [class*="_widest-10"] {
    -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
    max-width: 83.33333%; }
  [class~="u-grid"] > [class*="_widest-11"],
  [class*="u-grid-"] > [class*="_widest-11"],
  [class*="u-grid_"] > [class*="_widest-11"] {
    -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
    max-width: 91.66667%; }
  [class~="u-grid"] > [class*="_widest-12"],
  [class*="u-grid-"] > [class*="_widest-12"],
  [class*="u-grid_"] > [class*="_widest-12"] {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%; }
  [class~="u-grid"] > [data-push-left*="_widest-0"],
  [class*="u-grid-"] > [data-push-left*="_widest-0"],
  [class*="u-grid_"] > [data-push-left*="_widest-0"] {
    margin-left: 0; }
  [class~="u-grid"] > [data-push-left*="_widest-1"],
  [class*="u-grid-"] > [data-push-left*="_widest-1"],
  [class*="u-grid_"] > [data-push-left*="_widest-1"] {
    margin-left: 8.33333%; }
  [class~="u-grid"] > [data-push-left*="_widest-2"],
  [class*="u-grid-"] > [data-push-left*="_widest-2"],
  [class*="u-grid_"] > [data-push-left*="_widest-2"] {
    margin-left: 16.66667%; }
  [class~="u-grid"] > [data-push-left*="_widest-3"],
  [class*="u-grid-"] > [data-push-left*="_widest-3"],
  [class*="u-grid_"] > [data-push-left*="_widest-3"] {
    margin-left: 25%; }
  [class~="u-grid"] > [data-push-left*="_widest-4"],
  [class*="u-grid-"] > [data-push-left*="_widest-4"],
  [class*="u-grid_"] > [data-push-left*="_widest-4"] {
    margin-left: 33.33333%; }
  [class~="u-grid"] > [data-push-left*="_widest-5"],
  [class*="u-grid-"] > [data-push-left*="_widest-5"],
  [class*="u-grid_"] > [data-push-left*="_widest-5"] {
    margin-left: 41.66667%; }
  [class~="u-grid"] > [data-push-left*="_widest-6"],
  [class*="u-grid-"] > [data-push-left*="_widest-6"],
  [class*="u-grid_"] > [data-push-left*="_widest-6"] {
    margin-left: 50%; }
  [class~="u-grid"] > [data-push-left*="_widest-7"],
  [class*="u-grid-"] > [data-push-left*="_widest-7"],
  [class*="u-grid_"] > [data-push-left*="_widest-7"] {
    margin-left: 58.33333%; }
  [class~="u-grid"] > [data-push-left*="_widest-8"],
  [class*="u-grid-"] > [data-push-left*="_widest-8"],
  [class*="u-grid_"] > [data-push-left*="_widest-8"] {
    margin-left: 66.66667%; }
  [class~="u-grid"] > [data-push-left*="_widest-9"],
  [class*="u-grid-"] > [data-push-left*="_widest-9"],
  [class*="u-grid_"] > [data-push-left*="_widest-9"] {
    margin-left: 75%; }
  [class~="u-grid"] > [data-push-left*="_widest-10"],
  [class*="u-grid-"] > [data-push-left*="_widest-10"],
  [class*="u-grid_"] > [data-push-left*="_widest-10"] {
    margin-left: 83.33333%; }
  [class~="u-grid"] > [data-push-left*="_widest-11"],
  [class*="u-grid-"] > [data-push-left*="_widest-11"],
  [class*="u-grid_"] > [data-push-left*="_widest-11"] {
    margin-left: 91.66667%; }
  [class~="u-grid"] > [data-push-right*="_widest-0"],
  [class*="u-grid-"] > [data-push-right*="_widest-0"],
  [class*="u-grid_"] > [data-push-right*="_widest-0"] {
    margin-right: 0; }
  [class~="u-grid"] > [data-push-right*="_widest-1"],
  [class*="u-grid-"] > [data-push-right*="_widest-1"],
  [class*="u-grid_"] > [data-push-right*="_widest-1"] {
    margin-right: 8.33333%; }
  [class~="u-grid"] > [data-push-right*="_widest-2"],
  [class*="u-grid-"] > [data-push-right*="_widest-2"],
  [class*="u-grid_"] > [data-push-right*="_widest-2"] {
    margin-right: 16.66667%; }
  [class~="u-grid"] > [data-push-right*="_widest-3"],
  [class*="u-grid-"] > [data-push-right*="_widest-3"],
  [class*="u-grid_"] > [data-push-right*="_widest-3"] {
    margin-right: 25%; }
  [class~="u-grid"] > [data-push-right*="_widest-4"],
  [class*="u-grid-"] > [data-push-right*="_widest-4"],
  [class*="u-grid_"] > [data-push-right*="_widest-4"] {
    margin-right: 33.33333%; }
  [class~="u-grid"] > [data-push-right*="_widest-5"],
  [class*="u-grid-"] > [data-push-right*="_widest-5"],
  [class*="u-grid_"] > [data-push-right*="_widest-5"] {
    margin-right: 41.66667%; }
  [class~="u-grid"] > [data-push-right*="_widest-6"],
  [class*="u-grid-"] > [data-push-right*="_widest-6"],
  [class*="u-grid_"] > [data-push-right*="_widest-6"] {
    margin-right: 50%; }
  [class~="u-grid"] > [data-push-right*="_widest-7"],
  [class*="u-grid-"] > [data-push-right*="_widest-7"],
  [class*="u-grid_"] > [data-push-right*="_widest-7"] {
    margin-right: 58.33333%; }
  [class~="u-grid"] > [data-push-right*="_widest-8"],
  [class*="u-grid-"] > [data-push-right*="_widest-8"],
  [class*="u-grid_"] > [data-push-right*="_widest-8"] {
    margin-right: 66.66667%; }
  [class~="u-grid"] > [data-push-right*="_widest-9"],
  [class*="u-grid-"] > [data-push-right*="_widest-9"],
  [class*="u-grid_"] > [data-push-right*="_widest-9"] {
    margin-right: 75%; }
  [class~="u-grid"] > [data-push-right*="_widest-10"],
  [class*="u-grid-"] > [data-push-right*="_widest-10"],
  [class*="u-grid_"] > [data-push-right*="_widest-10"] {
    margin-right: 83.33333%; }
  [class~="u-grid"] > [data-push-right*="_widest-11"],
  [class*="u-grid-"] > [data-push-right*="_widest-11"],
  [class*="u-grid_"] > [data-push-right*="_widest-11"] {
    margin-right: 91.66667%; }
  [class~="u-grid"] [class*="_widest-first"],
  [class*="u-grid-"] [class*="_widest-first"],
  [class*="u-grid_"] [class*="_widest-first"] {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1; }
  [class~="u-grid"] [class*="_widest-last"],
  [class*="u-grid-"] [class*="_widest-last"],
  [class*="u-grid_"] [class*="_widest-last"] {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1; } }

/************************
    HIDING COLS
*************************/
@media (max-width: 576px) {
  [class*="mobile-hidden"] {
    display: none; } }

@media (max-width: 768px) {
  [class*="tablet-hidden"] {
    display: none; } }

@media (max-width: 1024px) {
  [class*="desktop-hidden"] {
    display: none; } }

@media (max-width: 1200px) {
  [class*="wide-hidden"] {
    display: none; } }

@media (max-width: 1300px) {
  [class*="wider-hidden"] {
    display: none; } }

@media (max-width: 1400px) {
  [class*="widest-hidden"] {
    display: none; } }

/**
 * Swiper 4.5.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 22, 2019
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1; }

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

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

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

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

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

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

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

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

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto; }

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

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px; }

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

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

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

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

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

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

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px; }

.icon--abta-white {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 0 0;
  width: 82px;
  height: 38px; }

.icon--attractions-blue {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 7.907425265188042% 4.460093896713615%;
  width: 23px;
  height: 23px; }

.icon--attractions-white {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 10.12536162005786% 7.15962441314554%;
  width: 23px;
  height: 23px; }

.icon--basket {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 12.213740458015268% 9.725486563777194%;
  width: 12px;
  height: 11.29px; }

.icon--calendar-blue {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 13.333333333333334% 11.107254425546685%;
  width: 10px;
  height: 10.7px; }

.icon--calendar-grey {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 14.285714285714286% 12.379960661807244%;
  width: 10px;
  height: 10.7px; }

.icon--categories-blue {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 15.429122468659594% 13.849765258215962%;
  width: 23px;
  height: 23px; }

.icon--categories-white {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 17.647058823529413% 16.549295774647888%;
  width: 23px;
  height: 23px; }

.icon--check {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 19.65648854961832% 18.948584633160024%;
  width: 12px;
  height: 9.5px; }

.icon--check-white {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 20.84130019120459% 20.232558139534884%;
  width: 14px;
  height: 15px; }

.icon--chevron {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 22.0532319391635% 21.83961174023573%;
  width: 8px;
  height: 9.6px; }

.icon--chevron-blue {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 22.813688212927758% 22.995146752946614%;
  width: 8px;
  height: 9.6px; }

.icon--destinations-blue {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 23.915139826422372% 24.530516431924884%;
  width: 23px;
  height: 23px; }

.icon--destinations-white {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 26.13307618129219% 27.230046948356808%;
  width: 23px;
  height: 23px; }

.icon--dine-search {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 28.523473654594316% 30.183587230567095%;
  width: 29.27px;
  height: 30.17px; }

.icon--flag-de {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 31.51750972762646% 33.45029239766082%;
  width: 32px;
  height: 20px; }

.icon--flag-ie {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 34.63035019455253% 35.78947368421053%;
  width: 32px;
  height: 20px; }

.icon--flag-uk {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 37.7431906614786% 38.12865497076023%;
  width: 32px;
  height: 20px; }

.icon--free-dine-search {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 42.42424242424242% 40.801886792452834%;
  width: 70px;
  height: 27px; }

.icon--gift {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 46.66311138198995% 43.22132097334878%;
  width: 9.92px;
  height: 12px; }

.icon--hairSalon {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 47.89272030651341% 44.81955762514552%;
  width: 16px;
  height: 16px; }

.icon--home {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 49.23664122137404% 46.46581691772885%;
  width: 12px;
  height: 12px; }

.icon--info {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 50.76923076923077% 48.30409356725146%;
  width: 20px;
  height: 20px; }

.icon--nav-attractions {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 54.25205425205425% 51.30331753554503%;
  width: 49.9px;
  height: 31px; }

.icon--nav-combo-tickets {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 58.98599329256264% 54.93074464306854%;
  width: 46.2px;
  height: 30.3px; }

.icon--nav-hotels {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 62.62135922330097% 58.44155844155844%;
  width: 30px;
  height: 28px; }

.icon--nav-location {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 66.17647058823529% 62.634730538922156%;
  width: 40px;
  height: 40px; }

.icon--nav-special-offers {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 69.21587608906098% 66.39150943396227%;
  width: 27px;
  height: 27px; }

.icon--nav-ticket {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 72.85938727415554% 69.93835941204362%;
  width: 41.6px;
  height: 31.4px; }

.icon--nav-wdw {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 77.8395552025417% 73.81037142518096%;
  width: 52.8px;
  height: 32.3px; }

.icon--new-window {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 79.86641221374046% 75.75757575757575%;
  width: 12px;
  height: 10.4px; }

.icon--playvideo {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 80.94965675057209% 76.99510977005514%;
  width: 11.2px;
  height: 10.01px; }

.icon--rss {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 82.47126436781609% 78.81257275902212%;
  width: 16px;
  height: 16px; }

.icon--search {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 83.68320610687023% 80.30127462340673%;
  width: 12px;
  height: 12px; }

.icon--search-filter {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 85.07177033492823% 81.97674418604652%;
  width: 15px;
  height: 15px; }

.icon--speech-bubble {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 86.19374523264683% 83.31404767414949%;
  width: 11.2px;
  height: 10.8px; }

.icon--speech-bubble-alt {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 87.99231508165225% 85.39719626168224%;
  width: 19px;
  height: 19px; }

.icon--star {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 89.26355183014148% 86.98879584309542%;
  width: 12.54px;
  height: 12.82px; }

.icon--star-alt {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 91.15384615384616% 89.23976608187135%;
  width: 20px;
  height: 20px; }

.icon--star-gold {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 92.72030651340997% 91.15250291036088%;
  width: 16px;
  height: 16px; }

.icon--star-grey {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 94.25287356321839% 93.0151338766007%;
  width: 16px;
  height: 16px; }

.icon--star-half {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 95.78544061302682% 94.8777648428405%;
  width: 16px;
  height: 16px; }

.icon--tag {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 96.76190476190476% 96.0693641618497%;
  width: 10px;
  height: 10px; }

.icon--tipGrey {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 98.08795411089866% 97.67711962833914%;
  width: 14px;
  height: 14px; }

.icon--user {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 100% 100%;
  width: 20px;
  height: 20px; }

.icon--dc {
  background: url("/themes/custom/atd/images/svg/sprite-logos.svg") no-repeat;
  background-position: 0 0;
  width: 150px;
  height: 64.4px; }

.icon--ip {
  background: url("/themes/custom/atd/images/svg/sprite-logos.svg") no-repeat;
  background-position: 18.65671641791045% 11.38353765323993%;
  width: 110px;
  height: 40px; }

.icon--mobile {
  background: url("/themes/custom/atd/images/svg/sprite-logos.svg") no-repeat;
  background-position: 29.478458049886623% 18.38879159369527%;
  width: 32px;
  height: 40px; }

.icon--uor {
  background: url("/themes/custom/atd/images/svg/sprite-logos.svg") no-repeat;
  background-position: 33.447497737712055% 25.043177892918827%;
  width: 40.99px;
  height: 32px; }

.icon--uor-cw {
  background: url("/themes/custom/atd/images/svg/sprite-logos.svg") no-repeat;
  background-position: 38.36405529953917% 30.569948186528496%;
  width: 46px;
  height: 32px; }

.icon--uor-ioa {
  background: url("/themes/custom/atd/images/svg/sprite-logos.svg") no-repeat;
  background-position: 43.078951556070834% 36.09671848013817%;
  width: 34.22px;
  height: 32px; }

.icon--uor-usf {
  background: url("/themes/custom/atd/images/svg/sprite-logos.svg") no-repeat;
  background-position: 47.80600461893764% 41.623488773747845%;
  width: 48px;
  height: 32px; }

.icon--uor-vb {
  background: url("/themes/custom/atd/images/svg/sprite-logos.svg") no-repeat;
  background-position: 52.981651376146786% 47.15025906735751%;
  width: 42px;
  height: 32px; }

.icon--wdw-ak {
  background: url("/themes/custom/atd/images/svg/sprite-logos.svg") no-repeat;
  background-position: 57.08848715509039% 52.67702936096718%;
  width: 31.16px;
  height: 32px; }

.icon--wdw-bb {
  background: url("/themes/custom/atd/images/svg/sprite-logos.svg") no-repeat;
  background-position: 60.633484162895925% 58.203799654576855%;
  width: 30px;
  height: 32px; }

.icon--wdw-disney-parks {
  background: url("/themes/custom/atd/images/svg/sprite-logos.svg") no-repeat;
  background-position: 64.68571428571428% 63.73056994818653%;
  width: 39px;
  height: 32px; }

.icon--wdw-epcot {
  background: url("/themes/custom/atd/images/svg/sprite-logos.svg") no-repeat;
  background-position: 69.14285714285714% 69.2573402417962%;
  width: 39px;
  height: 32px; }

.icon--wdw-hs {
  background: url("/themes/custom/atd/images/svg/sprite-logos.svg") no-repeat;
  background-position: 73.6% 74.78411053540587%;
  width: 39px;
  height: 32px; }

.icon--wdw-logo {
  background: url("/themes/custom/atd/images/svg/sprite-logos.svg") no-repeat;
  background-position: 81.5035799522673% 80.31088082901555%;
  width: 76px;
  height: 32px; }

.icon--wdw-logo1 {
  background: url("/themes/custom/atd/images/svg/sprite-logos.svg") no-repeat;
  background-position: 92.1116504854369% 88.59180035650624%;
  width: 90px;
  height: 50px; }

.icon--wdw-mk {
  background: url("/themes/custom/atd/images/svg/sprite-logos.svg") no-repeat;
  background-position: 96.47946544239642% 94.47322970639033%;
  width: 34.02px;
  height: 32px; }

.icon--wdw-tl {
  background: url("/themes/custom/atd/images/svg/sprite-logos.svg") no-repeat;
  background-position: 100% 100%;
  width: 30px;
  height: 32px; }

/* ------------------------------------*\
    $PRICE SLIDER ON HOTEL PAGE
\*------------------------------------ */
.irs {
  position: relative;
  display: block; }
  .irs .irs {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    min-height: 55px;
    padding-top: 35px; }
    .irs .irs .irs-line {
      position: absolute;
      overflow: hidden;
      outline: none;
      height: 10px;
      top: 10px;
      background: -webkit-gradient(linear, left top, left bottom, from(#f4f4f4), to(#e4e4e4));
      background: linear-gradient(#f4f4f4, #e4e4e4);
      border: 1px solid #e4e4e4;
      width: 100%; }
      .irs .irs .irs-line .irs-line-left,
      .irs .irs .irs-line .irs-line-mid,
      .irs .irs .irs-line .irs-line-right {
        position: absolute;
        display: block;
        top: 0;
        height: 8px; }
      .irs .irs .irs-line .irs-line-left {
        left: 0;
        width: 11%; }
      .irs .irs .irs-line .irs-line-mid {
        left: 9%;
        width: 82%; }
      .irs .irs .irs-line .irs-line-right {
        right: 0;
        width: 11%; }
    .irs .irs .irs-min,
    .irs .irs .irs-max {
      position: absolute;
      display: block;
      cursor: default;
      color: #d4d4d4;
      white-space: nowrap;
      top: 35px;
      padding: 0; }
    .irs .irs .irs-min {
      left: 0; }
    .irs .irs .irs-max {
      right: 0; }
    .irs .irs .irs-from,
    .irs .irs .irs-to,
    .irs .irs .irs-single {
      position: absolute;
      display: block;
      top: 35px;
      left: 0;
      cursor: default;
      white-space: nowrap;
      color: #00c853;
      padding: 0; }
  .irs .irs-grid {
    display: none; }
  .irs .irs-bar {
    position: absolute;
    display: block;
    left: 0;
    width: 0;
    height: 10px;
    top: 10px;
    border-top: 1px solid #42a5f5;
    border-bottom: 1px solid #42a5f5;
    background: #64b5f6;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#64b5f6), to(#42a5f5));
    background-image: linear-gradient(#64b5f6, #42a5f5); }
  .irs .irs-shadow {
    display: none; }
  .irs .irs-slider {
    position: absolute;
    display: block;
    z-index: 1;
    top: 0;
    width: 30px;
    height: 30px;
    border: 1px solid #e4e4e4;
    background: #fff;
    border-radius: 50%;
    cursor: pointer; }
    .irs .irs-slider.type_last {
      z-index: 2; }
  .irs .irs-hidden-input {
    position: absolute !important;
    display: block !important;
    top: 0 !important;
    left: 0 !important;
    width: 0 !important;
    height: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    outline: none !important;
    z-index: -9999 !important;
    background: none !important;
    border-style: solid !important;
    border-color: transparent !important; }

.irs-bar-edge {
  position: absolute;
  display: block;
  left: 0;
  height: 10px;
  top: 33px;
  width: 14px;
  border: 1px solid #428bca;
  border-right: 0;
  background: #428bca;
  background: -webkit-gradient(linear, left bottom, left top, from(#428bca), to(#7fc3e8));
  background: linear-gradient(to top, #428bca 0%, #7fc3e8 100%);
  border-radius: 16px 0 0 16px; }

.irs-with-grid {
  height: 75px; }
  .irs-with-grid .irs-grid {
    display: block; }

.irs-grid-text {
  position: absolute;
  left: 0;
  white-space: nowrap;
  text-align: center;
  font-size: 9px;
  line-height: 9px;
  padding: 0 3px;
  bottom: 5px;
  color: #99a4ac; }

.irs-disable-mask {
  position: absolute;
  display: block;
  top: 0;
  left: -1%;
  width: 102%;
  height: 100%;
  cursor: default;
  background: rgba(0, 0, 0, 0);
  z-index: 2; }

.irs-disabled {
  opacity: 0.4; }

.lt-ie9 .irs-disabled {
  filter: alpha(opacity=40); }

.lt-ie9 .irs-shadow {
  filter: alpha(opacity=30); }

.lt-ie9 .irs-min,
.lt-ie9 .irs-max {
  background: #ccc; }

.lt-ie9 .irs-from,
.lt-ie9 .irs-to,
.lt-ie9 .irs-single {
  background: #999; }

.irs-grid-pol {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 8px;
  opacity: 0.5;
  background: #428bca; }
  .irs-grid-pol.small {
    height: 4px;
    background: #999; }

.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background: #fff;
  -webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
  box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08); }

.flatpickr-calendar.open, .flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible; }

.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999; }

.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1); }

.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px; }

.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px); }

.flatpickr-calendar.static.open {
  z-index: 999;
  display: block; }

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  -webkit-box-shadow: none !important;
  box-shadow: none !important; }

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  -webkit-box-shadow: -2px 0 0 #e6e6e6,5px 0 0 #e6e6e6;
  box-shadow: -2px 0 0 #e6e6e6,5px 0 0 #e6e6e6; }

.flatpickr-calendar .hasWeeks .dayContainer, .flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0; }

.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6; }

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto; }

.flatpickr-calendar:before, .flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  left: 22px; }

.flatpickr-calendar.rightMost:before, .flatpickr-calendar.rightMost:after {
  left: auto;
  right: 22px; }

.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px; }

.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px; }

.flatpickr-calendar.arrowTop:before, .flatpickr-calendar.arrowTop:after {
  bottom: 100%; }

.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6; }

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff; }

.flatpickr-calendar.arrowBottom:before, .flatpickr-calendar.arrowBottom:after {
  top: 100%; }

.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6; }

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff; }

.flatpickr-calendar:focus {
  outline: 0; }

.flatpickr-wrapper {
  position: relative;
  display: inline-block; }

.flatpickr-months {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1; }

.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9); }

.flatpickr-months .flatpickr-prev-month.flatpickr-disabled, .flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none; }

.flatpickr-months .flatpickr-prev-month i, .flatpickr-months .flatpickr-next-month i {
  position: relative; }

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month, .flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  /*
      /*rtl:begin:ignore*/
  left: 0;
  /*
      /*rtl:end:ignore*/ }

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month, .flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  /*
      /*rtl:begin:ignore*/
  right: 0;
  /*
      /*rtl:end:ignore*/ }

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover, .flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9; }

.flatpickr-months .flatpickr-prev-month:hover svg, .flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747; }

.flatpickr-months .flatpickr-prev-month svg, .flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px; }

.flatpickr-months .flatpickr-prev-month svg path, .flatpickr-months .flatpickr-next-month svg path {
  -webkit-transition: fill .1s;
  transition: fill .1s;
  fill: inherit; }

.numInputWrapper {
  position: relative;
  height: auto; }

.numInputWrapper input, .numInputWrapper span {
  display: inline-block; }

.numInputWrapper input {
  width: 100%; }

.numInputWrapper input::-ms-clear {
  display: none; }

.numInputWrapper input::-webkit-outer-spin-button, .numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none; }

.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1); }

.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2); }

.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute; }

.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0; }

.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
  top: 26%; }

.numInputWrapper span.arrowDown {
  top: 50%; }

.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
  top: 40%; }

.numInputWrapper span svg {
  width: inherit;
  height: auto; }

.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5); }

.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05); }

.numInputWrapper:hover span {
  opacity: 1; }

.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: .5ch;
  padding: 0; }

.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05); }

.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0;
  display: inline-block; }

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9); }

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9); }

.flatpickr-current-month input.cur-year {
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 .5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield; }

.flatpickr-current-month input.cur-year:focus {
  outline: 0; }

.flatpickr-current-month input.cur-year[disabled], .flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none; }

.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  background: transparent;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 .5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto; }

.flatpickr-current-month .flatpickr-monthDropdown-months:focus, .flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none; }

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0, 0, 0, 0.05); }

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: transparent;
  outline: none;
  padding: 0; }

.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 28px; }

.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1; }

span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: bolder; }

.dayContainer, .flatpickr-weeks {
  padding: 1px 0 0 0; }

.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 307.875px; }

.flatpickr-days:focus {
  outline: 0; }

.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-around;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1; }

.dayContainer + .dayContainer {
  -webkit-box-shadow: -1px 0 0 #e6e6e6;
  box-shadow: -1px 0 0 #e6e6e6; }

.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -ms-flex-preferred-size: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center; }

.flatpickr-day.inRange, .flatpickr-day.prevMonthDay.inRange, .flatpickr-day.nextMonthDay.inRange, .flatpickr-day.today.inRange, .flatpickr-day.prevMonthDay.today.inRange, .flatpickr-day.nextMonthDay.today.inRange, .flatpickr-day:hover, .flatpickr-day.prevMonthDay:hover, .flatpickr-day.nextMonthDay:hover, .flatpickr-day:focus, .flatpickr-day.prevMonthDay:focus, .flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6; }

.flatpickr-day.today {
  border-color: #959ea9; }

.flatpickr-day.today:hover, .flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff; }

.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7; }

.flatpickr-day.selected.startRange, .flatpickr-day.startRange.startRange, .flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px; }

.flatpickr-day.selected.endRange, .flatpickr-day.startRange.endRange, .flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0; }

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  -webkit-box-shadow: -10px 0 0 #569ff7;
  box-shadow: -10px 0 0 #569ff7; }

.flatpickr-day.selected.startRange.endRange, .flatpickr-day.startRange.startRange.endRange, .flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px; }

.flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #e6e6e6,5px 0 0 #e6e6e6;
  box-shadow: -5px 0 0 #e6e6e6,5px 0 0 #e6e6e6; }

.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover, .flatpickr-day.prevMonthDay, .flatpickr-day.nextMonthDay, .flatpickr-day.notAllowed, .flatpickr-day.notAllowed.prevMonthDay, .flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default; }

.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(57, 57, 57, 0.1); }

.flatpickr-day.week.selected {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #569ff7,5px 0 0 #569ff7;
  box-shadow: -5px 0 0 #569ff7,5px 0 0 #569ff7; }

.flatpickr-day.hidden {
  visibility: hidden; }

.rangeMode .flatpickr-day {
  margin-top: 1px; }

.flatpickr-weekwrapper {
  float: left; }

.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  -webkit-box-shadow: 1px 0 0 #e6e6e6;
  box-shadow: 1px 0 0 #e6e6e6; }

.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px; }

.flatpickr-weekwrapper span.flatpickr-day, .flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  cursor: default;
  border: none; }

.flatpickr-innerContainer {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden; }

.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.flatpickr-time:after {
  content: "";
  display: table;
  clear: both; }

.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 40%;
  height: 40px;
  float: left; }

.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939; }

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939; }

.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%; }

.flatpickr-time.time24hr .numInputWrapper {
  width: 49%; }

.flatpickr-time input {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield; }

.flatpickr-time input.flatpickr-hour {
  font-weight: bold; }

.flatpickr-time input.flatpickr-minute, .flatpickr-time input.flatpickr-second {
  font-weight: 400; }

.flatpickr-time input:focus {
  outline: 0;
  border: 0; }

.flatpickr-time .flatpickr-time-separator, .flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center; }

.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400; }

.flatpickr-time input:hover, .flatpickr-time .flatpickr-am-pm:hover, .flatpickr-time input:focus, .flatpickr-time .flatpickr-am-pm:focus {
  background: #eee; }

.flatpickr-input[readonly] {
  cursor: pointer; }

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

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

/* ------------------------------------*\
    $GENERIC STYLES
\*------------------------------------ */
/* ------------------------------------*\
    $FONTS
\*------------------------------------ */
@font-face {
  font-family: "Campton-Light";
  font-display: swap;
  src: url("../fonts/campton/2FC3F5_B_0.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/campton/2FC3F5_B_0.eot?#iefix") format("embedded-opentype"), url("../fonts/campton/2FC3F5_B_0.woff2") format("woff2"), url("../fonts/campton/2FC3F5_B_0.woff") format("woff"), url("../fonts/campton/2FC3F5_B_0.ttf") format("truetype");
  /* Safari, Android, iOS */ }

@font-face {
  font-family: "Campton-Book";
  font-display: swap;
  src: url("../fonts/campton/2FC3F5_6_0.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/campton/2FC3F5_6_0.eot?#iefix") format("embedded-opentype"), url("../fonts/campton/2FC3F5_6_0.woff2") format("woff2"), url("../fonts/campton/2FC3F5_6_0.woff") format("woff"), url("../fonts/campton/2FC3F5_6_0.ttf") format("truetype");
  /* Safari, Android, iOS */ }

@font-face {
  font-family: "Campton-SemiBold";
  font-display: swap;
  src: url("../fonts/campton/2FC3F5_2_0.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/campton/2FC3F5_2_0.eot?#iefix") format("embedded-opentype"), url("../fonts/campton/2FC3F5_2_0.woff2") format("woff2"), url("../fonts/campton/2FC3F5_2_0.woff") format("woff"), url("../fonts/campton/2FC3F5_2_0.ttf") format("truetype"); }

/* ------------------------------------*\
    $VARIABLES

    Colors
    Fonts

\*------------------------------------ */
/* ------------------------------------*\
    $MIXINS
\*------------------------------------ */
/* Clearfix
  Usage: @include cf();
*/
/* Breakout of Container but keep contents in line with parent
 good for when a section needs a different background color changes
*/
/* styles based on number of children
e.g. you want to fill the space in .component but only if there are 3 items within it
.component{
  number-of-children(3) {
    width: 33.3%;
  }
}
*/
/* Typography mixins */
/* END OF Typography mixins */
.img-arrow {
  position: relative; }
  .img-arrow::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    right: 1rem;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #fff transparent; }

.close {
  position: relative; }
  .close::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    right: 1rem;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #fff transparent; }

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes spinner {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

body .loading {
  position: relative; }
  body .loading a,
  body .loading button,
  body .loading input,
  body .loading select,
  body .loading textarea {
    pointer-events: none; }
  body .loading::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fff;
    z-index: 3;
    opacity: 0.7; }
  body .loading::after {
    background: none;
    content: '';
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    border: 4px solid #00c853;
    border-top-color: transparent;
    z-index: 4;
    -webkit-animation: spinner 0.6s linear infinite;
            animation: spinner 0.6s linear infinite; }

.filters-accordion {
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: block;
  width: 100%;
  position: relative;
  padding: 1.3rem 1rem 1rem 2rem;
  text-transform: uppercase;
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  color: #64b5f6; }
  .filters-accordion::before {
    content: "";
    border: solid 5px transparent;
    border-left-color: #64b5f6;
    position: absolute;
    top: 17px;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    left: 3px; }
  .filters-accordion.accordion__btn-active::before {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    left: 5px;
    top: 14px; }

/* stylelint-disable font-family-no-duplicate-names */
/* ------------------------------------*\
    $RESET
\*------------------------------------ */
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */ }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none; }

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none; }

/* ------------------------------------*\
    $GLOBAL ELEMENTS
\*------------------------------------ */
/* ------------------------------------*\
    $GLOBAL CLASSES
    Prefixed with "u-" to denote a utility class e.g. not related to the component
    dont add styles to u- classes, use BEM
    e.g. Don't do .slide .u-container {...}
         Do .slide__container {...}
\*------------------------------------ */
/* Layout Container */
.u-container {
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%; }
  @media screen and (min-width: 48em) {
    .u-container {
      padding: 0 1.5rem; } }
  @media screen and (min-width: 64em) {
    .u-container {
      padding: 0 1.5rem;
      max-width: 1054px; } }

/* Breakout of Container, full width */
.u-breakout {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw); }

/* Breakout of Container but keep contents in line with parent
 good for when a section needs a different background color changes
*/
.u-breakout--padding {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%); }

/* Clearfix */
.u-cf::after {
  content: "";
  display: table;
  clear: both; }

/* Completely remove from the flow and screen readers. */
.u-hide {
  display: none !important;
  visibility: hidden !important; }

/* Remove from the flow and screen readers without using !important as it becomes difficult to override for CRO tests */
.u-hide-cro {
  display: none;
  visibility: hidden; }

/* Completely remove from the flow but leave available to screen readers. */
.u-visuallyhidden,
.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px); }

/* Display Classes */
@media screen and (max-width: 47.99em) {
  .u-hide-mobile {
    display: none; } }

@media screen and (max-width: 35.99em) {
  .u-hide-until-mobile {
    display: none; } }

@media screen and (min-width: 36em) {
  .u-hide-from-mobile {
    display: none; } }

@media screen and (min-width: 48em) and (max-width: 63.99em) {
  .u-hide-tablet {
    display: none; } }

@media screen and (max-width: 47.99em) {
  .u-hide-until-tablet {
    display: none; } }

@media screen and (min-width: 48em) {
  .u-hide-from-tablet {
    display: none; } }

@media screen and (min-width: 64em) {
  .u-hide-desktop {
    display: none; } }

@media screen and (max-width: 63.99em) {
  .u-hide-until-desktop {
    display: none; } }

@media screen and (min-width: 64em) {
  .u-hide-from-desktop {
    display: none; } }

/* get grid to behave */
.u-grid {
  clear: both; }

.u-m-0 {
  margin: 0; }

.u-mb-0 {
  margin-bottom: 0; }

.u-bold-green-italic {
  font-family: "Campton-SemiBold";
  color: #00c853;
  font-style: italic; }

/* Show/hide elements based on login status. */
.u-show-logged-in {
  display: none !important; }

.logged-in .u-show-logged-in {
  display: block !important; }

.logged-in .u-hide-logged-in {
  display: none !important; }

.u-responsive-video {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0; }
  .u-responsive-video iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute; }

html {
  font-size: 62.5%; }

body {
  background: #fff;
  font: 1.4rem/1.5 "Campton-Light", Arial, helvetica, sans-serif;
  color: #656565; }
  body * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }

/* Links */
a {
  text-decoration: none;
  color: #42a5f5; }
  a:hover, a:focus {
    color: #64b5f6; }

/* Headings */
/* Further Reading: http:/csswizardry.com/2012/02/pragmatic-practical-font-sizing-in-css/ */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1rem;
  font-weight: 400; }

h1 {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 2.1rem; }
  @media screen and (min-width: 48em) {
    h1 {
      font-size: 3.2rem; } }

h2 {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.9rem; }
  @media screen and (min-width: 48em) {
    h2 {
      font-size: 2.4rem; } }

h3 {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.8rem; }
  @media screen and (min-width: 48em) {
    h3 {
      font-size: 2.1rem; } }

h4 {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.6rem; }
  @media screen and (min-width: 48em) {
    h4 {
      font-size: 1.8rem; } }

h5 {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.4rem; }
  @media screen and (min-width: 48em) {
    h5 {
      font-size: 1.6rem; } }

h6 {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.4rem; }
  @media screen and (min-width: 48em) {
    h6 {
      font-size: 1.6rem; } }

/* Text-Related Elements */
p {
  margin: 0 0 1rem; }

/* Blockquote */
blockquote {
  font-style: italic;
  border-left: 1px solid #d4d4d4;
  color: #848484;
  padding-left: 1rem;
  margin-bottom: 1rem; }

/* Horizontal Rule */
hr {
  border: 0;
  height: 2px;
  background: #d4d4d4; }

abbr {
  border-bottom: 1px dotted #d4d4d4;
  cursor: help; }
  @media screen and (min-width: 36em) and (max-width: 63.99em) {
    abbr {
      padding: 0; } }

.sub-heading {
  font-family: "Campton-Book";
  font-size: 1.8rem;
  margin: -1rem 0 1.5rem; }
  @media screen and (min-width: 48em) {
    .sub-heading {
      font-size: 2rem; } }

.published {
  font-size: 1.25rem;
  font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
  margin-bottom: 10px; }

.published__date {
  padding-left: 15px;
  position: relative; }
  .published__date::before {
    background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
    background-position: 14.285714285714286% 12.379960661807244%;
    width: 10px;
    height: 10.7px;
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 1.5px; }

.published__date-inner {
  padding-left: 13px;
  position: relative;
  margin-left: 5px; }
  .published__date-inner::before {
    background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
    background-position: 14.285714285714286% 12.379960661807244%;
    width: 10px;
    height: 10.7px;
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0; }

.news-quote {
  padding: 0 0 0 24px;
  font-size: 1.4rem;
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  position: relative;
  font-weight: normal; }
  @media screen and (min-width: 64em) {
    .news-quote {
      font-size: 1.5rem; } }
  .news-quote::before {
    content: "\201C";
    position: absolute;
    color: #fb8c00;
    font-size: 4rem;
    line-height: 1;
    top: -1px;
    left: 0;
    font-family: TimesNewRoman, Times New Roman, Times, Baskerville, Georgia, serif; }

ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none; }

/* Definition Lists */
dl {
  overflow: hidden;
  margin: 0 0 1em; }

dt {
  font-weight: bold; }

dd {
  margin-left: 0; }

@-webkit-keyframes yellow-fade {
  5% {
    background-color: #ffea00; } }

@keyframes yellow-fade {
  5% {
    background-color: #ffea00; } }

/* ------------------------------------*\
    $MEDIA ELEMENTS
\*------------------------------------ */
/* Flexible Media */
img,
video,
object {
  max-width: 100%;
  height: auto;
  width: 100%; }

iframe {
  margin-bottom: 1em; }

figure {
  margin-bottom: 1em; }
  figure img {
    margin-bottom: 0.5em; }

figcaption {
  font-style: italic; }

.lazy {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s; }

.lazy--loaded {
  opacity: 1; }

.svg-inline {
  position: absolute;
  height: 0;
  width: 0;
  overflow: hidden; }

/* ------------------------------------*\
    $FORMS
\*------------------------------------ */
/* General global form style */
fieldset {
  border: none;
  padding: 0;
  margin: 0 0 1rem; }

legend {
  display: block;
  font-size: 1.6rem; }
  legend.small {
    font-size: 1.25rem; }

label {
  display: block;
  font-size: 1.6rem; }
  label.small {
    font-size: 1.25rem; }

.checkbox__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5px;
  width: 100%; }

input {
  color: #656565;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  padding: 1rem 0.8rem;
  max-width: 100%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s; }
  .hotels-search__form input {
    width: 100%; }
  input:disabled {
    background-color: #f4f4f4; }
  input:not([type='checkbox']):focus, input:not([type='radio']):focus {
    outline: none;
    border: 1px solid #64b5f6; }

input[type="checkbox"] {
  width: auto;
  margin: 2px 5px 0 0; }

select {
  color: #656565;
  border: 1px solid #e4e4e4;
  padding: 1rem 2.5rem 1rem 0.8rem;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  border-radius: 4px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1424 1024' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M891.802 291.447c13.926-13.722 36.301-13.722 50.125 0s13.875 35.891 0 49.613l-404.89 400.896c-6.44 6.356-15.293 10.282-25.062 10.282s-18.622-3.926-25.066-10.286l-404.886-400.892c-13.824-13.722-13.824-35.891 0-49.613s36.301-13.722 50.125 0l379.853 365.619 379.802-365.619z' fill='%23666666' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 1.3em auto;
  background-position: right center; }
  select.small {
    padding: 0.5rem 0.8rem 0.3rem;
    font-size: 1.25rem; }
  select::-ms-expand {
    display: none; }
  select:hover {
    border: 1px solid #64b5f6; }
  select:focus {
    border-color: #64b5f6;
    outline: none; }
  .hotels-search__form select {
    width: 100%; }

/* ------------------------------------*\
    $flatpickr-calendar datepicker
\*------------------------------------ */
.flatpickr-calendar {
  padding: 0 10px 10px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  border: 1px solid #e4e4e4; }
  @media screen and (min-width: 48em) {
    .ticket-form .flatpickr-calendar {
      max-width: 100%;
      width: 100%; } }

.flatpickr-current-month {
  font-size: 1.6rem;
  color: #656565;
  padding-top: 10px; }

.flatpickr-rContainer {
  max-width: 100%;
  width: 100%; }

.dayContainer {
  min-width: 0; }

.flatpickr-days {
  border: 1px solid #e4e4e4;
  border-width: 0 0 1px 1px;
  width: 100%; }

.flatpickr-day {
  border-radius: 0;
  max-width: none;
  height: auto;
  line-height: inherit;
  border: 1px solid #e4e4e4;
  border-width: 1px 1px 0 0;
  font-size: 1.2rem;
  color: #42a5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
    .flatpickr-day {
      -ms-flex-preferred-size: 16%;
          flex-basis: 16%; } }
  .flatpickr-day .flatpickr-price {
    margin-top: -12px;
    font-size: 10px;
    color: #a3a3a3; }
  .flatpickr-day.prevMonthDay, .flatpickr-day.nextMonthDay {
    background-color: #f4f4f4;
    border: 1px solid #e4e4e4;
    border-width: 1px 1px 0 0; }
    .flatpickr-day.prevMonthDay .flatpickr-price, .flatpickr-day.nextMonthDay .flatpickr-price {
      color: inherit; }
  .flatpickr-day.today, .flatpickr-day.flatpickr-disabled {
    border: 1px solid #e4e4e4;
    border-width: 1px 1px 0 0; }
    .flatpickr-day.today .flatpickr-price, .flatpickr-day.flatpickr-disabled .flatpickr-price {
      color: inherit; }
    .flatpickr-day.today:hover, .flatpickr-day.flatpickr-disabled:hover {
      border: 1px solid #e4e4e4;
      border-width: 1px 1px 0 0; }
      .flatpickr-day.today:hover .flatpickr-price, .flatpickr-day.flatpickr-disabled:hover .flatpickr-price {
        color: inherit; }
  .flatpickr-day.flatpickr-range {
    background: #00c853;
    color: #fff;
    opacity: 0.5; }
  .flatpickr-day.selected {
    color: #fff;
    background: #00c853;
    border: 1px solid #e4e4e4;
    border-width: 1px 1px 0 0;
    opacity: 1; }
    .flatpickr-day.selected .flatpickr-price {
      color: inherit; }
    .flatpickr-day.selected:hover {
      background: #00c853;
      border: 1px solid #e4e4e4;
      border-width: 1px 1px 0 0; }
  .flatpickr-day:hover {
    color: #fff;
    background: #00c853;
    border: 1px solid #e4e4e4;
    border-width: 1px 1px 0 0; }
    .flatpickr-day:hover .flatpickr-price {
      color: #fff; }

/* ------------------------------------*\
    $SPECIFIC FORMS
\*------------------------------------ */
/* Search Form */
.search-form {
  display: none; }
  @media screen and (min-width: 64em) {
    .search-form {
      float: left;
      margin: 31px 0 0 25px;
      width: 37%;
      display: block; } }
  .search--open .search-form {
    display: block; }
  .search-form form {
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 4px; }
    @media screen and (min-width: 64em) {
      .search-form form {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; } }
    @media screen and (max-width: 63.99em) {
      .search--open .search-form form {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: absolute;
        top: 100%;
        width: 92%;
        left: 4%;
        margin-top: 1.5rem;
        z-index: 1; } }
  .search-form .form-item {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin: 0; }
  .search-form .form-text {
    border: none;
    background: transparent;
    padding: 10px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 100%;
    -wekit-appearance: none; }
    .search-form .form-text:focus {
      border: none; }
    .search-form .form-text::-webkit-input-placeholder {
      font-style: italic; }
    .search-form .form-text:-ms-input-placeholder {
      font-style: italic; }
    .search-form .form-text::-ms-input-placeholder {
      font-style: italic; }
    .search-form .form-text::placeholder {
      font-style: italic; }
  .search-form .form-actions {
    position: relative; }
    .search-form .form-actions::after {
      background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
      background-position: 83.68320610687023% 80.30127462340673%;
      width: 12px;
      height: 12px;
      content: '';
      display: block;
      position: absolute;
      top: 10px;
      right: 10px;
      -webkit-transform: scale(1.3);
              transform: scale(1.3);
      pointer-events: none; }
  .search-form .form-submit {
    width: 30px;
    height: 100%;
    text-indent: -9999em;
    background-color: transparent;
    border: none;
    -wekit-appearance: none;
    padding: 10px 10px 5px;
    border-radius: 0; }
    .search-form .form-submit:hover, .search-form .form-submit:focus {
      background: #e3f2fd; }
  .search-form .search-form__icon {
    height: 18px;
    width: 18px; }

/* Hotels search */
.hotels-search__wrapper {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  background-color: #64b5f6;
  color: #fff;
  padding-top: 1rem;
  padding-bottom: 1rem; }
  @media screen and (max-width: 63.99em) {
    .hotels-search__wrapper {
      margin-bottom: 1.5rem; } }
  @media screen and (max-width: 63.99em) {
    .hotels-search__wrapper.hotels-search--landing {
      margin-bottom: 0; } }
  @media screen and (min-width: 64em) {
    .hotels-search__wrapper.hotels-search--landing {
      width: 375px;
      position: absolute;
      left: 15px;
      top: 15px;
      margin: 0;
      padding: 1rem;
      z-index: 3;
      border-radius: 4px; } }

.hotels-search__summary {
  display: none; }

.hotels-search__form {
  position: relative; }
  @media screen and (min-width: 64em) {
    .hotels-search--default .hotels-search__form {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      max-width: 100%; } }

.hotels-search__location-label,
.hotels-search__range,
.hotels-search__room-number {
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-bottom: 0; }
  .hotels-search__location-label .hotels-search__remove-room,
  .hotels-search__range .hotels-search__remove-room,
  .hotels-search__room-number .hotels-search__remove-room {
    color: #fff;
    text-decoration: underline;
    text-transform: lowercase;
    cursor: pointer; }

@media screen and (min-width: 64em) {
  .hotels-search--default .hotels-search__location {
    -ms-flex-preferred-size: 23%;
        flex-basis: 23%;
    margin: 0 1rem 0 0; } }

@media screen and (min-width: 64em) {
  .hotels-search--default .hotels-search__dates {
    -ms-flex-preferred-size: 24%;
        flex-basis: 24%;
    margin: 0 1rem 0 0; } }

.hotels-search__dates .flatpickr-input {
  background: #fff url(/themes/custom/atd/images/calendar-blue.svg) no-repeat 95%;
  background-size: 16px auto; }

.hotels-search__arrival,
.hotels-search__departure {
  width: 50%;
  display: inline-block;
  float: left; }

.hotels-search__arrival {
  padding-right: 0.5rem; }

.hotels-search__departure {
  padding-left: 0.5rem; }

@media screen and (min-width: 64em) {
  .hotels-search--default .hotels-search__rooms {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    margin: 0 1rem 0 0; } }

.hotels-search__room {
  width: 100%; }
  .hotels-search__room + .hotels-search__room {
    margin-top: 5px; }

.hotels-search__qtys {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  clear: both; }

.hotels-search__qtys-item {
  width: 31%;
  max-width: 31%; }

.hotels-search__qtys-label {
  line-height: 1.15; }

.hotels-search__room-links {
  margin-top: 0.5rem; }

.hotels-search__room-add {
  color: #fff;
  text-decoration: underline;
  cursor: pointer; }
  .hotels-search__room-add:hover, .hotels-search__room-add:focus {
    color: #fff;
    text-decoration: none; }

.hotels-search__search {
  padding-left: 97px; }
  @media screen and (min-width: 64em) {
    .hotels-search--default .hotels-search__search {
      -ms-flex-preferred-size: 16%;
          flex-basis: 16%;
      margin: 18px 0 0 0;
      padding-left: 0; } }

.hotels-search__clear-search {
  display: block;
  text-align: center;
  color: #fff;
  text-decoration: underline;
  margin-top: 3px; }
  .hotels-search__clear-search:hover, .hotels-search__clear-search:focus {
    color: #fff;
    text-decoration: none; }

.hotels-search__abta-link {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 0 0;
  width: 82px;
  height: 38px;
  display: block;
  content: '';
  position: absolute;
  bottom: 25px;
  left: 0; }
  @media screen and (min-width: 64em) {
    .hotels-search--default .hotels-search__abta-link {
      top: 19px;
      right: 4px;
      left: auto;
      bottom: auto; } }
  .hotels-search__abta-link span {
    text-indent: -3000px;
    font-size: 0; }

/* Hotels room search */
.room-search {
  display: block;
  background: #64b5f6;
  color: #fff;
  font-size: 1.25rem;
  padding: 1rem; }
  .room-search .form-item {
    margin: 0; }

.room-search__close {
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  height: 16px;
  width: 16px;
  padding: 2px;
  border: none;
  background: none;
  top: -0.5rem;
  right: 0;
  padding: 10px; }
  .room-search__close::before, .room-search__close::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 5px;
    height: 20px;
    width: 4px;
    background: #42a5f5;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); }
  .room-search__close::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg); }
  .room-search__close:hover, .room-search__close:focus {
    cursor: pointer; }
    .room-search__close:hover::before, .room-search__close:hover::after, .room-search__close:focus::before, .room-search__close:focus::after {
      background: #64b5f6; }
  @media screen and (min-width: 64em) {
    .room-search__close {
      display: none; } }
  .room-search__close::before, .room-search__close::after {
    background: #fff; }

.room-search__fields {
  padding-top: 1rem; }

.room-search__title {
  display: none; }

.room-search__form {
  position: relative;
  max-width: 100%; }

.room-search__summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .room-search__summary p {
    margin: 0; }

.room-search__summary-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 75%;
          flex: 1 0 75%; }

.search-form-holder--hotel-cart {
  display: none; }

.room-search__dates,
.room-search__room-number {
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-bottom: 5px; }

.room-search__dates {
  margin-bottom: 1rem; }

.room-search__arrival,
.room-search__departure {
  width: 50%;
  display: inline-block;
  float: left; }
  .room-search__arrival .flatpickr-input,
  .room-search__departure .flatpickr-input {
    background: #fff url(/themes/custom/atd/images/calendar-blue.svg) no-repeat 95% 7px;
    background-size: 16px auto; }

.room-search__arrival {
  padding-right: 0.5rem; }

.room-search__departure {
  padding-left: 0.5rem; }

.room-search__rooms {
  margin-bottom: 1rem; }

.room-search__room {
  width: 100%;
  margin-bottom: 1rem; }

.room-search__qtys {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.room-search__qtys-item {
  -ms-flex-preferred-size: 33.333%;
      flex-basis: 33.333%;
  max-width: 33.333%;
  clear: none;
  padding-right: 7px; }
  .room-search__qtys-item:last-child {
    padding-right: 0; }

.room-search__qtys-label {
  line-height: 1.15;
  font-size: 1.1rem; }

.room-search__qtys-select {
  width: 100%; }

.hotels-search__room .ages,
.room-search__ages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  clear: both; }

.room-search__ages-title {
  margin: 10px 0 0;
  font-style: italic;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  font-size: 1.25rem; }

.room-search__age {
  -ms-flex-preferred-size: 31%;
      flex-basis: 31%;
  max-width: 31%;
  margin-bottom: 5px;
  margin-right: 3.4%; }
  .room-search__age:nth-of-type(3n) {
    margin-right: 0; }

.room-search__room-links {
  float: left; }

.room-search__room-add {
  color: #fff;
  text-decoration: underline; }
  .room-search__room-add:hover {
    color: #fff; }

.room-search__search {
  display: block;
  text-align: center; }

.room-search__btn {
  width: 100%; }

.room-search__clear-search {
  display: block;
  text-align: center;
  color: #fff;
  text-decoration: underline;
  margin-top: 3px; }

.room-search__abta-link {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 0 0;
  width: 82px;
  height: 38px;
  display: inline-block;
  content: ''; }
  @media screen and (min-width: 64em) {
    .room-search__abta-link {
      display: none; } }
  .room-search__abta-link span {
    text-indent: -3000px;
    font-size: 0; }

/* Hotels search filter form */
.filter-form {
  border: 1px solid #e4e4e4; }

.filter-form__toggle-title {
  border-bottom: 1px solid #e4e4e4;
  padding-left: 3rem;
  margin: 0; }
  .filter-form__toggle-title::before {
    top: 19px;
    left: 15px; }
  .filter-form__toggle-title.accordion__btn-active::before {
    left: 19px;
    top: 17px; }
  .filter-form__toggle-title::after {
    background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
    background-position: 85.07177033492823% 81.97674418604652%;
    width: 15px;
    height: 15px;
    content: '';
    display: inline-block;
    padding-left: 10px;
    position: relative;
    top: 3px; }
  @media screen and (min-width: 64em) {
    .filter-form__toggle-title {
      display: none; } }

.filter-form__wrapper {
  padding: 0 1rem 1rem; }

.filter-form__free-dine {
  background: #ffdede;
  padding: 14px 10px 10px; }

.filter-form__free-dine-img {
  font-size: 1.4rem;
  padding-left: 76px;
  position: relative; }
  .filter-form__free-dine-img::before {
    background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
    background-position: 42.42424242424242% 40.801886792452834%;
    width: 70px;
    height: 27px;
    content: '';
    position: absolute;
    top: -5px;
    left: 2px; }

.filter-form__categories,
.filter-form__resorts,
.filter-form__star-filter {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 0; }

.filter-form__offers {
  margin-bottom: 0; }

.filter-form__section-filters {
  padding-bottom: 1rem; }
  .filter-form__section-filters.hotel-categories {
    padding-bottom: 1rem; }
  .filter-form__offers .filter-form__section-filters {
    margin-left: -10px;
    margin-right: -10px; }

.filter-form__star-rating {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .filter-form__star-rating .filter-form__star {
    margin-right: 5px; }
    .filter-form__star-rating .filter-form__star .on {
      background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
      background-position: 92.72030651340997% 91.15250291036088%;
      width: 16px;
      height: 16px;
      display: block;
      content: '';
      position: relative;
      top: -1px; }
    .filter-form__star-rating .filter-form__star .off {
      background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
      background-position: 94.25287356321839% 93.0151338766007%;
      width: 16px;
      height: 16px;
      display: block;
      content: '';
      position: relative;
      top: -1px; }

/* ------------------------------------*\
    $Table
\*------------------------------------ */
table {
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #e4e4e4;
  width: 100%; }

th {
  text-align: left;
  border: 1px solid #e4e4e4;
  padding: 0.2em; }

td {
  border: 1px solid #e4e4e4;
  padding: 0.2em; }

/* ------------------------------------*\
    $LAYOUT
\*------------------------------------ */
/* ------------------------------------*\
    $LAYOUT
\*------------------------------------ */
html {
  scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto; } }

body {
  overflow-x: hidden;
  background: #fff;
  padding-top: 58px; }
  @media screen and (min-width: 64em) {
    body {
      padding: 0; } }

article {
  position: relative; }

@media screen and (max-width: 63.99em) {
  .menu--open {
    overflow: hidden; }
    .menu--open .mini-cart__mob--active {
      z-index: 1; } }

.site-header {
  display: block; }
  @media screen and (max-width: 63.99em) {
    .site-header {
      position: fixed;
      width: 100%;
      top: 0;
      left: 0;
      background: #fff;
      border-bottom: 1px solid #e4e4e4;
      -webkit-transition: -webkit-transform 0.3s;
      transition: -webkit-transform 0.3s;
      transition: transform 0.3s;
      transition: transform 0.3s, -webkit-transform 0.3s;
      z-index: 3; }
      .search--open .site-header::after {
        content: '';
        display: block;
        position: absolute;
        background: #1565c0;
        height: 100%;
        width: 100vw;
        padding: 5px 0;
        top: 100%;
        left: 0; } }

@media screen and (max-width: 63.99em) {
  .site-header--scrolled {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%); }
    .menu--open .site-header--scrolled,
    .search--open .site-header--scrolled {
      -webkit-transform: translateY(0);
              transform: translateY(0); } }

.logo {
  float: left;
  padding: 10px 10px 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media screen and (min-width: 64em) {
    .logo {
      padding: 11px 10px 10px 0; } }

.logo__img {
  float: left;
  width: 130px;
  height: 37px; }
  @media screen and (min-width: 64em) {
    .logo__img {
      width: 200px;
      height: 61px; } }

.logo__txt {
  font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
  font-style: italic;
  color: #00c853;
  float: left;
  font-size: 14px;
  line-height: 1;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin: 0 0 0 -54px; }
  @media screen and (max-width: 63.99em) {
    .logo__txt {
      display: none; } }

.site-header__info {
  display: none; }
  @media screen and (min-width: 64em) {
    .site-header__info {
      float: right;
      clear: right;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      color: #848484;
      margin-top: 5px; } }

@media screen and (min-width: 64em) {
  .site-header__tel {
    font-size: 1.25rem;
    text-align: right;
    margin-right: 10px; }
    .site-header__tel a {
      display: block;
      font-size: 2.6rem;
      line-height: 0.9;
      color: #848484; }
    .site-header__tel .site-header__tel-xmas {
      font-size: 1.2rem;
      display: inline;
      color: #42a5f5; } }

@media screen and (min-width: 64em) {
  .site-header__abta {
    float: right; }
    .site-header__abta .abta {
      width: 82px;
      height: 38px; } }

.usps {
  text-align: center;
  font-size: 1.2rem;
  background: #00496c;
  min-height: 4rem; }
  @media screen and (min-width: 64em) {
    .usps {
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      padding-left: calc(50vw - 50%);
      padding-right: calc(50vw - 50%);
      background: none;
      min-height: 0;
      border-bottom: 1px solid #e4e4e4; } }

.usp__detail {
  display: none;
  position: absolute;
  top: 90%;
  padding: 10px;
  text-align: left;
  background: #fff;
  border: 1px solid #e4e4e4;
  width: 200px;
  z-index: 4; }

.usp__item {
  display: inline-block;
  position: relative;
  padding: 10px; }
  @media screen and (max-width: 63.99em) {
    .usp__item {
      display: block;
      position: absolute;
      color: #fff;
      background: #00496c;
      text-align: center;
      width: 100%;
      opacity: 0;
      -webkit-transition: opacity 3s;
      transition: opacity 3s; } }
  @media screen and (min-width: 64em) {
    .usp__item:hover .usp__detail {
      display: block; } }

@media screen and (max-width: 63.99em) {
  .usps--4 .usp__item {
    opacity: 0;
    -webkit-animation: usps4 24s ease-in-out infinite;
            animation: usps4 24s ease-in-out infinite; }
    .usps--4 .usp__item:nth-child(2) {
      -webkit-animation-delay: 6s;
              animation-delay: 6s; }
    .usps--4 .usp__item:nth-child(3) {
      -webkit-animation-delay: 12s;
              animation-delay: 12s; }
    .usps--4 .usp__item:nth-child(4) {
      -webkit-animation-delay: 18s;
              animation-delay: 18s; }
  @-webkit-keyframes usps4 {
    0% {
      opacity: 0; }
    12.5% {
      opacity: 1; }
    18.5% {
      opacity: 1; }
    25% {
      opacity: 0; } }
  @keyframes usps4 {
    0% {
      opacity: 0; }
    12.5% {
      opacity: 1; }
    18.5% {
      opacity: 1; }
    25% {
      opacity: 0; } }
  .usps--5 .usp__item {
    opacity: 0;
    -webkit-animation: usps5 30s ease-in-out infinite;
            animation: usps5 30s ease-in-out infinite; }
    .usps--5 .usp__item:nth-child(2) {
      -webkit-animation-delay: 6s;
              animation-delay: 6s; }
    .usps--5 .usp__item:nth-child(3) {
      -webkit-animation-delay: 12s;
              animation-delay: 12s; }
    .usps--5 .usp__item:nth-child(4) {
      -webkit-animation-delay: 18s;
              animation-delay: 18s; }
    .usps--5 .usp__item:nth-child(5) {
      -webkit-animation-delay: 24s;
              animation-delay: 24s; }
  @-webkit-keyframes usps5 {
    0% {
      opacity: 0; }
    8% {
      opacity: 1; }
    12% {
      opacity: 1; }
    20% {
      opacity: 0; } }
  @keyframes usps5 {
    0% {
      opacity: 0; }
    8% {
      opacity: 1; }
    12% {
      opacity: 1; }
    20% {
      opacity: 0; } } }

.usp__icon {
  height: 19px;
  width: 22px;
  vertical-align: text-bottom;
  fill: #fff;
  margin-bottom: -2px; }
  @media screen and (min-width: 64em) {
    .usp__icon {
      fill: #42a5f5; } }

/* ------------------------------------*\
    $FOOTER
\*------------------------------------ */
.page-footer {
  margin-top: 2rem; }
  @media screen and (min-width: 48em) {
    .page-footer {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }

.site-footer {
  clear: both; }
  .site-footer .contextual-region {
    clear: both; }

.site-footer__our-story {
  text-align: center;
  border-top: 1px solid #e4e4e4;
  padding-top: 1rem; }

.our-story {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.our-story__award {
  display: none; }
  @media screen and (min-width: 48em) {
    .our-story__award {
      display: block;
      min-width: 20%; } }
  @media screen and (min-width: 48em) {
    .our-story__award:first-child {
      min-width: 18%; } }
  @media screen and (min-width: 64em) {
    .our-story__award:first-child {
      min-width: 15%; } }

.our-story__text strong {
  font-family: "Campton-SemiBold";
  color: #00c853;
  font-style: italic; }

.our-story__award-text {
  font-size: 1.25rem; }

.our-story__award-icon--feefo {
  width: 110px;
  height: 110px; }

.our-story__award-icon--traveloution {
  width: 295px;
  height: 46px; }

.our-story__award-icon--bta {
  width: 130px;
  height: 140px; }

.site-footer__connect {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding: 1rem 0;
  font-size: 1.25rem;
  text-align: center;
  clear: both;
  background-color: #f4f4f4;
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4; }
  @media screen and (min-width: 48em) {
    .site-footer__connect {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; } }

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.social__item {
  padding: 0 2px; }

.social__link {
  display: block;
  opacity: 0.8; }
  .social__link:hover, .social__link:focus {
    opacity: 1; }

.social__icon {
  display: block;
  width: 30px;
  height: 30px; }

.connect__title {
  font-size: 1.6rem;
  margin: 1rem 0; }
  @media screen and (min-width: 48em) {
    .connect__title {
      margin: 0 1rem 0 2rem; } }

.connect__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.connect__form-input {
  font-size: 1.4rem;
  padding: 1rem;
  min-width: 190px;
  border: 1px solid #e4e4e4;
  border-right: none;
  border-radius: 2px 0 0 2px; }
  .connect__form-input + .btn {
    border-radius: 0 2px 2px 0; }

.sidebar-social {
  margin-bottom: 3rem; }

.sidebar-social__title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 5px; }
  @media screen and (min-width: 48em) {
    .sidebar-social__title {
      font-size: 1.6rem; } }

.social--sidebar {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left; }

.signup-sidebar {
  margin-bottom: 3rem;
  padding: 1.5rem;
  border-radius: 4px;
  border: 1px solid #e4e4e4;
  position: relative; }

.signup-sidebar__icon {
  position: absolute;
  top: 14px;
  left: 16px;
  width: 36px;
  height: 36px;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  fill: #fb8c00; }

.signup-sidebar__subscribe {
  font-size: 1.25rem;
  margin-bottom: 0;
  line-height: 1;
  padding-left: 43px;
  font-style: italic; }

.signup-sidebar__newsletter {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  padding-left: 43px; }
  @media screen and (min-width: 48em) {
    .signup-sidebar__newsletter {
      font-size: 1.8rem; } }

.signup-sidebar__input {
  width: 100%;
  margin-bottom: 1rem; }

.signup-sidebar__btn-wrapper {
  margin-bottom: 0;
  text-align: center; }

.nav-footer {
  font-size: 1.25rem; }

.nav-footer__block {
  width: 50%;
  float: left;
  padding: 0 0.5rem; }
  @media screen and (min-width: 48em) {
    .nav-footer__block {
      width: 25%; } }
  @media screen and (min-width: 64em) {
    .nav-footer__block {
      width: 20%; } }

.nav-footer__block--info {
  clear: both;
  width: 100%; }
  @media screen and (max-width: 63.99em) {
    .nav-footer__block--info {
      border-top: 1px solid #e4e4e4;
      text-align: center; } }
  @media screen and (min-width: 48em) and (max-width: 63.99em) {
    .nav-footer__block--info {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .nav-footer__block--info .nav-footer__heading,
      .nav-footer__block--info p {
        margin: 0; } }
  @media screen and (min-width: 64em) {
    .nav-footer__block--info {
      width: 20%;
      clear: none; } }

.nav-footer__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .nav-footer__media p {
    -ms-flex-negative: 2;
        flex-shrink: 2; }

.nav-footer__icon {
  height: 54px;
  width: 56px;
  margin-right: 1rem; }

.nav-footer__heading {
  font-size: 1.5rem;
  font-weight: bold;
  color: #656565;
  margin: 1rem 0 0.5rem; }
  @media screen and (min-width: 64em) {
    .nav-footer__heading {
      font-size: 1.6rem;
      margin: 1rem 0; } }

.nav-footer__link {
  font-size: 1.25rem;
  display: block;
  padding-bottom: 0.5rem; }
  .nav-footer__link:link, .nav-footer__link:visited {
    color: #656565; }
  .nav-footer__link:hover, .nav-footer__link:focus {
    color: #64b5f6; }

.nav-footer__link--tel {
  font-size: 2.2rem;
  line-height: 1;
  color: #656565; }
  @media screen and (min-width: 64em) {
    .nav-footer__link--tel {
      font-size: 2.4rem; } }
  @media screen and (min-width: 48em) and (max-width: 63.99em) {
    .nav-footer__link--tel {
      margin: 15px 10px;
      padding: 0; } }

.site-footer__logos {
  border-top: 1px solid #e4e4e4;
  clear: both;
  padding: 1rem 0;
  text-align: center; }
  @media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
    .site-footer__logos {
      overflow: hidden; } }

@media screen and (min-width: 48em) {
  .logo-block {
    display: inline-block;
    vertical-align: top; } }

.logo-block svg {
  max-width: 100%;
  max-height: 55px;
  display: inline-block;
  margin: 0 2px; }
  @media screen and (min-width: 48em) {
    .logo-block svg {
      float: left; } }
  @media screen and (min-width: 64em) {
    .logo-block svg {
      margin: 0 5px; } }

@media screen and (min-width: 48em) {
  .logo-block--border {
    padding-right: 5px;
    margin-right: 5px;
    border-right: 1px solid #e4e4e4; } }

@media screen and (min-width: 64em) {
  .logo-block--border {
    padding-right: 10px;
    margin-right: 10px; } }

.logo-block__icon--card {
  height: 22px;
  width: 36px;
  margin-right: 5px;
  padding: 2px;
  border: 1px solid #e4e4e4; }

.logo-block__heading {
  margin-bottom: 0;
  text-align: left; }

.logo-block__icon--checkrate {
  width: 100px; }

.logo-block__icon--secure {
  width: 125px; }

.logo-block__icon--verified {
  width: 75px; }

.logo-block__icon--securecode {
  width: 100px; }

.logo-block__icon--abta {
  width: 100px; }

.site-footer__smalltext {
  padding: 1rem 0;
  font-size: 1.25rem;
  text-align: center;
  clear: both;
  background-color: #f4f4f4;
  border-top: 1px solid #e4e4e4; }
  .site-footer__smalltext p {
    margin: 0.25rem 0; }

/* ------------------------------------*\
    $PAGE STRUCTURE
\*------------------------------------ */
/* ------------------------------------*\
    $NAVIGATION
\*------------------------------------ */
.nav {
  position: relative;
  clear: both;
  font-size: 1.6rem; }
  @media screen and (max-width: 63.99em) {
    .nav {
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      height: calc(100vh - 61px);
      display: none;
      background: #fff;
      overflow-y: auto;
      overflow-x: hidden; }
      .menu--open .nav {
        display: block; } }
  @media screen and (min-width: 64em) {
    .nav {
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      padding-left: calc(50vw - 50%);
      padding-right: calc(50vw - 50%);
      background: #00496c;
      text-align: center; } }

@media screen and (max-width: 63.99em) {
  .nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; } }

.nav__item {
  display: block; }
  @media screen and (max-width: 63.99em) {
    .nav__item {
      -webkit-box-flex: 50%;
          -ms-flex: 50% 0 0px;
              flex: 50% 0 0;
      border: 1px solid #e4e4e4;
      border-width: 0 1px 1px 0; }
      .nav__item[data-nid="4406"], .nav__item[data-nid="242632"], .nav__item.nav__item--forum {
        display: none; }
      .nav__item[data-nid="235203"] {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1; }
        .nav__item[data-nid="235203"] > .nav__link {
          color: #e50650; }
          .nav__item[data-nid="235203"] > .nav__link::before {
            background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
            background-position: 69.21587608906098% 66.39150943396227%;
            width: 27px;
            height: 27px;
            top: 30%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%) scale(1.5);
                    transform: translate(-50%, -50%) scale(1.5); }
      .nav__item[data-nid="4427"] {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2; }
      .nav__item[data-nid="242636"] {
        -webkit-box-ordinal-group: 7;
            -ms-flex-order: 6;
                order: 6;
        border-right: none; }
        .nav__item[data-nid="242636"] .nav__link::before {
          background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
          background-position: 72.85938727415554% 69.93835941204362%;
          width: 41.6px;
          height: 31.4px; }
      .nav__item[data-nid="hotels"] {
        -webkit-box-ordinal-group: 6;
            -ms-flex-order: 5;
                order: 5;
        border-right: none; }
        .nav__item[data-nid="hotels"] .nav__link::before {
          background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
          background-position: 62.62135922330097% 58.44155844155844%;
          width: 30px;
          height: 28px; }
      .nav__item[data-nid="5054"] {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        border-right: none; }
        .nav__item[data-nid="5054"] .nav__link::before {
          background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
          background-position: 58.98599329256264% 54.93074464306854%;
          width: 46.2px;
          height: 30.3px; }
      .nav__item[data-nid="481"] {
        -webkit-box-ordinal-group: 5;
            -ms-flex-order: 4;
                order: 4; }
        .nav__item[data-nid="481"] .nav__link::before {
          background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
          background-position: 77.8395552025417% 73.81037142518096%;
          width: 52.8px;
          height: 32.3px; }
      .nav__item.nav__item--hotels {
        -webkit-box-ordinal-group: 6;
            -ms-flex-order: 5;
                order: 5; }
        .nav__item.nav__item--hotels .nav__link::before {
          background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
          background-position: 62.62135922330097% 58.44155844155844%;
          width: 30px;
          height: 28px; }
      .nav__item.nav__item-mobile-destination {
        -webkit-box-ordinal-group: 7;
            -ms-flex-order: 6;
                order: 6; }
        .nav__item.nav__item-mobile-destination .nav__link::before {
          background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
          background-position: 66.17647058823529% 62.634730538922156%;
          width: 40px;
          height: 40px; } }
  @media screen and (min-width: 64em) {
    .nav__item {
      display: inline-block; }
      .nav__item[data-nid="481"], .nav__item.nav__item-mobile-destination {
        display: none; } }

@media screen and (min-width: 64em) {
  .nav__item-standard {
    position: relative; } }

.nav__link {
  display: block;
  padding: 13px;
  line-height: 1;
  color: #222; }
  @media screen and (max-width: 63.99em) {
    .nav__link {
      font-family: "Campton-SemiBold";
      text-align: center;
      font-size: 1.2rem;
      position: relative;
      padding: 6rem 1rem 1.5rem; }
      .nav__link::before {
        background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
        background-position: 77.8395552025417% 73.81037142518096%;
        width: 52.8px;
        height: 32.3px;
        content: '';
        display: block;
        margin: auto;
        position: absolute;
        top: 40%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%); }
      [data-has-children=true] .nav__link::after {
        font-family: "Campton-Light";
        color: #656565;
        font-size: 2rem;
        content: '+';
        display: block;
        position: absolute;
        top: 5px;
        right: 5px; } }
  @media screen and (min-width: 64em) {
    .nav__link {
      display: inline-block;
      color: #fff; }
      [data-has-children=true] .nav__link {
        position: relative;
        padding-right: 25px; }
        [data-has-children=true] .nav__link::after {
          content: "";
          border: solid 5px transparent;
          border-top-color: #fff;
          width: 0;
          height: 0;
          position: absolute;
          right: 10px;
          top: 45%; } }
  .nav__link:focus {
    color: #222; }
    @media screen and (min-width: 64em) {
      .nav__link:focus {
        color: #fff; } }
  .nav__link:hover {
    color: #222; }
    @media screen and (min-width: 64em) {
      .nav__link:hover {
        color: #42a5f5; }
        .nav__link:hover::after {
          border-top-color: #42a5f5; } }

@media screen and (min-width: 64em) {
  .nav__link--active {
    background: #64b5f6;
    color: #fff; }
    .nav__link--active:hover {
      color: #1565c0; }
      .nav__link--active:hover::after {
        border-top-color: #1565c0; } }

@media screen and (min-width: 64em) {
  .nav__mobile-nav {
    display: none; } }

.nav-utility {
  display: none; }
  @media screen and (min-width: 64em) {
    .nav-utility {
      font-size: 1.25rem;
      display: block;
      float: right;
      text-align: right; } }

.nav-utility__item {
  display: block;
  position: relative; }
  @media screen and (min-width: 64em) {
    .nav-utility__item {
      display: inline-block; } }

.nav-utility__link {
  display: inline-block;
  padding: 5px;
  margin-left: 5px; }

.nav-utility__parent {
  padding-right: 10px; }
  .nav-utility__parent::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 10px;
    height: 5px;
    width: 5px;
    border: 1px solid #42a5f5;
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg); }

.nav-utility__parent--active::after {
  top: 8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg); }

@media screen and (min-width: 64em) {
  .nav-utility__sub-list {
    background: white;
    border: 1px solid #e4e4e4;
    display: none;
    padding: 0.5rem 0;
    position: absolute; } }

@media screen and (min-width: 64em) {
  .nav-utility__sub-list--active {
    display: block; } }

.nav-utility__sub-item {
  display: block;
  width: auto;
  text-align: left; }

.nav-utility__sub-list-link {
  padding: 1.5rem 2rem;
  margin: 0;
  white-space: nowrap; }

.lang-switcher .nav-utility__sub-list {
  z-index: 1;
  left: -10px; }

.lang-switcher__toggle {
  padding: 5px 10px 5px 25px; }
  .lang-switcher__toggle::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 3px;
    -webkit-transform: scale(0.6);
            transform: scale(0.6); }
  .lang-switcher__toggle .lang-switcher__lang {
    display: none; }

.lang-switcher__toggle--en::before {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 37.7431906614786% 38.12865497076023%;
  width: 32px;
  height: 20px; }

.lang-switcher__toggle--en-ie::before {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 34.63035019455253% 35.78947368421053%;
  width: 32px;
  height: 20px; }

.lang-switcher__toggle--de::before {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 31.51750972762646% 33.45029239766082%;
  width: 32px;
  height: 20px; }

.lang-switcher__link {
  white-space: nowrap;
  display: block;
  position: relative;
  padding: 6px 15px 6px 40px; }
  .lang-switcher__link::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: scale(0.6);
            transform: scale(0.6); }
    @media screen and (min-width: 48em) {
      .lang-switcher__link::before {
        left: 10px;
        top: 5px; } }

.lang-switcher__link--current {
  color: #656565; }

.lang-switcher__link--en::before {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 37.7431906614786% 38.12865497076023%;
  width: 32px;
  height: 20px; }

.lang-switcher__link--en-ie::before {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 34.63035019455253% 35.78947368421053%;
  width: 32px;
  height: 20px; }

.lang-switcher__link--de-de::before {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 31.51750972762646% 33.45029239766082%;
  width: 32px;
  height: 20px; }

.mega-menu {
  background: #fff;
  position: absolute;
  z-index: 4;
  top: 100%;
  left: 0;
  right: 0;
  display: none; }
  @media screen and (max-width: 63.99em) {
    .mega-menu {
      display: block;
      position: absolute;
      width: 100%;
      top: 0;
      bottom: 0;
      left: 100%;
      overflow-y: auto;
      -webkit-transition: left 0.3s;
      transition: left 0.3s; }
      @supports (-webkit-overflow-scrolling: touch) {
        .mega-menu {
          bottom: 16%; } } }
  @media screen and (min-width: 64em) {
    .mega-menu {
      margin: 0 auto;
      padding: 0 1rem;
      width: 100%;
      background: #64b5f6; } }
  @media screen and (min-width: 64em) and (min-width: 48em) {
    .mega-menu {
      padding: 0 1.5rem; } }
  @media screen and (min-width: 64em) and (min-width: 64em) {
    .mega-menu {
      padding: 0 1.5rem;
      max-width: 1054px; } }

.nav__dropdown-standard {
  background: white;
  border: 1px solid #e4e4e4;
  display: none;
  position: absolute;
  z-index: 4; }
  @media screen and (max-width: 63.99em) {
    .nav__dropdown-standard {
      background: #fff;
      position: absolute;
      z-index: 2;
      right: 0;
      display: block;
      width: 100%;
      top: 0;
      bottom: 0;
      left: 100%;
      overflow-y: auto;
      -webkit-transition: left 0.3s;
      transition: left 0.3s; } }

.nav__dropdown-item {
  text-align: left; }

@media screen and (max-width: 63.99em) {
  .nav__dropdown-link {
    font-family: "Campton-Light";
    border-bottom: 1px solid #e4e4e4;
    display: inline-block;
    color: #656565;
    background: #fff;
    padding: 1.2rem 1rem;
    width: 100%;
    text-align: left;
    font-size: 1.4rem;
    line-height: 1.4;
    position: relative;
    z-index: 2; } }

@media screen and (min-width: 64em) {
  .nav__dropdown-link {
    display: block;
    padding: 1rem 1.3rem;
    white-space: nowrap;
    font-size: 1.5rem; } }

.nav__dropdown--open,
.mega-menu--active {
  display: block; }
  @media screen and (max-width: 63.99em) {
    .nav__dropdown--open,
    .mega-menu--active {
      left: 0; } }
  .nav__dropdown--open .nav__dropdown-list,
  .mega-menu--active .nav__dropdown-list {
    display: block; }

.mega-menu__link {
  padding: 1.2rem 1rem;
  display: block;
  color: #656565; }
  @media screen and (max-width: 63.99em) {
    .mega-menu__link {
      font-family: "Campton-Light";
      font-size: 1.4rem;
      border-bottom: 1px solid #e4e4e4; } }
  @media screen and (min-width: 64em) {
    .mega-menu__link {
      font-family: "Campton-Book";
      display: inline-block;
      color: #fff;
      padding: 1rem 0; }
      .mega-menu__link:hover, .mega-menu__link:focus {
        color: #fff; } }

.mega-menu__link--back {
  position: relative;
  padding-left: 2.5rem; }
  .mega-menu__link--back::before {
    content: '';
    display: block;
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: -6px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    border: 1px solid #848484;
    border-width: 0 0 1px 1px;
    height: 8px;
    width: 8px; }
  @media screen and (min-width: 64em) {
    .mega-menu__link--back {
      display: none; } }

.mega-menu__generic_li {
  padding-bottom: 0.2rem;
  padding-right: 0.2rem; }

.mega-menu__panel {
  display: none;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  background: #fff;
  text-align: left; }
  @media screen and (min-width: 64em) {
    .mega-menu__panel {
      position: absolute;
      top: 0;
      right: -15px;
      left: -15px;
      min-height: calc(100% - 2rem);
      padding: 1rem;
      padding-left: calc(20% + 2.5rem);
      border-right: 15px solid #64b5f6;
      border-bottom: 15px solid #64b5f6; } }
  @media screen and (min-width: 64em) and (-ms-high-contrast: active), screen and (min-width: 64em) and (-ms-high-contrast: none) {
    .mega-menu__panel {
      left: -14px; } }
  @media screen and (min-width: 64em) {
      .mega-menu__panel::before {
        content: '';
        position: absolute;
        background: #64b5f6;
        height: 100%;
        width: calc(20% + 1.1rem);
        left: 0;
        top: 0;
        z-index: 1; } }

.mega-menu__panel--active {
  display: block;
  z-index: 2; }

.mega-menu__list-link {
  display: inline-block;
  color: #656565;
  background: #fff;
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  padding: 1.2rem 1rem;
  width: 100%;
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.4;
  position: relative;
  z-index: 2; }
  @media screen and (max-width: 63.99em) {
    .mega-menu__list-link {
      font-family: "Campton-Light";
      border-bottom: 1px solid #e4e4e4; }
      .mega-menu__list-link:hover, .mega-menu__list-link:focus {
        color: #656565; }
      .mega-menu__list-link::after {
        content: '+';
        display: block;
        position: absolute;
        right: 10px;
        top: 10px;
        font-size: 2rem; }
      .mega-menu__list-link.mega-menu__list-link--active::after {
        content: '-'; } }
  @media screen and (min-width: 64em) {
    .mega-menu__list-link {
      color: #fff;
      padding: 1rem;
      background: #1565c0;
      text-transform: uppercase; } }
  @media screen and (min-width: 64em) {
    .mega-menu__list-link:hover, .mega-menu__list-link:active {
      color: #fff; } }

@media screen and (min-width: 64em) {
  .mega-menu__list-item--active .mega-menu__list-link {
    cursor: pointer;
    background-color: #fff;
    color: black;
    -webkit-box-shadow: 3px 0 white;
            box-shadow: 3px 0 white; } }

.mega-menu__list-item--active .mega-menu__panel {
  display: block;
  z-index: 1; }

@media screen and (min-width: 64em) {
  .mega-menu__list-item {
    width: 20%;
    padding-bottom: 0.2rem;
    padding-right: 0.3rem; }
    .mega-menu__list-item:last-child {
      padding-bottom: 0; } }

.mega-menu__list-item.active .mega-menu__panel {
  display: block; }

@media screen and (min-width: 64em) {
  .mega-menu__list-link--active {
    background-color: #fff;
    color: black;
    -webkit-box-shadow: 3px 0 white;
            box-shadow: 3px 0 white; }
    .mega-menu__list-link--active:focus {
      color: inherit; } }

.mega-menu__list {
  position: relative; }

@media screen and (max-width: 63.99em) {
  .mega-menu__panel__title {
    font-family: "Campton-Light";
    padding: 1.2rem 1rem 1rem 2rem;
    display: block;
    color: #656565;
    font-size: 1.4rem;
    border-bottom: 1px solid #e4e4e4; } }

@media screen and (min-width: 64em) {
  .mega-menu__panel__title {
    font-size: 1.8rem;
    margin: 0 0 1rem 0;
    display: inline-block;
    font-family: "Campton-Book", Arial, helvetica, sans-serif;
    -webkit-font-smoothing: antialiased; } }

@media screen and (min-width: 64em) {
  .mega-menu__panel-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; } }

@media screen and (min-width: 64em) {
  .mega-menu__panel-list-col {
    width: 32.5%;
    margin-right: 1%; }
    .mega-menu__panel-list-col:last-child {
      margin-right: 0; } }

@media screen and (min-width: 64em) {
  .mega-menu__panel-item {
    font-size: 1.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1.5rem; } }

@media screen and (max-width: 63.99em) {
  .mega-menu__panel-link {
    font-family: "Campton-Light";
    padding: 1.2rem 1rem 1rem 2rem;
    display: block;
    color: #656565;
    font-size: 1.4rem;
    border-bottom: 1px solid #e4e4e4; }
    .mega-menu__panel-link:hover, .mega-menu__panel-link:focus {
      color: #656565; }
    .mega-menu__accordion-sub .mega-menu__panel-link {
      padding-left: 3rem; }
      .mega-menu__accordion-sub .mega-menu__accordion-sub .mega-menu__panel-link {
        padding-left: 4rem; } }

.mega-menu__accordion {
  position: relative;
  display: block; }
  @media screen and (max-width: 63.99em) {
    .mega-menu__accordion::after {
      content: '+';
      display: block;
      position: absolute;
      right: 10px;
      top: 10px;
      font-size: 2rem; } }
  @media screen and (min-width: 64em) {
    .mega-menu__accordion::before {
      content: "";
      width: 0;
      height: 0;
      border: solid 5px transparent;
      border-left-color: #42a5f5;
      float: left;
      position: absolute;
      top: 0.5rem;
      left: -1.4rem; } }

@media screen and (max-width: 63.99em) {
  .mega-menu__accordion--active::after {
    content: '-'; } }

@media screen and (min-width: 64em) {
  .mega-menu__accordion--active::before {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transform-origin: 4px;
            transform-origin: 4px; } }

.mega-menu__accordion-sub {
  display: none; }
  @media screen and (min-width: 64em) {
    .mega-menu__accordion-sub {
      padding-top: 1rem; } }

.mega-menu__accordion-sub--active {
  display: block; }

.nav__info {
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid #e4e4e4; }
  @media screen and (min-width: 64em) {
    .nav__info {
      display: none; } }
  .nav__info .nav__info-btn {
    display: block; }

.nav__info-text {
  margin: 1rem 0 0;
  font-size: 1.2rem; }

@media screen and (min-width: 64em) {
  .mobile-nav {
    display: none; } }

.mobile-nav__link {
  font-family: "Campton-Light";
  position: relative;
  font-size: 1.4rem;
  display: block;
  padding: 1.2rem 1rem 1.2rem 4rem;
  color: #656565;
  background: #fff;
  border-bottom: 1px solid #e4e4e4; }
  .mobile-nav__link::after {
    content: '';
    display: block;
    position: absolute;
    left: 1rem;
    top: 1.2rem; }

.mobile-nav__link--user::after {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 100% 100%;
  width: 20px;
  height: 20px;
  left: 0.9rem;
  -webkit-transform: scale(0.9);
          transform: scale(0.9); }

.mobile-nav__link--star::after {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 91.15384615384616% 89.23976608187135%;
  width: 20px;
  height: 20px; }

.mobile-nav__link--rss::after {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 82.47126436781609% 78.81257275902212%;
  width: 16px;
  height: 16px;
  left: 1.2rem; }

.mobile-nav__link--comment::after {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 87.99231508165225% 85.39719626168224%;
  width: 19px;
  height: 19px; }

/* ------------------------------------*\
    $NAV-TOGGLES for mobile & tablet devices
\*------------------------------------ */
.nav-toggles {
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 1rem -1rem 0 0; }
  @media screen and (min-width: 64em) {
    .nav-toggles {
      display: none; } }

.nav-toggles__item {
  position: relative; }
  .nav-toggles__item::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: #e4e4e4; }
  .nav-toggles__item:first-child::before {
    display: none; }

.nav-toggles__link {
  padding: 10px 15px;
  display: block; }

.nav-toggles__link--menu {
  position: relative;
  width: 45px;
  height: 40px; }

.burger {
  display: block;
  position: absolute;
  height: 3px;
  width: 25px;
  background: #42a5f5;
  border-radius: 9px;
  opacity: 1;
  top: 10px;
  left: 10px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.3s;
  transition: 0.3s; }

.burger-2,
.burger-3 {
  top: 18px; }

.burger-4 {
  top: 26px; }

.nav-toggles__link--menu--open .burger-1 {
  top: 18px;
  left: 50%;
  width: 0; }

.nav-toggles__link--menu--open .burger-2 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg); }

.nav-toggles__link--menu--open .burger-3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg); }

.nav-toggles__link--menu--open .burger-4 {
  top: 18px;
  left: 50%;
  width: 0; }

.nav-toggles__icon {
  display: block;
  height: 18px;
  width: 18px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }

.nav-toggles__link--search {
  height: 100%; }
  .nav-toggles__link--search::before, .nav-toggles__link--search::after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    background: #42a5f5;
    border-radius: 9px;
    position: absolute;
    top: 18px;
    left: 12px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }
  .nav-toggles__link--search::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg); }

.nav-toggles__link--search--open .nav-toggles__icon {
  -webkit-transform: scale(0);
          transform: scale(0); }

.nav-toggles__link--search--open::before, .nav-toggles__link--search--open::after {
  opacity: 1; }

.nav-toggles__link--lang {
  padding: 8px 20px 10px 30px;
  font-size: 1.6rem; }
  .nav-toggles__link--lang::before {
    content: '';
    display: block;
    position: absolute;
    left: -5px;
    top: 9px;
    -webkit-transform: scale(0.7);
            transform: scale(0.7); }
  .nav-toggles__link--lang::after {
    content: '';
    display: block;
    position: absolute;
    right: 10px;
    top: 16px;
    height: 5px;
    width: 5px;
    border: 1px solid #42a5f5;
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg); }
  .nav-toggles__link--lang .lang-switcher__lang {
    display: none; }

.nav-toggles__link--lang--open::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg); }

.nav-toggles__lang--en::before {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 37.7431906614786% 38.12865497076023%;
  width: 32px;
  height: 20px; }

.nav-toggles__lang--en-ie::before {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 34.63035019455253% 35.78947368421053%;
  width: 32px;
  height: 20px; }

.nav-lang-list {
  position: absolute;
  background: #fff;
  border-top: 1px solid #e4e4e4;
  padding: 14px 10px;
  top: 100%;
  left: 0;
  right: 0;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
  display: none; }

.nav-lang-list--open {
  display: block; }
  @media screen and (min-width: 64em) {
    .nav-lang-list--open {
      display: none; } }

.nav-lang-list__item {
  font-size: 1.5rem; }
  .nav-lang-list__item .lang-switcher__link {
    padding: 6px 10px 6px 45px; }
    .nav-lang-list__item .lang-switcher__link::before {
      -webkit-transform: scale(0.7);
              transform: scale(0.7);
      top: 5px; }

/* ------------------------------------*\
    $BREADCRUMB
\*------------------------------------ */
.breadcrumb {
  font-size: 1.15rem;
  padding: 1rem 0; }

.breadcrumb__item {
  display: inline-block; }
  .breadcrumb__item::after {
    content: '>'; }
  .breadcrumb__item:last-child::after {
    display: none; }

.breadcrumb__link--home::before {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 49.23664122137404% 46.46581691772885%;
  width: 12px;
  height: 12px;
  content: '';
  display: inline-block;
  margin-bottom: -1px; }

.breadcrumb__link--home span {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px); }

/* ------------------------------------*\
    $COMPONENTS
\*------------------------------------ */
/* ------------------------------------*\
    $ASIDE-BLOCK
\*------------------------------------ */
.aside-block {
  border: 1px solid #e4e4e4;
  border-bottom: none;
  padding: 1rem; }
  .aside-block:last-child {
    border-bottom: 1px solid #e4e4e4; }
  .aside-block ul {
    margin: 0 -1rem;
    font-size: 1.25rem; }
    .aside-block ul a {
      display: block;
      padding: 0.5rem 1rem;
      line-height: 1.2; }
    .aside-block ul ul {
      background-color: #f4f4f4;
      margin: 0.5rem 0;
      padding: 0.5rem 0; }
      .aside-block ul ul a {
        display: block;
        padding: 0.5rem 1rem 0.5rem 2rem;
        position: relative; }
        .aside-block ul ul a::before {
          content: '';
          position: absolute;
          height: 6px;
          width: 6px;
          background: #d4d4d4;
          border-radius: 50%;
          left: 8px;
          top: 35%; }
    .aside-block ul .is-active {
      color: #656565; }

.aside-block__title {
  font-size: 1.8rem;
  background: #1565c0;
  color: #fff;
  padding: 0.5rem 1rem;
  margin: -1.1rem -1.1rem 1rem; }

/* ------------------------------------*\
    $BUTTONS
\*------------------------------------ */
.btn,
.eu-cookie-compliance-default-button {
  display: inline-block;
  background: #00c853;
  color: #fff;
  padding: 1.2rem 1.5rem 1rem 1.5rem;
  font-size: 1.3rem;
  line-height: 1.2;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }
  .btn:hover, .btn:focus,
  .eu-cookie-compliance-default-button:hover,
  .eu-cookie-compliance-default-button:focus {
    color: #fff;
    background: #00953e; }
  .btn.disabled, .btn:disabled,
  .eu-cookie-compliance-default-button.disabled,
  .eu-cookie-compliance-default-button:disabled {
    background-color: #f4f4f4;
    color: #848484;
    cursor: not-allowed; }
    .btn.disabled:hover, .btn.disabled:focus, .btn:disabled:hover, .btn:disabled:focus,
    .eu-cookie-compliance-default-button.disabled:hover,
    .eu-cookie-compliance-default-button.disabled:focus,
    .eu-cookie-compliance-default-button:disabled:hover,
    .eu-cookie-compliance-default-button:disabled:focus {
      background-color: #f4f4f4; }
  .btn.selectedButton,
  .eu-cookie-compliance-default-button.selectedButton {
    position: relative;
    padding-left: 33px; }
    .btn.selectedButton::before,
    .eu-cookie-compliance-default-button.selectedButton::before {
      background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
      background-position: 20.84130019120459% 20.232558139534884%;
      width: 14px;
      height: 15px;
      content: '';
      display: block;
      position: absolute;
      left: 14px;
      top: 10px; }

.btn--alt {
  background: #64b5f6; }
  .btn--alt:hover, .btn--alt:focus {
    background: #349ef3; }

.btn--alt-1 {
  background: #1565c0; }
  .btn--alt-1:hover, .btn--alt-1:focus {
    background: #104d92; }

.btn--blue {
  background: #42a5f5; }
  .btn--blue:hover, .btn--blue:focus {
    background: #128ef2; }

.btn--white {
  background: #fff;
  color: #e50650; }
  .btn--white:hover, .btn--white:focus {
    background: #e50650;
    color: #fff;
    border: 1px solid #fff; }

.btn--small {
  padding: 1rem 1.5rem 0.8rem 1.5rem; }

.btn--full {
  width: 100%; }

.btn--chevron::after {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 22.0532319391635% 21.83961174023573%;
  width: 8px;
  height: 9.6px;
  content: '';
  display: inline-block;
  margin-left: 5px; }

.btn--room-search {
  background: #fff;
  color: #42a5f5;
  font-size: 1.2rem;
  padding: 1rem 0.7rem 0.8rem 0.7rem; }
  .btn--room-search:hover, .btn--room-search:focus {
    color: #42a5f5;
    background: #d3eafd; }

/* all carousels  */
.swiper-button-disabled {
  display: none; }
  @media screen and (min-width: 64em) {
    .swiper-button-disabled {
      display: none; } }

.img-hero {
  position: relative; }

.swiper-container-horizontal > .swiper-pagination {
  display: none;
  bottom: 40px; }
  @media screen and (min-width: 64em) {
    .swiper-container-horizontal > .swiper-pagination {
      display: block; }
      .swiper-container-horizontal > .swiper-pagination.swiper-pagination-lock {
        display: none; } }

.swiper-button-prev,
.swiper-button-next {
  margin: 0;
  padding: 0;
  clear: both;
  position: absolute;
  top: 50%;
  text-indent: -3000px;
  font-size: 0;
  line-height: 1.5;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  opacity: 0.8;
  border: 0;
  background: none;
  z-index: 1;
  cursor: pointer;
  width: 50px;
  height: 100px;
  overflow: hidden;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s; }
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    opacity: 1; }
  .swiper-button-prev::before,
  .swiper-button-next::before {
    content: "";
    position: absolute;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    top: 0;
    width: 100px;
    height: 100px; }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    content: "";
    position: absolute;
    border-left: 0;
    border-bottom: 0;
    right: 20px;
    width: 30px;
    height: 30px;
    border: solid 2px #fff;
    top: 50%;
    -webkit-transform: translateY(-15px) rotate(45deg);
            transform: translateY(-15px) rotate(45deg); }
  @media screen and (max-width: 74.99em) {
    .swiper-button-prev,
    .swiper-button-next {
      display: none; } }

.swiper-buttons {
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s; }
  @media screen and (min-width: 48em) {
    .swiper-buttons {
      padding: 0 1.5rem; } }
  @media screen and (min-width: 64em) {
    .swiper-buttons {
      padding: 0 1.5rem;
      max-width: 1054px; } }
  @media screen and (min-width: 48em) {
    .photo-grid .swiper-buttons {
      display: none; } }
  .swiper-container:hover .swiper-buttons {
    opacity: 1; }

.swiper-button-next {
  right: -60px; }
  .swiper-button-next::before {
    right: 0; }
  .swiper-button-next::after {
    border-left: none;
    border-bottom: none; }
  .swiper-button-next:focus {
    outline: none; }

.swiper-button-next--inside {
  right: 0; }
  .swiper-button-next--inside::before {
    left: 0; }
  .swiper-button-next--inside::after {
    right: 14px; }

.swiper-button-next--small {
  width: 50px;
  height: 60px;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px); }
  .swiper-button-next--small::before {
    border-radius: 50% 0 0 50%;
    width: 60px;
    height: 60px; }
  .swiper-button-next--small::after {
    width: 20px;
    height: 20px;
    -webkit-transform: translateY(-10px) rotate(45deg);
            transform: translateY(-10px) rotate(45deg); }

.swiper-button-prev {
  left: -60px; }
  .swiper-button-prev::before {
    left: 0; }
  .swiper-button-prev::after {
    border-right: none;
    border-top: none;
    right: auto;
    left: 20px; }
  .swiper-button-prev:focus {
    outline: none; }

.swiper-button-prev--inside {
  left: 0; }
  .swiper-button-prev--inside::before {
    right: 0;
    left: auto; }
  .swiper-button-prev--inside::after {
    left: 14px;
    right: auto; }

.swiper-button-prev--small {
  width: 50px;
  height: 60px;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px); }
  .swiper-button-prev--small::before {
    border-radius: 0 50% 50% 0;
    width: 60px;
    height: 60px; }
  .swiper-button-prev--small::after {
    width: 20px;
    height: 20px;
    -webkit-transform: translateY(-10px) rotate(45deg);
            transform: translateY(-10px) rotate(45deg); }

.swiper-container-rtl .swiper-button-next {
  left: -60px; }
  .swiper-container-rtl .swiper-button-next::before {
    left: 0; }
  .swiper-container-rtl .swiper-button-next::after {
    border-right: none;
    border-top: none;
    right: auto;
    left: 20px; }

.swiper-container-rtl .swiper-button-prev {
  right: -60px; }
  .swiper-container-rtl .swiper-button-prev::before {
    right: 0; }
  .swiper-container-rtl .swiper-button-prev::after {
    border-left: none;
    border-bottom: none; }

.swiper-pagination-bullet {
  height: 11px;
  width: 11px;
  opacity: 1;
  background: #fff;
  border: 1px solid #64b5f6;
  margin: 0 5px; }

.swiper-pagination-bullet-active {
  background: #64b5f6; }

/* carousel-hero e.g. homepage, special offer page
  img-hero e.g. special offer detail page */
.carousel-hero,
.img-hero {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-bottom: 1px solid #e4e4e4; }
  .carousel-hero .swiper-button-prev,
  .carousel-hero .swiper-button-next,
  .img-hero .swiper-button-prev,
  .img-hero .swiper-button-next {
    display: none; }
    @media screen and (min-width: 64em) {
      .carousel-hero .swiper-button-prev,
      .carousel-hero .swiper-button-next,
      .img-hero .swiper-button-prev,
      .img-hero .swiper-button-next {
        display: block; }
        .carousel-hero .swiper-button-prev.swiper-button-disabled,
        .carousel-hero .swiper-button-next.swiper-button-disabled,
        .img-hero .swiper-button-prev.swiper-button-disabled,
        .img-hero .swiper-button-next.swiper-button-disabled {
          display: none; } }

@media screen and (max-width: 47.99em) {
  .carousel-hero__slide--takeover .carousel-hero__content,
  .carousel-hero__slide--takeover .carousel-hero__img-link > picture,
  .carousel-hero__slide--takeover .img-hero__img > picture,
  .img-hero--takeover .carousel-hero__content,
  .img-hero--takeover .carousel-hero__img-link > picture,
  .img-hero--takeover .img-hero__img > picture {
    display: none; } }

@media screen and (min-width: 48em) {
  .carousel-hero__slide--takeover .carousel-hero__img-link > img,
  .carousel-hero__slide--takeover .img-hero__img > img,
  .img-hero--takeover .carousel-hero__img-link > img,
  .img-hero--takeover .img-hero__img > img {
    display: none; } }

.carousel-hero__img-link,
.img-hero__img {
  overflow: hidden;
  display: block; }
  .carousel-hero__img-link::after,
  .img-hero__img::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0; }
    @media screen and (min-width: 48em) {
      .carousel-hero__img-link::after,
      .img-hero__img::after {
        display: none; } }
  .carousel-hero__img-link img,
  .img-hero__img img {
    position: relative;
    display: block;
    height: auto;
    width: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%); }
    @media screen and (min-width: 48em) {
      .carousel-hero__img-link img,
      .img-hero__img img {
        height: 384px;
        width: auto;
        max-width: none; } }

@media screen and (max-width: 47.99em) {
  .carousel-hero__img-link {
    overflow: hidden;
    padding-bottom: 50.2%;
    position: relative;
    height: 0; }
    .carousel-hero__img-link img,
    .carousel-hero__img-link picture {
      left: 0;
      top: 0;
      height: auto;
      width: 100%;
      position: absolute;
      -webkit-transform: translateX(0);
              transform: translateX(0); } }

@media screen and (max-width: 47.99em) {
  .carousel-hero__img-link--uh-usp {
    padding-bottom: 74%; } }

.carousel-hero__content {
  text-align: center; }
  @media screen and (min-width: 48em) {
    .carousel-hero__content {
      width: 365px;
      background: #fff;
      position: absolute;
      top: 15px;
      bottom: 45px;
      padding: 1.5rem;
      border-radius: 4px;
      margin-left: 2rem; } }
  .carousel-hero__content img {
    display: none; }
    @media screen and (min-width: 48em) {
      .carousel-hero__content img {
        display: inline-block;
        width: auto; } }

.carousel-hero__content-persuasion {
  top: 10px;
  right: 10px;
  position: absolute; }
  @media screen and (min-width: 48em) {
    .carousel-hero__content-persuasion {
      width: 100px;
      height: 100px;
      overflow: hidden;
      top: -8px;
      right: -8px; } }

.carousel-hero__content-persuasion-inner {
  font-family: "Campton-SemiBold";
  color: #fff;
  background: #f04326;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 4px; }
  @media screen and (min-width: 48em) {
    .carousel-hero__content-persuasion-inner {
      width: 141px;
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg);
      -webkit-transform-origin: top left;
              transform-origin: top left;
      left: 15px;
      top: -15px;
      padding: 0;
      position: relative;
      line-height: 2.2;
      border-radius: 0; }
      .carousel-hero__content-persuasion-inner::before, .carousel-hero__content-persuasion-inner::after {
        content: "";
        border: solid 5px transparent;
        border-top-color: #d42b0f;
        position: absolute;
        bottom: -10px;
        left: 0; }
      .carousel-hero__content-persuasion-inner::after {
        left: auto;
        right: 0; } }

.carousel-hero__content-title {
  line-height: 1.2; }
  @media screen and (max-width: 47.99em) {
    .carousel-hero__content-title {
      font-size: 1.6rem;
      margin-top: 1rem; } }

.carousel-hero__content-text {
  display: none; }
  @media screen and (min-width: 48em) {
    .carousel-hero__content-text {
      display: block; } }

.carousel-hero__content-cta {
  display: none; }
  @media screen and (min-width: 48em) {
    .carousel-hero__content-cta {
      display: inline-block; } }

.carousel-hero__mobile-title {
  text-align: center;
  font-size: 1.6rem;
  margin-top: 1rem;
  padding: 0 1rem; }
  @media screen and (min-width: 48em) {
    .carousel-hero__mobile-title {
      padding: 0 1.5rem; } }
  @media screen and (min-width: 48em) {
    .carousel-hero__mobile-title {
      display: none; } }

.carousel-photo {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw); }

.carousel-photo__slide {
  -webkit-transition: all 0.2s;
  transition: all 0.2s; }
  @media screen and (min-width: 48em) {
    .carousel-photo__slide {
      opacity: 0.3;
      height: 384px;
      width: auto; } }
  .carousel-photo__slide.swiper-slide-active, .carousel-photo__slide.swiper-slide-duplicate-active {
    opacity: 1; }

.carousel-photo__img {
  height: 100%; }
  .carousel-photo__img > div {
    height: 100%; }
  .carousel-photo__img img {
    display: block; }
    @media screen and (min-width: 48em) {
      .carousel-photo__img img {
        height: 100%;
        width: auto; } }

.photo-grid-carousel,
.photo-grid {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw); }
  @media screen and (min-width: 48em) {
    .photo-grid-carousel .swiper-wrapper,
    .photo-grid .swiper-wrapper {
      -webkit-transform: none !important;
              transform: none !important;
      display: block;
      height: 384px;
      overflow: hidden; }
    .photo-grid-carousel .swiper-slide-duplicate,
    .photo-grid-carousel .swiper-pagination,
    .photo-grid-carousel .swiper-buttons,
    .photo-grid .swiper-slide-duplicate,
    .photo-grid .swiper-pagination,
    .photo-grid .swiper-buttons {
      display: none; }
    .photo-grid-carousel .carousel-photo__slide,
    .photo-grid .carousel-photo__slide {
      width: 25%;
      height: 192px;
      float: left;
      opacity: 1;
      border: 1px solid #fff; }
      .photo-grid-carousel .carousel-photo__slide img,
      .photo-grid .carousel-photo__slide img {
        width: 100%;
        -o-object-fit: cover;
           object-fit: cover; }
    .photo-grid-carousel [data-swiper-slide-index="0"],
    .photo-grid-carousel .carousel-photo__slide:first-child,
    .photo-grid [data-swiper-slide-index="0"],
    .photo-grid .carousel-photo__slide:first-child {
      width: 50%;
      height: 384px; } }
  @media screen and (min-width: 81.25em) {
    .photo-grid-carousel .carousel-photo__slide,
    .photo-grid .carousel-photo__slide {
      width: 20%; }
    .photo-grid-carousel [data-swiper-slide-index="0"],
    .photo-grid-carousel .carousel-photo__slide:first-child,
    .photo-grid [data-swiper-slide-index="0"],
    .photo-grid .carousel-photo__slide:first-child {
      width: 40%; } }

.carousel-photo__img--background {
  background-size: cover; }
  .carousel-photo__img--background img {
    display: none; }

.carousel-video {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw); }

.carousel-video__slide {
  background: #000; }
  .carousel-video__slide .video-js,
  .carousel-video__slide .vjs-fluid {
    width: 100% !important;
    height: auto !important;
    margin: 0 auto;
    padding: 56.25% 0 0; }
    @media screen and (min-width: 64em) {
      .carousel-video__slide .video-js,
      .carousel-video__slide .vjs-fluid {
        height: 384px !important;
        max-width: 682px !important;
        padding: 0; } }

.park-logos {
  text-align: center;
  margin: 0 0 4rem; }
  @media screen and (min-width: 48em) {
    .park-logos {
      text-align: left; } }

.park-logos__title {
  font-family: "Campton-Book";
  font-weight: normal;
  line-height: 1.2;
  margin: 3rem 0 0; }
  @media screen and (max-width: 47.99em) {
    .park-logos__title {
      font-size: 1.6rem; } }

.park-logos__subtitle {
  font-size: 1.2rem;
  font-style: italic;
  font-weight: normal; }
  @media screen and (min-width: 48em) {
    .park-logos__subtitle {
      font-size: 1.8rem; } }

.park-logos__subtitle-highlight {
  color: #fb8c00; }
  @media screen and (max-width: 47.99em) {
    .park-logos__subtitle-highlight {
      font-size: 1.6rem; } }

.park-logos__combo-text {
  font-family: "Campton-Book";
  font-size: 1.2rem; }
  @media screen and (min-width: 48em) {
    .park-logos__combo-text {
      font-size: 1.4rem; } }

.carousel-park-logos {
  padding: 1rem 0; }
  @media screen and (max-width: 63.99em) {
    .carousel-park-logos {
      margin: 0 -1.5rem;
      padding: 1rem; } }
  @media screen and (max-width: 47.99em) {
    .carousel-park-logos {
      margin: 0 -1rem; } }
  .carousel-park-logos .swiper-wrapper {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .carousel-park-logos .swiper-button-next,
  .carousel-park-logos .swiper-button-prev {
    display: block; }
    @media screen and (min-width: 64em) {
      .carousel-park-logos .swiper-button-next,
      .carousel-park-logos .swiper-button-prev {
        display: none; } }
    .carousel-park-logos .swiper-button-next.swiper-button-disabled,
    .carousel-park-logos .swiper-button-prev.swiper-button-disabled {
      display: none; }

.carousel-park-logos__slide {
  width: auto;
  margin-right: 15px; }
  .carousel-park-logos__slide:last-child {
    margin-right: 0; }

.carousel-park-logos__img-link svg {
  width: 90px;
  height: 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s; }

.carousel-park-logos__img-link .park-logo-118814 {
  width: 70px; }

.carousel-park-logos__img-link .uor-logo {
  height: 40px;
  width: 80px; }

.carousel-park-logos__img-link .sw-logo {
  width: 75px; }

.carousel-park-logos__img-link .ksc-logo {
  width: 75px; }

.carousel-park-logos__img-link .merlin-logo {
  width: 75px; }

.carousel-park-logos__img-link:hover svg, .carousel-park-logos__img-link:focus svg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1); }

.news-swiper {
  margin-bottom: 3rem;
  position: relative; }

.news-swiper__container {
  border: 1px solid #e4e4e4; }
  @media screen and (max-width: 35.99em) {
    .news-swiper__container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }

.news-swiper__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #fff; }

.news-swiper__img {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  margin-bottom: 15px; }
  @media screen and (min-width: 36em) {
    .news-swiper__img {
      -webkit-box-flex: 50%;
          -ms-flex: 50%;
              flex: 50%;
      max-height: 241px;
      margin-bottom: 0; } }

.news-swiper__content {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  padding: 0 1.5rem; }
  @media screen and (min-width: 36em) {
    .news-swiper__content {
      -webkit-box-flex: 50%;
          -ms-flex: 50%;
              flex: 50%;
      padding: 1.5rem; } }

.news-swiper__title {
  margin-bottom: 0;
  text-align: center; }
  @media screen and (min-width: 36em) {
    .news-swiper__title {
      text-align: left; } }

@media screen and (max-width: 35.99em) {
  .news-swiper__published {
    text-align: center; } }

.news-swiper__quote {
  margin-bottom: 0;
  text-align: center; }
  @media screen and (min-width: 36em) {
    .news-swiper__quote {
      text-align: left;
      margin-bottom: 1rem; } }

.news-swiper__text {
  margin-bottom: 0; }

.hotel-gallery {
  margin-bottom: 3rem; }
  .hotel-gallery img {
    display: block; }
  .hotel-gallery .swiper-button-next,
  .hotel-gallery .swiper-button-prev {
    background-image: none; }
    .hotel-gallery .swiper-button-next::before,
    .hotel-gallery .swiper-button-prev::before {
      background: none; }
    .hotel-gallery .swiper-button-next::after,
    .hotel-gallery .swiper-button-prev::after {
      width: 50px;
      height: 50px; }
  .hotel-gallery .swiper-button-next {
    right: 0; }
  .hotel-gallery .swiper-button-prev {
    left: 0; }

.hotel-gallery__thumbs-item {
  opacity: 0.5; }
  .hotel-gallery__thumbs-item.swiper-slide-thumb-active {
    opacity: 1; }

.hotels-rooms-photos-photos .swiper-button-next,
.hotels-rooms-photos-photos .swiper-button-prev {
  background-image: none; }
  .hotels-rooms-photos-photos .swiper-button-next::before,
  .hotels-rooms-photos-photos .swiper-button-prev::before {
    background: none; }
  .hotels-rooms-photos-photos .swiper-button-next::after,
  .hotels-rooms-photos-photos .swiper-button-prev::after {
    width: 50px;
    height: 50px; }

/* ------------------------------------*\
    $CHECKOUT
\*------------------------------------ */
@media screen and (max-width: 63.99em) {
  .checkout-top {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1; }
  .checkout-main {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3; }
  .checkout-sidebar {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; } }

.checkout-header {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media screen and (min-width: 64em) {
    .checkout-header {
      padding-right: 25%; } }

.checkout-header__icon {
  height: 37px;
  width: 97px; }

.checkout-summary-toggle {
  color: #656565;
  padding: 0 0 0 15px;
  position: relative; }
  @media screen and (min-width: 48em) {
    .checkout-summary-toggle {
      display: none; } }
  .checkout-summary-toggle:hover, .checkout-summary-toggle:focus {
    color: #656565; }
  .checkout-summary-toggle::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 2px;
    border-style: solid;
    border-width: 5px 0 5px 8.7px;
    border-color: transparent transparent transparent #656565;
    -webkit-transition: 0.3s;
    transition: 0.3s; }

.checkout-summary-toggle--open::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg); }

.checkout-summary {
  font-size: 1.4rem;
  line-height: 1.5;
  width: 100%;
  margin: 2rem 0;
  padding: 0 1rem 1rem 1rem; }
  @media screen and (min-width: 48em) {
    .checkout-summary {
      padding: 0; } }

.checkout-summary__row {
  border: 1px solid #e4e4e4;
  border-top-width: 0; }
  .is-closed .checkout-summary__row {
    display: none; }
    @media screen and (min-width: 48em) {
      .is-closed .checkout-summary__row {
        display: table-row; } }
    .is-closed .checkout-summary__row:last-child {
      display: table-row;
      border-top: 1px solid; }

.checkout-summary__row--head {
  border-top-width: 1px; }

.checkout-summary__cell {
  padding: 1rem 0;
  border: none; }
  .checkout-summary__cell:first-child, .checkout-summary__cell:last-child {
    padding: 1rem; }
    @media screen and (min-width: 48em) {
      .checkout-summary__cell:first-child, .checkout-summary__cell:last-child {
        padding: 1rem 1.5rem; } }

.checkout-summary__cell--header {
  font-family: "Campton-Book";
  font-size: 1.6rem;
  font-weight: normal; }
  .checkout-summary__cell--header:last-child {
    text-align: right; }

.checkout-summary__cell--price,
.checkout-summary__cell--discount {
  font-family: "Campton-SemiBold";
  text-align: right;
  color: #00c853; }

.checkout-summary__cell--subtotal {
  text-align: right;
  padding-right: 0; }
  .checkout-summary__cell--subtotal .checkout-summary__cell--price {
    display: inline;
    float: none; }

.checkout-amount {
  font-family: "Campton-SemiBold";
  width: 100%;
  color: #656565;
  font-size: 1.4rem;
  margin-top: 0.5rem; }

.checkout-amount__cell {
  font-family: "Campton-SemiBold";
  padding: 0 1rem 0.5rem 1rem; }

.checkout-amount__cell--cost,
.checkout-amount__cell--discount {
  padding: 0 0 0.5rem 0;
  text-align: right; }

.checkout-amount__cell--total {
  color: #00c853; }

.checkout-amount__row--total {
  border-top: 1px solid #ccc;
  font-size: 1.5rem;
  text-transform: uppercase; }
  .checkout-amount__row--total .checkout-amount__cell {
    padding-top: 1rem; }

.checkout-amount__row--order-total .checkout-amount__cell {
  padding-bottom: 1rem; }

.form-heading {
  font-size: 1.7rem;
  float: none;
  padding: 1rem 0;
  margin: 0; }
  @media screen and (min-width: 48em) {
    .form-heading {
      font-size: 3rem; } }

.form-subheading {
  font-size: 1.6rem;
  color: #656565; }

.form-item {
  margin: 1rem 0; }
  .form-item::after {
    content: "";
    display: table;
    clear: both; }
  @media screen and (min-width: 48em) {
    .form-item {
      margin: 0 0 1rem; } }

.form-item--checkbox {
  clear: both; }
  .form-item--checkbox + .form-item--checkbox {
    margin-top: -1rem; }
    @media screen and (min-width: 48em) {
      .form-item--checkbox + .form-item--checkbox {
        margin-top: -2rem; } }

.form-item__label {
  font-size: 1.6rem;
  font-weight: normal;
  color: #656565; }
  @media screen and (min-width: 48em) {
    .form-item__label {
      float: left;
      width: 26%;
      text-align: right;
      padding: 1rem 1rem 1rem 0; } }

@media screen and (min-width: 48em) {
  .form-item__label--accounts {
    float: none;
    width: 100%;
    text-align: left;
    padding: 0; } }

@media screen and (min-width: 48em) {
  .form-item__label--long {
    padding: 0 1rem 1rem 0; } }

.form-item__label--small {
  font-size: 1.4rem; }

.form-item__label--checkbox {
  padding: 1rem 0 0 1rem;
  float: left;
  clear: none;
  width: auto;
  max-width: 90%; }
  @media screen and (min-width: 48em) {
    .form-item__label--checkbox {
      text-align: left;
      padding: 1rem 0 1rem 1rem; } }

.form-item__person {
  display: inline-block; }

.form-item__input-wrapper {
  clear: both; }
  @media screen and (min-width: 48em) {
    .form-item__input-wrapper {
      clear: none;
      float: left;
      width: 74%; } }

@media screen and (min-width: 48em) {
  .form-item__input-wrapper--accounts {
    clear: both;
    float: none;
    width: 100%; }
    .form-item__input-wrapper--accounts input {
      width: 90%; } }

.form-item__text,
.form-item__tel,
.form-item__email,
.form-item__select,
.form-item__date,
.form-item__textarea {
  font-size: 1.6rem;
  border-radius: 4px;
  border-color: #d4d4d4;
  background-color: #fff;
  padding: 1rem 0.5rem;
  width: 100%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s; }
  @media screen and (min-width: 48em) {
    .form-item__text,
    .form-item__tel,
    .form-item__email,
    .form-item__select,
    .form-item__date,
    .form-item__textarea {
      width: auto; } }
  .form-item__text:focus,
  .form-item__tel:focus,
  .form-item__email:focus,
  .form-item__select:focus,
  .form-item__date:focus,
  .form-item__textarea:focus {
    outline: none;
    border: 1px solid #368bd9; }
  .form-item__text:disabled,
  .form-item__tel:disabled,
  .form-item__email:disabled,
  .form-item__select:disabled,
  .form-item__date:disabled,
  .form-item__textarea:disabled {
    background: #f5f5f5; }

body .form-item__checkbox {
  float: left;
  margin: 1.3rem 0 0 0; }

.form-item__text--discount {
  margin-right: 1rem; }

.form-item__text--postcode {
  width: auto;
  margin-right: 1rem; }

.form-item__text--datepicker {
  background: url(/themes/custom/atd/images/calendar-blue.svg) no-repeat 95%;
  background-size: 20px auto;
  height: 40px; }
  @media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
    .form-item__text--datepicker {
      background-size: 20px 20px; } }

.form-item__input-wrapper--button .form-item__text,
.form-item__input-wrapper--button .form-item__select {
  float: left; }

.form-item__input-wrapper--button .form-item__select {
  clear: both; }

.form-item__button {
  font-size: 1.6rem;
  text-transform: none;
  padding: 1.1rem 1.1rem 1rem; }

.form-item__required {
  color: #f04326; }

.form-item__error,
.form-item__error:focus {
  border-bottom: 2px solid #f04326; }

.form-item__valid,
.form-item__valid:focus {
  border-bottom: 2px solid #00c853; }

.form-item__validation--error {
  color: #f04326; }
  .form-item__validation--error .icon {
    position: relative;
    height: 30px;
    width: 30px;
    display: inline-block; }
    .form-item__validation--error .icon::before, .form-item__validation--error .icon::after {
      content: '';
      display: block;
      height: 20px;
      width: 5px;
      top: 0;
      left: 5px;
      position: absolute;
      background: #f04326;
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg); }
    .form-item__validation--error .icon::after {
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg); }
  .form-item__validation--error .msg {
    padding: 0.5rem 0; }

.form-item__validation--valid {
  color: #00c853; }
  .form-item__validation--valid .icon {
    position: relative;
    height: 30px;
    width: 30px;
    display: inline-block; }
    .form-item__validation--valid .icon::before {
      content: '';
      display: block;
      height: 12px;
      width: 5px;
      top: 0;
      left: 3px;
      border: 5px solid #00c853;
      border-left: none;
      border-top: none;
      position: absolute;
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg); }
  .form-item__validation--valid .msg {
    padding: 0.5rem 0; }

.form-item__validation {
  display: inline;
  font-size: 1.4rem; }
  .form-item__validation .icon {
    display: none; }
    @media screen and (min-width: 48em) {
      .form-item__validation .icon {
        display: inline;
        font-size: 2rem;
        margin-left: 0.5rem; }
        .form-item__label--checkbox + .form-item__validation .icon {
          margin-top: 1rem; }
        .form-item--checkbox .form-item__validation .icon {
          display: inline-block;
          margin: 1rem 0 0 1rem; } }
  .form-item__validation .msg {
    clear: both;
    display: none; }
    .form-item--checkbox .form-item__validation .msg {
      margin-left: 22px; }
  .form-item__validation.form-item__validation--error .msg {
    display: block; }
  .form-item__validation .discounts-message {
    clear: both;
    margin-top: 1rem; }
    @media screen and (min-width: 48em) {
      .form-item__validation .discounts-message {
        margin-left: 26%; } }
    .form-item__validation .discounts-message .icon {
      color: #00c853; }

.form-item__info {
  margin-top: 1rem;
  font-size: 1.25rem; }

.form-item__product {
  margin-top: 1.5rem; }

.form-item__product-title {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  color: #656565; }

.checkout-submit-buttons {
  text-align: center;
  text-transform: uppercase; }
  .checkout-submit-buttons .btn {
    font-size: 1.8rem; }
    .checkout-submit-buttons .btn + .btn {
      margin: 1rem auto auto auto; }
      @media screen and (min-width: 48em) {
        .checkout-submit-buttons .btn + .btn {
          margin: auto auto auto 1rem; } }

@media screen and (min-width: 48em) {
  .form-radios {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; } }

@media screen and (min-width: 48em) {
  .radio {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 24%;
            flex: 0 0 24%; } }

@media screen and (min-width: 48em) {
  .radio--large {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 49.3%;
            flex: 0 0 49.3%; } }

.radio__input {
  display: none; }

.radio__label {
  font-family: "Campton-Book";
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  padding: 15px 15px 10px;
  text-align: center;
  position: relative; }
  @media screen and (min-width: 48em) {
    .radio__label {
      padding: 15px 15px 20px; } }
  .not-available .radio__label {
    cursor: not-allowed;
    color: #848484;
    background: #f4f4f4; }
  .radio__label:hover, .radio__label:focus {
    -webkit-box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.1);
            box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.1); }
    .not-available .radio__label:hover, .not-available .radio__label:focus {
      -webkit-box-shadow: none;
              box-shadow: none; }
  input:checked + .radio__label {
    background: #e7fbed;
    border-color: #00c853; }
    input:checked + .radio__label::before {
      background: #00c853;
      content: "";
      width: 30px;
      height: 30px;
      border-radius: 50%;
      position: absolute;
      top: 50%;
      right: 10px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%); }
      @media screen and (min-width: 48em) {
        input:checked + .radio__label::before {
          bottom: -15px;
          top: auto;
          right: 50%;
          -webkit-transform: translateY(0) translateX(50%);
                  transform: translateY(0) translateX(50%); } }
    input:checked + .radio__label::after {
      background: transparent;
      content: "";
      width: 5px;
      height: 12px;
      border-radius: 0;
      position: absolute;
      border: 5px solid #fff;
      border-left: none;
      border-top: none;
      top: 50%;
      right: 20px;
      -webkit-transform: translateY(-55%) rotate(45deg);
              transform: translateY(-55%) rotate(45deg); }
      @media screen and (min-width: 48em) {
        input:checked + .radio__label::after {
          bottom: -15px;
          top: auto;
          right: 50%;
          -webkit-transform: translateY(-53%) translateX(50%) rotate(45deg);
                  transform: translateY(-53%) translateX(50%) rotate(45deg); } }
  .radio__label .amount {
    font-size: 2rem;
    display: block; }
    @media screen and (min-width: 48em) {
      .radio__label .amount {
        font-size: 2.4rem; } }

.checkout-amount-details {
  padding: 1rem 1rem 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #e4e4e4;
  background-color: #f4f4f4; }
  .checkout-amount-details p {
    margin-bottom: 0.5rem;
    text-align: right; }
    .checkout-amount-details p strong {
      color: #00c853; }
  .checkout-amount-details table {
    border: none; }
  .checkout-amount-details td {
    border: none; }

#deposit-information {
  margin-top: 1.5rem; }

#cvv-information::after {
  content: "";
  display: table;
  clear: both; }

#cvv-information img {
  width: auto;
  float: left; }

.postcodesoftware-find + select {
  clear: both;
  display: block;
  margin-top: 1rem; }

.checkout-cardpayment-section {
  border: 1px solid #e4e4e4;
  padding: 10px;
  background: url("/themes/custom/atd/images/wiggle.png"); }

.cvv-information__btn {
  display: block;
  margin-bottom: 1rem; }

.card-frame {
  background: #fff;
  border: 1px solid #d4d4d4;
  border-radius: 4px;
  height: 40px;
  max-width: 380px;
  margin-bottom: 1rem; }

.checkout-cardpayment-section__3ds-iframe {
  width: 100%;
  min-height: 450px;
  overflow: scroll;
  margin: 0 auto 1rem;
  border: 1px solid #e4e4e4; }

.checkout-complete__title-wrapper {
  border: 1px solid #e4e4e4;
  padding: 1rem 1.5rem 0.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.checkout-complete__title {
  margin-bottom: 0; }

.checkout-complete__title-abta {
  margin-left: auto;
  height: 43px;
  width: 113px; }
  @media screen and (max-width: 47.99em) {
    .checkout-complete__title-abta {
      height: 31px;
      width: 81px; } }

.checkout-complete__content {
  padding: 1.5rem;
  border: 1px solid #e4e4e4;
  border-top: none; }

.checkout-complete__subtitle {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase; }
  @media screen and (min-width: 48em) {
    .checkout-complete__subtitle {
      font-size: 1.8rem; } }

.checkout-complete__reference {
  text-transform: uppercase;
  margin-bottom: 3rem; }

.checkout-complete__continue {
  margin: 3rem 0 0 0; }

.checkout-complete__error {
  color: #f04326; }

.checkout-complete__account {
  display: block;
  border: 1px solid #e4e4e4;
  margin-bottom: 1.5rem; }

.checkout-complete__account-title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.6rem;
  margin: 0;
  padding: 1rem 1.5rem 0.7rem;
  background: #f4f4f4; }
  @media screen and (min-width: 48em) {
    .checkout-complete__account-title {
      font-size: 1.8rem; } }

.checkout-complete__account-content {
  padding: 1.5rem; }

.checkout-complete__account-id,
.checkout-complete__account-email {
  margin-bottom: 5px; }

.checkout-complete__account-header {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 0; }
  @media screen and (min-width: 48em) {
    .checkout-complete__account-header {
      font-size: 1.6rem; } }

.checkout-complete__account-btn {
  margin-bottom: 0; }

/* ------------------------------------*\
    $TABS
\*------------------------------------ */
.tabs {
  margin-bottom: 1rem; }

.tabs__list {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  white-space: nowrap; }
  @media screen and (max-width: 47.99em) {
    .tabs__list {
      overflow-x: auto; } }

.tabs--checkout {
  width: 100%; }

.tabs__list--checkout {
  margin: 0 0 -1px;
  padding: 0;
  position: relative;
  z-index: 2; }

.tabs__list--carousels {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  text-align: center;
  text-transform: uppercase;
  border-bottom: 1px solid #e4e4e4; }

.tabs__item {
  display: inline-block; }

.tabs__item--carousels {
  position: relative; }
  .tabs__item--carousels::after {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    right: 0;
    width: 1px;
    background-color: #e4e4e4; }
  .tabs__item--carousels:last-child::after {
    display: none; }

.tabs__link {
  display: block;
  background: #ddd;
  color: #656565;
  padding: 1.2rem 1.5rem 1rem 1.5rem;
  margin: 0 10px 0 0;
  font-size: 1.3rem;
  line-height: 1.2;
  text-align: center;
  font-weight: bold;
  border-radius: 4px 4px 0 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-family: "Campton-Book", Arial, helvetica, sans-serif; }
  .tabs__link:hover {
    background: #e4e4e4; }
  .tabs__link:focus {
    background-color: #f4f4f4; }
  @media screen and (max-width: 47.99em) {
    .tabs__link em {
      display: block; } }

.tabs__link--hotels-booking {
  text-align: left;
  font-size: 1.25rem;
  font-family: "Campton-Light", Arial, helvetica, sans-serif;
  font-weight: normal; }
  .tabs__link--hotels-booking strong {
    font-weight: normal;
    font-size: 1.6rem;
    font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
    text-transform: uppercase; }

.tabs__link--carousels {
  display: block;
  position: relative;
  background: none;
  color: #42a5f5;
  padding: 1rem 2rem;
  margin: 0;
  font-size: 1.6rem; }
  .tabs__link--carousels:hover {
    background: none; }
  .tabs__link--carousels:focus {
    background: none; }

.tabs__link--checkout {
  background: #fff;
  background-color: #f4f4f4;
  border: 1px solid #e4e4e4;
  font-size: 1.6rem; }

.tabs__link--active {
  background-color: #f4f4f4;
  color: #42a5f5; }
  .tabs__link--active:link, .tabs__link--active:visited {
    color: #42a5f5; }
  .tabs__link--active.tabs__link--carousels {
    background: none;
    color: #656565; }
  .tabs__link--active.tabs__link--checkout {
    background: #fff;
    border-bottom: 1px solid #fff; }
  .tabs__link--active.tabs__link--hotels-booking {
    color: #656565; }

.tabs__content {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  background-color: #f4f4f4; }
  .tabs__content .mini-tickets {
    padding: 1.5rem 0 3rem; }

.tabs__content--hidden {
  display: none; }

.tabs__content--checkout {
  margin: 0;
  padding: 1rem;
  border: 1px solid #e4e4e4;
  background: #fff;
  position: relative;
  z-index: 1; }

.tabs__content--hotels-booking {
  margin: 0;
  padding: 1rem; }

/* ------------------------------------*\
    $INFO-TABS
\*------------------------------------ */
.info-tabs__title {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  margin-bottom: 0;
  padding-top: 2rem;
  background-color: #f4f4f4;
  position: relative; }
  .info-tabs__title::after {
    content: '';
    display: block;
    border: 1px solid #e4e4e4;
    border-width: 2px;
    margin-top: 1rem; }

.info-tabs__list {
  margin: 2rem 0; }
  @media screen and (min-width: 48em) {
    .info-tabs__list {
      margin: 0;
      position: -webkit-sticky;
      position: sticky;
      top: 0;
      background: #fff;
      z-index: 2;
      border: 1px solid #e4e4e4;
      border-bottom: 0; } }

@media screen and (min-width: 48em) {
  .info-tabs__list--sticky {
    z-index: 3; } }
  @media screen and (min-width: 48em) and (-ms-high-contrast: active) {
    .info-tabs__list--sticky {
      position: fixed; } }

@media screen and (min-width: 48em) {
    .info-tabs__list--sticky::before {
      width: 150vw;
      content: "";
      display: block;
      background: #fff;
      -webkit-box-shadow: 0 5px 5px -4px rgba(0, 0, 0, 0.1);
              box-shadow: 0 5px 5px -4px rgba(0, 0, 0, 0.1);
      position: absolute;
      height: 101%;
      left: -50vw;
      top: -1%; } }

.info-tabs__item {
  margin: 1rem 0 0;
  position: relative; }
  @media screen and (min-width: 48em) {
    .info-tabs__item {
      margin: 0;
      display: inline-block; } }

.info-tabs__link,
.info-tabs__link--search {
  display: block; }
  @media screen and (max-width: 47.99em) {
    .info-tabs__link,
    .info-tabs__link--search {
      border: 1px solid #e4e4e4;
      border-radius: 4px;
      font-family: "Campton-Book";
      padding: 1rem 1.5rem;
      position: relative; }
      .info-tabs__link::after,
      .info-tabs__link--search::after {
        background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
        background-position: 22.813688212927758% 22.995146752946614%;
        width: 8px;
        height: 9.6px;
        content: '';
        position: absolute;
        right: 2rem;
        top: 50%;
        -webkit-transform: scale(1.4) translateY(-50%);
                transform: scale(1.4) translateY(-50%); } }
  @media screen and (min-width: 48em) {
    .info-tabs__link,
    .info-tabs__link--search {
      font-family: "Campton-Book";
      font-size: 2.2rem;
      padding: 1rem 0 0.7rem;
      margin: 0 1.5rem;
      color: #656565;
      border-bottom: 3px solid #fff; }
      .info-tabs__link:hover, .info-tabs__link:focus,
      .info-tabs__link--search:hover,
      .info-tabs__link--search:focus {
        color: #656565; } }

@media screen and (min-width: 48em) {
  .info-tabs__link--active,
  .info-tabs__link--faux-active {
    color: #42a5f5;
    border-bottom: 3px solid #42a5f5;
    position: relative; }
    .info-tabs__link--active:hover, .info-tabs__link--active:focus,
    .info-tabs__link--faux-active:hover,
    .info-tabs__link--faux-active:focus {
      color: #42a5f5; }
    .info-tabs__link--active::after,
    .info-tabs__link--faux-active::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 100%;
      width: 10px;
      height: 10px;
      margin-top: -4px;
      background-color: white;
      border-right: 3px solid #42a5f5;
      border-bottom: 3px solid #42a5f5;
      -webkit-transform: translateX(-50%) rotate(45deg);
              transform: translateX(-50%) rotate(45deg);
      z-index: 1; } }

.info-tabs__book {
  display: none; }
  @media screen and (min-width: 48em) {
    .info-tabs__book {
      display: block;
      position: absolute;
      right: 10px;
      top: 8px;
      opacity: 0;
      pointer-events: none; }
      .info-tabs__list--sticky .info-tabs__book {
        opacity: 1;
        -webkit-transition: opacity 0.3s;
        transition: opacity 0.3s;
        pointer-events: inherit; } }
  @media screen and (min-width: 64em) {
    .u-col-9_desktop-12 .info-tabs__book {
      right: -15px;
      -webkit-transform: translateX(100%);
              transform: translateX(100%); } }

.fastpass {
  border: 1px solid #e4e4e4;
  padding: 1rem;
  margin-bottom: 2rem; }
  .fastpass::after {
    content: "";
    display: table;
    clear: both; }
  @media screen and (min-width: 48em) {
    .fastpass {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap; } }

.fastpass__icon {
  width: 125px;
  height: 33px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  float: left; }

.fastpass__text {
  margin: 1rem 0 0;
  float: left;
  clear: both;
  width: 60%; }
  @media screen and (min-width: 48em) {
    .fastpass__text {
      margin: 0;
      padding: 0 1rem;
      width: auto; } }

.fastpass__icon--last {
  width: 112px;
  height: 73px;
  float: right;
  margin-top: -33px;
  fill: #fbb81e; }
  @media screen and (min-width: 48em) {
    .fastpass__icon--last {
      margin-top: 0; } }

.info-tabs__list--hotel {
  margin: 0 auto;
  border: none;
  display: none; }
  @media screen and (min-width: 64em) {
    .info-tabs__list--hotel {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      .info-tabs__list--hotel::before {
        width: 150vw;
        content: "";
        display: block;
        background: #fff;
        -webkit-box-shadow: 0 5px 5px -4px rgba(0, 0, 0, 0.1);
                box-shadow: 0 5px 5px -4px rgba(0, 0, 0, 0.1);
        position: absolute;
        height: 101%;
        left: -50vw;
        top: -1%; } }

.info-tabs__item--search {
  margin: 0 0 0 auto;
  -ms-flex-preferred-size: 23.9%;
      flex-basis: 23.9%;
  max-width: 23.9%; }

.info-tabs__item--room a {
  margin-left: 0; }

.info-tabs__link--search {
  color: #fff;
  background: #1565c0;
  margin: 0;
  border: none;
  padding: 1rem 1.5rem 1rem; }
  .info-tabs__link--search:hover {
    color: #fff; }
  .info-tabs__link--search.info-tabs__link--active {
    color: #fff;
    border: none; }
    .info-tabs__link--search.info-tabs__link--active::after {
      display: none; }

.info-tabs__item--landing-search {
  display: none; }
  .info-tabs__list--sticky .info-tabs__item--landing-search {
    display: inline-block; }

.info-tabs__item--free-dining a::before {
  content: "";
  display: inline-block;
  margin-right: 1rem;
  vertical-align: middle;
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 42.42424242424242% 40.801886792452834%;
  width: 70px;
  height: 27px; }

/* ------------------------------------*\
    $TEXT_BLOCK
\*------------------------------------ */
.text-block {
  border: 1px solid #e4e4e4;
  padding: 1rem;
  margin-bottom: 2rem; }
  @media screen and (min-width: 64em) {
    .text-block {
      padding: 1.5rem; } }
  .text-block p,
  .text-block ul,
  .text-block ol {
    font-size: 1.35rem; }
  .text-block ul,
  .text-block ol {
    margin-bottom: 1rem; }
  .text-block ul li {
    position: relative;
    padding-left: 20px; }
    .text-block ul li::before {
      background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
      background-position: 89.26355183014148% 86.98879584309542%;
      width: 12.54px;
      height: 12.82px;
      content: '';
      display: block;
      position: absolute;
      left: 0;
      top: 3px; }
  .text-block .text-block__intro {
    font-size: 1.5rem; }
  .text-block h2 {
    font-size: 2.1rem; }
  .text-block h3 {
    font-family: campton-book;
    font-weight: normal; }
  .text-block h4 {
    font-size: 1.5rem; }

.faqContent ul.faqTopLevelList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .faqContent ul.faqTopLevelList li.topLevelItem {
    padding-left: 0;
    margin: 0 0.5% 1rem 0.5%;
    width: 49%; }
    @media screen and (min-width: 48em) {
      .faqContent ul.faqTopLevelList li.topLevelItem {
        width: 32%; } }
    .faqContent ul.faqTopLevelList li.topLevelItem::before {
      background-image: none;
      width: 0;
      height: 0;
      top: 0; }

.faqContent dl.faqList dt.faqTitle {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.4rem;
  border: 1px solid #e4e4e4;
  padding: 1rem 1.5rem;
  background-color: #f4f4f4;
  margin: 0; }
  @media screen and (min-width: 48em) {
    .faqContent dl.faqList dt.faqTitle {
      font-size: 1.6rem; } }

.faqContent dl.faqList dd.faqDefinition {
  border: 1px solid #e4e4e4;
  border-top: 0;
  margin: 0 0 1rem 0;
  padding: 1rem 1.5rem;
  background-color: #fff; }

@media screen and (max-width: 47.99em) {
  .js .text-block--tab {
    position: fixed;
    overflow-y: scroll;
    width: 90vw;
    margin: 0;
    right: -90vw;
    top: 0;
    bottom: 0;
    background: #fff;
    z-index: 3;
    -webkit-transition: right 0.3s;
    transition: right 0.3s; }
    .js .text-block--tab.text-block--tab--active {
      -webkit-box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.05);
              box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.05);
      right: 0; } }

@media screen and (min-width: 48em) {
  .text-block--tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-width: 1px 1px 0;
    -webkit-transform: translateZ(0);
            transform: translateZ(0); }
    .text-block--tab:last-child {
      border-bottom-width: 1px; }
    .text-block--tab + .text-block--tab,
    .info-tabs__close-body + .text-block--tab {
      margin-top: -2rem;
      border-width: 0 1px; }
      .text-block--tab + .text-block--tab:last-child,
      .info-tabs__close-body + .text-block--tab:last-child {
        border-bottom-width: 1px; } }

.text-block__heading {
  -webkit-box-flex: 23%;
      -ms-flex: 23% 0 0px;
          flex: 23% 0 0; }
  @media screen and (max-width: 47.99em) {
    .text-block__heading {
      background-color: #f4f4f4;
      width: calc(100% + 2rem);
      top: -1rem;
      right: 0;
      padding: 1rem;
      margin: -1rem 0 1rem -1rem;
      z-index: 1; }
      .js .text-block__heading {
        position: -webkit-sticky;
        position: sticky; } }

.info-tabs__close {
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  height: 16px;
  width: 16px;
  padding: 2px;
  border: none;
  background: none; }
  .info-tabs__close::before, .info-tabs__close::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 5px;
    height: 20px;
    width: 4px;
    background: #42a5f5;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); }
  .info-tabs__close::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg); }
  .info-tabs__close:hover, .info-tabs__close:focus {
    cursor: pointer; }
    .info-tabs__close:hover::before, .info-tabs__close:hover::after, .info-tabs__close:focus::before, .info-tabs__close:focus::after {
      background: #64b5f6; }
  @media screen and (min-width: 48em) {
    .info-tabs__close {
      display: none; } }

.info-tabs__close-body--active {
  position: fixed;
  width: 10vw;
  height: 100vh;
  right: 90vw;
  bottom: 0;
  top: 0;
  z-index: 2; }
  @media screen and (min-width: 48em) {
    .info-tabs__close-body--active {
      display: none; } }

.text-block__section {
  -webkit-box-flex: 75%;
      -ms-flex: 75% 0 0px;
          flex: 75% 0 0; }

@media screen and (min-width: 48em) {
  .text-block__detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; } }

.text-block__content {
  -webkit-box-flex: 66%;
      -ms-flex: 66% 0 0px;
          flex: 66% 0 0; }

.text-block__media {
  -webkit-box-flex: 32%;
      -ms-flex: 32% 0 0px;
          flex: 32% 0 0; }

.small-text {
  font-size: 1.3rem; }

.accordion__btn {
  cursor: pointer; }
  .accordion__btn.accordion__btn-active::after {
    -webkit-transform: translateY(-17px) rotate(135deg);
            transform: translateY(-17px) rotate(135deg);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }

.accordion__content {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  height: 0; }
  .accordion__content.accordion__content-active {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    height: auto; }

/* ------------------------------------*\
    $REPEATED HOTEL COMPONENTS
\*------------------------------------ */
.hotels-category-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex; }
  .hotels-category-tag.value-category {
    margin: 0 0 5px 0;
    position: relative;
    padding-right: 15px;
    overflow: hidden; }
    .hotels-category-tag.value-category::before {
      content: "";
      width: 45px;
      height: 45px;
      border-top: solid 2px #51d7bf;
      border-right: solid 2px #51d7bf;
      border-radius: 4px;
      position: absolute;
      right: 11px;
      top: 50%;
      -webkit-transform: translateY(-50%) translateX(0%) rotate(45deg);
              transform: translateY(-50%) translateX(0%) rotate(45deg);
      background-color: #fff; }
    .hotels-category-tag.value-category span {
      color: #51d7bf;
      font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
      font-size: 1.1rem;
      border: solid 2px #51d7bf;
      border-right: none;
      padding: 4px 10px 2px 6px;
      text-transform: uppercase;
      margin: 0;
      position: relative;
      background-color: #fff; }
    .hotels-category-tag.value-category::after {
      content: "";
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background-color: #51d7bf;
      position: absolute;
      right: 13px;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%); }
  .hotels-category-tag.test {
    margin: 0 0 5px 0;
    position: relative;
    padding-right: 15px;
    overflow: hidden; }
    .hotels-category-tag.test::before {
      content: "";
      width: 45px;
      height: 45px;
      border-top: solid 2px #8dc63f;
      border-right: solid 2px #8dc63f;
      border-radius: 4px;
      position: absolute;
      right: 11px;
      top: 50%;
      -webkit-transform: translateY(-50%) translateX(0%) rotate(45deg);
              transform: translateY(-50%) translateX(0%) rotate(45deg);
      background-color: #fff; }
    .hotels-category-tag.test span {
      color: #8dc63f;
      font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
      font-size: 1.1rem;
      border: solid 2px #8dc63f;
      border-right: none;
      padding: 4px 10px 2px 6px;
      text-transform: uppercase;
      margin: 0;
      position: relative;
      background-color: #fff; }
    .hotels-category-tag.test::after {
      content: "";
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background-color: #8dc63f;
      position: absolute;
      right: 13px;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%); }
  .hotels-category-tag.moderate-category {
    margin: 0 0 5px 0;
    position: relative;
    padding-right: 15px;
    overflow: hidden; }
    .hotels-category-tag.moderate-category::before {
      content: "";
      width: 45px;
      height: 45px;
      border-top: solid 2px #f0528a;
      border-right: solid 2px #f0528a;
      border-radius: 4px;
      position: absolute;
      right: 11px;
      top: 50%;
      -webkit-transform: translateY(-50%) translateX(0%) rotate(45deg);
              transform: translateY(-50%) translateX(0%) rotate(45deg);
      background-color: #fff; }
    .hotels-category-tag.moderate-category span {
      color: #f0528a;
      font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
      font-size: 1.1rem;
      border: solid 2px #f0528a;
      border-right: none;
      padding: 4px 10px 2px 6px;
      text-transform: uppercase;
      margin: 0;
      position: relative;
      background-color: #fff; }
    .hotels-category-tag.moderate-category::after {
      content: "";
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background-color: #f0528a;
      position: absolute;
      right: 13px;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%); }
  .hotels-category-tag.deluxe-category {
    margin: 0 0 5px 0;
    position: relative;
    padding-right: 15px;
    overflow: hidden; }
    .hotels-category-tag.deluxe-category::before {
      content: "";
      width: 45px;
      height: 45px;
      border-top: solid 2px #6b44b3;
      border-right: solid 2px #6b44b3;
      border-radius: 4px;
      position: absolute;
      right: 11px;
      top: 50%;
      -webkit-transform: translateY(-50%) translateX(0%) rotate(45deg);
              transform: translateY(-50%) translateX(0%) rotate(45deg);
      background-color: #fff; }
    .hotels-category-tag.deluxe-category span {
      color: #6b44b3;
      font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
      font-size: 1.1rem;
      border: solid 2px #6b44b3;
      border-right: none;
      padding: 4px 10px 2px 6px;
      text-transform: uppercase;
      margin: 0;
      position: relative;
      background-color: #fff; }
    .hotels-category-tag.deluxe-category::after {
      content: "";
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background-color: #6b44b3;
      position: absolute;
      right: 13px;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%); }
  .hotels-category-tag.villa-category {
    margin: 0 0 5px 0;
    position: relative;
    padding-right: 15px;
    overflow: hidden; }
    .hotels-category-tag.villa-category::before {
      content: "";
      width: 45px;
      height: 45px;
      border-top: solid 2px #0c226b;
      border-right: solid 2px #0c226b;
      border-radius: 4px;
      position: absolute;
      right: 11px;
      top: 50%;
      -webkit-transform: translateY(-50%) translateX(0%) rotate(45deg);
              transform: translateY(-50%) translateX(0%) rotate(45deg);
      background-color: #fff; }
    .hotels-category-tag.villa-category span {
      color: #0c226b;
      font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
      font-size: 1.1rem;
      border: solid 2px #0c226b;
      border-right: none;
      padding: 4px 10px 2px 6px;
      text-transform: uppercase;
      margin: 0;
      position: relative;
      background-color: #fff; }
    .hotels-category-tag.villa-category::after {
      content: "";
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background-color: #0c226b;
      position: absolute;
      right: 13px;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%); }
  .hotels-category-tag.prime-category {
    margin: 0 0 5px 0;
    position: relative;
    padding-right: 15px;
    overflow: hidden; }
    .hotels-category-tag.prime-category::before {
      content: "";
      width: 45px;
      height: 45px;
      border-top: solid 2px #f0528a;
      border-right: solid 2px #f0528a;
      border-radius: 4px;
      position: absolute;
      right: 11px;
      top: 50%;
      -webkit-transform: translateY(-50%) translateX(0%) rotate(45deg);
              transform: translateY(-50%) translateX(0%) rotate(45deg);
      background-color: #fff; }
    .hotels-category-tag.prime-category span {
      color: #f0528a;
      font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
      font-size: 1.1rem;
      border: solid 2px #f0528a;
      border-right: none;
      padding: 4px 10px 2px 6px;
      text-transform: uppercase;
      margin: 0;
      position: relative;
      background-color: #fff; }
    .hotels-category-tag.prime-category::after {
      content: "";
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background-color: #f0528a;
      position: absolute;
      right: 13px;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%); }
  .hotels-category-tag.preferred-category {
    margin: 0 0 5px 0;
    position: relative;
    padding-right: 15px;
    overflow: hidden; }
    .hotels-category-tag.preferred-category::before {
      content: "";
      width: 45px;
      height: 45px;
      border-top: solid 2px #6b44b3;
      border-right: solid 2px #6b44b3;
      border-radius: 4px;
      position: absolute;
      right: 11px;
      top: 50%;
      -webkit-transform: translateY(-50%) translateX(0%) rotate(45deg);
              transform: translateY(-50%) translateX(0%) rotate(45deg);
      background-color: #fff; }
    .hotels-category-tag.preferred-category span {
      color: #6b44b3;
      font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
      font-size: 1.1rem;
      border: solid 2px #6b44b3;
      border-right: none;
      padding: 4px 10px 2px 6px;
      text-transform: uppercase;
      margin: 0;
      position: relative;
      background-color: #fff; }
    .hotels-category-tag.preferred-category::after {
      content: "";
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background-color: #6b44b3;
      position: absolute;
      right: 13px;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%); }
  .hotels-category-tag.premier-category {
    margin: 0 0 5px 0;
    position: relative;
    padding-right: 15px;
    overflow: hidden; }
    .hotels-category-tag.premier-category::before {
      content: "";
      width: 45px;
      height: 45px;
      border-top: solid 2px #0c226b;
      border-right: solid 2px #0c226b;
      border-radius: 4px;
      position: absolute;
      right: 11px;
      top: 50%;
      -webkit-transform: translateY(-50%) translateX(0%) rotate(45deg);
              transform: translateY(-50%) translateX(0%) rotate(45deg);
      background-color: #fff; }
    .hotels-category-tag.premier-category span {
      color: #0c226b;
      font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
      font-size: 1.1rem;
      border: solid 2px #0c226b;
      border-right: none;
      padding: 4px 10px 2px 6px;
      text-transform: uppercase;
      margin: 0;
      position: relative;
      background-color: #fff; }
    .hotels-category-tag.premier-category::after {
      content: "";
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background-color: #0c226b;
      position: absolute;
      right: 13px;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%); }
  .hotels-category-tag.disney-hotels-category {
    margin: 0 0 5px 0;
    position: relative;
    padding-right: 15px;
    overflow: hidden; }
    .hotels-category-tag.disney-hotels-category::before {
      content: "";
      width: 45px;
      height: 45px;
      border-top: solid 2px #0c226b;
      border-right: solid 2px #0c226b;
      border-radius: 4px;
      position: absolute;
      right: 11px;
      top: 50%;
      -webkit-transform: translateY(-50%) translateX(0%) rotate(45deg);
              transform: translateY(-50%) translateX(0%) rotate(45deg);
      background-color: #fff; }
    .hotels-category-tag.disney-hotels-category span {
      color: #0c226b;
      font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
      font-size: 1.1rem;
      border: solid 2px #0c226b;
      border-right: none;
      padding: 4px 10px 2px 6px;
      text-transform: uppercase;
      margin: 0;
      position: relative;
      background-color: #fff; }
    .hotels-category-tag.disney-hotels-category::after {
      content: "";
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background-color: #0c226b;
      position: absolute;
      right: 13px;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%); }
  .hotels-category-tag.disney-area-hotels-category {
    margin: 0 0 5px 0;
    position: relative;
    padding-right: 15px;
    overflow: hidden; }
    .hotels-category-tag.disney-area-hotels-category::before {
      content: "";
      width: 45px;
      height: 45px;
      border-top: solid 2px #6b44b3;
      border-right: solid 2px #6b44b3;
      border-radius: 4px;
      position: absolute;
      right: 11px;
      top: 50%;
      -webkit-transform: translateY(-50%) translateX(0%) rotate(45deg);
              transform: translateY(-50%) translateX(0%) rotate(45deg);
      background-color: #fff; }
    .hotels-category-tag.disney-area-hotels-category span {
      color: #6b44b3;
      font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
      font-size: 1.1rem;
      border: solid 2px #6b44b3;
      border-right: none;
      padding: 4px 10px 2px 6px;
      text-transform: uppercase;
      margin: 0;
      position: relative;
      background-color: #fff; }
    .hotels-category-tag.disney-area-hotels-category::after {
      content: "";
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background-color: #6b44b3;
      position: absolute;
      right: 13px;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%); }

.hotels-why-choose__benefits {
  padding-top: 1rem;
  padding-bottom: 1rem; }
  @media screen and (min-width: 64em) {
    .hotels-why-choose__benefits {
      padding-top: 2rem;
      padding-bottom: 2rem; } }
  .hotels-why-choose__benefits h1 {
    font-family: "Campton-Book", Arial, helvetica, sans-serif;
    font-size: 1.9rem; }
    @media screen and (min-width: 48em) {
      .hotels-why-choose__benefits h1 {
        font-size: 2.4rem; } }

ul.hotel-benefits {
  list-style-type: disc;
  list-style-position: inside; }
  ul.hotel-benefits li {
    display: inline-block;
    padding: 0 1rem 0 0; }
    ul.hotel-benefits li::before {
      content: "• ";
      color: #656565; }

.hotels-why-choose__list {
  padding-bottom: 1rem; }
  @media screen and (min-width: 64em) {
    .hotels-why-choose__list {
      padding-bottom: 2rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }

.hotels-why-choose__item {
  background-color: #fff;
  text-align: center;
  padding: 1rem 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #e4e4e4; }
  .hotels-why-choose__item:first-of-type {
    border: none; }
  @media screen and (min-width: 64em) {
    .hotels-why-choose__item {
      border-top: none;
      border-left: 1px solid #e4e4e4;
      -webkit-box-flex: 16.6%;
          -ms-flex: 16.6%;
              flex: 16.6%;
      padding: 0.5rem 1rem;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
      .hotels-why-choose__item:first-of-type {
        border: none; } }

.hotels-why-choose__title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.4rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-box-flex: 60%;
      -ms-flex: 60%;
          flex: 60%;
  position: relative;
  margin: 0; }
  @media screen and (min-width: 48em) {
    .hotels-why-choose__title {
      font-size: 1.6rem; } }
  @media screen and (min-width: 64em) {
    .hotels-why-choose__title {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1; } }
  .hotels-why-choose__title a {
    display: block; }
    .hotels-why-choose__228742 .hotels-why-choose__title a {
      color: #f04326; }

.hotels-why-choose__img {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -webkit-box-flex: 20%;
      -ms-flex: 20%;
          flex: 20%; }
  @media screen and (min-width: 64em) {
    .hotels-why-choose__img {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2; } }
  .hotels-why-choose__img a {
    display: block; }
  .hotels-why-choose__img img {
    max-width: 60px;
    max-height: 60px; }

.hotels-why-choose__video {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  -webkit-box-flex: 20%;
      -ms-flex: 20%;
          flex: 20%; }
  .hotels-why-choose__video p {
    margin: 0; }

.hotels-why-choose__video-link {
  display: block; }
  .hotels-why-choose__video-link::after {
    background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
    background-position: 80.94965675057209% 76.99510977005514%;
    width: 11.2px;
    height: 10.01px;
    content: '';
    display: inline-block;
    -webkit-transform: scale(2);
            transform: scale(2); }

.hotels-why-choose__offer {
  padding-top: 1rem;
  padding-bottom: 1rem; }
  @media screen and (min-width: 64em) {
    .hotels-why-choose__offer {
      padding-top: 1.5rem;
      padding-bottom: 1.5rem; } }

.hotels-why-choose__dining {
  padding-bottom: 1rem; }
  @media screen and (min-width: 64em) {
    .hotels-why-choose__dining {
      padding-bottom: 2rem; } }
  .hotels-why-choose__dining ul li {
    position: relative;
    padding-left: 20px; }
    .hotels-why-choose__dining ul li::before {
      background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
      background-position: 89.26355183014148% 86.98879584309542%;
      width: 12.54px;
      height: 12.82px;
      content: '';
      display: block;
      position: absolute;
      left: 0;
      top: 3px; }

.hotels-landing-video-carousel {
  padding-top: 1rem;
  padding-bottom: 1rem; }
  @media screen and (min-width: 64em) {
    .hotels-landing-video-carousel {
      padding-top: 2rem;
      padding-bottom: 2rem; } }

.hotels-landing-video-carousel__video {
  width: 100%; }
  .hotels-landing-video-carousel__video .video-js,
  .hotels-landing-video-carousel__video .vjs-fluid {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 56.25% 0 0; }

.steps-to-book {
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  background-color: #f4f4f4; }
  @media screen and (min-width: 64em) {
    .steps-to-book {
      padding-top: 2rem;
      padding-bottom: 2rem; } }

.steps-to-book__title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.8rem;
  color: #1565c0; }
  @media screen and (min-width: 48em) {
    .steps-to-book__title {
      font-size: 2.1rem; } }

.steps-to-book__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.steps-to-book__item {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 0.5%;
  margin-right: 0.5%;
  position: relative;
  text-align: center; }
  .steps-to-book__item::before, .steps-to-book__item::after {
    content: "";
    font-size: 0;
    display: block;
    width: 100%;
    background-color: #fff;
    position: absolute;
    left: 0;
    right: 0; }
  .steps-to-book__item::before {
    top: 0;
    bottom: 49%;
    -webkit-transform: skew(200deg);
            transform: skew(200deg); }
  .steps-to-book__item::after {
    top: 50%;
    bottom: 0;
    -webkit-transform: skew(-200deg);
            transform: skew(-200deg); }

.steps-to-book__text {
  margin: 0;
  position: relative;
  z-index: 1;
  padding: 0.5rem 0;
  color: #42a5f5;
  font-size: 1.4rem; }
  @media screen and (min-width: 64em) {
    .steps-to-book__text {
      padding: 1rem;
      font-size: 1.6rem; } }
  .steps-to-book__text strong {
    font-weight: normal; }

.steps-to-book__img {
  max-width: 30px;
  max-height: 30px;
  vertical-align: middle;
  fill: #42a5f5; }

.steps-to-book__item--selected::before, .steps-to-book__item--selected::after {
  background-color: #42a5f5; }

.steps-to-book__item--selected .steps-to-book__text {
  color: #fff; }

.steps-to-book__item--selected .steps-to-book__img {
  fill: #fff; }

.hotels-landing__intro {
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: center; }
  @media screen and (min-width: 64em) {
    .hotels-landing__intro {
      padding-top: 2rem;
      padding-bottom: 2rem; } }

.hotels-landing__terms {
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.25rem; }
  @media screen and (min-width: 64em) {
    .hotels-landing__terms {
      padding-top: 2rem;
      padding-bottom: 2rem; } }

#wdw-search-map {
  position: relative;
  margin-bottom: 1.5rem; }
  #wdw-search-map #map_hotel_91938 {
    display: block;
    left: 59%;
    top: 27%; }
  @media screen and (min-width: 64em) {
    #wdw-search-map #hotelid_91938 {
      left: 59%;
      top: 27%; } }
  #wdw-search-map #map_hotel_91984 {
    display: block;
    left: 70%;
    top: 18%; }
  @media screen and (min-width: 64em) {
    #wdw-search-map #hotelid_91984 {
      left: 70%;
      top: 18%; } }
  #wdw-search-map #map_hotel_91971 {
    display: block;
    left: 62%;
    top: 43%; }
  @media screen and (min-width: 64em) {
    #wdw-search-map #hotelid_91971 {
      left: 62%;
      top: 43%; } }
  #wdw-search-map #map_hotel_208052 {
    display: block;
    left: 64%;
    top: 42%; }
  @media screen and (min-width: 64em) {
    #wdw-search-map #hotelid_208052 {
      left: 64%;
      top: 42%; } }
  #wdw-search-map #map_hotel_208202 {
    display: block;
    left: 66%;
    top: 40%; }
  @media screen and (min-width: 64em) {
    #wdw-search-map #hotelid_208202 {
      left: 66%;
      top: 40%; } }
  #wdw-search-map #map_hotel_91972 {
    display: block;
    left: 31%;
    top: 29%; }
  @media screen and (min-width: 64em) {
    #wdw-search-map #hotelid_91972 {
      left: 31%;
      top: 29%; } }
  #wdw-search-map #map_hotel_207794 {
    display: block;
    left: 35%;
    top: 32%; }
  @media screen and (min-width: 64em) {
    #wdw-search-map #hotelid_207794 {
      left: 35%;
      top: 32%; } }
  #wdw-search-map #map_hotel_91975 {
    display: block;
    left: 44%;
    top: 37%; }
  @media screen and (min-width: 64em) {
    #wdw-search-map #hotelid_91975 {
      left: 44%;
      top: 37%; } }
  #wdw-search-map #map_hotel_207969 {
    display: block;
    left: 37%;
    top: 35%; }
  @media screen and (min-width: 64em) {
    #wdw-search-map #hotelid_207969 {
      left: 37%;
      top: 35%; } }
  #wdw-search-map #map_hotel_91980 {
    display: block;
    left: 57%;
    top: 41%; }
  @media screen and (min-width: 64em) {
    #wdw-search-map #hotelid_91980 {
      left: 57%;
      top: 41%; } }
  #wdw-search-map #map_hotel_91934 {
    display: block;
    left: 50%;
    top: 42%; }
  @media screen and (min-width: 64em) {
    #wdw-search-map #hotelid_91934 {
      left: 50%;
      top: 42%; } }
  #wdw-search-map #map_hotel_91981 {
    display: block;
    left: 45%;
    top: 41%; }
  @media screen and (min-width: 64em) {
    #wdw-search-map #hotelid_91981 {
      left: 45%;
      top: 41%; } }
  #wdw-search-map #map_hotel_91936 {
    display: block;
    left: 48%;
    top: 58%; }
  @media screen and (min-width: 64em) {
    #wdw-search-map #hotelid_91936 {
      left: 48%;
      top: 58%; } }
  #wdw-search-map #map_hotel_91982 {
    display: block;
    left: 43%;
    top: 58%; }
  @media screen and (min-width: 64em) {
    #wdw-search-map #hotelid_91982 {
      left: 43%;
      top: 58%; } }
  #wdw-search-map #map_hotel_209678 {
    display: block;
    left: 53%;
    top: 47%; }
  @media screen and (min-width: 64em) {
    #wdw-search-map #hotelid_209678 {
      left: 53%;
      top: 47%; } }
  #wdw-search-map #map_hotel_91937 {
    display: block;
    left: 53%;
    top: 70%; }
  @media screen and (min-width: 64em) {
    #wdw-search-map #hotelid_91937 {
      left: 53%;
      top: 70%; } }
  #wdw-search-map #map_hotel_91974 {
    display: block;
    left: 65%;
    top: 86%; }
  @media screen and (min-width: 64em) {
    #wdw-search-map #hotelid_91974 {
      left: 65%;
      top: 86%; } }
  #wdw-search-map #map_hotel_91977 {
    display: block;
    left: 76%;
    top: 52%; }
  @media screen and (min-width: 64em) {
    #wdw-search-map #hotelid_91977 {
      left: 76%;
      top: 52%; } }
  #wdw-search-map #map_hotel_91978 {
    display: block;
    left: 74%;
    top: 46%; }
  @media screen and (min-width: 64em) {
    #wdw-search-map #hotelid_91978 {
      left: 74%;
      top: 46%; } }
  #wdw-search-map #map_hotel_91979 {
    display: block;
    left: 82%;
    top: 60%; }
  @media screen and (min-width: 64em) {
    #wdw-search-map #hotelid_91979 {
      left: 82%;
      top: 60%; } }
  #wdw-search-map #map_hotel_91929 {
    display: block;
    left: 23%;
    top: 71%; }
  @media screen and (min-width: 64em) {
    #wdw-search-map #hotelid_91929 {
      left: 23%;
      top: 71%; } }
  #wdw-search-map #map_hotel_91859 {
    display: block;
    left: 30%;
    top: 75%; }
  @media screen and (min-width: 64em) {
    #wdw-search-map #hotelid_91859 {
      left: 30%;
      top: 75%; } }
  #wdw-search-map #map_hotel_91928 {
    display: block;
    left: 27%;
    top: 83%; }
  @media screen and (min-width: 64em) {
    #wdw-search-map #hotelid_91928 {
      left: 27%;
      top: 83%; } }
  #wdw-search-map #map_hotel_91939 {
    display: block;
    left: 25%;
    top: 58%; }
  @media screen and (min-width: 64em) {
    #wdw-search-map #hotelid_91939 {
      left: 25%;
      top: 58%; } }
  #wdw-search-map #map_hotel_91930 {
    display: block;
    left: 9%;
    top: 65%; }
  @media screen and (min-width: 64em) {
    #wdw-search-map #hotelid_91930 {
      left: 9%;
      top: 65%; } }
  #wdw-search-map #map_hotel_91983 {
    display: block;
    left: 7%;
    top: 58%; }
  @media screen and (min-width: 64em) {
    #wdw-search-map #hotelid_91983 {
      left: 7%;
      top: 58%; } }
  #wdw-search-map #map_hotel_91985 {
    display: block;
    left: 56%;
    top: 87%; }
  @media screen and (min-width: 64em) {
    #wdw-search-map #hotelid_91985 {
      left: 56%;
      top: 87%; } }
  #wdw-search-map #map_hotel_91976 {
    display: block;
    left: 51%;
    top: 83%; }
  @media screen and (min-width: 64em) {
    #wdw-search-map #hotelid_91976 {
      left: 51%;
      top: 83%; } }

.hotel-map__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%; }

.hotel-map__wrapper {
  position: relative; }
  @media screen and (min-width: 64em) {
    .hotel-map__wrapper {
      position: static; } }

.hotel-map__marker {
  display: none;
  width: 20px;
  height: 40px;
  float: left;
  clear: none;
  position: absolute;
  z-index: 0;
  cursor: pointer;
  margin-left: -10px;
  margin-top: -20px; }
  .hotel-map__marker::before, .hotel-map__marker::after {
    position: absolute;
    cursor: pointer; }
  .hotel-map__marker::before {
    content: "";
    display: block;
    bottom: 15px;
    left: 5px;
    width: 10px;
    height: 5px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    -webkit-box-shadow: 0 0 10px 0 black;
            box-shadow: 0 0 10px 0 black; }
  .hotel-map__marker::after {
    position: absolute;
    content: '';
    border-radius: 50% 50% 50% 0;
    border: 3px solid #fff;
    width: 18px;
    height: 18px;
    top: -12px;
    left: -2px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    background: #42a5f5; }
  .hotel-map__marker:hover::after {
    background: #1565c0; }
  .hotel-map__marker.showPinInfo {
    z-index: 1; }
    .hotel-map__marker.showPinInfo::after {
      background: #1565c0; }
  .hotel-map__marker.thisHotel::after {
    background: #fff;
    border: 3px solid #848484; }

.hotel-map__descriptions {
  text-align: center;
  position: relative; }
  @media screen and (min-width: 64em) {
    .hotel-map__descriptions {
      position: static; } }

.hotel-map__item--title {
  font-family: "Campton-Light", Arial, helvetica, sans-serif;
  font-weight: normal;
  font-size: 1.4rem;
  margin-bottom: 2px; }
  .hotel-map__item--title a {
    color: #fff; }
    .hotel-map__item--title a:hover {
      color: #fff; }

.hotel-map__item--resort {
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 1.25rem;
  color: #fff; }

.hotel-map__item {
  border: solid 1px #fff;
  background-color: #1565c0;
  max-width: 400px;
  margin: 0;
  display: none;
  position: relative;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%; }
  @media screen and (min-width: 64em) {
    .hotel-map__item {
      position: absolute;
      margin-top: 1.5rem;
      width: 200px;
      z-index: 3; } }
  .hotel-map__item .hotel-close {
    display: none; }
    @media screen and (min-width: 64em) {
      .hotel-map__item .hotel-close {
        position: absolute;
        right: 1.5rem;
        top: 1rem;
        height: 16px;
        width: 16px;
        padding: 2px;
        border: none;
        background: none;
        position: absolute;
        top: 6px;
        right: 9px;
        margin: 0;
        padding: 10px;
        display: block; }
        .hotel-map__item .hotel-close::before, .hotel-map__item .hotel-close::after {
          content: '';
          display: block;
          position: absolute;
          top: 0;
          right: 5px;
          height: 20px;
          width: 4px;
          background: #42a5f5;
          -webkit-transform: rotate(45deg);
                  transform: rotate(45deg); }
        .hotel-map__item .hotel-close::after {
          -webkit-transform: rotate(-45deg);
                  transform: rotate(-45deg); }
        .hotel-map__item .hotel-close:hover, .hotel-map__item .hotel-close:focus {
          cursor: pointer; }
          .hotel-map__item .hotel-close:hover::before, .hotel-map__item .hotel-close:hover::after, .hotel-map__item .hotel-close:focus::before, .hotel-map__item .hotel-close:focus::after {
            background: #64b5f6; }
        .hotel-map__item .hotel-close::before, .hotel-map__item .hotel-close::after {
          background: #fff; }
        .hotel-map__item .hotel-close::before {
          -webkit-box-shadow: 1px 1px 10px black;
                  box-shadow: 1px 1px 10px black; } }
  .hotel-map__item::before, .hotel-map__item::after {
    content: "";
    border: solid 10px transparent;
    width: 0;
    height: 0;
    position: absolute;
    left: 50%; }
  .hotel-map__item::before {
    border-width: 12px;
    border-bottom-color: #fff;
    top: -24px;
    margin-left: -12px; }
  .hotel-map__item::after {
    border-bottom-color: #1565c0;
    top: -20px;
    margin-left: -10px; }
  .hotel-map__item.hidePinInfo {
    display: none; }
  .hotel-map__item.showPinInfo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media screen and (min-width: 64em) {
      .hotel-map__item.showPinInfo {
        display: block;
        z-index: 1; } }
  .hotel-map__item.thisHotel {
    background-color: #fff;
    border-color: #848484; }
    .hotel-map__item.thisHotel::before {
      border-bottom-color: #848484; }
    .hotel-map__item.thisHotel::after {
      border-bottom-color: #fff; }
    @media screen and (max-width: 63.99em) {
      .hotel-map__item.thisHotel .hotel-map__item--title a {
        color: #656565; }
        .hotel-map__item.thisHotel .hotel-map__item--title a:hover {
          color: #656565; }
      .hotel-map__item.thisHotel .hotel-map__item--resort {
        color: #656565; } }

.hotel-map__item--img {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .hotel-map__item--img picture {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  @media screen and (min-width: 64em) {
    .hotel-map__item--img {
      width: 100%; } }

.hotel-map__item--desc {
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
  clear: none;
  padding: 1rem; }
  @media screen and (min-width: 64em) {
    .hotel-map__item--desc {
      background: rgba(0, 0, 0, 0.4);
      position: absolute;
      bottom: 0;
      width: 100%; } }

.hotel-dining {
  margin-bottom: 1.5rem; }

.hotel-dining__list {
  border-top: 1px solid #e4e4e4;
  padding-top: 1.5rem; }

.hotel-dining__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 100%;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 1.5rem; }

.hotel-dining__item--img {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  max-width: 25%; }

.hotel-dining__item--info {
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
  max-width: 75%;
  padding-left: 1.5rem; }

.hotel-dining__item--title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.4rem; }
  @media screen and (min-width: 48em) {
    .hotel-dining__item--title {
      font-size: 1.6rem; } }

.dining__icon {
  height: 9px;
  width: 11px; }

.hotel-gmap {
  margin-bottom: 3rem; }
  .hotel-gmap #map {
    width: 100%;
    height: 300px; }

.hotels-similar {
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem; }
  @media screen and (min-width: 64em) {
    .hotels-similar {
      padding-top: 2rem;
      padding-bottom: 4rem;
      margin-bottom: 2rem; } }
  .hotels-similar .hotels-similar__pagination {
    bottom: 10px; }

.hotels-similar__title {
  margin-bottom: 2rem; }

.hotels-similar__title-link {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.4rem; }
  @media screen and (min-width: 48em) {
    .hotels-similar__title-link {
      font-size: 1.6rem; } }
  @media screen and (max-width: 47.99em) {
    .hotels-similar__title-link {
      display: block; } }

.hotels-similar__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1rem;
  border: 1px solid #e4e4e4;
  margin-right: 1rem;
  width: 313px;
  max-width: 313px;
  height: auto; }

.hotels-similar__item--img {
  margin-bottom: 1rem; }

.hotels-similar__item--title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.6rem;
  margin-bottom: 0.5rem; }
  @media screen and (min-width: 48em) {
    .hotels-similar__item--title {
      font-size: 1.8rem; } }

.hotels-similar__item--resort {
  text-transform: uppercase;
  margin-bottom: 0.5rem; }

.hotels-similar__item--rate-tag {
  display: block;
  margin-bottom: 1rem; }
  @media screen and (min-width: 48em) {
    .hotels-similar__item--rate-tag {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }

.hotels-similar__item--rating {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 1rem;
  position: relative; }

@media screen and (max-width: 35.99em) {
  .hotels-similar__item--description {
    display: none; } }

.hotels-similar__item--price {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #e4e4e4;
  text-align: right; }
  .hotels-similar__item--price .price-first {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-line-pack: start;
        align-content: flex-start; }
    .hotels-similar__item--price .price-first .price-prefix {
      line-height: 0.9rem;
      font-size: 1.25rem;
      margin-right: 5px; }
    .hotels-similar__item--price .price-first .price {
      font-family: "Campton-Book";
      font-size: 2.6rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-line-pack: start;
          align-content: flex-start;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      color: #00c853;
      line-height: 0.9; }
  .hotels-similar__item--price .price-suffix {
    text-transform: uppercase;
    font-size: 1.25rem; }

.hotels-similar__item--submit .btn {
  width: 100%; }

.hotels-landing-modal-table {
  display: none; }

table.dining-plans-3 {
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #e4e4e4;
  border-right: 1px solid #e4e4e4;
  margin-bottom: 1rem; }
  table.dining-plans-3 tr th,
  table.dining-plans-3 tr td {
    width: 20%;
    border-top: 1px solid #e4e4e4;
    border-left: 1px solid #e4e4e4;
    border-bottom: 0;
    text-align: center;
    vertical-align: middle;
    line-height: 1.2;
    padding: 1rem; }
    table.dining-plans-3 tr th p,
    table.dining-plans-3 tr td p {
      width: 100%;
      text-align: center; }
  table.dining-plans-3 thead tr.main-headers th {
    padding-bottom: 0;
    vertical-align: top; }
    table.dining-plans-3 thead tr.main-headers th strong {
      font-weight: normal;
      width: 100%;
      font-family: "Campton-Book", Arial, helvetica, sans-serif;
      font-size: 1.4rem;
      margin-bottom: 0.5rem;
      display: block; }
      @media screen and (min-width: 48em) {
        table.dining-plans-3 thead tr.main-headers th strong {
          font-size: 1.6rem; } }
  table.dining-plans-3 thead tr.sub-headers th {
    border-top: 0;
    padding-top: 0;
    vertical-align: top;
    font-weight: normal; }
  table.dining-plans-3 tbody tr td {
    color: #00c853; }
    table.dining-plans-3 tbody tr td p {
      color: #656565; }
    table.dining-plans-3 tbody tr td span.no {
      color: #ff1800; }
    table.dining-plans-3 tbody tr td span.yes {
      background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
      background-position: 19.65648854961832% 18.948584633160024%;
      width: 12px;
      height: 9.5px;
      display: inline-block; }
    table.dining-plans-3 tbody tr td.heading {
      color: #656565; }
      table.dining-plans-3 tbody tr td.heading strong {
        font-weight: normal; }
        table.dining-plans-3 tbody tr td.heading strong span.highlight {
          color: #f04326;
          display: block; }

table.dining-plans-4 {
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #e4e4e4;
  border-right: 1px solid #e4e4e4;
  margin-bottom: 1rem; }
  table.dining-plans-4 th {
    width: 33.3%;
    border-top: 1px solid #e4e4e4;
    border-left: 1px solid #e4e4e4;
    border-bottom: 0;
    text-align: center;
    vertical-align: top;
    line-height: 1.2;
    background-color: #e4e4e4;
    padding: 1.5rem; }
    @media screen and (min-width: 64em) {
      table.dining-plans-4 th {
        width: 25%; } }
    table.dining-plans-4 th h3 {
      margin: 0; }
    table.dining-plans-4 th.image {
      padding: 0; }
    table.dining-plans-4 th.col2 {
      text-align: left; }
  table.dining-plans-4 td {
    width: 33.3%;
    border-top: 1px solid #e4e4e4;
    border-left: 1px solid #e4e4e4;
    border-bottom: 0;
    text-align: center;
    vertical-align: top;
    line-height: 1.2;
    padding: 1rem; }
    @media screen and (min-width: 64em) {
      table.dining-plans-4 td {
        width: 25%; } }
    table.dining-plans-4 td.image {
      padding: 0; }
      table.dining-plans-4 td.image img {
        float: left; }
    table.dining-plans-4 td.prices {
      border-top: 1px dashed #e4e4e4; }
      table.dining-plans-4 td.prices .tickets__prices {
        text-align: center;
        -ms-flex-item-align: center;
            align-self: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; }
        @media screen and (min-width: 64em) {
          table.dining-plans-4 td.prices .tickets__prices {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex; } }
      table.dining-plans-4 td.prices .tickets__ticket {
        clear: both; }
        @media screen and (min-width: 64em) {
          table.dining-plans-4 td.prices .tickets__ticket {
            clear: none;
            padding: 0 1rem; }
            table.dining-plans-4 td.prices .tickets__ticket:nth-child(2) {
              border-left: 1px solid #e4e4e4; } }
      table.dining-plans-4 td.prices .tickets__ticket-label {
        display: block;
        font-size: 1.2rem;
        color: #656565; }
      table.dining-plans-4 td.prices .tickets__ticket-price {
        font-family: "Campton-SemiBold";
        color: #00c853;
        font-size: 2rem; }
        @media screen and (min-width: 64em) {
          table.dining-plans-4 td.prices .tickets__ticket-price {
            font-size: 2.4rem; } }
    table.dining-plans-4 td.col2 {
      text-align: left; }
  table.dining-plans-4 li {
    padding: 0; }
    table.dining-plans-4 li::before {
      display: none; }

/* ------------------------------------*\
    $RIDE & THEME-PARK e.g. on attraction page
\*------------------------------------ */
.ride,
.theme-park {
  border-top: 1px solid #e4e4e4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 0; }

.ride__img {
  -webkit-box-flex: 25%;
      -ms-flex: 25% 0 0px;
          flex: 25% 0 0; }
  .ride__img img {
    display: block; }

.ride__detail {
  -webkit-box-flex: 73%;
      -ms-flex: 73% 0 0px;
          flex: 73% 0 0; }

.theme-park__img {
  -webkit-box-flex: 25%;
      -ms-flex: 25% 0 0px;
          flex: 25% 0 0; }
  .theme-park__img img {
    width: auto; }

.theme-park__logo {
  display: none; }
  @media screen and (min-width: 64em) {
    .theme-park__logo {
      display: block;
      -webkit-box-flex: 1;
          -ms-flex: auto 0 0px;
              flex: auto 0 0; } }
  .theme-park__logo img {
    width: auto; }

.theme-park__detail {
  -webkit-box-flex: 70%;
      -ms-flex: 70% 0 0px;
          flex: 70% 0 0; }
  @media screen and (min-width: 64em) {
    .theme-park__detail {
      -webkit-box-flex: 60%;
          -ms-flex: 60% 0 0px;
              flex: 60% 0 0; } }
  @media screen and (min-width: 64em) {
    .theme-park__detail ul {
      -webkit-columns: 2;
              columns: 2; } }

.theme-park__intro {
  font-family: "Campton-SemiBold";
  margin-bottom: 0.5rem; }

/* ------------------------------------*\
    $MINI-TICKETS
\*------------------------------------ */
.combo-tickets {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-top: 3rem;
  padding-bottom: 2rem;
  background: #f4f4f4;
  margin-bottom: 3rem; }

.combo-tickets__title {
  font-size: 2.1rem; }
  .combo-tickets__title em {
    text-transform: uppercase;
    color: #fb8c00; }

.mini-tickets {
  padding: 1.5rem 0;
  margin: 0 -1rem 3rem; }
  @media screen and (min-width: 48em) {
    .mini-tickets {
      margin: 0 -1.5rem 3rem; } }
  @media screen and (min-width: 64em) {
    .mini-tickets {
      margin: 0 0 3rem 0; } }

.mini-tickets--combo {
  margin: 0 0 1rem; }
  @media screen and (min-width: 48em) {
    .mini-tickets--combo {
      margin: 0 1rem; } }
  @media screen and (min-width: 64em) {
    .mini-tickets--combo {
      margin: 0 0 2rem 0; } }

.mini-tickets__img-wrapper {
  width: calc(100% + 2rem);
  overflow: hidden;
  margin: -1rem -1rem 1rem;
  border-radius: 4px 4px 0 0;
  text-align: center;
  position: relative; }
  .mini-tickets__img-wrapper img {
    display: block;
    width: 100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }

.mini-tickets__img-wrapper--combo {
  min-height: 150px;
  padding: 0.9rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px solid #e4e4e4; }

.mini-tickets__logo {
  width: 105px;
  height: 65px;
  margin: 0 10px; }

.mini-tickets__img-wrapper--combo-sw .mini-tickets__logo {
  width: 80px;
  height: 55px;
  margin: 5px 5px; }

.mini-tickets__img-wrapper--combo-sw .mini-tickets__logo-sw-logo {
  width: 70px;
  height: 40px; }

.mini-tickets__sw-logos {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 0 0.5rem; }
  .mini-tickets__sw-logos .mini-tickets__logo {
    margin: 0; }

.mini-tickets__slide {
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  background: #fff;
  width: 300px;
  height: auto;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition: 0.3s;
  transition: 0.3s; }
  .mini-tickets__slide:hover, .mini-tickets__slide:focus {
    -webkit-box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.1);
            box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.1); }
    .mini-tickets__slide:hover .mini-tickets__img-wrapper img, .mini-tickets__slide:focus .mini-tickets__img-wrapper img {
      -webkit-transform: scale(1.05);
              transform: scale(1.05);
      -webkit-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }

.mini-tickets__slide--combo {
  -webkit-box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.05);
  border: none;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch; }
  .mini-tickets__slide--combo .btn {
    z-index: 1;
    position: relative;
    margin-bottom: 1rem; }

.mini-tickets__tag {
  font-family: "Campton-SemiBold";
  font-size: 1.2rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  color: #fff;
  background: #f04326;
  border-radius: 4px;
  text-transform: uppercase; }

.mini-tickets__tag--black-november {
  background: #000; }

.mini-tickets__tag--combo {
  font-size: 1rem;
  top: -1rem;
  right: -0.6rem;
  padding: 0.3rem 1rem;
  border-radius: 0; }
  .mini-tickets__tag--combo::after {
    content: '';
    border: solid 3px transparent;
    border-top-color: #d42b0f;
    border-left-color: #d42b0f;
    position: absolute;
    bottom: -6px;
    right: 0; }

.mini-ticket__tag--combo--black-november {
  background: #000; }
  .mini-ticket__tag--combo--black-november::after {
    border-top-color: #000;
    border-left-color: #000; }

.mini-tickets__price-from {
  position: relative;
  float: left;
  margin: -4rem 0 1rem -1.8rem;
  padding: 1rem 1.5rem 0.8rem 0.8rem;
  color: #fff;
  background: #64b5f6;
  font-size: 1rem; }
  .mini-tickets__price-from::after {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    top: 100%;
    left: 0;
    border-style: solid;
    border-width: 0 8px 8px 0;
    border-color: transparent #1565c0 transparent transparent; }

.mini-tickets__price-from-amount {
  font-size: 2rem;
  line-height: 1;
  vertical-align: text-top; }

.mini-tickets__title {
  font-size: 1.6rem; }
  @media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
    .mini-tickets__title {
      max-width: 100%; } }

.mini-tickets__title--large {
  font-size: 1.8rem; }

.mini-tickets__title--combo {
  font-family: "Campton-Book";
  font-weight: normal;
  font-size: 1.8rem;
  margin: -1rem -1rem 0;
  padding: 1.5rem 1rem 1rem;
  background: #1565c0;
  min-height: 8rem;
  width: calc(100% + 2rem);
  border-radius: 4px 4px 0 0; }
  @media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
    .mini-tickets__title--combo {
      max-width: calc(100% + 2rem); } }

.mini-tickets__title-link::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1; }

.mini-tickets__title-link--combo {
  color: #fff; }
  .mini-tickets__title-link--combo:hover, .mini-tickets__title-link--combo:focus {
    color: #fff; }

.logo-list {
  text-align: center;
  width: 100%;
  margin: 0.5rem 0 2.5rem; }

.logo-list__item {
  display: inline-block;
  position: relative;
  padding-bottom: 10px; }
  .logo-list__item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(45deg);
            transform: translateX(-50%) rotate(45deg);
    width: 1px;
    height: 4px;
    background: transparent;
    border: 2px solid #00c853;
    border-top-color: transparent;
    border-left-color: transparent; }
  .logo-list__item a {
    text-indent: -9999em;
    display: inline-block;
    position: relative;
    z-index: 2; }

.uor a {
  background: url("/themes/custom/atd/images/svg/sprite-logos.svg") no-repeat;
  background-position: 33.447497737712055% 25.043177892918827%;
  width: 40.99px;
  height: 32px; }

.uor-ioa a {
  background: url("/themes/custom/atd/images/svg/sprite-logos.svg") no-repeat;
  background-position: 43.078951556070834% 36.09671848013817%;
  width: 34.22px;
  height: 32px; }

.uor-usf a {
  background: url("/themes/custom/atd/images/svg/sprite-logos.svg") no-repeat;
  background-position: 47.80600461893764% 41.623488773747845%;
  width: 48px;
  height: 32px; }

.uor-vb a {
  background: url("/themes/custom/atd/images/svg/sprite-logos.svg") no-repeat;
  background-position: 52.981651376146786% 47.15025906735751%;
  width: 42px;
  height: 32px; }

.uor-cw a {
  background: url("/themes/custom/atd/images/svg/sprite-logos.svg") no-repeat;
  background-position: 38.36405529953917% 30.569948186528496%;
  width: 46px;
  height: 32px; }

.wdw-logo a {
  background: url("/themes/custom/atd/images/svg/sprite-logos.svg") no-repeat;
  background-position: 81.5035799522673% 80.31088082901555%;
  width: 76px;
  height: 32px; }

.wdw-mk a {
  background: url("/themes/custom/atd/images/svg/sprite-logos.svg") no-repeat;
  background-position: 96.47946544239642% 94.47322970639033%;
  width: 34.02px;
  height: 32px; }

.wdw-hs a {
  background: url("/themes/custom/atd/images/svg/sprite-logos.svg") no-repeat;
  background-position: 73.6% 74.78411053540587%;
  width: 39px;
  height: 32px; }

.wdw-ak a {
  background: url("/themes/custom/atd/images/svg/sprite-logos.svg") no-repeat;
  background-position: 57.08848715509039% 52.67702936096718%;
  width: 31.16px;
  height: 32px; }

.wdw-bb a {
  background: url("/themes/custom/atd/images/svg/sprite-logos.svg") no-repeat;
  background-position: 60.633484162895925% 58.203799654576855%;
  width: 30px;
  height: 32px; }

.wdw-tl a {
  background: url("/themes/custom/atd/images/svg/sprite-logos.svg") no-repeat;
  background-position: 100% 100%;
  width: 30px;
  height: 32px; }

.wdw-epcot a {
  background: url("/themes/custom/atd/images/svg/sprite-logos.svg") no-repeat;
  background-position: 69.14285714285714% 69.2573402417962%;
  width: 39px;
  height: 32px; }

.logo-dc a {
  background: url("/themes/custom/atd/images/svg/sprite-logos.svg") no-repeat;
  background-position: 0 0;
  width: 150px;
  height: 64.4px;
  -webkit-transform: scale(0.5);
          transform: scale(0.5); }

.logo-ip a {
  background: url("/themes/custom/atd/images/svg/sprite-logos.svg") no-repeat;
  background-position: 18.65671641791045% 11.38353765323993%;
  width: 110px;
  height: 40px; }

.mini-tickets__combo-wrapper {
  margin: auto -1rem -1rem;
  width: calc(100% + 2rem);
  padding: 1rem;
  background: #fff;
  border-radius: 0 0 3px 3px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.mini-tickets__rating {
  margin-bottom: 1rem; }

.mini-tickets__rating-small {
  font-size: 1.2rem;
  display: block;
  line-height: 1.2; }

.mini-tickets__rating-icon {
  width: 59px;
  height: 14px; }

.mini-tickets__text {
  font-size: 1.4rem; }
  @media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
    .mini-tickets__text {
      max-width: 100%; } }
  @media screen and (max-width: 35.99em) {
    .mini-tickets__text {
      display: none; } }

.mini-tickets__footer {
  margin-top: auto;
  width: 100%; }

.mini-tickets__prices {
  text-align: center;
  -ms-flex-item-align: center;
      align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.mini-tickets__prices--combo {
  margin-bottom: 1rem; }

.mini-tickets__ticket {
  padding: 0 1rem; }
  .mini-tickets__ticket:nth-child(2) {
    border-left: 1px solid #e4e4e4; }

.mini-tickets__ticket-label {
  display: block;
  font-size: 1.2rem;
  color: #656565; }

.mini-tickets__ticket-price {
  font-family: "Campton-SemiBold";
  color: #00c853;
  font-size: 2.4rem; }

.mini-tickets__offer {
  -ms-flex-item-align: center;
      align-self: center;
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-size: 1.25rem; }
  @media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
    .mini-tickets__offer {
      max-width: 100%; } }
  .mini-tickets__combo-wrapper .mini-tickets__offer {
    margin: 0 -1rem;
    padding: 0.5rem 1rem 0;
    border-top: 1px solid #e4e4e4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end; }

.mini-tickets__offer-img {
  width: auto;
  max-width: 80px; }

.mini-tickets__countdown {
  width: 100%; }

.mini-tickets__modal-link {
  font-family: "Campton-SemiBold";
  z-index: 1;
  position: relative;
  display: block;
  border-top: 1px solid #e4e4e4;
  font-size: 1.25rem;
  margin: auto -1rem 0;
  padding: 1rem 1rem 0; }
  .mini-tickets__modal-link::after {
    background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
    background-position: 79.86641221374046% 75.75757575757575%;
    width: 12px;
    height: 10.4px;
    content: '';
    display: inline-block;
    padding-left: 5px; }
  .mini-tickets__modal-link em {
    color: #00c853; }

@media screen and (min-width: 48em) {
  .ticket-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; } }

.ticket-info__block {
  font-size: 1.35rem; }
  @media screen and (min-width: 48em) {
    .ticket-info__block {
      -ms-flex-preferred-size: 49%;
          flex-basis: 49%; } }
  .ticket-info__block li {
    line-height: 1.2;
    padding-left: 20px;
    margin-bottom: 1rem;
    position: relative; }
    .ticket-info__block li::before {
      background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
      background-position: 19.65648854961832% 18.948584633160024%;
      width: 12px;
      height: 9.5px;
      content: '';
      display: block;
      position: absolute;
      left: 0;
      top: 3px; }

.ticket-info__block--freebies li {
  padding-left: 20px; }
  .ticket-info__block--freebies li::before {
    background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
    background-position: 46.66311138198995% 43.22132097334878%;
    width: 9.92px;
    height: 12px;
    left: 5px;
    top: -2px;
    -webkit-transform: scale(1.3);
            transform: scale(1.3); }

.ticket-info__block--freebies a {
  color: #656565; }
  .ticket-info__block--freebies a:hover, .ticket-info__block--freebies a:focus {
    color: #64b5f6; }
  .ticket-info__block--freebies a strong {
    font-family: "Campton-Book";
    text-transform: uppercase;
    color: #00c853; }

.ticket-info__title {
  font-family: "Campton-Book";
  font-weight: normal;
  font-size: 1.6rem;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e4e4e4; }
  @media screen and (min-width: 48em) {
    .ticket-info__title {
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%; } }
  .ticket-info__title em {
    font-family: "Campton-SemiBold";
    color: #00c853;
    font-size: 1.35rem; }

/* ------------------------------------*\
    $MICRO-TICKETS
\*------------------------------------ */
.micro-tickets__wrapper {
  margin-bottom: 3rem; }

.micro-tickets {
  padding: 1rem 0;
  margin: 0 -1rem; }
  @media screen and (min-width: 48em) {
    .micro-tickets {
      margin: 0 -1.5rem; } }
  @media screen and (min-width: 64em) {
    .micro-tickets {
      margin: 0; } }

.micro-tickets__slide {
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  width: 80vw;
  height: auto;
  margin: 0 10px 0 0;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }
  @media screen and (min-width: 48em) {
    .micro-tickets__slide {
      width: 30vw; } }
  @media screen and (min-width: 64em) {
    .micro-tickets__slide {
      width: 244px; }
      .micro-tickets__slide:first-child:nth-last-child(4),
      .micro-tickets__slide:first-child:nth-last-child(4) ~ .micro-tickets__slide {
        width: calc((100% - 30px) / 4) !important; } }
  .micro-tickets__slide:hover, .micro-tickets__slide:focus {
    -webkit-box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.1);
            box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.1); }
  .micro-tickets__slide:last-child {
    margin-right: 0 !important; }
  .swiper-container-initialized .micro-tickets__slide {
    margin: 0 0 0 0; }

.micro-tickets__title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.4rem; }
  @media screen and (min-width: 48em) {
    .micro-tickets__title {
      font-size: 1.6rem; } }
  .micro-tickets__title a::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1; }

.micro-tickets__img {
  margin: auto -1rem 1rem;
  position: relative; }
  .micro-tickets__img img {
    display: block;
    width: 100%; }

.micro-tickets__tag {
  font-family: "Campton-SemiBold";
  color: #fff;
  background: #f04326;
  padding: 7px 10px 7px;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1;
  position: absolute;
  right: -6px;
  top: -6px; }
  .micro-tickets__tag::after {
    content: "";
    border: solid 3px transparent;
    border-top-color: #d42b0f;
    border-left-color: #d42b0f;
    position: absolute;
    bottom: -6px;
    right: 0; }

.micro-tickets__tag--black-november {
  background: #000; }
  .micro-tickets__tag--black-november::after {
    border-top-color: #333;
    border-left-color: #333; }

.micro-tickets__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }
  .micro-tickets__footer a {
    z-index: 2; }

.micro-tickets__prices {
  margin-right: 1rem;
  font-size: 1.25rem; }

.micro-tickets__ticket-price {
  font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
  color: #00c853; }

/* ------------------------------------*\
    $RELATED-PRODUCTS
\*------------------------------------ */
.related-products {
  margin: -1rem 0 2rem;
  padding: 1rem 0; }
  @media screen and (max-width: 47.99em) {
    .related-products {
      margin: 0 -1rem 2rem; } }
  @media screen and (min-width: 48em) {
    .related-products {
      margin-left: -1rem;
      margin-right: -1rem;
      padding-left: 1rem; } }
  @media screen and (min-width: 64em) {
    .related-products {
      margin-right: 0; } }

.related-products__slide {
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  height: auto;
  margin: 0 10px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }
  @media screen and (min-width: 48em) {
    .related-products__slide {
      width: 190px; }
      .related-products__slide:hover, .related-products__slide:focus {
        -webkit-box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.1);
                box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.1); } }
  @media screen and (min-width: 64em) {
    .related-products__slide:first-child:nth-last-child(5),
    .related-products__slide:first-child:nth-last-child(5) ~ .related-products__slide {
      width: calc((100% - 60px) / 5) !important; }
    .related-products__slide:hover, .related-products__slide:focus {
      -webkit-box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.1);
              box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.1); } }
  .swiper-container-initialized .related-products__slide {
    margin: 0 0 0 0; }

.related-products__link {
  padding: 0 1rem 1rem; }

.related-products__title {
  font-size: 1.5rem;
  margin: 0;
  clear: both; }
  @media screen and (min-width: 48em) {
    .related-products__title {
      font-size: 1.6rem;
      margin: 0; } }

.related-products__img {
  position: relative;
  position: relative;
  margin: auto -1rem 1rem;
  width: auto; }
  .related-products__img::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    right: 1rem;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #fff transparent; }
  .related-products__img img {
    display: block;
    border-radius: 3px 3px 0 0; }

.related-products__price-from {
  position: relative;
  float: left;
  margin: -3rem 0 1rem -0.8rem;
  padding: 1rem 1.5rem 0.8rem 0.8rem;
  color: #fff;
  background: #64b5f6;
  font-size: 1rem; }
  .related-products__price-from::after {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    top: 100%;
    left: 0;
    border-style: solid;
    border-width: 0 8px 8px 0;
    border-color: transparent #1565c0 transparent transparent; }

.related-products__price-from-amount {
  font-size: 1.8rem;
  line-height: 1;
  vertical-align: text-top; }

/* ------------------------------------*\
    $SPECIAL-OFFER
\*------------------------------------ */
.special-offer__list {
  margin-bottom: 1rem; }
  @media screen and (min-width: 48em) {
    .special-offer__list {
      margin-bottom: 1.5rem; } }

.special-offer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -1rem;
  padding: 1rem;
  border-bottom: 1px solid #e4e4e4; }
  @media screen and (min-width: 48em) {
    .special-offer {
      margin: 0;
      padding: 0;
      border: 1px solid #e4e4e4;
      border-top: none;
      text-align: center; } }
  .special-offer:first-child {
    border-top: solid 1px #e4e4e4; }
  .special-offer:nth-child(odd) {
    background-color: #f4f4f4; }

.special-offer__img {
  -webkit-box-flex: 30%;
      -ms-flex: 30% 0 0px;
          flex: 30% 0 0;
  position: relative; }
  @media screen and (min-width: 48em) {
    .special-offer__img {
      -webkit-box-flex: 25%;
          -ms-flex: 25% 0 0px;
              flex: 25% 0 0; } }
  .special-offer__img img {
    display: block;
    width: 100%; }

.special-offer__ribbon {
  font-family: "Campton-SemiBold";
  position: absolute;
  top: -1rem;
  left: -1rem;
  padding: 0.5rem 1rem;
  color: #fff;
  font-size: 1rem;
  background: #f04326;
  text-transform: uppercase; }
  @media screen and (min-width: 48em) {
    .special-offer__ribbon {
      top: 0;
      left: -7px; }
      .special-offer__ribbon::before {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        border: solid 3px transparent;
        border-top-color: #d42b0f;
        border-right-color: #d42b0f; } }

.special-offer__info {
  -webkit-box-flex: 70%;
      -ms-flex: 70% 0 0px;
          flex: 70% 0 0; }
  @media screen and (min-width: 48em) {
    .special-offer__info {
      -webkit-box-flex: 35%;
          -ms-flex: 35% 0 0px;
              flex: 35% 0 0;
      padding: 1rem; }
      .special-offer__info .special-offer__urgency-icon,
      .special-offer__info .special-offer__urgency {
        display: none; } }

.special-offer__title {
  font-size: 1.6rem;
  padding: 0 0 0 1rem; }
  @media screen and (min-width: 48em) {
    .special-offer__title {
      margin: 0; } }

.special-offer__text {
  display: none; }
  @media screen and (min-width: 48em) {
    .special-offer__text {
      display: block;
      font-size: 1.35rem; } }

.special-offer__logo {
  display: none; }
  @media screen and (min-width: 48em) {
    .special-offer__logo {
      display: block;
      -webkit-box-flex: 20%;
          -ms-flex: 20% 0 0px;
              flex: 20% 0 0;
      padding: 1rem;
      border-left: 1px solid #e4e4e4;
      border-right: 1px solid #e4e4e4;
      text-align: center; } }
  .special-offer__logo img {
    width: auto;
    margin: 0 auto; }

.special-offer__cta {
  display: none; }
  @media screen and (min-width: 48em) {
    .special-offer__cta {
      display: block;
      -webkit-box-flex: 20%;
          -ms-flex: 20% 0 0px;
              flex: 20% 0 0;
      padding: 1rem; } }

.special-offer__urgency-icon {
  width: 30px;
  height: 30px;
  display: inline-block;
  fill: #f04326; }
  @media screen and (max-width: 47.99em) {
    .special-offer__urgency-icon {
      width: 23px;
      height: 23px;
      margin-left: 1rem; } }

.special-offer__urgency {
  font-style: italic;
  display: block;
  clear: both;
  color: #f04326;
  margin: -0.7rem 0 1rem; }
  @media screen and (max-width: 47.99em) {
    .special-offer__urgency {
      display: inline-block;
      clear: none;
      margin: 0 0 1rem;
      position: relative;
      top: -6px; }
      .special-offer__urgency br {
        display: none; } }

.special-offer__back {
  position: relative;
  padding: 1.5rem 0 1.3rem 2rem;
  font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
  display: block;
  width: 100%;
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4; }
  .special-offer__back::before {
    content: "";
    border: solid 5px transparent;
    border-right-color: #64b5f6;
    position: absolute;
    left: 1px;
    top: 19px; }

/* ------------------------------------*\
    $SPECIAL-OFFER-FILTER
\*------------------------------------ */
.so-filter__title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0.5rem; }
  @media screen and (min-width: 48em) {
    .so-filter__title {
      font-size: 1.6rem; } }

.so-filter__list {
  margin-bottom: 0.5rem; }
  @media screen and (min-width: 48em) {
    .so-filter__list {
      margin-bottom: 1rem; } }

.so-filter__item {
  border-radius: 4px;
  display: inline-block;
  text-transform: uppercase;
  padding: 1rem;
  font-size: 0.9rem;
  line-height: 1;
  border: 1px solid #e4e4e4;
  cursor: pointer;
  margin: 0 0.5rem 0.5rem 0;
  font-weight: bold;
  -webkit-transition: background-color 1000ms linear;
  transition: background-color 1000ms linear; }
  .so-filter__item:hover {
    border-color: #64b5f6; }
  .so-filter__item.active {
    background-color: #64b5f6;
    color: white;
    border-color: #64b5f6; }
  @media screen and (min-width: 48em) {
    .so-filter__item {
      margin: 0 1rem 1rem 0;
      font-size: 1.25rem; } }

.news-listing__title-main {
  margin-top: 30px; }

.news-listing {
  background: #fff;
  border: 1px solid #e4e4e4;
  padding: 1.5rem; }
  @media screen and (max-width: 35.99em) {
    .news-listing {
      padding: 0;
      border: none; } }

.news-listing__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem; }
  .news-listing__item:last-child {
    border: none; }

.news-listing__img {
  -webkit-box-flex: 30%;
      -ms-flex: 30%;
          flex: 30%; }

.news-listing__content {
  -webkit-box-flex: 70%;
      -ms-flex: 70%;
          flex: 70%;
  padding-left: 1.5rem; }

.news-listing__title {
  margin-bottom: 0; }
  @media screen and (max-width: 35.99em) {
    .news-listing__title {
      font-size: 1.6rem; } }

.must-read__list {
  margin-bottom: 3rem;
  max-width: 100%; }

.must-read__item {
  width: 240px;
  height: auto;
  margin-right: 1.5rem;
  border: 1px solid #e4e4e4;
  border-radius: 4px; }
  .must-read__item:hover {
    -webkit-box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.1);
            box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.1); }

.must-read__img {
  position: relative;
  display: block; }
  .must-read__img::after {
    position: absolute;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    content: "";
    bottom: 0;
    right: 10px; }
  .must-read__img img {
    display: block; }

.must-read__content {
  padding: 1.5rem; }

.must-read__title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.4rem; }
  @media screen and (min-width: 48em) {
    .must-read__title {
      font-size: 1.6rem; } }

.must-read__desc {
  margin-bottom: 0; }

.news-tabs__title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.4rem; }
  @media screen and (min-width: 48em) {
    .news-tabs__title {
      font-size: 1.6rem; } }

.news-tabs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 3px; }

.news-tabs__item {
  width: 32.5%; }

.news-tabs__link {
  position: relative;
  display: block;
  background: #64b5f6;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid #e4e4e4;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 0.9rem;
  border-radius: 0;
  padding: 1rem 0;
  margin: 0;
  height: 70px; }
  .news-tabs__link.tabs__link--active {
    background: #fff;
    color: #64b5f6; }
  .news-tabs__link:hover {
    background: #fff;
    color: #64b5f6; }
  .news-tabs__link::before {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: 34px;
    margin-left: -11.5px; }

.news-tabs__attractions::before {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 10.12536162005786% 7.15962441314554%;
  width: 23px;
  height: 23px; }

.news-tabs__attractions.tabs__link--active::before, .news-tabs__attractions:hover::before {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 7.907425265188042% 4.460093896713615%;
  width: 23px;
  height: 23px; }

.news-tabs__destinations::before {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 26.13307618129219% 27.230046948356808%;
  width: 23px;
  height: 23px; }

.news-tabs__destinations.tabs__link--active::before, .news-tabs__destinations:hover::before {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 23.915139826422372% 24.530516431924884%;
  width: 23px;
  height: 23px; }

.news-tabs__categories::before {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 17.647058823529413% 16.549295774647888%;
  width: 23px;
  height: 23px; }

.news-tabs__categories.tabs__link--active::before, .news-tabs__categories:hover::before {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 15.429122468659594% 13.849765258215962%;
  width: 23px;
  height: 23px; }

.news-tabs__content {
  margin: 0;
  padding: 1.5rem;
  border: 1px solid #e4e4e4;
  background: #fff; }

.news-tabs__content-item {
  font-size: 1.25rem;
  overflow: hidden; }

.pr-list {
  border: 1px solid #e4e4e4;
  padding: 1.5rem; }

.pr-list__item {
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem; }
  .pr-list__item:last-child {
    border: none; }

.pr-list__title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.8rem; }
  @media screen and (min-width: 48em) {
    .pr-list__title {
      font-size: 2.1rem; } }

.media-contact {
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem; }

.media-contact__title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.6rem; }
  @media screen and (min-width: 48em) {
    .media-contact__title {
      font-size: 1.8rem; } }

.media-assets {
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem; }

.media-assets__title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.6rem; }
  @media screen and (min-width: 48em) {
    .media-assets__title {
      font-size: 1.8rem; } }

.media-assets__download a {
  position: relative;
  display: block;
  padding: 1.4rem 1.5rem 1.1rem 6rem;
  background: #64b5f6;
  border-radius: 2px; }
  .media-assets__download a span {
    display: block;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1.2;
    text-align: center; }
  .media-assets__download a .small {
    font-size: 1.25rem;
    font-weight: 100; }

.media-assets__download-icon {
  position: absolute;
  width: 33px;
  height: 33px;
  left: 14px;
  top: 14px; }

.more-press__title-main {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.6rem; }
  @media screen and (min-width: 48em) {
    .more-press__title-main {
      font-size: 1.8rem; } }

.more-press__item {
  margin-bottom: 1.5rem; }

.more-press__title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0.5rem; }
  @media screen and (min-width: 48em) {
    .more-press__title {
      font-size: 1.6rem; } }

.news-article__header-press {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 2.1rem;
  margin-bottom: 0; }
  @media screen and (min-width: 48em) {
    .news-article__header-press {
      font-size: 3.2rem; } }

.news-article__header-title {
  line-height: 1.2; }

.news-article__header-intro {
  margin-bottom: 1.5rem; }

.news-article__details {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #e4e4e4; }
  .news-article__details + .news {
    margin-top: 3rem; }

.news-article__published {
  margin-bottom: 5px; }

.news-article__destinations {
  font-size: 1.25rem;
  margin-bottom: 8px;
  padding-left: 15px;
  position: relative; }
  .news-article__destinations::before {
    background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
    background-position: 96.76190476190476% 96.0693641618497%;
    width: 10px;
    height: 10px;
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 2.5px; }

.news-article__share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media screen and (max-width: 47.99em) {
    .news-article__share {
      padding-bottom: 30px;
      position: relative; }
      .news-article__share .fb_iframe_widget {
        position: absolute;
        bottom: 0; } }
  .news-article__share .twitter-share-button,
  .news-article__share .pinterest-share,
  .news-article__share .fb_iframe_widget {
    margin: 0 1rem 0 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex; }

.news-article__content-wrapper {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #e4e4e4;
  margin-bottom: 3rem;
  margin-top: -1px; }
  .news-article__content-wrapper ul {
    margin-bottom: 1.5rem; }
    .news-article__content-wrapper ul li {
      padding-left: 20px;
      margin-bottom: 2px;
      position: relative;
      clear: both; }
      .news-article__content-wrapper ul li::before {
        background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
        background-position: 89.26355183014148% 86.98879584309542%;
        width: 12.54px;
        height: 12.82px;
        content: '';
        display: block;
        position: absolute;
        left: 0;
        top: 3px; }
  .news-article__content-wrapper ol {
    list-style: decimal;
    padding-left: 15px;
    margin-bottom: 1.5rem; }

.news-article__title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.9rem; }
  @media screen and (min-width: 48em) {
    .news-article__title {
      font-size: 2.4rem; } }

.news-article__img {
  margin-bottom: 15px; }

.news-article__quote {
  margin-bottom: 15px; }

.news-article__intro {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e4e4e4; }

.news-blog__title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.8rem; }
  @media screen and (min-width: 48em) {
    .news-blog__title {
      font-size: 2.1rem; } }

.news-blog__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5px; }

.news-blog__post-title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.4rem; }
  @media screen and (min-width: 48em) {
    .news-blog__post-title {
      font-size: 1.6rem; } }

.news-blog__published {
  margin-bottom: 15px; }

.news {
  margin-bottom: 3rem; }
  @media screen and (min-width: 48em) {
    .news {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 55%;
              flex: 0 0 55%; } }

.news-block {
  border: 1px solid #e4e4e4;
  background: #fff;
  padding: 1.5rem;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .news-block:hover {
    -webkit-box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.1);
            box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.1); }

.news-block__img {
  -webkit-box-flex: 30%;
      -ms-flex: 30%;
          flex: 30%; }

.news-block__content {
  -webkit-box-flex: 70%;
      -ms-flex: 70%;
          flex: 70%;
  padding-left: 15px; }

.news-block__title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0; }
  @media screen and (min-width: 48em) {
    .news-block__title {
      font-size: 1.6rem; } }

.news-block__desc {
  margin-bottom: 0; }

.news-block__read-all {
  font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
  display: block;
  text-align: right; }

nav.pager {
  margin-top: 1.5rem; }

.pager__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.pager__item {
  color: #64b5f6;
  font-weight: bold;
  margin: 0 10px; }

.pager__item--page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 5px; }
  .pager__item--page a {
    width: auto;
    background-color: #fff;
    border: 1px solid #64b5f6;
    min-width: 35px;
    min-height: 35px;
    border-radius: 50%;
    padding: 0.8rem 0.5rem 0.5rem 0.5rem;
    text-align: center; }
    .pager__item--page a:hover {
      background: #64b5f6;
      color: #fff; }
  .pager__item--page.is-active a {
    background: #64b5f6;
    color: #fff; }

/* ------------------------------------*\
    $CATEGORIES
\*------------------------------------ */
@media screen and (max-width: 63.99em) {
  .categories__section-title {
    display: none; } }

.ftgo-categories {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f4f4f4; }
  @media screen and (min-width: 64em) {
    .ftgo-categories {
      padding-top: 2rem;
      padding-bottom: 2rem; } }

.categories {
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  @media screen and (min-width: 64em) {
    .categories {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding-bottom: 2rem; } }

.categories__item {
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 19%;
          flex: 0 0 19%;
  background: #fff;
  padding: 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 1.5rem;
  margin-right: 1.25%; }
  @media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
    .categories__item {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 17%;
              flex: 0 0 17%; } }
  .categories__item:nth-child(5n) {
    margin-right: 0; }
  .categories__item:hover, .categories__item:focus {
    -webkit-box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.1);
            box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.1); }

.categories__img {
  width: calc(100% + 2rem);
  margin: -1rem -1rem 1rem; }
  .categories__img img {
    display: block;
    border-radius: 4px 4px 0 0; }

.categories__title {
  margin: 0;
  font-size: 1.35rem; }

.carousel-categories {
  padding: 1rem 0;
  margin: 0 -1rem 3rem; }
  @media screen and (min-width: 48em) {
    .carousel-categories {
      margin: 0 -1.5rem 3rem; } }
  @media screen and (min-width: 64em) {
    .carousel-categories {
      margin: 0 0 3rem -1rem; } }

.carousel-categories__slide {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s; }

.carousel-categories__img-wrapper {
  overflow: hidden;
  border-radius: 4px; }
  .carousel-categories__img-wrapper img {
    width: 100%;
    display: block; }

.carousel-categories__link {
  color: #fff;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s; }
  .carousel-categories__link:hover, .carousel-categories__link:focus {
    -webkit-box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.1);
            box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.1);
    -webkit-transform: scale(1.05);
            transform: scale(1.05); }

.carousel-categories__title {
  margin: 0;
  font-size: 1.35rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
  padding: 1rem;
  color: #fff;
  border-radius: 0 0 4px 4px;
  background: -webkit-gradient(linear, left bottom, left top, from(black), color-stop(70%, rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0) 100%); }

@media screen and (min-width: 48em) {
  .hotels-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 1rem; } }

.hotels-header__title {
  font-size: 2.1rem; }

.hotels-header__map-btn {
  display: none; }
  @media screen and (min-width: 48em) {
    .hotels-header__map-btn {
      display: block;
      position: relative;
      min-width: 170px; } }

.hotels-header__icon {
  fill: #fff;
  width: 18px;
  height: 20px;
  display: inline-block;
  vertical-align: bottom;
  margin: -10px 0 0; }

.atd-hotels-search-results {
  padding-top: 1.5rem;
  border-top: 1px solid #e4e4e4;
  margin-bottom: 1.5rem; }

.hotel-result {
  padding-bottom: 10px;
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 1rem; }
  @media screen and (min-width: 36em) {
    .hotel-result {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      max-width: 100%; } }

@media screen and (min-width: 36em) {
  .hotel-result__img {
    -webkit-box-flex: 25%;
        -ms-flex: 25%;
            flex: 25%; } }

.hotel-result__img img {
  width: 100%; }

@media screen and (min-width: 36em) {
  .hotel-result__content {
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    padding: 0 1.5rem; } }

.hotel-result__title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.6rem;
  margin-bottom: 0; }
  @media screen and (min-width: 48em) {
    .hotel-result__title {
      font-size: 1.8rem; } }

.hotel-result__resort {
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 1.25rem; }

.hotel-result__rating,
.hotel__rating {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 10px 0 0; }
  .hotel-result__rating .star,
  .hotel__rating .star {
    margin-right: 2px; }
    .hotel-result__rating .star .on,
    .hotel__rating .star .on {
      background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
      background-position: 92.72030651340997% 91.15250291036088%;
      width: 16px;
      height: 16px;
      display: block;
      content: '';
      position: relative;
      top: -1px; }
    .hotel-result__rating .star .off,
    .hotel__rating .star .off {
      background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
      background-position: 94.25287356321839% 93.0151338766007%;
      width: 16px;
      height: 16px;
      display: block;
      content: '';
      position: relative;
      top: -1px; }
    .hotel-result__rating .star .half,
    .hotel__rating .star .half {
      background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
      background-position: 95.78544061302682% 94.8777648428405%;
      width: 16px;
      height: 16px;
      display: block;
      content: '';
      position: relative;
      top: -1px; }

.hotel-result__category-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  padding-right: 1.5rem;
  top: -4px;
  margin: 0 0 10px; }

.hotel-result__tripadvisor {
  display: none;
  font-size: 1.25rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  top: -6px; }
  .hotel-result__tripadvisor--hotel {
    top: -3px; }

.hotel-result__tripadvisor-image {
  width: 74px; }

.hotel-result__tripadvisor-review_count {
  font-size: 10px;
  margin: unset; }
  .hotel-result__tripadvisor-review_count--white {
    color: #fff; }

.hotel-result__persuasion {
  color: #f04326;
  font-size: 1.25rem; }

.hotel-result__benefits {
  font-size: 1.25rem; }
  .hotel-result__benefits strong {
    font-family: "Campton-Book", Arial, helvetica, sans-serif;
    color: #00c853; }

.hotel-result__price,
.hotel__price-from {
  text-align: right; }
  @media screen and (min-width: 36em) {
    .hotel-result__price,
    .hotel__price-from {
      padding-left: 1.5rem;
      border-left: 1px solid #e4e4e4;
      -webkit-box-flex: 25%;
          -ms-flex: 25%;
              flex: 25%; } }
  .hotel-result__price .price-first,
  .hotel__price-from .price-first {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: start;
        align-content: flex-start;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-bottom: 0; }
    .hotel-result__price .price-first .price-prefix,
    .hotel__price-from .price-first .price-prefix {
      font-size: 1.25rem;
      margin-right: 5px; }
    .hotel-result__price .price-first .price,
    .hotel__price-from .price-first .price {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      font-size: 2.6rem;
      color: #00c853;
      line-height: 1; }
  .hotel-result__price .price-suffix,
  .hotel__price-from .price-suffix {
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: 0; }
  .hotel-result__price .disneyDineMessage,
  .hotel__price-from .disneyDineMessage {
    font-family: "Campton-SemiBold";
    font-size: 1.25rem;
    color: #f04326;
    margin: 1rem 0 0;
    font-style: italic; }
    .hotel-result__price .disneyDineMessage strong,
    .hotel__price-from .disneyDineMessage strong {
      font-style: normal; }

.hotel-rrp-saving-block {
  font-size: 1.25rem;
  color: #f04326;
  font-style: italic;
  margin-bottom: 0.5rem;
  line-height: 1.2; }

.hotel-days-and-nights {
  font-size: 1.25rem;
  font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
  margin-bottom: 0.5rem;
  line-height: 1.2; }

#modal-map-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  #modal-map-content .filter-form {
    border: none; }

.hotels-results-map__btn {
  position: absolute;
  z-index: 3;
  cursor: pointer;
  top: -15px;
  right: -15px;
  height: 40px;
  width: 40px;
  background: #fff;
  border: none;
  border-radius: 50%;
  -webkit-box-shadow: 0 9px 15px -7px rgba(176, 176, 176, 0.6);
          box-shadow: 0 9px 15px -7px rgba(176, 176, 176, 0.6); }
  .hotels-results-map__btn::before, .hotels-results-map__btn::after {
    content: '';
    display: block;
    width: 6px;
    height: 23px;
    top: 9px;
    left: 18px;
    background: #848484;
    position: absolute;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); }
  .hotels-results-map__btn::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg); }

#hotels-results-map__map {
  width: 100%; }

#hotels-results-map__hotels-list {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 365px;
          flex: 0 0 365px;
  overflow-y: auto;
  background: #fbf9f9; }

#hotels-results-map__filters {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 240px;
          flex: 0 0 240px;
  overflow-y: auto; }

.hotels-results-map__hotel {
  margin: 1rem 1rem 0.5rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem;
  background: white;
  -webkit-box-shadow: 0 9px 15px -7px rgba(176, 176, 176, 0.23);
          box-shadow: 0 9px 15px -7px rgba(176, 176, 176, 0.23);
  -webkit-transition: all 0.17s ease-in-out;
  transition: all 0.17s ease-in-out;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 5px;
  position: relative;
  cursor: pointer; }
  .hotels-results-map__hotel:hover {
    -webkit-box-shadow: 0 16px 9px -7px rgba(176, 176, 176, 0.3);
            box-shadow: 0 16px 9px -7px rgba(176, 176, 176, 0.3); }

.hotel__data {
  margin-left: 1rem; }

.hotels-results-map__hotel--marker {
  -webkit-box-shadow: none;
          box-shadow: none;
  margin: 0;
  padding: 0;
  cursor: default; }
  .hotels-results-map__hotel--marker .hotel__data {
    width: 220px; }

.hotel__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 130px;
          flex: 0 0 130px; }
  .hotel__img img {
    display: block; }

.hotel__title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #656565;
  display: block;
  margin-bottom: 5px;
  max-width: 190px; }
  .hotel__title:hover, .hotel__title:focus {
    color: #656565; }

.hotel__rating {
  display: block; }
  .hotel__rating .star {
    display: inline-block; }

.hotel__price-from {
  border: none;
  margin: 0;
  padding: 0; }

.hotel__select-room {
  float: right;
  font-weight: normal;
  margin-top: 3px; }

/* ------------------------------------*\
    $HOTEL PARK TICKETS
\*------------------------------------ */
.booking-steps__hero {
  position: relative; }
  @media screen and (max-width: 63.99em) {
    .booking-steps__hero {
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw); } }

.booking-steps__hero-img {
  display: none; }
  @media screen and (min-width: 64em) {
    .booking-steps__hero-img {
      display: block; }
      .booking-steps__hero-img img {
        display: block;
        min-height: 384px;
        position: relative;
        left: 50%;
        -webkit-transform: translate(-50%);
                transform: translate(-50%);
        width: auto;
        max-width: 1920px; } }

.booking-steps__hero-content {
  position: relative;
  margin: 0;
  background: none;
  margin-bottom: 1.5rem; }
  @media screen and (min-width: 64em) {
    .booking-steps__hero-content {
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      padding: 1rem 0;
      margin-bottom: 0;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0; }
      .booking-steps__hero--default .booking-steps__hero-content {
        background: rgba(0, 0, 0, 0.4); } }
  @media screen and (max-width: 35.99em) {
    .booking-steps__hero-content {
      margin-bottom: 0; } }

@media screen and (min-width: 64em) {
  .booking-steps__hero-title {
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5); }
    .booking-steps__hero--default .booking-steps__hero-title {
      color: #fff;
      text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); } }

.booking-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 75%;
  max-width: 75%;
  margin: 0 auto; }
  @media screen and (max-width: 35.99em) {
    .booking-steps {
      display: none; } }

.booking-steps__item {
  margin: 0 1% 0 0;
  text-align: center;
  position: relative;
  padding: 0;
  font-size: 0;
  min-height: 52px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; }
  @media screen and (max-width: 35.99em) {
    .booking-steps__item {
      min-height: 35px; } }
  .booking-steps__item::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    background-color: #fff;
    top: 0;
    bottom: 49%;
    -webkit-transform: skew(200deg);
    transform: skew(200deg); }
  .booking-steps__item::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    background-color: #fff;
    top: 49%;
    bottom: 0;
    -webkit-transform: skew(-200deg);
            transform: skew(-200deg); }

.booking-steps__item-text {
  display: inline-block;
  text-align: center;
  color: #42a5f5;
  z-index: 1;
  position: relative;
  font-size: 1.4rem;
  margin: 15px 0 0;
  padding-left: 43px; }
  @media screen and (max-width: 35.99em) {
    .booking-steps__item-text {
      padding-left: 0;
      margin: 8px 0 0; } }

.booking-steps__desktop-text {
  display: none; }
  @media screen and (min-width: 48em) {
    .booking-steps__desktop-text {
      display: inline; } }

.booking-steps__item-icon {
  position: absolute;
  left: 0;
  top: -7px;
  height: 35px;
  width: 35px;
  fill: #42a5f5; }
  @media screen and (max-width: 35.99em) {
    .booking-steps__item-icon {
      display: none; } }

.booking-steps.dining-included {
  width: 100%;
  max-width: 100%;
  margin: 0; }

.booking-steps__item.selected::before, .booking-steps__item.selected::after {
  background-color: #42a5f5; }

.booking-steps__item.selected .booking-steps__item-text {
  color: #fff; }

.booking-steps__item.selected .booking-steps__item-icon {
  fill: #fff; }

.hotel-addons__intro-text {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.4rem; }
  @media screen and (min-width: 48em) {
    .hotel-addons__intro-text {
      font-size: 1.6rem; } }

.hotel-addons-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media screen and (min-width: 48em) {
    .hotel-addons-wrapper {
      padding: 1.5rem;
      border: 1px solid #e4e4e4; } }

.horizontal-ticket__tag {
  font-family: "Campton-SemiBold";
  position: absolute;
  z-index: 1;
  color: #fff;
  background: #f04326;
  border-radius: 4px 4px 0 4px;
  text-transform: uppercase;
  font-size: 1rem;
  padding: 4px 10px 2px 10px;
  top: -11px;
  right: -7px; }
  @media screen and (max-width: 47.99em) {
    .horizontal-ticket__tag {
      top: -13px; } }
  .horizontal-ticket__tag::after {
    content: '';
    border: solid 3px transparent;
    border-top-color: #d42b0f;
    border-left-color: #d42b0f;
    position: absolute;
    bottom: -6px;
    right: 0; }

.horizontal-ticket {
  position: relative;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  padding: 0;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.horizontal-ticket__title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.4rem;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
  background-color: #f4f4f4;
  border-bottom: 1px solid #e4e4e4;
  padding: 0.8rem 1.5rem 0.5rem;
  margin: 0; }
  @media screen and (min-width: 48em) {
    .horizontal-ticket__title {
      font-size: 1.6rem; } }

.horizontal-ticket__content {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
  padding: 1.5rem 1.5rem 0; }

.horizontal-ticket__persuasion-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media only screen and (max-width: 650px) {
    .horizontal-ticket__persuasion-wrapper {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }

.horizontal-ticket__persuasion {
  position: relative;
  font-size: 1.4rem;
  padding-left: 20px;
  font-family: "Campton-Light", Arial, helvetica, sans-serif; }
  .horizontal-ticket__persuasion::before {
    background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
    background-position: 98.08795411089866% 97.67711962833914%;
    width: 14px;
    height: 14px;
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 3px; }
  @media only screen and (max-width: 650px) {
    .horizontal-ticket__persuasion {
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%; } }

.disney-dine__message {
  position: relative;
  text-align: right;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  padding: 10px 10px 5px 26px;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  margin-left: 40px;
  background: #fff; }
  @media only screen and (max-width: 650px) {
    .disney-dine__message {
      margin-left: 25px; } }

.disney-dine__icon {
  height: 60px;
  width: 59px;
  position: absolute;
  top: -6px;
  left: -36px; }

.disney-dine__label {
  height: 14px;
  width: 140px;
  position: absolute;
  left: 0;
  top: 0; }

.disney-dine__first {
  display: block;
  width: 137px;
  height: 14px;
  text-indent: 999px;
  white-space: nowrap;
  position: relative; }

.disney-dine__second {
  position: relative;
  width: auto;
  color: #f04326;
  font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
  font-size: 1.25rem;
  margin: 0;
  padding: 0;
  font-style: italic; }

.horizontal-ticket__includes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.logo-list--horizontal {
  margin: 0 0 1.5rem;
  display: inline-block;
  width: auto; }

.horizontal-ticket__form {
  text-align: right; }
  @media screen and (max-width: 35.99em) {
    .horizontal-ticket__form {
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }

@media screen and (max-width: 35.99em) {
  .horizontal-ticket__adult-child {
    margin-right: auto; } }

.horizontal-ticket__price-adult {
  font-size: 1.25rem;
  display: inline-block; }
  .horizontal-ticket__price-adult .span-price {
    color: #00c853; }
  @media screen and (max-width: 35.99em) {
    .horizontal-ticket__price-adult {
      display: block;
      margin-bottom: 2px; } }

.horizontal-ticket__price-child {
  font-size: 1.25rem;
  display: inline-block;
  margin-left: 1rem; }
  .horizontal-ticket__price-child .span-price {
    color: #00c853; }
  @media screen and (max-width: 35.99em) {
    .horizontal-ticket__price-child {
      display: block;
      margin-bottom: 0; } }

.horizontal-ticket__total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: start;
      align-content: flex-start; }
  @media screen and (max-width: 35.99em) {
    .horizontal-ticket__total {
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end; } }

.horizontal-ticket__info {
  margin-right: 1rem; }

.horizontal-ticket__total-add {
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-bottom: 0; }

.horizontal-ticket__total-price {
  font-family: "Campton-Book";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #00c853;
  text-align: right;
  margin: 0;
  font-size: 2.6rem;
  line-height: 1.3; }

.horizontal-ticket__btn .btn {
  min-width: 120px; }

.horizontal-ticket__added-value {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
  margin-top: 1rem; }

.horizontal-ticket__twisty-title {
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: block;
  width: 100%;
  position: relative;
  padding: 1.3rem 1rem 1rem 2rem;
  text-transform: uppercase;
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  color: #64b5f6;
  text-transform: none;
  font-size: 1.4rem;
  font-family: "Campton-Light", Arial, helvetica, sans-serif;
  margin-bottom: 0;
  padding: 1.5rem 0 1.5rem 2rem;
  border-top: 1px solid #e4e4e4; }
  .horizontal-ticket__twisty-title::before {
    content: "";
    border: solid 5px transparent;
    border-left-color: #64b5f6;
    position: absolute;
    top: 17px;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    left: 3px; }
  .horizontal-ticket__twisty-title.accordion__btn-active::before {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    left: 5px;
    top: 14px; }
  .horizontal-ticket__twisty-title::before {
    top: 15px; }
  .horizontal-ticket__twisty-title.opened::before {
    left: 3px;
    top: 19px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); }

.horizontal-ticket__twisty-list li {
  font-size: 1.25rem;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 5px; }
  .horizontal-ticket__twisty-list li:last-child {
    margin-bottom: 1.5rem; }
  .horizontal-ticket__twisty-list li::before {
    background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
    background-position: 19.65648854961832% 18.948584633160024%;
    width: 12px;
    height: 9.5px;
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 2px; }

@media screen and (max-width: 35.99em) {
  .horizontal-ticket__form-wrapper {
    margin-top: 1rem;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%; } }

.horizontal-ticket__usp .uh-usp {
  position: static;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 0;
  opacity: 1; }

.horizontal-ticket__price-wrapper {
  margin-bottom: 1rem;
  padding-bottom: 0;
  text-align: right; }
  .horizontal-ticket__price-wrapper select {
    min-width: 55px;
    border-radius: 0;
    padding: 0.7rem 2.5rem 0.5rem 0.8rem; }

.horizontal-ticket__price-label {
  font-size: 1.4rem;
  margin-right: 0.5rem;
  display: inline-block; }
  .horizontal-ticket__price-label .price-label {
    margin-right: 5px;
    position: relative;
    top: -1px; }
  .horizontal-ticket__price-label .price {
    font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
    font-size: 2rem;
    color: #00c853; }

.horizontal-ticket__btn-wrapper {
  width: 100%;
  text-align: right; }

.dining-ticket__inner {
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 100%; }
  @media screen and (max-width: 47.99em) {
    .dining-ticket__inner {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }

.dining-ticket__inner__img {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  max-width: 25%;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0; }

.dining-ticket__content {
  padding: 0 1.5rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; }
  @media screen and (max-width: 47.99em) {
    .dining-ticket__content {
      -ms-flex-preferred-size: 75%;
          flex-basis: 75%;
      max-width: 75%;
      padding-right: 0; } }

.dining-ticket__title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 5px; }
  @media screen and (min-width: 48em) {
    .dining-ticket__title {
      font-size: 1.6rem; } }

.dining-ticket__desc {
  font-size: 1.25rem; }

.dining-ticket__includes {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 5px; }
  @media screen and (min-width: 48em) {
    .dining-ticket__includes {
      font-size: 1.6rem; } }

.dining-ticket__includes-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .dining-ticket__includes-list ul li {
    position: relative;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    padding-left: 20px;
    font-size: 1.25rem; }
    .dining-ticket__includes-list ul li::before {
      background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
      background-position: 89.26355183014148% 86.98879584309542%;
      width: 12.54px;
      height: 12.82px;
      content: '';
      display: block;
      position: absolute;
      left: 0;
      top: 1px; }
    @media screen and (max-width: 47.99em) {
      .dining-ticket__includes-list ul li {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%; } }

.dining-ticket__pricing {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  max-width: 25%;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-left: 1.5rem;
  border-left: 1px solid #e4e4e4;
  text-align: right; }
  @media screen and (max-width: 47.99em) {
    .dining-ticket__pricing {
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
      max-width: 100%;
      padding-left: 0;
      padding-top: 1.5rem;
      margin-top: 1.5rem;
      border-left: none;
      border-top: 1px solid #e4e4e4;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }

.dining-ticket__adult,
.dining-ticket__child {
  display: block;
  font-size: 1.25rem; }
  .dining-ticket__adult .span-price,
  .dining-ticket__child .span-price {
    color: #00c853; }

.dining-ticket__perday {
  display: block;
  font-size: 1.25rem; }

.dining-ticket__addplan {
  display: block;
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-bottom: 0; }

.dining-ticket__total {
  font-family: "Campton-Book";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #00c853;
  text-align: right;
  font-size: 2.6rem;
  line-height: 1.3; }

.no-addon {
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  padding: 1.5rem;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1; }

.no-addon-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.no-addon__title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 2px;
  line-height: 1.2; }
  @media screen and (min-width: 48em) {
    .no-addon__title {
      font-size: 1.6rem; } }

.no-addon__desc {
  margin-bottom: 0;
  font-size: 1.25rem; }

.no-addon__btn {
  margin-left: auto; }
  .no-addon__btn .btn {
    min-width: 120px; }

.addon-selected {
  border: 1px solid #00c853;
  background: #e7fbed; }
  .addon-selected .horizontal-ticket__title {
    background: #e7fbed; }

/* ------------------------------------*\
    Hotel Page
\*------------------------------------ */
.hotel-hero {
  position: relative; }
  @media screen and (max-width: 47.99em) {
    .hotel-hero {
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      overflow: hidden; } }

.hotel-hero__img {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw); }
  @media screen and (min-width: 48em) {
    .hotel-hero__img {
      display: block; } }
  @media screen and (max-width: 47.99em) {
    .hotel-hero__img {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0; } }
  @media screen and (max-width: 28.75em) {
    .hotel-hero__img img {
      position: absolute;
      height: 100%;
      width: auto;
      max-width: none;
      top: 0;
      left: 0; } }
  @media screen and (min-width: 48em) {
    .hotel-hero__img img {
      display: block;
      min-height: 384px;
      position: relative;
      left: 50%;
      -webkit-transform: translate(-50%);
              transform: translate(-50%);
      width: auto;
      max-width: 1920px; } }

@media screen and (max-width: 47.99em) {
  .hotel-hero__content {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.4); } }

.hotel-hero__banner {
  position: relative;
  margin: 0;
  background: none;
  margin-bottom: 1.5rem; }
  @media screen and (max-width: 47.99em) {
    .hotel-hero__banner {
      margin: 0; } }
  @media screen and (max-width: 47.99em) {
    .hotel-hero__banner .u-container {
      padding: 0; } }
  @media screen and (min-width: 48em) {
    .hotel-hero__banner {
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      padding: 1rem 0;
      margin-bottom: 0;
      background: rgba(0, 0, 0, 0.4);
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0; } }

.hotel-hero__overlay {
  display: none; }
  @media screen and (max-width: 47.99em) {
    .hotel-hero__overlay {
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.4);
      top: 0;
      left: 0;
      right: 0;
      bottom: 0; } }

.hotel-hero__title {
  color: #fff;
  margin-bottom: 10px;
  line-height: 1;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); }
  @media screen and (max-width: 47.99em) {
    .hotel-hero__title {
      margin-bottom: 0.5rem; } }

.hotel-hero__details {
  max-width: 100%; }

.hotel-hero__rating {
  display: inline-block;
  top: 3px;
  position: relative;
  margin-right: 5px; }

.star-rating-text {
  display: none; }

.hotel-hero__star-rating {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex; }

.hotel-hero__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0; }
  .hotel-hero__tag span {
    background: #fff; }
  .hotel-hero__tag::before {
    background: #fff; }

.hotel-hero__resort {
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); }
  @media screen and (max-width: 63.99em) {
    .hotel-hero__resort {
      margin-top: 0.7rem; } }

@-webkit-keyframes slideInFadeIn {
  0% {
    right: 0;
    opacity: 0; }
  100% {
    right: 15px;
    opacity: 1; } }

@keyframes slideInFadeIn {
  0% {
    right: 0;
    opacity: 0; }
  100% {
    right: 15px;
    opacity: 1; } }

.uh-usp {
  top: 20px;
  right: 15px;
  font-size: 1.25rem;
  font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
  color: #42a5f5;
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  list-style: none;
  padding: 0 0 1rem 0;
  border: 1px solid #42a5f5;
  pointer-events: none;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
  -webkit-animation: 1s ease-out 1s 1 slideInFadeIn;
          animation: 1s ease-out 1s 1 slideInFadeIn; }
  .featured-hotels__promotion .uh-usp {
    top: auto;
    right: 0;
    bottom: 0; }
  @media screen and (max-width: 47.99em) {
    .hotel-hero__benefits .uh-usp {
      position: relative;
      top: auto;
      right: auto; } }
  @media screen and (max-width: 47.99em) {
    .uh-usp {
      position: relative;
      top: 0;
      bottom: auto;
      display: block;
      right: auto;
      width: 100%; } }

@media screen and (max-width: 47.99em) {
  .uh-usp--landing {
    position: absolute;
    bottom: 0;
    top: auto;
    left: 0;
    border-bottom: none; }
    .uh-usp--landing .uh-usp__item {
      width: 40%;
      float: left;
      padding-right: 0;
      padding-left: 5px; }
      .uh-usp--landing .uh-usp__item.uh-usp__item--title {
        width: 100%;
        padding-left: 10px;
        font-size: 1.4rem; }
      .uh-usp--landing .uh-usp__item:last-child {
        display: none; }
    .uh-usp--landing .uh-usp__item--express {
      width: 60%; } }

@media screen and (min-width: 48em) {
  .uh-usp--landing {
    top: auto;
    bottom: 54px; } }

@media screen and (min-width: 48em) {
  .uh-usp-wrapper {
    position: relative; } }

.uh-usp__item {
  padding: 1rem 1rem 0 1rem; }

.uh-usp__item--title {
  padding: 1rem;
  background: #1565c0;
  color: #fff;
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.6rem; }

.uh-usp__small {
  font-family: "Campton-Light";
  display: block;
  padding-left: 22px; }

.uh-usp__item--express {
  color: #f04326; }

.uh-usp__icon {
  fill: #42a5f5;
  height: 18px;
  width: 18px;
  vertical-align: middle; }
  .uh-usp__item--express .uh-usp__icon {
    fill: #f04326; }

.room-results {
  margin-bottom: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.room-results__persuasion {
  margin-top: 13px;
  font-size: 1.25rem;
  color: #f04326; }

.room-results__table {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%; }

.room-results__header {
  display: none; }
  @media screen and (min-width: 48em) {
    .room-results__header {
      display: table-row; } }
  .room-results__header th {
    text-align: left;
    border: 1px solid #e4e4e4;
    background-color: #dbdbdb;
    padding: 0.5rem 1rem 0.2rem;
    font-family: "Campton-Book", Arial, helvetica, sans-serif;
    text-transform: uppercase;
    margin: 0; }
    .room-results__header th.title {
      width: 40%; }
    .room-results__header th.max_ppl {
      width: 10%; }
    .room-results__header th.price {
      width: 25%; }
    .room-results__header th.select {
      width: 25%; }

.room-results__occupants-info {
  background-color: #e7e7e7;
  text-align: right;
  margin: 0;
  padding: 0.5rem 1rem 0.2rem;
  width: 100%;
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  text-transform: uppercase; }
  .room-results__occupants-info .room {
    float: left; }

.room-result {
  font-size: 1.25rem;
  border: 1px solid #e4e4e4; }
  .room-result td {
    border-width: 0 0 0 1px; }
    .room-result td.title {
      padding: 1rem; }
      .room-result td.title img {
        display: block; }
    @media screen and (max-width: 47.99em) {
      .room-result td {
        display: block;
        float: left;
        border: none; }
        .room-result td.title {
          padding: 1rem 1rem 0 1rem;
          border-right: 1px solid #e4e4e4; }
        .room-result td.max_ppl {
          padding: 0 0 0 1rem; }
        .room-result td.price {
          width: 75%;
          float: right;
          padding: 0 1rem 0 0;
          border-right: 1px solid #e4e4e4; }
        .room-result td.select {
          width: 100%;
          padding: 0 1rem 1rem 1rem;
          border-right: 1px solid #e4e4e4; } }
  .room-result.selected {
    border-color: #00c853;
    background: #e7fbed; }
    @media screen and (max-width: 47.99em) {
      .room-result.selected td.title {
        border-top: 1px solid #00c853;
        border-right: 1px solid #00c853; } }
    @media screen and (min-width: 48em) {
      .room-result.selected td.title {
        border-top: 1px solid #00c853;
        border-left: 1px solid #00c853;
        border-bottom: 1px solid #00c853; } }
    @media screen and (min-width: 48em) {
      .room-result.selected td.max_ppl {
        border-top: 1px solid #00c853;
        border-bottom: 1px solid #00c853; } }
    @media screen and (max-width: 47.99em) {
      .room-result.selected td.price {
        border-right: 1px solid #00c853; } }
    @media screen and (min-width: 48em) {
      .room-result.selected td.price {
        border-top: 1px solid #00c853;
        border-bottom: 1px solid #00c853; } }
    .room-result.selected td.select {
      border-right: 1px solid #00c853; }
      @media screen and (min-width: 48em) {
        .room-result.selected td.select {
          border-top: 1px solid #00c853;
          border-bottom: 1px solid #00c853; } }

.room-result__img {
  position: relative;
  float: left;
  width: 25%; }

.room-result__img-icon {
  fill: #fff;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 5px;
  left: 5px; }
  .room-result__img a:hover .room-result__img-icon {
    fill: #42a5f5; }

.facilities-holder {
  display: none; }
  @media screen and (min-width: 48em) {
    .facilities-holder {
      display: block;
      width: 32%;
      float: right; } }

.hotel-overview__facilities-icon {
  fill: #fb8c00;
  width: 15px;
  height: 15px;
  position: absolute;
  left: 10px;
  top: 2px; }

@media screen and (min-width: 48em) {
  .hotels-rooms-photos {
    width: 66%;
    float: left; } }

.hotels-rooms-photos img {
  display: block; }

.room-result__info {
  width: 75%;
  padding: 0 1rem 1rem 1rem;
  float: left; }

.room-result__title {
  margin-bottom: 0; }

.room-highlight {
  color: #f04326; }

.room-result__facilities-title {
  position: relative;
  color: #42a5f5;
  padding-left: 10px; }
  .room-result__facilities-title:hover {
    color: #42a5f5; }
  .room-result__facilities-title::before {
    content: "";
    border: solid 5px transparent;
    border-left-color: #64b5f6;
    position: absolute;
    left: -3px;
    top: 0;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s; }
  .room-result__facilities-title.accordion__btn-active::before {
    left: 0;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }

.room-result__facilities-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 100%; }
  .room-result__facilities-list li {
    margin-bottom: 2px;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%; }
    .room-result__facilities-list li.facility-on {
      color: #fb8c00; }
    .room-result__facilities-list li.facility-off {
      color: #d4d4d4;
      text-decoration: line-through; }

.room-result__sleeps {
  text-align: center; }
  .room-result__sleeps .sleeps-number {
    content: "Max ";
    font-size: 1.25rem; }

.room-result__sleeps-icon {
  width: 20px;
  height: 20px;
  margin: auto;
  display: inline-block;
  vertical-align: sub; }
  @media screen and (min-width: 48em) {
    .room-result__sleeps-icon {
      display: block; } }

.room-result__price {
  text-align: right;
  padding: 1rem; }
  .room-result__price .price-first {
    margin-bottom: 0;
    line-height: 1; }
    .room-result__price .price-first .price-prefix {
      vertical-align: top; }
    .room-result__price .price-first .price {
      font-family: "Campton-Book";
      font-size: 2.6rem;
      color: #00c853; }
      .room-result__price .price-first .price .span-number {
        line-height: 0.9; }
  .room-result__price .price-suffix {
    margin-bottom: 0; }
  .room-result__price .hotel-room-tax {
    margin: 0; }

.room-result__select {
  display: table-cell !important;
  padding: 1rem; }
  .room-result__select .btn {
    width: 100%; }

.room-result__call {
  text-align: center;
  font-style: italic;
  margin: 0; }
  @media screen and (max-width: 47.99em) {
    .room-result__call {
      padding-top: 1rem;
      border-top: 1px solid #e4e4e4; } }

.room-result__call-number {
  font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
  font-size: 1.6rem;
  text-align: center;
  margin: 0; }

.room-result__call-icon {
  width: 13px;
  height: 13px;
  display: inline-block;
  fill: #656565; }

.room-result__call-persuasion {
  font-style: italic;
  color: #f04326;
  text-align: center;
  margin: 0; }

.hotel-overview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 100%;
  margin-bottom: 3rem; }

.hotel-overview__content {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%; }
  @media screen and (min-width: 48em) {
    .hotel-overview__content {
      -ms-flex-preferred-size: 66%;
          flex-basis: 66%;
      max-width: 66%;
      padding-right: 1.5rem; } }

.hotel-overview__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 100%;
  margin-bottom: 1.5rem; }

.hotel-overview__item-subheader {
  -ms-flex-preferred-size: 32%;
      flex-basis: 32%;
  margin-right: 2%;
  text-transform: uppercase; }
  .hotel-overview__item-subheader h3 {
    font-family: "Campton-Light", Arial, helvetica, sans-serif;
    font-size: 1.6rem; }

.hotel-overview__item-info {
  -ms-flex-preferred-size: 66%;
      flex-basis: 66%; }
  .hotel-overview__item-info ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px; }
    .hotel-overview__item-info ul li::before {
      background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
      background-position: 89.26355183014148% 86.98879584309542%;
      width: 12.54px;
      height: 12.82px;
      content: '';
      display: block;
      position: absolute;
      left: 0;
      top: 3px; }
    .hotel-overview__item-info ul li strong {
      font-family: "Campton-Semibold", Arial, helvetica, sans-serif; }

.hotel-overview__item-address p {
  margin-bottom: 0; }

.hotel-overview__content-secondary {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%; }
  @media screen and (min-width: 48em) {
    .hotel-overview__content-secondary {
      -ms-flex-preferred-size: 34%;
          flex-basis: 34%;
      max-width: 34%; } }

.hotel-overview__wwli {
  display: block;
  background: #e3f2fd;
  margin-bottom: 1.5rem;
  padding: 1.5rem; }

.hotel-overview__wwli-title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.4rem;
  color: #1565c0;
  border-bottom: 1px solid #e4e4e4; }
  @media screen and (min-width: 48em) {
    .hotel-overview__wwli-title {
      font-size: 1.6rem; } }

.hotel-overview__wwli-info {
  color: #1565c0; }

.hotel-overview__facilities {
  display: block;
  border: 1px solid #e4e4e4;
  margin-bottom: 1.5rem; }

.hotel-overview__facilities-title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.4rem;
  padding: 1rem;
  border-bottom: 1px solid #e4e4e4; }
  @media screen and (min-width: 48em) {
    .hotel-overview__facilities-title {
      font-size: 1.6rem; } }

.hotel-overview__facilities-list {
  color: #fb8c00; }

.hotel-overview__facilities-item {
  padding-left: 30px;
  margin-bottom: 3px;
  position: relative; }
  .hotel-overview__facilities-item.facility-on {
    color: #fb8c00; }
  .hotel-overview__facilities-item.facility-off {
    color: #d4d4d4;
    text-decoration: line-through; }
  .facilities-holder .hotel-overview__facilities-item {
    padding-left: 0; }

.hotel-overview__tips {
  display: block;
  background: #e3f2fd;
  margin-bottom: 1.5rem;
  padding: 1.5rem; }

.hotel-overview__tips-title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.4rem;
  color: #1565c0;
  border-bottom: 1px solid #e4e4e4; }
  @media screen and (min-width: 48em) {
    .hotel-overview__tips-title {
      font-size: 1.6rem; } }

.hotel-overview__tips-info {
  color: #1565c0; }

.hotel-overview__tips-location {
  color: #1565c0;
  font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
  margin-bottom: 0; }

.hotels-errata__wrapper {
  position: relative;
  display: block;
  background: #f4f4f4;
  margin-bottom: 1.5rem;
  padding: 1.5rem 1.5rem 1.5rem 6rem; }
  .hotels-errata__wrapper p {
    margin-bottom: 5px; }

.hotels-errata__icon {
  position: absolute;
  top: 13px;
  left: 12px;
  width: 35px;
  height: 35px;
  fill: #656565; }

/* ------------------------------------*\
    $HOTEL STEPBAR
\*------------------------------------ */
.hotel-stepbar {
  display: none;
  font-size: 1.25rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 5px;
  background-color: #fff;
  width: 100%;
  border-bottom: 1px solid #e4e4e4;
  border-top: 1px solid #e4e4e4;
  position: relative; }
  @media screen and (max-width: 35.99em) {
    .hotel-stepbar {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }

.hotel-stepbar__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%; }
  .hotel-stepbar__step::after {
    content: " ";
    position: absolute;
    width: calc(50% - 46px);
    height: 4px;
    left: 50%;
    background-color: #00c853;
    top: 48px; }
  .hotel-stepbar__step:first-child::after {
    left: 46px; }
  .hotel-stepbar__step:last-child::after {
    display: none; }
  .hotel-stepbar__step p {
    width: 100%;
    color: #d4d4d4; }
  .hotel-stepbar__step .current-dot {
    width: 6px;
    height: 6px;
    background-color: #00c853;
    border: 0;
    border-radius: 100%;
    margin: 2px auto;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    padding: 0; }
  .hotel-stepbar__step .flash {
    -webkit-animation-name: flash;
    animation-name: flash; }
  .hotel-stepbar__step .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both; }
  .hotel-stepbar__step.is-current {
    font-weight: bold;
    opacity: 1; }
    .hotel-stepbar__step.is-current p {
      color: #656565;
      font-family: "Campton-Book", Arial, helvetica, sans-serif; }
    .hotel-stepbar__step.is-current span {
      border-color: #00c853; }
  .hotel-stepbar__step.is-next::after, .hotel-stepbar__step.is-current::after {
    border-bottom: 4px dotted #bdbdbd;
    height: 0;
    background-color: #fff; }
  .hotel-stepbar__step.is-done span {
    border-color: #00c853;
    background-color: #00c853;
    color: #fff;
    font-size: 0.8rem; }
  .hotel-stepbar__step.is-done::after {
    border-bottom: 4px solid #00c853;
    height: 0;
    background-color: #fff; }

.hotel__step_title--left {
  text-align: left; }

.hotel__step_title--center {
  text-align: center; }

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

.hotel-step__inner {
  width: 18px;
  height: 18px;
  display: block;
  margin: 3px auto;
  border-radius: 100%;
  background-color: #fff;
  border: 4px solid #f4f4f4;
  color: #00c853;
  text-align: center;
  font-weight: bold;
  position: relative;
  z-index: 1;
  line-height: 12px; }

.hotel__step_left_margin {
  margin-left: 22px; }

.hotel__step_right_margin {
  margin-right: 22px; }

@-webkit-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1; }
  25%,
  75% {
    opacity: 0; } }

@keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1; }
  25%,
  75% {
    opacity: 0; } }

/* ------------------------------------*\
    $COUNTDOWN
\*------------------------------------ */
.countdown--hero {
  width: 100%;
  background: rgba(240, 67, 38, 0.8);
  text-align: center;
  margin-top: -5px; }
  @media screen and (min-width: 48em) {
    .countdown--hero {
      bottom: 0;
      position: absolute; } }

.countdown__title {
  margin: 0;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  display: inline-block;
  text-transform: uppercase;
  font-size: 1.2rem; }
  @media screen and (min-width: 48em) {
    .countdown__title {
      font-size: 1.4rem;
      letter-spacing: 0.35rem;
      padding-right: 2rem; } }
  .mini-tickets__countdown .countdown__title,
  .ticket-description__offer .countdown__title {
    display: none; }

.countdown__list {
  text-align: center;
  color: #f04326; }
  .countdown--hero .countdown__list {
    display: inline-block;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); }
    @media screen and (min-width: 48em) {
      .countdown--hero .countdown__list {
        padding: 5px 0; } }

.countdown__item {
  font-family: "Campton-SemiBold";
  display: inline-block;
  font-size: 1.5rem;
  margin: 0 3px;
  text-align: center; }
  @media screen and (min-width: 48em) {
    .countdown__item {
      text-align: left; } }
  .countdown--hero .countdown__item {
    margin: 0;
    vertical-align: bottom; }
    @media screen and (min-width: 48em) {
      .countdown--hero .countdown__item {
        font-size: 2.5rem;
        line-height: 1;
        margin: 0 3px; } }
    .countdown--hero .countdown__item b {
      min-width: 2.2rem;
      display: inline-block;
      font-weight: normal;
      letter-spacing: 0.2rem; }
      @media screen and (min-width: 48em) {
        .countdown--hero .countdown__item b {
          min-width: 3.7rem; } }

.countdown__unit {
  font-family: "Campton-Light";
  display: block;
  text-transform: uppercase;
  font-size: 1rem; }
  .countdown--hero .countdown__unit {
    display: inline-block;
    padding-left: 2px; }
    @media screen and (min-width: 48em) {
      .countdown--hero .countdown__unit {
        text-align: right; } }

/* ------------------------------------*\
    $TWITTER
\*------------------------------------ */
.twitter-block {
  padding-bottom: 10px;
  margin-bottom: 3rem; }
  @media screen and (min-width: 48em) {
    .twitter-block {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 43%;
              flex: 0 0 43%; } }

.twitter-block__content {
  background-color: #fff;
  border: 1px solid #e4e4e4;
  padding: 0 10px; }

.twitter-block__header {
  border-bottom: 1px solid #e4e4e4;
  margin: 0;
  padding: 10px 0; }

.twitter-block__tweets {
  font-size: 1.35rem; }

.twitter-block__tweet {
  border-bottom: 1px solid #e4e4e4;
  padding: 10px 0; }

.twitter-block__text {
  margin-bottom: 0; }

.twitter-block__date-time {
  font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
  margin-bottom: 0; }

.twitter-block__footer {
  margin: 1rem 0; }

/* ------------------------------------*\
    $COMBO FILTERS
\*------------------------------------ */
.combo-title {
  text-align: center;
  margin-bottom: 2rem; }
  @media screen and (min-width: 48em) {
    .combo-title {
      text-align: left;
      margin-bottom: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; } }

.combo-video-link {
  border: 2px solid #42a5f5;
  border-radius: 2px;
  padding: 0.3rem 0.7rem;
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0; }
  .combo-video-link::after {
    background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
    background-position: 80.94965675057209% 76.99510977005514%;
    width: 11.2px;
    height: 10.01px;
    content: '';
    display: inline-block;
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    padding-left: 1rem; }
  .combo-video-link:hover {
    -webkit-box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.1);
            box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.1); }

.combo-filter {
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  background: #e3f2fd;
  padding: 1rem;
  margin-bottom: 4rem;
  position: relative; }
  .combo-filter::after {
    content: '';
    display: block;
    position: absolute;
    height: 20px;
    width: 20px;
    bottom: -10px;
    left: 50%;
    margin-left: -10px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    background: #e3f2fd;
    border: 1px solid #e4e4e4;
    border-width: 0 1px 1px 0; }

.combo-filter__close {
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  height: 16px;
  width: 16px;
  padding: 2px;
  border: none;
  background: none; }
  .combo-filter__close::before, .combo-filter__close::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 5px;
    height: 20px;
    width: 4px;
    background: #42a5f5;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); }
  .combo-filter__close::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg); }
  .combo-filter__close:hover, .combo-filter__close:focus {
    cursor: pointer; }
    .combo-filter__close:hover::before, .combo-filter__close:hover::after, .combo-filter__close:focus::before, .combo-filter__close:focus::after {
      background: #64b5f6; }

.combo-filter__title {
  text-align: center;
  font-size: 1.8rem;
  padding-right: 3rem; }
  @media screen and (min-width: 48em) {
    .combo-filter__title {
      padding-right: 0; } }

.combo-filter__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.combo-filter__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  margin-bottom: 1rem; }
  @media screen and (min-width: 48em) {
    .combo-filter__item {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 49%;
              flex: 0 0 49%; } }
  @media screen and (min-width: 64em) {
    .combo-filter__item {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 24.2%;
              flex: 0 0 24.2%;
      margin: 0; } }

.combo-filter__input {
  display: none; }

.combo-filter__label {
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  background: #fff;
  color: #42a5f5;
  display: block;
  height: 100%;
  padding: 0.8rem;
  cursor: pointer;
  text-align: center;
  font-size: 1.3rem; }
  @media screen and (min-width: 64em) {
    .combo-filter__label {
      padding: 1rem 1rem 0;
      font-size: 1.5rem; } }
  .combo-filter__input:checked + .combo-filter__label {
    border: 1px solid #42a5f5; }

.combo-filter__label-text {
  position: relative;
  padding-left: 20px;
  text-align: center; }
  .combo-filter__label-text::before {
    content: "";
    width: 14px;
    height: 14px;
    border: solid 1px #e4e4e4;
    border-radius: 2px;
    background-color: #fff;
    position: absolute;
    top: -2px;
    left: 0; }
    @media screen and (min-width: 64em) {
      .combo-filter__label-text::before {
        top: -1px; } }
    .combo-filter__input:checked + .combo-filter__label .combo-filter__label-text::before {
      background: #42a5f5;
      border-color: #42a5f5; }
  .combo-filter__label-text::after {
    content: "";
    width: 4px;
    height: 8px;
    -webkit-transform: rotate(40deg);
            transform: rotate(40deg);
    border: solid 1px #e4e4e4;
    border-width: 0 2px 2px 0;
    border-radius: 2px;
    position: absolute;
    top: 0;
    left: 5px;
    display: none; }
    @media screen and (min-width: 64em) {
      .combo-filter__label-text::after {
        top: 1px; } }
    .combo-filter__label:hover .combo-filter__label-text::after {
      display: block; }
    .combo-filter__input:checked + .combo-filter__label .combo-filter__label-text::after {
      display: block;
      border-color: #fff; }

.combo-filter__label-logos {
  display: none; }
  @media screen and (min-width: 64em) {
    .combo-filter__label-logos {
      display: block; } }
  .combo-filter__label-logos svg {
    display: inline-block;
    width: 68px;
    height: 38px;
    margin: 0.4rem 0.4rem 0; }
    .combo-filter__label-logos svg:first-child {
      display: block;
      margin: auto; }
    .combo-filter__label-logos svg:only-child {
      margin: 2rem auto 1rem;
      width: 100px;
      height: 50px; }
  .combo-filter__label-logos .icon--uor-usf {
    display: block;
    margin: 2px auto; }
  .combo-filter__label-logos span {
    display: inline-block;
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    margin: 2px 10px; }

.combo-filter__btn {
  position: relative;
  z-index: 1; }

/* ------------------------------------*\
    $BROCHURE
\*------------------------------------ */
.brochure {
  margin: 3rem 0; }
  @media screen and (min-width: 48em) {
    .brochure {
      margin: 3rem 0 1rem;
      padding-top: 2rem;
      padding-bottom: 2rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      .aside-block .brochure {
        padding: 0;
        margin: 0; }
        .aside-block .brochure .brochure__item:last-child {
          margin: 0; } }

.brochure--hotels-landing {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  background-color: #f4f4f4; }
  @media screen and (max-width: 63.99em) {
    .brochure--hotels-landing {
      margin-top: 0;
      margin-bottom: 1rem;
      padding: 3rem 0 2rem; } }
  @media screen and (min-width: 64em) {
    .brochure--hotels-landing {
      margin-top: 0; } }

.brochure__item {
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  padding: 1rem 1rem 1rem 9.5rem;
  margin-bottom: 1rem;
  position: relative;
  min-height: 85px;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #fff; }
  @media screen and (min-width: 48em) {
    .brochure__item {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 32.5%;
              flex: 0 0 32.5%;
      min-width: 200px;
      margin-bottom: 0; }
      .aside-block .brochure__item {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        min-height: 78px;
        margin-bottom: 1rem; } }
  @media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
    .brochure__item {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 22%;
              flex: 0 0 22%; } }
  .brochure__item:hover {
    -webkit-box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.1);
            box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.1); }
  .aside-block .brochure__item {
    padding: 0.5rem 0.5rem 0.5rem 8.3rem; }

.brochure__img {
  width: auto;
  position: absolute;
  display: block;
  top: 0;
  left: 0; }
  .aside-block .brochure__img {
    -webkit-transform: scale(0.9) translate(-6%, -6%);
            transform: scale(0.9) translate(-6%, -6%); }

.brochure__title {
  font-family: "Campton-Light";
  margin: 0;
  text-transform: uppercase;
  font-size: 1.35rem; }
  @media screen and (min-width: 48em) and (max-width: 63.99em) {
    .brochure__title {
      font-size: 1.25rem; } }
  .aside-block .brochure__title {
    font-size: 1.3rem; }

.brochure__link::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.brochure__text {
  margin: 0;
  font-size: 1.25rem; }
  @media screen and (min-width: 64em) {
    .brochure__text {
      font-size: 1.35rem; } }
  .aside-block .brochure__text {
    font-size: 1.3rem; }

/* ------------------------------------*\
$BROCHURE PAGE
\*------------------------------------ */
.brochure-request {
  padding: 1.5rem;
  border: 1px solid #e4e4e4;
  margin-bottom: 3rem; }

.brochure-page__img {
  width: 150px;
  float: left;
  margin: 0 1.5rem 3rem 0; }

.brochure-page__subtitle {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.6rem; }
  @media screen and (min-width: 48em) {
    .brochure-page__subtitle {
      font-size: 1.8rem; } }

.brochure-page__btn {
  margin: 1.5rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto; }

.brochure-page__form-item {
  width: 100%; }

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 3; }

.modal__container {
  background-color: #fff;
  padding: 1.5rem 1rem 1.5rem 1.5rem;
  max-width: 100%;
  width: 96%;
  max-height: 81vh;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: 1rem; }
  @media screen and (min-width: 48em) {
    .modal__container {
      max-width: 768px;
      width: 768px;
      max-height: 90vh;
      -ms-flex-item-align: center;
          align-self: center; } }

@media screen and (min-width: 48em) {
  .modal__container--small {
    max-width: 400px;
    width: 400px; } }

.modal__container--large {
  max-width: none;
  width: 97%; }

.modal__header {
  padding-right: 3rem; }

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1.25;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.modal__close {
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  height: 16px;
  width: 16px;
  padding: 2px;
  border: none;
  background: none; }
  .modal__close::before, .modal__close::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 5px;
    height: 20px;
    width: 4px;
    background: #42a5f5;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); }
  .modal__close::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg); }
  .modal__close:hover, .modal__close:focus {
    cursor: pointer; }
    .modal__close:hover::before, .modal__close:hover::after, .modal__close:focus::before, .modal__close:focus::after {
      background: #64b5f6; }

.modal__content {
  margin-top: 2rem;
  max-height: 67vh;
  overflow-y: auto; }
  @media screen and (min-width: 48em) {
    .modal__content {
      max-height: 72vh; } }

.modal__content--map {
  margin-top: 0; }

/* *************************\
  Animation Styles
\************************* */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-webkit-keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@-webkit-keyframes slideIn {
  from {
    -webkit-transform: translateY(1%);
            transform: translateY(1%); }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@keyframes slideIn {
  from {
    -webkit-transform: translateY(1%);
            transform: translateY(1%); }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@-webkit-keyframes slideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%); } }

@keyframes slideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%); } }

.modal__container,
.modal__overlay {
  will-change: transform; }

.modal {
  display: none; }
  .modal.is-open {
    display: block; }
  .modal[aria-hidden="false"] .modal__overlay {
    -webkit-animation: fadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
            animation: fadeIn 0.3s cubic-bezier(0, 0, 0.2, 1); }
  .modal[aria-hidden="false"] .modal__container {
    -webkit-animation: slideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
            animation: slideIn 0.3s cubic-bezier(0, 0, 0.2, 1); }
  .modal[aria-hidden="true"] .modal__overlay {
    -webkit-animation: fadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
            animation: fadeOut 0.3s cubic-bezier(0, 0, 0.2, 1); }
  .modal[aria-hidden="true"] .modal__container {
    -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
            animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1); }

/* ------------------------------------*\
    $FEEFO
\*------------------------------------ */
/* Feefo stars */
.feefo-stars {
  color: #d4d4d4;
  position: relative;
  display: inline-block;
  font-size: 1.7rem; }

.feefo-stars--large {
  font-size: 2.4rem; }

.feefo-stars__on {
  color: #ffde02;
  position: absolute;
  overflow: hidden;
  left: 0; }

/* Feefo summary */
.feefo-summary__blue-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #64b5f6;
  padding: 1rem 1rem 0.5rem;
  border-radius: 4px;
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  margin-bottom: 1.5rem; }

.feefo-summary__percentage {
  max-width: 50%;
  color: #fff;
  font-size: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  padding-right: 5px;
  margin: 0;
  line-height: 1; }

.feefo-summary__percentage-text {
  max-width: 50%;
  color: #fff;
  font-size: 1.3rem;
  margin: 0;
  line-height: 1.4;
  padding-left: 5px; }
  @media screen and (max-width: 47.99em) {
    .feefo-summary__percentage-text {
      margin-right: 5px; } }

.feefo-summary__rating-icon {
  width: 93px;
  height: 24px;
  margin: 3px 0 0 8px; }

.feefo-summary h3.feefo-summary__rating {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-weight: normal;
  font-size: 1.4rem;
  margin-bottom: 5px; }

.feefo-summary--breakdown {
  border: 1px solid #e4e4e4;
  background-color: #fff;
  padding: 1rem;
  margin-bottom: 1rem; }
  @media screen and (min-width: 64em) {
    .feefo-summary--breakdown {
      margin-bottom: 1.5rem; } }

/* Feefo reviews list */
.feefo-reviews__list {
  margin-bottom: 1rem; }
  .feefo-reviews__list .feefo-reviews__item {
    clear: both;
    background: #fff;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: solid 1px #e4e4e4;
    border-radius: 4px;
    position: relative; }
    .feefo-reviews__list .feefo-reviews__item::before {
      content: "";
      border: solid 6px transparent;
      border-left-color: #e4e4e4;
      border-top-color: #e4e4e4;
      position: absolute;
      bottom: -12px;
      left: 15px; }
    .feefo-reviews__list .feefo-reviews__item::after {
      content: "";
      border: solid 6px transparent;
      border-left-color: #fff;
      border-top-color: #fff;
      position: absolute;
      bottom: -10px;
      left: 16px; }
  .feefo-reviews__list .feefo-reviews__quote {
    padding: 0 0 0 24px;
    font-size: 1.4rem;
    font-family: "Campton-Book", Arial, helvetica, sans-serif;
    position: relative;
    font-weight: normal; }
    @media screen and (min-width: 64em) {
      .feefo-reviews__list .feefo-reviews__quote {
        font-size: 1.5rem; } }
    .feefo-reviews__list .feefo-reviews__quote::before {
      content: "\201C";
      position: absolute;
      color: #fb8c00;
      font-size: 4rem;
      line-height: 1;
      top: -1px;
      left: 0;
      font-family: TimesNewRoman, Times New Roman, Times, Baskerville, Georgia, serif; }
  .feefo-reviews__list .feefo-reviews__info {
    padding-left: 24px; }
  .feefo-reviews__list .feefo-reviews__text {
    margin-bottom: 0;
    font-size: 1.25rem; }
    .feefo-reviews__list .feefo-reviews__text strong {
      font-weight: normal;
      font-family: "Campton-Semibold", Arial, helvetica, sans-serif; }

/* Feefo snippet (home page/TPP) */
.feefo-review-snippet {
  width: 100%;
  margin-bottom: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.feefo-review-snippet__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #64b5f6;
  padding: 1rem;
  border-radius: 4px 4px 0 0;
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%; }
  @media screen and (min-width: 48em) {
    .feefo-review-snippet__rating {
      border-radius: 4px 0 0 4px;
      -webkit-box-flex: 25%;
          -ms-flex: 25%;
              flex: 25%; } }

.feefo-review-snippet__rating-percentage {
  max-width: 50%;
  color: #fff;
  font-size: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  padding-right: 5px;
  margin: 0;
  line-height: 1; }

.feefo-review-snippet__rating-text {
  max-width: 50%;
  color: #fff;
  font-size: 1.3rem;
  margin: 0;
  line-height: 1.4;
  padding-left: 5px; }

.feefo-review-snippet__rating-stars {
  max-width: 50%;
  color: #fff; }

.feefo-review-snippet__rating-icon {
  width: 93px;
  height: 24px;
  margin: 3px 0 0 8px; }

.feefo-review-snippet__review {
  clear: both;
  background: #fff;
  padding: 1rem;
  border: solid 1px #e4e4e4;
  position: relative;
  border-radius: 0 0 3px 3px;
  border-top: none;
  margin-bottom: 0;
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%; }
  @media screen and (min-width: 48em) {
    .feefo-review-snippet__review {
      border-radius: 0 3px 3px 0;
      border-left: none;
      border-top: 1px solid #e4e4e4;
      -webkit-box-flex: 75%;
          -ms-flex: 75%;
              flex: 75%; } }

.feefo-review-snippet__review--homepage {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%; }
  @media screen and (min-width: 48em) {
    .feefo-review-snippet__review--homepage {
      -webkit-box-flex: 50%;
          -ms-flex: 50%;
              flex: 50%; } }

.feefo-review-snippet__quote {
  padding: 0 0 0 24px;
  font-size: 1.4rem;
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  position: relative;
  font-weight: normal; }
  @media screen and (min-width: 64em) {
    .feefo-review-snippet__quote {
      font-size: 1.5rem; } }
  .feefo-review-snippet__quote::before {
    content: "\201C";
    position: absolute;
    color: #fb8c00;
    font-size: 4rem;
    line-height: 1;
    top: -1px;
    left: 0;
    font-family: TimesNewRoman, Times New Roman, Times, Baskerville, Georgia, serif; }

.feefo-review-snippet__info {
  padding-left: 24px; }

.feefo-review-snippet__text {
  margin-bottom: 0;
  font-size: 1.25rem; }
  .feefo-review-snippet__text strong {
    font-weight: normal;
    font-family: "Campton-Semibold", Arial, helvetica, sans-serif; }

.feefo-review-snippet__more-info {
  font-size: 1.25rem;
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  padding: 1rem; }
  @media screen and (min-width: 48em) {
    .feefo-review-snippet__more-info {
      padding: 1rem;
      -webkit-box-flex: 25%;
          -ms-flex: 25%;
              flex: 25%; } }

.feefo-review-snippet__attraction-count {
  color: #fff;
  margin: 0; }
  .feefo-review-snippet__attraction-count a {
    color: #fff;
    font-weight: bold; }

.feefo-review-snippet__text-icon {
  -ms-flex-line-pack: start;
      align-content: flex-start;
  height: 12px;
  width: 52px; }

.feefo-icon {
  width: 100%;
  height: 16px; }

.feefo-ticket-description__text {
  font-family: "Campton-Book"; }

.feefo-ticket-description__icon {
  width: 63px;
  height: 19px;
  vertical-align: text-bottom; }

.product-listing__page-title {
  margin-top: 2rem; }
  @media screen and (min-width: 64em) {
    .product-listing__page-title {
      margin-top: 3rem; } }

.product-listing {
  background: #fff;
  border: 1px solid #e4e4e4;
  padding: 1.5rem; }
  @media screen and (max-width: 35.99em) {
    .product-listing {
      border: none;
      padding: 0; } }

.product-listing__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem; }
  .product-listing__item:last-child {
    border: none;
    padding: 0;
    margin: 0; }

.product-listing__img {
  -webkit-box-flex: 30%;
      -ms-flex: 30%;
          flex: 30%; }

.product-listing__content {
  -webkit-box-flex: 70%;
      -ms-flex: 70%;
          flex: 70%;
  padding-left: 1.5rem; }

.product-listing__title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.8rem; }
  @media screen and (min-width: 48em) {
    .product-listing__title {
      font-size: 2.1rem; } }

@media screen and (max-width: 35.99em) {
  .product-listing__desc {
    display: none; } }

.shared-destinations__title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.4rem;
  border: 1px solid #e4e4e4;
  background: #1565c0;
  color: #fff;
  margin: 3.7rem 0 0;
  padding: 1rem 1rem 0.7rem; }
  @media screen and (min-width: 48em) {
    .shared-destinations__title {
      font-size: 1.6rem; } }

.shared-destinations__list {
  border: 1px solid #e4e4e4;
  border-top: none;
  padding: 1rem;
  margin-bottom: 1.5rem; }

.shared-destinations__item {
  font-size: 1.25rem; }

/* ------------------------------------*\
    $CART
\*------------------------------------ */
.cart {
  margin: 1.5rem 0 2rem;
  border: 1px solid #e4e4e4; }

.cart__header {
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #e4e4e4; }

.cart__title {
  margin: 0;
  line-height: 1; }

.cart__abta {
  height: 37px;
  width: 97px; }

.cart__empty {
  padding: 1rem; }

.cart__product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #e4e4e4; }

.cart__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 23%;
          flex: 0 0 23%;
  padding: 1rem; }
  @media screen and (min-width: 64em) {
    .cart__img {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 13%;
              flex: 0 0 13%; } }

.cart__tickets-wrapper {
  width: 100%; }

.cart__ticket {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 1rem 0;
  border-bottom: 1px solid #e4e4e4;
  position: relative; }
  @media screen and (min-width: 64em) {
    .cart__ticket {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; } }
  .cart__ticket:last-child {
    border-bottom: none; }

.cart__ticket-title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  font-size: 1.4rem;
  font-weight: normal;
  margin: 0;
  padding: 0 30px 10px 0; }
  @media screen and (min-width: 64em) {
    .cart__ticket-title {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 70%;
              flex: 0 0 70%;
      padding: 0; } }

.cart__input {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10%;
          flex: 0 0 10%; }
  .cart__input input {
    max-width: 50px; }

.cart__price {
  font-family: "Campton-SemiBold";
  color: #00c853; }

.cart__delete {
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  height: 16px;
  width: 16px;
  padding: 2px;
  border: none;
  background: none;
  margin-left: 0;
  height: 12px;
  width: 12px;
  right: 1rem; }
  .cart__delete::before, .cart__delete::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 5px;
    height: 20px;
    width: 4px;
    background: #42a5f5;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); }
  .cart__delete::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg); }
  .cart__delete:hover, .cart__delete:focus {
    cursor: pointer; }
    .cart__delete:hover::before, .cart__delete:hover::after, .cart__delete:focus::before, .cart__delete:focus::after {
      background: #64b5f6; }
  .cart__delete::before, .cart__delete::after {
    height: 14px;
    background: #d4d4d4; }
  .cart__delete:hover::before, .cart__delete:hover::after, .cart__delete:focus::before, .cart__delete:focus::after {
    background: #848484; }

.cart__freebies-heading {
  background-color: #f4f4f4;
  padding: 1rem;
  border-bottom: 1px solid #e4e4e4;
  font-size: 1.6rem;
  margin: 0;
  position: relative; }
  .cart__freebies-heading em {
    font-family: "Campton-SemiBold";
    color: #00c853;
    font-size: 1.4rem; }
  .cart__freebies-heading::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 17px;
    height: 10px;
    width: 10px;
    border: 2px solid #848484;
    border-width: 2px 2px 0 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg); }
    .cart__freebies--closed .cart__freebies-heading::after {
      top: 12px;
      -webkit-transform: rotate(135deg);
              transform: rotate(135deg); }
    @media screen and (min-width: 64em) {
      .cart__freebies-heading::after {
        display: none; } }

.cart__freebies-item {
  padding: 1rem 1rem 0 2.5rem;
  margin: 0;
  position: relative; }
  .cart__freebies-item:last-child {
    margin-bottom: 1rem; }
  .cart__freebies-item::before {
    background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
    background-position: 46.66311138198995% 43.22132097334878%;
    width: 9.92px;
    height: 12px;
    content: '';
    display: block;
    position: absolute;
    left: 10px;
    top: 11px;
    -webkit-transform: scale(1.3);
            transform: scale(1.3); }
  .cart__freebies-item strong {
    font-family: "Campton-Book";
    font-weight: 400;
    color: #00c853;
    font-size: 1.5rem; }
  @media screen and (max-width: 63.99em) {
    .cart__freebies--closed .cart__freebies-item {
      display: none; } }

.cart__subtotal {
  background-color: #f4f4f4;
  padding: 1rem;
  border-bottom: 1px solid #e4e4e4;
  border-top: 1px solid #e4e4e4; }

.cart__subtotal-text {
  width: 83%;
  padding-right: 0.5rem;
  display: inline-block;
  text-align: right;
  font-size: 1.25rem; }

.cart__subtotal-price {
  font-family: "Campton-SemiBold";
  color: #00c853; }

.cart__footer {
  padding: 1rem 1rem 0; }
  @media screen and (min-width: 48em) {
    .cart__footer {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }
  @media screen and (max-width: 63.99em) {
    .cart__footer a {
      width: 100%; } }

.cart-summary {
  margin: 1.5rem 0 2rem; }

.side-box {
  margin-bottom: 2rem;
  border: 1px solid #e4e4e4;
  display: none; }
  @media screen and (min-width: 64em) {
    .side-box {
      display: block; } }

.side-box__heading {
  background-color: #f4f4f4;
  padding: 1rem;
  font-size: 1.6rem;
  margin: 0; }

.cart-summary__item {
  padding: 1rem 1rem 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.cart-summary__item--subtotal {
  border-top: 1px solid #e4e4e4;
  margin-top: 1rem; }

.cart-summary__price {
  font-family: "Campton-SemiBold";
  color: #00c853; }

.cart-summary__footer {
  padding: 1rem; }

/* ------------------------------------*\
    $TICKET-DESCRIPTION
\*------------------------------------ */
.ticket-description {
  margin: 2rem 0; }
  @media screen and (min-width: 48em) {
    .ticket-description::after {
      content: "";
      display: table;
      clear: both; } }

.ticket-description__header {
  position: relative; }
  @media screen and (min-width: 48em) {
    .ticket-description__header {
      width: 58%;
      float: left; } }
  @media screen and (min-width: 64em) {
    .ticket-description__header {
      width: 66%; } }

.ticket-form {
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 1rem;
  margin-bottom: 1rem; }
  .ticket-form::after {
    content: "";
    display: table;
    clear: both; }
  @media screen and (min-width: 48em) {
    .ticket-form {
      margin-top: 1rem;
      width: 40%;
      float: right;
      background-color: #f4f4f4;
      padding: 1.2rem;
      position: relative;
      border-bottom: none; } }
  @media screen and (min-width: 64em) {
    .ticket-form {
      width: 33%;
      padding: 2rem; } }

.ticket-form__tag {
  font-family: "Campton-SemiBold";
  position: absolute;
  z-index: 1;
  padding: 7px 10px;
  top: 1rem;
  right: 1rem;
  color: #fff;
  background: #f04326;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 1.2rem; }
  @media screen and (min-width: 48em) {
    .ticket-form__tag {
      padding: 4px 10px 2px 10px;
      top: -1.5rem;
      right: -0.5rem;
      border-radius: 4px 4px 0 4px;
      font-size: 1rem; } }
  @media screen and (min-width: 48em) {
    .ticket-form__tag::after {
      content: '';
      border: solid 3px transparent;
      border-top-color: #d42b0f;
      border-left-color: #d42b0f;
      position: absolute;
      bottom: -6px;
      right: 0; } }

.ticket-form__tag--black-november {
  background: #000; }
  @media screen and (min-width: 48em) {
    .ticket-form__tag--black-november::after {
      border-top-color: #333;
      border-left-color: #333; } }

.ticket-form__years {
  margin-bottom: 1.5rem; }
  @media screen and (min-width: 48em) {
    .ticket-form__years {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }

.ticket-form__years-label {
  margin-right: auto;
  font-size: 1.5rem; }

.year {
  display: inline-block;
  width: 50%;
  margin-bottom: 0.5rem; }
  @media screen and (min-width: 48em) {
    .year {
      width: auto; } }

.year__input {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px); }

.year__label {
  position: relative;
  font-size: 1.4rem;
  padding: 11px;
  border: 1px solid #e4e4e4;
  text-align: center; }
  @media screen and (min-width: 48em) {
    .year__label {
      padding: 0 0 0 25px;
      margin: 0 0 0 10px;
      border: none;
      text-align: left; } }
  @media screen and (min-width: 48em) {
    .year__label::before {
      content: "";
      width: 20px;
      height: 20px;
      border: solid 1px #d4d4d4;
      border-radius: 50%;
      background-color: #fff;
      position: absolute;
      top: -3px;
      left: -5px; }
    .year__label::after {
      content: "";
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background-color: #fff;
      position: absolute;
      top: 0;
      left: -2px; } }
  .year__label:hover::after {
    background: #d4d4d4; }
  @media screen and (max-width: 47.99em) {
    input:checked + .year__label {
      border: 1px solid #00c853;
      background: #e7fbed; }
      input:checked + .year__label::before {
        background: #00c853;
        content: "";
        width: 20px;
        height: 20px;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        right: 10px;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%); }
      input:checked + .year__label::after {
        background: transparent;
        content: "";
        width: 3px;
        height: 8px;
        border-radius: 0;
        position: absolute;
        border: 3px solid #fff;
        border-left: none;
        border-top: none;
        top: 50%;
        right: 17px;
        -webkit-transform: translateY(-55%) rotate(45deg);
                transform: translateY(-55%) rotate(45deg); } }
  @media screen and (min-width: 48em) {
    input:checked + .year__label::after {
      background: #00c853; } }

.ticket-form__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.time__label {
  font-size: 1.5rem; }

.time__input {
  margin-left: auto;
  border-radius: 0;
  padding: 5px 30px 5px 5px; }

.ticket {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 1rem;
  padding-bottom: 1rem; }
  .ticket:last-of-type {
    border-bottom: none; }

.ticket__label {
  font-size: 1.5rem; }

.ticket__title {
  display: block; }

.ticket__price {
  font-family: "Campton-SemiBold";
  font-size: 1.6rem;
  color: #00c853; }

.ticket__rrp {
  font-size: 1.1rem;
  text-decoration: line-through; }

.ticket__saving {
  font-family: "Campton-SemiBold";
  color: #fff;
  background: #e50650;
  padding: 5px 10px 5px 10px;
  border-radius: 10px;
  font-size: 1rem; }

.ticket__amount {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }
  @media screen and (min-width: 48em) {
    .ticket__amount {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 50px;
              flex: 0 0 50px; } }

.ticket__qty {
  border-radius: 0;
  padding: 5px 30px 5px 5px; }
  @media screen and (max-width: 47.99em) {
    .ticket__qty {
      pointer-events: none;
      border: none;
      padding: 5px 5px 5px 15px;
      background-image: none;
      font-size: 1.8rem;
      outline: none; } }

.ticket__amount-prev,
.ticket__amount-next {
  font-family: "Campton-Light";
  -webkit-appearance: none;
  background: #fff;
  border: 1px solid #00c853;
  color: #00c853;
  border-radius: 50%;
  height: 45px;
  width: 45px;
  font-size: 3rem;
  line-height: 27px;
  vertical-align: top; }
  @media screen and (min-width: 48em) {
    .ticket__amount-prev,
    .ticket__amount-next {
      display: none; } }

.message {
  font-size: 1.25rem;
  font-style: italic;
  float: right;
  border: 1px solid #00c853;
  color: #00c853;
  background: #fff;
  padding: 5px 10px 5px;
  margin: 10px 0 0 0;
  position: relative;
  border-radius: 2px; }
  .message::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 10px;
    height: 10px;
    width: 10px;
    background: #fff;
    border: 1px solid #00c853;
    border-width: 1px 1px 0 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg); }
  .message .message__details {
    display: none;
    position: absolute;
    background: #00c853;
    color: #fff;
    padding: 1rem;
    left: 0;
    top: 100%;
    margin-top: 1rem;
    z-index: 3; }
    .message .message__details::before {
      content: '';
      position: absolute;
      top: -5px;
      right: 10px;
      height: 10px;
      width: 10px;
      background: #00c853;
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg); }
  .message:hover .message__details {
    display: block; }

.message--mini-tickets {
  text-align: center;
  margin: 10px auto 0;
  float: none;
  display: inline-block;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  z-index: 1; }
  .message--mini-tickets::before {
    display: none; }
  .message--mini-tickets .message__details--mini-tickets {
    text-align: center;
    bottom: 100%;
    top: auto;
    margin: 0 0 1rem; }
    .message--mini-tickets .message__details--mini-tickets::before {
      top: auto;
      bottom: -5px; }

.message__icon {
  display: inline-block;
  height: 17px;
  width: 17px;
  fill: #00c853;
  vertical-align: text-bottom;
  margin-right: 5px; }

@media screen and (min-width: 48em) {
  .ticket-description__footer {
    width: 58%;
    float: left; } }

@media screen and (min-width: 64em) {
  .ticket-description__footer {
    width: 66%; } }

.ticket-description__offer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #e4e4e4;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1rem; }
  @media screen and (min-width: 48em) {
    .ticket-description__offer {
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      border-top: 1px solid #e4e4e4; } }
  .ticket-description__offer .countdown {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding-left: 110px;
    margin-top: 10px; }
    @media screen and (min-width: 48em) {
      .ticket-description__offer .countdown {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
        padding-left: 0;
        margin: 3px 0 0; } }
  .ticket-description__offer .countdown__list {
    text-align: left; }
    @media screen and (min-width: 48em) {
      .ticket-description__offer .countdown__list {
        text-align: center; } }

.ticket-description__offer-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.ticket-description__offer-img {
  width: auto;
  max-width: 100px;
  margin: -5px 0 -1px; }

.ticket-description__offer-text {
  margin: 0 0 0 10px; }

.ticket-description__details {
  margin-bottom: 3rem; }
  .ticket-description__details li {
    line-height: 1.2;
    padding-left: 20px;
    margin-bottom: 1rem;
    position: relative; }
    .ticket-description__details li::before {
      background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
      background-position: 19.65648854961832% 18.948584633160024%;
      width: 12px;
      height: 9.5px;
      content: '';
      display: block;
      position: absolute;
      left: 0;
      top: 3px; }

.freebies__title {
  font-size: 1.8rem; }
  .freebies__title em {
    font-family: "Campton-SemiBold";
    color: #00c853;
    font-size: 1.35rem; }

.freebies__item {
  padding-left: 20px;
  margin-bottom: 1rem;
  position: relative; }
  .freebies__item::before {
    background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
    background-position: 46.66311138198995% 43.22132097334878%;
    width: 9.92px;
    height: 12px;
    content: '';
    display: block;
    position: absolute;
    left: 5px;
    top: 1px;
    -webkit-transform: scale(1.3);
            transform: scale(1.3); }
  .freebies__item a {
    color: #656565; }
    .freebies__item a:hover, .freebies__item a:focus {
      color: #64b5f6; }

.freebies__item--featured {
  font-family: "Campton-Book";
  font-weight: bold; }

.freebies__free {
  font-family: "Campton-Book";
  text-transform: uppercase;
  color: #00c853; }

/* ------------------------------------*\
    $MAGIC YOUR WAY TICKETS
\*------------------------------------ */
.ticket-description-myw {
  margin: 2rem 0; }
  @media screen and (min-width: 48em) {
    .ticket-description-myw::after {
      content: "";
      display: table;
      clear: both; } }

.ticket-description-myw__footer .loading {
  min-height: 20px; }

.ticket-description-myw__ticket-info {
  border-bottom: solid 2px #f4f4f4;
  margin-bottom: 1rem; }
  .ticket-description-myw__ticket-info .ticket-description-myw__ticket-image {
    width: 100%; }
    .ticket-description-myw__ticket-info .ticket-description-myw__ticket-image img {
      width: 100%; }
  .ticket-description-myw__ticket-info .ticket-description-myw__includes {
    display: none; }
    @media screen and (min-width: 64em) {
      .ticket-description-myw__ticket-info .ticket-description-myw__includes {
        border-top: solid 2px #f4f4f4;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; } }
  .ticket-description-myw__ticket-info .ticket-description-myw__details {
    display: none; }
    @media screen and (min-width: 64em) {
      .ticket-description-myw__ticket-info .ticket-description-myw__details {
        display: block; } }
  .ticket-description-myw__ticket-info h2 {
    font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    margin: 1rem 1.5rem 1rem 0;
    padding: 0; }

ul.ticket-description-myw__content-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 1rem 0;
  padding: 0; }
  ul.ticket-description-myw__content-list li {
    padding-left: 25px;
    margin-bottom: 0;
    position: relative;
    margin-right: 1.5rem; }
    ul.ticket-description-myw__content-list li::before {
      background-image: none; }
    ul.ticket-description-myw__content-list li .ticket-description-myw__content-list-bullet {
      width: 20px;
      height: 20px;
      position: absolute;
      left: 0;
      top: 0;
      fill: #42a5f5; }
      ul.ticket-description-myw__content-list li .ticket-description-myw__content-list-bullet path {
        fill: #42a5f5; }

.magic-your-way-tickets {
  width: 100%;
  padding-top: 1rem; }

.magic-your-way-tickets__step {
  clear: both;
  margin-bottom: 1.5rem; }
  .magic-your-way-tickets__step::after {
    content: "";
    display: table;
    clear: both; }
  .magic-your-way-tickets__step h2 {
    font-family: "Campton-Book", Arial, helvetica, sans-serif;
    font-size: 1.8rem; }
    @media screen and (min-width: 48em) {
      .magic-your-way-tickets__step h2 {
        font-size: 2.1rem; } }
    .magic-your-way-tickets__step h2 label {
      font-family: "Campton-Book", Arial, helvetica, sans-serif;
      font-size: 1.8rem;
      margin: 0; }
      @media screen and (min-width: 48em) {
        .magic-your-way-tickets__step h2 label {
          font-size: 2.1rem; } }
    .magic-your-way-tickets__step h2 small {
      font-size: 1.25rem;
      font-style: italic;
      font-family: "Campton-Light", Arial, helvetica, sans-serif; }

@media screen and (min-width: 64em) {
  .magic-your-way-tickets--step-people, .magic-your-way-tickets--step-date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; } }

@media screen and (min-width: 64em) {
  .magic-your-way-tickets__people, .magic-your-way-tickets__date-select {
    margin-left: auto; } }

.magic-your-way-tickets__people input.group-by-day-input, .magic-your-way-tickets__date-select input.group-by-day-input {
  background: #fff url(/themes/custom/atd/images/calendar-blue.svg) no-repeat 95%;
  background-size: 16px auto; }

@media screen and (min-width: 64em) {
  .magic-your-way-tickets__people {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; } }

.magic-your-way-tickets__person-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media screen and (min-width: 64em) {
    .magic-your-way-tickets__person-select {
      margin-left: 2rem; } }
  @media screen and (max-width: 63.99em) {
    .magic-your-way-tickets__person-select {
      margin-bottom: 1rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid #e4e4e4; } }
  .magic-your-way-tickets__person-select label {
    margin-right: 1rem; }
    .magic-your-way-tickets__person-select label small {
      font-size: 1.25rem;
      display: block; }
  @media screen and (max-width: 63.99em) {
    .magic-your-way-tickets__person-select .myw-ticket__qty {
      padding: 1.5rem; } }

@media screen and (max-width: 63.99em) {
  .magic-your-way-tickets__person-select:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0; } }

.magic-your-way-tickets__number-of-visits-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 1.5rem; }

.magic-your-way-tickets__number-of-visits-option {
  border: 1px solid #e4e4e4;
  padding: 2rem 1rem 2rem 1rem;
  background-color: #fff;
  text-align: center;
  position: relative;
  cursor: pointer; }
  .magic-your-way-tickets__number-of-visits-option.selected {
    border-color: #00c853;
    background-color: #eef9ef; }
    .magic-your-way-tickets__number-of-visits-option.selected::after {
      content: '';
      position: absolute;
      height: 30px;
      width: 30px;
      display: block;
      bottom: 0;
      left: 50%;
      border-radius: 50%;
      -webkit-transform: translate(-50%, 50%);
              transform: translate(-50%, 50%);
      background: #00c853 url(/themes/custom/atd/images/check-white.svg) no-repeat center;
      background-size: 16px auto; }

.magic-your-way-tickets__ticket-type-select {
  border: 1px solid #e4e4e4;
  padding: 1rem;
  background-color: #fff;
  width: 100%; }

.magic-your-way-tickets__visits-ribbon {
  font-family: "Campton-SemiBold";
  position: absolute;
  z-index: 1;
  padding: 4px 10px 2px 10px;
  border-radius: 4px 4px 0 4px;
  top: -1rem;
  right: -0.6rem;
  color: #fff;
  background: #f04326;
  text-transform: uppercase;
  font-size: 1rem; }
  .magic-your-way-tickets__visits-ribbon::after {
    content: '';
    border: solid 3px transparent;
    border-top-color: #d42b0f;
    border-left-color: #d42b0f;
    position: absolute;
    bottom: -6px;
    right: 0; }

.magic-your-way-tickets__visits-title {
  font-size: 1.6rem;
  font-family: "Campton-Light", Arial, helvetica, sans-serif;
  color: #656565;
  margin: 0; }
  .magic-your-way-tickets__visits-title strong {
    font-weight: normal;
    display: block; }
  .magic-your-way-tickets__visits-title em {
    font-size: 1.25rem;
    font-style: normal;
    display: block; }

.magic-your-way-tickets__visits-number {
  font-size: 2.6rem;
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  display: block;
  line-height: 1; }
  .selected .magic-your-way-tickets__visits-number {
    color: #00c853; }

.magic-your-way-tickets__visits-visits {
  font-size: 1.6rem;
  display: block; }
  .selected .magic-your-way-tickets__visits-visits {
    color: #00c853; }

.magic-your-way-tickets__visits-saving {
  font-size: 1.25rem;
  color: #f04326;
  font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
  display: block;
  text-transform: uppercase;
  margin: 0; }

.magic-your-way-tickets__visits-price {
  margin: 0; }

.magic-your-way-tickets__price-from {
  font-size: 1.25rem;
  display: block; }

.magic-your-way-tickets__price-number {
  font-size: 1.6rem;
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  display: block; }
  .selected .magic-your-way-tickets__price-number {
    color: #00c853; }

.magic-your-way-tickets__ticket-types {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.magic-your-way-tickets__ticket-type-title {
  font-size: 1.6rem;
  font-family: "Campton-Light", Arial, helvetica, sans-serif;
  color: #656565;
  margin: 0;
  display: block; }

.magic-your-way-tickets__ticket-type-park-number {
  font-size: 1.25rem;
  display: block;
  font-style: italic; }

.magic-your-way-tickets__ticket-type-day-number {
  font-size: 1.25rem;
  display: inline-block;
  background-color: #f4f4f4;
  padding: 2px 6px;
  border-radius: 2px; }

.magic-your-way-tickets__separator {
  width: 100%;
  position: relative;
  margin-bottom: 1rem; }
  .magic-your-way-tickets__separator::before {
    content: "";
    border: solid 6px transparent;
    border-right-color: #e4e4e4;
    position: absolute;
    top: -6px;
    right: -10px; }
  .magic-your-way-tickets__separator::after {
    content: "";
    border: solid 6px transparent;
    border-right-color: #fff;
    position: absolute;
    top: -6px;
    right: -11px; }
  .magic-your-way-tickets__separator hr {
    width: 100%;
    height: 1px;
    margin: 0;
    padding: 0;
    position: relative;
    background-color: #e4e4e4; }
    .magic-your-way-tickets__separator hr::before {
      content: "";
      border: solid 6px transparent;
      border-left-color: #e4e4e4;
      position: absolute;
      top: -6px;
      left: -10px; }
    .magic-your-way-tickets__separator hr::after {
      content: "";
      border: solid 6px transparent;
      border-left-color: #fff;
      position: absolute;
      top: -6px;
      left: -11px; }

.magic-your-way-tickets__ticket-type-prices {
  display: block; }
  .magic-your-way-tickets__ticket-type-prices p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .magic-your-way-tickets__ticket-type-prices .magic-your-way-tickets__ticket-type-saving {
    font-size: 1.25rem;
    color: #f04326;
    font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
    text-transform: uppercase;
    text-align: right;
    display: block;
    margin-bottom: 0; }

.magic-your-way-tickets__mini-ticket-type-prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%; }

.magic-your-way-tickets__mini-ticket-type {
  width: 100%;
  padding: 0 1rem; }

.magic-your-way-tickets--mini-ticket-adult {
  border-right: 1px solid #e4e4e4; }

.magic-your-way-tickets__mini-ticket-type-people {
  text-align: center;
  display: block;
  font-size: 1.4rem; }
  .magic-your-way-tickets__mini-ticket-type-people small {
    font-size: 1.25rem; }

.magic-your-way-tickets__mini-ticket-type-price {
  text-align: center;
  display: block;
  font-size: 1.6rem;
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  color: #00c853; }

.magic-your-way-tickets__ticket-type-adult {
  margin-bottom: 0; }

.magic-your-way-tickets__ticket-type-detail {
  font-size: 1.4rem; }
  .magic-your-way-tickets__ticket-type-detail small {
    font-size: 1.25rem; }

.magic-your-way-tickets__ticket-type-price {
  font-size: 1.4rem;
  margin-left: auto; }
  .magic-your-way-tickets__ticket-type-price sup {
    color: #00c853; }

.magic-your-way-tickets__ticket-type-price-number {
  font-size: 1.6rem;
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  color: #00c853; }

@media screen and (min-width: 48em) {
  .myw-popup-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; } }

@media screen and (min-width: 48em) {
  .myw-popup-content__column {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; } }

/* ------------------------------------*\
    $FLEXI
\*------------------------------------ */
@media screen and (min-width: 48em) {
  #modal-flexi .modal__container {
    max-width: 95%;
    width: 1024px; } }

.flexi {
  padding-right: 1rem; }
  @media screen and (min-width: 48em) {
    .flexi {
      margin: 2rem 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }

.flexi__option {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32.5%;
          flex: 0 0 32.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #e4e4e4;
  padding: 10px;
  margin-bottom: 2rem;
  position: relative; }
  @media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
    .flexi__option {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 29.5%;
              flex: 0 0 29.5%; } }
  .flexi__option:hover {
    cursor: pointer; }
  .flexi__option .flexi__icon {
    color: #ccc;
    position: relative;
    padding-left: 18px; }
  .flexi__option .flexi__icon--check {
    font-family: "Campton-Book";
    color: #656565;
    font-weight: 900; }
    .flexi__option .flexi__icon--check::before {
      background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
      background-position: 19.65648854961832% 18.948584633160024%;
      width: 12px;
      height: 9.5px;
      content: '';
      display: block;
      position: absolute;
      left: 0;
      top: 3px; }

.flexi__description {
  font-size: 1.2rem;
  margin: 0 0 10px 10px; }
  @media screen and (max-width: 47.99em) {
    .flexi__description {
      display: none;
      margin: 10px 0 10px 30px; }
      .flexi__description .flexi__icon {
        display: none; }
      .flexi__description .flexi__icon--check {
        display: block; } }
  .flexi__description li {
    margin-bottom: 5px; }
  .flexi__description b {
    font-family: "Campton-SemiBold"; }

.flexi__option--selected {
  position: relative;
  padding: 9px;
  border: 2px solid #00c853; }
  .flexi__option--selected::before {
    background: #00c853;
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    top: 20px;
    right: 10px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
    @media screen and (min-width: 48em) {
      .flexi__option--selected::before {
        bottom: -15px;
        top: auto;
        right: 50%;
        -webkit-transform: translateY(0) translateX(50%);
                transform: translateY(0) translateX(50%); } }
  .flexi__option--selected::after {
    background: transparent;
    content: "";
    width: 5px;
    height: 12px;
    border-radius: 0;
    position: absolute;
    border: 5px solid #fff;
    border-left: none;
    border-top: none;
    top: 19px;
    right: 20px;
    -webkit-transform: translateY(-55%) rotate(45deg);
            transform: translateY(-55%) rotate(45deg); }
    @media screen and (min-width: 48em) {
      .flexi__option--selected::after {
        bottom: -15px;
        top: auto;
        right: 50%;
        -webkit-transform: translateY(-53%) translateX(50%) rotate(45deg);
                transform: translateY(-53%) translateX(50%) rotate(45deg); } }
  .flexi__option--selected .flexi__description {
    display: block; }

.flexi__ribbon {
  font-family: "Campton-SemiBold";
  position: absolute;
  right: -7px;
  top: -7px;
  background: #f04326;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2;
  padding: 0.3rem 1rem;
  font-size: 1rem; }
  .flexi__ribbon::after {
    content: '';
    display: block;
    position: absolute;
    border: solid 3px transparent;
    border-top-color: #d42b0f;
    border-left-color: #d42b0f;
    top: 100%;
    right: 0; }

.flexi__title {
  font-family: "Campton-SemiBold";
  text-transform: uppercase; }
  @media screen and (min-width: 48em) {
    .flexi__title {
      text-align: center;
      padding: 10px 0; } }
  @media screen and (max-width: 47.99em) {
    .flexi__title::after {
      content: '';
      display: inline-block;
      width: 4px;
      height: 4px;
      border: solid 3px transparent;
      border-bottom-color: #656565;
      border-right-color: #656565;
      -webkit-transform: rotate(45deg) translate(2px, -8px);
              transform: rotate(45deg) translate(2px, -8px); }
      .flexi__option--selected .flexi__title::after {
        border-bottom-color: #00c853;
        border-right-color: #00c853;
        -webkit-transform: rotate(-135deg) translate(-5px, 3px);
                transform: rotate(-135deg) translate(-5px, 3px); } }
  @media screen and (max-width: 47.99em) {
    .flexi__option--selected .flexi__title {
      color: #00c853;
      font-style: italic; } }

.flexi__input {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px); }

.flexi__label {
  position: relative;
  font-size: 1.5rem;
  padding: 0 0 5px 20px;
  margin: 0 0 0 10px;
  display: inline-block; }
  .flexi__label::before {
    content: "";
    width: 15px;
    height: 15px;
    border: solid 1px #d4d4d4;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: -5px; }
  .flexi__label::after {
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    top: 3px;
    left: -2px; }
    input:checked + .flexi__label::after {
      background: #00c853; }
    .flexi__label::after:hover .flexi__label::after {
      background: #d4d4d4; }

.flexi__summary {
  display: none; }
  @media screen and (min-width: 48em) {
    .flexi__summary {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end; } }
  .flexi__summary .btn {
    -ms-flex-preferred-size: 200px;
        flex-basis: 200px; }

.flexi__totals {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.flexi__total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1rem; }
  .flexi__total:nth-child(2) {
    border-left: 1px solid #e4e4e4; }

.flexi__total-label {
  font-size: 1.3rem; }

.flexi__total-price {
  font-family: "Campton-SemiBold";
  font-size: 1.6rem;
  color: #00c853; }

.flexi__footer {
  border-top: 1px dashed #d4d4d4;
  margin: auto -10px 0;
  padding-top: 10px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  @media screen and (min-width: 48em) {
    .flexi__footer {
      min-height: 5.5rem;
      display: block; } }
  .flexi__footer .btn {
    font-family: "Campton-Book";
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    border-radius: 0;
    margin: 10px 0 -10px;
    display: none;
    font-size: 1.6rem; }
    .flexi__footer .btn::after {
      -webkit-transform: scale(1.3);
              transform: scale(1.3);
      margin-left: 10px; }
    @media screen and (max-width: 47.99em) {
      .flexi__option--selected .flexi__footer .btn {
        display: block; } }

.flexi__ticket {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%; }
  .flexi__ticket:nth-of-type(2) {
    border-left: 1px solid #e4e4e4; }

.flexi__ticket-label {
  font-size: 1.4rem; }
  @media screen and (min-width: 48em) {
    .flexi__ticket-label {
      font-size: 1.2rem; } }

.flexi__price {
  font-family: "Campton-SemiBold";
  color: #00c853;
  font-size: 1.6rem; }
  @media screen and (min-width: 48em) {
    .flexi__price {
      font-size: 1.4rem; } }

.flexi__price-plus {
  font-family: "Campton-Book";
  font-size: 2rem;
  margin-top: 5px;
  display: block; }

/* ------------------------------------*\
    $MINI-CART
\*------------------------------------ */
.mini-cart__cover {
  display: none;
  position: fixed;
  right: 400px;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 10; }
  .mini-cart__cover.mini-cart__cover--active {
    display: block; }
  @media screen and (max-width: 47.99em) {
    .mini-cart__cover {
      display: none; } }

.mini-cart__mob {
  display: none; }
  @media screen and (max-width: 47.99em) {
    .mini-cart__mob {
      display: block;
      position: fixed;
      right: 0;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 103px;
      background-color: #f4f4f4;
      z-index: 10;
      color: #656565;
      -webkit-box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
              box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
      padding: 1.5rem;
      -webkit-transition: all 0.5s linear;
      transition: all 0.5s linear;
      -webkit-transform: translateY(110%);
              transform: translateY(110%); }
      .mini-cart__mob.mini-cart__mob--active {
        -webkit-transform: translateY(0);
                transform: translateY(0); }
        .section-hotels .mini-cart__mob.mini-cart__mob--active {
          display: none; } }

.mini-cart__mob-view {
  color: #42a5f5;
  font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
  cursor: pointer;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative; }
  .mini-cart__mob-view::before {
    content: '';
    display: inline-block;
    margin-right: 5px;
    background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
    background-position: 12.213740458015268% 9.725486563777194%;
    width: 12px;
    height: 11.29px; }
  .mini-cart__mob-view::after {
    content: '';
    display: inline-block;
    margin-left: 5px;
    background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
    background-position: 22.813688212927758% 22.995146752946614%;
    width: 8px;
    height: 9.6px; }

.mini-cart__mob-btn {
  display: block;
  position: relative; }
  .mini-cart__mob-btn::after {
    top: 0.5px;
    position: relative; }

.mini-cart__mob-qty {
  font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
  background: #31aa92;
  color: #fff;
  border-radius: 4px;
  padding: 0.5rem 0.5rem 0.3rem 0.5rem;
  position: absolute;
  left: 10px;
  top: 7px; }

.mini-cart__mob-total {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  position: absolute;
  right: 10px;
  top: 12px; }

.mini-cart__mob-added {
  position: fixed;
  right: 0;
  left: 0;
  bottom: -50px;
  width: 100%;
  height: 40px;
  z-index: 10;
  color: #00c853;
  font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
  font-size: 1.25rem;
  -webkit-box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
  padding: 0.7rem 1.5rem 0.5rem;
  background: #e7fbed;
  border-top: 2px solid #00c853;
  text-align: center;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear; }
  .mini-cart__mob-added.mini-cart__mob-added--active {
    bottom: 94px; }
  @media screen and (min-width: 48em) {
    .mini-cart__mob-added {
      display: none; } }

.mini-cart__mob-added-check {
  width: 13px;
  height: 10px;
  margin-right: 5px;
  top: 0;
  position: relative; }

.mini-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  top: 0;
  right: -400px;
  bottom: 0;
  width: 400px;
  padding: 0;
  background: #fff;
  z-index: 10;
  border-left: 1px solid #e4e4e4;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear; }
  .mini-cart.mini-cart--active {
    -webkit-box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
    right: 0; }
  @media screen and (max-width: 47.99em) {
    .mini-cart {
      bottom: -100%;
      width: 100%;
      height: 100%;
      right: 0;
      top: auto; }
      .mini-cart.mini-cart--active {
        bottom: 0; } }

.mini-cart__header {
  padding: 3rem;
  position: relative;
  background-color: #f4f4f4; }

.mini-cart__close {
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  height: 16px;
  width: 16px;
  padding: 2px;
  border: none;
  background: none;
  position: absolute;
  right: 3.3rem;
  top: 3.5rem;
  cursor: pointer;
  display: block; }
  .mini-cart__close::before, .mini-cart__close::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 5px;
    height: 20px;
    width: 4px;
    background: #42a5f5;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); }
  .mini-cart__close::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg); }
  .mini-cart__close:hover, .mini-cart__close:focus {
    cursor: pointer; }
    .mini-cart__close:hover::before, .mini-cart__close:hover::after, .mini-cart__close:focus::before, .mini-cart__close:focus::after {
      background: #64b5f6; }
  .mini-cart__close::before, .mini-cart__close::after {
    background: #656565; }
  .mini-cart__close:hover::before, .mini-cart__close:hover::after, .mini-cart__close:focus::before, .mini-cart__close:focus::after {
    background: #656565; }

.mini-cart__title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.8rem;
  margin-bottom: 0; }
  @media screen and (min-width: 48em) {
    .mini-cart__title {
      font-size: 2.1rem; } }

.mini-cart__item-total {
  padding-left: 10px;
  font-size: 1.25rem; }

.mini-cart__body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
  padding: 3rem;
  overflow: scroll; }

.mini-cart__added {
  position: relative;
  background: #e7fbed;
  color: #00c853;
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-weight: bold;
  border: 2px solid #00c853;
  padding: 1.5rem 1.5rem 1.3rem 4.5rem;
  border-radius: 4px;
  margin-bottom: 3rem;
  -webkit-transition: margin 0.5s linear;
  transition: margin 0.5s linear;
  margin-top: -85px; }
  .mini-cart__added.mini-cart__added--active {
    margin-top: 0; }
  @media screen and (max-width: 47.99em) {
    .mini-cart__added {
      display: none; } }

.mini-cart__added-check {
  width: 17px;
  height: 13px;
  margin-right: 9px;
  top: 1px;
  position: relative; }

.mini-cart__item {
  width: 100%;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 1.5rem; }
  .mini-cart__item:last-child {
    margin-bottom: 0;
    border: none; }

.mini-cart__label {
  margin-bottom: 1rem;
  padding-right: 35px;
  position: relative;
  font-family: "Campton-Book", Arial, helvetica, sans-serif; }

.mini-cart__edit {
  position: absolute;
  top: 2px;
  right: 0;
  font-size: 1.25rem; }

.mini-cart__detail {
  clear: both;
  margin-bottom: 0.5rem;
  font-size: 1.25rem; }

.mini-cart__price {
  text-align: right;
  font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
  color: #00c853; }

.mini-cart__freebies {
  margin-bottom: 3rem; }

.mini-cart__freebie-title {
  display: block;
  position: relative;
  font-size: 1.6rem;
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  color: #656565;
  cursor: pointer;
  padding-left: 16px; }
  .mini-cart__freebie-title .mini-cart__gift {
    width: 16px;
    height: 16px;
    position: relative;
    top: 1px;
    margin-right: 5px; }
  .mini-cart__freebie-title:hover {
    color: #656565; }
  .mini-cart__freebie-title::after {
    content: "";
    width: 5px;
    height: 5px;
    position: absolute;
    border: solid 3px #656565;
    border-left: 0;
    border-bottom: 0;
    top: 21px;
    left: -1px;
    -webkit-transform: translateY(-15px) rotate(45deg);
            transform: translateY(-15px) rotate(45deg);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
  .mini-cart__freebie-title.expanded::after {
    -webkit-transform: translateY(-17px) rotate(135deg);
    transform: translateY(-17px) rotate(135deg);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }

.mini-cart__happiness {
  font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
  color: #00c853;
  font-size: 1.25rem; }

.mini-cart__freebie-list {
  display: block;
  padding-left: 16px;
  margin-top: 10px; }

.mini-cart__freebie-item {
  position: relative;
  margin-bottom: 10px;
  padding-left: 14px; }
  .mini-cart__freebie-item::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 2px;
    background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
    background-position: 46.66311138198995% 43.22132097334878%;
    width: 9.92px;
    height: 12px; }

.mini-cart__free-text {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  color: #00c853;
  font-weight: bold;
  margin-right: 5px; }

.mini-cart__footer {
  background-color: #f4f4f4;
  padding: 3rem;
  text-align: center; }

.mini-cart__subtotal {
  margin-bottom: 1rem;
  display: block;
  text-align: left; }

.mini-cart__subtotal-price {
  float: right;
  line-height: 1.3;
  font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
  color: #00c853;
  font-size: 1.6rem; }

.mini-cart__btn {
  width: 100%;
  margin-bottom: 1rem; }

.mini-cart__abta {
  height: 45px; }

/* ------------------------------------*\
    $LEAD-PRICE
\*------------------------------------ */
.title-header {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.lead-price {
  display: none;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto; }
  @media screen and (min-width: 48em) {
    .lead-price {
      display: block; } }

.lead-price__item {
  color: #656565;
  font-size: 1.2rem;
  text-align: center;
  display: inline-block;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-filter: drop-shadow(0 0 0.5px #656565);
          filter: drop-shadow(0 0 0.5px #656565);
  position: relative;
  min-width: 100px;
  padding: 0.3rem 1rem;
  background-size: 51% 100%;
  background-repeat: no-repeat;
  background-image: radial-gradient(circle at 0 50%, rgba(101, 101, 101, 0) 0.8em, #fff 0.41em), radial-gradient(circle at 100% 50%, rgba(101, 101, 101, 0) 0.8em, #fff 0.41em);
  background-position: top left, top right; }
  .lead-price__item:first-child {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
    -webkit-transform-origin: 10% 100%;
            transform-origin: 10% 100%;
    margin-right: -15px; }
  @media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
    .lead-price__item {
      background: url("../images/ie11/ticket.png") no-repeat;
      background-size: 100% 100%; } }

.lead-price__price {
  font-family: "Campton-Book";
  color: #00c853;
  font-size: 2rem;
  line-height: 1.1;
  display: block; }

/* ------------------------------------*\
    $CUSTOMER-ACCOUNTS
\*------------------------------------ */
.customer-accounts {
  width: 100%;
  background-color: #fff;
  padding: 1rem 0; }
  @media screen and (min-width: 48em) {
    .customer-accounts {
      padding: 1.5rem;
      margin: 1.5rem 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      border: 1px solid #e4e4e4; } }

h1.customer-accounts__title {
  width: 100%; }

h2.customer-accounts__subtitle {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.8rem;
  width: 100%; }
  @media screen and (min-width: 48em) {
    h2.customer-accounts__subtitle {
      font-size: 2.1rem; } }

h2.customer-accounts__subtitle--login {
  padding-bottom: 0.5rem;
  border-bottom: solid 2px #fff; }

.customer-accounts__section-title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.6rem; }
  @media screen and (min-width: 48em) {
    .customer-accounts__section-title {
      font-size: 1.8rem; } }

.customer-accounts__order-details {
  width: 100%;
  margin-bottom: 1rem; }
  @media screen and (min-width: 48em) {
    .customer-accounts__order-details {
      margin-bottom: 1.5rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }

.customer-accounts__chunk {
  background-color: #f4f4f4;
  border: 1px solid #e4e4e4;
  padding: 1rem;
  margin-bottom: 1rem; }
  @media screen and (min-width: 48em) {
    .customer-accounts__chunk {
      padding: 1.5rem;
      margin-bottom: 0; } }

.customer-accounts__btn--full-width {
  width: 100%; }

.customer-accounts__btn--full-width-mobile {
  width: 100%; }
  @media screen and (min-width: 48em) {
    .customer-accounts__btn--full-width-mobile {
      width: auto; } }

@media screen and (min-width: 48em) {
  .customer-accounts__chunk--half {
    -webkit-box-flex: 49%;
        -ms-flex: 49%;
            flex: 49%;
    margin-right: 1%; } }

@media screen and (min-width: 48em) {
  .customer-accounts__chunk--third {
    -webkit-box-flex: 32%;
        -ms-flex: 32%;
            flex: 32%;
    margin-right: 1%; } }

@media screen and (min-width: 48em) {
  .customer-accounts__chunk--last {
    margin-right: 0; } }

.customer-accounts__error-message {
  color: #ff1800;
  padding: 1rem;
  border: solid 1px #ff1800;
  width: 100%;
  padding-left: 35px;
  position: relative; }
  .customer-accounts__error-message::before, .customer-accounts__error-message::after {
    content: '';
    display: block;
    height: 20px;
    width: 5px;
    top: 12px;
    left: 15px;
    position: absolute;
    background: #ff1800;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); }
  .customer-accounts__error-message::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg); }

.customer-accounts__success-message {
  color: #00c853;
  padding: 1rem;
  border: solid 1px #00c853;
  width: 100%;
  padding-left: 30px;
  position: relative; }
  .customer-accounts__success-message::before {
    background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
    background-position: 19.65648854961832% 18.948584633160024%;
    width: 12px;
    height: 9.5px;
    content: '';
    display: block;
    position: absolute;
    left: 10px;
    top: 15px; }

.customer-accounts__benefits-list {
  margin-bottom: 1rem; }
  .customer-accounts__benefits-list li {
    padding-left: 20px;
    margin-bottom: 1rem;
    position: relative;
    clear: both; }
    .customer-accounts__benefits-list li::before {
      background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
      background-position: 89.26355183014148% 86.98879584309542%;
      width: 12.54px;
      height: 12.82px;
      content: '';
      display: block;
      position: absolute;
      left: 0;
      top: 3px; }

.customer-accounts__summary-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.customer-accounts__summary-list-item--remaining-balance {
  padding-top: 0.5rem;
  margin-top: 0.5rem;
  border-top: solid 2px #fff;
  font-family: "Campton-Semibold", Arial, helvetica, sans-serif; }

.customer-accounts__summary-list-title {
  -webkit-box-flex: 30%;
      -ms-flex: 30%;
          flex: 30%; }

.customer-accounts__summary-list-number {
  -webkit-box-flex: 70%;
      -ms-flex: 70%;
          flex: 70%;
  text-align: right; }

.customer-accounts__phone-number {
  font-size: 2.2rem;
  line-height: 1;
  color: #656565; }
  @media screen and (min-width: 64em) {
    .customer-accounts__phone-number {
      font-size: 2.4rem; } }

.form-item__prefix {
  position: relative; }

.customer-accounts__prefix {
  position: absolute;
  top: 10px;
  left: 10px; }

.customer-accounts__input-prefix {
  padding-left: 55px; }

.customer-accounts__tickets-list {
  width: 100%; }

.customer-accounts__ticket-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 1px solid #e4e4e4;
  padding: 1rem;
  margin-bottom: 1rem; }

.customer-accounts__ticket-img {
  -webkit-box-flex: 20%;
      -ms-flex: 20%;
          flex: 20%; }

.customer-accounts__ticket-info {
  -webkit-box-flex: 60%;
      -ms-flex: 60%;
          flex: 60%;
  padding-left: 1rem; }

.customer-accounts__ticket-status {
  -webkit-box-flex: 20%;
      -ms-flex: 20%;
          flex: 20%;
  padding-left: 1rem; }

h3.customer-accounts__ticket__title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.6rem; }
  @media screen and (min-width: 48em) {
    h3.customer-accounts__ticket__title {
      font-size: 1.8rem; } }

.customer-accounts__payment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.customer-accounts__payment-details {
  -webkit-box-flex: 49%;
      -ms-flex: 49%;
          flex: 49%;
  margin-right: 1%; }
  @media screen and (max-width: 47.99em) {
    .customer-accounts__payment-details {
      -webkit-box-flex: 100%;
          -ms-flex: 100%;
              flex: 100%;
      margin-right: 0; } }

.customer-accounts__payment-method {
  -webkit-box-flex: 49%;
      -ms-flex: 49%;
          flex: 49%;
  margin-left: 1%; }
  @media screen and (max-width: 47.99em) {
    .customer-accounts__payment-method {
      -webkit-box-flex: 100%;
          -ms-flex: 100%;
              flex: 100%;
      margin-left: 0; } }

.customer-accounts__ny-arrival-guide {
  padding: 1rem 0;
  margin-bottom: 1rem;
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4; }
  @media screen and (min-width: 48em) {
    .customer-accounts__ny-arrival-guide {
      padding: 1.5rem 0;
      margin-bottom: 1.5rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }

.customer-accounts__add-happiness {
  font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
  font-style: italic;
  color: #00c853; }

@media screen and (min-width: 48em) {
  .customer-accounts__ny-info {
    -webkit-box-flex: 84%;
        -ms-flex: 84%;
            flex: 84%;
    margin-right: 1%; } }

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .customer-accounts__ny-info {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    float: left;
    width: 80%; } }

@media screen and (min-width: 48em) {
  .customer-accounts__ny-download {
    -webkit-box-flex: 15%;
        -ms-flex: 15%;
            flex: 15%; } }

.customer-accounts__ny-download a {
  display: block; }
  @media screen and (min-width: 48em) {
    .customer-accounts__ny-download a {
      background-image: url("/themes/custom/atd/_src/newyorkguide/new-york-guide-icon.png");
      background-position: top center;
      background-repeat: no-repeat;
      padding-top: 165px; } }
  .customer-accounts__ny-download a span {
    width: 100%; }

.customer-accounts__card-iframe {
  height: 50px;
  border: solid #d4d4d4 1px;
  border-radius: 4px; }

.customer-accounts__3ds-iframe {
  height: 450px;
  width: 100%;
  border: solid #d4d4d4 1px;
  border-radius: 4px; }

.customer-accounts__payment-success {
  background: #e7fbed;
  border-radius: 4px;
  border: 2px solid #00c853;
  color: #00c853;
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-weight: bold;
  margin-bottom: 3rem;
  padding: 1.5rem 1.5rem 1.3rem 4.5rem;
  width: 100%; }

.customer-accounts__payment-success-check {
  height: 13px;
  margin-right: 9px;
  position: relative;
  top: 1px;
  width: 17px; }

.voucher-item .ticket-img {
  float: left;
  clear: both;
  width: 20%;
  margin-right: 1%; }

.voucher-item .ticket-information {
  float: left;
  width: 70%; }

@media screen and (min-width: 48em) {
  .row-hotel-details {
    width: 70%;
    float: left; } }

@media screen and (min-width: 48em) {
  .row-tickets,
  .row-dinings {
    width: 70%;
    float: left;
    padding-left: 50px; } }

/* ------------------------------------*\
    $HOMEPAGE INTRO
\*------------------------------------ */
.homepage-intro {
  border: 1px solid #e4e4e4;
  padding: 1rem;
  background: #fff; }

.homepage-intro__title {
  font-size: 1.8rem; }
  @media screen and (min-width: 48em) {
    .homepage-intro__title {
      font-size: 2.1rem; } }

.homepage-intro__list {
  display: none; }
  @media screen and (min-width: 48em) {
    .homepage-intro__list {
      display: block; } }

.homepage-intro__item {
  display: inline-block;
  margin-right: 1rem; }

.homepage-intro__logo {
  width: 65px;
  height: 44px; }

@media screen and (max-width: 63.99em) {
  .hotels-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0;
    z-index: 2;
    max-height: calc(100vh - 61px);
    overflow-y: auto;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } }

.hotels-basket {
  background: #fff;
  position: relative;
  padding: 10px;
  max-height: calc(100vh - 70px);
  overflow-y: auto; }
  @media screen and (min-width: 64em) {
    .hotels-basket {
      position: -webkit-sticky;
      position: sticky;
      top: 60px;
      border: 1px solid #e4e4e4; } }
  .hotels-basket.cart-empty {
    display: none; }
    @media screen and (min-width: 64em) {
      .hotels-basket.cart-empty {
        display: block; } }

.hotels-basket--checkout {
  max-height: none;
  padding: 0; }
  @media screen and (min-width: 64em) {
    .hotels-basket--checkout {
      padding: 10px;
      top: 10px;
      max-height: calc(100vh - 20px); } }
  .hotels-basket--checkout .mobile-abta {
    display: none; }

.summary-heading {
  display: none; }
  @media screen and (min-width: 64em) {
    .summary-heading {
      display: block;
      border-bottom: 1px solid #e4e4e4;
      margin: 0 -10px 10px;
      padding: 0 10px; } }
  .summary-heading h2 {
    margin: 0; }
  .summary-heading .total-price {
    display: none; }

.summary-heading--checkout {
  display: block; }

.hotels-basket__toggle {
  width: calc(50% - 10px); }
  .hotels-basket__toggle::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: 5px;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-color: transparent transparent transparent #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  @media screen and (min-width: 64em) {
    .hotels-basket__toggle {
      display: none; } }

.hotels-basket__toggle--open::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg); }

.cart-summary-info {
  display: none;
  padding-top: 1rem; }
  @media screen and (min-width: 64em) {
    .cart-summary-info {
      display: block;
      padding-top: 0; } }

.cart-summary-info--checkout {
  display: block; }

.cart-summary-list-item {
  margin-bottom: 1rem;
  position: relative; }
  .cart-summary-list-item h3 {
    font-family: "Campton-SemiBold";
    font-size: 1.5rem;
    margin: 0; }
  .cart-summary-list-item p {
    margin: 0;
    font-size: 1.35rem; }
    .cart-summary-list-item p.cart-ticket-desc {
      font-family: "Campton-SemiBold"; }
    .cart-summary-list-item p.cart-ticket-item {
      font-size: 1.25rem;
      font-style: italic;
      /* padding-right: 35%; */ }
  .cart-summary-list-item .section-total {
    font-family: "Campton-SemiBold";
    color: #00c853;
    position: absolute;
    bottom: 0;
    right: 0; }

.hotels-cart .universal-add-tickets-to-get {
  border: 1px solid #f04326;
  padding: 1rem 1rem 0.5rem;
  margin-bottom: 1.5rem; }
  @media screen and (min-width: 48em) {
    .hotels-cart .universal-add-tickets-to-get {
      margin: 1rem -0.5rem 1.5rem; } }
  .hotels-cart .universal-add-tickets-to-get h3 {
    font-family: "Campton-SemiBold";
    color: #f04326;
    background: #fff;
    font-size: 1.4rem;
    text-align: center;
    margin: -2.5rem -0.5rem 1rem;
    line-height: 1.4; }
  .hotels-cart .universal-add-tickets-to-get li {
    line-height: 1.2;
    padding-left: 20px;
    margin-bottom: 0.5rem;
    position: relative;
    font-size: 1.35rem; }
    .hotels-cart .universal-add-tickets-to-get li::before {
      background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
      background-position: 19.65648854961832% 18.948584633160024%;
      width: 12px;
      height: 9.5px;
      content: '';
      display: block;
      position: absolute;
      left: 0;
      top: 3px; }

.cart-freebies-header {
  padding-left: 17px;
  position: relative; }
  .cart-freebies-header::before {
    background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
    background-position: 46.66311138198995% 43.22132097334878%;
    width: 9.92px;
    height: 12px;
    content: '';
    display: block;
    position: absolute;
    left: 2px;
    -webkit-transform: scale(1.3);
            transform: scale(1.3); }
  .cart-freebies-header strong {
    color: #00c853; }

.added-extras-list {
  font-size: 1.25rem;
  position: relative;
  padding-left: 17px; }

.extraDisney__icon {
  position: absolute;
  left: 0;
  fill: #00c853;
  width: 15px;
  height: 15px; }

.extraUniversal::before {
  background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
  background-position: 46.66311138198995% 43.22132097334878%;
  width: 9.92px;
  height: 12px;
  content: '';
  display: block;
  position: absolute;
  left: 0;
  -webkit-transform: scale(1.1);
          transform: scale(1.1); }

p.room-type {
  font-size: 1.25rem;
  font-style: italic;
  margin: 0; }

.cart-summary {
  text-align: right;
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
  margin: 10px -10px 10px;
  padding: 10px; }
  @media screen and (min-width: 64em) {
    .cart-summary {
      border-bottom: none;
      margin-bottom: 0; } }

.cart-total {
  font-family: "Campton-SemiBold"; }
  .cart-total .span-total {
    font-size: 1.5rem; }
  .cart-total .span-number {
    color: #00c853; }
  .cart-total .hotel-tax {
    display: block;
    font-family: "Campton-Light", Arial, helvetica, sans-serif; }

@media screen and (max-width: 63.99em) {
  .cart-next {
    position: absolute;
    top: 10px;
    right: 10px;
    width: calc(50% - 10px); } }

@media screen and (min-width: 64em) {
  .mobile-abta {
    display: none; } }

.mobile-abta__icon {
  display: block;
  height: 55px;
  width: 100px;
  margin: 10px auto 0; }

.desktop-abta {
  display: none; }
  @media screen and (min-width: 64em) {
    .desktop-abta {
      display: block; } }

.desktop-abta__icon {
  display: block;
  height: 55px;
  width: 100px;
  margin: 10px auto 0; }

.hotels-basket__footer {
  background: #fff; }
  @media screen and (min-width: 64em) {
    .hotels-basket__footer {
      position: -webkit-sticky;
      position: sticky;
      bottom: -10px;
      margin: -10px;
      padding: 0 10px 10px;
      -webkit-box-shadow: 0 -15px 20px 10px white;
              box-shadow: 0 -15px 20px 10px white; } }

@media screen and (max-width: 63.99em) {
  .hotels-basket__toggle + .cart-summary-info + .hotels-basket__footer .cart-summary {
    margin-bottom: -10px; }
  .hotels-basket__toggle + .cart-summary-info + .hotels-basket__footer .mobile-abta {
    -webkit-transition: 1s;
    transition: 1s;
    opacity: 0;
    height: 0;
    margin-bottom: -11px; }
  .hotels-basket__toggle.hotels-basket__toggle--open + .cart-summary-info + .hotels-basket__footer {
    padding-bottom: 20px; }
    .hotels-basket__toggle.hotels-basket__toggle--open + .cart-summary-info + .hotels-basket__footer .cart-summary {
      margin-bottom: 10px; }
    .hotels-basket__toggle.hotels-basket__toggle--open + .cart-summary-info + .hotels-basket__footer .mobile-abta {
      opacity: 1;
      height: auto; } }

.cart-empty {
  margin-bottom: 4rem; }

/* ------------------------------------*\
    $ABOUT US BUTTON
\*------------------------------------ */
.about-us-button {
  clear: both;
  margin-bottom: 1.5rem;
  text-align: center; }

.about-us-button__link {
  background-color: #fff;
  border: solid 1px #ffa32f;
  border-radius: 50%;
  text-align: center;
  display: block;
  padding: 1.5rem;
  max-width: 160px;
  min-height: 160px;
  margin: 0 auto;
  color: #656565; }
  .about-us-button__link:hover {
    color: #64b5f6; }

.about-us-button__img {
  max-width: 45px;
  max-height: 45px; }

.about-us-button__text-line {
  font-family: "Campton-Light", Arial, helvetica, sans-serif;
  font-size: 1.6rem;
  line-height: 1.3;
  display: block; }
  .about-us-button__text-line span {
    display: block; }
  .about-us-button__text-line strong {
    font-family: "Campton-Book", Arial, helvetica, sans-serif;
    color: #fb8c00; }
  .about-us-button__text-line em {
    font-size: 1.4rem; }

/* Styles for general content pages */
.general-content {
  margin-bottom: 1.5rem; }
  @media screen and (min-width: 48em) {
    .general-content {
      padding: 1.5rem;
      border: 1px solid #e4e4e4; } }

.general-content__chunk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 1.5rem; }
  .general-content__chunk h3 {
    font-family: "Campton-Book", Arial, helvetica, sans-serif;
    font-size: 1.4rem; }
    @media screen and (min-width: 48em) {
      .general-content__chunk h3 {
        font-size: 1.6rem; } }

ul.general-content__star-list li {
  padding-left: 20px;
  margin-bottom: 1rem;
  position: relative;
  clear: both; }
  ul.general-content__star-list li::before {
    background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
    background-position: 89.26355183014148% 86.98879584309542%;
    width: 12.54px;
    height: 12.82px;
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 3px; }

@media screen and (min-width: 48em) {
  .general-content__major-chunk {
    -webkit-box-flex: 66%;
        -ms-flex: 66%;
            flex: 66%;
    margin-right: 1%; } }

.general-content__minor-chunk {
  background-color: #f4f4f4;
  border: 1px solid #e4e4e4;
  padding: 1.5rem;
  margin-bottom: 1.5rem; }
  @media screen and (min-width: 48em) {
    .general-content__minor-chunk {
      -webkit-box-flex: 33%;
          -ms-flex: 33%;
              flex: 33%; } }

.meal-plan-addon {
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  background-color: #fff;
  margin-bottom: 1rem; }
  @media screen and (min-width: 48em) {
    .meal-plan-addon {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 1rem 1rem 0 1rem; } }

.meal-plan-addon--none {
  padding: 0;
  border: none;
  margin: 0; }

.meal-plan-addon__image {
  width: 100%; }
  @media screen and (min-width: 48em) {
    .meal-plan-addon__image {
      -webkit-box-flex: 25%;
          -ms-flex: 25%;
              flex: 25%;
      padding-right: 1rem; } }
  .meal-plan-addon__image img {
    width: 100%;
    float: left; }

.meal-plan-addon__dining-options {
  padding: 1rem 1rem 0 1rem; }
  @media screen and (min-width: 48em) {
    .meal-plan-addon__dining-options {
      -webkit-box-flex: 75%;
          -ms-flex: 75%;
              flex: 75%;
      padding: 0; } }

h3.meal-plan-addon__subtitle {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.8rem; }
  @media screen and (min-width: 48em) {
    h3.meal-plan-addon__subtitle {
      font-size: 2.1rem; } }

.meal-plan-addon__option {
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  background-color: #fff;
  margin-bottom: 1rem;
  width: 100%; }
  @media screen and (min-width: 48em) {
    .meal-plan-addon__option {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      padding: 1rem; } }
  .meal-plan-addon--none .meal-plan-addon__option {
    margin: 0; }
  .meal-plan-addon__option.selected {
    border: 1px solid #00c853;
    background-color: rgba(0, 200, 83, 0.1); }

.meal-plan-addon__meal {
  border-bottom: dashed 1px #e4e4e4;
  padding: 1rem; }
  @media screen and (min-width: 48em) {
    .meal-plan-addon__meal {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      border: 0;
      padding: 0; } }
  @media screen and (min-width: 48em) {
    .meal-plan-addon__meal.accordion__parent-active {
      -webkit-box-flex: 100%;
          -ms-flex: 100%;
              flex: 100%; } }

h4.meal-plan-addon__subtitle {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.4rem; }
  @media screen and (min-width: 48em) {
    h4.meal-plan-addon__subtitle {
      font-size: 1.6rem; } }
  h4.meal-plan-addon__subtitle.toggle-title {
    cursor: pointer;
    display: block;
    width: 100%;
    position: relative;
    padding: 0 0 0 2rem; }
    h4.meal-plan-addon__subtitle.toggle-title::before {
      content: "";
      border: solid 5px transparent;
      border-left-color: #656565;
      position: absolute;
      left: 5px;
      top: 7px;
      -webkit-transition-duration: 0.2s;
              transition-duration: 0.2s; }
    h4.meal-plan-addon__subtitle.toggle-title.accordion__btn-active::before {
      -webkit-transform: rotate(90deg);
              transform: rotate(90deg);
      left: 3px; }

p.meal-plan-addon__subtitle {
  margin: 0; }

.meal-plan-addon__ticket-includes ul li {
  position: relative;
  padding-left: 20px; }
  .meal-plan-addon__ticket-includes ul li::before {
    background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
    background-position: 89.26355183014148% 86.98879584309542%;
    width: 12.54px;
    height: 12.82px;
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 3px; }

.meal-plan-addon__price-holder {
  padding: 1rem; }
  @media screen and (min-width: 48em) {
    .meal-plan-addon__price-holder {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      padding: 0;
      text-align: right; } }

.meal-plan-addon__price-holder-inside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%; }
  @media screen and (min-width: 48em) {
    .meal-plan-addon__price-holder-inside {
      width: auto;
      float: right; } }

.meal-plan-addon__price-container {
  padding-right: 1rem;
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%; }
  @media screen and (min-width: 48em) {
    .meal-plan-addon__price-container {
      -webkit-box-flex: 1;
          -ms-flex: auto;
              flex: auto; } }

.meal-plan-addon__add-plan {
  text-transform: uppercase;
  margin: 0; }

.meal-plan-addon__price {
  font-family: "Campton-Book";
  font-size: 2.6rem;
  color: #00c853;
  line-height: 1;
  margin-bottom: 0; }
  .meal-plan-addon__price strong {
    font-weight: normal; }

.meal-plan-addon__button-container {
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  text-align: right; }
  @media screen and (min-width: 48em) {
    .meal-plan-addon__button-container {
      -webkit-box-flex: 1;
          -ms-flex: auto;
              flex: auto; } }

.magical-extra-addon {
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  background-color: #fff;
  margin-bottom: 1rem; }

h3.magical-extra-addon__subtitle {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.8rem;
  background-color: #f4f4f4;
  padding: 1rem;
  margin: 0; }
  @media screen and (min-width: 48em) {
    h3.magical-extra-addon__subtitle {
      font-size: 2.1rem; } }

.magical-extra-addon__body {
  width: 100%; }
  @media screen and (min-width: 48em) {
    .magical-extra-addon__body {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 1rem 1rem 0 1rem; } }

.magical-extra-addon__image {
  width: 100%;
  padding-bottom: 1rem; }
  @media screen and (min-width: 48em) {
    .magical-extra-addon__image {
      -webkit-box-flex: 25%;
          -ms-flex: 25%;
              flex: 25%;
      padding-right: 1rem;
      padding-bottom: 0; } }
  .magical-extra-addon__image img {
    width: 100%; }

.magical-extra-addon__info {
  width: 100%;
  padding: 1rem 1rem 0 1rem; }
  @media screen and (min-width: 48em) {
    .magical-extra-addon__info {
      -webkit-box-flex: 75%;
          -ms-flex: 75%;
              flex: 75%;
      padding: 0; } }

.magical-extra-addon__added-value {
  width: 100%;
  padding: 0 1rem; }

.magical-extra-addon__show-hide-title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.4rem;
  margin: -1px -1px -1px -1px;
  background-color: #e7fbed;
  color: #00c853;
  padding: 1rem; }
  @media screen and (min-width: 48em) {
    .magical-extra-addon__show-hide-title {
      font-size: 1.6rem; } }
  .magical-extra-addon__show-hide-title.toggle-title {
    position: relative;
    cursor: pointer;
    padding-left: 31px; }
    @media screen and (min-width: 48em) {
      .magical-extra-addon__show-hide-title.toggle-title {
        display: none; } }
    .magical-extra-addon__show-hide-title.toggle-title::before {
      content: "";
      border: solid 5px transparent;
      border-left-color: #00c853;
      position: absolute;
      left: 15px;
      top: 14px;
      -webkit-transition-duration: 0.2s;
              transition-duration: 0.2s; }
    .magical-extra-addon__show-hide-title.toggle-title.accordion__btn-active::before {
      -webkit-transform: rotate(90deg);
              transform: rotate(90deg);
      left: 12px;
      top: 17px; }
  @media screen and (min-width: 48em) {
    .magical-extra-addon__show-hide-title {
      display: none; } }

.magical-extra-addon__show-hide-content {
  width: 100%; }
  @media screen and (min-width: 48em) {
    .magical-extra-addon__show-hide-content {
      display: table; }
      .magical-extra-addon__show-hide-content.DOM-slider-hidden {
        height: auto !important; } }

.magical-extra-addon__options {
  background-color: #fff; }
  @media screen and (max-width: 47.99em) {
    .magical-extra-addon__options {
      border: 1px solid #e4e4e4; } }
  @media screen and (min-width: 48em) {
    .magical-extra-addon__options {
      display: table;
      width: 100%;
      border-left: 1px solid #e4e4e4;
      border-top: 1px solid #e4e4e4; } }

.magical-extra-addon__option-head1 {
  background-color: #f4f4f4; }
  @media screen and (min-width: 48em) {
    .magical-extra-addon__option-head1 {
      display: table-row; } }

@media screen and (min-width: 48em) {
  .magical-extra-addon__option-head2 {
    display: table-row; } }

@media screen and (min-width: 48em) {
  .magical-extra-addon__option {
    display: table-row; } }

.magical-extra-addon__option-title1 {
  padding: 1rem;
  font-size: 1.4rem;
  font-family: "Campton-Semibold", Arial, helvetica, sans-serif; }
  @media screen and (min-width: 48em) {
    .magical-extra-addon__option-title1 {
      display: table-cell;
      text-align: center;
      padding: 0.5rem;
      border-right: 1px solid #e4e4e4;
      border-bottom: 1px solid #e4e4e4; } }

.magical-extra-addon__option-title2 {
  padding: 1rem;
  font-size: 1.4rem;
  font-family: "Campton-Semibold", Arial, helvetica, sans-serif; }
  @media screen and (min-width: 48em) {
    .magical-extra-addon__option-title2 {
      display: table-cell;
      text-align: center;
      padding: 0.5rem;
      border-right: 1px solid #e4e4e4;
      border-bottom: 1px solid #e4e4e4; } }

.magical-extra-addon__option-time {
  padding: 1rem;
  font-size: 1.4rem;
  font-family: "Campton-Semibold", Arial, helvetica, sans-serif; }
  @media screen and (min-width: 48em) {
    .magical-extra-addon__option-time {
      display: table-cell;
      text-align: center;
      padding: 0.5rem;
      border-right: 1px solid #e4e4e4;
      border-bottom: 1px solid #e4e4e4; } }

.magical-extra-addon__option-category {
  padding: 1rem;
  font-size: 1.4rem;
  font-family: "Campton-Semibold", Arial, helvetica, sans-serif; }
  @media screen and (min-width: 48em) {
    .magical-extra-addon__option-category {
      display: table-cell;
      text-align: center;
      padding: 0.5rem;
      border-right: 1px solid #e4e4e4;
      border-bottom: 1px solid #e4e4e4; } }

@media screen and (min-width: 48em) {
  .magical-extra-addon__option-category-inside {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; } }

@media screen and (min-width: 48em) {
  .magical-extra-addon__option-category-title {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; } }

h4.magical-extra-addon__day-date {
  font-size: 1.4rem;
  font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
  margin: 0;
  padding: 1rem;
  border-bottom: 1px solid #e4e4e4; }
  @media screen and (max-width: 47.99em) {
    h4.magical-extra-addon__day-date {
      background-image: url(/themes/custom/atd/images/calendar-grey.svg);
      background-repeat: no-repeat;
      background-position: 10px 12px;
      background-size: 12px auto;
      padding-left: 30px; } }
  @media screen and (min-width: 48em) {
    h4.magical-extra-addon__day-date {
      display: table-cell;
      text-align: center;
      padding: 0.5rem;
      border-right: 1px solid #e4e4e4; } }

@media screen and (min-width: 48em) {
  .magical-extra-addon__day {
    display: block; } }

@media screen and (min-width: 48em) {
  .magical-extra-addon__date {
    font-family: "Campton-Light", Arial, helvetica, sans-serif;
    display: block; } }

.magical-extra-addon__cell {
  padding: 0 1rem; }
  @media screen and (min-width: 48em) {
    .magical-extra-addon__cell {
      display: table-cell;
      text-align: center;
      padding: 0.5rem;
      border-right: 1px solid #e4e4e4;
      border-bottom: 1px solid #e4e4e4; } }

@media screen and (min-width: 48em) {
  .magical-extra-addon__cell-inside {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; } }

.magical-extra-addon__cellhtml {
  width: 100%;
  clear: both;
  font-size: 1.4rem;
  margin: 0; }
  @media screen and (max-width: 47.99em) {
    .magical-extra-addon__cellhtml {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      border-bottom: 1px solid #e4e4e4;
      padding: 1rem 0;
      margin-bottom: -1px; } }
  @media screen and (min-width: 48em) {
    .magical-extra-addon__cellhtml {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      padding: 0; } }

.magical-extra-addon__choice-label {
  font-size: 1.4rem; }
  @media screen and (max-width: 47.99em) {
    .magical-extra-addon__choice-label {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2; } }

@media screen and (max-width: 47.99em) {
  .magical-extra-addon__choice-check {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    min-width: 20px; } }

.magical-extra-addon__choice-time {
  font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
  display: block; }
  @media screen and (min-width: 48em) {
    .magical-extra-addon__choice-time {
      display: none; } }

.magical-extra-addon__choice-category {
  font-family: "Campton-Light", Arial, helvetica, sans-serif;
  display: block; }
  @media screen and (min-width: 48em) {
    .magical-extra-addon__choice-category {
      display: none; } }

.magical-extra-addon__choice-price {
  font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
  display: block; }
  .magical-extra-addon--sold-out .magical-extra-addon__choice-price {
    font-family: "Campton-Light", Arial, helvetica, sans-serif;
    font-style: italic; }

/* ------------------------------------*\
    $Search Results
\*------------------------------------ */
.search-result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e4e4e4; }

.search-result__img {
  -ms-flex-preferred-size: 31%;
      flex-basis: 31%;
  max-width: 31%; }

.search-result__content {
  padding-left: 1.5rem;
  -ms-flex-preferred-size: 69%;
      flex-basis: 69%;
  max-width: 69%; }

.search-result__title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.8rem; }
  @media screen and (min-width: 48em) {
    .search-result__title {
      font-size: 2.1rem; } }

.search-result__desc {
  padding: 0 0 0 24px;
  font-size: 1.4rem;
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  position: relative;
  font-weight: normal;
  margin-bottom: 1.5rem; }
  @media screen and (min-width: 64em) {
    .search-result__desc {
      font-size: 1.5rem; } }
  .search-result__desc::before {
    content: "\201C";
    position: absolute;
    color: #fb8c00;
    font-size: 4rem;
    line-height: 1;
    top: -1px;
    left: 0;
    font-family: TimesNewRoman, Times New Roman, Times, Baskerville, Georgia, serif; }

.search-result__btn {
  width: 100%;
  text-align: right; }

.search-result__lead-price-attraction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.5rem; }

.search-result__none {
  margin-bottom: 1.5rem; }

.search-result__none-item {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px; }
  .search-result__none-item::before {
    background: url("/themes/custom/atd/images/svg/sprite.css.svg") no-repeat;
    background-position: 89.26355183014148% 86.98879584309542%;
    width: 12.54px;
    height: 12.82px;
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 3px; }

/* ------------------------------------*\
    $Hotels categories lists
\*------------------------------------ */
.hotels-categories {
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  background-color: #f4f4f4; }
  @media screen and (min-width: 64em) {
    .hotels-categories {
      padding-top: 2rem;
      padding-bottom: 2rem; } }

.hotels-categories__categories {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  @media screen and (max-width: 63.99em) {
    .hotels-categories__categories {
      margin: 0 -1rem; } }
  .hotels-categories__categories .swiper-wrapper {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch; }

.hotels-categories__category {
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  background-color: #fff;
  height: auto; }

.hotels-categories__img {
  position: relative; }
  .hotels-categories__img img {
    display: block; }
  .hotels-categories__img p {
    font-size: 1.1rem;
    font-style: italic;
    color: #fff;
    padding: 2rem 1rem 0.5rem 0.5rem;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.7)));
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: right;
    margin: 0; }

.hotels-categories__info {
  padding: 1rem; }

.hotels-categories__subtitle {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.4rem; }
  @media screen and (min-width: 48em) {
    .hotels-categories__subtitle {
      font-size: 1.6rem; } }

.hotels-categories__description {
  font-style: italic; }

.hotels-categories__free-dine-message {
  color: #f04326;
  font-size: 1.25rem;
  font-family: "Campton-Semibold", Arial, helvetica, sans-serif; }

.hotels-categories__promotion {
  padding-top: 1rem; }

.hotels-categories__promotion-img {
  max-width: 100%; }

/* featured hotels chunks (hotels landing page) */
.featured-hotels {
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  background-color: #f4f4f4; }
  @media screen and (min-width: 64em) {
    .featured-hotels {
      padding-top: 2rem;
      padding-bottom: 2rem; } }

.featured-hotels__title {
  width: 100%;
  text-align: left; }

.featured-hotels__list {
  margin-bottom: -1rem; }
  @media screen and (min-width: 64em) {
    .featured-hotels__list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }

.featured-hotels__item {
  margin: 0 0 1rem 0; }
  @media screen and (min-width: 64em) {
    .featured-hotels__item {
      border: 1px solid #e4e4e4;
      border-radius: 4px;
      margin: 0 0 2rem 0;
      background-color: #fff;
      -webkit-box-flex: 49%;
          -ms-flex: 49% 0 0px;
              flex: 49% 0 0;
      position: relative;
      overflow: hidden; }
      .featured-hotels__item:hover, .featured-hotels__item:focus {
        -webkit-box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.1);
                box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.1); } }

.featured-hotels__img img {
  margin: 0;
  float: left; }

@media screen and (min-width: 64em) {
  .featured-hotels__wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; } }

.featured-hotels__wrapper .featured-hotels__link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

.featured-hotels__wrapper .featured-hotels__subtitle {
  position: relative; }
  .featured-hotels__wrapper .featured-hotels__subtitle a {
    font-size: 1.4rem;
    background-color: #848484;
    padding: 1rem 1.5rem;
    color: #fff;
    text-transform: uppercase;
    font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
    border-radius: 4px;
    display: block; }
    @media screen and (min-width: 64em) {
      .featured-hotels__wrapper .featured-hotels__subtitle a {
        font-size: 1.6rem;
        margin: 1rem;
        display: inline-block;
        -webkit-transition: font-size 0.2s;
        transition: font-size 0.2s; }
        .featured-hotels__wrapper .featured-hotels__subtitle a:hover {
          font-size: 1.8rem; } }
    .featured-hotels--Value .featured-hotels__wrapper .featured-hotels__subtitle a {
      background-color: #51d7bf; }
    .featured-hotels--Moderate .featured-hotels__wrapper .featured-hotels__subtitle a {
      background-color: #f0528a; }
    .featured-hotels--Deluxe .featured-hotels__wrapper .featured-hotels__subtitle a {
      background-color: #6b44b3; }
    .featured-hotels--Deluxe-Villas .featured-hotels__wrapper .featured-hotels__subtitle a {
      background-color: #0c226b; }
    .featured-hotels--Prime-Value .featured-hotels__wrapper .featured-hotels__subtitle a {
      background-color: #f0528a; }
    .featured-hotels--Preferred .featured-hotels__wrapper .featured-hotels__subtitle a {
      background-color: #6b44b3; }
    .featured-hotels--Premier .featured-hotels__wrapper .featured-hotels__subtitle a {
      background-color: #0c226b; }
    .featured-hotels--Disney-Hotels .featured-hotels__wrapper .featured-hotels__subtitle a {
      background-color: #0c226b; }
    .featured-hotels--Partner .featured-hotels__wrapper .featured-hotels__subtitle a {
      background-color: #6b44b3; }

@media screen and (min-width: 64em) {
  .featured-hotels__wrapper .featured-hotels__information {
    background-color: rgba(255, 255, 255, 0.85);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; } }

.featured-hotels__wrapper .featured-hotels__rating {
  -webkit-box-flex: 49%;
      -ms-flex: 49%;
          flex: 49%;
  margin: 0 0.5% 0 0.5%; }

.featured-hotels__wrapper .featured-hotels__promotion {
  -webkit-box-flex: 49%;
      -ms-flex: 49%;
          flex: 49%;
  margin: 0 0.5% 0 0.5%;
  position: relative; }

.featured-hotels__wrapper .featured-hotels__promotion-imgs {
  width: auto;
  float: right;
  margin-top: -25px;
  margin-bottom: -25px; }
  .featured-hotels__wrapper .featured-hotels__promotion-imgs svg {
    max-width: 80px;
    max-height: 80px; }

.hotels-promo {
  text-align: center;
  padding: 1rem 0;
  margin: 0 -1rem; }
  @media screen and (min-width: 48em) {
    .hotels-promo {
      padding: 2rem 0;
      margin: 0; } }

.hotels-promo__list {
  margin: 0;
  padding: 0;
  list-style: none; }
  @media screen and (min-width: 48em) {
    .hotels-promo__list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }

.hotels-promo__item {
  text-align: center;
  margin: 3rem 0; }
  @media screen and (max-width: 47.99em) {
    .hotels-promo__item {
      width: 70%;
      padding: 0 3rem; } }
  @media screen and (min-width: 48em) {
    .hotels-promo__item {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 33%;
              flex: 0 0 33%; } }
  .hotels-promo__item img {
    width: auto;
    height: 170px; }
  .hotels-promo__item p {
    margin-top: 1rem; }
  .hotels-promo__item b {
    font-family: "Campton-SemiBold";
    display: block; }
    .hotels-promo__item b span {
      color: #c52530; }

/* ------------------------------------*\
    $First time in orlando page
\*------------------------------------ */
.ftgo__intro-wrapper {
  margin: 1.5rem 0; }
  @media screen and (min-width: 64em) {
    .ftgo__intro-wrapper {
      padding: 0 300px 30px 0;
      margin-top: 3rem;
      background-image: url("/themes/custom/atd/images/first-timers.png");
      background-position: bottom right;
      background-repeat: no-repeat;
      margin-bottom: 0; } }

.ftgo__intro-content {
  margin: 0; }

.ftgo-anchors {
  border: 1px solid #e4e4e4;
  margin-bottom: 1.5rem; }
  @media screen and (max-width: 47.99em) {
    .ftgo-anchors {
      display: none; } }

.ftgo-anchors-title-wrapper {
  padding: 1rem 1.5rem 0.7rem;
  border-bottom: 1px solid #e4e4e4;
  margin: 0; }

.ftgo-anchors-title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.4rem;
  margin: 0; }
  @media screen and (min-width: 48em) {
    .ftgo-anchors-title {
      font-size: 1.6rem; } }

.ftgo-anchors__list {
  padding: 1.5rem 0 0 1.5rem;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.ftgo-anchors__item {
  padding: 0 1.5rem 1.5rem 0;
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
  max-width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  @media screen and (max-width: 63.99em) {
    .ftgo-anchors__item {
      -ms-flex-preferred-size: 33.333%;
          flex-basis: 33.333%;
      max-width: 33.333%; } }

.ftgo-anchors__item-img {
  -ms-flex-preferred-size: 35%;
      flex-basis: 35%;
  max-width: 35%; }

.ftgo-anchors__item-title {
  -ms-flex-preferred-size: 65%;
      flex-basis: 65%;
  max-width: 65%;
  padding-left: 1rem;
  margin-bottom: 0;
  line-height: 0.8; }

.ftgo-anchors__item-link {
  font-family: "Campton-Semibold", Arial, helvetica, sans-serif;
  font-size: 1.25rem; }
  .ftgo-anchors__item-link::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #42a5f5;
    margin-left: 5px;
    top: -2px;
    position: relative; }

.ftgo-list {
  border: 1px solid #e4e4e4;
  margin-bottom: 3rem; }
  @media screen and (max-width: 47.99em) {
    .ftgo-list {
      border: none; } }

.ftgo-list__item {
  padding: 1.5rem;
  margin: 0;
  border-bottom: 1px solid #e4e4e4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .ftgo-list__item:last-child {
    border-bottom: none; }
  @media screen and (max-width: 47.99em) {
    .ftgo-list__item {
      padding: 1.5rem 0; } }

.ftgo-list__item-img {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  max-width: 30%; }
  @media screen and (max-width: 35.99em) {
    .ftgo-list__item-img {
      display: none; } }

.ftgo-list__item-content {
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
  max-width: 70%;
  padding-left: 1.5rem; }
  @media screen and (max-width: 35.99em) {
    .ftgo-list__item-content {
      padding: 0;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
      max-width: 100%; } }
  .ftgo-list__item-content .social {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left; }

/* ------------------------------------*\
    $DESTINATIONS LIST PAGE
\*------------------------------------ */
.our-destinations__list {
  background: #fff;
  border: 1px solid #e4e4e4;
  padding: 1.5rem; }

.our-destinations__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem; }
  .our-destinations__item:last-child {
    border: none;
    padding: 0;
    margin: 0; }

.our-destinations__img {
  -webkit-box-flex: 30%;
      -ms-flex: 30%;
          flex: 30%; }

.our-destinations__img-link {
  border: 1px solid #e4e4e4;
  float: left;
  width: 100%; }
  .our-destinations__img-link img {
    float: left; }

.our-destinations__content {
  -webkit-box-flex: 70%;
      -ms-flex: 70%;
          flex: 70%;
  padding-left: 1.5rem; }

h2.our-destinations__title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.8rem; }
  @media screen and (min-width: 48em) {
    h2.our-destinations__title {
      font-size: 2.1rem; } }

.our-destinations__usp {
  padding: 0 0 0 24px;
  font-size: 1.4rem;
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  position: relative;
  font-weight: normal;
  clear: both; }
  @media screen and (min-width: 64em) {
    .our-destinations__usp {
      font-size: 1.5rem; } }
  .our-destinations__usp::before {
    content: "\201C";
    position: absolute;
    color: #fb8c00;
    font-size: 4rem;
    line-height: 1;
    top: -1px;
    left: 0;
    font-family: TimesNewRoman, Times New Roman, Times, Baskerville, Georgia, serif; }

.our-destinations__text {
  clear: both; }

#sliding-popup {
  width: 100%;
  z-index: 2147483647 !important; }

.eu-cookie-compliance-banner {
  background: #fff;
  border-top: 1px solid #e4e4e4;
  padding: 1rem 0; }

.eu-cookie-compliance-content {
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  max-width: none; }
  @media screen and (min-width: 48em) {
    .eu-cookie-compliance-content {
      padding: 0 1.5rem; } }
  @media screen and (min-width: 64em) {
    .eu-cookie-compliance-content {
      padding: 0 1.5rem;
      max-width: 1054px; } }
  @media screen and (min-width: 36em) {
    .eu-cookie-compliance-content {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }

.eu-cookie-compliance-message {
  max-width: none; }
  @media screen and (min-width: 36em) {
    .eu-cookie-compliance-message {
      margin-right: 1rem; } }
  .eu-cookie-compliance-message p {
    display: inline; }

.eu-cookie-compliance-more-button {
  display: inline;
  border: none;
  background: none;
  color: #42a5f5;
  text-decoration: underline;
  padding: 0;
  margin: 0; }

.eu-cookie-compliance-default-button {
  background: #64b5f6; }
  .eu-cookie-compliance-default-button:hover, .eu-cookie-compliance-default-button:focus {
    background: #349ef3; }

.mobile-ticket {
  position: absolute;
  color: #fff;
  background: #f04326;
  padding: 0.4rem 1rem 0.4rem 4rem;
  bottom: 1.5rem;
  left: 1.5rem;
  border-radius: 4px; }
  .mobile-ticket::before {
    background: url("/themes/custom/atd/images/svg/sprite-logos.svg") no-repeat;
    background-position: 29.478458049886623% 18.38879159369527%;
    width: 32px;
    height: 40px;
    content: '';
    display: block;
    position: absolute;
    left: 0.5rem;
    top: -0.5rem; }

.mobile-ticket--ticket-description {
  left: auto;
  right: 0; }
  @media screen and (max-width: 63.99em) {
    .mobile-ticket--ticket-description {
      position: relative;
      left: auto;
      right: auto;
      top: auto;
      display: inline-block;
      margin-top: 1.5rem; } }

/* ------------------------------------*\
    $LEADERBOARD
\*------------------------------------ */
.leaderboard-wrapper {
  position: absolute;
  z-index: 9;
  display: block;
  background: #e50650;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  margin-top: 0;
  overflow: hidden; }

.leaderboard {
  padding: 14px 10px 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.leaderboard__title {
  font-size: 1.6rem;
  color: #fff;
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  text-transform: uppercase; }

.leaderboard__mob,
.leaderboard__desk {
  text-transform: none;
  font-size: 1.4rem;
  font-family: "Campton-Light", Arial, helvetica, sans-serif; }

.leaderboard__desk {
  display: block; }
  @media screen and (max-width: 63.99em) {
    .leaderboard__desk {
      display: none; } }

.leaderboard__mob {
  display: block; }
  @media screen and (min-width: 64em) {
    .leaderboard__mob {
      display: none; } }

@media screen and (max-width: 63.99em) {
  body.leaderboard__active {
    padding-top: 101px; } }

/* ------------------------------------*\
    $PAGE SPECIFIC
\*------------------------------------ */
ul.about-us-real {
  background-color: #f4f4f4;
  border: 1px solid #e4e4e4;
  padding: 1.5rem; }
  @media screen and (min-width: 64em) {
    ul.about-us-real {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }
  @media screen and (max-width: 63.99em) {
    ul.about-us-real li {
      margin-bottom: 1.5rem; } }
  @media screen and (min-width: 64em) {
    ul.about-us-real li {
      -webkit-box-flex: 32%;
          -ms-flex: 32%;
              flex: 32%;
      margin-right: 2%; }
      ul.about-us-real li:last-child {
        margin-right: 0; } }
  ul.about-us-real li h3 {
    font-family: "Campton-Book", Arial, helvetica, sans-serif;
    font-size: 1.6rem;
    text-align: center; }
    @media screen and (min-width: 48em) {
      ul.about-us-real li h3 {
        font-size: 1.8rem; } }
    ul.about-us-real li h3 .real_img {
      max-width: 55px;
      max-height: 55px;
      fill: #42a5f5; }
    ul.about-us-real li h3 span {
      display: block; }

.awards__container {
  margin-bottom: 1.5rem; }

.awards__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.awards__item p {
  margin-bottom: 0;
  font-size: small;
  text-align: center; }

.awards__img {
  display: block;
  margin: 0 auto 0.5rem auto;
  background-color: #fff; }

.testimonials__title-main {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.6rem; }
  @media screen and (min-width: 48em) {
    .testimonials__title-main {
      font-size: 1.8rem; } }

.testimonials__item {
  clear: both;
  background: #fff;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border: solid 1px #e4e4e4;
  border-radius: 4px;
  position: relative; }
  .testimonials__item::before {
    content: "";
    border: solid 6px transparent;
    border-left-color: #e4e4e4;
    border-top-color: #e4e4e4;
    position: absolute;
    bottom: -12px;
    left: 15px; }
  .testimonials__item::after {
    content: "";
    border: solid 6px transparent;
    border-left-color: #fff;
    border-top-color: #fff;
    position: absolute;
    bottom: -10px;
    left: 16px; }

.testimonials__title {
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  font-size: 1.4rem;
  padding: 0 24px;
  width: 100%; }
  @media screen and (min-width: 48em) {
    .testimonials__title {
      font-size: 1.6rem; } }
  .testimonials__title svg {
    max-width: 100%; }

.testimonials__quote {
  padding: 0 0 0 24px;
  font-size: 1.4rem;
  font-family: "Campton-Book", Arial, helvetica, sans-serif;
  position: relative;
  font-weight: normal; }
  @media screen and (min-width: 64em) {
    .testimonials__quote {
      font-size: 1.5rem; } }
  .testimonials__quote::before {
    content: "\201C";
    position: absolute;
    color: #fb8c00;
    font-size: 4rem;
    line-height: 1;
    top: -1px;
    left: 0;
    font-family: TimesNewRoman, Times New Roman, Times, Baskerville, Georgia, serif; }

.testimonials__img {
  padding: 0 24px;
  width: 100%;
  text-align: center; }
  .testimonials__img img {
    width: auto;
    margin: 0 auto; }

.testimonials__author {
  margin-bottom: 0; }
  .testimonials__author p {
    margin: 0; }
  .testimonials__author strong {
    font-weight: normal;
    font-family: "Campton-Book", Arial, helvetica, sans-serif;
    font-size: 1.4rem;
    font-family: "Campton-Book", Arial, helvetica, sans-serif;
    text-align: center;
    display: block; }
    @media screen and (min-width: 48em) {
      .testimonials__author strong {
        font-size: 1.6rem; } }
  .testimonials__author em {
    text-align: center;
    display: block;
    font-style: normal; }

/* ------------------------------------*\
    $CRO AND TEMPORARY STYLES
\*------------------------------------ */
.ticket-description__offer--252704,
.ticket-description__offer--252707 {
  background: #000; }
  .ticket-description__offer--252704 a,
  .ticket-description__offer--252707 a {
    color: #fff; }

.mini-tickets__offer.mini-tickets__offer--256162 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .mini-tickets__offer.mini-tickets__offer--256162 p.mini-tickets__offer-text {
    margin: 0; }

.ticket-description__offer--256160,
.ticket-description__offer--260799,
.mini-tickets__offer--256160,
.mini-tickets__offer--260799 {
  color: #fff;
  background: #000;
  border: none;
  -webkit-box-shadow: 0 0 5px 1px rgba(29, 125, 29, 0.7);
          box-shadow: 0 0 5px 1px rgba(29, 125, 29, 0.7);
  -webkit-animation: 2s ease-out 1s infinite startrek;
          animation: 2s ease-out 1s infinite startrek; }
  .ticket-description__offer--256160:empty,
  .ticket-description__offer--260799:empty,
  .mini-tickets__offer--256160:empty,
  .mini-tickets__offer--260799:empty {
    display: none; }
  .ticket-description__offer--256160 a,
  .ticket-description__offer--260799 a,
  .mini-tickets__offer--256160 a,
  .mini-tickets__offer--260799 a {
    color: #fff; }
  .ticket-description__offer--256160 .ticket-description__offer-img,
  .ticket-description__offer--260799 .ticket-description__offer-img,
  .mini-tickets__offer--256160 .ticket-description__offer-img,
  .mini-tickets__offer--260799 .ticket-description__offer-img {
    max-width: 120px;
    margin: -11px 0 0 0;
    background: url("/themes/custom/atd/images/temp/boxing-day-offer-magicband.png") no-repeat;
    background-size: 64px 55px;
    width: 64px;
    height: 55px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 64px; }
  .ticket-description__offer--256160 .ticket-description__offer-text,
  .ticket-description__offer--260799 .ticket-description__offer-text,
  .mini-tickets__offer--256160 .ticket-description__offer-text,
  .mini-tickets__offer--260799 .ticket-description__offer-text {
    margin: 0 0 0 10px;
    line-height: 1.3;
    padding: 7px 0; }

.mini-tickets__offer--256160,
.mini-tickets__offer--260799 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none !important;
  z-index: 2; }
  .mini-tickets__offer--256160 .mini-tickets__offer-img,
  .mini-tickets__offer--260799 .mini-tickets__offer-img {
    max-width: 125px;
    margin: 0;
    background: url("/themes/custom/atd/images/temp/boxing-day-offer-magicband.png") no-repeat;
    background-size: 64px 55px;
    width: 64px;
    height: 55px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 64px; }
  .mini-tickets__offer--256160 .mini-tickets__offer-text,
  .mini-tickets__offer--260799 .mini-tickets__offer-text {
    text-align: left;
    margin: 4px 5px 3px 5px;
    line-height: 1.2; }

@-webkit-keyframes startrek {
  0% {
    -webkit-box-shadow: 0 0 5px 1px rgba(29, 125, 29, 0.7);
            box-shadow: 0 0 5px 1px rgba(29, 125, 29, 0.7); }
  50% {
    -webkit-box-shadow: 0 0 5px 5px rgba(29, 125, 29, 0.7);
            box-shadow: 0 0 5px 5px rgba(29, 125, 29, 0.7); }
  100% {
    -webkit-box-shadow: 0 0 5px 1px rgba(29, 125, 29, 0.7);
            box-shadow: 0 0 5px 1px rgba(29, 125, 29, 0.7); } }

@keyframes startrek {
  0% {
    -webkit-box-shadow: 0 0 5px 1px rgba(29, 125, 29, 0.7);
            box-shadow: 0 0 5px 1px rgba(29, 125, 29, 0.7); }
  50% {
    -webkit-box-shadow: 0 0 5px 5px rgba(29, 125, 29, 0.7);
            box-shadow: 0 0 5px 5px rgba(29, 125, 29, 0.7); }
  100% {
    -webkit-box-shadow: 0 0 5px 1px rgba(29, 125, 29, 0.7);
            box-shadow: 0 0 5px 1px rgba(29, 125, 29, 0.7); } }

body .featured-hotels--255828 {
  position: relative;
  pointer-events: none; }
  body .featured-hotels--255828 a {
    pointer-events: none; }
  body .featured-hotels--255828::after {
    content: 'Coming soon!';
    position: absolute;
    top: -5px;
    right: -5px;
    color: #fff;
    background: #f04326;
    text-transform: uppercase;
    font-weight: bold;
    padding: 2px 5px 0;
    font-size: 1.1rem;
    border-radius: 4px; }
    @media screen and (min-width: 64em) {
      body .featured-hotels--255828::after {
        border-radius: 0 0 0 4px;
        top: 0;
        right: 0;
        font-size: 1.3rem;
        max-width: 105px;
        text-align: center;
        line-height: 1.2;
        padding: 7px 10px 5px; } }
  body .featured-hotels--255828 .featured-hotels__wrapper .featured-hotels__subtitle a {
    background: grey;
    pointer-events: none; }

.customer-accounts__breaking-news {
  display: block;
  padding: 5px 10px;
  color: #fff !important;
  background: red !important;
  width: 100%; }
  @media (min-width: 768px) {
    .customer-accounts__breaking-news {
      font-size: 20px; } }

.customer-accounts__breaking-news__link {
  display: block;
  color: #fff !important;
  line-height: 2; }
  @media (min-width: 768px) {
    .customer-accounts__breaking-news__link {
      float: right;
      font-size: 16px; } }
  .customer-accounts__breaking-news__link:hover {
    text-decoration: underline; }

.customer-accounts__breaking-news__info {
  color: red !important;
  background: #fff !important;
  display: inline-block;
  height: 1.3em;
  width: 1.3em;
  border-radius: 50%;
  font-weight: bold;
  text-align: center;
  margin: 3px 5px 0 0; }

/*# sourceMappingURL=../sourcemap/atd.css.map */
