/**
 * React Select
 * ============
 * Created by Jed Watson and Joss Mackison for KeystoneJS, http://www.keystonejs.com/
 * https://twitter.com/jedwatson https://twitter.com/jossmackison https://twitter.com/keystonejs
 * MIT License: https://github.com/JedWatson/react-select
*/
.Select {
  position: relative;
}
.Select input::-webkit-contacts-auto-fill-button,
.Select input::-webkit-credentials-auto-fill-button {
  display: none !important;
}
.Select input::-ms-clear {
  display: none !important;
}
.Select input::-ms-reveal {
  display: none !important;
}
.Select,
.Select div,
.Select input,
.Select span {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.Select.is-disabled .Select-arrow-zone {
  cursor: default;
  pointer-events: none;
  opacity: 0.35;
}
.Select.is-disabled > .Select-control {
  background-color: #f9f9f9;
}
.Select.is-disabled > .Select-control:hover {
  box-shadow: none;
}
.Select.is-open > .Select-control {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background: #fff;
  border-color: #b3b3b3 #ccc #d9d9d9;
}
.Select.is-open > .Select-control .Select-arrow {
  top: -2px;
  border-color: transparent transparent #999;
  border-width: 0 5px 5px;
}
.Select.is-searchable.is-open > .Select-control {
  cursor: text;
}
.Select.is-searchable.is-focused:not(.is-open) > .Select-control {
  cursor: text;
}
.Select.is-focused > .Select-control {
  background: #fff;
}
.Select.is-focused:not(.is-open) > .Select-control {
  border-color: #007eff;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(0, 126, 255, 0.1);
  background: #fff;
}
.Select.has-value.is-clearable.Select--single > .Select-control .Select-value {
  padding-right: 42px;
}
.Select.has-value.Select--single > .Select-control .Select-value .Select-value-label,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value .Select-value-label {
  color: #333;
}
.Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label {
  cursor: pointer;
  text-decoration: none;
}
.Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label:hover,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:hover,
.Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label:focus,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:focus {
  color: #007eff;
  outline: none;
  text-decoration: underline;
}
.Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label:focus,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:focus {
  background: #fff;
}
.Select.has-value.is-pseudo-focused .Select-input {
  opacity: 0;
}
.Select.is-open .Select-arrow,
.Select .Select-arrow-zone:hover > .Select-arrow {
  border-top-color: #666;
}
.Select.Select--rtl {
  direction: rtl;
  text-align: right;
}
.Select-control {
  background-color: #fff;
  border-color: #d9d9d9 #ccc #b3b3b3;
  border-radius: 4px;
  border: 1px solid #ccc;
  color: #333;
  cursor: default;
  display: table;
  border-spacing: 0;
  border-collapse: separate;
  height: 36px;
  outline: none;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.Select-control:hover {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.Select-control .Select-input:focus {
  outline: none;
  background: #fff;
}
.Select-placeholder,
.Select--single > .Select-control .Select-value {
  bottom: 0;
  color: #aaa;
  left: 0;
  line-height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  position: absolute;
  right: 0;
  top: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.Select-input {
  height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  vertical-align: middle;
}
.Select-input > input {
  width: 100%;
  background: none transparent;
  border: 0 none;
  box-shadow: none;
  cursor: default;
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  outline: none;
  line-height: 17px;
  /* For IE 8 compatibility */
  padding: 8px 0 12px;
  /* For IE 8 compatibility */
  -webkit-appearance: none;
}
.is-focused .Select-input > input {
  cursor: text;
}
.has-value.is-pseudo-focused .Select-input {
  opacity: 0;
}
.Select-control:not(.is-searchable) > .Select-input {
  outline: none;
}
.Select-loading-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 16px;
}
.Select-loading {
  -webkit-animation: Select-animation-spin 400ms infinite linear;
  -o-animation: Select-animation-spin 400ms infinite linear;
  animation: Select-animation-spin 400ms infinite linear;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-right-color: #333;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.Select-clear-zone {
  -webkit-animation: Select-animation-fadeIn 200ms;
  -o-animation: Select-animation-fadeIn 200ms;
  animation: Select-animation-fadeIn 200ms;
  color: #999;
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 17px;
}
.Select-clear-zone:hover {
  color: #D0021B;
}
.Select-clear {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
}
.Select--multi .Select-clear-zone {
  width: 17px;
}
.Select-arrow-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 25px;
  padding-right: 5px;
}
.Select--rtl .Select-arrow-zone {
  padding-right: 0;
  padding-left: 5px;
}
.Select-arrow {
  border-color: #999 transparent transparent;
  border-style: solid;
  border-width: 5px 5px 2.5px;
  display: inline-block;
  height: 0;
  width: 0;
  position: relative;
}
.Select-control > *:last-child {
  padding-right: 5px;
}
.Select--multi .Select-multi-value-wrapper {
  display: inline-block;
}
.Select .Select-aria-only {
  position: absolute;
  display: inline-block;
  height: 1px;
  width: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  float: left;
}
@-webkit-keyframes Select-animation-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes Select-animation-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.Select-menu-outer {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top-color: #e6e6e6;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  margin-top: -1px;
  max-height: 200px;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 1;
  -webkit-overflow-scrolling: touch;
}
.Select-menu {
  max-height: 198px;
  overflow-y: auto;
}
.Select-option {
  box-sizing: border-box;
  background-color: #fff;
  color: #666666;
  cursor: pointer;
  display: block;
  padding: 8px 10px;
}
.Select-option:last-child {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.Select-option.is-selected {
  background-color: #f5faff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.04);
  color: #333;
}
.Select-option.is-focused {
  background-color: #ebf5ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.08);
  color: #333;
}
.Select-option.is-disabled {
  color: #cccccc;
  cursor: default;
}
.Select-noresults {
  box-sizing: border-box;
  color: #999999;
  cursor: default;
  display: block;
  padding: 8px 10px;
}
.Select--multi .Select-input {
  vertical-align: middle;
  margin-left: 10px;
  padding: 0;
}
.Select--multi.Select--rtl .Select-input {
  margin-left: 0;
  margin-right: 10px;
}
.Select--multi.has-value .Select-input {
  margin-left: 5px;
}
.Select--multi .Select-value {
  background-color: #ebf5ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.08);
  border-radius: 2px;
  border: 1px solid #c2e0ff;
  /* Fallback color for IE 8 */
  border: 1px solid rgba(0, 126, 255, 0.24);
  color: #007eff;
  display: inline-block;
  font-size: 0.9em;
  line-height: 1.4;
  margin-left: 5px;
  margin-top: 5px;
  vertical-align: top;
}
.Select--multi .Select-value-icon,
.Select--multi .Select-value-label {
  display: inline-block;
  vertical-align: middle;
}
.Select--multi .Select-value-label {
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
  cursor: default;
  padding: 2px 5px;
}
.Select--multi a.Select-value-label {
  color: #007eff;
  cursor: pointer;
  text-decoration: none;
}
.Select--multi a.Select-value-label:hover {
  text-decoration: underline;
}
.Select--multi .Select-value-icon {
  cursor: pointer;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  border-right: 1px solid #c2e0ff;
  /* Fallback color for IE 8 */
  border-right: 1px solid rgba(0, 126, 255, 0.24);
  padding: 1px 5px 3px;
}
.Select--multi .Select-value-icon:hover,
.Select--multi .Select-value-icon:focus {
  background-color: #d8eafd;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 113, 230, 0.08);
  color: #0071e6;
}
.Select--multi .Select-value-icon:active {
  background-color: #c2e0ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.24);
}
.Select--multi.Select--rtl .Select-value {
  margin-left: 0;
  margin-right: 5px;
}
.Select--multi.Select--rtl .Select-value-icon {
  border-right: none;
  border-left: 1px solid #c2e0ff;
  /* Fallback color for IE 8 */
  border-left: 1px solid rgba(0, 126, 255, 0.24);
}
.Select--multi.is-disabled .Select-value {
  background-color: #fcfcfc;
  border: 1px solid #e3e3e3;
  color: #333;
}
.Select--multi.is-disabled .Select-value-icon {
  cursor: not-allowed;
  border-right: 1px solid #e3e3e3;
}
.Select--multi.is-disabled .Select-value-icon:hover,
.Select--multi.is-disabled .Select-value-icon:focus,
.Select--multi.is-disabled .Select-value-icon:active {
  background-color: #fcfcfc;
}
@keyframes Select-animation-spin {
  to {
    transform: rotate(1turn);
  }
}
@-webkit-keyframes Select-animation-spin {
  to {
    -webkit-transform: rotate(1turn);
  }
}
.rmc-picker {
  display: block;
  position: relative;
  overflow: hidden;
  height: 238px;
}
.rmc-picker-content {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 1;
  padding: 102px 0;
}
.rmc-picker-mask {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.6)), -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.6));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.6)), linear-gradient(to top, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.6));
  background-position: top, bottom;
  background-size: 100% 102px;
  background-repeat: no-repeat;
}
.rmc-picker-item {
  text-align: center;
  font-size: 16px;
  line-height: 34px;
  height: 34px;
  color: #000;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.rmc-picker-indicator {
  right: 0;
  position: absolute;
  left: 0;
  top: 102px;
  height: 34px;
  z-index: 3;
  background-image: -webkit-linear-gradient(top, #d0d0d0, #d0d0d0, transparent, transparent), -webkit-linear-gradient(bottom, #d0d0d0, #d0d0d0, transparent, transparent);
  background-image: linear-gradient(to bottom, #d0d0d0, #d0d0d0, transparent, transparent), linear-gradient(to top, #d0d0d0, #d0d0d0, transparent, transparent);
  background-position: top, bottom;
  background-size: 100% 1px;
  background-repeat: no-repeat;
}
.rmc-multi-picker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
}
.rmc-multi-picker-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.rmc-picker-popup {
  left: 0;
  bottom: 0;
  position: fixed;
  width: 100%;
  background-color: #fff;
}
.rmc-picker-popup-close {
  display: none;
}
.rmc-picker-popup-wrap {
  position: fixed;
  overflow: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  overflow-scrolling: touch;
  outline: 0;
}
.rmc-picker-popup-mask {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #373737;
  background-color: rgba(55, 55, 55, 0.6);
  height: 100%;
  filter: alpha(opacity=50);
  z-index: 1050;
}
.rmc-picker-popup-mask-hidden {
  display: none;
}
.rmc-picker-popup-header {
  background-image: -webkit-linear-gradient(top, #e7e7e7, #e7e7e7, transparent, transparent);
  background-image: linear-gradient(to bottom, #e7e7e7, #e7e7e7, transparent, transparent);
  background-position: bottom;
  background-size: 100% 1px;
  background-repeat: no-repeat;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.rmc-picker-popup-header-left,
.rmc-picker-popup-header-right {
  padding-left: 15px;
  padding-right: 15px;
}
.rmc-picker-popup-item {
  color: #0ae;
  font-size: 18px;
  height: 44px;
  line-height: 44px;
  cursor: pointer;
  box-sizing: border-box;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.rmc-picker-popup-item-active {
  background-color: #ddd;
}
.rmc-picker-popup-title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #666;
  cursor: default;
}
.rmc-picker-popup-fade-enter,
.rmc-picker-popup-fade-appear {
  opacity: 0;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
          animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.rmc-picker-popup-fade-leave {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
          animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.rmc-picker-popup-fade-enter.rmc-picker-popup-fade-enter-active,
.rmc-picker-popup-fade-appear.rmc-picker-popup-fade-appear-active {
  -webkit-animation-name: rmcPopupPickerFadeIn;
          animation-name: rmcPopupPickerFadeIn;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.rmc-picker-popup-fade-leave.rmc-picker-popup-fade-leave-active {
  -webkit-animation-name: rmcPopupPickerFadeOut;
          animation-name: rmcPopupPickerFadeOut;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
@-webkit-keyframes rmcPopupPickerFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes rmcPopupPickerFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes rmcPopupPickerFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes rmcPopupPickerFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.rmc-picker-popup-slide-fade-enter,
.rmc-picker-popup-slide-fade-appear {
  -webkit-transform: translate(0, 100%);
          transform: translate(0, 100%);
}
.rmc-picker-popup-slide-fade-enter,
.rmc-picker-popup-slide-fade-appear,
.rmc-picker-popup-slide-fade-leave {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
          animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.rmc-picker-popup-slide-fade-enter.rmc-picker-popup-slide-fade-enter-active,
.rmc-picker-popup-slide-fade-appear.rmc-picker-popup-slide-fade-appear-active {
  -webkit-animation-name: rmcPopupPickerSlideFadeIn;
          animation-name: rmcPopupPickerSlideFadeIn;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.rmc-picker-popup-slide-fade-leave.rmc-picker-popup-slide-fade-leave-active {
  -webkit-animation-name: rmcPopupPickerSlideFadeOut;
          animation-name: rmcPopupPickerSlideFadeOut;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
@-webkit-keyframes rmcPopupPickerSlideFadeIn {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes rmcPopupPickerSlideFadeIn {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes rmcPopupPickerSlideFadeOut {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%);
  }
}
@keyframes rmcPopupPickerSlideFadeOut {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%);
  }
}
/**
 * Swiper 3.4.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * 
 * http://www.idangero.us/swiper/
 * 
 * Copyright 2017, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 * 
 * Licensed under MIT
 * 
 * Released on: March 10, 2017
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  -moz-transform: translate3d(0px, 0, 0);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-transition-property: -webkit-transform, height;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform, height;
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
/* Arrows */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  -moz-background-size: 27px 44px;
  -webkit-background-size: 27px 44px;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
/* Pagination Styles */
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  -moz-transform: translate3d(0px, -50%, 0);
  -o-transform: translate(0px, -50%);
  -ms-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
/* Progress */
.swiper-pagination-progress {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progress .swiper-pagination-progressbar {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  -webkit-transform-origin: right top;
  -moz-transform-origin: right top;
  -ms-transform-origin: right top;
  -o-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progress {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progress {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-progress.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.5);
}
.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  background: #fff;
}
.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  background: #000;
}
/* 3D Container */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  -moz-perspective: 1200px;
  -o-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
/* Coverflow */
.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}
/* Cube + Flip */
.swiper-container-cube,
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* Cube */
.swiper-container-cube .swiper-slide {
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
/* Fade */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -moz-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  -moz-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  -webkit-background-size: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
/*!
 * smartbanner.js v1.9.0 <https://github.com/ain/smartbanner.js>
 * Copyright © 2017 Ain Tohvri, contributors. Licensed under GPL-3.0.
 */
.smartbanner{position:absolute;top:0;left:0;overflow-x:hidden;width:100%;height:84px;background:#f3f3f3;font-family:Helvetica, sans, sans-serif}.smartbanner__exit{position:absolute;top:calc(50% - 6px);left:9px;display:block;margin:0;width:12px;height:12px;border:0;text-align:center}.smartbanner__exit::before,.smartbanner__exit::after{position:absolute;width:1px;height:12px;background:#767676;content:' '}.smartbanner__exit::before{transform:rotate(45deg)}.smartbanner__exit::after{transform:rotate(-45deg)}.smartbanner__icon{position:absolute;top:10px;left:30px;width:64px;height:64px;border-radius:15px;background-size:64px 64px}.smartbanner__info{position:absolute;top:10px;left:104px;display:flex;overflow-y:hidden;width:60%;height:64px;align-items:center}.smartbanner__info__title{font-size:14px}.smartbanner__info__author,.smartbanner__info__price{font-size:12px}.smartbanner__button{position:absolute;top:32px;right:10px;z-index:1;display:block;padding:0 10px;min-width:10%;border-radius:5px;background:#f3f3f3;color:#1474fc;font-size:18px;text-align:center;text-decoration:none}.smartbanner__button__label{text-align:center}.smartbanner.smartbanner--android{background:#3d3d3d url(data:image/gif;base64,R0lGODlhCAAIAIABAFVVVf///yH5BAEHAAEALAAAAAAIAAgAAAINRG4XudroGJBRsYcxKAA7);box-shadow:inset 0 4px 0 #88b131}.smartbanner.smartbanner--android .smartbanner__exit{left:6px;margin-right:7px;width:17px;height:17px;border-radius:14px;background:#1c1e21;box-shadow:0 1px 2px rgba(0,0,0,0.8) inset,0 1px 1px rgba(255,255,255,0.3);color:#b1b1b3;font-family:'ArialRoundedMTBold', Arial;font-size:20px;-webkit-font-smoothing:subpixel-antialiased;line-height:17px;text-shadow:0 1px 1px #000}.smartbanner.smartbanner--android .smartbanner__exit::before,.smartbanner.smartbanner--android .smartbanner__exit::after{top:3px;left:8px;width:2px;height:11px;background:#b1b1b3}.smartbanner.smartbanner--android .smartbanner__exit:active,.smartbanner.smartbanner--android .smartbanner__exit:hover{color:#eee}.smartbanner.smartbanner--android .smartbanner__icon{background-color:transparent;box-shadow:none}.smartbanner.smartbanner--android .smartbanner__info{color:#ccc;text-shadow:0 1px 2px #000}.smartbanner.smartbanner--android .smartbanner__info__title{color:#fff;font-weight:bold}.smartbanner.smartbanner--android .smartbanner__button{top:30px;right:20px;padding:0;min-width:12%;border-radius:0;background:none;box-shadow:0 0 0 1px #333, 0 0 0 2px #dddcdc;color:#d1d1d1;font-size:14px;font-weight:bold}.smartbanner.smartbanner--android .smartbanner__button:active,.smartbanner.smartbanner--android .smartbanner__button:hover{background:none}.smartbanner.smartbanner--android .smartbanner__button__label{display:block;padding:0 10px;background:#42b6c9;background:linear-gradient(to bottom, #42b6c9, #39a9bb);box-shadow:none;line-height:24px;text-align:center;text-shadow:none;text-transform:none}.smartbanner.smartbanner--android .smartbanner__button__label:active,.smartbanner.smartbanner--android .smartbanner__button__label:hover{background:#2ac7e1}
@charset "UTF-8";
/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

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

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

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

[hidden],
template {
  display: none; }

a {
  background-color: transparent; }

a:active,
a:hover {
  outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

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

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

small {
  font-size: 80%; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

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

figure {
  margin: 1em 40px; }

hr {
  box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

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

button[disabled],
html input[disabled] {
  cursor: default; }

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

input {
  line-height: normal; }

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

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

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

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

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

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

td,
th {
  padding: 0; }

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: ""; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  .navbar {
    display: none; }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important; }
  .label {
    border: 1px solid #000; }
  .table {
    border-collapse: collapse !important; }
    .table td,
    .table th {
      background-color: #fff !important; }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important; } }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

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

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent; }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857;
  color: #333333;
  background-color: #fff; }

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

a {
  color: #337ab7;
  text-decoration: none; }
  a:hover, a:focus {
    color: #23527c;
    text-decoration: underline; }
  a:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }

figure {
  margin: 0; }

img {
  vertical-align: middle; }

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto; }

.img-rounded {
  border-radius: 6px; }

.img-thumbnail {
  padding: 4px;
  line-height: 1.42857;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto; }

.img-circle {
  border-radius: 50%; }

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee; }

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

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

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

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit; }
  h1 small,
  h1 .small, h2 small,
  h2 .small, h3 small,
  h3 .small, h4 small,
  h4 .small, h5 small,
  h5 .small, h6 small,
  h6 .small,
  .h1 small,
  .h1 .small, .h2 small,
  .h2 .small, .h3 small,
  .h3 .small, .h4 small,
  .h4 .small, .h5 small,
  .h5 .small, .h6 small,
  .h6 .small {
    font-weight: normal;
    line-height: 1;
    color: #777777; }

h1, .h1,
h2, .h2,
h3, .h3 {
  margin-top: 20px;
  margin-bottom: 10px; }
  h1 small,
  h1 .small, .h1 small,
  .h1 .small,
  h2 small,
  h2 .small, .h2 small,
  .h2 .small,
  h3 small,
  h3 .small, .h3 small,
  .h3 .small {
    font-size: 65%; }

h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 10px;
  margin-bottom: 10px; }
  h4 small,
  h4 .small, .h4 small,
  .h4 .small,
  h5 small,
  h5 .small, .h5 small,
  .h5 .small,
  h6 small,
  h6 .small, .h6 small,
  .h6 .small {
    font-size: 75%; }

h1, .h1 {
  font-size: 36px; }

h2, .h2 {
  font-size: 30px; }

h3, .h3 {
  font-size: 24px; }

h4, .h4 {
  font-size: 18px; }

h5, .h5 {
  font-size: 14px; }

h6, .h6 {
  font-size: 12px; }

p {
  margin: 0 0 10px; }

.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4; }
  @media (min-width: 768px) {
    .lead {
      font-size: 21px; } }

small,
.small {
  font-size: 85%; }

mark,
.mark {
  background-color: #fcf8e3;
  padding: .2em; }

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

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

.text-center {
  text-align: center; }

.text-justify {
  text-align: justify; }

.text-nowrap {
  white-space: nowrap; }

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

.text-uppercase, .initialism {
  text-transform: uppercase; }

.text-capitalize {
  text-transform: capitalize; }

.text-muted {
  color: #777777; }

.text-primary {
  color: #337ab7; }

a.text-primary:hover,
a.text-primary:focus {
  color: #286090; }

.text-success {
  color: #3c763d; }

a.text-success:hover,
a.text-success:focus {
  color: #2b542c; }

.text-info {
  color: #31708f; }

a.text-info:hover,
a.text-info:focus {
  color: #245269; }

.text-warning {
  color: #8a6d3b; }

a.text-warning:hover,
a.text-warning:focus {
  color: #66512c; }

.text-danger {
  color: #a94442; }

a.text-danger:hover,
a.text-danger:focus {
  color: #843534; }

.bg-primary {
  color: #fff; }

.bg-primary {
  background-color: #337ab7; }

a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #286090; }

.bg-success {
  background-color: #dff0d8; }

a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3; }

.bg-info {
  background-color: #d9edf7; }

a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee; }

.bg-warning {
  background-color: #fcf8e3; }

a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5; }

.bg-danger {
  background-color: #f2dede; }

a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9; }

.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee; }

ul,
ol {
  margin-top: 0;
  margin-bottom: 10px; }
  ul ul,
  ul ol,
  ol ul,
  ol ol {
    margin-bottom: 0; }

.list-unstyled {
  padding-left: 0;
  list-style: none; }

.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px; }
  .list-inline > li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px; }

dl {
  margin-top: 0;
  margin-bottom: 20px; }

dt,
dd {
  line-height: 1.42857; }

dt {
  font-weight: bold; }

dd {
  margin-left: 0; }

.dl-horizontal dd:before, .dl-horizontal dd:after {
  content: " ";
  display: table; }

.dl-horizontal dd:after {
  clear: both; }

@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
  .dl-horizontal dd {
    margin-left: 180px; } }

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777777; }

.initialism {
  font-size: 90%; }

blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee; }
  blockquote p:last-child,
  blockquote ul:last-child,
  blockquote ol:last-child {
    margin-bottom: 0; }
  blockquote footer,
  blockquote small,
  blockquote .small {
    display: block;
    font-size: 80%;
    line-height: 1.42857;
    color: #777777; }
    blockquote footer:before,
    blockquote small:before,
    blockquote .small:before {
      content: '\2014   \A0'; }

.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right; }
  .blockquote-reverse footer:before,
  .blockquote-reverse small:before,
  .blockquote-reverse .small:before,
  blockquote.pull-right footer:before,
  blockquote.pull-right small:before,
  blockquote.pull-right .small:before {
    content: ''; }
  .blockquote-reverse footer:after,
  .blockquote-reverse small:after,
  .blockquote-reverse .small:after,
  blockquote.pull-right footer:after,
  blockquote.pull-right small:after,
  blockquote.pull-right .small:after {
    content: '\A0   \2014'; }

address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857; }

code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace; }

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px; }

kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); }
  kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: bold;
    box-shadow: none; }

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px; }
  pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    background-color: transparent;
    border-radius: 0; }

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll; }

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }
  .container:before, .container:after {
    content: " ";
    display: table; }
  .container:after {
    clear: both; }
  @media (min-width: 768px) {
    .container {
      width: 750px; } }
  @media (min-width: 992px) {
    .container {
      width: 970px; } }
  @media (min-width: 1200px) {
    .container {
      width: 1170px; } }

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }
  .container-fluid:before, .container-fluid:after {
    content: " ";
    display: table; }
  .container-fluid:after {
    clear: both; }

.row {
  margin-left: -15px;
  margin-right: -15px; }
  .row:before, .row:after {
    content: " ";
    display: table; }
  .row:after {
    clear: both; }

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }

.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 {
  float: left; }

.col-xs-1 {
  width: 8.33333%; }

.col-xs-2 {
  width: 16.66667%; }

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

.col-xs-4 {
  width: 33.33333%; }

.col-xs-5 {
  width: 41.66667%; }

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

.col-xs-7 {
  width: 58.33333%; }

.col-xs-8 {
  width: 66.66667%; }

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

.col-xs-10 {
  width: 83.33333%; }

.col-xs-11 {
  width: 91.66667%; }

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

.col-xs-pull-0 {
  right: auto; }

.col-xs-pull-1 {
  right: 8.33333%; }

.col-xs-pull-2 {
  right: 16.66667%; }

.col-xs-pull-3 {
  right: 25%; }

.col-xs-pull-4 {
  right: 33.33333%; }

.col-xs-pull-5 {
  right: 41.66667%; }

.col-xs-pull-6 {
  right: 50%; }

.col-xs-pull-7 {
  right: 58.33333%; }

.col-xs-pull-8 {
  right: 66.66667%; }

.col-xs-pull-9 {
  right: 75%; }

.col-xs-pull-10 {
  right: 83.33333%; }

.col-xs-pull-11 {
  right: 91.66667%; }

.col-xs-pull-12 {
  right: 100%; }

.col-xs-push-0 {
  left: auto; }

.col-xs-push-1 {
  left: 8.33333%; }

.col-xs-push-2 {
  left: 16.66667%; }

.col-xs-push-3 {
  left: 25%; }

.col-xs-push-4 {
  left: 33.33333%; }

.col-xs-push-5 {
  left: 41.66667%; }

.col-xs-push-6 {
  left: 50%; }

.col-xs-push-7 {
  left: 58.33333%; }

.col-xs-push-8 {
  left: 66.66667%; }

.col-xs-push-9 {
  left: 75%; }

.col-xs-push-10 {
  left: 83.33333%; }

.col-xs-push-11 {
  left: 91.66667%; }

.col-xs-push-12 {
  left: 100%; }

.col-xs-offset-0 {
  margin-left: 0%; }

.col-xs-offset-1 {
  margin-left: 8.33333%; }

.col-xs-offset-2 {
  margin-left: 16.66667%; }

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

.col-xs-offset-4 {
  margin-left: 33.33333%; }

.col-xs-offset-5 {
  margin-left: 41.66667%; }

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

.col-xs-offset-7 {
  margin-left: 58.33333%; }

.col-xs-offset-8 {
  margin-left: 66.66667%; }

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

.col-xs-offset-10 {
  margin-left: 83.33333%; }

.col-xs-offset-11 {
  margin-left: 91.66667%; }

.col-xs-offset-12 {
  margin-left: 100%; }

@media (min-width: 768px) {
  .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 {
    float: left; }
  .col-sm-1 {
    width: 8.33333%; }
  .col-sm-2 {
    width: 16.66667%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-4 {
    width: 33.33333%; }
  .col-sm-5 {
    width: 41.66667%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-7 {
    width: 58.33333%; }
  .col-sm-8 {
    width: 66.66667%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-10 {
    width: 83.33333%; }
  .col-sm-11 {
    width: 91.66667%; }
  .col-sm-12 {
    width: 100%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-pull-1 {
    right: 8.33333%; }
  .col-sm-pull-2 {
    right: 16.66667%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-4 {
    right: 33.33333%; }
  .col-sm-pull-5 {
    right: 41.66667%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-7 {
    right: 58.33333%; }
  .col-sm-pull-8 {
    right: 66.66667%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-10 {
    right: 83.33333%; }
  .col-sm-pull-11 {
    right: 91.66667%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-push-1 {
    left: 8.33333%; }
  .col-sm-push-2 {
    left: 16.66667%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-4 {
    left: 33.33333%; }
  .col-sm-push-5 {
    left: 41.66667%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-7 {
    left: 58.33333%; }
  .col-sm-push-8 {
    left: 66.66667%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-10 {
    left: 83.33333%; }
  .col-sm-push-11 {
    left: 91.66667%; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-offset-0 {
    margin-left: 0%; }
  .col-sm-offset-1 {
    margin-left: 8.33333%; }
  .col-sm-offset-2 {
    margin-left: 16.66667%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-4 {
    margin-left: 33.33333%; }
  .col-sm-offset-5 {
    margin-left: 41.66667%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-7 {
    margin-left: 58.33333%; }
  .col-sm-offset-8 {
    margin-left: 66.66667%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-10 {
    margin-left: 83.33333%; }
  .col-sm-offset-11 {
    margin-left: 91.66667%; }
  .col-sm-offset-12 {
    margin-left: 100%; } }

@media (min-width: 992px) {
  .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 {
    float: left; }
  .col-md-1 {
    width: 8.33333%; }
  .col-md-2 {
    width: 16.66667%; }
  .col-md-3 {
    width: 25%; }
  .col-md-4 {
    width: 33.33333%; }
  .col-md-5 {
    width: 41.66667%; }
  .col-md-6 {
    width: 50%; }
  .col-md-7 {
    width: 58.33333%; }
  .col-md-8 {
    width: 66.66667%; }
  .col-md-9 {
    width: 75%; }
  .col-md-10 {
    width: 83.33333%; }
  .col-md-11 {
    width: 91.66667%; }
  .col-md-12 {
    width: 100%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-pull-1 {
    right: 8.33333%; }
  .col-md-pull-2 {
    right: 16.66667%; }
  .col-md-pull-3 {
    right: 25%; }
  .col-md-pull-4 {
    right: 33.33333%; }
  .col-md-pull-5 {
    right: 41.66667%; }
  .col-md-pull-6 {
    right: 50%; }
  .col-md-pull-7 {
    right: 58.33333%; }
  .col-md-pull-8 {
    right: 66.66667%; }
  .col-md-pull-9 {
    right: 75%; }
  .col-md-pull-10 {
    right: 83.33333%; }
  .col-md-pull-11 {
    right: 91.66667%; }
  .col-md-pull-12 {
    right: 100%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-push-1 {
    left: 8.33333%; }
  .col-md-push-2 {
    left: 16.66667%; }
  .col-md-push-3 {
    left: 25%; }
  .col-md-push-4 {
    left: 33.33333%; }
  .col-md-push-5 {
    left: 41.66667%; }
  .col-md-push-6 {
    left: 50%; }
  .col-md-push-7 {
    left: 58.33333%; }
  .col-md-push-8 {
    left: 66.66667%; }
  .col-md-push-9 {
    left: 75%; }
  .col-md-push-10 {
    left: 83.33333%; }
  .col-md-push-11 {
    left: 91.66667%; }
  .col-md-push-12 {
    left: 100%; }
  .col-md-offset-0 {
    margin-left: 0%; }
  .col-md-offset-1 {
    margin-left: 8.33333%; }
  .col-md-offset-2 {
    margin-left: 16.66667%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-4 {
    margin-left: 33.33333%; }
  .col-md-offset-5 {
    margin-left: 41.66667%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-7 {
    margin-left: 58.33333%; }
  .col-md-offset-8 {
    margin-left: 66.66667%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-10 {
    margin-left: 83.33333%; }
  .col-md-offset-11 {
    margin-left: 91.66667%; }
  .col-md-offset-12 {
    margin-left: 100%; } }

@media (min-width: 1200px) {
  .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 {
    float: left; }
  .col-lg-1 {
    width: 8.33333%; }
  .col-lg-2 {
    width: 16.66667%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-4 {
    width: 33.33333%; }
  .col-lg-5 {
    width: 41.66667%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-7 {
    width: 58.33333%; }
  .col-lg-8 {
    width: 66.66667%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-10 {
    width: 83.33333%; }
  .col-lg-11 {
    width: 91.66667%; }
  .col-lg-12 {
    width: 100%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-pull-1 {
    right: 8.33333%; }
  .col-lg-pull-2 {
    right: 16.66667%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-4 {
    right: 33.33333%; }
  .col-lg-pull-5 {
    right: 41.66667%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-7 {
    right: 58.33333%; }
  .col-lg-pull-8 {
    right: 66.66667%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-10 {
    right: 83.33333%; }
  .col-lg-pull-11 {
    right: 91.66667%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-push-1 {
    left: 8.33333%; }
  .col-lg-push-2 {
    left: 16.66667%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-4 {
    left: 33.33333%; }
  .col-lg-push-5 {
    left: 41.66667%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-7 {
    left: 58.33333%; }
  .col-lg-push-8 {
    left: 66.66667%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-10 {
    left: 83.33333%; }
  .col-lg-push-11 {
    left: 91.66667%; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-offset-0 {
    margin-left: 0%; }
  .col-lg-offset-1 {
    margin-left: 8.33333%; }
  .col-lg-offset-2 {
    margin-left: 16.66667%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-4 {
    margin-left: 33.33333%; }
  .col-lg-offset-5 {
    margin-left: 41.66667%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-7 {
    margin-left: 58.33333%; }
  .col-lg-offset-8 {
    margin-left: 66.66667%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-10 {
    margin-left: 83.33333%; }
  .col-lg-offset-11 {
    margin-left: 91.66667%; }
  .col-lg-offset-12 {
    margin-left: 100%; } }

table {
  background-color: transparent; }

caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777777;
  text-align: left; }

th {
  text-align: left; }

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px; }
  .table > thead > tr > th,
  .table > thead > tr > td,
  .table > tbody > tr > th,
  .table > tbody > tr > td,
  .table > tfoot > tr > th,
  .table > tfoot > tr > td {
    padding: 8px;
    line-height: 1.42857;
    vertical-align: top;
    border-top: 1px solid #ddd; }
  .table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd; }
  .table > caption + thead > tr:first-child > th,
  .table > caption + thead > tr:first-child > td,
  .table > colgroup + thead > tr:first-child > th,
  .table > colgroup + thead > tr:first-child > td,
  .table > thead:first-child > tr:first-child > th,
  .table > thead:first-child > tr:first-child > td {
    border-top: 0; }
  .table > tbody + tbody {
    border-top: 2px solid #ddd; }
  .table .table {
    background-color: #fff; }

.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 5px; }

.table-bordered {
  border: 1px solid #ddd; }
  .table-bordered > thead > tr > th,
  .table-bordered > thead > tr > td,
  .table-bordered > tbody > tr > th,
  .table-bordered > tbody > tr > td,
  .table-bordered > tfoot > tr > th,
  .table-bordered > tfoot > tr > td {
    border: 1px solid #ddd; }
  .table-bordered > thead > tr > th,
  .table-bordered > thead > tr > td {
    border-bottom-width: 2px; }

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9; }

.table-hover > tbody > tr:hover {
  background-color: #f5f5f5; }

table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column; }

table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell; }

.table > thead > tr > td.active,
.table > thead > tr > th.active,
.table > thead > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5; }

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8; }

.table > thead > tr > td.success,
.table > thead > tr > th.success,
.table > thead > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #dff0d8; }

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6; }

.table > thead > tr > td.info,
.table > thead > tr > th.info,
.table > thead > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
  background-color: #d9edf7; }

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3; }

.table > thead > tr > td.warning,
.table > thead > tr > th.warning,
.table > thead > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3; }

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc; }

.table > thead > tr > td.danger,
.table > thead > tr > th.danger,
.table > thead > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f2dede; }

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc; }

.table-responsive {
  overflow-x: auto;
  min-height: 0.01%; }
  @media screen and (max-width: 767px) {
    .table-responsive {
      width: 100%;
      margin-bottom: 15px;
      overflow-y: hidden;
      -ms-overflow-style: -ms-autohiding-scrollbar;
      border: 1px solid #ddd; }
      .table-responsive > .table {
        margin-bottom: 0; }
        .table-responsive > .table > thead > tr > th,
        .table-responsive > .table > thead > tr > td,
        .table-responsive > .table > tbody > tr > th,
        .table-responsive > .table > tbody > tr > td,
        .table-responsive > .table > tfoot > tr > th,
        .table-responsive > .table > tfoot > tr > td {
          white-space: nowrap; }
      .table-responsive > .table-bordered {
        border: 0; }
        .table-responsive > .table-bordered > thead > tr > th:first-child,
        .table-responsive > .table-bordered > thead > tr > td:first-child,
        .table-responsive > .table-bordered > tbody > tr > th:first-child,
        .table-responsive > .table-bordered > tbody > tr > td:first-child,
        .table-responsive > .table-bordered > tfoot > tr > th:first-child,
        .table-responsive > .table-bordered > tfoot > tr > td:first-child {
          border-left: 0; }
        .table-responsive > .table-bordered > thead > tr > th:last-child,
        .table-responsive > .table-bordered > thead > tr > td:last-child,
        .table-responsive > .table-bordered > tbody > tr > th:last-child,
        .table-responsive > .table-bordered > tbody > tr > td:last-child,
        .table-responsive > .table-bordered > tfoot > tr > th:last-child,
        .table-responsive > .table-bordered > tfoot > tr > td:last-child {
          border-right: 0; }
        .table-responsive > .table-bordered > tbody > tr:last-child > th,
        .table-responsive > .table-bordered > tbody > tr:last-child > td,
        .table-responsive > .table-bordered > tfoot > tr:last-child > th,
        .table-responsive > .table-bordered > tfoot > tr:last-child > td {
          border-bottom: 0; } }

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0; }

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5; }

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold; }

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

input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal; }

input[type="file"] {
  display: block; }

input[type="range"] {
  display: block;
  width: 100%; }

select[multiple],
select[size] {
  height: auto; }

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857;
  color: #555555; }

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; }
  .form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }
  .form-control::-moz-placeholder {
    color: #999;
    opacity: 1; }
  .form-control:-ms-input-placeholder {
    color: #999; }
  .form-control::-webkit-input-placeholder {
    color: #999; }
  .form-control::-ms-expand {
    border: 0;
    background-color: transparent; }
  .form-control[disabled], .form-control[readonly],
  fieldset[disabled] .form-control {
    background-color: #eeeeee;
    opacity: 1; }
  .form-control[disabled],
  fieldset[disabled] .form-control {
    cursor: not-allowed; }

textarea.form-control {
  height: auto; }

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

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 34px; }
  input[type="date"].input-sm,
  .input-group-sm input[type="date"],
  input[type="time"].input-sm,
  .input-group-sm
  input[type="time"],
  input[type="datetime-local"].input-sm,
  .input-group-sm
  input[type="datetime-local"],
  input[type="month"].input-sm,
  .input-group-sm
  input[type="month"] {
    line-height: 30px; }
  input[type="date"].input-lg,
  .input-group-lg input[type="date"],
  input[type="time"].input-lg,
  .input-group-lg
  input[type="time"],
  input[type="datetime-local"].input-lg,
  .input-group-lg
  input[type="datetime-local"],
  input[type="month"].input-lg,
  .input-group-lg
  input[type="month"] {
    line-height: 46px; } }

.form-group {
  margin-bottom: 15px; }

.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px; }
  .radio label,
  .checkbox label {
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer; }

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9; }

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px; }

.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer; }

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px; }

input[type="radio"][disabled], input[type="radio"].disabled,
fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input[type="checkbox"].disabled,
fieldset[disabled]
input[type="checkbox"] {
  cursor: not-allowed; }

.radio-inline.disabled,
fieldset[disabled] .radio-inline,
.checkbox-inline.disabled,
fieldset[disabled]
.checkbox-inline {
  cursor: not-allowed; }

.radio.disabled label,
fieldset[disabled] .radio label,
.checkbox.disabled label,
fieldset[disabled]
.checkbox label {
  cursor: not-allowed; }

.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
  min-height: 34px; }
  .form-control-static.input-lg, .form-control-static.input-sm {
    padding-left: 0;
    padding-right: 0; }

.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

select.input-sm {
  height: 30px;
  line-height: 30px; }

textarea.input-sm,
select[multiple].input-sm {
  height: auto; }

.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px; }

.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto; }

.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5; }

.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33333;
  border-radius: 6px; }

select.input-lg {
  height: 46px;
  line-height: 46px; }

textarea.input-lg,
select[multiple].input-lg {
  height: auto; }

.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33333;
  border-radius: 6px; }

.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px; }

.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto; }

.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.33333; }

.has-feedback {
  position: relative; }
  .has-feedback .form-control {
    padding-right: 42.5px; }

.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none; }

.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px; }

.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px; }

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d; }

.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .has-success .form-control:focus {
    border-color: #2b542c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; }

.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8; }

.has-success .form-control-feedback {
  color: #3c763d; }

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b; }

.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .has-warning .form-control:focus {
    border-color: #66512c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; }

.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3; }

.has-warning .form-control-feedback {
  color: #8a6d3b; }

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442; }

.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .has-error .form-control:focus {
    border-color: #843534;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; }

.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede; }

.has-error .form-control-feedback {
  color: #a94442; }

.has-feedback label ~ .form-control-feedback {
  top: 25px; }

.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0; }

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373; }

@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle; }
  .form-inline .form-control-static {
    display: inline-block; }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle; }
    .form-inline .input-group .input-group-addon,
    .form-inline .input-group .input-group-btn,
    .form-inline .input-group .form-control {
      width: auto; }
  .form-inline .input-group > .form-control {
    width: 100%; }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle; }
    .form-inline .radio label,
    .form-inline .checkbox label {
      padding-left: 0; }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0; }
  .form-inline .has-feedback .form-control-feedback {
    top: 0; } }

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px; }

