
.circle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.circle-icon__initial {
  font: var(--typography-caption-rw-s-bold);
  color: var(--color-switch-profile-text-initial-default);
}
.circle-icon--small {
  width: 32px;
  height: 32px;
}
.circle-icon--small .circle-icon__initial {
  font-size: 14px;
}
.circle-icon--medium {
  width: 80px;
  height: 80px;
}
.circle-icon--medium .circle-icon__initial {
  font-size: 36px;
}
.circle-icon--large {
  width: 80px;
  height: 80px;
}
@media (min-width: 45em) {
  .circle-icon--large {
    width: 112px;
    height: 112px;
  }
}
@media (min-width: 75em) {
  .circle-icon--large {
    width: 153px;
    height: 153px;
  }
}
.circle-icon--large .circle-icon__initial {
  font: var(--typography-heading-1-rw-xs);
}
@media (min-width: 45em) {
  .circle-icon--large .circle-icon__initial {
    font: var(--typography-heading-1-rw-s);
  }
}
@media (min-width: 75em) {
  .circle-icon--large .circle-icon__initial {
    font: var(--typography-heading-1-rw-l);
  }
}
.lock-icon {
  background-image: var(--assets-global-lock);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.svg-base-icon {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.arrow-icon {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #ffffff /*rtl:ignore*/;
}
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.live-circle-icon {
  display: inline-block;
  background: var(--color-global-badge-live-icon);
  box-shadow: 0 0 0 0 var(--color-global-badge-live-icon);
  border-radius: 50%;
  border: 2px solid rgba(255, 0, 0, 0.5);
  height: 10px;
  width: 10px;
  margin-right: 3px;
  animation: pulse 2s infinite;
}
.clearIcon {
  background-image: var(--assets-nav-search-clear);
}
.facebook-icon {
  color: #ffffff;
}
.follow .svg-icon {
  background-image: var(--assets-item-details-follow);
}

.followed .svg-icon {
  background-image: var(--assets-item-details-followed);
}
.globe-icon {
  width: 24px;
  height: 24px;
  background-size: contain;
  background-image: var(--assets-footer-theme-dark-language);
  background-repeat: no-repeat;
  background-position: center;
}
.smiley {
  background-image: var(--assets-account-profile-type-standard);
}
.star-icon {
  background-image: var(--assets-item-details-rate-unrated);
}

.star-icon.star-rating__star--usr,
.star-icon.rating-list-item__icon--highlight {
  background-image: var(--assets-item-details-rate-rated);
}
.tick-icon {
  stroke: #4d4d4d;
  background-image: var(--assets-forms-tick);
}
.search-icon {
  stroke-width: 3px;
}
a.offline {
  pointer-events: none;
  opacity: 0.3;
}

a.disabled {
  pointer-events: none;
}
.spinner__circle {
  animation: spinner-spin 1s linear infinite /* rtl: spinner-spin-ltr 1s linear infinite */;
}
.spinner--delay {
  opacity: 0;
  animation: spinner-fade-in 1s linear 1.3s;
  animation-fill-mode: forwards;
}

@keyframes spinner-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spinner-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.full-page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-global-modal-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.full-page-loader .spinner {
  width: 48px;
  height: 48px;
}

@media (min-width: 60em) {
  .full-page-loader .spinner {
    width: 80px;
    height: 80px;
  }
}
/* 
reducing st3 image width from 425 to 390 to temporarily adjust the row width
*/
/* stylelint-disable value-no-vendor-prefix*/
/* autoprefixer: off */
.log {
  width: 1920px;
  height: 1080px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  font-size: 20px;
  white-space: nowrap;
  overflow-x: hidden;
  overflow-y: scroll;
}
.log--show {
  display: block;
}
.metadata__meta-block {
  --metadata-font-size: 12px;
  --metadata-line-height: 14px;
  --metadata-border: 1px solid #808080;
  --metadata-background: rgba(0, 0, 0, 0.4);
  --metadata-height: 19px;
  --metadata-padding: 2px 4px;
  --metadata-margin/* rtl:as:margin */: 0 8px 0 0;
  --metadata-tablet-font-size: 14px;
  --metadata-tablet-line-height: 17px;
  --metadata-tablet-height: 21px;
}

.metadata__meta-block {
  font: var(--typography-metadata-rw-xs);
  border: var(--border-metadata);
  background: var(--color-global-metadata-background);
  height: var(--metadata-height);
  padding: var(--metadata-padding);
  margin: var(--metadata-margin);
  color: var(--color-global-metadata-text);
}
.metadata__meta-block:last-child {
  margin: 0;
}
@media (min-width: 45em) {
  .metadata__meta-block {
    font: var(--typography-metadata-rw-s);
    height: var(--metadata-tablet-height);
  }
}
@media (min-width: 75em) {
  .metadata__meta-block {
    font: var(--typography-metadata-rw-l);
  }
}

.metadata-tv__meta-block {
  color: var(--color-global-metadata-text);
  font: var(--typography-metadata-web-tv);
  text-transform: capitalize;
  margin-right: 16px;
  border-right: 2px solid;
  padding-right: 16px;
}
.metadata-tv__meta-block:last-child {
  border: none;
  margin-right: 0;
  padding-right: 0;
}
.metadata-block__meta-block {
  font: var(--typography-metadata-rw-xs);
  margin-right: 7px;
  padding: 1px 4px;
  border: var(--border-metadata);
  color: var(--color-global-metadata-text);
  background: var(--color-global-metadata-background);
  flex-shrink: 0;
}
@media (min-width: 45em) {
  .metadata-block__meta-block {
    font: var(--typography-metadata-rw-s);
    height: var(--metadata-tablet-height);
  }
}
@media (min-width: 75em) {
  .metadata-block__meta-block {
    font: var(--typography-metadata-rw-l);
  }
}

.counter-container {
  --counter-container-default-margin: 8px 0 16px 0;
  --counter-container-tablet-margin: 4px 0 16px 0;
  --counter-data-container-default-width: 40px;
  --counter-data-container-laptop-width: 48px;
  --counter-data-container-desktopWide-width: 56px;
  --counter-label-color: #cccccc;
  --counter-label-default-font-size: 12px;
  --counter-label-default-line-height: 16px;
  --counter-label-laptop-font-size: 14px;
  --counter-label-laptop-line-height: 16px;
  --counter-number-default-font-size: 24px;
  --counter-number-default-line-height: 32px;
  --counter-number-tablet-font-size: 28px;
  --counter-number-tablet-line-height: 32px;
  --counter-number-laptop-font-size: 32px;
  --counter-number-laptop-line-height: 40px;
  --counter-number-desktopWide-font-size: 36px;
  --counter-number-desktopWide-line-height: 44px;
  --counter-number-font-weight: 700;
  --counter-separator-default-width: 8px;
  --counter-separator-tablet-width: 16px;
}

.counter-container {
  display: flex;
  flex-direction: row;
  margin: var(--counter-container-default-margin);
}
@media (min-width: 45em) {
  .counter-container {
    margin: var(--counter-container-tablet-margin);
  }
}
.counter-container .counter-data-container {
  display: flex;
  width: var(--counter-data-container-default-width);
  flex-direction: column;
  align-items: center;
}
@media (min-width: 60em) {
  .counter-container .counter-data-container {
    width: var(--counter-data-container-laptop-width);
  }
}
@media (min-width: 90em) {
  .counter-container .counter-data-container {
    width: var(--counter-data-container-desktopWide-width);
  }
}
.counter-container .counter-data-container .label {
  color: var(--color-hero-text-countdown-period);
  font: var(--typography-caption-rw-xs-regular);
}
@media (min-width: 45em) {
  .counter-container .counter-data-container .label {
    font: var(--typography-caption-rw-s-regular);
  }
}
.counter-container .number {
  color: var(--color-hero-text-countdown-time);
  font: var(--typography-heading-2-rw-xs);
}
@media (min-width: 45em) {
  .counter-container .number {
    font: var(--typography-heading-2-rw-s);
  }
}
@media (min-width: 75em) {
  .counter-container .number {
    font: var(--typography-heading-2-rw-l);
  }
}
.counter-container .separator {
  width: var(--counter-separator-default-width);
  text-align: center;
}
@media (min-width: 45em) {
  .counter-container .separator {
    width: var(--counter-separator-tablet-width);
  }
}
.rendering-error {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.rendering-error__message {
  font: var(--typography-heading-4-rw-xs);
}

@media (min-width: 45em) {
  .rendering-error__message {
    font: var(--typography-heading-4-rw-s);
  }
}
@media (min-width: 75em) {
  .rendering-error__message {
    font: var(--typography-heading-4-rw-l);
  }
}
/** _decimal.scss | MIT License | gist.github.com/terkel/4373420
 *
 * Round a number to specified digits.
 *
 * @param  {Number} $number A number to round
 * @param  {Number} [$digits:0] Digits to output
 * @param  {String} [$mode:round] (round|ceil|floor) How to round a number
 * @return {Number} A rounded number
 * @example
 *     decimal-round(0.333)    => 0
 *     decimal-round(0.333, 1) => 0.3
 *     decimal-round(0.333, 2) => 0.33
 *     decimal-round(0.666)    => 1
 *     decimal-round(0.666, 1) => 0.7
 *     decimal-round(0.666, 2) => 0.67
 */
/**
 * Strip units from value e.g. remove px from 16px remove vm from 16vm;
 * @param {integer} $val - The value to clean;
 */
/**
 * View width calc by pixel vs width
 * @param {integer} $val - The pixel value;
 * @param {string} $breakpoint - The breakpoint to calc against;
 */
/**
 * Calculate line-height based on font-size
 * @param {css variable} $fontSize - font size in vw;
 */
/**
 * View width mixin to set vw with pixel fallback based off breakpoint
 * @param {string} $breakpoint - The font-size at given breakpoint;
 * @param {string} $prop - The css property;
 * @param {integer} $val - The pixel value;
 */
.indicator-blocks {
  --indicator-block-default-width: 16px;
  --indicator-block-until-phablet-width: 8px;
  --indicator-block-default-height: 4px;
  --indicator-block-margin-right: 4px;
  --indicator-block-outline-offset: 1px;
}

.indicator-blocks-common {
  display: inline-block;
  background-color: var(--color-hero-hx1-carousel-indicator-icon-default);
}
.indicator-blocks-common--focused {
  background-color: var(--color-hero-hx1-carousel-indicator-icon-selected);
}

.indicator-blocks {
  width: var(--indicator-block-default-width);
  height: var(--indicator-block-default-height);
  margin-right: var(--indicator-block-margin-right);
}
.indicator-blocks:focus {
  outline: 1px solid var(--color-hero-hx1-carousel-indicator-icon-selected);
  outline-offset: 1px;
}
.indicator-blocks:hover {
  background-color: var(--color-hero-hx1-carousel-indicator-icon-hover);
}
@media (max-width: 29.99em) {
  .indicator-blocks {
    width: var(--indicator-block-until-phablet-width);
  }
}

.indicator-blocks-tv {
  width: 32px;
  height: 8px;
  margin-right: 8px;
}
html {
  overflow-x: hidden;
}

html,
body,
#root {
  height: 100%;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.2);
}

@media (hover: none) {
  #root {
    height: 101vh;
  }
}
.main {
  flex: 1 0 auto;
  height: 100%;
}

