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

body {
  overflow-anchor: none;
  height: 100%; }

h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address,
cite, code, del, dfn, img, q, s, samp, small, strike, sub,
sup, tt, var, dd, dl, dt, li, ol, ul, fieldset, form, label, legend,
button, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-style: normal;
  font-size: 100%;
  line-height: 1; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

ol, ul {
  list-style: none; }

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: ""; }

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

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

audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1; }

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

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0;
  -ms-interpolation-mode: bicubic; }

button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle; }

button,
input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-border-radius: 0;
  line-height: normal; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

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

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button; }

input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

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

textarea {
  overflow: auto;
  vertical-align: top; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/**
 * Flex Grid -
 * Version: 0.3.2
 *
 * Simple grid built with flex box and sass.
 *
 * Matthew Simo - matthew.a.simo@gmail.com
 */
/**
 * Grid setup
 *
 * The grid will calculate dimensions based on these two variables:
 * $fg-columns will inform the grid loops how many columns there should be.
 * $fg-gutter will inform the grid loops how big eac column's gutters should be.
 *
 * The grid will name columns, rows, offsets based on these three variables:
 * $fg-class-row string used for the row class
 * $fg-class-col string used for the column class
 * $fg-class-off string used for the offset class
 */
/**
 * Break point namespace object
 *
 * Set the default namespace object with these defaults with the
 * understanding that you can pass in whatever you might require for your site.
 *
 * $fg-breakpoints is a Sass list with nested lists inside. Each sub list defines two things.
 * 1. The namespace for that breakpoint. (Required) (i.e. xs, sm, md, lg)
 * 2. The min-width measurement for the breakpoint for that namespace. (i.e. 48em, 62em, 75em)
 *
 * Note: These should be in the proper order (at least till libsass handles map keys properly).
 *
 * Note: If the measurement is left out then it will be skipped when generating
 * the grid and applied to global styles.
 *
 */
/**
 * Class Name Defaults
 *
 * Define class names for columns, rows and offsets in case compatibility with other
 * libraries is necessary.


/**
 * Calculate column size percentage
 */
/**
 * Spacing mixin to create uniform margin/padding
 */
/**
 * Row wrapper class, flex box parent.
 */
.row {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: -0.5rem;
  margin-right: -0.5rem; }

.col-xs, .col-sm, .col-md, .col-lg, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-grow: 0;
  flex-shrink: 0;
  padding-left: 0.5rem;
  padding-right: 0.5rem; }

.col-xs, .col-sm, .col-md, .col-lg {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%; }

/**
 * Generate a set of grid column classes using a namespace
 *
 * .col-[namespace] for intelligent column division
 * .col-[namespace]-[number] for a column that covers a specific number of columns (e.g. 1-12 by default)
 * .off-[namespace]-[number] for pushing a col a specific number of columns (e.g. 1-11 by default)
 */
/**
 * Build the grid in two steps, to help minimize file size
 * Step 1, for each namespace, create the grid-base
 * Step 2, for each namespace, wrap the col width/offset measurements in their breakpoint media query
 */
.col-xs-1 {
  flex-basis: 8.3333333333%;
  max-width: 8.3333333333%; }

.col-xs-2 {
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%; }

.col-xs-3 {
  flex-basis: 25%;
  max-width: 25%; }

.col-xs-4 {
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%; }

.col-xs-5 {
  flex-basis: 41.6666666667%;
  max-width: 41.6666666667%; }

.col-xs-6 {
  flex-basis: 50%;
  max-width: 50%; }

.col-xs-7 {
  flex-basis: 58.3333333333%;
  max-width: 58.3333333333%; }

.col-xs-8 {
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%; }

.col-xs-9 {
  flex-basis: 75%;
  max-width: 75%; }

.col-xs-10 {
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%; }

.col-xs-11 {
  flex-basis: 91.6666666667%;
  max-width: 91.6666666667%; }

.col-xs-12 {
  flex-basis: 100%;
  max-width: 100%; }

.off-xs-1 {
  margin-left: 8.3333333333%; }

.off-xs-2 {
  margin-left: 16.6666666667%; }

.off-xs-3 {
  margin-left: 25%; }

.off-xs-4 {
  margin-left: 33.3333333333%; }

.off-xs-5 {
  margin-left: 41.6666666667%; }

.off-xs-6 {
  margin-left: 50%; }

.off-xs-7 {
  margin-left: 58.3333333333%; }

.off-xs-8 {
  margin-left: 66.6666666667%; }

.off-xs-9 {
  margin-left: 75%; }

.off-xs-10 {
  margin-left: 83.3333333333%; }

.off-xs-11 {
  margin-left: 91.6666666667%; }

@media only screen and (min-width: 681px) {
  .col-sm-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%; }
  .col-sm-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%; }
  .col-sm-3 {
    flex-basis: 25%;
    max-width: 25%; }
  .col-sm-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%; }
  .col-sm-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%; }
  .col-sm-6 {
    flex-basis: 50%;
    max-width: 50%; }
  .col-sm-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%; }
  .col-sm-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%; }
  .col-sm-9 {
    flex-basis: 75%;
    max-width: 75%; }
  .col-sm-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%; }
  .col-sm-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%; }
  .col-sm-12 {
    flex-basis: 100%;
    max-width: 100%; }
  .off-sm-1 {
    margin-left: 8.3333333333%; }
  .off-sm-2 {
    margin-left: 16.6666666667%; }
  .off-sm-3 {
    margin-left: 25%; }
  .off-sm-4 {
    margin-left: 33.3333333333%; }
  .off-sm-5 {
    margin-left: 41.6666666667%; }
  .off-sm-6 {
    margin-left: 50%; }
  .off-sm-7 {
    margin-left: 58.3333333333%; }
  .off-sm-8 {
    margin-left: 66.6666666667%; }
  .off-sm-9 {
    margin-left: 75%; }
  .off-sm-10 {
    margin-left: 83.3333333333%; }
  .off-sm-11 {
    margin-left: 91.6666666667%; } }

@media only screen and (min-width: 961px) {
  .col-md-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%; }
  .col-md-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%; }
  .col-md-3 {
    flex-basis: 25%;
    max-width: 25%; }
  .col-md-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%; }
  .col-md-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%; }
  .col-md-6 {
    flex-basis: 50%;
    max-width: 50%; }
  .col-md-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%; }
  .col-md-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%; }
  .col-md-9 {
    flex-basis: 75%;
    max-width: 75%; }
  .col-md-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%; }
  .col-md-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%; }
  .col-md-12 {
    flex-basis: 100%;
    max-width: 100%; }
  .off-md-1 {
    margin-left: 8.3333333333%; }
  .off-md-2 {
    margin-left: 16.6666666667%; }
  .off-md-3 {
    margin-left: 25%; }
  .off-md-4 {
    margin-left: 33.3333333333%; }
  .off-md-5 {
    margin-left: 41.6666666667%; }
  .off-md-6 {
    margin-left: 50%; }
  .off-md-7 {
    margin-left: 58.3333333333%; }
  .off-md-8 {
    margin-left: 66.6666666667%; }
  .off-md-9 {
    margin-left: 75%; }
  .off-md-10 {
    margin-left: 83.3333333333%; }
  .off-md-11 {
    margin-left: 91.6666666667%; } }

@media only screen and (min-width: 1281px) {
  .col-lg-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%; }
  .col-lg-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%; }
  .col-lg-3 {
    flex-basis: 25%;
    max-width: 25%; }
  .col-lg-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%; }
  .col-lg-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%; }
  .col-lg-6 {
    flex-basis: 50%;
    max-width: 50%; }
  .col-lg-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%; }
  .col-lg-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%; }
  .col-lg-9 {
    flex-basis: 75%;
    max-width: 75%; }
  .col-lg-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%; }
  .col-lg-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%; }
  .col-lg-12 {
    flex-basis: 100%;
    max-width: 100%; }
  .off-lg-1 {
    margin-left: 8.3333333333%; }
  .off-lg-2 {
    margin-left: 16.6666666667%; }
  .off-lg-3 {
    margin-left: 25%; }
  .off-lg-4 {
    margin-left: 33.3333333333%; }
  .off-lg-5 {
    margin-left: 41.6666666667%; }
  .off-lg-6 {
    margin-left: 50%; }
  .off-lg-7 {
    margin-left: 58.3333333333%; }
  .off-lg-8 {
    margin-left: 66.6666666667%; }
  .off-lg-9 {
    margin-left: 75%; }
  .off-lg-10 {
    margin-left: 83.3333333333%; }
  .off-lg-11 {
    margin-left: 91.6666666667%; } }

.qtip {
  position: absolute;
  left: -28000px;
  top: -28000px;
  display: none;
  max-width: 280px;
  min-width: 50px; }

.qtip-content {
  position: relative;
  padding: 5px 9px;
  overflow: hidden;
  text-align: left;
  word-wrap: break-word; }

.qtip-titlebar {
  position: relative;
  padding: 5px 35px 5px 10px;
  overflow: hidden;
  border-width: 0 0 1px;
  font-weight: bold; }

.qtip-titlebar + .qtip-content {
  border-top-width: 0 !important; }

/* Default close button class */
.qtip-close {
  position: absolute;
  right: 25px;
  top: 25px;
  cursor: pointer;
  outline: medium none;
  border-width: 1px;
  border-style: solid;
  border-color: transparent; }

.qtip-titlebar .qtip-close {
  right: 4px;
  top: 50%;
  margin-top: -9px; }

* html .qtip-titlebar .qtip-close {
  top: 16px; }

/* IE fix */
.qtip-titlebar .ui-icon,
.qtip-icon .ui-icon {
  display: block;
  text-indent: -1000em;
  direction: ltr;
  vertical-align: middle; }

.qtip-icon,
.qtip-icon .ui-icon {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  text-decoration: none; }

.qtip-icon .ui-icon {
  width: 18px;
  height: 14px;
  text-align: center;
  text-indent: -9999px;
  font: normal bold 10px/13px Tahoma, sans-serif;
  color: inherit;
  background: transparent none no-repeat -100em -100em;
  border: 1px solid white;
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 34.15614236509759%;
  width: 10px;
  height: 10px; }