.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px; }

.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px; }
  .form-horizontal .form-group:before, .form-horizontal .form-group:after {
    content: " ";
    display: table; }
  .form-horizontal .form-group:after {
    clear: both; }

@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px; } }

.form-horizontal .has-feedback .form-control-feedback {
  right: 15px; }

@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 18px; } }

@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px; } }

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }
  .btn:hover, .btn:focus, .btn.focus {
    color: #333;
    text-decoration: none; }
  .btn:active, .btn.active {
    outline: 0;
    background-image: none;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
  .btn.disabled, .btn[disabled],
  fieldset[disabled] .btn {
    cursor: not-allowed;
    opacity: 0.65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none; }

a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none; }

.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc; }
  .btn-default:focus, .btn-default.focus {
    color: #333;
    background-color: #e6e6e6;
    border-color: #8c8c8c; }
  .btn-default:hover {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad; }
  .btn-default:active, .btn-default.active,
  .open > .btn-default.dropdown-toggle {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad; }
    .btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus,
    .open > .btn-default.dropdown-toggle:hover,
    .open > .btn-default.dropdown-toggle:focus,
    .open > .btn-default.dropdown-toggle.focus {
      color: #333;
      background-color: #d4d4d4;
      border-color: #8c8c8c; }
  .btn-default:active, .btn-default.active,
  .open > .btn-default.dropdown-toggle {
    background-image: none; }
  .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus,
  fieldset[disabled] .btn-default:hover,
  fieldset[disabled] .btn-default:focus,
  fieldset[disabled] .btn-default.focus {
    background-color: #fff;
    border-color: #ccc; }
  .btn-default .badge {
    color: #fff;
    background-color: #333; }

.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4; }
  .btn-primary:focus, .btn-primary.focus {
    color: #fff;
    background-color: #286090;
    border-color: #122b40; }
  .btn-primary:hover {
    color: #fff;
    background-color: #286090;
    border-color: #204d74; }
  .btn-primary:active, .btn-primary.active,
  .open > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #286090;
    border-color: #204d74; }
    .btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus,
    .open > .btn-primary.dropdown-toggle:hover,
    .open > .btn-primary.dropdown-toggle:focus,
    .open > .btn-primary.dropdown-toggle.focus {
      color: #fff;
      background-color: #204d74;
      border-color: #122b40; }
  .btn-primary:active, .btn-primary.active,
  .open > .btn-primary.dropdown-toggle {
    background-image: none; }
  .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus,
  fieldset[disabled] .btn-primary:hover,
  fieldset[disabled] .btn-primary:focus,
  fieldset[disabled] .btn-primary.focus {
    background-color: #337ab7;
    border-color: #2e6da4; }
  .btn-primary .badge {
    color: #337ab7;
    background-color: #fff; }

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c; }
  .btn-success:focus, .btn-success.focus {
    color: #fff;
    background-color: #449d44;
    border-color: #255625; }
  .btn-success:hover {
    color: #fff;
    background-color: #449d44;
    border-color: #398439; }
  .btn-success:active, .btn-success.active,
  .open > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #449d44;
    border-color: #398439; }
    .btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus,
    .open > .btn-success.dropdown-toggle:hover,
    .open > .btn-success.dropdown-toggle:focus,
    .open > .btn-success.dropdown-toggle.focus {
      color: #fff;
      background-color: #398439;
      border-color: #255625; }
  .btn-success:active, .btn-success.active,
  .open > .btn-success.dropdown-toggle {
    background-image: none; }
  .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus,
  fieldset[disabled] .btn-success:hover,
  fieldset[disabled] .btn-success:focus,
  fieldset[disabled] .btn-success.focus {
    background-color: #5cb85c;
    border-color: #4cae4c; }
  .btn-success .badge {
    color: #5cb85c;
    background-color: #fff; }

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da; }
  .btn-info:focus, .btn-info.focus {
    color: #fff;
    background-color: #31b0d5;
    border-color: #1b6d85; }
  .btn-info:hover {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc; }
  .btn-info:active, .btn-info.active,
  .open > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc; }
    .btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus,
    .open > .btn-info.dropdown-toggle:hover,
    .open > .btn-info.dropdown-toggle:focus,
    .open > .btn-info.dropdown-toggle.focus {
      color: #fff;
      background-color: #269abc;
      border-color: #1b6d85; }
  .btn-info:active, .btn-info.active,
  .open > .btn-info.dropdown-toggle {
    background-image: none; }
  .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus,
  fieldset[disabled] .btn-info:hover,
  fieldset[disabled] .btn-info:focus,
  fieldset[disabled] .btn-info.focus {
    background-color: #5bc0de;
    border-color: #46b8da; }
  .btn-info .badge {
    color: #5bc0de;
    background-color: #fff; }

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236; }
  .btn-warning:focus, .btn-warning.focus {
    color: #fff;
    background-color: #ec971f;
    border-color: #985f0d; }
  .btn-warning:hover {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512; }
  .btn-warning:active, .btn-warning.active,
  .open > .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512; }
    .btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus,
    .open > .btn-warning.dropdown-toggle:hover,
    .open > .btn-warning.dropdown-toggle:focus,
    .open > .btn-warning.dropdown-toggle.focus {
      color: #fff;
      background-color: #d58512;
      border-color: #985f0d; }
  .btn-warning:active, .btn-warning.active,
  .open > .btn-warning.dropdown-toggle {
    background-image: none; }
  .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus,
  fieldset[disabled] .btn-warning:hover,
  fieldset[disabled] .btn-warning:focus,
  fieldset[disabled] .btn-warning.focus {
    background-color: #f0ad4e;
    border-color: #eea236; }
  .btn-warning .badge {
    color: #f0ad4e;
    background-color: #fff; }

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a; }
  .btn-danger:focus, .btn-danger.focus {
    color: #fff;
    background-color: #c9302c;
    border-color: #761c19; }
  .btn-danger:hover {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925; }
  .btn-danger:active, .btn-danger.active,
  .open > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925; }
    .btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus,
    .open > .btn-danger.dropdown-toggle:hover,
    .open > .btn-danger.dropdown-toggle:focus,
    .open > .btn-danger.dropdown-toggle.focus {
      color: #fff;
      background-color: #ac2925;
      border-color: #761c19; }
  .btn-danger:active, .btn-danger.active,
  .open > .btn-danger.dropdown-toggle {
    background-image: none; }
  .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus,
  fieldset[disabled] .btn-danger:hover,
  fieldset[disabled] .btn-danger:focus,
  fieldset[disabled] .btn-danger.focus {
    background-color: #d9534f;
    border-color: #d43f3a; }
  .btn-danger .badge {
    color: #d9534f;
    background-color: #fff; }

.btn-link {
  color: #337ab7;
  font-weight: normal;
  border-radius: 0; }
  .btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled],
  fieldset[disabled] .btn-link {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
    border-color: transparent; }
  .btn-link:hover, .btn-link:focus {
    color: #23527c;
    text-decoration: underline;
    background-color: transparent; }
  .btn-link[disabled]:hover, .btn-link[disabled]:focus,
  fieldset[disabled] .btn-link:hover,
  fieldset[disabled] .btn-link:focus {
    color: #777777;
    text-decoration: none; }

.btn-lg {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33333;
  border-radius: 6px; }

.btn-sm {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.btn-xs {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.btn-block {
  display: block;
  width: 100%; }

.btn-block + .btn-block {
  margin-top: 5px; }

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%; }

body.modal-open {
  overflow: hidden; }

a, button {
  outline: none; }

.full-screen-loader:before {
  background: rgba(255, 255, 255, 0.9);
  content: "";
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999; }

.full-screen-loader:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 3em);
  left: calc(50% - 3em);
  width: 6em;
  height: 6em;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #65a7d6;
  transform: translateZ(0) translateY(-50%) translateX(-50%);
  animation: load8 1.1s infinite linear;
  border-radius: 50%;
  z-index: 99999; }

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@font-face {
  font-family: RopaSoftPro;
  src: url("/fonts/RopaSoftPro-ExtraBold-webfont.woff2") format("woff2"), url("/fonts/RopaSoftPro-ExtraBold-webfont.woff") format("woff");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: RopaSoftProLight;
  src: url("/fonts/RopaSoftPro-ExtraBold-webfont.woff2") format("woff2"), url("/fonts/RopaSoftPro-ExtraBold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: BrandonMedium;
  src: url("/fonts/BrandonGrotesqueWeb-Medium.woff2") format("woff2"), url("/fonts/BrandonGrotesqueWeb-Medium.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: BrandonLight;
  src: url("/fonts/BrandonGrotesqueWeb-Light.woff2") format("woff2"), url("/fonts/BrandonGrotesqueWeb-Light.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@keyframes wiggle {
  0% {
    transform: rotate(6deg); }
  25% {
    transform: rotate(-6deg); }
  50% {
    transform: rotate(6deg); }
  75% {
    transform: rotate(-6deg); }
  100% {
    transform: rotate(6deg); } }

@keyframes heartbeat {
  0% {
    transform: scale(1.2); }
  25% {
    transform: scale(1); }
  50% {
    transform: scale(1.2); }
  100% {
    transform: scale(1); } }

@keyframes shuffle {
  0% {
    transform: translateX(0); }
  50% {
    transform: translateX(5px); }
  100% {
    transform: translateX(0); } }

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0); }
  40% {
    transform: translateY(-30px); }
  60% {
    transform: translateY(-15px); } }

@keyframes tada {
  0% {
    transform: rotate(0deg) scaleX(1) scaleY(1); }
  16% {
    transform: rotate(-1.5deg) scaleX(0.8) scaleY(0.9); }
  31.5% {
    transform: rotate(-1.5deg) scaleX(0.8) scaleY(0.8); }
  48% {
    transform: rotate(1.5deg) scaleX(1.05) scaleY(1.05); }
  64% {
    transform: rotate(-1.5deg) scaleX(1.05) scaleY(1.05); }
  80% {
    transform: rotate(1.5deg) scaleX(1.05) scaleY(1.05); }
  100% {
    transform: rotate(0deg) scaleX(1) scaleY(1); } }

.carousel {
  position: relative;
  padding: 0; }
  .carousel:after {
    content: "";
    clear: both;
    display: block; }
  .carousel__col,
  .carousel .slick-slide {
    float: left;
    text-align: center; }
  .carousel__row {
    background: #fefefe;
    margin-bottom: 10px; }
  .carousel .slick-track {
    display: inline-block; }
  .carousel .slick-list {
    overflow: hidden; }
  .carousel .slick-track:after:after {
    content: "";
    clear: both;
    display: block; }
  .carousel .slick-dots {
    display: inline-block;
    margin: 15px auto 0;
    padding: 0;
    text-align: center; }
    .carousel .slick-dots:after {
      content: "";
      clear: both;
      display: block; }
    .carousel .slick-dots li {
      display: inline-block;
      list-style-type: none;
      margin: 0 5px 15px 0; }
      .carousel .slick-dots li button {
        text-indent: -9999px;
        cursor: pointer;
        border-radius: 10em;
        background: white;
        border: none;
        outline: none;
        height: 12px; }
      .carousel .slick-dots li.slick-active button {
        background: black; }
  .carousel .slick-prev,
  .carousel .slick-next {
    cursor: pointer; }
    .carousel .slick-prev.slick-disabled,
    .carousel .slick-next.slick-disabled {
      cursor: auto; }
  .carousel .new {
    z-index: 10;
    top: -1px;
    position: absolute;
    height: auto; }

.character-nav {
  margin: 40px auto;
  padding: 0;
  box-sizing: border-box;
  width: calc(300px - 60px);
  opacity: 0;
  transition: opacity .3s; }
  .character-nav:after {
    content: "";
    clear: both;
    display: block; }
  .character-nav.initialised {
    opacity: 1; }
  @media screen and (min-width: 450px) {
    .character-nav {
      width: calc(410px - 60px); } }
  @media screen and (min-width: 570px) {
    .character-nav {
      width: calc(530px - 60px); } }
  @media screen and (min-width: 690px) {
    .character-nav {
      width: calc(650px - 60px); } }
  @media screen and (min-width: 810px) {
    .character-nav {
      width: calc(770px - 60px); } }
  @media screen and (min-width: 930px) {
    .character-nav {
      width: calc(890px - 60px); } }
  @media screen and (min-width: 1050px) {
    .character-nav {
      width: calc(1010px - 60px); } }
  @media screen and (min-width: 1170px) {
    .character-nav {
      width: calc(1130px - 60px); } }
  @media screen and (min-width: 1300px) {
    .character-nav {
      width: calc(1260px - 60px); } }
  .character-nav .carousel {
    background: #ffffff;
    height: 80px;
    position: static; }
  .character-nav .slick-list {
    padding-top: 20px;
    height: 170px;
    transform: translateY(-40px) !important; }
  .character-nav .slick-prev,
  .character-nav .slick-next {
    display: inline-block;
    position: absolute;
    width: 130px;
    height: 130px;
    top: 33%;
    border-radius: 50%;
    z-index: 1;
    background-color: white;
    left: -70px; }
    .character-nav .slick-prev:before,
    .character-nav .slick-next:before {
      content: '';
      position: absolute;
      top: 50px;
      right: 12px;
      z-index: 1;
      width: 35px;
      height: 38px;
      transition: .3s; }
    .character-nav .slick-prev:hover:not(.slick-disabled):before,
    .character-nav .slick-next:hover:not(.slick-disabled):before {
      transform: scale(1.3); }
  .character-nav .slick-prev:before {
    background: #fff url("/images/char-nav-mobile-prev.svg") no-repeat 6px center; }
  .character-nav .slick-prev.slick-disabled:before {
    background: #fff url("/images/char-nav-mobile-disabled-prev.svg") no-repeat 6px center; }
  @media screen and (min-width: 1024px) {
    .character-nav .slick-prev:before {
      background: url("/images/char-carousel-prev.svg") no-repeat 0 center; }
    .character-nav .slick-prev.slick-disabled:before {
      background: url("/images/char-carousel-disabled-prev.svg") no-repeat 0 center; } }
  .character-nav .slick-next {
    right: -70px;
    left: auto; }
    .character-nav .slick-next:before {
      background: #fff url("/images/char-nav-mobile-next.svg") no-repeat 12px center;
      left: 15px; }
    .character-nav .slick-next.slick-disabled:before {
      background: #fff url("/images/char-nav-mobile-disabled-next.svg") no-repeat 12px center; }
    @media screen and (min-width: 1024px) {
      .character-nav .slick-next:before {
        right: 20px;
        background: url("/images/char-carousel-next.svg") no-repeat 0 center; }
      .character-nav .slick-next.slick-disabled:before {
        background: url("/images/char-carousel-disabled-next.svg") no-repeat 0 center; } }

.character-nav-slide {
  font-family: RopaSoftPro, Helvetica, sans-serif;
  text-align: center;
  display: inline-block;
  width: 120px;
  height: 120px;
  transition: all .1s linear;
  transform: scale(1); }
  .character-nav-slide img.character-nav-slide-normal {
    width: 100%;
    display: inline-block; }
  .character-nav-slide img.character-nav-slide-hover {
    width: 100%;
    display: none; }
  .character-nav-slide img.character-nav-slide-selected {
    width: 100%;
    display: inline-block;
    transform: scale(1.1); }
  .character-nav-slide:hover {
    transform: scale(1.1); }
    .character-nav-slide:hover img.character-nav-slide-normal {
      width: 100%;
      display: none; }
    .character-nav-slide:hover img.character-nav-slide-hover {
      width: 100%;
      display: inline-block; }
  .character-nav-slide .select-bar {
    display: none; }

.character-nav-slide-selected {
  text-align: center;
  display: inline-block;
  width: 120px;
  height: 120px;
  transition: all .1s linear;
  transform: scale(1.1);
  position: relative; }
  .character-nav-slide-selected .select-bar {
    display: inline-block;
    border-radius: 6px;
    width: 75px;
    height: 6px;
    background-color: #ffffff;
    position: absolute;
    left: 22px;
    bottom: -7px; }

#character-tooltip {
  font-family: RopaSoftPro, Helvetica, sans-serif;
  color: #ffffff;
  font-size: 2.1rem;
  text-transform: none;
  opacity: 0;
  background-color: #003953;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  min-width: 140px;
  width: auto;
  position: absolute;
  bottom: 5px;
  line-height: 1;
  padding: 10px 25px;
  white-space: nowrap;
  z-index: 5; }
  #character-tooltip.active {
    opacity: 1; }
  #character-tooltip.bounce {
    animation: tada linear .6s;
    animation-iteration-count: 1;
    animation-delay: .1s; }
  #character-tooltip .triangle {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 14px solid #003953;
    position: absolute;
    top: -10px;
    left: 52px; }

.search-holder .horizontal-carousel {
  max-height: 290px;
  border-bottom: 0; }

.search-holder .horizontal-carousel h2 {
  display: none; }

.search-holder .horizontal-carousel .slick-arrow {
  top: 74px; }

.search-holder .horizontal-carousel .swiper-container {
  margin-top: -30px; }

.search-holder .horizontal-carousel .slick-next {
  background: #003953 url(/images/yellow-arrow-next.svg) no-repeat;
  background-position: 17px 11px; }

.search-holder .horizontal-carousel .slick-prev {
  background: #003953 url(/images/yellow-arrow-prev.svg) no-repeat;
  background-position: 17px 11px; }

.horizontal-carousel {
  transition: all .5s;
  background: #25447f url("/images/blue-dots.png") repeat-x;
  width: 100%;
  position: relative;
  height: 354px;
  overflow: hidden;
  border-bottom: 8px solid #516A96; }
  .horizontal-carousel .swiper-container {
    opacity: 0;
    width: 84%;
    height: 354px;
    margin-top: -60px; }
  .horizontal-carousel.initialised .swiper-container {
    opacity: 1;
    transition: opacity 1s; }
  .horizontal-carousel .swiper-slide {
    text-align: center;
    font-size: 18px;
    width: auto;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center; }
  .horizontal-carousel .slick-arrow {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 170px;
    border-radius: 50%;
    border: 0;
    box-shadow: 0 2px 3px #222;
    z-index: 5;
    transition: all .3s; }
    .horizontal-carousel .slick-arrow.slick-disabled {
      background: #fff url("/images/icon-disabled-left.svg") no-repeat 10px center;
      box-shadow: none;
      opacity: .4; }
  .horizontal-carousel .slick-prev {
    background: #fff url("/images/promoted-prev.svg") no-repeat 10px center;
    left: 10px; }
    @media screen and (min-width: 1024px) {
      .horizontal-carousel .slick-prev {
        left: 10px; } }
    .horizontal-carousel .slick-prev:hover:not(.slick-disabled) {
      background: #237aff url("/images/promoted-prev-active.svg") no-repeat 10px center; }
  .horizontal-carousel .slick-next {
    background: #fff url("/images/promoted-next.svg") no-repeat 15px center;
    right: 10px; }
    @media screen and (min-width: 1024px) {
      .horizontal-carousel .slick-next {
        right: 10px; } }
    .horizontal-carousel .slick-next:hover:not(.slick-disabled) {
      background: #237aff url("/images/promoted-next-active.svg") no-repeat 15px center; }
    .horizontal-carousel .slick-next.slick-disabled {
      background: #fff url("/images/icon-disabled-right.svg") no-repeat 15px center; }
  .horizontal-carousel .slick-prev {
    left: 50px; }
  .horizontal-carousel .slick-next {
    right: 50px; }
  .horizontal-carousel h2 {
    padding-left: 20px;
    font-family: RopaSoftPro, Helvetica, sans-serif;
    color: #fff;
    font-size: 3rem;
    text-transform: none;
    line-height: normal;
    margin: 30px 30px 20px;
    text-transform: none; }
    @media screen and (min-width: 480px) {
      .horizontal-carousel h2 {
        font-size: 3.4rem; } }
    @media screen and (min-width: 768px) {
      .horizontal-carousel h2 {
        font-size: 3.6rem; } }
    @media screen and (min-width: 1024px) {
      .horizontal-carousel h2 {
        font-size: 3.8rem; } }
    @media screen and (min-width: 1240px) {
      .horizontal-carousel h2 {
        font-size: 4rem; } }

.character-main {
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative; }
  .character-main .swiper-container {
    height: 450px;
    margin-left: auto;
    margin-right: auto; }
    .character-main .swiper-container .swiper-wrapper {
      min-width: 1080px !important; }
    .character-main .swiper-container .swiper-slide {
      height: 228px; }
  .character-main .slick-arrow {
    height: 220px;
    position: absolute;
    top: 125px;
    border: 0;
    z-index: 20;
    text-indent: -5000px; }
    .character-main .slick-arrow:before {
      transition: all .2s;
      content: '';
      position: absolute;
      width: 54px;
      height: 84px;
      top: 72px;
      left: 8px; }
    .character-main .slick-arrow:hover:not(.slick-disabled):before {
      transform: scale(1.1); }
    @media screen and (min-width: 768px) {
      .character-main .slick-arrow {
        display: inline-block; } }
  .character-main .slick-prev {
    background: url("/images/grid-carousel-left.png") no-repeat 0 center;
    left: -13px;
    right: auto;
    width: 85px;
    transform: scale(0.7); }
    .character-main .slick-prev:before {
      background: url("/images/grid-left-arrow.svg") no-repeat 0 center; }
    .character-main .slick-prev:hover:not(.slick-disabled):before {
      background: url("/images/grid-left-arrow-active.svg") no-repeat 0 center; }
    @media screen and (min-width: 320px) {
      .character-main .slick-prev {
        transform: scale(0.7); } }
    @media screen and (min-width: 480px) {
      .character-main .slick-prev {
        transform: scale(0.7); } }
    @media screen and (min-width: 768px) {
      .character-main .slick-prev {
        transform: scale(0.9); } }
    @media screen and (min-width: 1024px) {
      .character-main .slick-prev {
        transform: scale(1); } }
  .character-main .slick-next {
    background: url("/images/grid-carousel-right.png") no-repeat 0 center;
    right: -16px;
    left: auto;
    width: 85px;
    transform: scale(0.7); }
    .character-main .slick-next:before {
      left: 18px;
      background: url("/images/grid-right-arrow.svg") no-repeat 0 center; }
    .character-main .slick-next:hover:not(.slick-disabled):before {
      background: url("/images/grid-right-arrow-active.svg") no-repeat 0 center; }
    @media screen and (min-width: 320px) {
      .character-main .slick-next {
        transform: scale(0.7); } }
    @media screen and (min-width: 480px) {
      .character-main .slick-next {
        transform: scale(0.7);
        right: -13px; } }
    @media screen and (min-width: 768px) {
      .character-main .slick-next {
        transform: scale(0.9);
        right: -13px; } }
    @media screen and (min-width: 1024px) {
      .character-main .slick-next {
        transform: scale(1);
        right: -13px; } }
  .character-main .slick-disabled {
    display: none; }

.character-nav.error {
  padding: 0 16px;
  text-align: center;
  opacity: 1; }
  .character-nav.error p {
    line-height: 1;
    margin: 0 0 10px; }
  .character-nav.error .message {
    font-family: RopaSoftPro, Helvetica, sans-serif;
    color: #9b9b9b;
    font-size: 2.2rem;
    text-transform: none; }
    @media screen and (min-width: 480px) {
      .character-nav.error .message {
        font-size: 3.5rem; } }
    @media screen and (min-width: 1240px) {
      .character-nav.error .message {
        font-size: 5.5rem; } }
  .character-nav.error .hint {
    font-family: BrandonMedium, Helvetica, sans-serif;
    color: #9b9b9b;
    font-size: 2rem;
    text-transform: none;
    padding: 0 5px; }
    @media screen and (min-width: 480px) {
      .character-nav.error .hint {
        font-size: 2.3rem; } }
    @media screen and (min-width: 1240px) {
      .character-nav.error .hint {
        font-size: 3.4rem;
        display: inline-block;
        margin-right: 20px; } }
  .character-nav.error .reload {
    background: #03b795 url("/images/button-chevron.svg") no-repeat 90% center;
    font-family: RopaSoftPro, Helvetica, sans-serif;
    color: #ffffff;
    font-size: 2rem;
    text-transform: uppercase;
    border-radius: 8px;
    box-shadow: 0 1px 1px #9b9b9b;
    border: 0;
    padding: 8px 35px 3px 15px; }
    @media screen and (min-width: 1240px) {
      .character-nav.error .reload {
        display: inline-block; } }

.react-tabs [role=tablist] {
  margin: 0;
  padding: 0;
  min-width: 360px; }

.react-tabs [role=tab] {
  display: inline-block;
  position: relative;
  list-style: none;
  font-family: RopaSoftPro, Helvetica, sans-serif;
  font-size: 20px;
  color: #ffffff;
  cursor: pointer;
  height: 70px; }
  .react-tabs [role=tab] div {
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    text-transform: uppercase;
    transition: all 0.5s ease; }
  .react-tabs [role=tab] div.new {
    background-image: url("/images/icon-new-yellow.svg");
    color: #ffdb59; }
  .react-tabs [role=tab] div.new:hover {
    color: #003953;
    background-color: #ffdb59;
    background-image: url("/images/icon-new-blue.svg"); }
  .react-tabs [role=tab] div.featured:hover {
    color: #003953;
    background-color: #ffffff;
    background-image: url("/images/icon-recommended-blue.svg"); }
  .react-tabs [role=tab] div.featured {
    background-image: url("/images/icon-recommended-white.svg"); }
  .react-tabs [role=tab] div.popular:hover {
    color: #003953;
    background-color: #03b795;
    background-image: url("/images/icon-popular-blue.svg"); }
  .react-tabs [role=tab] div.popular {
    background-image: url("/images/icon-popular-green.svg");
    color: #06d895; }
  @media screen and (min-width: 100px) {
    .react-tabs [role=tab] {
      font-size: 20px;
      height: 70px; }
      .react-tabs [role=tab] div {
        padding-top: 42px;
        background-position: 50% 20%;
        padding-left: 10px;
        padding-right: 10px; } }
  @media screen and (min-width: 320px) {
    .react-tabs [role=tab] {
      font-size: 20px;
      height: 70px; }
      .react-tabs [role=tab] div {
        padding-top: 42px;
        background-position: 50% 20%;
        padding-left: 10px;
        padding-right: 10px; } }
  @media screen and (min-width: 370px) {
    .react-tabs [role=tab] {
      font-size: 20px;
      height: 70px; }
      .react-tabs [role=tab] div {
        padding-top: 42px;
        background-position: 50% 20%;
        padding-left: 20px;
        padding-right: 20px; } }
  @media screen and (min-width: 480px) {
    .react-tabs [role=tab] {
      font-size: 20px;
      height: 70px; }
      .react-tabs [role=tab] div {
        padding-top: 42px;
        background-position: 50% 20%;
        padding-left: 20px;
        padding-right: 20px; } }
  @media screen and (min-width: 500px) {
    .react-tabs [role=tab] {
      font-size: 20px;
      height: 70px; }
      .react-tabs [role=tab] div {
        padding-top: 42px;
        background-position: 50% 20%;
        padding-left: 20px;
        padding-right: 20px; } }
  @media screen and (min-width: 600px) {
    .react-tabs [role=tab] {
      font-size: 24px;
      height: 60px; }
      .react-tabs [role=tab] div {
        background-position: 20px 15px;
        padding-top: 16px;
        padding-left: 60px;
        padding-right: 30px; } }
  @media screen and (min-width: 768px) {
    .react-tabs [role=tab] {
      font-size: 26px;
      height: 60px; }
      .react-tabs [role=tab] div {
        background-position: 20px 15px;
        padding-top: 15px;
        padding-left: 60px;
        padding-right: 30px; } }
  @media screen and (min-width: 1024px) {
    .react-tabs [role=tab] {
      font-size: 28px;
      height: 60px; }
      .react-tabs [role=tab] div {
        background-position: 20px 15px;
        padding-top: 13px;
        padding-left: 60px;
        padding-right: 30px; } }
  @media screen and (min-width: 1240px) {
    .react-tabs [role=tab] {
      font-size: 28px;
      height: 60px; }
      .react-tabs [role=tab] div {
        background-position: 20px 15px;
        padding-top: 13px;
        padding-left: 60px;
        padding-right: 30px; } }
  @media screen and (min-width: 1375px) {
    .react-tabs [role=tab] {
      font-size: 28px;
      height: 60px; }
      .react-tabs [role=tab] div {
        background-position: 20px 15px;
        padding-top: 13px;
        padding-left: 60px;
        padding-right: 30px; } }

.react-tabs [role=tab][aria-selected=true] {
  background: #fff;
  color: #003953; }
  .react-tabs [role=tab][aria-selected=true] div.new {
    color: #003953;
    background-color: #ffdb59;
    background-image: url("/images/icon-new-blue.svg"); }
  .react-tabs [role=tab][aria-selected=true] div.featured {
    background-image: url("/images/icon-recommended-blue.svg"); }
  .react-tabs [role=tab][aria-selected=true] div.popular {
    color: #003953;
    background-color: #03b795;
    background-image: url("/images/icon-popular-blue.svg"); }

.react-tabs [role=tab][aria-disabled=true] {
  color: GrayText;
  cursor: default; }

.react-tabs [role=tab]:focus {
  outline: none; }

.react-tabs [role=tab]:focus:after {
  position: absolute;
  background: #fff; }

.ReactTabs__TabList {
  width: 100%;
  height: 70px;
  background: #25447f url("/images/blue-dots.svg") repeat-x; }
  @media screen and (min-width: 320px) {
    .ReactTabs__TabList {
      height: 70px; } }
  @media screen and (min-width: 480px) {
    .ReactTabs__TabList {
      height: 70px; } }
  @media screen and (min-width: 500px) {
    .ReactTabs__TabList {
      height: 70px; } }
  @media screen and (min-width: 600px) {
    .ReactTabs__TabList {
      height: 60px; } }
  @media screen and (min-width: 768px) {
    .ReactTabs__TabList {
      height: 60px; } }
  @media screen and (min-width: 1024px) {
    .ReactTabs__TabList {
      height: 60px; } }
  @media screen and (min-width: 1240px) {
    .ReactTabs__TabList {
      height: 60px; } }
  @media screen and (min-width: 1375px) {
    .ReactTabs__TabList {
      height: 60px; } }
  @media screen and (min-width: 1440px) {
    .ReactTabs__TabList {
      height: 60px; } }

.main-container .tab-content {
  height: 500px; }
  .main-container .tab-content .new {
    height: 100%;
    background-color: #ffdb59; }
  .main-container .tab-content .popular {
    height: 100%;
    background-color: #03b795; }

.content-choice__filters {
  display: inline-block;
  width: 100%;
  background: #25447f url("/images/blue-dots.svg") repeat-x;
  margin: 0;
  margin: 0 0 15px;
  margin: 0 0 0.9375rem;
  padding: 0; }
  .content-choice__filters .content-choice__filter {
    display: inline-block;
    position: relative;
    padding: 0;
    vertical-align: top; }
  .content-choice__filters p {
    font-family: RopaSoftPro, Helvetica, sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    text-transform: uppercase;
    cursor: pointer;
    margin: 0;
    background-repeat: no-repeat; }
    .content-choice__filters p.active {
      color: #003953; }
    @media screen and (min-width: 600px) {
      .content-choice__filters p {
        font-size: 2.5rem; } }
    @media screen and (min-width: 768px) {
      .content-choice__filters p {
        font-size: 2.6rem; } }
    @media screen and (min-width: 1024px) {
      .content-choice__filters p {
        font-size: 2.8rem; } }
    @media screen and (min-width: 1240px) {
      .content-choice__filters p {
        font-size: 2.8rem; } }

.home-page .content-choice__filter,
.video-page .content-choice__filter,
.games-page .content-choice__filter,
.favourites-page .content-choice__filter,
.character-page .content-choice__filter {
  width: 33.33%; }
  @media screen and (min-width: 600px) {
    .home-page .content-choice__filter,
    .video-page .content-choice__filter,
    .games-page .content-choice__filter,
    .favourites-page .content-choice__filter,
    .character-page .content-choice__filter {
      width: auto; } }
  .home-page .content-choice__filter.disabled,
  .video-page .content-choice__filter.disabled,
  .games-page .content-choice__filter.disabled,
  .favourites-page .content-choice__filter.disabled,
  .character-page .content-choice__filter.disabled {
    opacity: 0.4; }
    .home-page .content-choice__filter.disabled p,
    .video-page .content-choice__filter.disabled p,
    .games-page .content-choice__filter.disabled p,
    .favourites-page .content-choice__filter.disabled p,
    .character-page .content-choice__filter.disabled p {
      cursor: default; }
      .home-page .content-choice__filter.disabled p:hover,
      .video-page .content-choice__filter.disabled p:hover,
      .games-page .content-choice__filter.disabled p:hover,
      .favourites-page .content-choice__filter.disabled p:hover,
      .character-page .content-choice__filter.disabled p:hover {
        background-color: transparent; }
  .home-page .content-choice__filter p,
  .video-page .content-choice__filter p,
  .games-page .content-choice__filter p,
  .favourites-page .content-choice__filter p,
  .character-page .content-choice__filter p {
    margin: 0;
    background-position: center 7px;
    background-repeat: no-repeat;
    text-align: center;
    transition: .2s; }
    .home-page .content-choice__filter p.destacados,
    .video-page .content-choice__filter p.destacados,
    .games-page .content-choice__filter p.destacados,
    .favourites-page .content-choice__filter p.destacados,
    .character-page .content-choice__filter p.destacados {
      background-image: url("/images/tv.svg"); }
    .home-page .content-choice__filter p.populares,
    .video-page .content-choice__filter p.populares,
    .games-page .content-choice__filter p.populares,
    .favourites-page .content-choice__filter p.populares,
    .character-page .content-choice__filter p.populares {
      background-image: url("/images/popular.svg"); }
    .home-page .content-choice__filter p.nuevo,
    .video-page .content-choice__filter p.nuevo,
    .games-page .content-choice__filter p.nuevo,
    .favourites-page .content-choice__filter p.nuevo,
    .character-page .content-choice__filter p.nuevo {
      background-image: url("/images/icon-star.svg"); }
    .home-page .content-choice__filter p:hover, .home-page .content-choice__filter p.active,
    .video-page .content-choice__filter p:hover,
    .video-page .content-choice__filter p.active,
    .games-page .content-choice__filter p:hover,
    .games-page .content-choice__filter p.active,
    .favourites-page .content-choice__filter p:hover,
    .favourites-page .content-choice__filter p.active,
    .character-page .content-choice__filter p:hover,
    .character-page .content-choice__filter p.active {
      text-decoration: none; }
    @media screen and (min-width: 600px) {
      .home-page .content-choice__filter p,
      .video-page .content-choice__filter p,
      .games-page .content-choice__filter p,
      .favourites-page .content-choice__filter p,
      .character-page .content-choice__filter p {
        background-position: 12px 12px;
        padding: 14px 15px 9px 55px; } }
    @media screen and (min-width: 768px) {
      .home-page .content-choice__filter p,
      .video-page .content-choice__filter p,
      .games-page .content-choice__filter p,
      .favourites-page .content-choice__filter p,
      .character-page .content-choice__filter p {
        background-position: 12px 15px; } }
    @media screen and (min-width: 768px) {
      .home-page .content-choice__filter p,
      .video-page .content-choice__filter p,
      .games-page .content-choice__filter p,
      .favourites-page .content-choice__filter p,
      .character-page .content-choice__filter p {
        background-position: 12px 16px; } }

.video-page .content-choice__filter p:hover, .video-page .content-choice__filter p.active {
  background-color: #fc882c;
  text-decoration: none; }

.games-page .content-choice__filters,
.video-page .content-choice__filters,
.favourites-page .content-choice__filters,
.character-page .content-choice__filters {
  height: 56px; }
  @media screen and (min-width: 600px) {
    .games-page .content-choice__filters,
    .video-page .content-choice__filters,
    .favourites-page .content-choice__filters,
    .character-page .content-choice__filters {
      height: 60px; } }
  @media screen and (min-width: 768px) {
    .games-page .content-choice__filters,
    .video-page .content-choice__filters,
    .favourites-page .content-choice__filters,
    .character-page .content-choice__filters {
      height: 65px; } }
  @media screen and (min-width: 1024px) {
    .games-page .content-choice__filters,
    .video-page .content-choice__filters,
    .favourites-page .content-choice__filters,
    .character-page .content-choice__filters {
      height: 70px; } }
  .games-page .content-choice__filters .content-choice__filter,
  .video-page .content-choice__filters .content-choice__filter,
  .favourites-page .content-choice__filters .content-choice__filter,
  .character-page .content-choice__filters .content-choice__filter {
    width: auto; }
  .games-page .content-choice__filters p,
  .video-page .content-choice__filters p,
  .favourites-page .content-choice__filters p,
  .character-page .content-choice__filters p {
    height: 56px;
    line-height: 2.3em; }
    @media screen and (min-width: 600px) {
      .games-page .content-choice__filters p,
      .video-page .content-choice__filters p,
      .favourites-page .content-choice__filters p,
      .character-page .content-choice__filters p {
        height: 60px;
        line-height: 1.5em; } }
    @media screen and (min-width: 768px) {
      .games-page .content-choice__filters p,
      .video-page .content-choice__filters p,
      .favourites-page .content-choice__filters p,
      .character-page .content-choice__filters p {
        height: 65px; } }
    @media screen and (min-width: 1024px) {
      .games-page .content-choice__filters p,
      .video-page .content-choice__filters p,
      .favourites-page .content-choice__filters p,
      .character-page .content-choice__filters p {
        height: 70px; } }
  .games-page .content-choice__filters [class^="game"]:not(.all),
  .games-page .content-choice__filters .game,
  .video-page .content-choice__filters [class^="game"]:not(.all),
  .video-page .content-choice__filters .game,
  .favourites-page .content-choice__filters [class^="game"]:not(.all),
  .favourites-page .content-choice__filters .game,
  .character-page .content-choice__filters [class^="game"]:not(.all),
  .character-page .content-choice__filters .game {
    font-size: 0;
    padding: 0 30px;
    background-position: center; }
    @media screen and (min-width: 600px) {
      .games-page .content-choice__filters [class^="game"]:not(.all),
      .games-page .content-choice__filters .game,
      .video-page .content-choice__filters [class^="game"]:not(.all),
      .video-page .content-choice__filters .game,
      .favourites-page .content-choice__filters [class^="game"]:not(.all),
      .favourites-page .content-choice__filters .game,
      .character-page .content-choice__filters [class^="game"]:not(.all),
      .character-page .content-choice__filters .game {
        padding: 0 42px; } }
    @media screen and (min-width: 768px) {
      .games-page .content-choice__filters [class^="game"]:not(.all),
      .games-page .content-choice__filters .game,
      .video-page .content-choice__filters [class^="game"]:not(.all),
      .video-page .content-choice__filters .game,
      .favourites-page .content-choice__filters [class^="game"]:not(.all),
      .favourites-page .content-choice__filters .game,
      .character-page .content-choice__filters [class^="game"]:not(.all),
      .character-page .content-choice__filters .game {
        padding: 0 49px; } }
    @media screen and (min-width: 1024px) {
      .games-page .content-choice__filters [class^="game"]:not(.all),
      .games-page .content-choice__filters .game,
      .video-page .content-choice__filters [class^="game"]:not(.all),
      .video-page .content-choice__filters .game,
      .favourites-page .content-choice__filters [class^="game"]:not(.all),
      .favourites-page .content-choice__filters .game,
      .character-page .content-choice__filters [class^="game"]:not(.all),
      .character-page .content-choice__filters .game {
        padding: 0 52px; } }
  .games-page .content-choice__filters .video,
  .video-page .content-choice__filters .video,
  .favourites-page .content-choice__filters .video,
  .character-page .content-choice__filters .video {
    font-size: 0;
    padding: 0 33px;
    background-position: 54%; }
    @media screen and (min-width: 600px) {
      .games-page .content-choice__filters .video,
      .video-page .content-choice__filters .video,
      .favourites-page .content-choice__filters .video,
      .character-page .content-choice__filters .video {
        padding: 0 37px; } }
    @media screen and (min-width: 768px) {
      .games-page .content-choice__filters .video,
      .video-page .content-choice__filters .video,
      .favourites-page .content-choice__filters .video,
      .character-page .content-choice__filters .video {
        padding: 0 39px; } }
    @media screen and (min-width: 1024px) {
      .games-page .content-choice__filters .video,
      .video-page .content-choice__filters .video,
      .favourites-page .content-choice__filters .video,
      .character-page .content-choice__filters .video {
        padding: 0 42px; } }
  .games-page .content-choice__filters .all,
  .video-page .content-choice__filters .all,
  .favourites-page .content-choice__filters .all,
  .character-page .content-choice__filters .all {
    line-height: 2.3em;
    padding: 0 12px; }
    .games-page .content-choice__filters .all:hover,
    .video-page .content-choice__filters .all:hover,
    .favourites-page .content-choice__filters .all:hover,
    .character-page .content-choice__filters .all:hover {
      color: #003953; }
    @media screen and (min-width: 600px) {
      .games-page .content-choice__filters .all,
      .video-page .content-choice__filters .all,
      .favourites-page .content-choice__filters .all,
      .character-page .content-choice__filters .all {
        padding: 0 22px;
        line-height: 2.6em; } }
    @media screen and (min-width: 768px) {
      .games-page .content-choice__filters .all,
      .video-page .content-choice__filters .all,
      .favourites-page .content-choice__filters .all,
      .character-page .content-choice__filters .all {
        padding: 0 26px; } }
  .games-page .content-choice__filters .game1,
  .video-page .content-choice__filters .game1,
  .favourites-page .content-choice__filters .game1,
  .character-page .content-choice__filters .game1 {
    background-image: url("/images/icon-difference.svg"); }
  .games-page .content-choice__filters .game2,
  .video-page .content-choice__filters .game2,
  .favourites-page .content-choice__filters .game2,
  .character-page .content-choice__filters .game2 {
    background-image: url("/images/icon-puzzle.svg"); }
  .games-page .content-choice__filters .game3,
  .video-page .content-choice__filters .game3,
  .favourites-page .content-choice__filters .game3,
  .character-page .content-choice__filters .game3 {
    background-image: url("/images/icon-paint.svg"); }
  .games-page .content-choice__filters .game4,
  .video-page .content-choice__filters .game4,
  .favourites-page .content-choice__filters .game4,
  .character-page .content-choice__filters .game4 {
    background-image: url("/images/icon-match.svg"); }
  .games-page .content-choice__filters .game,
  .video-page .content-choice__filters .game,
  .favourites-page .content-choice__filters .game,
  .character-page .content-choice__filters .game {
    background-image: url("/images/icon-filter-game.svg");
    font-size: 0; }
    .games-page .content-choice__filters .game.active, .games-page .content-choice__filters .game:hover,
    .video-page .content-choice__filters .game.active,
    .video-page .content-choice__filters .game:hover,
    .favourites-page .content-choice__filters .game.active,
    .favourites-page .content-choice__filters .game:hover,
    .character-page .content-choice__filters .game.active,
    .character-page .content-choice__filters .game:hover {
      background-image: url("/images/icon-filter-game-on.svg"); }
  @media screen and (min-width: 600px) {
    .games-page .content-choice__filters .new,
    .video-page .content-choice__filters .new,
    .favourites-page .content-choice__filters .new,
    .character-page .content-choice__filters .new {
      background-image: url("/images/new-video.svg"); }
      .games-page .content-choice__filters .new:hover,
      .video-page .content-choice__filters .new:hover,
      .favourites-page .content-choice__filters .new:hover,
      .character-page .content-choice__filters .new:hover {
        background-image: url("/images/new-video-on.svg"); }
    .games-page .content-choice__filters .popular,
    .video-page .content-choice__filters .popular,
    .favourites-page .content-choice__filters .popular,
    .character-page .content-choice__filters .popular {
      background-image: url("/images/popular-video.svg"); }
      .games-page .content-choice__filters .popular:hover,
      .video-page .content-choice__filters .popular:hover,
      .favourites-page .content-choice__filters .popular:hover,
      .character-page .content-choice__filters .popular:hover {
        background-image: url("/images/popular-video-on.svg"); } }
  .games-page .content-choice__filters .disabled .game:hover,
  .video-page .content-choice__filters .disabled .game:hover,
  .favourites-page .content-choice__filters .disabled .game:hover,
  .character-page .content-choice__filters .disabled .game:hover {
    background-image: url("/images/icon-filter-game.svg"); }
  .games-page .content-choice__filters .video,
  .video-page .content-choice__filters .video,
  .favourites-page .content-choice__filters .video,
  .character-page .content-choice__filters .video {
    background-image: url("/images/icon-filter-video.svg");
    font-size: 0; }
    .games-page .content-choice__filters .video.active, .games-page .content-choice__filters .video:hover,
    .video-page .content-choice__filters .video.active,
    .video-page .content-choice__filters .video:hover,
    .favourites-page .content-choice__filters .video.active,
    .favourites-page .content-choice__filters .video:hover,
    .character-page .content-choice__filters .video.active,
    .character-page .content-choice__filters .video:hover {
      background-image: url("/images/icon-filter-video-on.svg"); }
  .games-page .content-choice__filters .disabled .video:hover,
  .video-page .content-choice__filters .disabled .video:hover,
  .favourites-page .content-choice__filters .disabled .video:hover,
  .character-page .content-choice__filters .disabled .video:hover {
    background-image: url("/images/icon-filter-video.svg"); }

.character-page .content-choice__filter p:hover {
  text-decoration: none; }

.character-page .content-choice__filter p.active {
  background-color: transparent;
  text-decoration: none; }

.games-page .content-choice__filters p.active {
  color: #ffffff; }

.games-page .content-choice__filters li.content-choice__filter:not(.tab_0) {
  width: 56px; }
  @media screen and (min-width: 600px) {
    .games-page .content-choice__filters li.content-choice__filter:not(.tab_0) {
      width: 60px; } }
  @media screen and (min-width: 768px) {
    .games-page .content-choice__filters li.content-choice__filter:not(.tab_0) {
      width: 65px; } }
  @media screen and (min-width: 1024px) {
    .games-page .content-choice__filters li.content-choice__filter:not(.tab_0) {
      width: 70px; } }

@media screen and (min-width: 600px) {
  .video-page .content-choice__filters {
    height: 60px; } }

.video-page .content-choice__filters .content-choice__filter:not(.tab_0) {
  width: 33%; }
  @media screen and (min-width: 600px) {
    .video-page .content-choice__filters .content-choice__filter:not(.tab_0) {
      width: auto; } }

.video-page .content-choice__filters .all {
  color: #ffffff; }
  @media screen and (min-width: 600px) {
    .video-page .content-choice__filters .all {
      height: 60px;
      line-height: 2.4em; } }

.video-page .content-choice__filters p {
  font-size: 2em; }
  .video-page .content-choice__filters p:hover {
    color: #003953; }
  @media screen and (min-width: 600px) {
    .video-page .content-choice__filters p {
      height: 60px;
      font-size: 2.5rem;
      padding-top: 14px; } }
  @media screen and (min-width: 768px) {
    .video-page .content-choice__filters p {
      font-size: 2.6rem; } }
  @media screen and (min-width: 1024px) {
    .video-page .content-choice__filters p {
      font-size: 2.8rem; } }
  @media screen and (min-width: 1240px) {
    .video-page .content-choice__filters p {
      font-size: 2.8rem; } }

body,
html,
div#root,
div#root > div {
  height: 100%; }

.app-login {
  width: 100% !important;
  background: url("/images/bGDots.png") no-repeat bottom right #ffbb01;
  margin-top: 0 !important;
  position: relative;
  overflow: scroll;
  height: 100%; }
  .app-login > div {
    height: 100%; }
    .app-login > div > div {
      height: 100%; }
  .app-login .mso-app-login {
    height: calc(100% - 120px);
    overflow-y: scroll; }
    @media screen and (min-width: 320px) {
      .app-login .mso-app-login {
        height: calc(100% - 66px); } }
    @media screen and (min-width: 480px) {
      .app-login .mso-app-login {
        height: calc(100% - 66px); } }
    @media screen and (min-width: 768px) {
      .app-login .mso-app-login {
        height: calc(100% - 132px); } }
    .app-login .mso-app-login::-webkit-scrollbar {
      -webkit-appearance: none;
      width: 10px; }
    .app-login .mso-app-login::-webkit-scrollbar-thumb {
      border-radius: 4px;
      background-color: rgba(255, 255, 255, 0.6); }
    .app-login .mso-app-login::-webkit-scrollbar-track {
      width: 10px;
      background-color: rgba(74, 74, 74, 0.2);
      border-radius: 10px; }
  .app-login iframe {
    border: none; }
  .app-login p {
    clear: both;
    padding-top: 10px;
    width: 97%;
    text-align: center;
    color: #003953;
    font-size: 1em; }
    .app-login p.description {
      padding-top: 20px; }
      @media screen and (min-width: 768px) {
        .app-login p.description {
          padding-top: 40px; } }
    .app-login p.bottom {
      padding-top: 86px;
      width: 98%; }
    @media screen and (min-width: 768px) {
      .app-login p {
        font-size: 1.5em; } }
    @media screen and (min-width: 1024px) {
      .app-login p {
        font-size: 2em; } }
  .app-login form {
    width: 50%;
    margin: 0 auto; }
  .app-login .mso-app-login__login-providers {
    width: 264px;
    margin: 22px auto; }
    @media screen and (min-width: 480px) {
      .app-login .mso-app-login__login-providers {
        width: 402px; } }
    @media screen and (min-width: 768px) {
      .app-login .mso-app-login__login-providers {
        margin-top: 44px;
        width: 534px; } }
    @media screen and (min-width: 1024px) {
      .app-login .mso-app-login__login-providers {
        width: 816px; } }
    .app-login .mso-app-login__login-providers:after {
      content: "";
      clear: both;
      display: block; }
  .app-login .mso-app-login__login-provider {
    width: 126px;
    float: left;
    margin-right: 12px;
    position: relative; }
    .app-login .mso-app-login__login-provider .shortName {
      width: 100%;
      text-align: center; }
    .app-login .mso-app-login__login-provider:only-child {
      display: table;
      float: none;
      margin: 10% auto; }
    .app-login .mso-app-login__login-provider:nth-child(2n) {
      margin-right: 0; }
    @media screen and (min-width: 480px) {
      .app-login .mso-app-login__login-provider:nth-child(2n) {
        margin-right: 12px; }
      .app-login .mso-app-login__login-provider:nth-child(3n) {
        margin-right: 0; } }
    @media screen and (min-width: 768px) {
      .app-login .mso-app-login__login-provider {
        width: 252px;
        margin-right: 30px; }
        .app-login .mso-app-login__login-provider:nth-child(2n) {
          margin-right: 0; }
        .app-login .mso-app-login__login-provider:nth-child(3n) {
          margin-right: 30px; }
        .app-login .mso-app-login__login-provider:nth-child(6n) {
          margin-right: 0; }
        .app-login .mso-app-login__login-provider .shortName {
          font-size: 1.6em; } }
    @media screen and (min-width: 1024px) {
      .app-login .mso-app-login__login-provider:nth-child(2n) {
        margin-right: 30px; }
      .app-login .mso-app-login__login-provider:nth-child(3n) {
        margin-right: 0; } }
    .app-login .mso-app-login__login-provider img {
      width: 70%;
      height: auto;
      margin: 0 auto;
      display: block; }
  .app-login .mso-app-login__img-wrapper {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.3);
    padding: 18px 0; }
    @media screen and (min-width: 768px) {
      .app-login .mso-app-login__img-wrapper {
        padding: 38px 0;
        border-radius: 12px; } }
    @media screen and (min-width: 1024px) {
      .app-login .mso-app-login__img-wrapper {
        border-radius: 16px; } }
  .app-login .openPicker {
    width: 273px;
    height: 45px;
    border-radius: 10px;
    border: #25447f 2px solid;
    margin: 2em auto;
    color: #afafaf;
    font-size: 1em; }
    .app-login .openPicker.countrySelected {
      color: #4a4a4a; }
    @media screen and (min-width: 768px) {
      .app-login .openPicker {
        width: 543px;
        height: 86px;
        font-size: 2em;
        border-radius: 21px;
        border: #25447f 4px solid; } }
    .app-login .openPicker button {
      text-transform: uppercase;
      text-align: left;
      padding-left: 15px;
      padding-top: 6px;
      border: #ffffff 3px solid;
      background: url("/images/chevronDownField.png") no-repeat right 5% center #f3f3f3;
      background-size: 7%;
      width: 100%;
      height: 100%;
      border-radius: 10px;
      box-shadow: inset 0px 1px 2px 0px rgba(0, 0, 0, 0.3); }
      @media screen and (min-width: 768px) {
        .app-login .openPicker button {
          background-size: 5%;
          border: #ffffff 6px solid;
          border-radius: 18px;
          padding-left: 23px; } }
  .app-login .footerBar {
    background-color: #03B795;
    width: 100%;
    height: 120px;
    position: fixed;
    bottom: 0;
    padding: 0.6em 2.1em;
    overflow: hidden;
    border-top: rgba(255, 255, 255, 0.2) solid 5px;
    box-shadow: inset 0px 3px 8px 0px rgba(0, 0, 0, 0.1); }
    @media screen and (min-width: 320px) {
      .app-login .footerBar {
        padding: 0.6em 1.5em;
        height: 66px; } }
    @media screen and (min-width: 480px) {
      .app-login .footerBar {
        height: 65px;
        padding: 0.6em 2.1em; } }
    @media screen and (min-width: 768px) {
      .app-login .footerBar {
        height: 130px;
        padding-top: 1.3em; } }
    .app-login .footerBar.loginStage {
      background: none;
      width: 10%;
      border-top: none;
      box-shadow: none; }
      .app-login .footerBar.loginStage .exit {
        display: none; }
    .app-login .footerBar button {
      border-radius: 7px;
      font-family: RopaSoftPro;
      font-size: 1.5em;
      color: #25447f;
      width: 100%;
      height: 45px;
      vertical-align: middle;
      border: none;
      padding-top: 6px;
      margin: 0;
      box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.3); }
      @media screen and (min-width: 320px) {
        .app-login .footerBar button {
          font-size: 1.4em;
          width: 130px; } }
      @media screen and (min-width: 480px) {
        .app-login .footerBar button {
          width: 162px;
          height: 45px;
          font-size: 1.8em;
          border-radius: 9px; } }
      @media screen and (min-width: 768px) {
        .app-login .footerBar button {
          width: 324px;
          height: 90px;
          font-size: 3em;
          padding-top: 9px;
          border-radius: 16px; } }
      .app-login .footerBar button.exit {
        float: left;
        background: url("/images/characterCarouselArrowLeft.png") 10px center no-repeat #fff;
        background-size: 10%;
        margin-bottom: 10px; }
        @media screen and (min-width: 480px) {
          .app-login .footerBar button.exit {
            background-size: 9%;
            margin-bottom: 0; } }
        @media screen and (min-width: 768px) {
          .app-login .footerBar button.exit {
            background-size: 8%;
            background-position: 27px center; } }
        @media screen and (min-width: 1024px) {
          .app-login .footerBar button.exit {
            background-size: 7%; } }
      .app-login .footerBar button.btn-continue {
        float: right;
        text-align: left;
        background: url("/images/characterCarouselArrowRight.png") right 10px center no-repeat #fff;
        background-size: 10%;
        padding-left: 17px; }
        @media screen and (min-width: 480px) {
          .app-login .footerBar button.btn-continue {
            background-size: 9%; } }
        @media screen and (min-width: 768px) {
          .app-login .footerBar button.btn-continue {
            background-size: 8%;
            background-position: right 27px center;
            padding-left: 56px; } }
        @media screen and (min-width: 1024px) {
          .app-login .footerBar button.btn-continue {
            background-size: 7%; } }
      .app-login .footerBar button.btn-hidden {
        display: none; }
      .app-login .footerBar button.btn-disabled {
        background: url("/images/arrow-white-disabled.png") right 10px center no-repeat rgba(255, 255, 255, 0.85);
        cursor: default;
        color: #dddddd;
        background-size: 10%; }
        @media screen and (min-width: 480px) {
          .app-login .footerBar button.btn-disabled {
            background-size: 9%; } }
        @media screen and (min-width: 768px) {
          .app-login .footerBar button.btn-disabled {
            background-size: 8%;
            background-position: right 27px center; } }
        @media screen and (min-width: 1024px) {
          .app-login .footerBar button.btn-disabled {
            background-size: 7%; } }
      .app-login .footerBar button.backBtnSmall {
        display: none;
        width: 44px;
        height: 44px;
        position: absolute;
        bottom: 10px;
        left: 12px;
        background: url("/images/characterCarouselArrowLeft.png") 10px center no-repeat #fff; }
        .app-login .footerBar button.backBtnSmall.show {
          display: inline-block; }

@media screen and (min-width: 370px) {
  .rmc-picker {
    height: 200px; } }

.rmc-picker-mask {
  background-image: linear-gradient(to bottom, rgba(239, 239, 244, 0.95), rgba(239, 239, 244, 0.6)), linear-gradient(to top, rgba(239, 239, 244, 0.95), rgba(239, 239, 244, 0.6)); }

.rmc-picker-popup-header {
  background: #ffffff; }

.rmc-picker-popup-item {
  color: #03b795;
  font-size: 1.5em; }
  @media screen and (min-width: 768px) {
    .rmc-picker-popup-item {
      font-size: auto; } }

.rmc-picker-item-selected {
  background-color: rgba(239, 239, 244, 0.6);
  color: #03b795; }

.rmc-picker-item {
  font-size: 1.5em; }
  @media screen and (min-width: 768px) {
    .rmc-picker-item {
      font-size: auto; } }

.auth-modal-header {
  background: #ffffff;
  width: 100%;
  height: 56px;
  text-align: center;
  position: relative;
  z-index: 1; }
  .auth-modal-header:after {
    content: "";
    clear: both;
    display: block; }
  .auth-modal-header:before {
    content: '';
    background: url("/images/auth-logo-med.svg") no-repeat center/43%;
    position: absolute;
    top: -16px;
    width: 120px;
    height: 90px;
    left: calc((100% - 120px) / 2); }
    @media screen and (min-width: 600px) {
      .auth-modal-header:before {
        background-size: 70%;
        top: -5px; } }
  .auth-modal-header__logo {
    display: inline-block; }
  .auth-modal-header__faq-btn {
    cursor: pointer;
    width: 2em;
    height: 2em;
    padding: 0;
    float: left;
    position: relative;
    top: 1em;
    right: 1em;
    color: #ffffff; }
    .auth-modal-header__faq-btn:hover {
      color: #ffffff;
      text-decoration: none; }
      .auth-modal-header__faq-btn:hover:before {
        background: url(/images/button-faq-hover.png) no-repeat center;
        background-size: 73%; }
    .auth-modal-header__faq-btn:before {
      content: '';
      background: url(/images/faq-btn.png) no-repeat center;
      display: block;
      position: absolute;
      top: -21px;
      left: 8px;
      width: 72px;
      height: 72px;
      background-size: 73%; }
      @media screen and (min-width: 1024px) {
        .auth-modal-header__faq-btn:before {
          display: none; } }
    .auth-modal-header__faq-btn span {
      display: none;
      text-transform: uppercase;
      color: #ffffff; }
      .auth-modal-header__faq-btn span:hover {
        text-decoration: none; }
      @media screen and (min-width: 1024px) {
        .auth-modal-header__faq-btn span {
          display: block; } }
    @media screen and (min-width: 1024px) {
      .auth-modal-header__faq-btn {
        display: block;
        border-radius: 8px;
        width: 263px;
        height: 28px;
        float: right;
        margin-right: 28px;
        background: #54acef;
        color: #fff;
        font-size: 1.1em;
        padding-top: 0.25em;
        top: 0.9em; }
        .auth-modal-header__faq-btn:hover {
          background: #5476ef; } }
  .auth-modal-header__close-btn {
    cursor: pointer;
    width: 2em;
    height: 2em;
    padding: 0;
    float: right;
    position: relative;
    top: 1em;
    right: 1em; }
    .auth-modal-header__close-btn:hover:before {
      background: url(/images/button-close-hover.png) no-repeat center;
      background-size: 75%; }
    .auth-modal-header__close-btn:before {
      content: '';
      background: url(/images/button-close-normal.png) no-repeat center;
      display: block;
      position: absolute;
      top: -21px;
      left: -26px;
      width: 72px;
      height: 72px;
      background-size: 75%; }

.mso-login-page {
  font-family: RopaSoftPro;
  background: url("/images/b-g-dots.png") no-repeat bottom right #03b795;
  position: relative; }
  .mso-login-page:after {
    content: "";
    clear: both;
    display: block; }
  .mso-login-page .hidden {
    visibility: hidden; }
  .mso-login-page__outer {
    width: 290px;
    padding-top: 3.5em;
    margin: 0 auto; }
    @media screen and (min-width: 600px) {
      .mso-login-page__outer {
        width: 392px; } }
    @media screen and (min-width: 1024px) {
      .mso-login-page__outer {
        width: 1024px;
        padding-top: 6em; } }
  .mso-login-page .video-container {
    width: 280px;
    height: 199px; }
    @media screen and (min-width: 600px) {
      .mso-login-page .video-container {
        width: 392px;
        height: 228px; } }
  .mso-login-page video {
    background: transparent;
    border: none;
    width: 280px;
    height: 199px; }
    @media screen and (min-width: 600px) {
      .mso-login-page video {
        width: 392px;
        height: 228px; } }
    @media screen and (min-width: 1024px) {
      .mso-login-page video {
        display: none; } }
  .mso-login-page p {
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: normal;
    font-size: 0.95em;
    letter-spacing: 0.05em; }
    @media screen and (min-width: 600px) {
      .mso-login-page p {
        font-size: 1.1em; } }
    .mso-login-page p.videoDescriptionTop {
      display: none;
      margin: 0 0 20px; }
      @media screen and (min-width: 1024px) {
        .mso-login-page p.videoDescriptionTop {
          display: block; } }
    .mso-login-page p.videoDescription {
      display: block;
      margin-bottom: -17px; }
      @media screen and (min-width: 600px) {
        .mso-login-page p.videoDescription {
          margin-bottom: 3px; } }
      @media screen and (min-width: 1024px) {
        .mso-login-page p.videoDescription {
          display: none; } }
  .mso-login-page__left {
    box-sizing: border-box; }
    .mso-login-page__left h1 {
      font-size: 2.2em;
      color: #ffdb59; }
    .mso-login-page__left .video-container {
      display: none; }
    .mso-login-page__left video {
      background: transparent;
      display: none; }
    .mso-login-page__left .videoDescription {
      margin-bottom: -23px;
      display: none; }
    @media screen and (min-width: 1024px) {
      .mso-login-page__left {
        float: left;
        width: 392px;
        margin-right: 66px; }
        .mso-login-page__left .video-container {
          display: block; }
        .mso-login-page__left video {
          display: block;
          width: 392px;
          height: 254px; }
        .mso-login-page__left .videoDescription {
          display: block; } }
  .mso-login-page__right {
    box-sizing: border-box; }
    .mso-login-page__right h2 {
      font-family: RopaSoftPro;
      font-size: 1.2em;
      font-weight: 800;
      color: #fff;
      margin-top: 3em;
      text-transform: uppercase; }
      @media screen and (min-width: 1024px) {
        .mso-login-page__right h2 {
          margin-top: 1.2em; } }
    @media screen and (min-width: 1024px) {
      .mso-login-page__right {
        float: left;
        width: 445px; }
        .mso-login-page__right form {
          margin-top: 64px; } }
  .mso-login-page .footerBar {
    overflow: hidden;
    padding: 2.5em 0 2em;
    display: flex;
    flex-direction: column; }
    @media screen and (min-width: 600px) {
      .mso-login-page .footerBar {
        flex-direction: row;
        width: 392px; } }
    @media screen and (min-width: 600px) {
      .mso-login-page .footerBar {
        padding: 3em 0 3.5em; } }
    @media screen and (min-width: 1024px) {
      .mso-login-page .footerBar {
        width: 83%;
        padding: 4em 0; } }
    .mso-login-page .footerBar button {
      border-radius: 10px;
      font-family: RopaSoftPro;
      font-size: 1.55em;
      color: #25447f;
      width: 145px;
      height: 44px;
      vertical-align: middle;
      border: none;
      padding: 8px 0.45em;
      margin: 0 0 1em 0;
      text-align: center; }
      @media screen and (min-width: 480px) {
        .mso-login-page .footerBar button {
          font-size: 1.7em;
          border-radius: 11px; } }
      @media screen and (min-width: 1024px) {
        .mso-login-page .footerBar button {
          font-size: 1.4em;
          border-radius: 7px; } }
      .mso-login-page .footerBar button.exit {
        background: url("/images/characterCarouselArrowLeft.png") 10px center no-repeat #fff;
        background-size: 10%;
        order: 2;
        margin: 0 auto 1em auto;
        padding-left: 22px; }
        .mso-login-page .footerBar button.exit:hover {
          background-color: #ffdb59; }
        @media screen and (min-width: 480px) {
          .mso-login-page .footerBar button.exit {
            background-size: 9%; } }
        @media screen and (min-width: 600px) {
          .mso-login-page .footerBar button.exit {
            background-size: 12%;
            font-size: 1.4em;
            width: 120px;
            height: 54px;
            order: 1;
            margin: 0 auto 0 0; } }
        @media screen and (min-width: 1024px) {
          .mso-login-page .footerBar button.exit {
            background-size: 13%; } }
      .mso-login-page .footerBar button.btn-continue {
        padding-left: 83px;
        text-align: left;
        margin-top: 0.3em;
        background: url("/images/characterCarouselArrowRight.png") right 10px center no-repeat #fff;
        background-size: 5%;
        width: 96%;
        order: 1; }
        .mso-login-page .footerBar button.btn-continue:hover {
          background-color: #ffdb59; }
        @media screen and (min-width: 480px) {
          .mso-login-page .footerBar button.btn-continue {
            padding-left: 2em;
            text-align: center;
            background-size: 4%; } }
        @media screen and (min-width: 600px) {
          .mso-login-page .footerBar button.btn-continue {
            background-size: 8%;
            width: 200px;
            height: 54px;
            order: 2;
            margin: 0 0 0 auto;
            text-align: left;
            padding-left: 37px; } }
        @media screen and (min-width: 1024px) {
          .mso-login-page .footerBar button.btn-continue {
            background-size: 8%;
            padding-left: 45px; } }
      .mso-login-page .footerBar button.btn-hidden {
        display: none; }
      .mso-login-page .footerBar button.btn-disabled {
        background: url("/images/arrow-white-disabled.png") right 10px center no-repeat rgba(255, 255, 255, 0.85);
        cursor: default;
        color: #dddddd;
        background-size: 10%; }
        @media screen and (min-width: 480px) {
          .mso-login-page .footerBar button.btn-disabled {
            background-size: 9%; } }
        @media screen and (min-width: 768px) {
          .mso-login-page .footerBar button.btn-disabled {
            background-size: 8%; } }
        @media screen and (min-width: 1024px) {
          .mso-login-page .footerBar button.btn-disabled {
            background-size: 7%; } }

.add-profile {
  padding: 20px;
  background: url("/images/b-g-dots.png") no-repeat bottom right #03b795; }
  .add-profile label {
    display: inline-block; }
  .add-profile label img {
    pointer-events: none; }
  .add-profile:after {
    content: "";
    clear: both;
    display: block; }
  .add-profile > div {
    margin: 0 auto;
    max-width: 460px; }
  .add-profile h2 {
    margin: 40px 0 25px;
    font-family: RopaSoftPro, Helvetica, sans-serif;
    color: #ffdb59;
    font-size: 2em;
    text-transform: none; }
  .add-profile h3 {
    text-align: left;
    margin: 0 0 10px;
    font-family: RopaSoftPro, Helvetica, sans-serif;
    color: #ffffff;
    font-size: 1.5em;
    text-transform: none; }
  .add-profile form {
    margin: 0 0 10px;
    text-align: center; }
    @media screen and (min-width: 1024px) {
      .add-profile form .text {
        text-align: left; } }
    .add-profile form fieldset {
      width: 100%; }
    .add-profile form fieldset:nth-child(2) {
      margin-top: 40px; }
      @media screen and (min-width: 1024px) {
        .add-profile form fieldset:nth-child(2) {
          margin-top: 0;
          text-align: left; } }
    @media screen and (min-width: 1024px) {
      .add-profile form fieldset {
        display: inline-block;
        vertical-align: top; } }
  @media screen and (min-width: 1024px) {
    .add-profile.new-user {
      padding: 20px 0; }
      .add-profile.new-user > div {
        max-width: 880px; }
      .add-profile.new-user fieldset:first-child {
        width: 445px;
        margin-right: 35px; }
      .add-profile.new-user fieldset:last-child {
        width: 400px; } }
  .add-profile #profile-name:-ms-input-placeholder {
    color: #a9a9a9; }
  .add-profile .profile-name {
    border: 2px solid #25447f;
    margin-bottom: 15px;
    border-radius: 10px;
    width: 100%;
    position: relative; }
    @media screen and (min-width: 600px) {
      .add-profile .profile-name {
        border-width: 3px; } }
    .add-profile .profile-name input {
      font-family: BrandonLight, Helvetica, sans-serif;
      color: #25447f;
      font-size: 1.5rem;
      text-transform: uppercase;
      background-color: #f3f3f3;
      border-radius: 8px;
      box-shadow: inset 0 2px 3px 0 rgba(0, 0, 0, 0.2);
      border: 4px solid #fff;
      text-transform: uppercase;
      padding: 7px 10px 5px 10px;
      width: 100%;
      font-weight: bold; }
      @media screen and (min-width: 600px) {
        .add-profile .profile-name input {
          padding: 11px 10px 11px 10px;
          font-size: 2rem; } }
    .add-profile .profile-name p {
      position: absolute;
      right: 9px;
      bottom: -6px;
      color: #25447f;
      font-size: 1.2rem;
      display: none; }
      .add-profile .profile-name p.visible {
        display: inline-block; }
      @media screen and (min-width: 600px) {
        .add-profile .profile-name p {
          right: 10px;
          bottom: -6px;
          font-size: 1.8rem; } }
  .add-profile .gender {
    text-align: center;
    margin: 30px 0; }
    .add-profile .gender:after {
      content: "";
      clear: both;
      display: block; }
    .add-profile .gender label {
      display: inline-block;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      text-align: center;
      margin: 0 8px;
      cursor: pointer;
      position: relative; }
      .add-profile .gender label > input {
        visibility: hidden;
        position: absolute; }
      .add-profile .gender label > input + div,
      .add-profile .gender label > input + div + div {
        opacity: 1;
        border: 4px solid #03b795;
        top: 0;
        left: 0;
        transform: translate(0, 0);
        border-radius: 50%;
        width: 80px;
        height: 80px;
        background-color: #ffffff;
        transition: opacity .3s;
        position: absolute; }
      .add-profile .gender label > input + div img,
      .add-profile .gender label > input + div + div img {
        border: 3px solid #03b795;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        padding: 5px; }
      .add-profile .gender label > input + div + div,
      .add-profile .gender label > input:checked + div {
        opacity: 0; }
      .add-profile .gender label > input:checked + div + div {
        opacity: 1;
        border: 4px solid #ffdb59; }
  .add-profile .avatars {
    padding: 0;
    list-style-type: none;
    margin-bottom: 50px;
    text-align: center; }
    .add-profile .avatars li {
      display: inline-block;
      margin: 4px; }
      @media screen and (min-width: 480px) {
        .add-profile .avatars li {
          margin: 8px; } }
    .add-profile .avatars label {
      margin: 0; }
    .add-profile .avatars input[type="radio"] {
      visibility: hidden;
      position: absolute; }
      .add-profile .avatars input[type="radio"]:disabled + div {
        opacity: .3;
        cursor: default;
        transform: none; }
    .add-profile .avatars input + div {
      width: 60px;
      height: 60px;
      border: 3px solid #03b795;
      border-radius: 50%;
      transition: all .2s;
      cursor: pointer; }
      .add-profile .avatars input + div:hover {
        transform: scale(1.1); }
      @media screen and (min-width: 480px) {
        .add-profile .avatars input + div {
          width: 88px;
          height: 88px; } }
      @media screen and (min-width: 1024px) {
        .add-profile .avatars input + div {
          width: 95px;
          height: 95px; } }
    .add-profile .avatars img {
      width: 100%;
      height: 100%;
      border: 3px solid white;
      border-radius: 50%;
      transition: border .3s; }
      .add-profile .avatars img.disabled {
        opacity: .2; }
    .add-profile .avatars input:checked + div {
      border: 3px solid #ffdb59;
      transform: scale(1.1); }
      .add-profile .avatars input:checked + div:before {
        content: " ";
        position: absolute;
        z-index: 1;
        top: 3px;
        left: 3px;
        right: 3px;
        bottom: 3px;
        border: 3px solid #ffffff;
        border-radius: 50%; }
    .add-profile .avatars input:checked + div img {
      border: 3px solid #03b795; }
  .add-profile button {
    font-size: 1.8rem;
    font-family: RopaSoftPro, Helvetica, sans-serif;
    color: #003953;
    text-transform: uppercase;
    border-radius: 8px;
    border: 0;
    padding: 12px 40px 8px;
    display: inline-block;
    margin-bottom: 20px;
    transition: background-color .3s; }
    @media screen and (min-width: 600px) {
      .add-profile button {
        display: inline-block;
        color: #003953;
        font-family: RopaSoftPro, Helvetica, sans-serif;
        font-size: 1.8rem; } }
    .add-profile button:hover:not(:disabled) {
      color: #003953;
      background-color: #ffdb59;
      font-family: RopaSoftPro, Helvetica, sans-serif; }
    .add-profile button.disabled, .add-profile button:disabled {
      color: #003953;
      font-family: RopaSoftPro, Helvetica, sans-serif;
      opacity: .3;
      cursor: default; }
  .add-profile [type="submit"] {
    background: #ffffff url("/images/characterCarouselArrowRight.png") no-repeat right 10px center/5%; }
  .add-profile .save {
    color: #003953;
    font-family: RopaSoftPro, Helvetica, sans-serif;
    font-size: 1.8rem; }
  .add-profile .edit {
    color: #003953;
    font-family: RopaSoftPro, Helvetica, sans-serif;
    margin: 0 auto 30px;
    display: inline-block;
    float: right;
    /*display: block;
        float: none;*/ }
  .add-profile .edit {
    color: #003953;
    font-family: RopaSoftPro, Helvetica, sans-serif;
    font-size: 1.8rem; }
    @media screen and (min-width: 480px) {
      .add-profile .edit {
        color: #003953;
        font-family: RopaSoftPro, Helvetica, sans-serif;
        float: right;
        font-size: 1.8rem; } }
  .add-profile.new-user .without-newsletter,
  .add-profile.new-user .save {
    font-family: RopaSoftPro, Helvetica, sans-serif; }
    @media screen and (min-width: 1024px) {
      .add-profile.new-user .without-newsletter,
      .add-profile.new-user .save {
        font-family: RopaSoftPro, Helvetica, sans-serif;
        float: right; } }
  .add-profile.returning-user .edit,
  .add-profile.returning-user .save {
    font-family: RopaSoftPro, Helvetica, sans-serif;
    color: #003953; }
    @media screen and (min-width: 480px) {
      .add-profile.returning-user .edit,
      .add-profile.returning-user .save {
        font-family: RopaSoftPro, Helvetica, sans-serif;
        float: right;
        color: #003953;
        font-size: 1.8rem; } }
  .add-profile .exit {
    font-family: RopaSoftPro, Helvetica, sans-serif;
    color: #003953;
    background: #ffffff url("/images/characterCarouselArrowLeft.png") no-repeat 9px center/10%;
    width: 100px;
    padding: 3px 0 0;
    font-size: 1.8rem;
    margin: 0 auto; }
    @media screen and (min-width: 480px) {
      .add-profile .exit {
        font-family: RopaSoftPro, Helvetica, sans-serif;
        color: #003953;
        width: 120px;
        float: left;
        padding: 12px 0 8px;
        font-size: 1.8rem; } }
  .add-profile .without-newsletter {
    font-family: BrandonLight, Helvetica, sans-serif;
    color: #ffffff;
    font-size: 1.7rem;
    text-transform: none;
    text-decoration: underline;
    text-align: center;
    cursor: pointer;
    clear: both;
    background: transparent url("/images/arrow-white.svg") no-repeat right 10px center/3%;
    width: auto;
    display: inline-block;
    padding: 0 25px 0; }
    @media screen and (min-width: 1024px) {
      .add-profile .without-newsletter {
        text-align: left; } }
    .add-profile .without-newsletter:hover:not(:disabled) {
      background: transparent url("/images/arrow-yellow.svg") no-repeat right 10px center/3%;
      color: #ffdb59; }
  .add-profile video {
    background: transparent;
    border: none;
    width: 100%;
    height: 199px;
    margin: -15px 0 15px; }
    @media screen and (min-width: 600px) {
      .add-profile video {
        height: 228px; } }
    @media screen and (min-width: 1024px) {
      .add-profile video {
        margin-top: 0; } }

.Select-placeholder {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #a9a9a9;
  font-size: 1em;
  line-height: 34px;
  text-transform: uppercase; }
  @media screen and (min-width: 600px) {
    .Select-placeholder {
      font-size: 1.3em;
      line-height: 52px; } }

.Select-value-label {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #25447f !important;
  font-size: 1.1em;
  line-height: 29px; }
  @media screen and (min-width: 600px) {
    .Select-value-label {
      font-size: 1.6em;
      line-height: 52px; } }

.select-option {
  line-height: 10px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #6d767d;
  font-size: 1em;
  text-transform: uppercase; }
  @media screen and (min-width: 600px) {
    .select-option {
      font-size: 1.6em;
      line-height: 20px; } }

.Select-arrow-zone {
  position: absolute;
  right: 0;
  top: 10px; }
  .Select-arrow-zone .Select-arrow {
    border: none;
    background: url("/images/dropdown-arrow.png") no-repeat 0 0;
    background-size: 80%;
    width: 22px;
    height: 12px;
    margin: 6px -1px 0 0;
    display: inline-block; }
    @media screen and (min-width: 600px) {
      .Select-arrow-zone .Select-arrow {
        margin: 16px -1px 0 0; } }

.error .Select-control {
  border-color: #ff5077; }

.is-focused:not(.is-open) .Select-control {
  border-color: #25447f; }

.Select-control {
  border: 2px #25447f solid;
  border-radius: 8px;
  width: 280px;
  height: 42px;
  display: flex;
  position: relative; }
  .Select-control .Select-value {
    border-radius: 10px; }
  @media screen and (min-width: 600px) {
    .Select-control {
      border: 3px #25447f solid;
      width: 392px;
      height: 63px; } }
  .Select-control div {
    background-color: #f3f3f3;
    border-radius: 10px;
    box-shadow: inset 0 2px 3px 0 rgba(0, 0, 0, 0.2);
    border: solid 4px #ffffff !important; }

.is-open .Select-control {
  border: 2px #25447f solid;
  border-bottom: none !important;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }
  .is-open .Select-control div {
    border-bottom: none !important;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    height: auto; }

.error .Select-menu-outer {
  border-color: #ff5077; }

.Select-menu-outer {
  border: 2px #25447f solid;
  border-radius: 9px;
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  text-align: left;
  overflow: hidden; }
  @media screen and (min-width: 600px) {
    .Select-menu-outer {
      border: 3px #25447f solid;
      border-top: none; } }
  .Select-menu-outer:before {
    content: " ";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 4px solid #fff;
    height: 20px;
    width: 120%; }
  .Select-menu-outer div {
    background-color: #f3f3f3;
    border: solid 2px #fff;
    border-top: none;
    border-bottom: none;
    box-shadow: inset 5px 0 5px -5px rgba(0, 0, 0, 0.2), inset -5px 0 3px -5px rgba(0, 0, 0, 0.2); }

.Select-control {
  width: 100%;
  text-align: left; }

.delete-profile {
  text-align: center;
  min-height: 550px;
  background: url("/images/b-g-dots.png") no-repeat bottom right #03b795; }
  .delete-profile:after {
    content: "";
    clear: both;
    display: block; }
  .delete-profile > div {
    margin: 0 auto;
    max-width: 330px;
    padding-top: 100px; }
  .delete-profile h2 {
    margin: 5px 0 6px;
    font-family: RopaSoftPro, Helvetica, sans-serif;
    color: #ffffff;
    font-size: 2rem;
    text-transform: uppercase;
    height: 18px; }
  .delete-profile img {
    width: 100px;
    height: 100px;
    border: 3px solid #ffffff;
    margin-bottom: 40px;
    border-radius: 50%; }
  .delete-profile button {
    font-family: RopaSoftPro, Helvetica, sans-serif;
    color: #003953;
    font-size: 1.8rem;
    text-transform: uppercase;
    background: #ffffff;
    border-radius: 8px;
    border: 0;
    padding: 12px 0 8px;
    display: block;
    margin-bottom: 20px;
    transition: background-color .3s;
    text-align: center;
    text-decoration: none; }
    .delete-profile button.deleteBtn {
      width: 140px;
      display: inline-block; }
    .delete-profile button.yes {
      background: #ffffff url("/images/characterCarouselArrowRight.png") no-repeat right 10px center/8%;
      margin-left: 10px; }
      .delete-profile button.yes:hover {
        background-color: #ffdb59; }
    .delete-profile button.no {
      background: #ffffff url("/images/characterCarouselArrowLeft.png") no-repeat 9px center/8%; }
      .delete-profile button.no:hover {
        background-color: #ffdb59; }

.profile-header {
  margin: 25px 0 20px;
  font-family: RopaSoftPro, Helvetica, sans-serif;
  text-transform: uppercase;
  color: #ffdb59;
  font-size: 2em; }

.profiles {
  padding: 20px;
  margin: 0 auto;
  min-height: 625px;
  background: url("/images/b-g-dots.png") no-repeat bottom right #03b795; }
  .profiles:after {
    content: "";
    clear: both;
    display: block; }
  .profiles > div {
    max-width: 460px;
    margin: 0 auto; }
  @media screen and (min-width: 768px) {
    .profiles {
      padding: 20px 0; }
      .profiles > div {
        max-width: 640px; } }
  .profiles h2 {
    margin: 25px 0 20px;
    font-family: RopaSoftPro, Helvetica, sans-serif;
    text-transform: uppercase;
    color: #ffdb59;
    font-size: 2em; }
  .profiles h3 {
    margin: 5px 0 8px;
    font-family: RopaSoftPro, Helvetica, sans-serif;
    font-size: 1.5em;
    height: 18px;
    text-transform: uppercase;
    color: #ffffff; }
  .profiles ul {
    padding: 0;
    width: 260px;
    margin: 0 auto 40px; }
    @media screen and (min-width: 768px) {
      .profiles ul {
        width: 640px;
        margin: 0 auto 50px; } }
  .profiles li {
    list-style: none;
    margin: 9px;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    width: 108px; }
    @media screen and (min-width: 768px) {
      .profiles li {
        width: 140px; } }
    .profiles li div {
      margin: 0 0 10px;
      border-radius: 50%;
      position: relative;
      box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
      cursor: pointer; }
    .profiles li img {
      border-radius: 50%;
      display: block;
      position: relative;
      width: 100%; }
    .profiles li button:not(.add-new-profile) {
      background-color: #ffffff;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.3);
      margin: 0 5px;
      transition: all .3s; }
      .profiles li button:not(.add-new-profile):hover {
        background-color: #003953; }
    .profiles li .exit {
      font-family: RopaSoftPro, Helvetica, sans-serif;
      font-size: 1.8rem;
      color: #003953; }
    .profiles li .edit {
      background: #ffffff url("/images/profile-edit.svg") no-repeat center/50%; }
      .profiles li .edit:hover {
        background: #003953 url("/images/profile-edit-hover.svg") no-repeat center/50%; }
    .profiles li .delete {
      background: #ffffff url("/images/profile-delete.svg") no-repeat center/50%; }
      .profiles li .delete:hover {
        background: #003953 url("/images/profile-delete-hover.svg") no-repeat center/50%; }
      .profiles li .delete:disabled {
        opacity: .3; }
        .profiles li .delete:disabled:hover {
          background: #ffffff url("/images/profile-delete.svg") no-repeat center/50%; }
  .profiles .profile div {
    transition: all .3s;
    border: 4px solid #ffffff; }
    .profiles .profile div:hover {
      border-color: #ffdb59; }
  .profiles .active-profile div {
    transition: all .2s;
    border: 4px solid #ffdb59;
    transform: scale(1.1); }
    .profiles .active-profile div:before {
      content: " ";
      position: absolute;
      z-index: 1;
      top: 3px;
      left: 3px;
      right: 3px;
      bottom: 3px;
      border: 4px solid #ffffff;
      border-radius: 50%; }
  .profiles .active-profile img {
    border: 3px solid #03b795; }
  .profiles .active-profile ~ .add-new-profile button {
    margin-top: 32px;
    padding-top: 20px; }
  @media screen and (min-width: 768px) {
    .profiles .active-profile ~ .add-new-profile:nth-child(n + 3) button {
      margin-top: 32px; } }
  .profiles .active-profile:nth-child(3) + .add-new-profile button {
    margin-top: 32px; }
  .profiles .add-new-profile {
    background: url("/images/add-profile.svg") no-repeat center/98%;
    width: 110px;
    height: 110px;
    box-shadow: none;
    margin: 30px 0 0;
    transition: background .3s; }
    .profiles .add-new-profile:hover {
      background-image: url("/images/add-profile-hover.svg"); }
    @media screen and (min-width: 768px) {
      .profiles .add-new-profile {
        width: 140px;
        height: 140px; } }
  .profiles form {
    margin-bottom: 30px; }
  .profiles .selects {
    text-align: center; }
  .profiles .cta {
    font-family: RopaSoftPro, Helvetica, sans-serif;
    color: #003953;
    text-transform: uppercase;
    font-size: 1.8rem;
    background: #ffffff;
    border-radius: 8px;
    border: 0;
    padding: 12px 0 8px;
    display: block;
    margin-bottom: 20px;
    transition: background-color .3s;
    text-align: center;
    text-decoration: none; }
    @media screen and (min-width: 600px) {
      .profiles .cta {
        display: inline-block;
        font-family: RopaSoftPro, Helvetica, sans-serif;
        color: #003953; } }
    .profiles .cta.continue {
      background: #ffffff url("/images/characterCarouselArrowRight.png") no-repeat right 10px center/5%;
      width: 100%;
      font-family: RopaSoftPro, Helvetica, sans-serif; }
      @media screen and (min-width: 480px) {
        .profiles .cta.continue {
          font-family: RopaSoftPro, Helvetica, sans-serif;
          width: 200px;
          float: right; } }
    .profiles .cta.newsletter {
      font-family: RopaSoftPro, Helvetica, sans-serif;
      color: #ffffff;
      background: #003953 url("/images/icon-envelope-on.svg") no-repeat left 10px center/7%;
      width: 100%; }
      .profiles .cta.newsletter:hover {
        font-family: RopaSoftPro, Helvetica, sans-serif;
        color: #003953;
        background: #ffffff url("/images/icon-envelope.svg") no-repeat left 10px center/7%; }
      @media screen and (min-width: 480px) {
        .profiles .cta.newsletter {
          font-family: RopaSoftPro, Helvetica, sans-serif;
          width: 200px;
          background-size: 10%; } }
    .profiles .cta:hover:not(:disabled) {
      font-family: RopaSoftPro, Helvetica, sans-serif;
      background-color: #ffdb59; }
  .profiles button {
    font-size: 0;
    border: 0;
    padding: 0;
    font-family: RopaSoftPro, Helvetica, sans-serif;
    color: #003953; }
  .profiles .disabled,
  .profiles :disabled {
    opacity: .5;
    cursor: default;
    font-family: RopaSoftPro, Helvetica, sans-serif; }
  .profiles .exit {
    font-family: RopaSoftPro, Helvetica, sans-serif;
    background: #ffffff url("/images/characterCarouselArrowLeft.png") no-repeat 9px center/10%;
    width: 100px;
    padding: 3px 0 0;
    font-size: 1.6rem;
    margin: 0 auto; }
    @media screen and (min-width: 480px) {
      .profiles .exit {
        font-family: RopaSoftPro, Helvetica, sans-serif;
        width: 120px;
        float: left;
        padding: 12px 0 8px;
        font-size: 1.8rem; } }
  .profiles .age-gated {
    max-width: 395px;
    margin: 0 auto; }

.profiles-select {
  background: url("/images/b-g-dots.png") no-repeat bottom right #25447f; }
  .profiles-select #profile-list {
    text-align: center; }
  .profiles-select .active-profile img {
    border: 3px solid #25447f; }

.modal-footer {
  width: 100%;
  background: #ffbb01;
  height: 57px;
  text-align: center; }
  .modal-footer a {
    font-family: RopaSoftPro, Helvetica, sans-serif;
    color: #003953;
    font-size: 1.8rem;
    text-transform: uppercase;
    padding: 18px 35px;
    display: inline-block; }
    .modal-footer a:hover {
      text-decoration: none; }

.modal .error {
  color: #ffff01;
  text-align: left;
  font-size: 1.5rem; }

.modal p.error {
  margin-bottom: 30px; }

.profiles-page .text {
  color: #ffffff;
  margin-bottom: 30px;
  font-size: 1.6rem;
  letter-spacing: 0.05em; }

.alert-model .modal--fullscreen {
  background-color: rgba(0, 0, 0, 0.5) !important;
  width: 100%; }

.modal {
  visibility: hidden; }
  .modal-open .modal {
    visibility: visible !important; }

.modal {
  position: fixed;
  width: 100%;
  margin: 0; }
  @media screen and (min-width: 1440px) {
    .modal {
      width: 1440px;
      margin: auto; } }
  .modal--overlaid {
    width: 50%;
    left: 25%;
    height: 70%;
    top: 15%;
    background: white;
    z-index: 11;
    display: none; }
    .modal--overlaid iframe {
      border: none; }
    .modal--overlaid.modal--open {
      display: block; }
  .modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2); }
  .modal--fullscreen {
    height: 0;
    left: 0;
    top: 0;
    right: 0;
    overflow: hidden;
    background: #FFFFFF;
    z-index: 10;
    transition: all 0.4s; }
    .modal--fullscreen > .modal__inner {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      overflow-y: scroll;
      overflow-x: hidden; }
    .modal--fullscreen.modal--open {
      height: 100%; }
  .modal__inner {
    height: 100%; }

.modal-open #player div:first-child {
  z-index: auto !important; }

@-webkit-keyframes slideDown {
  0% {
    height: 0%; }
  25% {
    height: 100%; }
  50% {
    height: 75%; }
  65% {
    height: 100%; }
  80% {
    height: 90%; }
  100% {
    height: 100%; } }

@keyframes slideDown {
  0% {
    height: 0%; }
  30% {
    height: 100%; }
  46% {
    height: 75%; }
  62% {
    height: 100%; }
  74% {
    height: 86%; }
  84% {
    height: 100%; }
  94% {
    height: 96%; }
  100% {
    height: 100%; } }

.alert-modal {
  top: 20%;
  border-radius: 18px;
  background-color: #ffffff;
  box-shadow: 0 1px 2.5px 0 rgba(0, 0, 0, 0.5);
  border: solid 6px #ffbb01;
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  overflow: auto;
  max-width: 512px;
  width: 100%;
  min-height: 330px;
  padding-bottom: 100px; }
  @media screen and (min-width: 600px) {
    .alert-modal {
      max-width: 512px;
      width: 100%;
      min-height: 296px; } }
  .alert-modal .header-text {
    display: inline-block;
    font-family: RopaSoftPro, Helvetica, sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #25447f;
    width: 100%;
    text-align: center;
    padding-left: 26px;
    padding-right: 26px; }
    @media screen and (min-width: 450px) {
      .alert-modal .header-text {
        font-size: 4.2rem; } }
  .alert-modal .body-text {
    display: inline-block;
    font-family: RopaSoftPro, Helvetica, sans-serif;
    font-size: 1.8em;
    font-weight: 800;
    color: #25447f;
    width: 100%;
    text-align: center;
    padding-left: 26px;
    padding-right: 26px; }
    @media screen and (min-width: 450px) {
      .alert-modal .body-text {
        font-size: 2em;
        line-height: 1.3em; } }
  .alert-modal .btn-close {
    float: right;
    height: 44px;
    width: 44px;
    right: 0;
    background-image: url("/images/button-closepopup.svg");
    background-color: white;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 14px;
    padding-top: 2px;
    padding-right: 2px;
    border: none;
    cursor: pointer;
    cursor: hand; }
  .alert-modal .btn-secondary {
    float: left;
    font-family: RopaSoftPro, Helvetica, sans-serif;
    color: #03b795;
    font-size: 18px;
    border-radius: 9px;
    background-color: #ffffff;
    border: solid 2px #03b795;
    width: calc(50% - 10px);
    height: 40px;
    cursor: pointer;
    cursor: hand; }
    @media screen and (min-width: 320px) {
      .alert-modal .btn-secondary {
        height: 54px;
        font-size: 22px; } }
  .alert-modal .btn-primary {
    float: right;
    font-family: RopaSoftPro, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 800;
    border-radius: 9px;
    background-color: #03b795;
    border: solid 2px #03b795;
    background-image: none;
    cursor: pointer;
    cursor: hand;
    width: calc(50% - 10px);
    height: 40px; }
    .alert-modal .btn-primary.centred {
      float: none; }
    @media screen and (min-width: 320px) {
      .alert-modal .btn-primary {
        background-image: url("/images/character-carousel-arrow-left.svg");
        background-repeat: no-repeat;
        background-position: 95% 50%; } }
    @media screen and (min-width: 320px) {
      .alert-modal .btn-primary {
        height: 54px;
        font-size: 22px; } }
  .alert-modal .nav-bar {
    position: absolute;
    bottom: 0;
    padding-bottom: 26px;
    width: 100%;
    padding-left: 26px;
    padding-right: 26px;
    text-align: center; }

.header {
  padding: 0 0 2px;
  position: relative;
  z-index: 1000; }
  .header .logo {
    display: inline-block;
    width: 100%; }
    @media screen and (min-width: 768px) {
      .header .logo {
        display: none; } }
  .header .logo-large {
    display: none;
    width: 100%; }
    @media screen and (min-width: 768px) {
      .header .logo-large {
        display: inline-block; } }
  .header .mid-nav.hidden {
    display: none; }
  .header .mid-nav:after {
    content: "";
    clear: both;
    display: block; }

.footer {
  background: #ffbb01;
  padding: 20px 20px 40px;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.2);
  z-index: 1;
  position: relative; }
  .footer:after {
    content: "";
    clear: both;
    display: block; }
  .footer__content {
    max-width: 1440px;
    margin: 0 auto; }
    @media screen and (min-width: 1440px) {
      .footer__content {
        padding-left: 20px; } }
  .footer__links {
    padding: 12px 0 0 0;
    width: 100%;
    text-align: center;
    vertical-align: super; }
    @media screen and (min-width: 1024px) {
      .footer__links {
        display: inline-block;
        width: auto;
        float: left;
        text-align: left; } }
    .footer__links li {
      margin: 0 0 0 6px;
      display: block;
      list-style: none;
      padding: 0; }
      .footer__links li:after {
        display: none; }
      @media screen and (min-width: 480px) {
        .footer__links li {
          display: inline-block;
          position: relative; } }
      @media screen and (min-width: 480px) {
        .footer__links li {
          margin-right: 20px; }
          .footer__links li:after {
            display: inline-block;
            position: absolute;
            content: "\2022";
            font-size: 200%;
            top: -7px;
            margin-left: 8px; } }
      @media screen and (min-width: 480px) {
        .footer__links li:nth-child(1) {
          margin-left: 45px; } }
      @media screen and (min-width: 768px) {
        .footer__links li:nth-child(1) {
          margin-left: 0; } }
      @media screen and (min-width: 480px) {
        .footer__links li:nth-child(3):after, .footer__links li:nth-child(2):after {
          display: none; } }
      @media screen and (min-width: 768px) {
        .footer__links li:nth-child(3):after, .footer__links li:nth-child(2):after {
          display: inline-block; } }
    .footer__links li:last-child:after {
      display: none;
      content: ""; }
    .footer__links .button {
      background-color: #fff;
      border-radius: 8px;
      padding: 5px 10px 2px 5px;
      display: inline-block;
      line-height: normal;
      text-transform: uppercase;
      letter-spacing: .5px;
      font-family: RopaSoftPro, Helvetica, sans-serif;
      color: #25447f;
      font-size: 1.9rem;
      text-transform: uppercase;
      margin: 0 0 0;
      padding: 4px 15px 2px 5px !important;
      display: inline-block;
      width: auto; }
      .footer__links .button:active, .footer__links .button:focus {
        text-decoration: none; }
      .footer__links .button:hover {
        text-decoration: none;
        color: #fff !important; }
      @media screen and (min-width: 768px) {
        .footer__links .button {
          padding: 6px 5px;
          text-align: center; } }
      @media screen and (min-width: 1024px) {
        .footer__links .button {
          padding: 5px 10px 2px 5px;
          width: auto;
          text-align: left; } }
      .footer__links .button:focus, .footer__links .button:link, .footer__links .button:active {
        color: #25447f; }
      .footer__links .button:hover {
        background-color: #54acef; }
      .footer__links .button:before {
        content: '';
        display: inline-block;
        width: 35px;
        height: 20px;
        background: url("/images/icon-envelope.svg") no-repeat 5px center;
        vertical-align: middle;
        transition: all .2s; }
      .footer__links .button:hover:before {
        background: url("/images/icon-envelope-on.svg") no-repeat 5px center; }
    .footer__links a {
      font-family: RopaSoftPro, Helvetica, sans-serif;
      color: #003953;
      font-size: 1.9rem;
      text-transform: uppercase;
      line-height: 30px;
      display: inline-block;
      text-align: center; }
  .footer .footer__copyright {
    background: url("/images/logo-small.png") no-repeat center 8px;
    padding: 50px 0 20px 0;
    font-size: 1.4rem;
    margin: 0 auto;
    text-align: center;
    width: 80%;
    color: #003953; }
    @media screen and (min-width: 480px) {
      .footer .footer__copyright {
        padding: 20px 0 20px 65px;
        background: url("/images/small-mobile-logo.svg") no-repeat 0 center;
        text-align: left;
        width: 400px; } }
    @media screen and (min-width: 1024px) {
      .footer .footer__copyright {
        display: inline-block;
        text-align: left;
        float: right; } }
  .footer .footer__kidsafe {
    text-align: center;
    padding: 0 20px;
    margin: 0; }
    .footer .footer__kidsafe .l-rating {
      margin-right: 16px;
      vertical-align: top; }
    .footer .footer__kidsafe a {
      display: inline-block; }
    @media screen and (min-width: 1024px) {
      .footer .footer__kidsafe {
        padding-top: 20px;
        clear: both; } }

.top-nav {
  list-style-type: none;
  padding: 0;
  margin: 0;
  background-color: #33ca68;
  position: relative;
  z-index: 10; }
  .top-nav:after {
    content: "";
    clear: both;
    display: block; }
  @media screen and (min-width: 768px) {
    .top-nav {
      background-color: #ffffff; } }
  .top-nav__menus {
    background-color: #33ca68;
    box-shadow: 1px 3px 4px rgba(0, 0, 0, 0.2); }
    .top-nav__menus:after {
      content: "";
      clear: both;
      display: block; }
    @media screen and (min-width: 768px) {
      .top-nav__menus {
        width: calc(100% - 130px);
        float: right;
        border-radius: 0 0 0 15px; } }
  .top-nav__home {
    position: absolute;
    top: 5px;
    width: 74px;
    left: 12px;
    font-size: 0; }
    @media screen and (min-width: 768px) {
      .top-nav__home {
        margin-left: 8px;
        width: 110px; } }
  .top-nav__section-left {
    float: left;
    display: none;
    margin-bottom: 0;
    padding: 0 8px 8px 8px; }
    @media screen and (min-width: 1024px) {
      .top-nav__section-left {
        padding-top: 8px; } }
    @media screen and (min-width: 768px) {
      .top-nav__section-left {
        display: block; } }
  .top-nav__section-right {
    margin-bottom: 0;
    padding: 8px;
    float: right;
    background: #25447f;
    border-radius: 0 0 0 15px;
    min-height: 58px; }
  .top-nav__item {
    margin-right: 2px;
    display: inline-block;
    vertical-align: middle;
    padding: 0.3em; }
  .top-nav__search {
    cursor: pointer;
    cursor: hand; }
  .top-nav__events {
    display: none; }
    @media screen and (min-width: 768px) {
      .top-nav__events {
        line-height: 4px;
        display: inline-block; } }
  .top-nav__logged-in {
    display: none; }
    @media screen and (min-width: 1240px) {
      .top-nav__logged-in {
        display: inline-block; } }
  .top-nav__logged-out {
    display: none; }
    @media screen and (min-width: 1024px) {
      .top-nav__logged-out {
        display: inline-block; } }
  .top-nav__text {
    display: inline-block;
    margin: 0.7em 1em; }
  .top-nav__parents {
    font-size: 0;
    position: relative;
    margin: 0 8px 0 5px; }
    .top-nav__parents .top-nav__menu {
      right: -10px; }
    .top-nav__parents .top-nav__menu-item {
      margin: 10px 0px; }
      .top-nav__parents .top-nav__menu-item button {
        padding-left: 10px; }
    .top-nav__parents .top-nav__login .top-nav__link {
      color: #fff;
      background-color: #e14900; }
      .top-nav__parents .top-nav__login .top-nav__link:hover {
        background-color: #a4174b; }
    .top-nav__parents .top-nav__logged-in {
      display: block; }
      @media screen and (min-width: 1240px) {
        .top-nav__parents .top-nav__logged-in {
          display: none; } }
    .top-nav__parents .top-nav__logged-out {
      display: block; }
      @media screen and (min-width: 1024px) {
        .top-nav__parents .top-nav__logged-out {
          display: none; } }
  .top-nav__cog {
    background: url("/images/icon-cog.svg") no-repeat center;
    transition: all .5s linear;
    width: 36px;
    height: 36px;
    vertical-align: middle;
    background-size: 100%; }
    .top-nav__cog.active, .top-nav__cog:hover {
      background-image: url("/images/icon-cog-active.svg");
      transform: rotate(360deg); }
  .top-nav__menu {
    background-color: #25447f;
    border-radius: 8px;
    width: 280px;
    min-height: 50px;
    color: #fff;
    padding: 15px;
    position: absolute;
    right: -20px;
    top: 75px;
    opacity: 0;
    transition: all .2s linear;
    transform: scale(0);
    transform-origin: 100% 0; }
    .top-nav__menu.active {
      transform: scale(1);
      opacity: 1; }
    .top-nav__menu:before {
      content: '';
      width: 0;
      height: 0;
      border-left: 12px solid transparent;
      border-right: 12px solid transparent;
      border-bottom: 14px solid #25447f;
      position: absolute;
      top: -12px;
      right: 16px; }
    .top-nav__menu .close {
      width: 20%;
      vertical-align: top;
      padding: 0;
      float: right;
      margin: 0 2px 15px 0; }
      .top-nav__menu .close:before {
        content: '';
        background: url("/images/icon-close-menu.svg") no-repeat center;
        float: right;
        width: 23px;
        height: 23px; }
      .top-nav__menu .close:hover:before {
        background: url("/images/icon-close-menu-on.svg") no-repeat center; }
    .top-nav__menu button {
      background: transparent;
      border: 0; }
  .top-nav__items {
    clear: both;
    padding: 0; }
  .top-nav__parents-message {
    font-size: 1.6rem;
    display: inline-block;
    width: 78%; }
  .top-nav__menu-item {
    list-style: none;
    display: block;
    position: relative;
    margin: 22px 0px;
    clear: both; }
    .top-nav__menu-item:first-child {
      margin-top: 10px; }
    .top-nav__menu-item:last-child {
      margin-bottom: 0; }
    .top-nav__menu-item button {
      font-family: RopaSoftPro, Helvetica, sans-serif;
      color: #003953;
      font-size: 2.4rem;
      text-transform: none;
      line-height: normal;
      padding: 3px 0 0 65px;
      background-color: #fff;
      border-radius: 8px;
      width: 100%;
      text-align: left; }
      .top-nav__menu-item button:hover {
        background-color: #e14900;
        color: #fff; }
        .top-nav__menu-item button:hover:hover {
          background-color: #a4174b; }
    .top-nav__menu-item.top-nav__events {
      display: block; }
      @media screen and (min-width: 768px) {
        .top-nav__menu-item.top-nav__events {
          display: none; } }
  .top-nav__link {
    font-family: RopaSoftPro, Helvetica, sans-serif;
    color: #003953;
    font-size: 2.3rem;
    text-transform: none;
    line-height: normal;
    padding: 5px 0 0 15px;
    background-color: #fff;
    border-radius: 8px;
    width: 100%;
    text-align: left;
    display: inline-block;
    text-transform: uppercase; }
    .top-nav__link:hover {
      background-color: #54acef;
      color: #fff;
      text-decoration: none;
      cursor: pointer; }

.top-nav__button {
  font-family: RopaSoftPro, Helvetica, sans-serif;
  color: #fff;
  font-size: 1rem;
  text-transform: none;
  background-color: #fff;
  color: #003953;
  font-size: 0;
  border-radius: 8px;
  padding: 5px 10px 2px 5px;
  display: inline-block;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: .5px; }
  .top-nav__button:active, .top-nav__button:focus {
    text-decoration: none; }
  .top-nav__button:hover {
    text-decoration: none;
    color: #fff !important; }
  @media screen and (min-width: 768px) {
    .top-nav__button {
      padding: 6px 5px;
      text-align: center; } }
  @media screen and (min-width: 1024px) {
    .top-nav__button {
      padding: 5px 10px 2px 5px;
      width: auto;
      text-align: left; } }
  @media screen and (min-width: 768px) {
    .top-nav__button {
      font-size: 0;
      width: 50px; } }
  @media screen and (min-width: 1024px) {
    .top-nav__button {
      font-size: 2.2rem;
      width: auto; } }
  @media screen and (min-width: 1024px) {
    .top-nav__login .top-nav__button {
      width: 168px;
      text-align: center; } }
  .top-nav__button:before {
    background: no-repeat 5px center;
    content: '';
    display: inline-block;
    height: 22px;
    transition: all .3s linear;
    margin-right: 10px;
    vertical-align: text-top; }
    @media screen and (min-width: 768px) {
      .top-nav__button:before {
        margin-right: 0; } }
    @media screen and (min-width: 1024px) {
      .top-nav__button:before {
        margin: 2px 10px 0 0; } }
  .top-nav__button.home {
    color: #25447f; }
    .top-nav__button.home:hover {
      background-color: #25447f; }
      .top-nav__button.home:hover:before {
        background-image: url("/images/icon-home-on.svg"); }
    .top-nav__button.home:before {
      background-image: url("/images/icon-home.svg");
      width: 37px; }
  .top-nav__button.games {
    color: #237aff; }
    .top-nav__button.games:hover {
      background-color: #237aff; }
      .top-nav__button.games:hover:before {
        background-image: url("/images/icon-games-on.svg");
        animation: wiggle .3s 2; }
    .top-nav__button.games:before {
      background-image: url("/images/icon-games.svg");
      width: 36px; }
  .top-nav__button.videos {
    color: #fc882c; }
    .top-nav__button.videos:hover {
      background-color: #fc882c; }
      .top-nav__button.videos:hover:before {
        background-image: url("/images/icon-triangle-on.svg");
        animation: shuffle .5s 2; }
    .top-nav__button.videos:before {
      background-image: url("/images/icon-orange-arrow.svg");
      width: 22px; }
  .top-nav__button.my-page {
    color: #c91612; }
    .top-nav__button.my-page:hover {
      background-color: #c91612; }
      .top-nav__button.my-page:hover:before {
        background-image: url("/images/icon-heart-on.svg");
        animation: heartbeat .5s 2; }
    .top-nav__button.my-page:before {
      background-image: url("/images/icon-heart.svg");
      width: 30px; }
  .top-nav__button.events {
    color: #33cc68; }
    .top-nav__button.events:hover {
      background-color: #33ca68; }
      .top-nav__button.events:hover:before {
        background-image: url("/images/icon-events-on.svg"); }
    .top-nav__button.events:before {
      background-image: url("/images/icon-events.svg");
      width: 30px; }
  .top-nav__button.login {
    background-color: #e14900;
    padding: 5px 20px 2px 20px;
    color: #fff;
    cursor: pointer; }
    .top-nav__button.login:hover {
      background-color: #a4174b; }
    .top-nav__button.login:before {
      display: none; }

.top-nav__profile-switcher {
  background-color: #33ca68;
  border-radius: 8px;
  position: relative;
  height: 35px;
  margin: 0 20px 0 5px;
  width: 26px;
  transition: width 0.2s; }
  @media screen and (min-width: 480px) {
    .top-nav__profile-switcher {
      width: 80px;
      margin-right: 30px; }
      .top-nav__profile-switcher.no-profiles {
        width: 42px;
        background-color: transparent; } }
  .top-nav__profile-switcher h2 {
    font-family: RopaSoftPro, Helvetica, sans-serif;
    font-size: 2.5rem;
    text-transform: none;
    margin: 0;
    display: inline-block;
    width: 78%; }
  .top-nav__profile-switcher .border {
    position: absolute;
    top: -5px;
    left: -8px; }
  .top-nav__profile-switcher .top-nav__avatar,
  .top-nav__profile-switcher .border,
  .top-nav__profile-switcher img {
    display: inline-block;
    border-radius: 50%;
    border: 3px solid #33ca68;
    transition: all .2s linear; }
  .top-nav__profile-switcher .top-nav__avatar {
    position: absolute;
    top: -7px;
    right: -15px;
    background-color: #ffffff;
    cursor: pointer; }
    @media screen and (min-width: 480px) {
      .top-nav__profile-switcher .top-nav__avatar {
        display: inline-block;
        width: auto;
        right: -24px; }
        .top-nav__profile-switcher .top-nav__avatar img {
          width: 60px;
          height: 60px; } }
  .top-nav__profile-switcher img {
    border-color: #ffffff;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    transition: all .2s; }
    .top-nav__profile-switcher img[src=""] {
      opacity: 0; }
  .top-nav__profile-switcher .opener {
    display: none;
    width: 40px;
    height: 30px;
    background: url("/images/icon-profile-arrow.svg") no-repeat 10px center;
    cursor: pointer;
    transition: all .2s; }
    @media screen and (min-width: 480px) {
      .top-nav__profile-switcher .opener {
        display: inline-block;
        float: left; } }
    .top-nav__profile-switcher .opener.active {
      transform: rotate(180deg); }
  .top-nav__profile-switcher .top-nav__menu-item button {
    color: #fff;
    background-color: #516A96;
    transition: all .2s; }
    .top-nav__profile-switcher .top-nav__menu-item button:hover {
      color: #003953;
      background-color: #fff; }
  .top-nav__profile-switcher .top-nav__menu-item.active a {
    color: #fff;
    background: #33ca68 url("/images/icon-tick.svg") no-repeat 96% center; }
  .top-nav__profile-switcher .top-nav__menu-item:last-child {
    margin-bottom: 5px; }
  .top-nav__profile-switcher .top-nav__link {
    padding-left: 50px; }
  .top-nav__profile-switcher .top-nav__menu-item:hover img,
  .top-nav__profile-switcher .top-nav__avatar:hover img {
    border-color: #ffdb59; }

.top-nav__hamburger-menu {
  display: inline-block;
  opacity: 1; }
  .top-nav__hamburger-menu .top-nav__menu {
    background-color: #33ca68;
    right: auto;
    left: 5px;
    top: 75px;
    opacity: 1;
    text-align: right;
    transform-origin: 0 0; }
    .top-nav__hamburger-menu .top-nav__menu:before {
      left: 85px;
      border-bottom-color: #33ca68; }
  .top-nav__hamburger-menu .top-nav__menu-item {
    margin: 10px 0; }
  .top-nav__hamburger-menu .close {
    width: auto;
    margin-bottom: 15px; }
  .top-nav__hamburger-menu .top-nav__button {
    font-size: 2.2rem;
    line-height: 35px; }
  @media screen and (min-width: 768px) {
    .top-nav__hamburger-menu {
      display: none; } }

.top-nav__hamburger {
  background: #fff url("/images/icon-hamburger.svg") no-repeat 8px 9px;
  background-size: 73%;
  position: static;
  width: 55px;
  height: 55px;
  vertical-align: middle;
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
  margin: 2px 0 0 75px;
  display: inline-block;
  border: 5px solid #33ca68;
  border-radius: 50%;
  top: 6px;
  font-size: 0;
  transition: background-color .3s;
  /*@include breakpoint(phablet) {
        background-position: 9px 11px; 
        background-size: auto;
        width: 64px;
        height: 64px;    
        position: absolute;
        top: 6px;        
        left: 70px;
        margin: 0;
    } */ }
  .top-nav__hamburger:hover {
    background-color: #ffdb59; }

.mso-login-page .ageSelect:after,
.profiles-page .ageSelect:after {
  content: "";
  clear: both;
  display: block; }

.mso-login-page .ageSelect .Select,
.profiles-page .ageSelect .Select {
  display: inline-block;
  vertical-align: top;
  margin-right: 5px; }
  .mso-login-page .ageSelect .Select:nth-of-type(3),
  .profiles-page .ageSelect .Select:nth-of-type(3) {
    margin-right: 0; }
  @media screen and (min-width: 600px) {
    .mso-login-page .ageSelect .Select,
    .profiles-page .ageSelect .Select {
      margin-right: 5px; }
      .mso-login-page .ageSelect .Select:nth-of-type(3),
      .profiles-page .ageSelect .Select:nth-of-type(3) {
        margin-right: 0; } }
  .mso-login-page .ageSelect .Select .Select-control,
  .profiles-page .ageSelect .Select .Select-control {
    width: 90px;
    height: 42px; }
    @media screen and (min-width: 600px) {
      .mso-login-page .ageSelect .Select .Select-control,
      .profiles-page .ageSelect .Select .Select-control {
        width: 127px;
        height: 63px; } }

.mso-login-page .Select-placeholder,
.profiles-page .Select-placeholder {
  font-family: BrandonLight, Helvetica, sans-serif;
  color: #a9a9a9;
  font-size: 1.5rem;
  text-transform: uppercase;
  line-height: 34px;
  font-weight: bold; }
  @media screen and (min-width: 600px) {
    .mso-login-page .Select-placeholder,
    .profiles-page .Select-placeholder {
      font-size: 2rem;
      line-height: 52px; } }

.mso-login-page .Select-value-label,
.profiles-page .Select-value-label {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #25447f !important;
  font-size: 1.1em;
  line-height: 29px; }
  @media screen and (min-width: 600px) {
    .mso-login-page .Select-value-label,
    .profiles-page .Select-value-label {
      font-size: 1.6em;
      line-height: 52px; } }

.mso-login-page .select-option,
.profiles-page .select-option {
  line-height: 10px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #6d767d;
  font-size: 1em;
  text-transform: uppercase; }
  @media screen and (min-width: 600px) {
    .mso-login-page .select-option,
    .profiles-page .select-option {
      font-size: 1.6em;
      line-height: 20px; } }

.mso-login-page .Select-arrow-zone,
.profiles-page .Select-arrow-zone {
  position: absolute;
  right: 0;
  top: 10px; }
  .mso-login-page .Select-arrow-zone .Select-arrow,
  .profiles-page .Select-arrow-zone .Select-arrow {
    border: none;
    background: url("/images/dropdown-arrow.png") no-repeat 0 0;
    background-size: 80%;
    width: 22px;
    height: 12px;
    margin: 6px -1px 0 0;
    display: inline-block; }
    @media screen and (min-width: 600px) {
      .mso-login-page .Select-arrow-zone .Select-arrow,
      .profiles-page .Select-arrow-zone .Select-arrow {
        margin: 16px -1px 0 0; } }

.mso-login-page .error .Select-control,
.mso-login-page .is-focused.error:not(.is-open) .Select-control,
.profiles-page .error .Select-control,
.profiles-page .is-focused.error:not(.is-open) .Select-control {
  border-color: #ff5077; }

.mso-login-page .is-focused:not(.is-open) .Select-control,
.profiles-page .is-focused:not(.is-open) .Select-control {
  border-color: #25447f; }

.mso-login-page .Select-control,
.profiles-page .Select-control {
  border: 2px #25447f solid;
  border-radius: 11px;
  width: 280px;
  height: 42px;
  display: flex;
  position: relative; }
  .mso-login-page .Select-control .Select-value,
  .profiles-page .Select-control .Select-value {
    border-radius: 10px; }
  @media screen and (min-width: 600px) {
    .mso-login-page .Select-control,
    .profiles-page .Select-control {
      border: 3px #25447f solid;
      width: 392px;
      height: 63px; } }
  .mso-login-page .Select-control div,
  .profiles-page .Select-control div {
    background-color: #f3f3f3;
    border-radius: 10px;
    box-shadow: inset 0 2px 3px 0 rgba(0, 0, 0, 0.2);
    border: solid 4px #ffffff !important; }

.mso-login-page .is-open .Select-control,
.profiles-page .is-open .Select-control {
  border-bottom: none !important;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }
  .mso-login-page .is-open .Select-control div,
  .profiles-page .is-open .Select-control div {
    border-bottom: none !important;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    height: auto; }

.mso-login-page .error .Select-menu-outer,
.profiles-page .error .Select-menu-outer {
  border-color: #ff5077; }

.mso-login-page .Select-menu-outer,
.profiles-page .Select-menu-outer {
  border: 2px #25447f solid;
  border-radius: 9px;
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  overflow: hidden; }
  @media screen and (min-width: 600px) {
    .mso-login-page .Select-menu-outer,
    .profiles-page .Select-menu-outer {
      border: 3px #25447f solid;
      border-top: none; } }
  .mso-login-page .Select-menu-outer:before,
  .profiles-page .Select-menu-outer:before {
    content: " ";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 4px solid #fff;
    height: 20px;
    width: 120%; }
  .mso-login-page .Select-menu-outer div,
  .profiles-page .Select-menu-outer div {
    background-color: #f3f3f3;
    border: solid 2px #fff;
    border-top: none;
    border-bottom: none;
    box-shadow: inset 5px 0 5px -5px rgba(0, 0, 0, 0.2), inset -5px 0 3px -5px rgba(0, 0, 0, 0.2); }

.mso-login-page .mso-login__countries,
.profiles-page .mso-login__countries {
  margin: 1em 0 0 0;
  width: 280px; }
  @media screen and (min-width: 600px) {
    .mso-login-page .mso-login__countries,
    .profiles-page .mso-login__countries {
      width: 392px; } }
  .mso-login-page .mso-login__countries__option,
  .profiles-page .mso-login__countries__option {
    cursor: pointer;
    padding: 1em; }
    .mso-login-page .mso-login__countries__option img,
    .profiles-page .mso-login__countries__option img {
      display: inline;
      margin-right: 1em; }
    .mso-login-page .mso-login__countries__option p,
    .profiles-page .mso-login__countries__option p {
      display: inline; }
  @media screen and (min-width: 600px) {
    .mso-login-page .mso-login__countries .select-option,
    .profiles-page .mso-login__countries .select-option {
      font-size: 1.3em;
      line-height: 20px; } }

.mso-login-page .mso-login__providers-list,
.profiles-page .mso-login__providers-list {
  margin: 56px auto 30px auto; }
  .mso-login-page .mso-login__providers-list:after,
  .profiles-page .mso-login__providers-list:after {
    content: "";
    clear: both;
    display: block; }
  .mso-login-page .mso-login__providers-list p,
  .profiles-page .mso-login__providers-list p {
    color: #25447f; }
  @media screen and (min-width: 600px) {
    .mso-login-page .mso-login__providers-list,
    .profiles-page .mso-login__providers-list {
      margin-top: 46px;
      margin-bottom: 70px; } }
  @media screen and (min-width: 768px) {
    .mso-login-page .mso-login__providers-list,
    .profiles-page .mso-login__providers-list {
      margin-top: 36px;
      margin-bottom: 43px; } }

.mso-login-page .mso-login__login-provider,
.profiles-page .mso-login__login-provider {
  width: 47%;
  height: 71px;
  background: #fff;
  border-radius: 8px;
  float: left;
  margin: 6% 2.8% 10% 0;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.3);
  position: relative;
  cursor: pointer; }
  .mso-login-page .mso-login__login-provider:only-child,
  .profiles-page .mso-login__login-provider:only-child {
    display: table;
    float: none;
    margin: 10% auto; }
  .mso-login-page .mso-login__login-provider:nth-child(2n),
  .profiles-page .mso-login__login-provider:nth-child(2n) {
    float: right;
    margin-right: 0; }
  .mso-login-page .mso-login__login-provider .shortName,
  .profiles-page .mso-login__login-provider .shortName {
    position: absolute;
    width: 100%;
    text-align: center;
    letter-spacing: 0;
    margin-top: 25px; }
  @media screen and (min-width: 600px) {
    .mso-login-page .mso-login__login-provider,
    .profiles-page .mso-login__login-provider {
      border-radius: 15px;
      height: 120px;
      margin-bottom: 2%; } }
  @media screen and (min-width: 768px) {
    .mso-login-page .mso-login__login-provider,
    .profiles-page .mso-login__login-provider {
      border-radius: 15px;
      width: 210px;
      height: 120px; }
      .mso-login-page .mso-login__login-provider:nth-child(2n),
      .profiles-page .mso-login__login-provider:nth-child(2n) {
        float: left;
        margin-right: 2.6%; }
      .mso-login-page .mso-login__login-provider:nth-child(3n),
      .profiles-page .mso-login__login-provider:nth-child(3n) {
        margin-right: 0; } }
  .mso-login-page .mso-login__login-provider img,
  .profiles-page .mso-login__login-provider img {
    width: 70%;
    height: auto;
    margin: 12% auto;
    display: block; }

.mso-login-page .mso-login__operators .description,
.profiles-page .mso-login__operators .description {
  text-align: center;
  color: #25447f;
  letter-spacing: 0; }
  @media screen and (min-width: 600px) {
    .mso-login-page .mso-login__operators .description,
    .profiles-page .mso-login__operators .description {
      font-size: 1.2em; } }
  @media screen and (min-width: null) {
    .mso-login-page .mso-login__operators .description,
    .profiles-page .mso-login__operators .description {
      font-size: 1.5em; } }

.mso-login-page .mso-login__operators .auth-modal-header,
.profiles-page .mso-login__operators .auth-modal-header {
  background-color: #fff;
  position: absolute;
  top: 10px;
  left: 0; }
  .mso-login-page .mso-login__operators .auth-modal-header:before,
  .profiles-page .mso-login__operators .auth-modal-header:before {
    background: none; }
  .mso-login-page .mso-login__operators .auth-modal-header__close-btn,
  .profiles-page .mso-login__operators .auth-modal-header__close-btn {
    top: 0.6em; }
  .mso-login-page .mso-login__operators .auth-modal-header__back-btn,
  .profiles-page .mso-login__operators .auth-modal-header__back-btn {
    float: left;
    background: url(/images/button-back-normal.png) no-repeat 0 -4px;
    background-size: 100%;
    width: 57px;
    height: 57px;
    margin-left: 10px;
    cursor: pointer;
    z-index: 100;
    position: relative; }
    .mso-login-page .mso-login__operators .auth-modal-header__back-btn:hover,
    .profiles-page .mso-login__operators .auth-modal-header__back-btn:hover {
      background: url(/images/button-back-hover.png) no-repeat 0 -4px;
      background-size: 100%; }
  .mso-login-page .mso-login__operators .auth-modal-header span,
  .profiles-page .mso-login__operators .auth-modal-header span {
    color: #25447f;
    font-size: 0.95em;
    text-align: left;
    padding-left: 0.9em;
    width: 85%;
    position: absolute;
    top: 17px;
    left: 0;
    text-align: center;
    z-index: 10; }
    @media screen and (min-width: 600px) {
      .mso-login-page .mso-login__operators .auth-modal-header span,
      .profiles-page .mso-login__operators .auth-modal-header span {
        width: 93%;
        top: 10px;
        font-size: 1.8em; } }
    @media screen and (min-width: null) {
      .mso-login-page .mso-login__operators .auth-modal-header span,
      .profiles-page .mso-login__operators .auth-modal-header span {
        font-size: 2em; } }

.mso-login-page .mso-login__operators .modal,
.profiles-page .mso-login__operators .modal {
  background: none;
  overflow: hidden;
  width: 320px;
  height: 518px;
  left: calc(50% - (320px / 2)); }
  @media screen and (min-width: 600px) {
    .mso-login-page .mso-login__operators .modal,
    .profiles-page .mso-login__operators .modal {
      width: 600px;
      height: 520px;
      left: calc(50% - (600px / 2)); } }
  @media screen and (min-width: 768px) {
    .mso-login-page .mso-login__operators .modal,
    .profiles-page .mso-login__operators .modal {
      width: 775px;
      height: 520px;
      left: calc(50% - (768px / 2)); } }

.mso-login-page .mso-login__operators .modal__inner,
.profiles-page .mso-login__operators .modal__inner {
  border: 10px solid #fff;
  border-radius: 12px;
  padding: 27px 36px;
  background: url("/images/bGDots.png") no-repeat bottom right #ffbb01;
  background-size: 50%;
  overflow-y: scroll;
  -ms-overflow-style: -ms-autohiding-scrollbar; }
  .mso-login-page .mso-login__operators .modal__inner::-webkit-scrollbar,
  .profiles-page .mso-login__operators .modal__inner::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 10px; }
  .mso-login-page .mso-login__operators .modal__inner::-webkit-scrollbar-thumb,
  .profiles-page .mso-login__operators .modal__inner::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.6); }
  .mso-login-page .mso-login__operators .modal__inner::-webkit-scrollbar-track,
  .profiles-page .mso-login__operators .modal__inner::-webkit-scrollbar-track {
    width: 10px;
    background-color: rgba(74, 74, 74, 0.2);
    border-radius: 10px;
    margin-top: 60px; }

.mso-login-page .mso-login__operators.login-modal .modal__inner,
.profiles-page .mso-login__operators.login-modal .modal__inner {
  padding: 60px 0 0 0; }

.add-profile .Select-control,
.edit-profile .Select-control {
  width: 100%; }

.newsletter .modal__overlay {
  z-index: 20; }

.newsletter .mso-login .modal {
  height: 550px;
  z-index: 20; }

.newsletter .mso-login .modal__inner {
  padding: 50px 0 0;
  overflow-y: hidden; }

.newsletter .mso-login .auth-modal-header span {
  font-size: 2rem; }

@media screen and (min-width: 600px) {
  .newsletter .mso-login .auth-modal-header span {
    font-size: 3rem; } }

.newsletter .cta {
  font-family: RopaSoftPro, Helvetica, sans-serif;
  color: #003953;
  text-transform: uppercase;
  font-size: 1.8rem;
  background: #ffffff;
  border-radius: 8px;
  border: 0;
  padding: 12px 0 8px;
  display: block;
  margin-bottom: 20px;
  transition: background-color .3s;
  text-align: center;
  text-decoration: none; }
  @media screen and (min-width: 480px) {
    .newsletter .cta {
      display: inline-block;
      font-family: RopaSoftPro, Helvetica, sans-serif;
      color: #003953; } }
  .newsletter .cta.continue {
    background: #ffffff url("/images/characterCarouselArrowRight.png") no-repeat right 10px center/6%;
    width: 100%;
    font-family: RopaSoftPro, Helvetica, sans-serif; }
    @media screen and (min-width: 600px) {
      .newsletter .cta.continue {
        font-family: RopaSoftPro, Helvetica, sans-serif;
        width: 200px;
        float: right; } }
  .newsletter .cta:hover:not(:disabled) {
    font-family: RopaSoftPro, Helvetica, sans-serif;
    background-color: #25447f;
    color: #ffffff; }
  .newsletter .cta.disabled, .newsletter .cta:disabled {
    opacity: .5;
    cursor: default;
    font-family: RopaSoftPro, Helvetica, sans-serif; }

.newsletter button {
  font-size: 0;
  border: 0;
  padding: 0;
  font-family: RopaSoftPro, Helvetica, sans-serif;
  color: #003953; }

.newsletter .exit {
  font-family: RopaSoftPro, Helvetica, sans-serif;
  background: #ffffff url("/images/characterCarouselArrowLeft.png") no-repeat 9px center/10%;
  width: 100px;
  padding: 3px 0 0;
  font-size: 1.6rem;
  margin: 0 auto; }
  @media screen and (min-width: 600px) {
    .newsletter .exit {
      font-family: RopaSoftPro, Helvetica, sans-serif;
      width: 120px;
      float: left;
      padding: 12px 0 8px;
      font-size: 1.8rem; } }

.newsletter .age-gated {
  text-align: center;
  max-width: 395px;
  margin: 0 auto;
  padding: 0 10px; }
  @media screen and (min-width: 600px) {
    .newsletter .age-gated {
      padding: 0; } }
  .newsletter .age-gated h2 {
    margin: 35px 0 25px; }
  .newsletter .age-gated h2,
  .newsletter .age-gated .text {
    color: #25447f; }
  .newsletter .age-gated .text,
  .newsletter .age-gated .error {
    font-size: 1.4rem; }

.newsletter .selects {
  margin-bottom: 30px; }

.newsletter .error {
  color: #a4174b;
  letter-spacing: normal; }

.modal .ageSelect {
  display: none; }

.modal.modal--open .ageSelect {
  display: block; }

.programmes-page .schedule {
  margin-top: 12px; }
  .programmes-page .schedule:after {
    content: "";
    clear: both;
    display: block; }

.programmes-page .programmes-container {
  margin: 0;
  background-color: #03b795;
  width: 100%;
  padding: 141px 15px 40px 15px; }
  .programmes-page .programmes-container.pt-epg {
    padding-top: 96px; }
  @media screen and (min-width: 768px) {
    .programmes-page .programmes-container {
      padding: 148px 20px 40px 20px; }
      .programmes-page .programmes-container.pt-epg {
        padding-top: 96px; } }

.programmes-page .programmes {
  position: relative;
  width: 100%;
  float: none;
  overflow: hidden; }
  .programmes-page .programmes .programmes-bar {
    display: inline-block;
    width: 100%;
    background: #25447f url(/images/blue-dots.svg) repeat-x;
    margin: 0;
    padding: 0;
    height: 60px;
    font-family: RopaSoftPro;
    font-size: 2.5em;
    padding: 9px 36px 19px 22px;
    color: #ffffff; }
    @media screen and (min-width: 600px) {
      .programmes-page .programmes .programmes-bar {
        font-size: 2.6em; } }
  .programmes-page .programmes .region-select {
    width: 290px;
    position: absolute;
    top: 80px;
    left: 15px;
    z-index: 2; }
    @media screen and (min-width: 600px) {
      .programmes-page .programmes .region-select {
        left: 20px; } }
    .programmes-page .programmes .region-select .is-focused:not(.is-open) .Select-control {
      border-color: #25447f; }
    .programmes-page .programmes .region-select .Select-control {
      border: 2px #25447f solid;
      border-radius: 11px;
      width: 290px;
      height: 52px;
      display: flex;
      position: relative; }
      .programmes-page .programmes .region-select .Select-control .Select-value {
        border-radius: 10px; }
      .programmes-page .programmes .region-select .Select-control .Select-placeholder {
        font-size: 1.1em;
        color: #25447f;
        line-height: 43px; }
      @media screen and (min-width: 600px) {
        .programmes-page .programmes .region-select .Select-control {
          border: 3px #25447f solid;
          width: 290px;
          height: 52px; } }
      .programmes-page .programmes .region-select .Select-control div {
        background-color: #f3f3f3;
        border-radius: 10px;
        box-shadow: inset 0 2px 3px 0 rgba(0, 0, 0, 0.2);
        border: solid 4px #ffffff !important; }
    .programmes-page .programmes .region-select .is-open .Select-control {
      border-bottom: none !important;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0; }
      .programmes-page .programmes .region-select .is-open .Select-control div {
        border-bottom: none !important;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        height: auto; }
    .programmes-page .programmes .region-select .Select-value-label {
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
      color: #25447f !important;
      font-size: 1.1em;
      line-height: 44px; }
      @media screen and (min-width: 600px) {
        .programmes-page .programmes .region-select .Select-value-label {
          font-size: 1.3em;
          line-height: 44px; } }
    .programmes-page .programmes .region-select .select-option {
      line-height: 10px;
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
      color: #6d767d;
      font-size: 1em;
      text-transform: uppercase; }
      @media screen and (min-width: 600px) {
        .programmes-page .programmes .region-select .select-option {
          font-size: 1.3em;
          line-height: 20px; } }
    .programmes-page .programmes .region-select .Select-arrow-zone .Select-arrow {
      position: absolute;
      right: 12px;
      top: 4px;
      background-size: 100%;
      margin-top: 6px; }
  .programmes-page .programmes .epg-nav {
    position: absolute;
    top: 143px;
    left: 15px;
    width: calc(100% - 30px);
    z-index: 1; }
    .programmes-page .programmes .epg-nav.pt-epg {
      top: 84px; }
    @media screen and (min-width: 600px) {
      .programmes-page .programmes .epg-nav {
        left: 20px;
        width: calc(100% - 40px); } }
    .programmes-page .programmes .epg-nav div:not(.startDate) {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: 0;
      box-shadow: 0 2px 3px #222;
      z-index: 5;
      background: #25447f;
      transition: all .3s; }
      @media screen and (min-width: 600px) {
        .programmes-page .programmes .epg-nav div:not(.startDate) {
          width: 55px;
          height: 55px; } }
    .programmes-page .programmes .epg-nav .startDate {
      position: absolute;
      width: 113px;
      left: calc(50% - 56px);
      top: 10px;
      font-family: RopaSoftPro;
      font-size: 2em;
      color: #ffffff; }
      @media screen and (min-width: 600px) {
        .programmes-page .programmes .epg-nav .startDate {
          display: none; } }
    .programmes-page .programmes .epg-nav .next {
      float: right;
      cursor: pointer; }
      .programmes-page .programmes .epg-nav .next:before {
        background: url(/images/epg-next.svg) no-repeat 15px;
        content: '';
        position: absolute;
        top: 7px;
        right: 8px;
        z-index: 5;
        width: 41px;
        height: 38px;
        transition: .3s;
        background-size: 55%; }
        @media screen and (min-width: 600px) {
          .programmes-page .programmes .epg-nav .next:before {
            top: 9px;
            right: 11px;
            background-size: 60%; } }
      .programmes-page .programmes .epg-nav .next.slick-disabled {
        opacity: 0.3;
        cursor: default; }
      .programmes-page .programmes .epg-nav .next:hover:not(.slick-disabled) {
        background-color: #237aff; }
        .programmes-page .programmes .epg-nav .next:hover:not(.slick-disabled):before {
          background: url(/images/promoted-next-active.svg) no-repeat 15px center;
          background-size: 55%; }
          @media screen and (min-width: 600px) {
            .programmes-page .programmes .epg-nav .next:hover:not(.slick-disabled):before {
              background-size: 60%; } }
    .programmes-page .programmes .epg-nav .prev {
      float: left;
      cursor: pointer; }
      .programmes-page .programmes .epg-nav .prev:hover:not(.slick-disabled) {
        background-color: #237aff; }
        .programmes-page .programmes .epg-nav .prev:hover:not(.slick-disabled):before {
          background: url(/images/promoted-prev-active.svg) no-repeat 10px center;
          background-size: 55%; }
          @media screen and (min-width: 600px) {
            .programmes-page .programmes .epg-nav .prev:hover:not(.slick-disabled):before {
              background-size: 60%; } }
      .programmes-page .programmes .epg-nav .prev:before {
        content: '';
        background: url(/images/epg-prev.svg) no-repeat 10px;
        position: absolute;
        top: 7px;
        left: 3px;
        z-index: 1;
        width: 41px;
        height: 38px;
        transition: .3s;
        background-size: 55%; }
        @media screen and (min-width: 600px) {
          .programmes-page .programmes .epg-nav .prev:before {
            top: 9px;
            background-size: 60%; } }
      .programmes-page .programmes .epg-nav .prev.slick-disabled {
        opacity: 0.3;
        cursor: default; }
  .programmes-page .programmes .dates {
    display: none;
    width: 105px;
    background-color: #06d895;
    position: relative;
    float: left;
    left: 0;
    top: 49px;
    font-family: RopaSoftPro;
    font-size: 1.5em;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2); }
    @media screen and (min-width: 600px) {
      .programmes-page .programmes .dates {
        display: block; } }
    .programmes-page .programmes .dates .date {
      height: 89px;
      padding: 17px 23px 0 23px;
      border-bottom: 2px solid #03b795;
      transition: all 0.3s ease-in; }
      .programmes-page .programmes .dates .date.active {
        height: 550px;
        background-color: #03b795; }
      .programmes-page .programmes .dates .date:last-child {
        border-bottom: none; }

.programmes-page .listings-container {
  width: 100%;
  margin-bottom: 20px;
  overflow-x: hidden;
  position: relative;
  float: none;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2); }
  @media screen and (min-width: 600px) {
    .programmes-page .listings-container {
      float: left;
      width: calc(100% - 105px); } }
  .programmes-page .listings-container .hours {
    position: relative;
    top: 0;
    left: 0;
    background-color: #25447f;
    width: 85px;
    font-family: RopaSoftPro;
    font-size: 1.5em;
    color: #ffffff;
    float: left; }
    @media screen and (min-width: 600px) {
      .programmes-page .listings-container .hours {
        float: none;
        width: 14600px;
        height: 49px; } }
    .programmes-page .listings-container .hours .hour {
      float: left;
      width: 85px;
      height: 49px;
      padding: 10px;
      border-bottom: 2px solid #03b795;
      border-right: 2px solid #03b795;
      transition: all 0.3s ease-in; }
      @media screen and (min-width: 600px) {
        .programmes-page .listings-container .hours .hour {
          width: 600px;
          border-bottom: none; }
          .programmes-page .listings-container .hours .hour.active {
            height: 49px; }
          .programmes-page .listings-container .hours .hour.startHour {
            display: none; } }
      .programmes-page .listings-container .hours .hour.active {
        height: 450px; }
  .programmes-page .listings-container .listings {
    float: none;
    overflow-x: hidden;
    transition: all 0.4s ease-in; }
    @media screen and (min-width: 600px) {
      .programmes-page .listings-container .listings {
        float: left; } }
    .programmes-page .listings-container .listings .day-listings {
      background-color: #fff1bd;
      width: calc(100% - 85px);
      border-bottom: 2px solid #03b795;
      cursor: pointer;
      float: left;
      transition: none; }
      @media screen and (min-width: 600px) {
        .programmes-page .listings-container .listings .day-listings {
          width: 14600px;
          float: none;
          height: 89px;
          transition: all 0.3s ease-in;
          overflow: hidden; } }
      .programmes-page .listings-container .listings .day-listings .additional {
        display: none; }
      .programmes-page .listings-container .listings .day-listings:last-of-type {
        border-bottom: none; }
      .programmes-page .listings-container .listings .day-listings.active {
        height: 550px;
        background-color: #ffdb59; }
        .programmes-page .listings-container .listings .day-listings.active .listing {
          height: 550px;
          transition: width 0.3s ease-in; }
          .programmes-page .listings-container .listings .day-listings.active .listing.shortShow {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis; }
          .programmes-page .listings-container .listings .day-listings.active .listing.shortShow:hover {
            width: 200px !important; }
            .programmes-page .listings-container .listings .day-listings.active .listing.shortShow:hover .description {
              white-space: normal; }
            .programmes-page .listings-container .listings .day-listings.active .listing.shortShow:hover .subheading {
              white-space: normal; }
          .programmes-page .listings-container .listings .day-listings.active .listing p.title {
            white-space: normal; }
          .programmes-page .listings-container .listings .day-listings.active .listing p.startTime {
            white-space: normal; }
          .programmes-page .listings-container .listings .day-listings.active .listing .additional {
            display: block; }
            .programmes-page .listings-container .listings .day-listings.active .listing .additional p {
              font-size: 1em; }
              .programmes-page .listings-container .listings .day-listings.active .listing .additional p.subheading {
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis; }
              .programmes-page .listings-container .listings .day-listings.active .listing .additional p.description {
                color: #25447f;
                font-size: 0.8em;
                margin-bottom: 10px; }
    .programmes-page .listings-container .listings .listing {
      display: block;
      height: 49px;
      padding: 14px;
      font-family: BrandonMedium, Helvetica, sans-serif;
      font-size: 1.2em;
      color: #25447f;
      overflow: hidden;
      border-bottom: 2px solid #03b795;
      transition: all 0.3s ease-in; }
      @media screen and (min-width: 600px) {
        .programmes-page .listings-container .listings .listing {
          transition: none;
          float: left;
          width: auto;
          height: 89px;
          font-size: 1.3em;
          border-right: 2px solid #03b795;
          border-bottom: none; } }
      .programmes-page .listings-container .listings .listing.active {
        height: 450px;
        background-color: #ffdb59; }
        .programmes-page .listings-container .listings .listing.active .additional {
          display: block; }
        .programmes-page .listings-container .listings .listing.active p.title {
          white-space: normal; }
      .programmes-page .listings-container .listings .listing p {
        margin-bottom: 3px; }
        .programmes-page .listings-container .listings .listing p.title {
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis; }
        .programmes-page .listings-container .listings .listing p.startTime {
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
          display: none; }
          @media screen and (min-width: 600px) {
            .programmes-page .listings-container .listings .listing p.startTime {
              display: block; } }

/****************************************
 *
 *  A-Z listing
 *
 ****************************************/
.programmes-page .character-list-container {
  position: relative;
  width: 100%;
  background-color: #fff1bd;
  padding: 28px 20px 40px 20px;
  border-top: 9px solid #ffdb59; }

.programmes-page .character-list {
  margin: 0;
  width: 100%; }
  @media screen and (min-width: 768px) {
    .programmes-page .character-list {
      padding: 28px 20px 40px 20px; } }
  .programmes-page .character-list .character-row {
    position: relative;
    margin-bottom: 29px; }
    .programmes-page .character-list .character-row:after {
      content: "";
      clear: both;
      display: block; }
    .programmes-page .character-list .character-row .letter {
      width: 57px;
      height: 34px;
      float: left; }
      .programmes-page .character-list .character-row .letter h4 {
        font-family: RopaSoftPro;
        font-size: 3.5em;
        color: #03b795;
        margin: 0; }
    .programmes-page .character-list .character-row .characters {
      width: calc(100% - 114px);
      min-height: 36px;
      border-left: 3px solid #03b795;
      float: left;
      padding-left: 30px;
      position: relative;
      top: 6px; }
      .programmes-page .character-list .character-row .characters .character {
        margin-bottom: 5px;
        width: 248px; }
        @media screen and (min-width: 600px) {
          .programmes-page .character-list .character-row .characters .character {
            float: left;
            margin-right: 82px; }
            .programmes-page .character-list .character-row .characters .character:nth-child(3) {
              margin-right: 0; } }
        .programmes-page .character-list .character-row .characters .character a {
          color: #25447f;
          font-family: BrandonMedium, Helvetica, sans-serif;
          font-size: 1.5em; }

.programmes-page .character-list__header {
  margin-bottom: 29px;
  margin-top: 0; }
  .programmes-page .character-list__header:after {
    content: "";
    clear: both;
    display: block; }

.programmes-page .character-list__title {
  color: #25447f;
  font-family: RopaSoftPro;
  font-size: 2em; }
  @media screen and (min-width: 768px) {
    .programmes-page .character-list__title {
      display: inline-block;
      margin-bottom: 0;
      margin-top: 8px; } }

.programmes-page .character-list__search {
  border: 3px solid #03b795;
  border-radius: 14px;
  height: 46px;
  overflow: hidden;
  position: relative;
  width: 100%; }
  @media screen and (min-width: 768px) {
    .programmes-page .character-list__search {
      display: inline-block;
      float: right;
      width: 300px; } }

.programmes-page .character-list__search-field {
  background-color: #ffffff;
  border-radius: 14px;
  border: 4px solid #ffffff;
  box-shadow: inset 0 2px 3px 0 rgba(0, 0, 0, 0.2);
  color: #25447f;
  display: inline-block;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 18px;
  height: 100%;
  line-height: 1.44;
  padding-left: 42px;
  width: 100%; }

.programmes-page .character-list__search-icon {
  background: url(/images/icon-search.svg) no-repeat 0 0;
  background-size: 80%;
  display: inline-block;
  height: 22px;
  left: 16px;
  position: absolute;
  top: 12px;
  width: 22px; }

header {
  background: #fdab32 url("/images/video-header.svg") repeat-x;
  padding: 15px 15px 15px 80px;
  position: relative; }
  @media screen and (min-width: 480px) {
    header {
      min-height: 100px;
      padding-left: 90px; } }
  @media screen and (min-width: 768px) {
    header {
      padding: 15px 15px 15px 160px; } }
  header a.video-back {
    background: #ffffff url("/images/icon-arrow-back.svg") no-repeat center center;
    border-radius: 50%;
    box-shadow: 1px 2px 3px #666;
    width: 80px;
    height: 80px;
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
    transform: scale(0.55); }
    header a.video-back.disabled {
      opacity: 0.3;
      cursor: default;
      background: #ffffff url("/images/icon-arrow-back-disabled.svg") no-repeat center center; }
    header a.video-back:hover:not(.disabled) {
      background: #237aff url("/images/icon-arrow-back-on.svg") no-repeat center center; }
    @media screen and (min-width: 480px) {
      header a.video-back {
        transform: scale(0.7); } }
    @media screen and (min-width: 768px) {
      header a.video-back {
        transform: scale(1);
        left: 42px;
        top: 30px; } }
  header .headers {
    display: block; }
    @media screen and (min-width: 768px) {
      header .headers {
        display: inline-block;
        width: calc(100% - 300px);
        vertical-align: middle; } }
  header h2 {
    font-family: RopaSoftPro, Helvetica, sans-serif;
    color: #25447f;
    font-size: 3.2rem;
    text-transform: none;
    margin: 0 0 3px; }
    @media screen and (min-width: 480px) {
      header h2 {
        font-family: RopaSoftPro, Helvetica, sans-serif;
        color: #25447f;
        font-size: 3.5rem;
        text-transform: none;
        width: 100%; } }
    @media screen and (min-width: 768px) {
      header h2 {
        font-family: RopaSoftPro, Helvetica, sans-serif;
        color: #25447f;
        font-size: 4.2rem;
        text-transform: none;
        width: 100%; } }
    @media screen and (min-width: 1024px) {
      header h2 {
        font-family: RopaSoftPro, Helvetica, sans-serif;
        color: #25447f;
        font-size: 5rem;
        text-transform: none; } }
  header h3 {
    font-family: BrandonMedium, Helvetica, sans-serif;
    color: #25447f;
    font-size: 2.2rem;
    text-transform: none;
    letter-spacing: 1px;
    margin: 0; }
    header h3.pt {
      padding-left: 40px; }
    header h3 .l-rating {
      width: 30px;
      margin-right: 8px;
      vertical-align: text-bottom;
      margin-left: -38px; }
    @media screen and (min-width: 480px) {
      header h3 {
        width: calc(100% - 60px);
        font-size: 2.3rem; } }
    @media screen and (min-width: 768px) {
      header h3 {
        font-size: 2.5rem;
        width: calc(100% - 30px); }
        header h3.pt {
          padding-left: 50px; }
        header h3 .l-rating {
          width: 36px;
          margin-right: 10px;
          margin-left: -47px; } }
    @media screen and (min-width: 1024px) {
      header h3 {
        font-size: 2.7rem; }
        header h3.pt {
          padding-left: 60px; }
        header h3 .l-rating {
          width: 40px;
          margin-right: 15px;
          margin-left: -55px; } }
    @media screen and (min-width: 1024px) {
      header h3 .l-rating {
        width: 40px;
        margin-right: 15px; } }
  header .sponsor-logo {
    display: none; }
    @media screen and (min-width: 768px) {
      header .sponsor-logo {
        vertical-align: top;
        display: inline-block;
        width: 300px;
        text-align: right;
        padding: 0; } }

header.games {
  background: url("/images/games-header.svg") repeat-x;
  background-color: #54acef; }

.vjs-errors-headline {
  font-size: 23px;
  font-weight: 700;
  padding-right: 3em;
  padding-top: 1em;
  padding-bottom: 0.5em;
  padding-left: 0.5em; }

.vjs-errors-content-container div b {
  padding-left: 0.8em;
  font-weight: normal; }

.vjs-big-play-button {
  left: calc(50% - 156px/2) !important;
  top: calc(50% - 105px/2) !important; }

.bg-image {
  width: 100% !important;
  height: 100% !important; }

.bg-grad {
  width: 100% !important;
  height: 100% !important;
  background: -moz-linear-gradient(top, transparent 0%, transparent 69%, black 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, transparent 0%, transparent 69%, black 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, transparent 0%, transparent 69%, black 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );
  /* IE6-9 */ }

.video-js .vjs-overlay-background {
  width: 100% !important;
  height: 100% !important;
  overflow: visible;
  padding: 0 !important;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  background-color: rgba(255, 255, 255, 0) !important;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+69,1+100 */
  background: -moz-linear-gradient(top, transparent 0%, transparent 69%, black 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, transparent 0%, transparent 69%, black 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, transparent 0%, transparent 69%, black 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );
  /* IE6-9 */ }

.video-js .vjs-overlay-bottom-left {
  bottom: 0 !important;
  left: 0 !important;
  pointer-events: none; }

.video-js.hide-overlay .vjs-overlay {
  display: none; }

.video-js.show-overlay .vjs-overlay {
  display: block; }

.next-overlay {
  pointer-events: auto;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%; }
  .next-overlay a {
    text-decoration: none; }
  .next-overlay .replay-video {
    position: absolute;
    right: calc(50% - 40px);
    top: calc(50% - 44px);
    cursor: pointer; }
  .next-overlay .title {
    display: block;
    color: white;
    font-size: 1.8rem;
    margin-top: 20px;
    width: 555px; }
    .next-overlay .title:hover {
      color: white; }
  .next-overlay h1 {
    font-size: 2.4rem;
    text-align: left;
    font-family: RopaSoftPro, Helvetica, sans-serif;
    text-transform: uppercase;
    color: white; }
  .next-overlay h1:hover {
    color: white;
    text-decoration: none !important; }
  .next-overlay .overlay-content {
    text-align: left;
    float: left;
    display: inline-block;
    width: 100%;
    position: absolute;
    bottom: 40px;
    left: 40px; }
    .next-overlay .overlay-content img.video-icon {
      position: absolute;
      width: 45px;
      height: 45px;
      left: 7px;
      bottom: 5px; }
    .next-overlay .overlay-content #progress {
      margin-left: 196px;
      width: 360px;
      height: 12px;
      border-radius: 4px;
      background-color: #25447f;
      position: absolute;
      bottom: 0; }
    .next-overlay .overlay-content #bar {
      width: 1%;
      width: 360px;
      height: 12px;
      border-radius: 4px;
      background-color: #fc882c; }
    .next-overlay .overlay-content img {
      width: 177px;
      height: 100px;
      border-radius: 10px;
      float: left;
      margin-right: 20px; }

.banner-ad {
  margin: auto;
  height: 90px;
  text-align: center;
  display: none;
  padding-top: 30px; }
  @media screen and (min-width: 1375px) {
    .banner-ad {
      display: block;
      margin: auto;
      height: 90px;
      text-align: center; }
      .banner-ad .ad-text {
        width: 728px;
        margin: auto;
        text-align: left;
        color: white; } }

.hide-video {
  display: none; }

.video-holder {
  width: 100%;
  padding-bottom: 55px;
  float: left; }
  @media screen and (min-width: 480px) {
    .video-holder {
      padding-bottom: 70px; } }
  @media screen and (min-width: 768px) {
    .video-holder {
      padding-bottom: 85px;
      background: #25447f url("/images/blue-dots-corner.svg") no-repeat left bottom; } }
  @media screen and (min-width: 1375px) {
    .video-holder {
      background: none;
      float: none; } }

@media screen and (min-width: 1375px) {
  .main-container.video-player-page {
    margin-bottom: 40px; } }

.video-player {
  background-color: #2b4d8b; }
  .video-player:after {
    content: "";
    clear: both;
    display: block; }
  @media screen and (min-width: 1375px) {
    .video-player {
      background: #25447f url("/images/blue-dots-corner.svg") no-repeat left bottom; } }
  .video-player .ad {
    text-align: center;
    width: 65%;
    margin: 20px auto 0; }

.favourite-button {
  background: #2e5392 url("/images/icon-favourite.svg") no-repeat center center;
  background-size: 72%;
  width: 60px;
  height: 55px;
  border-radius: 0 0 50% 50%;
  box-shadow: 1px 2px 3px #203A69;
  position: absolute;
  float: left;
  margin-left: -5px;
  cursor: pointer;
  z-index: 2; }
  .favourite-button.isFavorite {
    background: #2e5392 url("/images/icon-favourite-on.svg") no-repeat center center; }
  @media screen and (min-width: 480px) {
    .favourite-button {
      background-size: 72%;
      width: 70px;
      height: 65px; } }
  @media screen and (min-width: 768px) {
    .favourite-button {
      background-size: 72%;
      width: 80px;
      height: 74px; } }
  @media screen and (min-width: 1024px) {
    .favourite-button {
      background-size: 65%;
      width: 85px;
      height: 74px; } }

.locked-video {
  width: 100%;
  height: 100%;
  background-color: #003953;
  overflow: hidden;
  position: absolute; }
  .locked-video:after {
    content: "";
    clear: both;
    display: block; }

.locked-video-icon {
  position: absolute;
  height: 178px;
  width: 178px;
  top: calc(50% - 150px);
  left: calc(50% - 178px/2);
  background: #003953 url("/images/locked-large.svg") no-repeat center; }
  @media screen and (min-width: 320px) {
    .locked-video-icon {
      top: calc(50% - 120px);
      background-size: 100px 100px; } }
  @media screen and (min-width: 480px) {
    .locked-video-icon {
      top: calc(50% - 150px);
      background-size: 138px 138px; } }
  @media screen and (min-width: 768px) {
    .locked-video-icon {
      top: calc(50% - 150px);
      background-size: 178px 178px; } }

.locked-video-msg {
  position: absolute;
  width: 100%;
  text-align: center;
  height: 34px;
  font-family: BrandonMedium;
  font-size: 2.4rem;
  font-weight: 500;
  color: #ffffff;
  top: calc(50% + 35px); }
  @media screen and (min-width: 320px) {
    .locked-video-msg {
      top: calc(50% + 20px);
      font-size: 2rem; } }
  @media screen and (min-width: 480px) {
    .locked-video-msg {
      top: calc(50% + 35px);
      font-size: 2.4rem; } }

.video-login-button {
  position: absolute;
  left: calc(50% - 168px/2);
  top: calc(50% + 90px);
  font-family: RopaSoftPro, Helvetica, sans-serif;
  width: 168px;
  text-align: center;
  background-color: #e14900;
  padding: 5px 20px 2px 20px;
  color: #fff;
  cursor: pointer;
  font-size: 2.2rem;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-radius: 8px; }
  .video-login-button:hover, .video-login-button:active, .video-login-button:focus {
    text-decoration: none;
    color: #fff !important;
    background-color: #a4174b; }
  @media screen and (min-width: 320px) {
    .video-login-button {
      top: calc(50% + 60px); } }
  @media screen and (min-width: 480px) {
    .video-login-button {
      top: calc(50% + 90px); } }
  @media screen and (min-width: 768px) {
    .video-login-button {
      top: calc(50% + 90px); } }

.video-border {
  border: 5px solid #305490;
  max-width: 949px;
  height: 539px;
  max-height: 539px;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  background-color: black; }
  @media screen and (min-width: 320px) {
    .video-border {
      margin-top: 0; } }
  @media screen and (min-width: 480px) {
    .video-border {
      margin-top: 0; } }
  @media screen and (min-width: 768px) {
    .video-border {
      margin-top: 0; } }
  @media screen and (min-width: 1024px) {
    .video-border {
      margin-top: 20px; } }
  @media screen and (min-width: 1240px) {
    .video-border {
      margin-top: 20px; } }
  @media screen and (min-width: 1375px) {
    .video-border {
      margin-left: 20px;
      margin-top: 20px;
      float: left; } }

.video-container {
  width: 100%;
  height: 100%;
  position: relative; }

.video-js {
  width: 100% !important;
  height: 100% !important; }

.sponsor-logo,
.ad-banner {
  text-align: center;
  padding-bottom: 15px; }
  @media screen and (min-width: 480px) {
    .sponsor-logo,
    .ad-banner {
      padding-bottom: 20px; } }

@media screen and (min-width: 768px) {
  .sponsor-logo {
    display: none; } }

.ad-banner {
  padding-top: 0;
  clear: both;
  padding-bottom: 15px; }
  .ad-banner .small-ad {
    display: inline-block; }
    .ad-banner .small-ad .ad-text {
      color: white;
      width: 300px;
      margin: auto;
      text-align: left; }
  .ad-banner .large-ad {
    display: none; }
    .ad-banner .large-ad .ad-text {
      text-align: left; }
  @media screen and (min-width: 480px) {
    .ad-banner {
      padding-bottom: 20px; } }
  @media screen and (min-width: 768px) {
    .ad-banner {
      background-color: #ffffff;
      padding: 15px 0; }
      .ad-banner .small-ad {
        display: none; }
      .ad-banner .large-ad {
        display: inline-block; } }
  @media screen and (min-width: 1024px) {
    .ad-banner {
      padding: 30px 0; } }
  @media screen and (min-width: 1375px) {
    .ad-banner {
      padding: 0; }
      .ad-banner .small-ad,
      .ad-banner .large-ad {
        display: none; } }

.xxl-ad-banner {
  display: none; }
  @media screen and (min-width: 1375px) {
    .xxl-ad-banner {
      display: block;
      text-align: center; } }

.external-content {
  text-align: center; }
  .external-content iframe {
    border: 0;
    width: 100%;
    margin: 0 auto 40px; }
  .external-content .privacy {
    min-height: 1000px; }
  .external-content .legal {
    min-height: 1000px; }
  .external-content .faq {
    min-height: 700px; }
  .external-content .newsletter-wrapper {
    width: 100%; }
    @media screen and (min-width: 1440px) {
      .external-content .newsletter-wrapper {
        margin-bottom: 30px; } }
    .external-content .newsletter-wrapper.age-verified {
      background-color: #25447f; }
    .external-content .newsletter-wrapper .age-gated {
      padding: 20px 0px;
      height: 500px;
      max-width: 500px;
      margin: 0 auto;
      width: 290px; }
      @media screen and (min-width: 600px) {
        .external-content .newsletter-wrapper .age-gated {
          width: 400px; } }
      .external-content .newsletter-wrapper .age-gated h2 {
        color: #FEC745;
        margin: 10px 20px 16px; }
        @media screen and (min-width: 480px) {
          .external-content .newsletter-wrapper .age-gated h2 {
            margin: 20px; } }
      .external-content .newsletter-wrapper .age-gated p {
        letter-spacing: 0;
        text-align: left;
        margin: 0 0 22px 8px;
        font-size: 1.7rem; }
      .external-content .newsletter-wrapper .age-gated .error {
        color: #c91612; }
      .external-content .newsletter-wrapper .age-gated .error .Select-control,
      .external-content .newsletter-wrapper .age-gated .error .Select-menu-outer,
      .external-content .newsletter-wrapper .age-gated .is-focused.error:not(.is-open) .Select-control {
        border-color: #c91612; }
      .external-content .newsletter-wrapper .age-gated .cta {
        padding: 0 6px 20px;
        text-align: center;
        width: 100%;
        margin: -5px auto 30px; }
        .external-content .newsletter-wrapper .age-gated .cta a {
          background-color: #ffffff;
          color: #003953;
          font-size: 1.8rem;
          border-radius: 8px;
          padding: 5px 10px 2px 5px;
          display: inline-block;
          line-height: normal;
          text-transform: uppercase;
          letter-spacing: .5px;
          font-family: RopaSoftPro, Helvetica, sans-serif;
          color: #003953;
          font-size: 1.8rem;
          text-transform: uppercase;
          padding: 9px 60px 5px 20px;
          background: #ffffff url("/images/arrow-right-green.svg") no-repeat right 20px center/6%;
          cursor: pointer;
          display: inline-block; }
          .external-content .newsletter-wrapper .age-gated .cta a:active, .external-content .newsletter-wrapper .age-gated .cta a:focus {
            text-decoration: none; }
          .external-content .newsletter-wrapper .age-gated .cta a:hover {
            text-decoration: none;
            color: #fff !important; }
          @media screen and (min-width: 768px) {
            .external-content .newsletter-wrapper .age-gated .cta a {
              padding: 6px 5px;
              text-align: center; } }
          @media screen and (min-width: 1024px) {
            .external-content .newsletter-wrapper .age-gated .cta a {
              padding: 5px 10px 2px 5px;
              width: auto;
              text-align: left; } }
          @media screen and (min-width: 600px) {
            .external-content .newsletter-wrapper .age-gated .cta a {
              font-size: 2.2rem; } }
        .external-content .newsletter-wrapper .age-gated .cta .exit {
          background: #ffffff url("/images/characterCarouselArrowLeft.png") no-repeat 9px center/13%;
          padding: 11px 20px 7px 35px;
          float: left; }
          .external-content .newsletter-wrapper .age-gated .cta .exit:hover:not([disabled]) {
            background: #54acef url("/images/characterCarouselArrowLeft.png") no-repeat 9px center/13%; }
        .external-content .newsletter-wrapper .age-gated .cta .continue {
          padding: 11px 60px 7px 20px;
          float: right; }
          .external-content .newsletter-wrapper .age-gated .cta .continue:hover:not([disabled]) {
            background: #54acef url("/images/arrow-right-white.svg") no-repeat right 20px center/6%; }
        .external-content .newsletter-wrapper .age-gated .cta [disabled] {
          opacity: .5;
          cursor: default; }
          .external-content .newsletter-wrapper .age-gated .cta [disabled]:hover {
            color: #003953 !important; }
    .external-content .newsletter-wrapper .ageSelect {
      margin-bottom: 27px; }
      .external-content .newsletter-wrapper .ageSelect .Select-control {
        height: 46px;
        border-width: 3px; }
        @media screen and (min-width: 600px) {
          .external-content .newsletter-wrapper .ageSelect .Select-control {
            height: 52px; } }
      .external-content .newsletter-wrapper .ageSelect .Select-menu-outer {
        border-width: 3px; }
      .external-content .newsletter-wrapper .ageSelect .Select-value-label {
        font-size: 1.2em;
        line-height: 34px; }
        @media screen and (min-width: 600px) {
          .external-content .newsletter-wrapper .ageSelect .Select-value-label {
            font-size: 1.4em;
            line-height: 40px; } }
      .external-content .newsletter-wrapper .ageSelect .Select-arrow {
        margin: 6px -1px 0 0; }
        @media screen and (min-width: 600px) {
          .external-content .newsletter-wrapper .ageSelect .Select-arrow {
            margin: 10px -1px 0 0; } }
      .external-content .newsletter-wrapper .ageSelect .select-option {
        font-size: 1.7rem; }
  .external-content .newsletter {
    height: 820px;
    width: 100%;
    margin-bottom: 0; }
    @media screen and (min-width: 480px) {
      .external-content .newsletter {
        width: 85%; } }
    .external-content .newsletter.thank-you {
      height: 400px;
      margin-bottom: 0; }
      .external-content .newsletter.thank-you + .cta {
        display: block; }
    @media screen and (min-width: 480px) {
      .external-content .newsletter {
        height: 720px; } }
    @media screen and (min-width: 600px) {
      .external-content .newsletter {
        height: 570px; } }
    @media screen and (min-width: 768px) {
      .external-content .newsletter {
        height: 650px; } }
    @media screen and (min-width: 915px) {
      .external-content .newsletter.thank-you {
        height: 550px; } }
    @media screen and (min-width: 1024px) {
      .external-content .newsletter.thank-you {
        height: 550px; } }
  .external-content .not-available {
    min-height: 200px;
    line-height: 125px; }

.banner-ad {
  margin: auto;
  height: 90px;
  text-align: center;
  display: none;
  padding-top: 30px; }
  @media screen and (min-width: 1375px) {
    .banner-ad {
      display: block;
      margin: auto;
      height: 90px;
      text-align: center; }
      .banner-ad .ad-text {
        width: 728px;
        margin: auto;
        text-align: left;
        color: white; } }

.game-holder {
  width: 100%;
  padding-bottom: 55px;
  float: left; }
  @media screen and (min-width: 480px) {
    .game-holder {
      padding-bottom: 70px; } }
  @media screen and (min-width: 768px) {
    .game-holder {
      padding-bottom: 130px;
      background: #25447f url("/images/blue-dots-corner.svg") no-repeat left bottom; } }
  @media screen and (min-width: 1375px) {
    .game-holder {
      background: none;
      float: none; } }

@media screen and (min-width: 1375px) {
  .main-container.game-player-page {
    margin-bottom: 40px; } }

.game-player {
  background-color: #2b4d8b; }
  .game-player:after {
    content: "";
    clear: both;
    display: block; }
  @media screen and (min-width: 1375px) {
    .game-player {
      background: #25447f url("/images/blue-dots-corner.svg") no-repeat left bottom; } }
  .game-player .ad {
    text-align: center;
    width: 65%;
    margin: 20px auto 0; }

.favourite-button {
  background: #2e5392 url("/images/icon-favourite.svg") no-repeat center center;
  background-size: 72%;
  width: 60px;
  height: 55px;
  border-radius: 0 0 50% 50%;
  box-shadow: 1px 2px 3px #203A69;
  position: absolute;
  float: left;
  margin-left: -5px;
  cursor: pointer;
  z-index: 2; }
  @media screen and (min-width: 480px) {
    .favourite-button {
      background-size: 72%;
      width: 70px;
      height: 65px; } }
  @media screen and (min-width: 768px) {
    .favourite-button {
      background-size: 72%;
      width: 80px;
      height: 74px; } }
  @media screen and (min-width: 1024px) {
    .favourite-button {
      background-size: 65%;
      width: 85px;
      height: 74px; } }

.game-border {
  border: 5px solid #305490;
  background-color: white;
  max-width: 951px;
  max-height: 951px;
  height: 600px;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px; }
  @media screen and (min-width: 320px) {
    .game-border {
      margin-top: 0; } }
  @media screen and (min-width: 480px) {
    .game-border {
      margin-top: 0; } }
  @media screen and (min-width: 768px) {
    .game-border {
      margin-top: 0; } }
  @media screen and (min-width: 1024px) {
    .game-border {
      margin-top: 20px; } }
  @media screen and (min-width: 1240px) {
    .game-border {
      margin-top: 20px; } }
  @media screen and (min-width: 1375px) {
    .game-border {
      margin-left: 20px;
      margin-top: 20px;
      float: left; } }
  .game-border iframe {
    width: 100%;
    height: 100%; }

.sponsor-logo,
.ad-banner {
  text-align: center;
  padding-bottom: 15px; }
  @media screen and (min-width: 480px) {
    .sponsor-logo,
    .ad-banner {
      padding-bottom: 20px; } }

@media screen and (min-width: 768px) {
  .sponsor-logo {
    display: none; } }

.ad-banner {
  padding-top: 0;
  clear: both;
  padding-bottom: 15px; }
  .ad-banner .small-ad {
    display: inline-block; }
    .ad-banner .small-ad .ad-text {
      color: white;
      width: 300px;
      margin: auto;
      text-align: left; }
  .ad-banner .large-ad {
    display: none; }
  @media screen and (min-width: 480px) {
    .ad-banner {
      padding-bottom: 20px; } }
  @media screen and (min-width: 768px) {
    .ad-banner {
      background-color: #ffffff;
      padding: 15px 0; }
      .ad-banner .small-ad {
        display: none; }
      .ad-banner .large-ad {
        display: inline-block; }
        .ad-banner .large-ad .ad-text {
          text-align: left; } }
  @media screen and (min-width: 1024px) {
    .ad-banner {
      padding: 30px 0; } }
  @media screen and (min-width: 1375px) {
    .ad-banner {
      padding: 0; }
      .ad-banner .small-ad,
      .ad-banner .large-ad {
        display: none; } }

.xxl-ad-banner {
  display: none; }
  @media screen and (min-width: 1375px) {
    .xxl-ad-banner {
      display: block;
      text-align: center; }
      .xxl-ad-banner img {
        margin: 70px 0 0 30px; } }

.locked-game {
  width: 100%;
  height: 100%;
  background-color: #003953;
  position: relative; }
  .locked-game:after {
    content: "";
    clear: both;
    display: block; }

.locked-game-icon {
  position: absolute;
  height: 178px;
  width: 178px;
  top: calc(50% - 150px);
  left: calc(50% - 178px/2);
  background: #003953 url("/images/locked-large.svg") no-repeat center; }
  @media screen and (min-width: 320px) {
    .locked-game-icon {
      top: calc(50% - 120px);
      background-size: 100px 100px; } }
  @media screen and (min-width: 480px) {
    .locked-game-icon {
      top: calc(50% - 150px);
      background-size: 138px 138px; } }
  @media screen and (min-width: 768px) {
    .locked-game-icon {
      top: calc(50% - 150px);
      background-size: 178px 178px; } }

.locked-game-msg {
  position: absolute;
  width: 100%;
  text-align: center;
  height: 34px;
  font-family: BrandonMedium;
  font-size: 2.4rem;
  font-weight: 500;
  color: #ffffff;
  top: calc(50% + 35px); }
  @media screen and (min-width: 320px) {
    .locked-game-msg {
      top: calc(50% + 20px);
      font-size: 2rem; } }
  @media screen and (min-width: 480px) {
    .locked-game-msg {
      top: calc(50% + 35px);
      font-size: 2.4rem; } }

.game-login-button {
  position: absolute;
  left: calc(50% - 168px/2);
  top: calc(50% + 90px);
  font-family: RopaSoftPro, Helvetica, sans-serif;
  width: 168px;
  text-align: center;
  background-color: #e14900;
  padding: 5px 20px 2px 20px;
  color: #fff;
  cursor: pointer;
  font-size: 2.2rem;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-radius: 8px; }
  .game-login-button:hover, .game-login-button:active, .game-login-button:focus {
    text-decoration: none;
    color: #fff !important;
    background-color: #a4174b; }
  @media screen and (min-width: 320px) {
    .game-login-button {
      top: calc(50% + 60px); } }
  @media screen and (min-width: 480px) {
    .game-login-button {
      top: calc(50% + 90px); } }
  @media screen and (min-width: 768px) {
    .game-login-button {
      top: calc(50% + 90px); } }

.swiper-container {
  width: 100%;
  height: 354px; }

.swiper-slide {
  text-align: center;
  font-size: 18px;
  width: auto;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center; }

.epg-button {
  width: 205px;
  height: 40px;
  border-radius: 12px;
  background-color: #25447f;
  background-image: url("/images/icon-listings.svg");
  background-repeat: no-repeat;
  background-position: 13% 50%;
  padding-left: 53px;
  padding-top: 7px;
  text-transform: uppercase; }
  .epg-button a {
    font-family: RopaSoftPro;
    font-size: 22px;
    color: white; }

.default .row-slide .swiper-slide .item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .default .row-slide .swiper-slide .item .name {
    font-family: Helvetica;
    font-size: 16px;
    font-weight: 800;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.25;
    text-align: left;
    color: #003953;
    width: 300px;
    padding-top: 10px;
    height: 50px; }

.default .row-slide .swiper-slide .game .name {
  font-weight: 800;
  width: 168px; }

.default .swiper-slide .item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0 10px;
  display: inline-block;
  position: relative;
  text-decoration: none;
  cursor: pointer; }
  .default .swiper-slide .item .gameIcon {
    width: 46px;
    height: 46px;
    left: 10px;
    top: 115px;
    background-image: url("/images/icon-game.svg");
    position: absolute; }
  .default .swiper-slide .item .name {
    font-family: Helvetica;
    font-size: 16px;
    font-weight: 800;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.25;
    text-align: left;
    color: #ffffff;
    width: 100%;
    padding-top: 10px;
    height: 50px;
    overflow: hidden; }
    .default .swiper-slide .item .name .highlight {
      color: #06d895; }
  .default .swiper-slide .item .game .name {
    width: 168px; }
  .default .swiper-slide .item:hover {
    text-decoration: none; }
  .default .swiper-slide .item.collection, .default .swiper-slide .item.video {
    width: 300px; }
    .default .swiper-slide .item.collection + p, .default .swiper-slide .item.video + p {
      width: 300px; }
  .default .swiper-slide .item.show {
    width: 180px; }
    .default .swiper-slide .item.show .name {
      text-align: center;
      padding-top: 0; }
  .default .swiper-slide .item.link, .default .swiper-slide .item.character {
    width: 170px; }
    .default .swiper-slide .item.link + p, .default .swiper-slide .item.character + p {
      width: 170px; }
    .default .swiper-slide .item.link .locked, .default .swiper-slide .item.character .locked {
      display: none; }
  .default .swiper-slide .item .lockedIcon {
    z-index: 1;
    top: 55px;
    left: 12px; }
  .default .swiper-slide .item.game {
    width: 170px; }
    .default .swiper-slide .item.game + p {
      width: 170px; }
    .default .swiper-slide .item.game .locked {
      overflow: visible;
      width: 170px; }
      .default .swiper-slide .item.game .locked p {
        line-height: 24px; }
  .default .swiper-slide .item.hideSlide {
    display: none; }
  .default .swiper-slide .item img {
    position: absolute; }
  .default .swiper-slide .item img.new {
    z-index: 5;
    margin-left: -9px;
    left: 0;
    width: 110px;
    height: auto;
    background-color: transparent; }
  .default .swiper-slide .item img.delete-fav {
    top: 10px;
    right: 10px; }
  .default .swiper-slide .item .visual-collection,
  .default .swiper-slide .item .visual-video {
    position: static;
    width: 300px;
    height: 168px;
    box-shadow: 0 3px 3px #222;
    border-radius: 20px; }
  .default .swiper-slide .item .visual-show {
    position: static; }
  .default .swiper-slide .item .visual-link,
  .default .swiper-slide .item .visual-game {
    position: static;
    width: 168px;
    height: 168px;
    box-shadow: 0 3px 3px #222;
    border-radius: 20px; }
  .default .swiper-slide .item img.collection,
  .default .swiper-slide .item img.video,
  .default .swiper-slide .item img.game {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    left: 10px;
    top: 115px;
    width: 45px;
    height: 45px; }
  .default .swiper-slide .item .favourite {
    right: 16px;
    top: 0; }
  .default .swiper-slide .item .text {
    background-color: #6b39a9;
    color: #ffbb01;
    font-family: RopaSoftPro, Helvetica, sans-serif;
    font-size: 2.2rem;
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    margin: 0;
    text-align: left;
    padding: 10px 10px 6px 62px;
    text-transform: uppercase;
    border-radius: 0 0 20px 20px;
    letter-spacing: .5px; }
  .default .swiper-slide .item .locked {
    display: inline-block;
    width: 300px;
    height: 170px;
    position: absolute;
    top: 0;
    left: 0; }
    .default .swiper-slide .item .locked .opaque {
      position: absolute;
      background-color: #000;
      width: 100%;
      height: 100%;
      border-radius: 20px;
      opacity: .8;
      z-index: 1; }
    .default .swiper-slide .item .locked p {
      text-transform: uppercase;
      text-align: left;
      color: #fff;
      font-family: RopaSoftPro, Helvetica, sans-serif;
      font-size: 2.2rem;
      position: relative;
      top: 64px;
      padding-left: 63px;
      z-index: 10; }

.default .swiper-slide .title {
  color: #2b2424;
  text-align: left;
  font-size: 1.6rem;
  padding: 10px 0 0 10px;
  margin: 0;
  height: 55px;
  max-height: 55px;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.default .swiper-slide .main .title {
  color: #003953; }

.default .swiper-slide .recommended .title {
  color: #fff; }

.masonry .swiper-slide .item.show {
  width: 180px; }
  .masonry .swiper-slide .item.show .delete-fav {
    top: 0;
    right: 0; }

.masonry .swiper-slide .item .name {
  color: #003953; }

.masonry .swiper-slide .item .character {
  width: 300px;
  height: 400px;
  overflow: hidden; }

.masonry .swiper-slide .item .visual-show {
  position: relative;
  position: static; }

.character-slide {
  width: 300px;
  height: 460px;
  margin-bottom: -20px;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  float: left;
  margin-left: 20px;
  clear: both; }
  .character-slide .character-header {
    margin-top: 5px;
    font-size: 34px;
    line-height: 0.93;
    font-weight: 800;
    color: #25447f;
    font-family: RopaSoftPro, Helvetica, sans-serif;
    flex-shrink: 1;
    width: 100%;
    text-align: left; }
  .character-slide p {
    font-family: BrandonMedium, Helvetica, sans-serif;
    font-weight: 500;
    color: #25447f;
    flex-shrink: 1;
    max-width: 300px;
    text-align: left;
    font-size: 24px; }
  .character-slide .image-holder {
    flex-grow: 1;
    display: block; }

.recommended .visual-show,
.favourites-page .visual-show {
  position: static;
  width: 185px;
  height: 185px; }

.recommended .title,
.favourites-page .title {
  color: #fff; }

.show .LazyLoad {
  border-radius: 50%;
  background: url("/images/show-placeholder.svg") center center no-repeat #2C508F; }

.collection .LazyLoad,
.video .LazyLoad {
  border-radius: 20px;
  background: url("/images/video-placeholder.svg") center center no-repeat #2C508F; }

.game .LazyLoad {
  border-radius: 20px;
  background: url("/images/game-placeholder.svg") center center no-repeat #2C508F; }

.LazyLoad.is-visible {
  background: none; }

.games-page .carousel-icon,
.video-page .carousel-icon,
.favourites-page .carousel-icon {
  background: none;
  height: 43px;
  position: relative; }
  @media screen and (min-width: 480px) {
    .games-page .carousel-icon,
    .video-page .carousel-icon,
    .favourites-page .carousel-icon {
      height: 493px;
      float: left;
      background: url("/images/icon-video-blue.svg") no-repeat center 40%;
      background-size: 115px 115px;
      width: 155px; } }
  @media screen and (min-width: 768px) {
    .games-page .carousel-icon,
    .video-page .carousel-icon,
    .favourites-page .carousel-icon {
      background-size: 140px 140px;
      width: 200px; } }
  @media screen and (min-width: 1024px) {
    .games-page .carousel-icon,
    .video-page .carousel-icon,
    .favourites-page .carousel-icon {
      background-size: 150px 150px;
      width: 230px; } }
  .games-page .carousel-icon p.section-title,
  .video-page .carousel-icon p.section-title,
  .favourites-page .carousel-icon p.section-title {
    width: 100%;
    font-family: RopaSoftPro;
    font-size: 3em;
    text-align: left;
    text-transform: uppercase;
    color: #003953;
    position: absolute;
    padding: 0 0 10px 15px;
    margin: 0; }
    @media screen and (min-width: 480px) {
      .games-page .carousel-icon p.section-title,
      .video-page .carousel-icon p.section-title,
      .favourites-page .carousel-icon p.section-title {
        text-align: center;
        top: 52%;
        padding: 0;
        padding-top: 20px; } }
    @media screen and (min-width: 768px) {
      .games-page .carousel-icon p.section-title,
      .video-page .carousel-icon p.section-title,
      .favourites-page .carousel-icon p.section-title {
        top: 53%;
        padding: 0;
        padding-top: 30px; } }
    @media screen and (min-width: 1024px) {
      .games-page .carousel-icon p.section-title,
      .video-page .carousel-icon p.section-title,
      .favourites-page .carousel-icon p.section-title {
        padding-top: 35px; } }

.games-page .carousel-content.showIcon,
.video-page .carousel-content.showIcon,
.favourites-page .carousel-content.showIcon {
  float: left;
  width: 100%; }
  @media screen and (min-width: 480px) {
    .games-page .carousel-content.showIcon,
    .video-page .carousel-content.showIcon,
    .favourites-page .carousel-content.showIcon {
      width: calc(100% - 155px); } }
  @media screen and (min-width: 768px) {
    .games-page .carousel-content.showIcon,
    .video-page .carousel-content.showIcon,
    .favourites-page .carousel-content.showIcon {
      width: calc(100% - 200px); } }
  @media screen and (min-width: 1024px) {
    .games-page .carousel-content.showIcon,
    .video-page .carousel-content.showIcon,
    .favourites-page .carousel-content.showIcon {
      width: calc(100% - 230px); } }

@media screen and (min-width: 480px) {
  .video-page .carousel-icon {
    background-image: url("/images/icon-video-orange.svg"); } }

.main {
  padding-top: 30px;
  padding-bottom: 20px;
  position: relative; }
  .main .swiper-slide .item .name {
    color: #003953; }
  .main .swiper-container {
    width: 100%;
    height: 450px; }
    .main .swiper-container .swiper-wrapper {
      margin-left: 20px; }
    .main .swiper-container .swiper-slide {
      height: 50%; }
  .main .slick-arrow {
    height: 220px;
    position: absolute;
    top: 125px;
    border: 0;
    z-index: 20;
    text-indent: -5000px; }
    .main .slick-arrow:before {
      transition: all .2s;
      content: '';
      position: absolute;
      width: 54px;
      height: 84px;
      top: 72px;
      left: 8px; }
    .main .slick-arrow:hover:not(.slick-disabled):before {
      transform: scale(1.1); }
    @media screen and (min-width: 768px) {
      .main .slick-arrow {
        display: inline-block; } }
  .main .slick-prev {
    background: url("/images/grid-carousel-left.png") no-repeat 0 center;
    left: -13px;
    right: auto;
    width: 85px;
    transform: scale(0.7); }
    .main .slick-prev:before {
      background: url("/images/grid-left-arrow.svg") no-repeat 0 center; }
    .main .slick-prev:hover:not(.slick-disabled):before {
      background: url("/images/grid-left-arrow-active.svg") no-repeat 0 center; }
    @media screen and (min-width: 320px) {
      .main .slick-prev {
        transform: scale(0.7); } }
    @media screen and (min-width: 480px) {
      .main .slick-prev {
        transform: scale(0.7); } }
    @media screen and (min-width: 768px) {
      .main .slick-prev {
        transform: scale(0.9); } }
    @media screen and (min-width: 1024px) {
      .main .slick-prev {
        transform: scale(1); } }
  .main .slick-next {
    background: url("/images/grid-carousel-right.png") no-repeat 0 center;
    right: -13px;
    left: auto;
    width: 80px;
    transform: scale(0.7); }
    .main .slick-next:before {
      left: 18px;
      background: url("/images/grid-right-arrow.svg") no-repeat 0 center; }
    .main .slick-next:hover:not(.slick-disabled):before {
      background: url("/images/grid-right-arrow-active.svg") no-repeat 0 center; }
    @media screen and (min-width: 320px) {
      .main .slick-next {
        transform: scale(0.7); } }
    @media screen and (min-width: 480px) {
      .main .slick-next {
        transform: scale(0.7);
        right: -13px; } }
    @media screen and (min-width: 768px) {
      .main .slick-next {
        transform: scale(0.9);
        right: -13px; } }
    @media screen and (min-width: 1024px) {
      .main .slick-next {
        transform: scale(1);
        right: -13px; } }
  .main .slick-disabled {
    display: none; }

.favourites-page .fav-container .slick-prev {
  background: url("/images/arrow-bg-left-blue.svg") no-repeat 0 center; }
  .favourites-page .fav-container .slick-prev:before {
    background: url("/images/grid-carousel-left-white.svg") no-repeat 0 center; }
  .favourites-page .fav-container .slick-prev:hover:not(.slick-disabled) {
    background: url("/images/grid-carousel-left.png") no-repeat 0 center; }
    .favourites-page .fav-container .slick-prev:hover:not(.slick-disabled):before {
      background: url("/images/grid-left-arrow.svg") no-repeat 0 center; }

.favourites-page .fav-container .slick-next {
  background: url("/images/arrow-bg-right-blue.svg") no-repeat 0 center; }
  .favourites-page .fav-container .slick-next:before {
    left: 18px;
    background: url("/images/grid-carousel-right-white.svg") no-repeat 0 center; }
  .favourites-page .fav-container .slick-next:hover:not(.slick-disabled) {
    background: url("/images/grid-carousel-right.png") no-repeat 0 center; }
    .favourites-page .fav-container .slick-next:hover:not(.slick-disabled):before {
      background: url("/images/grid-right-arrow.svg") no-repeat 0 center; }

.home {
  top: -40px; }

.character {
  top: -40px; }

.masonry {
  cursor: pointer;
  cursor: hand;
  position: relative;
  width: 100%;
  height: 510px;
  overflow: hidden; }
  .masonry .frame {
    opacity: 0;
    position: absolute;
    display: block;
    overflow: visible;
    height: 100%; }
  .masonry .initialised {
    opacity: 1;
    transition: opacity 1s; }
  .masonry .slick-arrow {
    height: 220px;
    position: absolute;
    top: 100px;
    border: 0;
    z-index: 20;
    text-indent: -5000px; }
    .masonry .slick-arrow:before {
      transition: all .2s;
      content: '';
      position: absolute;
      width: 54px;
      height: 84px;
      top: 72px;
      left: 8px; }
    .masonry .slick-arrow:hover:not(.slick-disabled):before {
      transform: scale(1.3); }
    @media screen and (min-width: 768px) {
      .masonry .slick-arrow {
        display: inline-block; } }
  .masonry .slick-prev {
    background: url("/images/grid-carousel-left.png") no-repeat 0 center;
    left: -13px;
    right: auto;
    width: 85px;
    transform: scale(0.7); }
    .masonry .slick-prev:before {
      background: url("/images/grid-left-arrow.svg") no-repeat 0 center; }
    .masonry .slick-prev:hover:not(.slick-disabled):before {
      background: url("/images/grid-left-arrow-active.svg") no-repeat 0 center; }
    @media screen and (min-width: 320px) {
      .masonry .slick-prev {
        transform: scale(0.7); } }
    @media screen and (min-width: 480px) {
      .masonry .slick-prev {
        transform: scale(0.7); } }
    @media screen and (min-width: 768px) {
      .masonry .slick-prev {
        transform: scale(0.9); } }
    @media screen and (min-width: 1024px) {
      .masonry .slick-prev {
        transform: scale(1); } }
  .masonry .slick-next {
    background: url("/images/grid-carousel-right.png") no-repeat 0 center;
    right: -13px;
    left: auto;
    width: 80px;
    transform: scale(0.7); }
    .masonry .slick-next:before {
      left: 18px;
      background: url("/images/grid-right-arrow.svg") no-repeat 0 center; }
    .masonry .slick-next:hover:not(.slick-disabled):before {
      background: url("/images/grid-right-arrow-active.svg") no-repeat 0 center; }
    @media screen and (min-width: 320px) {
      .masonry .slick-next {
        transform: scale(0.7); } }
    @media screen and (min-width: 480px) {
      .masonry .slick-next {
        transform: scale(0.7);
        right: -13px; } }
    @media screen and (min-width: 768px) {
      .masonry .slick-next {
        transform: scale(0.9);
        right: -13px; } }
    @media screen and (min-width: 1024px) {
      .masonry .slick-next {
        transform: scale(1);
        right: -13px; } }
  .masonry .slick-disabled {
    display: none; }

.vh-carousel-horizontal {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #2b4d8b;
  opacity: 0; }
  .vh-carousel-horizontal.initialised {
    opacity: 1;
    transition: opacity 1s; }
  .vh-carousel-horizontal .slick-arrow {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 170px;
    border-radius: 50%;
    border: 0;
    box-shadow: 0 2px 3px #222;
    z-index: 5;
    transition: all .3s; }
    .vh-carousel-horizontal .slick-arrow.slick-disabled {
      background: #fff url("/images/icon-disabled-left.svg") no-repeat 10px center;
      box-shadow: none;
      opacity: .4; }
  .vh-carousel-horizontal .slick-prev {
    background: #fff url("/images/promoted-prev.svg") no-repeat 10px center;
    left: 10px; }
    @media screen and (min-width: 1024px) {
      .vh-carousel-horizontal .slick-prev {
        left: 10px; } }
    .vh-carousel-horizontal .slick-prev:hover:not(.slick-disabled) {
      background: #237aff url("/images/promoted-prev-active.svg") no-repeat 10px center; }
  .vh-carousel-horizontal .slick-next {
    background: #fff url("/images/promoted-next.svg") no-repeat 15px center;
    right: 10px; }
    @media screen and (min-width: 1024px) {
      .vh-carousel-horizontal .slick-next {
        right: 10px; } }
    .vh-carousel-horizontal .slick-next:hover:not(.slick-disabled) {
      background: #237aff url("/images/promoted-next-active.svg") no-repeat 15px center; }
    .vh-carousel-horizontal .slick-next.slick-disabled {
      background: #fff url("/images/icon-disabled-right.svg") no-repeat 15px center; }
  .vh-carousel-horizontal .swiper-slide {
    text-align: center;
    font-size: 18px;
    width: auto;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center; }
  @media screen and (min-width: 320px) {
    .vh-carousel-horizontal {
      display: block;
      height: 255px; } }
  @media screen and (min-width: 480px) {
    .vh-carousel-horizontal {
      display: block;
      height: 258px; } }
  @media screen and (min-width: 768px) {
    .vh-carousel-horizontal {
      display: block; } }
  @media screen and (min-width: 1024px) {
    .vh-carousel-horizontal {
      display: block; } }
  @media screen and (min-width: 1240px) {
    .vh-carousel-horizontal {
      display: block; } }
  @media screen and (min-width: 1375px) {
    .vh-carousel-horizontal {
      display: none; } }
  .vh-carousel-horizontal .swiper-container {
    width: 84%;
    height: 275px; }
  .vh-carousel-horizontal .slick-arrow {
    top: 85px; }
  .vh-carousel-horizontal .slick-prev {
    left: 50px; }
  .vh-carousel-horizontal .slick-next {
    right: 50px; }

.vh-carousel-vertical {
  float: right;
  width: 382px;
  height: 886px;
  background-color: #2b4d8b;
  opacity: 0; }
  .vh-carousel-vertical.initialised {
    opacity: 1;
    transition: opacity 1s; }
  .vh-carousel-vertical .slick-arrow {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 170px;
    border-radius: 50%;
    border: 0;
    box-shadow: 0 2px 3px #222;
    z-index: 5;
    transition: all .3s; }
    .vh-carousel-vertical .slick-arrow.slick-disabled {
      background: #fff url("/images/icon-disabled-left.svg") no-repeat 10px center;
      box-shadow: none;
      opacity: .4; }
  .vh-carousel-vertical .slick-prev {
    background: #fff url("/images/promoted-prev.svg") no-repeat 10px center;
    left: 10px; }
    @media screen and (min-width: 1024px) {
      .vh-carousel-vertical .slick-prev {
        left: 10px; } }
    .vh-carousel-vertical .slick-prev:hover:not(.slick-disabled) {
      background: #237aff url("/images/promoted-prev-active.svg") no-repeat 10px center; }
  .vh-carousel-vertical .slick-next {
    background: #fff url("/images/promoted-next.svg") no-repeat 15px center;
    right: 10px; }
    @media screen and (min-width: 1024px) {
      .vh-carousel-vertical .slick-next {
        right: 10px; } }
    .vh-carousel-vertical .slick-next:hover:not(.slick-disabled) {
      background: #237aff url("/images/promoted-next-active.svg") no-repeat 15px center; }
    .vh-carousel-vertical .slick-next.slick-disabled {
      background: #fff url("/images/icon-disabled-right.svg") no-repeat 15px center; }
  .vh-carousel-vertical .swiper-slide {
    text-align: center;
    font-size: 18px;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center; }
  .vh-carousel-vertical .slick-arrow {
    transform: rotate(90deg);
    position: relative;
    top: 20px;
    left: 42%; }
  @media screen and (min-width: 320px) {
    .vh-carousel-vertical {
      display: none; } }
  @media screen and (min-width: 480px) {
    .vh-carousel-vertical {
      display: none; } }
  @media screen and (min-width: 768px) {
    .vh-carousel-vertical {
      display: none; } }
  @media screen and (min-width: 1024px) {
    .vh-carousel-vertical {
      display: none; } }
  @media screen and (min-width: 1240px) {
    .vh-carousel-vertical {
      display: none; } }
  @media screen and (min-width: 1375px) {
    .vh-carousel-vertical {
      display: block; } }
  .vh-carousel-vertical .swiper-container {
    width: 382px; }
  .vh-carousel-vertical .swiper-container-vertical {
    width: 382px;
    height: 720px;
    padding-top: 40px; }
  .vh-carousel-vertical .swiper-wrapper {
    height: 100%; }

.disclaimer {
  display: none; }
  .disclaimer.disclaimer--visible {
    display: block; }

.disclaimer__table {
  padding: 16px 14px;
  position: relative;
  width: 100%; }

.disclaimer__cell {
  display: inline-block;
  width: 100%;
  vertical-align: top; }

.disclaimer__button {
  border-radius: 8px;
  display: inline-block;
  font-family: RopaSoftPro, Helvetica, sans-serif;
  font-size: 2.2rem;
  line-height: normal;
  letter-spacing: .5px;
  padding: 2px 46px;
  text-transform: uppercase; }

.disclaimer__checkbox {
  background: #fff;
  border-radius: 4px;
  display: inline-block;
  margin-right: 8px;
  position: relative;
  top: 2px;
  width: 16px;
  height: 16px; }
  .disclaimer__checkbox input:checked + .check {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    border-width: 0 1px 1px 0;
    border-style: solid;
    border-color: #000;
    top: 4px;
    left: 6px;
    width: 4px;
    height: 8px; }
  .disclaimer__checkbox input[type="checkbox"] {
    visibility: hidden; }

.disclaimer__error {
  color: #ff0000; }

.cookie-disclaimer {
  background-color: #00425e;
  color: #fff;
  position: relative;
  width: 100%; }
  .cookie-disclaimer .disclaimer__link {
    color: #ffdb59;
    text-decoration: underline; }
  .cookie-disclaimer .disclaimer__table {
    color: #fff; }
  .cookie-disclaimer .disclaimer__cell {
    padding-right: 32px;
    padding-top: 8px;
    width: 100%; }
    .cookie-disclaimer .disclaimer__cell:nth-child(1) {
      padding-top: 0; }
    @media screen and (min-width: 768px) {
      .cookie-disclaimer .disclaimer__cell:nth-child(1) {
        padding-top: 0; }
      .cookie-disclaimer .disclaimer__cell:nth-child(2) {
        padding-top: 16px;
        width: 80%; }
      .cookie-disclaimer .disclaimer__cell:nth-child(3) {
        padding-top: 16px;
        padding-right: 0;
        text-align: right;
        width: 20%; } }
    @media screen and (min-width: 1024px) {
      .cookie-disclaimer .disclaimer__cell:nth-child(1) {
        padding-top: 0;
        width: 50%; }
      .cookie-disclaimer .disclaimer__cell:nth-child(2) {
        padding-top: 0;
        width: 35%; }
      .cookie-disclaimer .disclaimer__cell:nth-child(3) {
        padding: 0;
        text-align: right;
        width: 15%; } }
  .cookie-disclaimer .disclaimer__button {
    background-color: #54acef;
    color: #fff;
    text-decoration: none; }
    .cookie-disclaimer .disclaimer__button:focus, .cookie-disclaimer .disclaimer__button:hover {
      background-color: #36709c;
      text-decoration: none; }
  .cookie-disclaimer.updated .disclaimer__cell {
    padding-right: 0; }
    .cookie-disclaimer.updated .disclaimer__cell:nth-child(2) {
      display: none; }
    .cookie-disclaimer.updated .disclaimer__cell:nth-child(3) {
      text-align: center;
      padding-top: 20px;
      padding-bottom: 10px; }
    @media screen and (min-width: 768px) {
      .cookie-disclaimer.updated .disclaimer__cell:nth-child(1) {
        width: 75%; }
      .cookie-disclaimer.updated .disclaimer__cell:nth-child(3) {
        width: 25%;
        padding-top: 0;
        text-align: right; } }
    @media screen and (min-width: 1024px) {
      .cookie-disclaimer.updated .disclaimer__cell:nth-child(1) {
        width: 82%; }
      .cookie-disclaimer.updated .disclaimer__cell:nth-child(3) {
        width: 18%; } }

.search-holder {
  width: 100%;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2); }

.search-header {
  height: 176px;
  background-color: #2A4C89; }
  .search-header:after {
    content: "";
    clear: both;
    display: block; }

.search-model .modal--fullscreen {
  background-color: transparent; }

.logo-search {
  background-image: url(/images/logo-nostrap.svg);
  background-size: 100%, 100%;
  background-repeat: no-repeat;
  display: block;
  width: 83px;
  height: 76px;
  float: left;
  margin-left: 21px;
  margin-top: 6px; }
  @media screen and (max-width: 320px) {
    .logo-search {
      display: none; } }
  @media screen and (max-width: 500px) {
    .logo-search {
      display: none; } }
  @media screen and (max-width: 600px) {
    .logo-search {
      width: 50px;
      height: 46px; } }

.close-search {
  cursor: pointer;
  cursor: hand;
  width: 51px;
  height: 51px;
  float: right;
  margin-top: 9px;
  margin-right: 9px; }

.search-input {
  width: 360px;
  background: transparent url(/images/icon-search.svg) no-repeat scroll 6px 7px;
  background-color: #f2f2f2;
  background-size: 20px;
  height: 40px;
  border-radius: 4px;
  box-shadow: inset 0 2px 3px 0 rgba(0, 0, 0, 0.2);
  border: solid 4px #ffffff;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  font-family: BrandonLight, Helvetica, sans-serif;
  color: #25447f;
  font-weight: bold;
  font-size: 2rem;
  padding-left: 40px;
  visibility: hidden; }
  @media screen and (max-width: 600px) {
    .search-input {
      width: 360px; } }
  @media screen and (max-width: 500px) {
    .search-input {
      width: 250px;
      left: 25px;
      right: auto;
      top: -35px;
      bottom: auto; } }
  @media screen and (max-width: 320px) {
    .search-input {
      width: 222px;
      right: auto;
      left: 25px;
      top: -35px;
      bottom: auto; } }
  .modal--open .search-input {
    visibility: visible; }

.filter-holder {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin-top: 90px;
  margin-left: auto;
  margin-right: auto;
  text-align: center; }
  @media screen and (max-width: 500px) {
    .filter-holder {
      margin-top: 35px; } }
  @media screen and (max-width: 320px) {
    .filter-holder {
      margin-top: 35px; } }

ul.search-filters {
  display: inline-table;
  padding: 0;
  margin-top: 50px; }

.search-filters li {
  white-space: nowrap;
  display: inline-block;
  list-style: none;
  font-family: RopaSoftProLight;
  font-size: 26px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.0;
  letter-spacing: normal;
  margin-left: 15px;
  margin-right: 15px;
  color: #ffffff;
  display: inline-block;
  vertical-align: middle; }
  @media screen and (max-width: 600px) {
    .search-filters li {
      margin-left: 10px;
      margin-right: 10px; } }
  @media screen and (max-width: 550px) {
    .search-filters li {
      margin-left: 5px;
      margin-right: 5px; } }

.search-filters li a {
  color: white;
  cursor: pointer;
  cursor: hand; }
  .search-filters li a span.underline {
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 8px;
    background-color: #2A4C89;
    margin-top: 5px; }
  .search-filters li a:hover {
    color: #06d895;
    text-decoration: none; }

.search-filters li.selected a span.underline {
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 8px;
  background-color: #06d895;
  margin-top: 5px; }

.search-filters li.selected a {
  color: #06d895; }

.search-recent {
  background: #25447f url(/images/search_dots.png) repeat-x;
  display: block;
  text-align: center;
  padding: 24px 0;
  margin-bottom: 0; }

.search-recent__link {
  color: #54acef;
  display: inline-block;
  padding: 6px 24px; }
  .search-recent__link:focus, .search-recent__link:hover {
    color: #fff;
    text-decoration: none; }

.search-results {
  background: #25447f url(/images/search_dots.png) repeat-x; }
  .search-results:after {
    content: "";
    clear: both;
    display: block; }

.search-results__error-message {
  float: left;
  width: 20%;
  padding: 34px 0 0 34px; }
  @media screen and (max-width: 600px) {
    .search-results__error-message {
      float: none;
      width: 100%;
      padding-top: 24px; } }
  .search-results__error-message .error-0,
  .search-results__error-message .error-2 {
    color: #54acef;
    font-family: RopaSoftPro;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.57; }
  .search-results__error-message .error-1 {
    color: #fff;
    font-family: RopaSoftPro;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.22; }

.search-results__error-message + .search-results__recommended {
  float: left;
  width: 80%; }
  @media screen and (max-width: 600px) {
    .search-results__error-message + .search-results__recommended {
      float: none;
      width: 100%; } }

.search-results__recommended .horizontal-carousel {
  background: none; }

.main-container {
  width: 100%;
  margin: 0;
  display: block;
  overflow: hidden; }
  @media screen and (min-width: 1440px) {
    .main-container {
      margin: auto;
      overflow: hidden;
      width: 1420px; } }

.ad {
  height: 0px;
  padding: 0px;
  display: none; }
  @media screen and (min-width: 730px) {
    .ad {
      display: block;
      padding-top: 30px;
      padding-bottom: 60px;
      max-width: 728px;
      margin: auto;
      height: 185px; } }

.character-panel {
  width: 100%;
  height: 100%;
  margin-bottom: -20px;
  position: relative;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  float: left;
  margin-left: 20px;
  clear: both; }
  @media screen and (min-width: 480px) {
    .character-panel {
      width: 220px;
      height: 470px;
      margin-bottom: 30px; } }
  @media screen and (min-width: 768px) {
    .character-panel {
      width: 230px;
      height: 470px;
      margin-bottom: 30px; } }
  @media screen and (min-width: 1024px) {
    .character-panel {
      width: 360px;
      height: 470px;
      margin-bottom: 30px; } }
  .character-panel .character-header {
    font-size: 34px;
    line-height: 0.93;
    font-weight: 800;
    color: #25447f;
    font-family: RopaSoftPro;
    margin-right: 20px;
    flex-shrink: 1;
    margin-left: 69px;
    margin-bottom: 36px; }
    @media screen and (min-width: 320px) {
      .character-panel .character-header {
        font-size: 36px; } }
    @media screen and (min-width: 480px) {
      .character-panel .character-header {
        font-size: 38px;
        margin-left: 0;
        margin-bottom: 0; } }
    @media screen and (min-width: 768px) {
      .character-panel .character-header {
        font-size: 40px; } }
    @media screen and (min-width: 1024px) {
      .character-panel .character-header {
        font-size: 45px; } }
  .character-panel p {
    font-family: BrandonMedium, Helvetica, sans-serif;
    font-weight: 500;
    color: #25447f;
    flex-shrink: 1;
    font-size: 20px; }
    @media screen and (min-width: 320px) {
      .character-panel p {
        font-size: 20px; } }
    @media screen and (min-width: 480px) {
      .character-panel p {
        font-size: 22px; } }
    @media screen and (min-width: 768px) {
      .character-panel p {
        font-size: 24px; } }
    @media screen and (min-width: 1024px) {
      .character-panel p {
        font-size: 24px; } }
  .character-panel .image-holder {
    display: none;
    height: 0; }
    @media screen and (min-width: 480px) {
      .character-panel .image-holder {
        flex-grow: 1;
        display: block; } }
  .character-panel .favorite-btn {
    width: 56px;
    height: 54px;
    display: block;
    background: url("/images/character-fav.svg") no-repeat 0 0;
    position: absolute;
    left: 0;
    top: 21px; }
    .character-panel .favorite-btn.isFavorite {
      background: url("/images/character-fav-on.svg") no-repeat 0 0; }
    @media screen and (min-width: 480px) {
      .character-panel .favorite-btn {
        bottom: 0;
        top: auto; } }

.character-content {
  float: right;
  width: 100%; }
  @media screen and (min-width: 480px) {
    .character-content {
      width: calc(100% - 240px); } }
  @media screen and (min-width: 768px) {
    .character-content {
      width: calc(100% - 250px); } }
  @media screen and (min-width: 1024px) {
    .character-content {
      width: calc(100% - 380px); } }
  .character-content .no-content {
    font-family: RopaSoftPro;
    font-size: 2.5em;
    font-weight: bold;
    color: #003953;
    text-align: center; }
    @media screen and (min-width: 768px) {
      .character-content .no-content {
        font-size: 3em; } }
    @media screen and (min-width: 1024px) {
      .character-content .no-content {
        font-size: 3.5em;
        line-height: 1.1em; } }

.image-holder {
  flex-grow: 1;
  display: none; }
  @media screen and (min-width: 480px) {
    .image-holder {
      flex-grow: 1;
      display: block; } }

.character-content {
  float: right;
  width: 100%; }
  @media screen and (min-width: 480px) {
    .character-content {
      width: calc(100% - 240px); } }
  @media screen and (min-width: 768px) {
    .character-content {
      width: calc(100% - 250px); } }
  @media screen and (min-width: 1024px) {
    .character-content {
      width: calc(100% - 380px); } }

.favourites-page .fav-container {
  position: relative;
  background: #ffffff; }
  @media screen and (min-width: 1024px) {
    .favourites-page .fav-container {
      background: #e5dada url("/images/favourites-bg.png") no-repeat bottom left;
      height: 643px; } }
  .favourites-page .fav-container h3 {
    padding: 15px 0 15px 131px;
    margin: 0;
    background: #e5dada;
    color: #003953;
    font-family: RopaSoftPro;
    font-size: 2em;
    width: 100%; }
    @media screen and (min-width: 600px) {
      .favourites-page .fav-container h3 {
        padding-left: 177px;
        font-size: 2.1em; } }
    @media screen and (min-width: 768px) {
      .favourites-page .fav-container h3 {
        font-size: 2.3em; } }
    @media screen and (min-width: 1024px) {
      .favourites-page .fav-container h3 {
        text-align: center;
        padding-left: 0;
        padding-top: 20px;
        font-size: 2.4em; } }
  .favourites-page .fav-container .heart-icon {
    display: none;
    width: 75px;
    height: 75px;
    position: absolute;
    top: 0;
    right: 20px;
    z-index: 10; }
    @media screen and (min-width: 600px) {
      .favourites-page .fav-container .heart-icon {
        display: block;
        background: transparent url("/images/icon-heart-bg.png") no-repeat bottom left;
        background-size: 75px 75px; } }
    @media screen and (min-width: 1024px) {
      .favourites-page .fav-container .heart-icon {
        right: 20px;
        width: 86px;
        height: 86px;
        background-size: 86px 86px; } }
    @media screen and (min-width: 1240px) {
      .favourites-page .fav-container .heart-icon {
        right: 40px; } }

.favourites-page .profile-container {
  width: 100%; }
  @media screen and (min-width: 600px) {
    .favourites-page .profile-container {
      height: 115px;
      left: 40px; } }
  @media screen and (min-width: 1024px) {
    .favourites-page .profile-container {
      position: absolute;
      top: 25px;
      left: 20px;
      width: 164px;
      height: 164px; } }
  .favourites-page .profile-container .avatar-container {
    position: absolute;
    left: 20px;
    top: 22px;
    border-radius: 50%;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    border: 4px solid #25447f;
    width: 98px;
    height: 98px; }
    @media screen and (min-width: 600px) {
      .favourites-page .profile-container .avatar-container {
        width: 123px;
        height: 123px; } }
    @media screen and (min-width: 1024px) {
      .favourites-page .profile-container .avatar-container {
        position: relative;
        left: 0;
        top: 0;
        width: 172px;
        height: 172px; } }
    .favourites-page .profile-container .avatar-container .avatar {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      border: 4px solid #ffffff; }
      @media screen and (min-width: 600px) {
        .favourites-page .profile-container .avatar-container .avatar {
          width: 115px;
          height: 115px; } }
      @media screen and (min-width: 1024px) {
        .favourites-page .profile-container .avatar-container .avatar {
          width: 164px;
          height: 164px; } }
      @media screen and (min-width: 1240px) {
        .favourites-page .profile-container .avatar-container .avatar {
          left: 40px; } }

.favourites-page .fav-header {
  position: relative;
  background: #c91612 url("/images/favourites-header.svg") left top repeat-x;
  height: 75px; }
  @media screen and (min-width: 600px) {
    .favourites-page .fav-header {
      height: 92px; } }
  @media screen and (min-width: 1024px) {
    .favourites-page .fav-header {
      height: 150px; } }
  .favourites-page .fav-header h2 {
    padding: 28px 0 15px 131px;
    margin: 0;
    color: #ffffff;
    font-family: RopaSoftPro;
    font-size: 2.2em;
    text-transform: capitalize; }
    @media screen and (min-width: 600px) {
      .favourites-page .fav-header h2 {
        padding-left: 177px;
        padding-top: 36px;
        font-size: 2.6em; } }
    @media screen and (min-width: 768px) {
      .favourites-page .fav-header h2 {
        padding-top: 38px;
        font-size: 2.8em; } }
    @media screen and (min-width: 1024px) {
      .favourites-page .fav-header h2 {
        padding-left: 23%;
        font-size: 3.2em; } }
    @media screen and (min-width: 1240px) {
      .favourites-page .fav-header h2 {
        padding-left: 18%; } }

.favourites-page .carousel-content {
  padding-left: 5px;
  height: 502px; }
  @media screen and (min-width: 1024px) {
    .favourites-page .carousel-content {
      width: 77%;
      border-radius: 20px;
      background-color: #ffffff;
      position: absolute;
      right: 20px;
      top: 100px;
      padding-left: 10px; }
      .favourites-page .carousel-content .main .slick-prev {
        left: 0; }
      .favourites-page .carousel-content .main .slick-next {
        right: 0; } }
  @media screen and (min-width: 1240px) {
    .favourites-page .carousel-content {
      right: 40px;
      width: 77%; } }
  @media screen and (min-width: 1375px) {
    .favourites-page .carousel-content {
      width: 80%; } }
  .favourites-page .carousel-content.no-content p {
    width: 100%;
    text-align: center;
    margin: 22px 0 30px 0;
    font-family: RopaSoftPro;
    color: #003953;
    padding: 0 20px; }
    @media screen and (min-width: 600px) {
      .favourites-page .carousel-content.no-content p {
        margin: 25px 0 16px 0; } }
    @media screen and (min-width: 768px) {
      .favourites-page .carousel-content.no-content p {
        margin-top: 27px; } }
    @media screen and (min-width: 1024px) {
      .favourites-page .carousel-content.no-content p {
        margin: 25px 0 32px 0;
        margin-top: 100px; } }
  .favourites-page .carousel-content.no-content .no-favs-title {
    font-size: 2.5em;
    font-weight: bold; }
    @media screen and (min-width: 768px) {
      .favourites-page .carousel-content.no-content .no-favs-title {
        font-size: 3em; } }
    @media screen and (min-width: 1024px) {
      .favourites-page .carousel-content.no-content .no-favs-title {
        font-size: 3.5em;
        line-height: 1.1em; } }
  .favourites-page .carousel-content.no-content .no-favs-description {
    font-family: BrandonMedium, Helvetica, sans-serif;
    font-size: 1.3em;
    margin-top: 0; }
    @media screen and (min-width: 768px) {
      .favourites-page .carousel-content.no-content .no-favs-description {
        font-size: 1.5em; } }
    @media screen and (min-width: 1024px) {
      .favourites-page .carousel-content.no-content .no-favs-description {
        font-size: 1.7em;
        line-height: 1.1em; } }

.error-404 {
  font-family: RopaSoftPro, Helvetica, sans-serif;
  color: #25447f;
  font-size: 3rem;
  text-transform: none;
  text-align: center;
  background: #ffffff url("/images/grey-dots.svg") no-repeat right bottom; }
  .error-404:after {
    content: "";
    clear: both;
    display: block; }
  .error-404 .wrapper {
    width: 90%;
    margin: 30px auto 20px; }
    @media screen and (min-width: 370px) {
      .error-404 .wrapper {
        width: 240px; } }
  .error-404 a {
    background-color: #54acef;
    color: #ffffff;
    font-size: 2rem;
    border-radius: 8px;
    padding: 5px 10px 2px 5px;
    display: inline-block;
    line-height: normal;
    text-transform: uppercase;
    letter-spacing: .5px;
    border: 0;
    padding: 12px 45px 10px;
    background: #54acef url("/images/icon-home-white.svg") no-repeat right 10px center;
    width: 100%; }
    .error-404 a:active, .error-404 a:focus {
      text-decoration: none; }
    .error-404 a:hover {
      text-decoration: none;
      color: #fff !important; }
    @media screen and (min-width: 768px) {
      .error-404 a {
        padding: 6px 5px;
        text-align: center; } }
    @media screen and (min-width: 1024px) {
      .error-404 a {
        padding: 5px 10px 2px 5px;
        width: auto;
        text-align: left; } }
  .error-404 h1 {
    padding-top: 220px;
    margin-top: 0;
    font-size: 6rem;
    background: url("/images/doki-error-2.svg") no-repeat center top/160px; }
  .error-404 p {
    font-size: 2.8rem;
    letter-spacing: .5px;
    margin-bottom: 40px; }
  @media screen and (min-width: 480px) {
    .error-404 a {
      font-size: 2.5rem; }
    .error-404 h1 {
      padding-top: 255px;
      background-size: 200px; } }
  @media screen and (min-width: 1024px) {
    .error-404 .wrapper {
      background: url("/images/doki-error-2.svg") no-repeat left top/300px;
      margin: 30px auto 20px;
      width: 680px;
      min-height: 400px; }
      .error-404 .wrapper:after {
        content: "";
        clear: both;
        display: block; }
      .error-404 .wrapper > div {
        width: 50%;
        float: right; }
    .error-404 h1 {
      padding-top: 0;
      background: none;
      font-size: 8rem; }
    .error-404 p {
      font-size: 4.8rem; }
    .error-404 a {
      width: 220px;
      padding: 12px 45px 10px; } }

.dkidsonpt {
  /*******************************
* Search
********************************/
  /*******************************
* Favourite
********************************/
  /*******************************
* Top nav
********************************/
  /*******************************
* Tabs
********************************/
  /*******************************
* Carousel
********************************/
  /*******************************
* Video and Game
********************************/
  /*******************************
* Video
********************************/
  /*******************************
* Game
********************************/
  /*******************************
* Footer
********************************/
  /*******************************
* Login
********************************/ }
  .dkidsonpt header h2,
  .dkidsonpt header h3 {
    color: #fff; }
  .dkidsonpt .logo-search {
    background-image: url(/images/dkidsonpt/dkidson-logo-header.svg); }
  .dkidsonpt .favourite-button {
    background-color: #00425e; }
  .dkidsonpt .top-nav__menus {
    background-color: #54b0d6; }
  .dkidsonpt .top-nav__menu {
    background-color: #9b53c1; }
    .dkidsonpt .top-nav__menu:before {
      border-bottom: 14px solid #9b53c1; }
    .dkidsonpt .top-nav__menu .top-nav__parents-message {
      display: none; }
  .dkidsonpt .top-nav__button.login {
    background-color: #fc882c;
    color: #fff; }
    .dkidsonpt .top-nav__button.login:hover {
      background-color: #e24900; }
    .dkidsonpt .top-nav__button.login:before {
      display: none; }
  .dkidsonpt .top-nav__button.games {
    color: #25447f; }
    .dkidsonpt .top-nav__button.games:before {
      background-image: url(/images/dkidsonpt/icon-games.svg); }
    .dkidsonpt .top-nav__button.games:hover:before {
      background-image: url(/images/icon-games-on.svg); }
    .dkidsonpt .top-nav__button.games:hover, .dkidsonpt .top-nav__button.games:focus {
      background-color: #25447f; }
  .dkidsonpt .main-container .tab-panel .new,
  .dkidsonpt .main-container .tab-panel .popular {
    color: #fff;
    background-color: #54b0d6; }
  .dkidsonpt .main-container .tab-panel .featured {
    color: #003953;
    background-color: #d7ebeb; }
  .dkidsonpt .react-tabs [role=tab][aria-selected=true] div.new,
  .dkidsonpt .react-tabs [role=tab][aria-selected=true] div.popular {
    color: #fff;
    background-color: #54b0d6; }
  .dkidsonpt .react-tabs [role=tab][aria-selected=true] div.featured {
    color: #003953;
    background-color: #d7ebeb; }
  .dkidsonpt .react-tabs [role=tab][aria-selected=true] div.new {
    background-image: url(/images/dkidsonpt/icon-new-white.svg); }
  .dkidsonpt .react-tabs [role=tab][aria-selected=true] div.popular {
    background-image: url(/images/dkidsonpt/icon-popular-white.svg); }
  .dkidsonpt .react-tabs [role=tab][aria-selected=true] div.featured {
    background-image: url(/images/icon-recommended-blue.svg); }
  .dkidsonpt .react-tabs [role=tab] div.new,
  .dkidsonpt .react-tabs [role=tab] div.popular {
    color: #6dd5ff; }
    .dkidsonpt .react-tabs [role=tab] div.new:hover,
    .dkidsonpt .react-tabs [role=tab] div.popular:hover {
      color: #fff;
      background-color: #54b0d6; }
  .dkidsonpt .react-tabs [role=tab] div.featured {
    color: #d7ebeb; }
    .dkidsonpt .react-tabs [role=tab] div.featured:hover {
      color: #fff;
      background-color: #54b0d6; }
  .dkidsonpt .react-tabs [role=tab] div.new {
    background-image: url(/images/dkidsonpt/icon-new-light-blue.svg); }
    .dkidsonpt .react-tabs [role=tab] div.new:hover {
      background-image: url(/images/dkidsonpt/icon-new-white.svg); }
  .dkidsonpt .react-tabs [role=tab] div.popular {
    background-image: url(/images/dkidsonpt/icon-popular-light-blue.svg); }
    .dkidsonpt .react-tabs [role=tab] div.popular:hover {
      background-image: url(/images/dkidsonpt/icon-popular-white.svg); }
  .dkidsonpt .react-tabs [role=tab] div.featured {
    background-image: url(/images/dkidsonpt/icon-featured-white.svg); }
    .dkidsonpt .react-tabs [role=tab] div.featured:hover {
      background-image: url(/images/icon-recommended-white.svg); }
  .dkidsonpt .vh-carousel-horizontal,
  .dkidsonpt .vh-carousel-vertical {
    background-color: #00425e; }
  .dkidsonpt .vh-carousel-horizontal .slick-next {
    background: #fff url(/images/dkidsonpt/pink-arrow-right.svg) no-repeat 15px; }
  .dkidsonpt .vh-carousel-horizontal .slick-prev {
    background: #fff url(/images/dkidsonpt/pink-arrow-left.svg) no-repeat 10px; }
  .dkidsonpt .vh-carousel-vertical .slick-next {
    background: #fff url(/images/dkidsonpt/pink-arrow-right.svg) no-repeat 15px center; }
  .dkidsonpt .vh-carousel-vertical .slick-prev {
    background: #fff url(/images/dkidsonpt/pink-arrow-left.svg) no-repeat 10px center; }
  .dkidsonpt .swiper-slide .item .gameIcon {
    background-image: url("/images/dkidsonpt/icon-game-dark-blue.svg"); }
  .dkidsonpt .swiper-slide .item .text {
    background-color: #9b53c1;
    color: #ffbb01; }
  .dkidsonpt .new .masonry .swiper-slide .item .name,
  .dkidsonpt .popular .masonry .swiper-slide .item .name {
    color: #fff; }
  .dkidsonpt .video-holder,
  .dkidsonpt .game-holder {
    background: #003953 url(/images/dkidsonpt/blue-dots-corner.svg) no-repeat left bottom; }
    .dkidsonpt .video-holder:after,
    .dkidsonpt .game-holder:after {
      content: "";
      clear: both;
      display: block; }
  .dkidsonpt .video-player header,
  .dkidsonpt .game-player header {
    background: #25447f url(/images/blue-dots.svg) repeat-x; }
  .dkidsonpt .video .LazyLoad {
    background: url("/images/dkidsonpt/video-placeholder.svg") center center no-repeat #2C508F !important; }
  .dkidsonpt .games-page .carousel-icon {
    background: none; }
    @media screen and (min-width: 480px) {
      .dkidsonpt .games-page .carousel-icon {
        background: url("/images/dkidsonpt/game-large.svg") no-repeat center 40%; } }
  .dkidsonpt .games-page .content-choice__filters li {
    background-color: #ffffff !important; }
  .dkidsonpt .games-page .content-choice__filters li:hover {
    background-color: #25447f !important; }
    .dkidsonpt .games-page .content-choice__filters li:hover p.active {
      color: #ffffff !important; }
  .dkidsonpt .games-page .content-choice__filters p.active {
    color: #25447f; }
  .dkidsonpt .footer {
    background: #ff9b00; }
    .dkidsonpt .footer .footer__copyright {
      background: url("/images/dkidsonpt/dkidson-logo-footer.svg") no-repeat center 8px;
      color: #003953; }
      @media screen and (min-width: 480px) {
        .dkidsonpt .footer .footer__copyright {
          background: url("/images/dkidsonpt/dkidson-logo-footer.svg") no-repeat 0 center; } }
  .dkidsonpt .mso-login__operators .description,
  .dkidsonpt .mso-app-login__login-providers .description {
    display: none; }
  .dkidsonpt .auth-modal-header:before {
    background: url("/images/dkidsonpt/dkidson-logo-header.svg") no-repeat center/40%; }
    @media screen and (min-width: 600px) {
      .dkidsonpt .auth-modal-header:before {
        background-size: 66%; } }

/*# sourceMappingURL=app-1.0.125.css.map*/