.truncated-desc__container {
  font-size: 14px;
  font-family: var(--font-family-body);
  color: #cccccc;
  margin: 20px 0 0;
}
.truncated-desc__content {
  margin-bottom: 0;
  outline-offset: -1px;
}
.truncated-desc__content--truncated {
  line-height: 1.45em;
  overflow: hidden;
  background: linear-gradient(to bottom, white, rgba(255, 255, 255, 0));
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}
.badge {
  display: inline-block;
  margin: 0;
  padding: 2px 4px;
  width: auto;
  font: var(--typography-badge-rw-xs);
  color: var(--color-global-badge-default-text);
  text-transform: uppercase;
  background: var(--color-global-badge-default-background);
  border-radius: var(--border-radius-global-badge-rw);
}
@media (min-width: 45em) {
  .badge {
    font: var(--typography-badge-rw-s);
  }
}
@media (min-width: 75em) {
  .badge {
    font: var(--typography-badge-rw-l);
  }
}
.event-state-badge {
  display: inline-block;
  vertical-align: middle;
  padding: 2px 4px;
  width: auto;
  font: var(--typography-badge-rw-xs);
  color: var(--color-global-badge-default-text);
  background: var(--color-global-badge-default-background);
  border-radius: var(--border-radius-global-badge-rw);
  max-width: 70%;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (min-width: 45em) {
  .event-state-badge {
    font: var(--typography-badge-rw-s);
  }
}
@media (min-width: 75em) {
  .event-state-badge {
    font: var(--typography-badge-rw-l);
  }
}
.event-state-badge--upcoming {
  color: var(--color-global-badge-upcoming-text);
  background: var(--color-global-badge-upcoming-background);
}
.event-state-badge--live {
  color: var(--color-global-badge-live-text);
  background: var(--color-global-badge-live-background);
}
.event-state-badge__live-icon {
  display: inline-block;
  position: relative;
  top: 1px;
  width: 10px;
  height: 10px;
  margin-right: 3px /*rtl:ignore*/;
  vertical-align: top;
}

@media (min-width: 90em) {
  .event-state-badge__live-icon {
    width: 12px;
    height: 12px;
  }
}
.packshot-play-icon {
  display: none;
  position: absolute;
  z-index: 2;
  cursor: pointer;
}
.packshot-play-icon__circle {
  color: white;
  stroke: white;
}
.packshot-play-icon__arrow {
  color: white;
  fill: white;
}
.packshot-play-icon__container--hover-enabled {
  transition: all 0.2s ease-in-out;
  pointer-events: visiblePainted;
}
.packshot-play-icon__container--hover-enabled:hover {
  transform: scale(1.1);
}
.packshot-play-icon__container--hover-enabled:hover:not(.packshot-play-icon__container--hover-enabled--disabled) .play-icon__circle {
  color: #0099f7;
  stroke: #0099f7;
}
.packshot-play-icon__container--hover-enabled:hover:not(.packshot-play-icon__container--hover-enabled--disabled) .play-icon__arrow {
  color: #0099f7;
  fill: #0099f7;
}
.packshot-play-icon--disabled {
  cursor: default;
}
.packshot-play-icon--disabled .play-icon__circle {
  color: #808080;
  stroke: #808080;
}
.packshot-play-icon--disabled .play-icon__arrow {
  color: #808080;
  fill: #808080;
}
.packshot-play-icon--disabled .play-icon__container:hover {
  transform: none;
}
.packshot-play-icon--disabled .play-icon__container {
  transition: none;
}
.packshot-play-icon .play-icon {
  width: 56px;
  height: 56px;
  background: var(--assets-packshot-play-default);
  background-size: contain;
}

@media (min-width: 75em) {
  .packshot-play-icon {
    display: block;
  }
}
.pg-account .packshot--poster .packshot-play-icon .play-icon,
.pg-account .packshot--block .packshot-play-icon .play-icon,
.pg-account .packshot--square .packshot-play-icon .play-icon {
  width: 40px;
  height: 40px;
}
.pg-account .packshot--tile .packshot-play-icon .play-icon {
  width: 36px;
  height: 36px;
}

.packshot--square .packshot-play-icon .play-icon,
.packshot--tile .packshot-play-icon .play-icon {
  width: 46px;
  height: 46px;
}

.packshot-list__packshot .packshot--tile .packshot-play-icon .play-icon,
.packshot-list__packshot .packshot--square .packshot-play-icon .play-icon {
  width: 40px;
  height: 40px;
}
.bear-icon {
  background-image: var(--assets-account-profile-kids-theme-dark);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.chevron-icon {
  width: 24px;
  height: 24px;
  background-size: contain;
  background-image: var(--assets-footer-theme-dark-dropdown);
  background-repeat: no-repeat;
}
.search-icon {
  stroke-width: 3px;
  background-image: var(--assets-global-search);
}
@charset "UTF-8";
.help-circle {
  position: relative;
  cursor: pointer;
  border: 1px solid #808080;
  border-radius: 100%;
  height: 18px;
  width: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.help-circle__mark {
  position: absolute;
  left: 52%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-style: normal;
  font-size: 14px;
}
.help-circle__mark:after {
  content: "?";
}
.help-circle__content {
  opacity: 0;
  transition: opacity 0.2s linear 0.2s;
  position: absolute;
  font-size: 12px;
  color: #ffffff;
  background-color: #4d4d4d;
  width: 200px;
  bottom: 160%;
  left: 50%;
  padding: 10px;
  transform: translateX(-50%);
  border-radius: 10px;
  font-style: normal;
  font-weight: 200;
  pointer-events: none;
  white-space: normal;
}
.help-circle__content--visible {
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.2s;
}
.help-circle__content:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-top-color: #4d4d4d;
  border-bottom: none;
}
.help-circle__mark--ar {
  top: 41%;
  font-size: 18px;
}
.help-circle__mark--ar:after {
  content: "؟";
}
.brand-image {
  height: 100%;
}
.brand-image__picture {
  width: auto;
  height: 100%;
}
.checkbox {
  position: relative;
  line-height: 24px;
  vertical-align: middle;
  display: inline-block;
  cursor: pointer;
  margin-left: 1px;
}
.checkbox__label {
  user-select: none;
}
.checkbox__box, .checkbox__input, .checkbox__tick, .checkbox__label {
  transition: all 0.3s;
}
.checkbox__box {
  content: "";
  border: var(--border-checkbox-default);
  display: inline-block;
  border-radius: 3px;
  width: 20px;
  height: 20px;
  position: relative;
  top: -2px;
  vertical-align: middle;
}
.checkbox__input {
  margin-right: 0;
}
.checkbox--disabled {
  cursor: default;
}
.checkbox__tick-box-wrap {
  display: inline-block;
  position: relative;
  margin-right: 8px;
}

/* stylelint-disable no-duplicate-selectors*/
/*rtl:begin:ignore*/
.checkbox__tick {
  direction: ltr;
  position: absolute;
  left: 0px;
  stroke-width: 3px;
  height: 20px;
  width: 20px;
  top: 0;
}

/*rtl:end:ignore*/
.form-white {
  color: #4d4d4d;
}
.form-white .checkbox__box {
  border-color: #4d4d4d;
}
.form-white .checkbox__label {
  color: #4d4d4d;
}
.form-white .checkbox__tick {
  stroke: #ffffff;
}
.form-white .checkbox__input:checked ~ .checkbox__tick {
  stroke: #4d4d4d;
}
.form-white .checkbox__input:focus ~ .checkbox__box, .form-white .checkbox:hover .checkbox__box {
  border-color: #0099f7;
}
.form-white .checkbox__input:focus ~ .checkbox__label, .form-white .checkbox:hover .checkbox__label {
  color: #0099f7;
}
.form-white .checkbox--disabled .checkbox__label, .form-white .checkbox--disabled:hover .checkbox__label {
  color: #cccccc;
}
.form-white .checkbox--disabled .checkbox__box, .form-white .checkbox--disabled:hover .checkbox__box {
  border-color: #cccccc;
}
.form-white .checkbox--disabled .checkbox__input:checked ~ .checkbox__tick, .form-white .checkbox--disabled:hover .checkbox__input:checked ~ .checkbox__tick {
  stroke: #cccccc;
}

.form-blue .checkbox__box {
  border-color: #ffffff;
  box-shadow: 0 0 0 1px transparent;
}
.form-blue .checkbox__label {
  color: #ffffff;
}
.form-blue .checkbox__tick {
  stroke: transparent;
}
.form-blue .checkbox .checkbox__input:checked ~ .checkbox__tick {
  stroke: #ffffff;
}
.form-blue .checkbox:hover .checkbox__box, .form-blue .checkbox__input:focus ~ .checkbox__box {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 1px #ffffff;
}
.form-blue .checkbox--disabled .checkbox__label, .form-blue .checkbox--disabled:hover .checkbox__label {
  color: #a7dcf9;
}
.form-blue .checkbox--disabled .checkbox__box, .form-blue .checkbox--disabled:hover .checkbox__box {
  border-color: #a7dcf9;
  box-shadow: none;
  background: transparent;
}
.form-blue .checkbox--disabled .checkbox__input:checked ~ .checkbox__tick, .form-blue .checkbox--disabled:hover .checkbox__input:checked ~ .checkbox__tick {
  stroke: #a7dcf9;
}
.digit-input {
  box-shadow: 0 -3px 0 -1px #808080 inset;
  padding: 0;
  transition: box-shadow 0.2s;
  margin: 0 8px 0 2px;
  text-align: center;
  border: none;
  color: #000000;
  appearance: none;
  outline: none;
  background-color: transparent;
  width: 38px;
  height: 38px;
  font-size: 16px;
  border-radius: 0;
}
.digit-input--error {
  box-shadow: 0 -3px 0 -1px var(--color-global-text-field-border-error) inset;
}
.digit-input--error:focus {
  box-shadow: 0 -3px 0 -1px var(--color-global-text-field-border-error) inset;
}
.digit-input:invalid:not(.digit-input--error):not(:focus) {
  box-shadow: 0 -3px 0 -1px #808080 inset;
}
.digit-input:focus {
  box-shadow: 0 -3px 0 -1px #0099f7 inset;
}
.digit-input:disabled {
  box-shadow: 0 -3px 0 -1px #cccccc inset;
}
.digit-input--dark {
  box-shadow: 0 -3px 0 -1px #cccccc inset;
  color: #ffffff;
  border-color: #cccccc;
}
.digit-input--dark.digit-input--error {
  box-shadow: 0 -3px 0 -1px var(--color-global-text-field-border-error) inset;
}
.digit-input--dark:disabled {
  box-shadow: 0 -3px 0 -1px #808080 inset;
}
.txt-input {
  width: 100%;
  font-family: var(--font-family-title);
  position: relative;
  margin-bottom: 8px;
}
.txt-input__label {
  left: 0;
  position: absolute;
  transition: all 0.25s cubic-bezier(0.39, 0.575, 0.565, 1);
  top: 16px;
  font-size: 16px;
  cursor: text;
}
.txt-input__input {
  padding: 0 40px 0 0;
  margin-top: 12px;
  height: 32px;
  font-size: 16px;
  text-align: left;
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  transition: box-shadow 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}
.txt-input__optional {
  font-size: 13px;
  opacity: 0.8;
}
.txt-input__icon {
  position: absolute;
  top: 16px;
  font-size: 18px;
  font-weight: bold;
  right: 8px;
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
  height: 22px;
  width: 22px;
  text-align: center;
}
.txt-input__message {
  line-height: 16px;
  min-height: 24px;
  font-size: 12px;
  text-align: left;
  margin: 8px 0;
}
.txt-input--error .txt-input__icon, .txt-input--success .txt-input__icon {
  opacity: 1;
}
.txt-input--success {
  stroke-width: 2px;
}
.txt-input--active .txt-input__label {
  line-height: 18px;
  font-size: 12px;
  top: -5px;
}
.txt-input--active .txt-input__icon {
  opacity: 0;
}
.txt-input--active.txt-input--error .txt-input__icon, .txt-input--active.txt-input--success .txt-input__icon {
  opacity: 1;
}
.txt-input--disabled .txt-input__label {
  cursor: default;
}

.form-white .txt-input__input {
  color: #000000;
  box-shadow: 0 -2px 0 -1px #707070 inset;
}
.form-white .txt-input__label, .form-white .txt-input__message {
  color: #707070;
}
.form-white .txt-input--focused .txt-input__label {
  color: rgb(8.1705361, 116.9931351016, 183.8514639);
}
.form-white .txt-input--focused .txt-input__input {
  box-shadow: 0 -2px 0 -1px rgb(8.1705361, 116.9931351016, 183.8514639) inset;
}
.form-white .txt-input--focused {
  color: #000000;
}
.form-white .txt-input--focused .txt-input__input {
  color: #000000;
  box-shadow: 0 -3px 0 -1px rgb(8.1705361, 116.9931351016, 183.8514639) inset;
}
.form-white .txt-input--error .txt-input__label {
  color: #ec0000;
}
.form-white .txt-input--error .txt-input__input {
  box-shadow: 0 -2px 0 -1px #ec0000 inset;
}
.form-white .txt-input--error .txt-input__message {
  color: #ec0000;
}
.form-white .txt-input--success .txt-input__label {
  color: #4ca224;
}
.form-white .txt-input--success .txt-input__input {
  box-shadow: 0 -2px 0 -1px #4ca224 inset;
}
.form-white .txt-input--success .txt-input__icon {
  stroke: #4ca224;
}
.form-white .txt-input__icon--error {
  color: #ec0000;
}
.form-white .txt-input__icon--success {
  color: #4ca224;
}
.form-white .txt-input:hover .txt-input__label {
  color: #000000;
}
.form-white .txt-input:hover .txt-input__input {
  box-shadow: 0 -3px 0 -1px rgb(8.1705361, 116.9931351016, 183.8514639) inset;
}
.form-white .txt-input:hover.txt-input--disabled .txt-input__label {
  color: #cccccc;
}
.form-white .txt-input:hover.txt-input--disabled .txt-input__input {
  box-shadow: 0 -2px 0 -1px #cccccc inset;
}
.form-white .txt-input--disabled .txt-input__label {
  color: #cccccc;
}
.form-white .txt-input--disabled .txt-input__input {
  box-shadow: 0 -2px 0 -1px #cccccc inset;
}
.form-white .txt-input--active:hover .txt-input__label {
  color: rgb(8.1705361, 116.9931351016, 183.8514639);
}

.form-blue .txt-input__input {
  color: #ffffff;
  box-shadow: 0 -2px 0 -1px #a7dcf9 inset;
}
.form-blue .txt-input__label, .form-blue .txt-input__message {
  color: #a7dcf9;
}
.form-blue .txt-input--error .txt-input__label, .form-blue .txt-input--success .txt-input__label {
  color: #ffffff;
}
.form-blue .txt-input--error .txt-input__input, .form-blue .txt-input--success .txt-input__input {
  box-shadow: 0 -2px 0 -1px #ffffff inset;
}
.form-blue .txt-input--success {
  stroke: #ffffff;
}
.form-blue .txt-input--success .txt-input__icon {
  stroke: #ffffff;
}
.form-blue .txt-input:hover .txt-input__label, .form-blue .txt-input--focused .txt-input__label {
  color: #ffffff;
}
.form-blue .txt-input:hover .txt-input__input, .form-blue .txt-input--focused .txt-input__input {
  box-shadow: 0 -3px 0 -1px #ffffff inset;
}
.form-blue .txt-input:hover.txt-input--disabled .txt-input__input, .form-blue .txt-input--focused.txt-input--disabled .txt-input__input {
  box-shadow: 0 -2px 0 -1px #f0f0f0 inset;
  color: #f0f0f0;
}
.form-blue .txt-input:hover.txt-input--disabled .txt-input__label, .form-blue .txt-input--focused.txt-input--disabled .txt-input__label {
  color: #f0f0f0;
}
.form-blue .txt-input--disabled .txt-input__input,
.form-blue .txt-input--disabled .txt-input__label {
  opacity: 0.4;
}
.txt-input__input::-webkit-inner-spin-button, .txt-input__input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.pwd-input {
  position: relative;
}
.pwd-input__view-pwd {
  display: none;
  position: absolute;
  right: 4px;
  top: 17px;
  z-index: 1;
  transition: right 0.1s linear;
  color: #808080;
  background: transparent;
  width: 40px;
  text-align: center;
}
.pwd-input .txt-input__input {
  padding-right: 48px;
}
.pwd-input--value .pwd-input__view-pwd {
  display: block;
}
.pwd-input--feedback .pwd-input__view-pwd {
  right: 30px;
}
.pwd-input--feedback .txt-input__input {
  padding-right: 74px;
}
.pwd-input--disabled .pwd-input__view-pwd {
  color: #cccccc;
}
.pwd-input .txt-input__icon--error {
  top: 12px;
}

.form-blue .pwd-input__view-pwd {
  color: #a7dcf9;
}
.form-blue .pwd-input--active .pwd-input__view-pwd {
  color: #ffffff;
}
.form-blue .pwd-input--disabled .pwd-input__view-pwd {
  opacity: 0.3;
}

.form-white .txt-input__input {
  padding-right: 0px;
  width: calc(100% - 50px);
}
.truncate, .language-select__languages, .language-select {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.uppercase {
  text-transform: uppercase;
}

.titlecase {
  text-transform: capitalize;
}

.txt-left {
  text-align: left;
}
.txt-center {
  text-align: center;
}
.txt-right {
  text-align: right;
}

.language-select {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  max-width: 250px;
  position: relative;
}
.language-select__languages {
  flex-grow: 1;
  background: transparent;
  border: 0px solid transparent;
  transition: 0.2s color, background-color 0.2s, border-color 0.2s;
  padding: 4px 25px 4px 10px;
  appearance: none;
  color: var(--color-global-dropdown-text-default);
  max-width: 100%;
  width: 100%;
  text-align: left;
}
@media (max-width: 29.99em) {
  .language-select__languages {
    font-size: 14px;
    border-radius: 5px;
  }
}
.language-select__languages:hover {
  color: var(--color-global-dropdown-text-hover);
}
.language-select__languages:focus {
  background-color: #262626;
  color: #ffffff;
  transition: none;
}
.language-select__languages::-ms-expand {
  display: none;
}
.language-select__languages-item {
  color: #1a1a1a;
  background-color: #f0f0f0;
  transition: 0.2s color, background-color 0.2s;
}
.language-select--light {
  color: var(--color-global-dropdown-text-default-inverse);
}
.language-select--light .globe-icon {
  background-image: var(--assets-footer-theme-light-language);
}
.language-select--light .chevron-icon {
  background-image: var(--assets-footer-theme-light-dropdown);
}
.language-select--light .language-select__languages {
  color: var(--color-global-dropdown-text-default-inverse);
}
.language-select--light .language-select__languages:focus {
  background-color: #ffffff;
}
.language-select--light .language-select__languages:focus + .language-select__indicator {
  color: #1a1a1a;
}
.language-select--light .language-select__languages-item {
  color: #4d4d4d;
}
.language-select__globe {
  height: 20px;
  flex-shrink: 0;
  width: 20px;
}
.language-select__indicator {
  pointer-events: none;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.2s;
  z-index: 1;
}
.language-select__indicator:hover {
  color: #0099f7;
}
.pin-group__error {
  transition: opacity 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
  margin-top: 8px;
  height: 24px;
  color: #ec0000;
  margin-bottom: 8px;
  opacity: 0;
}
.pin-group__error--visible {
  opacity: 1;
}
.pin-group__view-pin {
  background-color: transparent;
  color: #808080;
  transition: color 0.2s;
}
.pin-group__view-pin:disabled {
  color: #cccccc;
}
.pin-group__label {
  color: #808080;
  font-size: 12px;
}
.pin-group:disabled {
  color: #cccccc;
}
.pin-group--dark .pin-group__view-pin {
  color: #cccccc;
}
.pin-group--dark .pin-group__view-pin:disabled {
  color: #808080;
}
.pin-group--dark .pin-group__label {
  color: #cccccc;
}
.create-pin__title, .create-pin__content {
  font-size: 14px;
  color: #4d4d4d;
}
.create-pin__button {
  vertical-align: top;
}
.cta-toggle-btn {
  background: transparent;
  min-width: 40px;
}
.cta-toggle-btn__icon {
  transition: stroke 0.2s;
  color: transparent;
  stroke-linecap: round;
  stroke-width: 2px;
  stroke: #cccccc;
  margin: 0 auto;
  height: 24px;
  width: 24px;
  margin-bottom: 5px;
}
.cta-toggle-btn__label {
  color: #cccccc;
  cursor: inherit;
  display: block;
  font-size: 12px;
  line-height: 1.25em;
  margin-top: -1.25em;
  transition: color 0.2s;
  visibility: hidden;
  white-space: nowrap;
  word-wrap: break-word;
}
.cta-toggle-btn__label--static {
  visibility: visible;
}
.svg-icon + .cta-toggle-btn__label {
  margin-top: 0;
}
.cta-toggle-btn.active .cta-toggle-btn__label {
  visibility: hidden;
}
.cta-toggle-btn.active .cta-toggle-btn__label--active {
  visibility: visible;
}
.cta-toggle-btn--hovered .cta-toggle-btn__icon {
  stroke: #ffffff;
}
.cta-toggle-btn--hovered .cta-toggle-btn__label {
  color: #ffffff;
  visibility: hidden;
}
.cta-toggle-btn--hovered .cta-toggle-btn__label--hover {
  visibility: visible;
}
.cta-toggle-btn--hovered.active .cta-toggle-btn__label {
  visibility: hidden;
}
.cta-toggle-btn--hovered.active .cta-toggle-btn__label--active-hover {
  visibility: visible;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.uppercase {
  text-transform: uppercase;
}

.titlecase {
  text-transform: capitalize;
}

.txt-left {
  text-align: left;
}
.txt-center {
  text-align: center;
}
.txt-right {
  text-align: right;
}

.cta-btn {
  border-radius: var(--border-radius-global-button-rw);
  text-transform: capitalize;
  transition: color 0.2s, background-color 0.2s, border-color 0.2s;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  appearance: none;
  font: var(--typography-button-rw-m);
}
.cta-btn .cta-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 44.99em) {
  .cta-btn {
    height: 32px;
    padding: 0 16px;
    font: var(--typography-button-rw-s);
  }
}
.cta-btn__icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 8px;
}
.cta-btn .icon-play {
  background-image: var(--assets-button-play-default);
}
.cta-btn:hover .icon-play {
  background-image: var(--assets-button-play-hover);
}
.cta-btn:focus {
  outline-color: #ffffff;
}
.cta-btn--light:focus {
  outline-color: #0099f7;
}
.cta-btn--small {
  height: 32px;
  padding: 0 16px;
  font: var(--typography-button-rw-s);
}
.cta-btn--large {
  height: 48px;
  font: var(--typography-button-rw-l);
  justify-content: center;
}
@media (max-width: 59.99em) {
  .cta-btn--large {
    height: 40px;
    font: var(--typography-button-rw-m);
  }
}
@media (max-width: 44.99em) {
  .cta-btn--large {
    height: 32px;
    padding: 0 16px;
    font: var(--typography-button-rw-s);
  }
}
.cta-btn--primary {
  background-color: var(--color-global-button-primary-background-default);
  color: var(--color-global-button-primary-text-default);
}
.cta-btn--primary:hover:not(:disabled) {
  background-color: var(--color-global-button-primary-background-hover);
  color: var(--color-global-button-primary-text-hover);
}
.cta-btn--primary:disabled {
  color: var(--color-global-button-primary-text-default);
  background-color: var(--color-global-button-primary-background-default);
  opacity: 50%;
}
.cta-btn--primary-light {
  background-color: var(--color-global-button-primary-background-default-inverse);
  color: var(--color-global-button-primary-text-default-inverse);
}
.cta-btn--primary-light:disabled {
  background-color: var(--color-global-button-primary-background-default-inverse);
  color: var(--color-global-button-primary-text-default-inverse);
  opacity: 50%;
}
.cta-btn--primary-blue {
  background-color: var(--color-global-button-primary-background-default);
  color: var(--color-global-button-primary-text-default);
}
.cta-btn--primary-blue:hover:not(:disabled) {
  background-color: var(--color-global-button-primary-background-hover);
}
.cta-btn--primary-blue:disabled {
  color: var(--color-global-button-primary-text-default);
  background-color: var(--color-global-button-primary-background-default);
  opacity: 50%;
}
.cta-btn--primary-red {
  color: var(--color-global-button-live-text-default);
  background-color: var(--color-global-button-live-background-default);
}
.cta-btn--primary-red:hover:not(:disabled) {
  background-color: var(--color-global-button-live-background-hover);
}
.cta-btn--primary-red:disabled {
  color: var(--color-global-button-live-text-default);
  background-color: var(--color-global-button-live-background-default);
  opacity: 50%;
}
.cta-btn--secondary {
  color: var(--color-global-button-secondary-text-default);
  border: var(--border-button-secondary-theme-dark-default);
  background-color: var(--color-global-button-secondary-background-default);
}
.cta-btn--secondary:hover:not(:disabled) {
  background-color: var(--color-global-button-secondary-background-hover);
  color: var(--color-global-button-secondary-text-hover);
  border: var(--border-button-secondary-theme-dark-hover);
}
.cta-btn--secondary:disabled {
  color: var(--color-global-button-secondary-text-default);
  border-color: var(--color-global-button-secondary-border-default);
  opacity: 50%;
}
.cta-btn--secondary-light {
  background-color: var(--color-global-button-secondary-background-default-inverse);
  border: var(--border-button-secondary-theme-light-default);
  color: var(--color-global-button-secondary-text-default-inverse);
}
.cta-btn--secondary-light:hover:not(:disabled) {
  background-color: var(--color-global-button-secondary-background-hover-inverse);
  color: var(--color-global-button-secondary-text-hover-inverse);
  border: var(--border-button-secondary-theme-light-hover);
}
.cta-btn--secondary-light:disabled {
  background-color: var(--color-global-button-secondary-background-default-inverse);
  border: var(--border-button-secondary-theme-light-default);
  color: var(--color-global-button-secondary-text-default-inverse);
  opacity: 50%;
}
.cta-btn--secondary-blue {
  background-color: var(--color-global-button-primary-background-default);
  color: var(--color-global-button-primary-text-default);
}
.cta-btn--secondary-blue:hover:not(:disabled) {
  background-color: var(--color-global-button-primary-background-hover);
}
.cta-btn--secondary-blue:disabled {
  background-color: var(--color-global-button-primary-background-default);
  color: var(--color-global-button-primary-text-default);
  opacity: 50%;
}
.cta-btn--secondary-red {
  color: var(--color-global-button-live-text-default);
  background-color: var(--color-global-button-live-background-default);
}
.cta-btn--secondary-red:hover:not(:disabled) {
  background-color: var(--color-global-button-live-background-hover);
}
.cta-btn--secondary-red:disabled {
  color: #0099f7;
  color: var(--color-global-button-live-text-default);
  background-color: var(--color-global-button-live-background-default);
  opacity: 50%;
}
.cta-btn--naked {
  color: var(--color-global-button-tertiary-text-default);
}
.cta-btn--naked:disabled {
  opacity: 50%;
}
.cta-btn--naked:hover:not(:disabled) {
  background: var(--color-global-button-tertiary-background-hover);
}
.cta-btn--naked-light {
  color: var(--color-global-button-tertiary-text-default-inverse);
}
.cta-btn--naked-light:hover:not(:disabled) {
  background: var(--color-global-button-tertiary-background-hover-inverse);
}
.cta-btn--naked-blue:hover:not(:disabled) {
  color: var(--color-global-button-tertiary-text-default);
}
.cta-btn--naked-blue:disabled {
  opacity: 50%;
}
.cta-btn--naked-red:hover:not(:disabled) {
  color: var(--color-global-button-tertiary-text-default);
}
.cta-btn--naked-red:disabled {
  color: var(--color-global-button-tertiary-text-default);
  opacity: 50%;
}
.account-btn {
  display: inline-flex;
  align-items: center;
  position: relative;
  vertical-align: top;
}
.account-btn--primary-dark:not(:disabled) .account-btn__spinner, .account-btn--primary-light:not(:disabled) .account-btn__spinner {
  color: #ffffff;
}
.account-btn--primary-blue:not(:disabled) .account-btn__spinner {
  color: rgb(8.1705361, 116.9931351016, 183.8514639);
}
.account-btn--secondary-dark:not(:disabled) .account-btn__spinner, .account-btn--secondary-light:not(:disabled) .account-btn__spinner {
  color: rgb(8.1705361, 116.9931351016, 183.8514639);
}
.account-btn--secondary-blue:not(:disabled) .account-btn__spinner {
  color: #ffffff;
}
.account-btn--naked:not(:disabled) .account-btn__spinner {
  color: #ffffff;
}
.account-btn--naked-light:not(:disabled) .account-btn__spinner {
  color: rgb(8.1705361, 116.9931351016, 183.8514639);
}
.account-btn__spinner-container {
  width: 0px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: width 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
}
.account-btn__spinner-container--visible {
  transition: width 0.2s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  width: 20px;
}
.account-btn__spinner-container--visible.account-btn__spinner-container--small {
  width: 30px;
}
.account-btn__spinner {
  height: 24px;
  margin-top: -12px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: scale(0);
  transition: width 0.2s, opacity 0.2s, transform 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  width: 24px;
}
.account-btn__spinner--visible {
  opacity: 1;
  transform: scale(1);
  transition: width 0.2s 0.2s, opacity 0.2s 0.2s, transform 0.2s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.2s;
}
.account-btn__spinner--small {
  height: 20px;
  width: 20px;
}
.account-btn__spinner--left {
  left: 10px;
}
.account-btn__spinner--right {
  right: 10px;
}
.account-btn__spinner--center {
  left: 50%;
  margin-left: -10px;
}
.facebook-button {
  background-color: #3a5798;
  color: #ffffff;
}
.facebook-button:hover {
  background-color: rgb(57.5774285714, 86.3661428571, 150.8925714286);
}
.facebook-button:focus {
  color: #ffffff;
  outline-color: #ffffff;
}
.facebook-button:disabled {
  color: #ffffff;
  background-color: #cccccc;
}
.facebook-button .facebook-icon {
  margin-right: 10px;
  height: 20px;
}
.facebook-button__button-content {
  display: flex;
  align-items: center;
}
.facebook-button .text {
  padding-right: 10px;
}
.switch-input {
  padding-bottom: 3px;
  display: inline-block;
  user-select: none;
}
.switch-input__label {
  display: inline-block;
  color: #666666;
  font-size: 16px;
  position: relative;
  top: 5px;
  text-align: right;
}
.switch-input__label--disabled {
  color: #808080;
}
.switch-input__label--right {
  padding-left: 8px;
}
.switch-input__label--left {
  padding-right: 8px;
}
.switch-input__slider {
  transition: all 0.2s;
  display: inline-block;
  vertical-align: middle;
  background: #808080;
  position: relative;
  top: 3px;
  border-radius: 100px;
  width: 60px;
  height: 30px;
  cursor: pointer;
}
.switch-input__slider--checked {
  background: #0099f7;
}
.switch-input__slider--disabled {
  background: #cccccc;
}
.switch-input__slider--disabled .switch-component__switch {
  background: #f0f0f0;
}
@media (min-width: 30em) {
  .switch-input__slider {
    width: 40px;
    height: 20px;
  }
}
.switch-input__switch {
  transition: all 0.2s;
  position: absolute;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  background: #ffffff;
  margin-top: 5px;
  margin-left: 5px;
}
.switch-input__switch--checked {
  margin-left: 35px;
}
@media (min-width: 30em) {
  .switch-input__switch {
    width: 14px;
    height: 14px;
    margin-top: 3px;
    margin-left: 3px;
  }
  .switch-input__switch--checked {
    margin-left: 23px;
  }
}
.switch-input__checkbox:focus + .switch-input__slider {
  outline-width: thin;
  outline-style: dotted;
  outline-color: inherit;
}
.switch-input__label-padding {
  height: 1px;
  overflow: hidden;
  font-size: 16px;
  padding-right: 8px;
  display: block;
}
.switch-input__label-padding-label {
  user-select: none;
  display: block;
}
.switch-input__label-wrapper {
  display: inline-block;
  vertical-align: middle;
}
.switch-input__label-wrapper--left {
  text-align: right;
}
.switch-input__label-wrapper--right {
  text-align: left;
}
.accordion-item {
  overflow: hidden;
}
.accordion-item--closed {
  display: none;
}
.accordion-item--open {
  overflow: initial;
}
.accordion-item-closing, .accordion-item-opening {
  transition-duration: 0.4s;
  transition-property: height, padding-top, padding-bottom, border-top-width, border-bottom-width, margin-top, margin-bottom;
}
.accordion-item-closing {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.accordion-item-opening {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.rating {
  margin-left: 15px;
}
.rating .rating-button {
  position: relative;
  text-align: center;
}
.rating .cta-toggle-btn.rated .cta-toggle-btn__icon {
  color: #ffffff;
  stroke: #ffffff;
}
.rating .cta-toggle-btn .svg-icon {
  background-image: var(--assets-item-details-rate-unrated);
}
.rating .cta-toggle-btn.active .svg-icon {
  background-image: var(--assets-item-details-rate-rated);
}
.rating--rate_or_rating .rating-button {
  top: 2px;
  text-align: center;
}
.rating--rate_or_rating .cta-toggle-btn {
  border: 1px solid #cccccc;
  border-radius: 50px;
  padding: 5px;
}
.rating--rate_or_rating .cta-toggle-btn__icon {
  stroke: #ffffff;
}
.rating--rate_or_rating .cta-toggle-btn__label {
  display: none;
}
.rating-list-item {
  background-color: transparent;
  min-width: 36px;
  min-height: 36px;
  padding: 0 10px;
  display: block;
}
.rating-list-item:focus {
  animation-name: expandClick;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  visibility: visible !important;
}
.rating-list-item__icon {
  color: var(--color-global-rating-unrated-icon);
  height: 28px;
  width: 28px;
  transition: color 0.1s;
}
.rating-list-item__icon--highlight {
  color: var(--color-global-rating-user-rated-icon);
}

@keyframes expandClick {
  0% {
    transform: scale(1.4);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.rating .rating-list {
  display: flex;
  background-color: #4d4d4d;
  border-radius: 28px;
  position: absolute;
  left: -50%;
  top: -70px;
  margin-left: -100px;
  padding: 10px;
  z-index: 51;
  animation-name: expand-open;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  visibility: visible !important;
}
.rating .rating-list:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -9px;
  left: 77%;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 9px solid #4d4d4d;
}
.rating .rating-list--centered {
  margin-left: -58px;
}
.rating .rating-list--centered:before {
  left: 36%;
}
.rating--rate_or_rating .rating-list {
  top: 50px;
}
.rating--rate_or_rating .rating-list:before {
  top: -16px;
  border-top: 7px solid transparent;
  border-bottom: 9px solid #4d4d4d;
}
@keyframes expand-open {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@media (min-width: 30em) {
  .rating .rating-list {
    margin-left: -88px;
  }
  .rating .rating-list:before {
    left: 47%;
  }
}
.rating .star-rating {
  display: flex;
  align-items: center;
}
.rating .star-rating__stars {
  display: inline-flex;
  direction: ltr;
  width: 105px;
  height: 24px;
}
.rating .star-rating__sr {
  display: inline-block;
}
.rating .star-rating__star {
  display: inline-block;
  color: #cccccc;
  padding: 4px 0px;
  width: 20px;
}
.rating .star-rating__star--avg {
  color: #0099f7;
}
.rating .star-rating__star--usr {
  color: #ffc800;
}
.rating .star-rating__label {
  display: inline-block;
  color: #cccccc;
  font-size: 11px;
  margin-left: 3px;
}
.rating--rate_or_rating .star-rating {
  width: 119px;
  border: 1px solid transparent;
  border-radius: 50px;
  padding: 8px;
  cursor: pointer;
}
.rating--rate_or_rating .star-rating:hover {
  border-color: #cccccc;
}
.rating--rate_or_rating .star-rating__label {
  display: none;
}

@media (min-width: 45em) {
  .star-rating__star--avg {
    color: #0099f7;
  }
  .star-rating__star--usr {
    color: #ffc800;
  }
}
@media (min-width: 90em) {
  .star-rating__stars {
    width: 120px;
  }
  .star-rating__star {
    padding: 3px 0px;
    width: 25px;
  }
  .star-rating__label {
    font-size: 15px;
    margin-left: 6px;
  }
}
.overlay__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 1;
  cursor: pointer;
  transform: translateZ(0px);
}
.overlay__backdrop--hidden {
  transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
  pointer-events: none;
}
.rating {
  position: relative;
}
.rating--rate_or_rating {
  margin-left: 20px;
}
.rating .overlay__backdrop {
  background-color: rgba(0, 0, 0, 0);
}
.dialog {
  text-align: left;
  font-size: 14px;
  min-width: 300px;
  background-color: var(--color-global-modal-background);
  padding: 30px;
  position: relative;
  max-width: 100%;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  font-family: var(--font-family-title);
  color: var(--color-global-modal-text-description);
}
@media (min-width: 45em) {
  .dialog {
    min-width: 400px;
    font-size: 16px;
  }
}
.dialog__close-btn {
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background: var(--assets-global-close);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 30px;
}
.dialog form {
  margin: 0;
}

.dialog.dialog--standard {
  background: #1a1a1a;
  padding: 50px;
  max-width: 750px;
}
.dialog-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media (min-width: 45em) {
  .dialog-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.confirmation-dialog {
  width: 300px;
}
.confirmation-dialog > :not(:last-child) {
  margin-bottom: 30px;
}
.confirmation-dialog__content {
  word-wrap: break-word;
}
.confirmation-dialog__buttons {
  display: flex;
  gap: 24px;
  overflow: hidden;
}
.confirmation-dialog__primary-btn {
  max-width: 100%;
}
@media (min-width: 45em) {
  .confirmation-dialog {
    width: 400px;
  }
  .confirmation-dialog > :not(:last-child) {
    margin-bottom: 20px;
  }
}
.feature-flag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}
.pin-group__error {
  font-size: 12px;
}
.pin-group__view-pin {
  font-size: 14px;
}
.pin-group__label {
  color: #0099f7;
}
.pin-group__label--error {
  color: #ec0000;
}
.pin-group {
  display: flex;
  flex-direction: column;
}
.pin-group__error {
  font-size: 12px;
  max-width: 340px;
  flex-wrap: wrap;
  display: inline-table;
}
.pin-group__view-pin {
  font-size: 14px;
}
.pin-group__label {
  color: #0099f7;
}
.pin-group__label--error {
  color: #ec0000;
}
.cta-link {
  display: flex;
  align-items: center;
  -webkit-appearance: initial !important;
}
.cta-link--primary:hover:not(:disabled), .cta-link--primary:focus:not(:disabled) {
  color: var(--color-global-button-primary-text-hover);
}
.cta-link--primary-blue:hover:not(:disabled), .cta-link--primary-blue:focus:not(:disabled) {
  color: rgb(8.1705361, 116.9931351016, 183.8514639);
}
.cta-link--primary-red:hover:not(:disabled), .cta-link--primary-red:focus:not(:disabled) {
  color: #ffffff;
}
.cta-link--secondary:hover:not(:disabled), .cta-link--secondary:focus:not(:disabled) {
  color: #0099f7;
}
.cta-link--secondary-blue:hover:not(:disabled), .cta-link--secondary-blue:focus:not(:disabled) {
  color: #ffffff;
}
.cta-link--secondary-red:hover:not(:disabled), .cta-link--secondary-red:focus:not(:disabled) {
  color: #ffffff;
}
.cta-link--naked:hover:not(:disabled), .cta-link--naked:focus:not(:disabled) {
  color: #0099f7;
}
.cta-link--naked-light:hover:not(:disabled), .cta-link--naked-light:focus:not(:disabled) {
  color: rgb(8.1705361, 116.9931351016, 183.8514639);
}
.cta-link--naked-blue:hover:not(:disabled), .cta-link--naked-blue:focus:not(:disabled) {
  color: rgba(255, 255, 255, 0.8);
}
.cta-link--naked-red:hover:not(:disabled), .cta-link--naked-red:focus:not(:disabled) {
  color: rgba(255, 255, 255, 0.8);
}
.cta-link--disabled {
  opacity: 50%;
}
.nav-entry-link {
  color: var(--color-nav-menu-item-primary-item-text-rw-default);
  margin: 0;
  padding: 0;
  font: var(--typography-nav-menu-item-rw-primary-item);
  text-align: left;
}
.nav-entry-link:hover {
  color: var(--color-nav-menu-item-primary-item-text-rw-hover);
}
.nav-entry-link--primary {
  font: var(--typography-nav-menu-item-rw-primary-item);
}
.nav-entry-link--group {
  color: var(--color-nav-menu-item-submenu-heading-text-rw-default);
  font: var(--typography-nav-menu-item-rw-submenu-heading);
}
.nav-entry-link--group:hover {
  color: var(--color-nav-menu-item-submenu-heading-text-rw-hover);
}
.nav-entry-link--item {
  color: var(--color-nav-menu-item-submenu-item-text-rw-default);
  font: var(--typography-nav-menu-item-rw-submenu-item);
}
.nav-entry-link--item > span {
  display: inline-block;
  border-bottom: 1px solid transparent;
}
.nav-entry-link--item > span:hover {
  border-bottom: 1px solid var(--color-nav-menu-item-submenu-item-border-rw-hover);
}
.nav-entry-link--item:hover {
  color: var(--color-nav-menu-item-submenu-item-text-rw-hover);
}
.nav-entry-link--disabled {
  cursor: default;
  pointer-events: none;
  color: var(--color-nav-menu-item-primary-item-text-rw-disabled);
}
.nav-entry-link--disabled.nav-entry-link--item {
  color: var(--color-nav-menu-item-submenu-item-text-rw-disabled);
}
.nav-entry-link--disabled.nav-entry-link--group {
  color: var(--color-nav-menu-item-submenu-heading-text-rw-disabled);
}
.entry-title {
  font: var(--typography-heading-4-rw-xs);
  color: var(--color-row-header-text-title-default);
  position: relative;
  white-space: pre-wrap;
}
.entry-title__link {
  color: var(--color-row-header-text-title-default);
}
.entry-title__link:hover {
  color: var(--color-row-header-text-title-hover);
}
.entry-title__tagline {
  font: var(--typography-body-rw-xs-regular);
  color: var(--color-row-header-text-tagline);
  text-align: left;
  white-space: pre;
  display: block;
  margin-top: -5px;
  margin-bottom: 7px;
  position: relative;
}

@media (min-width: 45em) {
  .entry-title {
    font: var(--typography-heading-4-rw-s);
  }
  .entry-title__tagline {
    font: var(--typography-body-rw-s-regular);
    margin-top: -7px;
    margin-bottom: 9px;
  }
}
@media (min-width: 75em) {
  .entry-title {
    font: var(--typography-heading-4-rw-l);
  }
  .entry-title__tagline {
    margin-top: -9px;
    margin-bottom: 12px;
  }
}
/** _decimal.scss | MIT License | gist.github.com/terkel/4373420
 *
 * Round a number to specified digits.
 *
 * @param  {Number} $number A number to round
 * @param  {Number} [$digits:0] Digits to output
 * @param  {String} [$mode:round] (round|ceil|floor) How to round a number
 * @return {Number} A rounded number
 * @example
 *     decimal-round(0.333)    => 0
 *     decimal-round(0.333, 1) => 0.3
 *     decimal-round(0.333, 2) => 0.33
 *     decimal-round(0.666)    => 1
 *     decimal-round(0.666, 1) => 0.7
 *     decimal-round(0.666, 2) => 0.67
 */
/**
 * Strip units from value e.g. remove px from 16px remove vm from 16vm;
 * @param {integer} $val - The value to clean;
 */
/**
 * View width calc by pixel vs width
 * @param {integer} $val - The pixel value;
 * @param {string} $breakpoint - The breakpoint to calc against;
 */
/**
 * Calculate line-height based on font-size
 * @param {css variable} $fontSize - font size in vw;
 */
/**
 * View width mixin to set vw with pixel fallback based off breakpoint
 * @param {string} $breakpoint - The font-size at given breakpoint;
 * @param {string} $prop - The css property;
 * @param {integer} $val - The pixel value;
 */
.gradient-title {
  display: block;
  width: 100%;
  position: relative;
  height: 30%;
  bottom: 0;
}
.gradient-title__title {
  color: #ffffff;
  position: absolute;
  padding: 8px;
  font-size: 12px;
  width: 100%;
  bottom: 0;
  font-weight: bold;
}
@media (min-width: 30em) {
  .gradient-title__title {
    font-size: 14px;
    padding: 8px 12px;
  }
}
@media (min-width: 60em) {
  .gradient-title__title {
    font-size: 16px;
    font-size: 1.67vw;
    padding: 12px 16px;
    padding: 1.25vw 1.67vw;
  }
}
@media (min-width: 75em) {
  .gradient-title__title {
    font-size: 16px;
    font-size: 1.33vw;
    padding: 12px 16px;
    padding: 1vw 1.33vw;
  }
}
.gradient-title__gradient {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1), 66%, rgba(0, 0, 0, 0.5));
}
.packshot-title {
  display: block;
  text-align: left;
  pointer-events: none;
  z-index: 5;
  font: var(--typography-caption-rw-xs-bold);
  color: var(--color-row-packshot-text-title);
}
@media (min-width: 45em) {
  .packshot-title {
    font: var(--typography-caption-rw-s-bold);
  }
}
.packshot-title--none {
  display: none;
}
.packshot-title--below {
  position: absolute;
  bottom: -26px;
  max-width: 100%;
}
.packshot-title--overlay {
  position: absolute;
  padding: 40px 8px 9px;
  left: 4px;
  right: 4px;
  bottom: 0;
}

@media (min-width: 20em) {
  .packshot-title--overlay {
    left: 4px;
    right: 4px;
  }
}
@media (min-width: 45em) {
  .packshot-title--overlay {
    left: 4px;
    right: 4px;
  }
}
@media (min-width: 60em) {
  .packshot-title--overlay {
    left: 4px;
    right: 4px;
  }
}
@media (min-width: 75em) {
  .packshot-title--overlay {
    left: 8px;
    right: 8px;
  }
}
@media (min-width: 90em) {
  .packshot-title--overlay {
    left: 8px;
    right: 8px;
  }
}
@media (min-width: 120.0625em) {
  .packshot-title--overlay {
    left: 8px;
    right: 8px;
  }
}
@keyframes overlay-animate-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.2;
  }
}
@keyframes dark-overlay-animate-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.4;
  }
}
.packshot-overlay {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: var(--color-row-packshot-overlay-background-opacity-rw);
  z-index: 1;
  cursor: pointer;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-name: overlay-animate-in;
  animation-timing-function: ease-in-out;
}
.packshot-overlay--dark {
  animation-name: dark-overlay-animate-in;
}
/*rtl:begin:ignore*/
.progress-bar {
  direction: ltr;
  background-color: var(--color-global-progress-background);
}
.progress-bar__bar {
  background-color: var(--color-global-progress-bar);
  height: 3px;
}