/* Default tooltip style */
.qtip-default {
  border-width: 1px;
  border-style: solid;
  border-color: #F1D031;
  background-color: #FFFFA3;
  color: #555; }

.qtip-default .qtip-titlebar {
  background-color: #FFEF93; }

.qtip-default .qtip-icon {
  border-color: #CCC;
  background: #F1F1F1;
  color: #777; }

.qtip-default .qtip-titlebar .qtip-close {
  border-color: #AAA;
  color: #111; }

/*! Light tooltip style */
.qtip-light {
  background-color: white;
  border-color: #E2E2E2;
  color: #454545; }

.qtip-light .qtip-titlebar {
  background-color: #f1f1f1; }

/*! Dark tooltip style */
.qtip-dark {
  background-color: #505050;
  border-color: #303030;
  color: #f3f3f3; }

.qtip-dark .qtip-titlebar {
  background-color: #404040; }

.qtip-dark .qtip-icon {
  border-color: #444; }

.qtip-dark .qtip-titlebar .ui-state-hover {
  border-color: #303030; }

/*! Cream tooltip style */
.qtip-cream {
  background-color: #FBF7AA;
  border-color: #F9E98E;
  color: #A27D35; }

.qtip-cream .qtip-titlebar {
  background-color: #F0DE7D; }

.qtip-cream .qtip-close .qtip-icon {
  background-position: -82px 0; }

/*! Red tooltip style */
.qtip-red {
  background-color: #F78B83;
  border-color: #D95252;
  color: #912323; }

.qtip-red .qtip-titlebar {
  background-color: #F06D65; }

.qtip-red .qtip-close .qtip-icon {
  background-position: -102px 0; }

.qtip-red .qtip-icon {
  border-color: #D95252; }

.qtip-red .qtip-titlebar .ui-state-hover {
  border-color: #D95252; }

/*! Green tooltip style */
.qtip-green {
  background-color: #CAED9E;
  border-color: #90D93F;
  color: #3F6219; }

.qtip-green .qtip-titlebar {
  background-color: #B0DE78; }

.qtip-green .qtip-close .qtip-icon {
  background-position: -42px 0; }

/*! Blue tooltip style */
.qtip-blue {
  background-color: #E5F6FE;
  border-color: #ADD9ED;
  color: #5E99BD; }

.qtip-blue .qtip-titlebar {
  background-color: #D0E9F5; }

.qtip-blue .qtip-close .qtip-icon {
  background-position: -2px 0; }

/* Add shadows to your tooltips in: FF3+, Chrome 2+, Opera 10.6+, IE9+, Safari 2+ */
.qtip-shadow {
  -webkit-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15); }

/* Add rounded corners to your tooltips in: FF3+, Chrome 2+, Opera 10.6+, IE9+, Safari 2+ */
.qtip-rounded,
.qtip-tipsy,
.qtip-bootstrap {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px; }

/* Youtube tooltip style */
.qtip-youtube {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 0 3px #333;
  -moz-box-shadow: 0 0 3px #333;
  box-shadow: 0 0 3px #333;
  color: white;
  border-width: 0;
  background: #4A4A4A;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #4A4A4A), color-stop(100%, black));
  background-image: -webkit-linear-gradient(top, #4A4A4A 0, black 100%);
  background-image: -moz-linear-gradient(top, #4A4A4A 0, black 100%);
  background-image: -ms-linear-gradient(top, #4A4A4A 0, black 100%);
  background-image: -o-linear-gradient(top, #4A4A4A 0, black 100%); }

.qtip-youtube .qtip-titlebar {
  background-color: #4A4A4A;
  background-color: rgba(0, 0, 0, 0); }

.qtip-youtube .qtip-content {
  padding: .75em;
  font: 12px arial, sans-serif;
  filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr=#4a4a4a, EndColorStr=#000000);
  -ms-filter: "progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#4a4a4a,EndColorStr=#000000);"; }

.qtip-youtube .qtip-icon {
  border-color: #222; }

.qtip-youtube .qtip-titlebar .ui-state-hover {
  border-color: #303030; }

/* jQuery TOOLS Tooltip style */
.qtip-jtools {
  background: #232323;
  background: rgba(0, 0, 0, 0.7);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#717171), to(#232323));
  background-image: -moz-linear-gradient(top, #717171, #232323);
  background-image: -webkit-linear-gradient(top, #717171, #232323);
  background-image: -ms-linear-gradient(top, #717171, #232323);
  background-image: -o-linear-gradient(top, #717171, #232323);
  border: 2px solid #ddd;
  border: 2px solid #f1f1f1;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 0 12px #333;
  -moz-box-shadow: 0 0 12px #333;
  box-shadow: 0 0 12px #333; }

/* IE Specific */
.qtip-jtools .qtip-titlebar {
  background-color: transparent;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#717171, endColorstr=#4A4A4A);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#717171,endColorstr=#4A4A4A)"; }

.qtip-jtools .qtip-content {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4A4A4A, endColorstr=#232323);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#4A4A4A,endColorstr=#232323)"; }

.qtip-jtools .qtip-titlebar,
.qtip-jtools .qtip-content {
  background: transparent;
  color: white;
  border: 0 dashed transparent; }

.qtip-jtools .qtip-icon {
  border-color: #555; }

.qtip-jtools .qtip-titlebar .ui-state-hover {
  border-color: #333; }

/* Cluetip style */
.qtip-cluetip {
  -webkit-box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4);
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4);
  background-color: #D9D9C2;
  color: #111;
  border: 0 dashed transparent; }

.qtip-cluetip .qtip-titlebar {
  background-color: #87876A;
  color: white;
  border: 0 dashed transparent; }

.qtip-cluetip .qtip-icon {
  border-color: #808064; }

.qtip-cluetip .qtip-titlebar .ui-state-hover {
  border-color: #696952;
  color: #696952; }

/* Tipsy style */
.qtip-tipsy {
  background: black;
  background: rgba(0, 0, 0, 0.87);
  color: white;
  border: 0 solid transparent;
  font-size: 11px;
  font-family: 'Lucida Grande', sans-serif;
  font-weight: bold;
  line-height: 16px;
  text-shadow: 0 1px black; }

.qtip-tipsy .qtip-titlebar {
  padding: 6px 35px 0 10;
  background-color: transparent; }

.qtip-tipsy .qtip-content {
  padding: 6px 10; }

.qtip-tipsy .qtip-icon {
  border-color: #222;
  text-shadow: none; }

.qtip-tipsy .qtip-titlebar .ui-state-hover {
  border-color: #303030; }

/* Tipped style */
.qtip-tipped {
  border: 3px solid #959FA9;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background-color: #F9F9F9;
  color: #454545;
  font-weight: normal;
  font-family: serif; }

.qtip-tipped .qtip-titlebar {
  border-bottom-width: 0;
  color: white;
  background: #3A79B8;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#3A79B8), to(#2E629D));
  background-image: -webkit-linear-gradient(top, #3A79B8, #2E629D);
  background-image: -moz-linear-gradient(top, #3A79B8, #2E629D);
  background-image: -ms-linear-gradient(top, #3A79B8, #2E629D);
  background-image: -o-linear-gradient(top, #3A79B8, #2E629D);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#3A79B8, endColorstr=#2E629D);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#3A79B8,endColorstr=#2E629D)"; }

.qtip-tipped .qtip-icon {
  border: 2px solid #285589;
  background: #285589; }

.qtip-tipped .qtip-icon .ui-icon {
  background-color: #FBFBFB;
  color: #555; }

/**
 * Twitter Bootstrap style.
 *
 * Tested with IE 8, IE 9, Chrome 18, Firefox 9, Opera 11.
 * Does not work with IE 7.
 */
.qtip-bootstrap {
  /** Taken from Bootstrap body */
  font-size: 14px;
  line-height: 20px;
  color: #333333;
  /** Taken from Bootstrap .popover */
  padding: 1px;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box; }

.qtip-bootstrap .qtip-titlebar {
  /** Taken from Bootstrap .popover-title */
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0; }

.qtip-bootstrap .qtip-titlebar .qtip-close {
  right: 11px;
  top: 45%;
  border-style: none; }

.qtip-bootstrap .qtip-content {
  /** Taken from Bootstrap .popover-content */
  padding: 9px 14px; }

.qtip-bootstrap .qtip-icon {
  background: transparent; }

.qtip-bootstrap .qtip-icon .ui-icon {
  width: auto;
  height: auto;
  /* Taken from Bootstrap .close */
  float: right;
  font-size: 20px;
  font-weight: bold;
  line-height: 18px;
  color: #000000;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.2;
  filter: alpha(opacity=20); }

.qtip-bootstrap .qtip-icon .ui-icon:hover {
  /* Taken from Bootstrap .close:hover */
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
  filter: alpha(opacity=40); }

/* IE9 fix - removes all filters */
.qtip:not(.ie9haxors) div.qtip-content,
.qtip:not(.ie9haxors) div.qtip-titlebar {
  filter: none;
  -ms-filter: none; }

/* Tips plugin */
.qtip .qtip-tip {
  margin: 0 auto;
  overflow: hidden;
  z-index: 10; }

.qtip .qtip-tip,
.qtip .qtip-tip .qtip-vml {
  position: absolute;
  color: #123456;
  background: transparent;
  border: 0 dashed transparent; }

.qtip .qtip-tip canvas {
  top: 0;
  left: 0; }

.qtip .qtip-tip .qtip-vml {
  behavior: url(#default#VML);
  display: inline-block;
  visibility: visible; }

/* Modal plugin */
#qtip-overlay {
  position: fixed;
  left: -10000em;
  top: -10000em; }

/* Applied to modals with show.modal.blur set to true */
#qtip-overlay.blurs {
  cursor: pointer; }

/* Change opacity of overlay here */
#qtip-overlay div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  filter: alpha(opacity=50);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; }

/* IE6 Modal plugin fix */
.qtipmodal-ie6fix {
  position: absolute !important; }

/*
Version: 3.4.0 Timestamp: Tue May 14 08:27:33 PDT 2013
*/
.select2-container {
  margin: 5px 0 3px 0;
  position: relative;
  display: inline-block;
  /* inline-block for ie7 */
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  min-width: 100%; }

.select2-container,
.select2-drop,
.select2-search,
.select2-choice,
.select2-search input {
  /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.

    More Info : http://www.quirksmode.org/css/box.html
  */
  box-sizing: border-box;
  /* css3 */ }

.select2-container .select2-choice {
  display: block;
  height: 48px;
  padding: 0 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid #DDDDDD;
  white-space: nowrap;
  line-height: 48px;
  text-decoration: none;
  text-transform: none;
  background-color: #FFFFFF;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  font-size: 14px;
  font-size: 1.4rem;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }

.select2-container.select2-allowclear .select2-choice span {
  margin-right: 42px; }

.select2-container .select2-choice span {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; }

.select2-container .select2-choice abbr {
  display: none;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 24px;
  top: 8px;
  font-size: 1px;
  text-decoration: none;
  border: 0;
  background: url("../../img/select2.png") right top no-repeat;
  cursor: pointer;
  outline: 0; }

.select2-container.select2-allowclear .select2-choice abbr {
  display: inline-block; }

.select2-container .select2-choice abbr:hover {
  background-position: right -11px;
  cursor: pointer; }

.select2-drop-mask {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9999; }

.select2-drop-active {
  z-index: 9999; }

.select2-drop {
  width: 100%;
  padding-top: 3px;
  position: absolute;
  z-index: 9999;
  top: 100%;
  background: #FFFFFF;
  border-top: 0;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border: 1px solid #DDDDDD; }

.select2-drop-above {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3); }

.select2-drop-auto-width {
  border-top: 1px solid #d4d4d4;
  width: auto; }

.select2-drop-auto-width .select2-search {
  padding-top: 4px; }

.select2-container .select2-choice div {
  display: inline-block;
  width: 21px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0; }

.select2-container .select2-choice div b {
  display: block;
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 41.61882893226177%;
  width: 10px;
  height: 10px;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  position: relative; }

.select2-container-disabled .select2-choice div b {
  display: none; }

.select2-search {
  display: inline-block;
  width: 100%;
  min-height: 26px;
  margin: 5px 0 0 0;
  padding-left: 4px;
  padding-right: 4px;
  position: relative;
  z-index: 10000;
  white-space: nowrap; }

.select2-search input {
  width: 100%;
  height: auto !important;
  min-height: 26px;
  padding: 4px 20px 4px 5px;
  margin: 0;
  outline: 0; }

.select2-search input.select2-active {
  background: #fff url("../../img/select2-spinner.gif") no-repeat 100%;
  background: url("../../img/select2-spinner.gif") no-repeat 100%, linear-gradient(to bottom, #ffffff 85%, #eeeeee 99%); }

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
  outline: none; }

.select2-dropdown-open .select2-choice,
.select2-drop-above .select2-choice,
.select2-container.select2-container-active .select2-choice {
  border: 1px solid #0795E6;
  -webkit-box-shadow: 0 0 4px 0 #A6D7F5;
  -moz-box-shadow: 0 0 4px 0 #A6D7F5;
  box-shadow: 0 0 4px 0 #A6D7F5; }

.select2-dropdown-open .select2-choice div {
  background: transparent;
  border-left: none;
  filter: none; }

/* results */
.select2-results {
  max-height: 300px;
  padding: 0;
  margin: 0;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

.select2-results ul.select2-result-sub {
  margin: 0;
  padding-left: 0; }

.select2-results ul.select2-result-sub > li .select2-result-label {
  padding-left: 20px; }

.select2-results ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 40px; }

.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 60px; }

.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 80px; }

.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 100px; }

.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 110px; }

.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 120px; }

.select2-results li {
  list-style: none;
  display: list-item;
  background-image: none;
  color: #666666; }

.select2-results li.select2-result-with-children > .select2-result-label {
  font-weight: bold; }

.select2-results .select2-result-label {
  padding: 15px 10px 18px 19px;
  margin: 0;
  cursor: pointer;
  user-select: none;
  font-size: 14px;
  font-size: 1.4rem; }

.select2-results .select2-highlighted {
  background: #F5F5F5;
  color: #222222; }

.select2-results li em {
  background: #feffde;
  font-style: normal; }

.select2-results .select2-highlighted em {
  background: transparent; }

.select2-results .select2-highlighted ul {
  background: white;
  color: #000000; }

.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-selection-limit {
  display: list-item; }

/*
disabled look for disabled choices in the results dropdown
*/
.select2-results .select2-disabled.select2-highlighted {
  color: #666666;
  background: #f4f4f4;
  display: list-item;
  cursor: default; }

.select2-results .select2-disabled {
  background: #f4f4f4;
  display: list-item;
  cursor: default; }

.select2-results .select2-selected {
  display: none; }

.select2-more-results.select2-active {
  background: #f4f4f4 url("../../img/select2-spinner.gif") no-repeat 100%; }

.select2-more-results {
  background: #f4f4f4;
  display: list-item; }

/* disabled styles */
.select2-container.select2-container-disabled .select2-choice {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #DDDDDD;
  cursor: default; }

.select2-container.select2-container-disabled .select2-choice div {
  background-color: #f4f4f4;
  background-image: none;
  border-left: 0; }

.select2-container.select2-container-disabled .select2-choice abbr {
  display: none; }

/* multiselect */
.select2-container-multi .select2-choices {
  height: auto !important;
  height: 1%;
  margin: 0;
  padding: 0;
  position: relative;
  border: 1px solid #d4d4d4;
  cursor: text;
  overflow: hidden;
  background-color: #FFFFFF;
  background-image: linear-gradient(to bottom, #eeeeee 1%, #ffffff 15%); }

.select2-locked {
  padding: 3px 5px 3px 5px !important; }

.select2-container-multi .select2-choices {
  min-height: 26px; }

.select2-container-multi.select2-container-active .select2-choices {
  outline: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }

.select2-container-multi .select2-choices li {
  float: left;
  list-style: none; }

.select2-container-multi .select2-choices .select2-search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap; }

.select2-container-multi .select2-choices .select2-search-field input {
  padding: 5px;
  margin: 1px 0;
  font-family: sans-serif;
  font-size: 100%;
  color: #666666;
  outline: 0;
  border: 0;
  box-shadow: none;
  background: transparent !important; }

.select2-container-multi .select2-choices .select2-search-field input.select2-active {
  background: #fff url("../../img/select2-spinner.gif") no-repeat 100% !important; }

.select2-default {
  color: #999999; }

.select2-container-multi .select2-choices .select2-search-choice {
  padding: 3px 5px 3px 18px;
  margin: 3px 0 3px 5px;
  position: relative;
  line-height: 13px;
  color: #333;
  cursor: default;
  border: 1px solid #d4d4d4;
  border-radius: 3px;
  box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  background-clip: padding-box;
  user-select: none;
  background-color: #e4e4e4;
  background-image: linear-gradient(to bottom, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%); }

.select2-container-multi .select2-choices .select2-search-choice span {
  cursor: default; }

.select2-container-multi .select2-choices .select2-search-choice-focus {
  background: #d4d4d4; }

.select2-search-choice-close {
  display: block;
  width: 12px;
  height: 13px;
  position: absolute;
  right: 3px;
  top: 4px;
  font-size: 1px;
  outline: none;
  background: url("../../img/select2.png") right top no-repeat; }

.select2-container-multi .select2-search-choice-close {
  left: 3px; }

.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
  background-position: right -11px; }

.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
  background-position: right -11px; }

/* disabled styles */
.select2-container-multi.select2-container-disabled .select2-choices {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #DDDDDD;
  cursor: default; }

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
  padding: 3px 5px 3px 5px;
  border: 1px solid #DDDDDD;
  background-image: none;
  background-color: #f4f4f4; }

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {
  display: none;
  background: none; }

/* end multiselect */
.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
  text-decoration: underline; }

.select2-offscreen, .select2-offscreen:focus {
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  border: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: absolute;
  outline: 0;
  left: 0px; }

.select2-display-none {
  display: none; }

.select2-measure-scrollbar {
  position: absolute;
  top: -10000px;
  left: -10000px;
  width: 100px;
  height: 100px;
  overflow: scroll; }

.validation-error .select2-choice,
.validation-error .select2-container .select2-choice {
  border-color: #E21010;
  background-color: #FCE7E7; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-perspective: 2000;
  -webkit-backface-visibility: hidden; }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-item {
  display: none; }
  .slick-initialized .slick-item {
    display: block; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/* Slider */
/* Arrows */
.slick-prev,
.slick-next {
  z-index: 3;
  position: absolute;
  display: block;
  height: 44px;
  width: 44px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.46; }
  .slick-prev:before,
  .slick-next:before {
    font-size: 20px;
    line-height: 1; }

.slick-prev {
  left: -25px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px; }
  .slick-prev:before {
    content: '';
    background: url("../../css/svg/sprite.css.svg") no-repeat;
    background-position: 0 45.843091334894616%;
    width: 44px;
    height: 44px;
    display: block; }
    [dir="rtl"] .slick-prev:before {
      content: '';
      background: url("../../css/svg/sprite.css.svg") no-repeat;
      background-position: 0 65.1639344262295%;
      width: 44px;
      height: 44px; }

.slick-next {
  right: -25px; }
  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto; }
  .slick-next:before {
    content: '';
    background: url("../../css/svg/sprite.css.svg") no-repeat;
    background-position: 0 65.1639344262295%;
    width: 44px;
    height: 44px;
    display: block; }
    [dir="rtl"] .slick-next:before {
      content: '';
      background: url("../../css/svg/sprite.css.svg") no-repeat;
      background-position: 0 45.843091334894616%;
      width: 44px;
      height: 44px; }

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 2px;
    width: 30px;
    margin: 0 2px 0 3px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 2px;
      width: 30px;
      outline: none;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 1; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        width: 30px;
        height: 2px;
        background: #222222;
        line-height: 20px;
        text-align: center;
        opacity: 0.46; }
    .slick-dots li.slick-active button:before {
      color: black;
      opacity: 0.75; }

.module:not(.module--product-carousel) {
  /* w -> 680px */ }
  .module:not(.module--product-carousel) .slick-track {
    /* w 681px -> */ }
    @media (min-width: 681px) {
      .module:not(.module--product-carousel) .slick-track {
        line-height: 0px; } }
  .module:not(.module--product-carousel) .slick-dots {
    bottom: 42px;
    position: relative;
    margin-top: 26px; }
  .module:not(.module--product-carousel) .slick-dotted.slick-slider {
    margin-bottom: 0px; }
  .module:not(.module--product-carousel) .slick-prev {
    left: 17px; }
    .module:not(.module--product-carousel) .slick-prev:before {
      background: url("../../css/svg/sprite.css.svg") no-repeat;
      background-position: 0 50.995316159250585%;
      width: 44px;
      height: 44px; }
  .module:not(.module--product-carousel) .slick-next {
    right: 17px; }
    .module:not(.module--product-carousel) .slick-next:before {
      background: url("../../css/svg/sprite.css.svg") no-repeat;
      background-position: 0 70.31615925058549%;
      width: 44px;
      height: 44px; }
  @media (max-width: 680px) {
    .module:not(.module--product-carousel) .slick-prev, .module:not(.module--product-carousel) .slick-next {
      top: 35%; } }

html {
  box-sizing: border-box;
  font-size: 62.5%;
  /* Sets up the Base 10px stuff */ }

html.noscroll {
  position: fixed;
  overflow-y: scroll;
  width: 100%; }

body {
  padding: 0;
  margin: 0;
  line-height: 20px;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "Noto Sans", sans-serif;
  color: #222222; }
  @supports (-webkit-overflow-scrolling: touch) {
    body {
      /* CSS specific to iOS devices */
      /* fix event bubbling */
      cursor: pointer;
      -webkit-tap-highlight-color: transparent; } }

/* Typography Key */
h1 {
  line-height: 42px;
  font-size: 36px;
  font-size: 3.6rem; }

h2 {
  line-height: 36px;
  font-size: 30px;
  font-size: 3rem; }

h3 {
  line-height: 30px;
  font-size: 24px;
  font-size: 2.4rem; }

h4 {
  line-height: 27px;
  font-size: 18px;
  font-size: 1.8rem; }

h5 {
  line-height: 24px;
  font-size: 16px;
  font-size: 1.6rem; }

h6, .heading-regular {
  line-height: 24px;
  font-size: 16px;
  font-size: 1.6rem; }

h4, h5 {
  font-weight: bold; }

a {
  line-height: 20px;
  color: #222222;
  text-transform: uppercase;
  font-size: 14px;
  font-size: 1.4rem; }
  a.large {
    line-height: 27px;
    font-size: 18px;
    font-size: 1.8rem; }
  a.mid {
    line-height: 24px;
    font-size: 16px;
    font-size: 1.6rem; }
  a.no-decoration {
    text-decoration: none; }
  a:hover {
    color: #222222; }
  a.lowercase {
    text-transform: lowercase; }
  a.no-transform {
    text-transform: none; }
  a.inherit {
    text-transform: inherit; }

.back-link {
  text-transform: none;
  color: #0099EC; }
  .back-link:hover, .back-link:focus {
    color: #0099EC; }
  .back-link:before {
    content: "";
    display: inline-block;
    border: 1px solid #0099EC;
    border-bottom: 0px;
    border-right: 0px;
    width: 6px;
    height: 6px;
    vertical-align: middle;
    -webkit-transform: rotate(-45deg) scale(1);
    -ms-transform: rotate(-45deg) scale(1);
    transform: rotate(-45deg) scale(1); }

.xl-heading {
  line-height: 70px;
  font-size: 60px;
  font-size: 6rem; }

.display-text {
  line-height: 52px;
  font-size: 48px;
  font-size: 4.8rem; }

.disruptor-title {
  line-height: 60px;
  font-weight: bold;
  color: #000000;
  font-size: 40px;
  font-size: 4rem; }

.bc0, .bc1, .bc2, .bc3 {
  line-height: 20px;
  font-size: 14px;
  font-size: 1.4rem; }

.bc2, .bc3 {
  font-weight: bold; }

.bc0-large {
  line-height: 24px;
  font-size: 18px;
  font-size: 1.8rem; }

.bc1-large {
  line-height: 24px;
  font-size: 18px;
  font-size: 1.8rem; }

.price-large {
  line-height: 24px;
  font-size: 18px;
  font-size: 1.8rem; }

.note {
  line-height: 18px;
  font-size: 13px;
  font-size: 1.3rem; }

.bc1, .bc2, .bc1-large, .price-large, .note {
  color: #666666; }

.error {
  color: #E21010;
  line-height: 20px;
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem; }

.bold {
  font-weight: bold; }

.italic {
  font-style: italic; }

.left {
  float: left; }

.right {
  float: right; }

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0; }

/* qTip */
.qtip {
  padding: 40px 0;
  background: #FFFFFF;
  color: #A7A7A7;
  line-height: 20px;
  border: 1px solid #FFFFFF;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  font-size: 14px;
  font-size: 1.4rem;
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15); }
  .qtip canvas {
    display: none; }
  .qtip .qtip-content {
    max-height: 70vh;
    overflow-y: auto;
    /* w 681px -> */ }
    @media (min-width: 681px) {
      .qtip .qtip-content {
        max-height: 500px; } }

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

.breadcrumb-waymark-container:after {
  content: '';
  clear: both;
  display: block; }

/* hide content by breakpoint */
.col-xs-hidden {
  /* w -> 680px */ }
  @media (max-width: 680px) {
    .col-xs-hidden {
      display: none; } }

.col-sm-hidden {
  /* w 681px -> 960px */ }
  @media (min-width: 681px) and (max-width: 960px) {
    .col-sm-hidden {
      display: none; } }

.col-md-hidden {
  /* w 961px -> 1280px*/ }
  @media (min-width: 961px) and (max-width: 1280px) {
    .col-md-hidden {
      display: none; } }

.col-lg-hidden {
  /* w 1281px -> */ }
  @media (min-width: 1281px) {
    .col-lg-hidden {
      display: none; } }

/* hide offset by breakpoint */
.off-sm-hidden {
  /* w 681px -> */ }
  @media (min-width: 681px) {
    .off-sm-hidden {
      margin-left: 0; } }

.off-md-hidden {
  /* w 961px -> */ }
  @media (min-width: 961px) {
    .off-md-hidden {
      margin-left: 0; } }

.off-lg-hidden {
  /* w 1281px -> */ }
  @media (min-width: 1281px) {
    .off-lg-hidden {
      margin-left: 0; } }

.hidden {
  display: none !important; }

.hidden-visually {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden; }

.lazyloading, .lazyload {
  opacity: 0; }

.lazyloaded {
  opacity: 1;
  transition: opacity 300ms; }

.show {
  display: block !important; }

/* Flex grid */
.row {
  width: 100%;
  margin: 0 auto; }
  .row--grid {
    margin-left: -0.5rem;
    margin-right: -0.5rem; }

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

.align-top {
  vertical-align: top; }

.scrollable {
  overflow: auto; }

.capitalize {
  text-transform: capitalize; }

.lowercase {
  text-transform: lowercase; }

.center {
  text-align: center; }

.no-padding {
  padding: 0; }

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

.position-fixed {
  position: fixed; }

button, a {
  touch-action: manipulation; }

/* ----------------------------------------------------  PROGRESS INDICATOR */
#progress-indicator {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  background: url(../img/loader.svg) no-repeat 50% 50% white;
  opacity: 0.5;
  filter: alpha(opacity=50); }

.inProgress #progress-indicator {
  display: block; }

.inProgress .fancybox-overlay {
  background: none !important; }

/* Fancybox loader */
#fancybox-loading div {
  display: none; }

/* Slick carousel loader */
.slick-loading .slick-list {
  background: url(../img/loader.svg) no-repeat 50% 50% white; }

:disabled {
  cursor: default; }

button:active,
a:active {
  outline: none; }

.padding-left5 {
  padding-left: 5px; }

.padding-left10 {
  padding-left: 10px; }

.padding-left15 {
  padding-left: 15px; }

.padding-left20 {
  padding-left: 20px; }

.padding-left25 {
  padding-left: 25px; }

.padding-left30 {
  padding-left: 30px; }

.padding-left35 {
  padding-left: 35px; }

.padding-left40 {
  padding-left: 40px; }

.padding-right5 {
  padding-right: 5px; }

.padding-right10 {
  padding-right: 10px; }

.padding-right15 {
  padding-right: 15px; }

.padding-right20 {
  padding-right: 20px; }

.padding-right25 {
  padding-right: 25px; }

.padding-right30 {
  padding-right: 30px; }

.padding-right35 {
  padding-right: 35px; }

.padding-right40 {
  padding-right: 40px; }

.padding-top5 {
  padding-top: 5px; }

.padding-top10 {
  padding-top: 10px; }

.padding-top15 {
  padding-top: 15px; }

.padding-top20 {
  padding-top: 20px; }

.padding-top25 {
  padding-top: 25px; }

.padding-top30 {
  padding-top: 30px; }

.padding-top35 {
  padding-top: 35px; }

.padding-top40 {
  padding-top: 40px; }

.padding-bottom5 {
  padding-bottom: 5px; }

.padding-bottom10 {
  padding-bottom: 10px; }

.padding-bottom15 {
  padding-bottom: 15px; }

.padding-bottom20 {
  padding-bottom: 20px; }

.padding-bottom25 {
  padding-bottom: 25px; }

.padding-bottom30 {
  padding-bottom: 30px; }

.padding-bottom35 {
  padding-bottom: 35px; }

.padding-bottom40 {
  padding-bottom: 40px; }

.margin-left5 {
  margin-left: 5px; }

.margin-left10 {
  margin-left: 10px; }

.margin-left15 {
  margin-left: 15px; }

.margin-left20 {
  margin-left: 20px; }

.margin-left25 {
  margin-left: 25px; }

.margin-left30 {
  margin-left: 30px; }

.margin-left35 {
  margin-left: 35px; }

.margin-left40 {
  margin-left: 40px; }

.margin-right5 {
  margin-right: 5px; }

.margin-right10 {
  margin-right: 10px; }

.margin-right15 {
  margin-right: 15px; }

.margin-right20 {
  margin-right: 20px; }

.margin-right25 {
  margin-right: 25px; }

.margin-right30 {
  margin-right: 30px; }

.margin-right35 {
  margin-right: 35px; }

.margin-right40 {
  margin-right: 40px; }

.margin-top5 {
  margin-top: 5px; }

.margin-top10 {
  margin-top: 10px; }

.margin-top15 {
  margin-top: 15px; }

.margin-top20 {
  margin-top: 20px; }

.margin-top25 {
  margin-top: 25px; }

.margin-top30 {
  margin-top: 30px; }

.margin-top35 {
  margin-top: 35px; }

.margin-top40 {
  margin-top: 40px; }

.margin-bottom5 {
  margin-bottom: 5px; }

.margin-bottom10 {
  margin-bottom: 10px; }

.margin-bottom15 {
  margin-bottom: 15px; }

.margin-bottom20 {
  margin-bottom: 20px; }

.margin-bottom25 {
  margin-bottom: 25px; }

.margin-bottom30 {
  margin-bottom: 30px; }

.margin-bottom35 {
  margin-bottom: 35px; }

.margin-bottom40 {
  margin-bottom: 40px; }

.max-height28 {
  max-height: 28px; }

.max-height56 {
  max-height: 56px; }

.max-height84 {
  max-height: 84px; }

.max-height112 {
  max-height: 112px; }

.max-height140 {
  max-height: 140px; }

.max-height168 {
  max-height: 168px; }

.max-height196 {
  max-height: 196px; }

.max-height224 {
  max-height: 224px; }

.max-height252 {
  max-height: 252px; }

.max-height280 {
  max-height: 280px; }

.max-height308 {
  max-height: 308px; }

.max-height336 {
  max-height: 336px; }

.max-height364 {
  max-height: 364px; }

.max-height392 {
  max-height: 392px; }

.max-height420 {
  max-height: 420px; }

.max-height448 {
  max-height: 448px; }

.max-height476 {
  max-height: 476px; }

.max-height504 {
  max-height: 504px; }

.max-height532 {
  max-height: 532px; }

.max-height560 {
  max-height: 560px; }

.icon {
  display: block; }

.ic-play-btn {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 7.352941176470588%;
  width: 120px;
  height: 120px; }

.ic-pause-btn {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 0;
  width: 120px;
  height: 120px; }

.ic-account {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 14.05152224824356%;
  width: 44px;
  height: 44px; }

.ic-my-disney-gallery {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 56.362579895409645%;
  width: 35px;
  height: 31px; }

.ic-account-sm {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 16.406701328711726%;
  width: 14px;
  height: 21px; }

.ic-add {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 17.548906789413117%;
  width: 14px;
  height: 14px; }

.ic-arrow-left-round-small {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 18.524970963995354%;
  width: 30px;
  height: 30px; }

.ic-back-to-top {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 20.724465558194776%;
  width: 68px;
  height: 68px; }

.ic_bag {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 24.414519906323186%;
  width: 44px;
  height: 44px; }

.ic-bag-sm {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 26.632004621606008%;
  width: 18px;
  height: 21px; }

.ic-clear {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 29.68384074941452%;
  width: 44px;
  height: 44px; }

.ic-close {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 32.259953161592506%;
  width: 44px;
  height: 44px; }

.ic-close-sm {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 34.15614236509759%;
  width: 10px;
  height: 10px; }

.ic-dn {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 37.76346604215457%;
  width: 44px;
  height: 44px; }

.ic-dropdown-blue {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 41.179839633447884%;
  width: 8px;
  height: 6px; }

.ic-dropdown-grey {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 41.61882893226177%;
  width: 10px;
  height: 10px; }

.ic-drop-circle {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 40.0116144018583%;
  width: 30px;
  height: 30px; }

.ic-info {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 43.350604490500864%;
  width: 15px;
  height: 15px; }

.ic-info-error {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 44.21416234887737%;
  width: 15px;
  height: 15px; }

.ic-left-black {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 45.843091334894616%;
  width: 44px;
  height: 44px; }

.ic-left-white {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 50.995316159250585%;
  width: 44px;
  height: 44px; }

.ic-lf {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 52.616446233467514%;
  width: 7px;
  height: 13px; }

.ic-menu {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 53.39470655926352%;
  width: 18px;
  height: 14px; }

.ic-minus {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 54.20023014959724%;
  width: 14px;
  height: 14px; }

.ic-minus-blue {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 55.00575373993095%;
  width: 14px;
  height: 14px; }

.ic-radio-selected {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 62.26958525345622%;
  width: 16px;
  height: 16px; }

.ic-radio-unselected {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 63.19124423963134%;
  width: 16px;
  height: 16px; }

.ic-right-black {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 65.1639344262295%;
  width: 44px;
  height: 44px; }

.ic-right-white {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 70.31615925058549%;
  width: 44px;
  height: 44px; }

.ic-rt {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 71.63406214039125%;
  width: 8px;
  height: 14px; }

.ic-search {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 74.23887587822014%;
  width: 44px;
  height: 44px; }

.ic-tick-empty {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 84.31372549019608%;
  width: 18px;
  height: 18px; }

.ic-tick-selected {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 85.3517877739331%;
  width: 18px;
  height: 18px; }

.ic_up {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 87.70491803278688%;
  width: 44px;
  height: 44px; }

.ic-wishlist-empty {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 90.28103044496487%;
  width: 44px;
  height: 44px; }

.ic-wishlist-empty-sm {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 93.93414211438476%;
  width: 16px;
  height: 21px; }

.ic-wishlist-full {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 96.42857142857143%;
  width: 44px;
  height: 44px; }

.ic-wishlist-full-sm {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 98.84459849797804%;
  width: 16px;
  height: 21px; }

.ic-search-blue {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 79.39110070257611%;
  width: 44px;
  height: 44px; }

.ic_secure {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 83.27566320645906%;
  width: 14px;
  height: 18px; }

.ic_filter-clear-sm {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 42.38754325259516%;
  width: 18px;
  height: 18px; }

.ic_search-inactive {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 81.9672131147541%;
  width: 44px;
  height: 44px; }

.ic_search-active {
  background: url("../../css/svg/sprite.css.svg") no-repeat;
  background-position: 0 76.81498829039812%;
  width: 44px;
  height: 44px; }

/* Buttons */
.btn {
  font-family: "Noto Sans", sans-serif;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  padding: 13px 50px;
  line-height: 24px;
  border: 1px solid #0099EC;
  margin-top: 10px;
  text-transform: none;
  display: inline-block;
  box-sizing: border-box;
  font-size: 16px;
  font-size: 1.6rem;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .btn--large {
    width: 100%; }
  .btn--small {
    padding: 13px 40px; }
  .btn--smaller {
    padding: 12px 16px;
    margin-top: 5px; }
  .btn--primary {
    background-color: #0099EC;
    color: #FFFFFF; }
  .btn--primary-small {
    background-color: #0099EC;
    color: #FFFFFF;
    padding: 13px 35px; }
  .btn--secondary {
    background-color: #FFFFFF;
    color: #0099EC; }
  .btn--primary:hover, .btn--primary:focus, .btn--secondary:hover, .btn--secondary:focus {
    background-color: #0684CD;
    border: 1px solid #0684CD;
    color: #FFFFFF; }
    .btn--primary:hover.btn--disabled, .btn--primary:hover[disabled], .btn--primary:focus.btn--disabled, .btn--primary:focus[disabled], .btn--secondary:hover.btn--disabled, .btn--secondary:hover[disabled], .btn--secondary:focus.btn--disabled, .btn--secondary:focus[disabled] {
      background-color: #A6D7F5;
      border: 1px solid #A6D7F5; }
  .btn--disabled, .btn[disabled] {
    background-color: #A6D7F5;
    border: 1px solid #A6D7F5; }

label {
  display: block; }

::-webkit-input-placeholder {
  color: #A7A7A7;
  font-size: 14px;
  font-size: 1.4rem; }

:-moz-placeholder {
  color: #A7A7A7;
  font-size: 14px;
  font-size: 1.4rem; }

::-moz-placeholder {
  color: #A7A7A7;
  font-size: 14px;
  font-size: 1.4rem; }

:-ms-input-placeholder {
  color: #A7A7A7;
  font-size: 14px;
  font-size: 1.4rem; }

input[type="password"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="text"] {
  box-sizing: border-box;
  border: 1px solid #DDDDDD;
  padding: 8px 20px;
  height: 48px;
  width: 100%;
  line-height: 20px;
  margin: 5px 0 3px 0;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  font-size: 16px;
  font-size: 1.6rem;
  -moz-transition: border 0.3s ease;
  -o-transition: border 0.3s ease;
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
  /* w 681px -> */ }
  @media (min-width: 681px) {
    input[type="password"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="text"] {
      font-size: 14px;
      font-size: 1.4rem; } }
  input[type="password"]:focus,
  input[type="email"]:focus,
  input[type="tel"]:focus,
  input[type="number"]:focus,
  input[type="text"]:focus {
    outline: none;
    border: 1px solid #0795E6;
    -webkit-box-shadow: 0 0 4px 0 #A6D7F5;
    -moz-box-shadow: 0 0 4px 0 #A6D7F5;
    box-shadow: 0 0 4px 0 #A6D7F5;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px; }

select {
  background: url(../img/ic_dropdown_grey.png) right 10px center no-repeat;
  width: 100%;
  display: block;
  padding: 0 20px;
  margin: 5px 0 3px 0;
  height: 48px;
  border: 1px solid #DDDDDD;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  font-size: 16px;
  font-size: 1.6rem;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* w 681px -> */ }
  @media (min-width: 681px) {
    select {
      font-size: 14px;
      font-size: 1.4rem; } }

.validation-error select {
  border-color: #E21010;
  background-color: #FCE7E7; }

input[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield; }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none; }

.number-wrapper {
  position: relative;
  display: inline-block;
  /* w 961px -> */ }
  .number-wrapper input[type="number"] {
    width: auto;
    padding-right: 7px; }
  .number-wrapper input::-webkit-outer-spin-button,
  .number-wrapper input::-webkit-inner-spin-button {
    -webkit-appearance: inner-spin-button; }
  @media (min-width: 961px) {
    .number-wrapper input[type="number"] {
      -webkit-appearance: number-input;
      -moz-appearance: number-input; }
    .number-wrapper:after, .number-wrapper:before {
      position: absolute;
      right: 8px;
      top: 19px;
      width: 14px;
      height: 12px;
      font-size: 10px;
      pointer-events: none;
      background: #FFFFFF;
      padding-left: 3px; }
    .number-wrapper:after {
      content: "\25B2"; } }
  @media screen and (min-width: 961px) and (-ms-high-contrast: active), screen and (min-width: 961px) and (-ms-high-contrast: none) {
    .number-wrapper:after {
      content: ""; } }
  @media (min-width: 961px) {
    .number-wrapper:before {
      content: "\25BC";
      margin-top: 11px; } }
  @media screen and (min-width: 961px) and (-ms-high-contrast: active), screen and (min-width: 961px) and (-ms-high-contrast: none) {
    .number-wrapper:before {
      content: ""; } }

.validation-error input[type="password"],
.validation-error input[type="tel"],
.validation-error input[type="email"],
.validation-error input[type="text"],
.validation-error input[type="number"] {
  border-color: #E21010;
  background-color: #FCE7E7; }

.validation-error.number-wrapper:after, .validation-error.number-wrapper:before {
  background: #FCE7E7; }

/* Radio buttons and checkboxes */
.radio-wrapper,
.checkbox-wrapper {
  position: relative;
  display: block;
  cursor: pointer; }

input[type=radio],
input[type=checkbox] {
  position: absolute;
  left: -10000px; }
  input[type=radio] + .label,
  input[type=checkbox] + .label {
    padding-left: 26px;
    position: relative;
    display: inline-block;
    overflow: visible; }
    input[type=radio] + .label.block,
    input[type=checkbox] + .label.block {
      display: block; }
    input[type=radio] + .label:after, input[type=radio] + .label:before,
    input[type=checkbox] + .label:after,
    input[type=checkbox] + .label:before {
      content: "";
      cursor: pointer;
      position: absolute;
      display: inline-block;
      background-color: #FFFFFF; }

input[type=radio] + .label {
  min-height: 16px;
  line-height: 16px; }
  input[type=radio] + .label:after, input[type=radio] + .label:before {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  input[type=radio] + .label:before {
    width: 14px;
    height: 14px;
    border: 1px solid #DDDDDD;
    top: calc(50% - 7px);
    left: 4px; }
  input[type=radio] + .label:after {
    width: 10px;
    height: 10px;
    top: calc(50% - 4px);
    left: 7px; }

input[type=radio] + .label--right {
  padding-left: 0;
  padding-right: 26px; }
  input[type=radio] + .label--right:before {
    left: auto;
    right: 4px; }
  input[type=radio] + .label--right:after {
    left: auto;
    right: 7px; }

input[type=radio] + .label--top {
  padding-left: 34px; }
  input[type=radio] + .label--top:before {
    top: 0;
    left: 0; }
  input[type=radio] + .label--top:after {
    top: 3px;
    left: 3px; }

input[type=radio]:checked + .label:after {
  background-color: #0795E6; }

input[type=radio]:focus + .label:before {
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 0 4px 0 #0795E6;
  -moz-box-shadow: 0 0 4px 0 #0795E6;
  box-shadow: 0 0 4px 0 #0795E6; }

input[type=checkbox] + .label {
  line-height: 18px;
  min-height: 18px; }
  input[type=checkbox] + .label:before {
    width: 16px;
    height: 16px;
    border: 1px solid #DDDDDD;
    left: 0px;
    top: 0px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -moz-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease; }
  input[type=checkbox] + .label:after {
    width: 10px;
    height: 5px;
    position: absolute;
    top: 4px;
    left: 3px;
    border: 2px solid #FFFFFF;
    border-top: none;
    border-right: none;
    background: transparent;
    -webkit-transform: rotate(-45deg) scale(1);
    -ms-transform: rotate(-45deg) scale(1);
    transform: rotate(-45deg) scale(1); }

input[type=checkbox] + .label--error:before {
  border: 1px solid #E21010; }

input[type=checkbox]:checked + .label:before {
  background-color: #FFFFFF; }

input[type=checkbox]:checked + .label:after {
  border-color: #0795E6; }

input[type=checkbox]:checked + .label--error:after {
  border-color: #E21010; }

input[type=checkbox]:focus + .label:before {
  outline: 1px dotted #000000; }

.required {
  color: #E21010; }

.formfield {
  margin-bottom: 20px; }

.form-caption {
  color: #666666;
  font-size: 12px;
  font-size: 1.2rem; }

/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top; }

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020; }

.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #666;
  text-shadow: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px; }
  .fancybox-skin p {
    line-height: 20px; }

.fancybox-opened {
  z-index: 8030; }

.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); }

.fancybox-outer, .fancybox-inner {
  position: relative; }

.fancybox-inner {
  overflow: hidden;
  height: auto; }

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch; }

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap; }

.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%; }

.fancybox-image {
  max-width: 100%;
  max-height: 100%; }

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060; }

#fancybox-loading div {
  width: 120px;
  height: 120px;
  padding: 10px;
  border-radius: 5px; }

.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040; }

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url("../images/fancybox/blank.gif");
  /* helps IE */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 8040; }

.fancybox-prev {
  left: 0; }

.fancybox-next {
  right: 0; }

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden; }

.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px; }

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px; }

.fancybox-nav:hover span {
  visibility: visible; }

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important; }

/* Overlay helper */
.fancybox-lock {
  overflow: hidden !important;
  width: auto; }

.fancybox-lock body {
  overflow: hidden !important; }

.fancybox-lock-test {
  overflow-y: hidden !important; }

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url("../../img/js/fancybox/fancybox_overlay.png"); }

.fancybox-overlay-fixed {
  bottom: 0;
  right: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  zoom: 1; }

.fancybox-lock .fancybox-overlay {
  overflow: auto; }

/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050; }

.fancybox-opened .fancybox-title {
  visibility: visible; }

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center; }

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap; }

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff; }

.fancybox-title-inside-wrap {
  padding-top: 10px; }

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8); }

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: url("../../img/js/fancybox/fancybox_sprite@2x.png");
    background-size: 44px 152px;
    /*The size of the normal image, half the size of the hi-res image*/ }
  #fancybox-loading div {
    background-image: url("../../img/js/fancybox/fancybox_loading@2x.gif");
    background-size: 24px 24px;
    /*The size of the normal image, half the size of the hi-res image*/ } }

.search-text-box-focused body.tablet, .search-text-box-focused body.mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  overflow-y: scroll; }

.slide-out-open .header--sticky {
  left: 355px; }

.header {
  width: 100%;
  transition-property: top, left;
  transition-duration: 0.2s, 500ms;
  transition-timing-function: ease-in-out;
  background: #FFFFFF;
  z-index: 999;
  top: 0; }
  .header--sticky {
    position: fixed;
    left: 0px; }

.skip-navigation {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden; }
  .skip-navigation:focus {
    clip: auto;
    background-color: #002F65;
    left: 0;
    top: 5px;
    width: 180px;
    height: 50px;
    color: #FFFFFF;
    text-decoration: none;
    text-align: center;
    text-transform: capitalize;
    line-height: 50px;
    overflow: visible;
    z-index: 10;
    outline: thin dotted #FFFFFF;
    outline-color: -webkit-focus-ring-color;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: 1px;
    outline-width: 3px;
    font-size: 16px;
    font-size: 1.6rem;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px; }

.header-link-style {
  text-transform: none;
  text-decoration: none;
  color: #666666; }

.header__container {
  position: relative;
  margin: 0 auto;
  max-width: 1600px; }
  .header__container .header-top-nav {
    height: 62px;
    border-bottom: 1px solid #DDDDDD; }
    .header__container .header-top-nav__links {
      justify-content: center; }
      .header__container .header-top-nav__links #shopdisney-header-service-links {
        display: none; }
    .header__container .header-top-nav__logo {
      justify-content: center; }
      .header__container .header-top-nav__logo .logo {
        display: flex;
        justify-content: center; }
        .header__container .header-top-nav__logo .logo img {
          height: auto; }
    .header__container .header-top-nav__actions {
      justify-content: center; }
      .header__container .header-top-nav__actions .header-top-nav__actions--container {
        display: flex;
        justify-content: flex-end;
        height: 44px; }
        .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link,
        .header__container .header-top-nav__actions .header-top-nav__actions--container .header-wishlist-link,
        .header__container .header-top-nav__actions .header-top-nav__actions--container .header-bag-link {
          position: relative; }
          .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link:before, .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link:after,
          .header__container .header-top-nav__actions .header-top-nav__actions--container .header-wishlist-link:before,
          .header__container .header-top-nav__actions .header-top-nav__actions--container .header-wishlist-link:after,
          .header__container .header-top-nav__actions .header-top-nav__actions--container .header-bag-link:before,
          .header__container .header-top-nav__actions .header-top-nav__actions--container .header-bag-link:after {
            content: '';
            display: inline-block;
            vertical-align: middle;
            margin-right: -5px; }
        .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link, .header__container .header-top-nav__actions .header-top-nav__actions--container .count-title {
          display: none; }
        .header__container .header-top-nav__actions .header-top-nav__actions--container .header-wishlist-link {
          margin-right: 5px;
          min-width: 44px; }
          .header__container .header-top-nav__actions .header-top-nav__actions--container .header-wishlist-link:before {
            background: url("../../css/svg/sprite.css.svg") no-repeat;
            background-position: 0 90.28103044496487%;
            width: 44px;
            height: 44px; }
          .header__container .header-top-nav__actions .header-top-nav__actions--container .header-wishlist-link.full:before {
            background: url("../../css/svg/sprite.css.svg") no-repeat;
            background-position: 0 96.42857142857143%;
            width: 44px;
            height: 44px; }
        .header__container .header-top-nav__actions .header-top-nav__actions--container .header-bag-container {
          width: 44px; }
        .header__container .header-top-nav__actions .header-top-nav__actions--container .header-bag-link {
          display: block;
          height: 44px;
          width: 44px; }
          .header__container .header-top-nav__actions .header-top-nav__actions--container .header-bag-link:before {
            background: url("../../css/svg/sprite.css.svg") no-repeat;
            background-position: 0 24.414519906323186%;
            width: 44px;
            height: 44px; }
        .header__container .header-top-nav__actions .header-top-nav__actions--container .header-bag-link .count,
        .header__container .header-top-nav__actions .header-top-nav__actions--container .header-wishlist-link .count {
          position: absolute;
          bottom: 6px;
          right: 1px;
          font-size: 11px;
          display: block;
          box-sizing: initial;
          background-color: #0684CD;
          color: #FFFFFF;
          border: 1px solid #FFFFFF;
          border-radius: 50%;
          line-height: 15px;
          height: 15px;
          width: 15px;
          text-align: center; }
          .header__container .header-top-nav__actions .header-top-nav__actions--container .header-bag-link .count.empty,
          .header__container .header-top-nav__actions .header-top-nav__actions--container .header-wishlist-link .count.empty {
            display: none; }
          .header__container .header-top-nav__actions .header-top-nav__actions--container .header-bag-link .count__bracket,
          .header__container .header-top-nav__actions .header-top-nav__actions--container .header-wishlist-link .count__bracket {
            display: none; }
    .header__container .header-top-nav .mobileMenuBtn {
      position: relative;
      width: 60px;
      margin-left: 5px; }
      .header__container .header-top-nav .mobileMenuBtn:before {
        content: '';
        display: inline-block;
        vertical-align: middle;
        background: url("../../css/svg/sprite.css.svg") no-repeat;
        background-position: 0 53.39470655926352%;
        width: 18px;
        height: 14px; }
  .header__container .header-search {
    border-bottom: 1px solid #DDDDDD;
    /* w 961px -> */ }
    .header__container .header-search .header__search-form {
      width: 100%;
      margin: 15px;
      z-index: 10;
      background: #FFFFFF;
      display: flex; }
      .header__container .header-search .header__search-form .header__search-button-wrapper {
        margin-top: 5px;
        /* w 961px -> */ }
        @media (min-width: 961px) {
          .header__container .header-search .header__search-form .header__search-button-wrapper {
            margin-top: 0; } }
      .header__container .header-search .header__search-form .header__search-button {
        height: 40px;
        width: 44px;
        text-indent: -1000px;
        padding: 0 5px;
        border: 1px solid #F5F5F5;
        cursor: pointer;
        background-color: #FFFFFF;
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
        /* w 961px -> */ }
        .header__container .header-search .header__search-form .header__search-button:focus {
          border: 1px solid #0099EC;
          -webkit-box-shadow: 0 0 4px 0 #A6D7F5;
          -moz-box-shadow: 0 0 4px 0 #A6D7F5;
          box-shadow: 0 0 4px 0 #A6D7F5; }
        @media (min-width: 961px) {
          .header__container .header-search .header__search-form .header__search-button {
            margin-top: 20px;
            overflow: hidden; } }
      .header__container .header-search .header__search-form .ic_search-active {
        background-color: #0795E6;
        border: 1px solid #0795E6; }
      .header__container .header-search .header__search-form .header__search-text-box {
        width: 100%;
        position: relative; }
        .header__container .header-search .header__search-form .header__search-text-box .header__search-input {
          background-color: #F5F5F5;
          font-family: "Noto Sans";
          border-radius: 0px;
          -webkit-border-radius: 0px;
          -moz-border-radius: 0px;
          height: 40px;
          border: 0;
          border: 1px solid #F5F5F5;
          color: #A7A7A7;
          padding: 8px 85px 8px 15px; }
          .header__container .header-search .header__search-form .header__search-text-box .header__search-input:focus {
            color: #000000;
            border: 1px solid #0099EC;
            -webkit-box-shadow: 0 0 4px 0 #A6D7F5;
            -moz-box-shadow: 0 0 4px 0 #A6D7F5;
            box-shadow: 0 0 4px 0 #A6D7F5; }
        .header__container .header-search .header__search-form .header__search-text-box .header__clear-button {
          position: absolute;
          max-width: 75px;
          right: 10px;
          bottom: 5px;
          height: 36px;
          padding: 0 3px;
          background: #F5F5F5;
          color: #222222;
          font-size: 16px;
          font-size: 1.6rem;
          font-family: noto sans;
          text-decoration: underline;
          border: 0 none; }
          .header__container .header-search .header__search-form .header__search-text-box .header__clear-button:focus {
            border: 1px solid #0099EC;
            -webkit-box-shadow: 0 0 4px 0 #A6D7F5;
            -moz-box-shadow: 0 0 4px 0 #A6D7F5;
            box-shadow: 0 0 4px 0 #A6D7F5; }
          .header__container .header-search .header__search-form .header__search-text-box .header__clear-button:hover {
            cursor: pointer; }
        .header__container .header-search .header__search-form .header__search-text-box .header__autocomplete-suggestions {
          max-height: 40vh;
          overflow: auto;
          overflow-y: auto;
          background-color: #FFFFFF;
          box-shadow: 0 5px 13px -1px rgba(0, 0, 0, 0.15);
          width: calc(100% + 44px);
          padding-top: 15px;
          border-radius: 0px 0px 5px 5px;
          -webkit-border-radius: 0px 0px 5px 5px;
          -moz-border-radius: 0px 0px 5px 5px;
          /* w 961px -> */ }
          .header__container .header-search .header__search-form .header__search-text-box .header__autocomplete-suggestions .categories-label {
            color: #A7A7A7;
            font-weight: 600;
            text-transform: uppercase;
            margin: 15px 3px 15px 22px;
            font-size: 13px;
            font-size: 1.3rem; }
          .header__container .header-search .header__search-form .header__search-text-box .header__autocomplete-suggestions .line-between-suggestions {
            border-bottom: 1px solid #DDDDDD;
            margin: 10px 22px 10px 22px; }
          .header__container .header-search .header__search-form .header__search-text-box .header__autocomplete-suggestions .autocomplete-suggestion {
            font-size: 15px;
            font-size: 1.5rem;
            padding-left: 22px;
            height: 45px; }
            .header__container .header-search .header__search-form .header__search-text-box .header__autocomplete-suggestions .autocomplete-suggestion strong {
              color: #000000;
              font-weight: 800; }
          .header__container .header-search .header__search-form .header__search-text-box .header__autocomplete-suggestions .autosuggestion-phrase {
            color: #222222; }
          .header__container .header-search .header__search-form .header__search-text-box .header__autocomplete-suggestions .autosuggestion-category {
            font-weight: 800;
            color: #000000;
            display: flex; }
            .header__container .header-search .header__search-form .header__search-text-box .header__autocomplete-suggestions .autosuggestion-category .header__categories-link {
              text-decoration: none;
              font-weight: 800;
              flex: 1; }
            .header__container .header-search .header__search-form .header__search-text-box .header__autocomplete-suggestions .autosuggestion-category .suggestion-parent-category {
              color: #A7A7A7;
              font-weight: 100;
              text-transform: capitalize; }
          @media (min-width: 961px) {
            .header__container .header-search .header__search-form .header__search-text-box .header__autocomplete-suggestions .header__categories-link {
              line-height: 45px; }
            .header__container .header-search .header__search-form .header__search-text-box .header__autocomplete-suggestions .autocomplete-suggestion {
              line-height: 45px; }
              .header__container .header-search .header__search-form .header__search-text-box .header__autocomplete-suggestions .autocomplete-suggestion:hover {
                background: #0795E6;
                color: #FFFFFF;
                cursor: pointer; }
            .header__container .header-search .header__search-form .header__search-text-box .header__autocomplete-suggestions .autocomplete-selected {
              background: #0795E6;
              color: #FFFFFF; }
              .header__container .header-search .header__search-form .header__search-text-box .header__autocomplete-suggestions .autocomplete-selected a {
                color: #FFFFFF; }
              .header__container .header-search .header__search-form .header__search-text-box .header__autocomplete-suggestions .autocomplete-selected:hover a {
                color: #FFFFFF; }
              .header__container .header-search .header__search-form .header__search-text-box .header__autocomplete-suggestions .autocomplete-selected strong, .header__container .header-search .header__search-form .header__search-text-box .header__autocomplete-suggestions .autocomplete-selected .suggestion-parent-category {
                color: #FFFFFF; } }
    .header__container .header-search .hide-clearButton {
      display: none; }
    @media (min-width: 961px) {
      .header__container .header-search .search-form {
        width: 43%;
        margin: 0 auto; }
      .header__container .header-search .header__search-button {
        margin-top: 20px; }
      .header__container .header-search .header__clear-button {
        margin-top: 15px; }
      .header__container .header-search .header__search-text-box {
        margin: 15px 0 15px 0; } }

body.desktop .header .header__container .header-top-nav__links, body.high-quality .header .header__container .header-top-nav__links {
  padding-left: 30px; }
  body.desktop .header .header__container .header-top-nav__links .mobileMenuBtn, body.high-quality .header .header__container .header-top-nav__links .mobileMenuBtn {
    display: none; }
  body.desktop .header .header__container .header-top-nav__links #shopdisney-header-service-links, body.high-quality .header .header__container .header-top-nav__links #shopdisney-header-service-links {
    display: flex;
    align-items: center; }
    body.desktop .header .header__container .header-top-nav__links #shopdisney-header-service-links ul, body.high-quality .header .header__container .header-top-nav__links #shopdisney-header-service-links ul {
      list-style-type: none; }
    body.desktop .header .header__container .header-top-nav__links #shopdisney-header-service-links li, body.high-quality .header .header__container .header-top-nav__links #shopdisney-header-service-links li {
      position: relative;
      padding-left: 12px;
      padding-right: 12px; }
      body.desktop .header .header__container .header-top-nav__links #shopdisney-header-service-links li:first-child, body.high-quality .header .header__container .header-top-nav__links #shopdisney-header-service-links li:first-child {
        padding-left: 0; }
        body.desktop .header .header__container .header-top-nav__links #shopdisney-header-service-links li:first-child:before, body.high-quality .header .header__container .header-top-nav__links #shopdisney-header-service-links li:first-child:before {
          display: none; }
      body.desktop .header .header__container .header-top-nav__links #shopdisney-header-service-links li:before, body.high-quality .header .header__container .header-top-nav__links #shopdisney-header-service-links li:before {
        content: '';
        display: block;
        width: 3px;
        height: 3px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        background: #666666;
        border-radius: 50%; }
    body.desktop .header .header__container .header-top-nav__links #shopdisney-header-service-links a:not(:last-child), body.high-quality .header .header__container .header-top-nav__links #shopdisney-header-service-links a:not(:last-child) {
      margin-right: 20px; }

body.desktop .header .header__container .header-top-nav__actions, body.high-quality .header .header__container .header-top-nav__actions {
  padding-left: 0; }
  body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container, body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container {
    padding-right: 20px; }
    body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container a, body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container a {
      margin-right: 25px;
      line-height: 20px;
      color: #666666;
      font-size: 14px;
      font-size: 1.4rem; }
    body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link,
    body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-wishlist-link,
    body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-bag-link, body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link,
    body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-wishlist-link,
    body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-bag-link {
      display: inline-block;
      white-space: nowrap; }
      body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link:before,
      body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-wishlist-link:before,
      body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-bag-link:before, body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link:before,
      body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-wishlist-link:before,
      body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-bag-link:before {
        margin-bottom: 1px;
        margin-right: 2px; }
    body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container, body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container {
      position: relative;
      line-height: 44px; }
      body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container .header-account-link, body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container .header-account-link {
        margin-right: 19px;
        padding-right: 6px; }
        body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container .header-account-link--logged-in, body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container .header-account-link--logged-in {
          color: #0099EC; }
          body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container .header-account-link--logged-in:after, body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container .header-account-link--logged-in:after {
            background: url("../../css/svg/sprite.css.svg") no-repeat;
            background-position: 0 41.179839633447884%;
            width: 8px;
            height: 6px;
            margin-left: 2px; }
        body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container .header-account-link:before, body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container .header-account-link:before {
          background: url("../../css/svg/sprite.css.svg") no-repeat;
          background-position: 0 16.406701328711726%;
          width: 14px;
          height: 21px; }
      body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container .my-account-popup, body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container .my-account-popup {
        padding: 0;
        border: 1px solid #DDDDDD;
        box-shadow: 0 6px 13px -3px rgba(0, 0, 0, 0.15);
        left: auto !important;
        right: -16px !important; }
        body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container .my-account-popup:before, body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container .my-account-popup:after, body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container .my-account-popup:before, body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container .my-account-popup:after {
          content: '';
          display: block;
          position: absolute;
          bottom: 100%;
          width: 0;
          height: 0; }
        body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container .my-account-popup:before, body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container .my-account-popup:before {
          left: 128px;
          border: 9px solid transparent;
          border-bottom-color: #DDDDDD; }
        body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container .my-account-popup:after, body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container .my-account-popup:after {
          left: 129px;
          border: 8px solid transparent;
          border-bottom-color: #FFFFFF; }
        body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container .my-account-popup .qtip-content, body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container .my-account-popup .qtip-content {
          padding: 0; }
          body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container .my-account-popup .qtip-content .service-link, body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container .my-account-popup .qtip-content .service-link {
            padding-left: 20px;
            height: 53px;
            line-height: 53px;
            display: flex;
            flex-direction: column;
            justify-content: center; }
            body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container .my-account-popup .qtip-content .service-link:hover, body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container .my-account-popup .qtip-content .service-link:hover {
              background-color: #F5F5F5; }
            body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container .my-account-popup .qtip-content .service-link.sign-in-up-container, body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container .my-account-popup .qtip-content .service-link.sign-in-up-container {
              border-top: 1px solid #DDDDDD; }
            body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container .my-account-popup .qtip-content .service-link .header-account-menu-link, body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container .my-account-popup .qtip-content .service-link .header-account-menu-link {
              text-decoration: none;
              text-transform: capitalize;
              color: #666666; }
              body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container .my-account-popup .qtip-content .service-link .header-account-menu-link:hover, body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container .my-account-popup .qtip-content .service-link .header-account-menu-link:hover {
                color: #222222; }
              body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container .my-account-popup .qtip-content .service-link .header-account-menu-link--blue, body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container .my-account-popup .qtip-content .service-link .header-account-menu-link--blue {
                color: #0099EC; }
                body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container .my-account-popup .qtip-content .service-link .header-account-menu-link--blue:hover, body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link-container .my-account-popup .qtip-content .service-link .header-account-menu-link--blue:hover {
                  color: #0099EC; }
    body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link, body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .count-title, body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-account-link, body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .count-title {
      display: inline-block; }
    body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-wishlist-link, body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-wishlist-link {
      line-height: 44px; }
      body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-wishlist-link:before, body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-wishlist-link:before {
        background: url("../../css/svg/sprite.css.svg") no-repeat;
        background-position: 0 93.93414211438476%;
        width: 16px;
        height: 21px; }
      body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-wishlist-link.full:before, body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-wishlist-link.full:before {
        background: url("../../css/svg/sprite.css.svg") no-repeat;
        background-position: 0 98.84459849797804%;
        width: 16px;
        height: 21px; }
    body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-bag-container, body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-bag-container {
      width: auto;
      line-height: 44px; }
    body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-bag-link, body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-bag-link {
      width: auto; }
      body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-bag-link:before, body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-bag-link:before {
        background: url("../../css/svg/sprite.css.svg") no-repeat;
        background-position: 0 26.632004621606008%;
        width: 18px;
        height: 21px; }
    body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-bag-link .count,
    body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-wishlist-link .count, body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-bag-link .count,
    body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-wishlist-link .count {
      position: relative;
      font-size: 14px;
      font-size: 1.4rem;
      display: inline-block;
      bottom: auto;
      right: auto;
      background-color: #FFFFFF;
      border: none;
      color: #666666;
      border-radius: 0;
      line-height: 27px;
      height: auto;
      width: auto;
      text-align: center; }
      body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-bag-link .count.empty,
      body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-wishlist-link .count.empty, body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-bag-link .count.empty,
      body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-wishlist-link .count.empty {
        display: inline-block; }
      body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-bag-link .count__bracket,
      body.desktop .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-wishlist-link .count__bracket, body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-bag-link .count__bracket,
      body.high-quality .header .header__container .header-top-nav__actions .header-top-nav__actions--container .header-wishlist-link .count__bracket {
        display: inline; }

#end-nav {
  width: 0px;
  opacity: 0; }

body {
  position: relative;
  left: 0;
  right: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out; }

#dny-slide-out {
  position: fixed;
  top: 0;
  left: -355px;
  z-index: 1000;
  width: 355px;
  height: 100vh;
  overflow: hidden;
  background-color: #FFFFFF;
  border-right: 1px solid #DDDDDD;
  -webkit-transition: left 500ms ease-in-out;
  transition: left 500ms ease-in-out; }
  #dny-slide-out:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 100%;
    background: linear-gradient(90deg, rgba(238, 238, 238, 0) 0%, #DDDDDD 100%); }

.slide-out-open #dny-slide-out {
  left: 0; }

.slide-out-open body {
  position: absolute;
  left: 355px;
  min-width: 100vw; }

.refinements-open #dny-refinements-side {
  right: 0;
  overflow-x: hidden;
  overflow-y: auto; }

.refinements-open .catlisting__mobile-refinement-actions {
  right: 0; }

.refinements-open body {
  position: absolute;
  right: 323px;
  min-width: 100vw;
  left: auto; }

#dny-refinements-side {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: -323px;
  z-index: 1000;
  width: 323px;
  height: 100%;
  background-color: #FFFFFF;
  border-right: 1px solid #DDDDDD;
  -webkit-transition: right 500ms ease-in-out;
  transition: right 500ms ease-in-out; }

.dny-touch-prevent-cover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); }

.normalize-refinements-body {
  left: auto;
  right: 0; }

.disable-scrolling,
.disable-scrolling body {
  overflow: hidden; }

.disable-scrolling #disneyid-wrapper {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll; }
  .disable-scrolling #disneyid-wrapper .demo-iframe-holder iframe {
    height: 100%;
    width: 100%; }

.megamenu {
  display: none;
  /* w 961px -> */ }
  @media (min-width: 961px) {
    .megamenu {
      display: block;
      position: relative;
      max-width: 1600px;
      margin: 0 auto;
      padding: 22px 0;
      text-align: center;
      border-bottom: 1px solid #DDDDDD; } }
  .megamenu--left, .megamenu--right {
    /* w 961px -> */ }
    @media (min-width: 961px) {
      .megamenu--left, .megamenu--right {
        position: absolute;
        top: 50%;
        transform: translateY(-50%); } }
    .megamenu--left .megamenu__item, .megamenu--right .megamenu__item {
      /* w 961px -> */ }
      @media (min-width: 961px) {
        .megamenu--left .megamenu__item, .megamenu--right .megamenu__item {
          margin-left: 30px; } }
    .megamenu--left .megamenu__link, .megamenu--right .megamenu__link {
      /* w 961px -> */ }
      @media (min-width: 961px) {
        .megamenu--left .megamenu__link, .megamenu--right .megamenu__link {
          padding: 22px 0; } }
  .megamenu--left {
    /* w 961px -> */ }
    @media (min-width: 961px) {
      .megamenu--left {
        left: 30px;
        padding-right: 20px;
        border-right: 1px solid #DDDDDD; } }
  .megamenu--right {
    /* w 961px -> */ }
    @media (min-width: 961px) {
      .megamenu--right {
        right: 30px;
        padding-left: 20px;
        border-left: 1px solid #DDDDDD; } }
  .megamenu--center {
    display: block;
    /* w 961px -> */ }
    @media (min-width: 961px) {
      .megamenu--center {
        margin: 0 auto;
        padding: 0 30px; } }
  .megamenu__item {
    position: relative;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    /* w 961px -> */ }
    @media (min-width: 961px) {
      .megamenu__item {
        position: static;
        display: inline;
        border: none; } }
    .megamenu__item:first-child {
      /* w 961px -> */ }
      @media (min-width: 961px) {
        .megamenu__item:first-child {
          margin-left: 0; } }
  .megamenu__top-level.megamenu--left {
    border-top: 3px solid #222222; }
  .megamenu__top-level--my-account {
    border-top: 1px solid #DDDDDD; }
  .megamenu__top-level:last-child .megamenu__item:last-child {
    border-bottom: none; }
  .megamenu__link {
    position: relative;
    display: block;
    padding: 25px 20px;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 1px solid #DDDDDD;
    /* w 961px -> */ }
    @media (min-width: 961px) {
      .megamenu__link {
        border: none;
        display: inline;
        padding: 22px 15px; } }
    .megamenu__link--my-account, .megamenu__link.header-account-menu-link--blue {
      color: #0099EC; }
    .megamenu__link--has-subcat:after {
      content: " ";
      position: absolute;
      right: 21px;
      top: 50%;
      transform: translateY(-50%);
      background: url("../../css/svg/sprite.css.svg") no-repeat;
      background-position: 0 71.63406214039125%;
      width: 8px;
      height: 14px;
      /* w 961px -> */ }
      @media (min-width: 961px) {
        .megamenu__link--has-subcat:after {
          content: none; } }
    .megamenu__link--back {
      padding-left: 40px;
      background-color: #F5F5F5;
      border-top: 3px solid #222222; }
      .megamenu__link--back:after {
        content: " ";
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        background: url("../../css/svg/sprite.css.svg") no-repeat;
        background-position: 0 52.616446233467514%;
        width: 7px;
        height: 13px;
        /* w 961px -> */ }
        @media (min-width: 961px) {
          .megamenu__link--back:after {
            content: none; } }
    .megamenu__link:hover {
      /* w 961px -> */ }
      @media (min-width: 961px) {
        .megamenu__link:hover {
          border-bottom: 1px solid #222222; } }

.megamenu-slide-out {
  padding-bottom: 40px; }
  .megamenu-slide-out__top-bar {
    padding: 8px 0; }
  .megamenu-slide-out__close {
    margin-left: 5px; }
  .megamenu-slide-out .my-account {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: 26px; }
    .megamenu-slide-out .my-account__text--signed-in {
      color: #0099EC; }
  .megamenu-slide-out__categories {
    border-bottom: 3px solid #222222; }
  .megamenu-slide-out .row {
    width: auto;
    margin-left: -0.5rem;
    margin-right: -0.5rem; }

.col-sm-inactive {
  /* w -> 680px */
  /* w 681px -> 960px */ }
  @media (max-width: 680px) {
    .col-sm-inactive {
      display: none; } }
  @media (min-width: 681px) and (max-width: 960px) {
    .col-sm-inactive {
      display: none; } }

.megamenu__dropdown {
  /* w 961px -> */ }
  @media (min-width: 961px) {
    .megamenu__dropdown {
      position: absolute;
      top: 65px;
      left: 0;
      z-index: 5;
      width: 100%;
      max-height: 0;
      background: #FFFFFF;
      -webkit-transition: max-height 600ms;
      transition: max-height 600ms; } }
  .megamenu__dropdown--single-feature .menu-dropdown {
    /* w 961px -> */ }
    @media (min-width: 961px) {
      .megamenu__dropdown--single-feature .menu-dropdown {
        height: 435px; } }
  .megamenu__dropdown--single-feature .feature-text {
    /* w 961px -> */ }
    @media (min-width: 961px) {
      .megamenu__dropdown--single-feature .feature-text {
        border-bottom: 1px solid #DDDDDD; } }
  .megamenu__dropdown--double-feature .menu-dropdown {
    /* w 961px -> */ }
    @media (min-width: 961px) {
      .megamenu__dropdown--double-feature .menu-dropdown {
        height: 265px; } }
  .megamenu__dropdown--premium-feature .menu-dropdown {
    /* w 961px -> */ }
    @media (min-width: 961px) {
      .megamenu__dropdown--premium-feature .menu-dropdown {
        height: 268px; } }
  .megamenu__dropdown--premium-feature .menu-dropdown__block--feature {
    position: relative;
    /* w 961px -> */ }
    @media (min-width: 961px) {
      .megamenu__dropdown--premium-feature .menu-dropdown__block--feature {
        width: 267px; } }
  .megamenu__dropdown--premium-feature .feature-banner {
    width: 168px;
    height: auto;
    /* w 961px -> */ }
    @media (min-width: 961px) {
      .megamenu__dropdown--premium-feature .feature-banner {
        width: auto; } }
  .megamenu__dropdown--premium-feature .feature-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    font-weight: bold;
    text-transform: uppercase;
    /* w 961px -> */ }
    @media (min-width: 961px) {
      .megamenu__dropdown--premium-feature .feature-text {
        padding: 20px; } }
  .megamenu__dropdown--premium-feature .feature-link,
  .megamenu__dropdown--premium-feature .feature-text {
    color: #FFFFFF;
    line-height: 27px;
    font-size: 18px;
    font-size: 1.8rem;
    /* w 961px -> */ }
    @media (min-width: 961px) {
      .megamenu__dropdown--premium-feature .feature-link,
      .megamenu__dropdown--premium-feature .feature-text {
        line-height: 30px;
        font-size: 24px;
        font-size: 2.4rem; } }

.menu-dropdown {
  /* w 961px -> */ }
  @media (min-width: 961px) {
    .menu-dropdown {
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      align-items: center;
      align-content: center;
      height: 490px;
      padding: 60px 10px;
      text-align: left;
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: opacity 300ms, visibility 0ms 300ms;
      transition: opacity 300ms, visibility 0ms 300ms;
      border-bottom: 1px solid #DDDDDD; } }
  .menu-dropdown__categories {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap; }
  .menu-dropdown__subcategories {
    /* w 961px -> */ }
    @media (min-width: 961px) {
      .menu-dropdown__subcategories {
        margin-top: 10px; } }
  .menu-dropdown__subcategory-link {
    display: block;
    padding: 25px 20px;
    border-bottom: 1px solid #DDDDDD;
    /* w 961px -> */ }
    @media (min-width: 961px) {
      .menu-dropdown__subcategory-link {
        padding: 0;
        border: none;
        line-height: 28px; } }
  .menu-dropdown__block {
    /* w 961px -> */ }
    @media (min-width: 961px) {
      .menu-dropdown__block {
        width: 168px;
        margin: 0 30px 30px 0; } }
    .menu-dropdown__block--feature {
      width: 168px;
      text-align: center;
      float: left;
      margin: 5px 0 25px 5px;
      /* w 961px -> */ }
      @media (min-width: 961px) {
        .menu-dropdown__block--feature {
          margin: 0 30px 0 0;
          height: 100%;
          float: none; } }
  .menu-dropdown .megamenu__link {
    /* w 961px -> */ }
    @media (min-width: 961px) {
      .menu-dropdown .megamenu__link {
        display: block;
        padding: 0 0 10px 0;
        border-bottom: 1px solid #DDDDDD; } }

.feature-text {
  padding: 20px 0 0;
  /* w 961px -> */ }
  @media (min-width: 961px) {
    .feature-text {
      padding: 20px 0; } }

/* w 961px -> */
@media (min-width: 961px) {
  .active .megamenu__dropdown {
    max-height: 610px; }
    .active .megamenu__dropdown--single-feature {
      max-height: 555px; }
    .active .megamenu__dropdown--double-feature {
      max-height: 385px; }
    .active .megamenu__dropdown--premium-feature {
      max-height: 388px; }
  .active .menu-dropdown {
    opacity: 1;
    visibility: visible; } }

/* w 961px -> */
@media (min-width: 961px) {
  .tablet .megamenu {
    display: none; }
    .tablet .megamenu--left, .tablet .megamenu--right {
      left: 0;
      right: 0; }
    .tablet .megamenu--left, .tablet .megamenu--center, .tablet .megamenu--right {
      padding: 0; }
    .tablet .megamenu__top-level {
      position: relative;
      top: initial;
      transform: initial;
      margin: 0; }
    .tablet .megamenu__item {
      position: relative;
      display: block;
      margin: 0;
      width: 100%;
      box-sizing: border-box; }
    .tablet .megamenu__link {
      display: block;
      padding: 25px 20px;
      border-bottom: 1px solid #DDDDDD; }
      .tablet .megamenu__link--has-subcat:after {
        content: " ";
        position: absolute;
        right: 21px;
        top: 50%;
        transform: translateY(-50%);
        background: url("../../css/svg/sprite.css.svg") no-repeat;
        background-position: 0 71.63406214039125%;
        width: 8px;
        height: 14px; }
      .tablet .megamenu__link--back {
        padding-left: 40px;
        background-color: #F5F5F5; }
        .tablet .megamenu__link--back:after {
          content: " ";
          position: absolute;
          left: 20px;
          top: 50%;
          transform: translateY(-50%);
          background: url("../../css/svg/sprite.css.svg") no-repeat;
          background-position: 0 52.616446233467514%;
          width: 7px;
          height: 13px; }
  .tablet .megamenu-slide-out .col-md-hidden {
    display: block; }
  .tablet .megamenu-slide-out .col-sm-inactive {
    display: none; }
  .tablet .megamenu__dropdown {
    position: static;
    max-height: 100%; }
    .tablet .megamenu__dropdown--premium-feature .feature-banner {
      width: 168px; }
    .tablet .megamenu__dropdown--premium-feature .feature-text,
    .tablet .megamenu__dropdown--premium-feature .feature-link {
      line-height: 27px;
      font-size: 18px;
      font-size: 1.8rem; }
  .tablet .menu-dropdown {
    display: block;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    opacity: 1;
    visibility: visible; }
    .tablet .menu-dropdown__block {
      width: auto;
      margin: 0; }
      .tablet .menu-dropdown__block--feature {
        float: left;
        margin: 5px 0 25px 5px; }
    .tablet .menu-dropdown__subcategories {
      margin: 0; }
    .tablet .menu-dropdown__subcategory-link {
      display: block;
      padding: 25px 20px;
      border-bottom: 1px solid #DDDDDD; }
  .tablet .feature-text {
    border: none;
    padding-bottom: 0; } }

#disneyid-wrapper.state-active {
  position: fixed; }
  #disneyid-wrapper.state-active iframe {
    height: 100%;
    width: 100%; }

/* 320px -> 1023px */
@media (min-width: 320px) and (max-width: 1024px) {
  #disneyid-wrapper.state-active {
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;
    width: 100vw;
    height: 100vh; } }

footer {
  max-width: 1600px;
  margin: 0 auto;
  clear: both; }

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