/*rtl:end:ignore*/
@keyframes hover-animate-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes hover-animate-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.packshot-hover {
  display: none;
  position: absolute;
  min-width: 234px;
  min-height: 40%;
  width: 100%;
  left: 50%;
  text-align: left;
  transform: translateX(-50%);
  color: white;
  opacity: 0;
  padding: 14px 12px 13px;
  white-space: normal;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.7), 0 -2px 4px 0 rgba(0, 0, 0, 0.5);
  background-color: #262626;
  cursor: default;
}
.packshot-hover--show {
  animation: hover-animate-in 0.3s ease-in-out 0s 1 normal forwards;
}
.packshot-hover--hide {
  animation: hover-animate-out 0.3s ease-out 0s 1 normal forwards;
}
.packshot-hover__title, .packshot-hover__subtitle {
  font-size: 14px;
  font-weight: bold;
  font-family: var(--font-family-title);
  line-height: 18px;
  letter-spacing: normal;
  margin: 0 0 8px;
  color: white;
  word-wrap: break-word;
}
.packshot-hover__title:hover, .packshot-hover__subtitle:hover {
  color: #0099f7;
}
.packshot-hover__subtitle {
  display: block;
  font-weight: normal;
  color: #cccccc;
}
.packshot-hover__subtitle:hover {
  color: #cccccc;
}
.packshot-hover__text {
  font-size: 12px;
  font-family: var(--font-family-body);
  letter-spacing: normal;
  line-height: 1.67;
  color: #cccccc;
  overflow: hidden;
  height: 61px;
}
.packshot-hover__progress {
  margin: 0 0 8px;
}
.packshot-hover .rating--wrapper {
  display: inline-block;
  margin: 0 -2px 8px;
}

.nav-content__packshot .packshot-hover,
.vertical-nav__packshot .packshot-hover,
.packshot--hero7x1 .packshot-hover {
  display: none;
}

@media (min-width: 75em) {
  .packshot-hover {
    display: block;
    top: 60%;
    z-index: 10;
    cursor: pointer;
  }
}
.pg-account .packshot-hover {
  min-width: calc(100% + 2 * 35px);
  width: 100%;
}

.app--account .page {
  padding-bottom: 50px !important;
}

@media (min-width: 90em) {
  .app--account .page {
    padding-bottom: 80px !important;
  }
}
.packshot {
  display: inline-block;
  position: relative;
  vertical-align: top;
  color: var(--color-row-packshot-text-title);
}
.packshot:hover .packshot-title--over, .packshot:focus .packshot-title--over {
  color: var(--color-row-packshot-text-title);
}
.packshot {
  transition: transform 0.2s ease-out, filter 0.2s ease-out, opacity 0.2s ease-out;
}
.packshot.offline {
  transform: scale(0.94);
}
.packshot.offline .packshot__image {
  filter: blur(1px) grayscale(100%);
}
.packshot--selected .packshot__image:after {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 2px solid #0099f7;
}
.packshot__progress {
  bottom: 2px;
  left: 2px;
  position: absolute;
  right: 2px;
  z-index: 2;
}
.packshot-fb-title {
  padding: 7px;
}
.packshot__badges-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1;
  width: 80%;
  z-index: 1;
  position: absolute;
  top: 4px;
  left: 4px;
}
.packshot__state-badge {
  margin-bottom: 4px;
}
.packshot__image-shadow {
  background: var(--gradient-overlay-packshot);
  bottom: -1px;
  content: "";
  left: 0;
  position: absolute;
  right: -1px;
  top: 50%;
  pointer-events: none;
}
.packshot__image--hover-enabled {
  pointer-events: auto;
}
.packshot__image--below {
  margin-bottom: 24px;
}
.packshot__image .img-r {
  background-color: #262626;
}
.packshot__image > .packshot-fb-title,
.packshot__image > img[src="//:0"] {
  background-color: #262626;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-align: center;
  vertical-align: middle;
}
.packshot__image > .packshot-fb-title:before,
.packshot__image > img[src="//:0"]:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.packshot__image--poster {
  padding-bottom: 150%;
  position: relative;
}
.packshot__image--poster > :first-child {
  left: 0;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.packshot__image--tile, .packshot__image--wallpaper {
  padding-bottom: 56.25%;
  position: relative;
}
.packshot__image--tile > :first-child, .packshot__image--wallpaper > :first-child {
  left: 0;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.packshot__image--square {
  padding-bottom: 100%;
  position: relative;
}
.packshot__image--square > :first-child {
  left: 0;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.packshot__image--block, .packshot__image--hero4x3 {
  padding-bottom: 75%;
  position: relative;
}
.packshot__image--block > :first-child, .packshot__image--hero4x3 > :first-child {
  left: 0;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.packshot__image--hero3x1 {
  padding-bottom: 33.3333333333%;
  position: relative;
}
.packshot__image--hero3x1 > :first-child {
  left: 0;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.packshot__image--hero7x1 {
  padding-bottom: 14.2857142857%;
  position: relative;
}
.packshot__image--hero7x1 > :first-child {
  left: 0;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.packshot__image--tall {
  padding-bottom: 200%;
  position: relative;
}
.packshot__image--tall > :first-child {
  left: 0;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.packshot__image--custom {
  display: inline-block;
}
.packshot__image--custom .img-r {
  height: auto;
}
.packshot__image--rounded .rounded, .packshot__image--rounded .img-r {
  border-radius: 8px;
}
.packshot__play-icon {
  opacity: 0;
  animation: icon-animate-in 0.3s ease-in 0.3s;
  animation-fill-mode: forwards;
}
.packshot__play-icon--top, .packshot__play-icon--center {
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.packshot__play-icon--shown {
  display: block;
}
.packshot__lock-icon {
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  right: 10px;
  bottom: 10px;
}
.packshot__lock-icon--left {
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  left: 10px;
  bottom: 15px;
}

@media (min-width: 75em) {
  .packshot__play-icon--center {
    top: 30%;
  }
}
@media (min-width: 90em) {
  .packshot__state-badge {
    margin-bottom: 8px;
    z-index: 1;
  }
}
@keyframes icon-animate-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/** _decimal.scss | MIT License | gist.github.com/terkel/4373420
 *
 * Round a number to specified digits.
 *
 * @param  {Number} $number A number to round
 * @param  {Number} [$digits:0] Digits to output
 * @param  {String} [$mode:round] (round|ceil|floor) How to round a number
 * @return {Number} A rounded number
 * @example
 *     decimal-round(0.333)    => 0
 *     decimal-round(0.333, 1) => 0.3
 *     decimal-round(0.333, 2) => 0.33
 *     decimal-round(0.666)    => 1
 *     decimal-round(0.666, 1) => 0.7
 *     decimal-round(0.666, 2) => 0.67
 */
/**
 * Strip units from value e.g. remove px from 16px remove vm from 16vm;
 * @param {integer} $val - The value to clean;
 */
/**
 * View width calc by pixel vs width
 * @param {integer} $val - The pixel value;
 * @param {string} $breakpoint - The breakpoint to calc against;
 */
/**
 * Calculate line-height based on font-size
 * @param {css variable} $fontSize - font size in vw;
 */
/**
 * View width mixin to set vw with pixel fallback based off breakpoint
 * @param {string} $breakpoint - The font-size at given breakpoint;
 * @param {string} $prop - The css property;
 * @param {integer} $val - The pixel value;
 */
@keyframes arrow__animate-right {
  0% {
    opacity: 0;
    transform: translateX(0);
  }
  30% {
    opacity: 1;
  }
  70% {
    transform: translateX(0%);
    opacity: 1;
  }
  100% {
    transform: translateX(110%);
    opacity: 0;
  }
}
@keyframes arrow__animate-left {
  0% {
    opacity: 0;
    transform: translateX(0);
  }
  30% {
    opacity: 1;
  }
  70% {
    transform: translateX(0%);
    opacity: 1;
  }
  100% {
    transform: translateX(-110%);
    opacity: 0;
  }
}
.arrow {
  display: block;
  font-size: 32px;
  width: 30px;
  width: 9.38vw;
  color: #ffffff;
  opacity: 0;
  margin: 0;
  padding: 0;
  border: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  animation-duration: 3s;
  animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  background: transparent;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
}
@media (min-width: 45em) {
  .arrow {
    width: 15px;
    width: 4.69vw;
  }
}
.arrow--flex {
  display: flex;
}
.arrow--left {
  left: 0;
  transform: translateX(-50%);
  background-image: var(--assets-arrows-arrow-left);
  background-position: center;
  background-repeat: no-repeat;
}
.arrow--right {
  right: 0;
  transform: translateX(50%);
  background-image: var(--assets-arrows-arrow-right);
  background-position: center;
  background-repeat: no-repeat;
}
.arrow--animate-left {
  animation-name: arrow__animate-left;
}
.arrow--animate-right {
  animation-name: arrow__animate-right;
}
.arrow--visible {
  transform: translateX(0);
  opacity: 1;
}
.arrow__icon {
  display: inline-block;
  stroke: #ffffff;
  stroke-width: 3px;
  position: relative;
  top: 2vw;
  width: 10px;
  width: 3.13vw;
}
@media (min-width: 45em) {
  .arrow__icon {
    width: 10px;
    width: 1.39vw;
  }
}
.arrow__icon path {
  fill: transparent;
  height: 100%;
  width: 100%;
}
.scrollable {
  position: relative;
  overflow: hidden;
}
.scrollable--key-mode > .arrow:not(:disabled) {
  transform: translateX(0);
  opacity: 1;
}
.scrollable__edge-shadow {
  position: absolute;
  top: 0;
  height: 100%;
  width: 40px;
  z-index: 2;
}
.scrollable__edge-shadow--left {
  left: 0;
  background: linear-gradient(270deg, transparent 0%, #000000 100%);
}
.scrollable__edge-shadow--right {
  right: 0;
  background: linear-gradient(90deg, transparent 0%, #000000 100%);
}
.scrollable .arrow {
  z-index: 3;
}
.scrollable .arrow__icon {
  height: 35px;
  width: 35px;
}

.scrollable__container {
  white-space: nowrap;
  transform: translateX(0);
  transition: transform 350ms cubic-bezier(0.6, 0.1, 0.4, 0.9);
}
@media (min-width: 45em) {
  .scrollable__container {
    transition: transform 450ms cubic-bezier(0.6, 0.1, 0.4, 0.9);
  }
}
.scrollable__container--no-transition {
  transition: transform 0s ease-in-out;
}
/**
 * Mixin 'use-grid-val' used for assign the global gutter or margin values to a specified css property for each breakpoint;
 * @param {string} $value-type - The global grid value type - gutters or margins
 * @param {string} $properties - The css property;
 */
.packshot-list {
  position: relative;
}
@media (max-width: 19.99em) {
  .packshot-list.row .packshot-list__packshot {
    margin-bottom: 8px;
  }
}
.packshot-list.row-peek {
  line-height: 0.9;
}
.packshot-list.row-peek .packshot-list__packshot {
  float: none !important;
}
.packshot-list--double-row .packshot-list__packshot {
  vertical-align: top;
}
.packshot-list--double-row .packshot-list__packshot .packshot-list__packshot {
  display: block;
  position: relative;
}
@media (min-width: 20em) {
  .packshot-list--double-row .packshot-list__packshot .packshot-list__packshot + .packshot-list__packshot {
    margin-top: 8px;
  }
}
@media (min-width: 45em) {
  .packshot-list--double-row .packshot-list__packshot .packshot-list__packshot + .packshot-list__packshot {
    margin-top: 8px;
  }
}
@media (min-width: 60em) {
  .packshot-list--double-row .packshot-list__packshot .packshot-list__packshot + .packshot-list__packshot {
    margin-top: 8px;
  }
}
@media (min-width: 75em) {
  .packshot-list--double-row .packshot-list__packshot .packshot-list__packshot + .packshot-list__packshot {
    margin-top: 16px;
  }
}
@media (min-width: 90em) {
  .packshot-list--double-row .packshot-list__packshot .packshot-list__packshot + .packshot-list__packshot {
    margin-top: 16px;
  }
}
@media (min-width: 120.0625em) {
  .packshot-list--double-row .packshot-list__packshot .packshot-list__packshot + .packshot-list__packshot {
    margin-top: 16px;
  }
}
.packshot-list--double-row .packshot-list__packshot .packshot-title {
  left: 0;
  right: 0;
}
.packshot-list:hover {
  z-index: 6;
}
.packshot-list__packshot {
  display: inline-block;
}
.packshot-list__packshot .packshot {
  width: 100%;
}

@media (min-width: 20em) {
  .packshot-list.row .packshot {
    margin-bottom: 8px;
  }
}
@media (min-width: 45em) {
  .packshot-list.row .packshot {
    margin-bottom: 8px;
  }
}
@media (min-width: 60em) {
  .packshot-list.row .packshot {
    margin-bottom: 8px;
  }
}
@media (min-width: 75em) {
  .packshot-list.row .packshot {
    margin-bottom: 16px;
  }
}
@media (min-width: 90em) {
  .packshot-list.row .packshot {
    margin-bottom: 16px;
  }
}
@media (min-width: 120.0625em) {
  .packshot-list.row .packshot {
    margin-bottom: 16px;
  }
}
@media (min-width: 20em) {
  .packshot-list--double-row .packshot-list__packshot > .packshot + .packshot {
    margin-top: 8px;
  }
}
@media (min-width: 45em) {
  .packshot-list--double-row .packshot-list__packshot > .packshot + .packshot {
    margin-top: 8px;
  }
}
@media (min-width: 60em) {
  .packshot-list--double-row .packshot-list__packshot > .packshot + .packshot {
    margin-top: 8px;
  }
}
@media (min-width: 75em) {
  .packshot-list--double-row .packshot-list__packshot > .packshot + .packshot {
    margin-top: 16px;
  }
}
@media (min-width: 90em) {
  .packshot-list--double-row .packshot-list__packshot > .packshot + .packshot {
    margin-top: 16px;
  }
}
@media (min-width: 120.0625em) {
  .packshot-list--double-row .packshot-list__packshot > .packshot + .packshot {
    margin-top: 16px;
  }
}
/* Make clicks pass-through */
#apploader {
  pointer-events: none;
}

#apploader .bar {
  background: #fffbc5;
  position: fixed;
  z-index: 1111;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

/* Fancy blur effect */
#apploader .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #fffbc5, 0 0 5px #fffbc5;
  opacity: 1;
  transform: rotate(3deg) translate(0px, -4px);
}
.swipe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.swipe__container {
  height: 100%;
}
.expandable-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-items: flex-start;
  flex-wrap: wrap;
  flex: 1 1 auto;
  height: 100%;
  width: 100%;
  cursor: default;
}
.expandable-container--clipped {
  flex-wrap: nowrap;
}
.expandable-container--expandable {
  cursor: pointer;
}
.expandable-container__ellipses {
  background-color: transparent;
  padding: 0;
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
}
.collapsible-container {
  position: relative;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.collapsible-container--collapsed {
  cursor: pointer;
}
.collapsible-container--collapsed:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 66%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000000);
}
.scroll-loader__spinner-container {
  text-align: center;
  box-sizing: border-box;
  opacity: 1;
  height: 180px;
  padding: 50px 0;
}
.scroll-loader__spinner {
  display: inline-block;
  width: 80px;
}
.drop-menu {
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 1;
}
.drop-menu:after {
  content: "";
  position: absolute;
  left: 0;
  transform: translateX(-50%);
  bottom: 100%;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-bottom-color: var(--color-nav-top-dropdown-background-rw);
}
.drop-menu__content {
  padding: 20px 30px 30px;
  border-radius: 4px;
  background-color: var(--color-nav-top-dropdown-background-rw);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  max-height: inherit;
}
.drop-menu__container {
  position: absolute;
  padding-top: 22px;
  padding-bottom: 5px;
  margin-top: -22px;
}
.drop-select {
  font-size: 16px;
  color: #ffffff;
  display: inline-block;
  user-select: none;
  cursor: pointer;
}
@media (min-width: 45em) {
  .drop-select {
    width: auto !important;
    margin-left: 0;
  }
  .drop-select:last-of-type {
    margin-right: -20px;
  }
}
.drop-select__mobile-drop-down {
  appearance: none;
  text-indent: 1px;
  background: transparent url(data:image/svg+xml;base64,ZXhwb3J0IGRlZmF1bHQgX193ZWJwYWNrX3B1YmxpY19wYXRoX18gKyAiZm9udHMvZHJvcC1zZWxlY3QtYXJyb3cuc3ZnIjs=) center;
  background-position: right;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  padding: 0 20px 0 0;
  border: none;
  color: #f0f0f0;
  width: 100%;
}
.drop-select__mobile-drop-down::-ms-expand {
  display: none;
}
.drop-select__mobile-drop-down option {
  padding: 0;
}
.drop-select:after {
  content: " ";
  display: table;
  clear: both;
}
.drop-select__current-option {
  padding: 9px 40px 11px 20px;
  display: inline-block;
  font-family: var(--font-family-title);
  font-weight: bold;
  transition: color 0.3s;
}
.drop-select__current-option:hover {
  color: #0099f7;
}
.drop-select__arrow-icon {
  display: inline-block;
  margin: 0;
  position: absolute;
  right: 20px;
  top: 15px;
  background-image: var(--assets-nav-dropdown);
}
.drop-select__options-drop-down {
  position: absolute;
  top: -9999px;
  left: -9999px;
  z-index: 6;
  background: #262626;
  color: #808080;
  font-weight: normal;
}
.drop-select__options-drop-down label {
  display: block;
}
.drop-select__options {
  font-size: 16px;
  position: relative;
}
.drop-select__options .drop-select__current-option--active {
  background: #262626;
  color: #ffffff;
}
.drop-select__options .drop-select__current-option--active .drop-select__arrow-icon {
  transform: rotate(180deg);
}
.drop-select__options .drop-select__options-drop-down--active {
  top: auto;
  left: auto;
  right: 0;
}
.drop-select__option {
  float: left;
  white-space: nowrap;
  cursor: pointer;
}
.drop-select__option label {
  padding: 12px 20px;
  text-align: left;
}
.drop-select__option:hover {
  color: #0099f7;
}
.drop-select__selected-option--selected {
  color: #ffffff;
}
.drop-select__placeholder-option {
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  height: 0;
}
.drop-select__drop-down-width-finder {
  position: absolute;
  visibility: hidden;
  display: inline-block;
  left: -100px;
}
.service-or-system-error-modal {
  position: relative;
  top: 0;
  left: 0;
  width: 375px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  background-color: var(--color-global-modal-background);
  color: var(--color-global-modal-text-description);
  padding: 32px;
}
.service-or-system-error-modal__close-btn {
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background: var(--assets-global-close);
}
.service-or-system-error-modal__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 271px;
  height: 100%;
  gap: 24px;
}
.service-or-system-error-modal__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-or-system-error-modal__title {
  font: var(--typography-heading-4-rw-xs);
  color: var(--color-global-modal-text-title);
}
.service-or-system-error-modal__description {
  font: var(--typography-body-rw-xs-regular);
  color: var(--color-global-modal-text-description);
  word-wrap: normal;
}
.service-or-system-error-modal__buttons {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
}

@media (min-width: 45em) {
  .service-or-system-error-modal {
    width: 448px;
  }
  .service-or-system-error-modal__body {
    width: 344px;
    gap: 32px;
  }
  .service-or-system-error-modal__title {
    font: var(--typography-heading-4-rw-s);
  }
  .service-or-system-error-modal__content {
    gap: 24px;
  }
  .service-or-system-error-modal__description {
    font: var(--typography-body-rw-s-regular);
  }
}
@media (min-width: 75em) {
  .service-or-system-error-modal__title {
    font: var(--typography-heading-4-rw-l);
  }
}
.acc-pg-title {
  font-family: var(--font-family-title);
}
.acc-pg-title__heading {
  margin-top: 10px;
  color: var(--color-hero-ah1-ah3-text-title);
  font: var(--typography-heading-1-rw-xs);
}
.acc-pg-title__link {
  direction: ltr;
  display: inline-block;
  font: var(--typography-body-rw-xs-bold);
  color: var(--color-hero-ah1-ah3-text-label-default);
}
.acc-pg-title__link:hover, .acc-pg-title__link:focus {
  color: var(--color-hero-ah1-ah3-text-label-hover);
}
.acc-pg-title__link:before {
  content: "";
  background-image: var(--assets-arrows-arrow-left);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  vertical-align: top;
}
@media (min-width: 45em) {
  .acc-pg-title__heading {
    font: var(--typography-heading-1-rw-s);
  }
  .acc-pg-title__link {
    font: var(--typography-body-rw-s-bold);
    margin-top: 60px;
  }
}
@media (min-width: 75em) {
  .acc-pg-title__heading {
    font: var(--typography-heading-1-rw-l);
  }
  .acc-pg-title__link {
    margin-top: 90px;
  }
}
.account-entry {
  font-family: var(--font-family-title);
}
.account-entry__header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.account-entry__header h2 {
  margin-bottom: 0;
}
@media (min-width: 45em) {
  .account-entry__header {
    margin-bottom: 24px;
  }
}
@media (min-width: 75em) {
  .account-entry__header {
    margin-bottom: 40px;
  }
}
.account-entry__title {
  font: var(--typography-heading-3-rw-xs);
  text-transform: uppercase;
  color: var(--color-row-header-text-title-default-inverse);
}
@media (min-width: 45em) {
  .account-entry__title {
    font: var(--typography-heading-3-rw-s);
  }
}
@media (min-width: 75em) {
  .account-entry__title {
    font: var(--typography-heading-3-rw-l);
  }
}
.account-entry__action-btn {
  flex: 0 0 auto;
}
.account-subscription-section__title {
  font: var(--typography-heading-4-rw-xs);
  color: var(--color-row-a1-a99-text-title);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* autoprefixer: ignore next */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 45em) {
  .account-subscription-section__title {
    font: var(--typography-heading-4-rw-s);
  }
}
@media (min-width: 75em) {
  .account-subscription-section__title {
    font: var(--typography-heading-4-rw-l);
  }
}
.radio-container {
  display: flex;
  align-items: center;
}
.radio-container__radio-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.radio-container__radio-label-text {
  color: var(--color-global-radio-button-text-default);
  margin-left: 8px;
  font: var(--typography-body-rw-xs-bold);
}
.radio-container__custom-radio {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: var(--border-radio-button-default);
  border-radius: 50%;
  vertical-align: middle;
  position: relative;
  background-color: var(--color-global-radio-button-icon-fill-default);
}
.radio-container__radio-input:checked + .radio-container__custom-radio {
  border: var(--border-radio-button-selected);
}
.radio-container__radio-input:checked + .radio-container__custom-radio::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-global-radio-button-background-selected);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}

@media (min-width: 45em) {
  .radio-container__radio-label-text {
    font: var(--typography-body-rw-s-bold);
  }
}

