.button {
  display: inline-block;
  box-sizing: border-box;
  min-height: 40px;
  padding: 12px 12px;
  text-align: center;
  font-family: inherit;
  background-color: #000;
  color: #fff;
  transition: color .4s ease 0s, fill .4s ease 0s, background-color .4s ease 0s;
  -webkit-font-smoothing: antialiased
}

.button:focus,
.button:hover,
.button:active {
  background-color: #e50914;
  color: #fff
}

.button--clickable {
  cursor: pointer
}

.button--numeral {
  min-width: 32px;
  min-height: auto;
  padding: 6px 0
}

.button--full-width {
  width: 100%;
  box-sizing: border-box
}

.button--tall {
  padding: 24px 12px
}

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

.button--inverted {
  background-color: #cf3e80;
  color: #fff;
  fill: #fff
}

.button--inverted:focus,
.button--inverted:hover,
.button--inverted:active {
  background-color: #242833;
  color: #fff;
  fill: #fff
}

.button--active {
  background-color: #cf3e80;
  color: #fff;
  fill: #fff;
  cursor: auto
}

.button--active.button--no-background {
  color: #e50914;
  fill: #e50914
}

.button--dark {
  color: #fff;
  fill: #fff;
  background-color: #000
}

.button--dark:focus,
.button--dark:hover,
.button--dark:active {
  color: #eee
}

.button--blue {
  background-color: #006cee;
  color: #fff;
  fill: #fff;
  padding: 10px 16px;
  letter-spacing: .35px
}

.button--blue:focus,
.button--blue:hover,
.button--blue:active {
  background-color: #005bc8;
  color: #fff;
  fill: #fff
}

.button--with-icon-svg,
.button--icon-svg {
  color: #fff;
  fill: #b2b7c4
}

.button--with-icon-svg:focus,
.button--with-icon-svg:hover,
.button--with-icon-svg:active,
.button--icon-svg:focus,
.button--icon-svg:hover,
.button--icon-svg:active {
  color: #fff;
  fill: #fff
}

.button--with-icon-svg {
  padding-left: 12px;
  padding-right: 12px
}

.button--with-icon-position-left .button__icon-svg {
  margin-right: 6px
}

.button--with-icon-position-right .button__icon-svg {
  margin-left: 6px
}

.button--icon-svg {
  padding: 16px;
  line-height: normal
}

.button--icon-svg .button__icon-svg {
  width: 16px;
  height: 16px
}

.button--icon-svg .button__icon-svg--extra-large {
  width: 32px;
  height: 32px
}

.button--translucent {
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  fill: #fff
}

.button--translucent:focus,
.button--translucent:hover,
.button--translucent:active {
  background-color: #e50914;
  fill: #fff
}

.button--primary-icon {
  fill: #e50914
}

.button--primary-icon:focus,
.button--primary-icon:hover,
.button--primary-icon:active {
  fill: #fff
}

.button--no-background {
  background-color: transparent;
  color: #fff;
  fill: #fff
}

.button--no-background.button--selected {
  color: #fff
}

.button--no-background:focus,
.button--no-background:hover,
.button--no-background:active {
  color: #e50914;
  fill: #e50914;
  background-color: transparent
}

.button--disabled {
  color: #b2b7c4;
  fill: #b2b7c4;
  cursor: unset
}

.button--disabled.button--translucent {
  background-color: #242833
}

.button--disabled:focus,
.button--disabled:hover,
.button--disabled:active {
  background-color: #242833;
  color: #b2b7c4;
  fill: #b2b7c4
}

.button--disabled:focus.button--no-background,
.button--disabled:hover.button--no-background,
.button--disabled:active.button--no-background {
  background-color: transparent
}

.button--selectable .button__text {
  padding: 0 4px 7px
}

.button--selected .button__text {
  border-bottom: 2px solid #e50914
}

.button__icon-svg {
  vertical-align: middle;
  width: 13px;
  height: 13px;
  margin-top: -3px
}

.chevron {
  display: inline-block;
  width: 42px;
  height: 42px;
  text-align: center;
  box-sizing: border-box;
  background: #fff;
  color: #000;
  fill: #000;
  border-radius: 0;
  cursor: pointer;
  transition: color .4s ease 0s, fill .4s ease 0s, background-color .4s ease 0s
}

@media (prefers-reduced-motion: reduce) {
  .chevron {
    transition: none
  }
}

.chevron:focus,
.chevron:hover,
.chevron:active {
  background: #cf3e80;
  color: #fff;
  fill: #fff
}

@media (min-width: 37.5em) {
  .chevron {
    width: 48px;
    height: 48px
  }
}

.chevron[disabled] {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(0, 0, 0, 0.2);
  fill: rgba(0, 0, 0, 0.2);
  cursor: default
}

.chevron--transparent {
  background: none;
  color: #fff;
  fill: #fff
}

.chevron--transparent:focus,
.chevron--transparent:hover,
.chevron--transparent:active {
  background: none;
  color: #cf3e80;
  fill: #cf3e80
}

.chevron--transparent[disabled] {
  background: none;
  color: #3d4049;
  fill: #3d4049;
  cursor: default
}

.chevron--small .chevron__icon {
  width: 9px;
  height: 11px
}

.chevron__icon {
  width: 16px;
  height: 16px;
  vertical-align: middle
}

.dropdown {
  position: relative;
  display: inline-block
}

.dropdown--transparent .dropdown__select {
  background: none
}

.dropdown--requires-js {
  display: none
}

.tvip-js .dropdown--requires-js {
  display: inline-block
}

.dropdown__label,
.dropdown__label-separator {
  color: #b2b7c4
}

.dropdown__label-separator {
  margin-right: 4px
}

.dropdown__select {
  font-family: inherit;
  background: #242833;
  color: #fff;
  padding: 12px 32px 12px 12px;
  border-radius: 0;
  -webkit-transition: color .4s ease 0s, background-color .4s ease 0s;
  transition: color .4s ease 0s, background-color .4s ease 0s;
  -webkit-appearance: none;
  -moz-appearance: none
}

.dropdown__select--hidden {
  display: none
}

.ie11 .dropdown__select {
  transition: none
}

.dropdown__select::-ms-expand {
  display: none
}

.dropdown__select::-ms-value {
  background: transparent
}

.dropdown__select:focus,
.dropdown__select:hover,
.dropdown__select:active {
  background: #fff;
  color: #000
}

.dropdown__select:focus::-ms-value,
.dropdown__select:hover::-ms-value,
.dropdown__select:active::-ms-value {
  color: #000
}

.dropdown__select:focus~.dropdown__icon,
.dropdown__select:hover~.dropdown__icon,
.dropdown__select:active~.dropdown__icon {
  fill: #000
}

.dropdown__icon {
  position: absolute;
  top: 0;
  right: 12px;
  width: 8px;
  height: 100%;
  fill: #fff;
  pointer-events: none;
  -webkit-transition: fill .4s ease 0s;
  transition: fill .4s ease 0s
}

.full-page-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1050;
  overflow: hidden;
  box-sizing: border-box;
  padding-left: 16px;
  padding-right: 16px
}

.full-page-overlay__content {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%)
}

.lnk {
  color: #fff;
  fill: #fff;
  text-decoration: none;
  background: none;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color .2s ease-out;
  transition: color .2s ease-out
}

.lnk--primary-icon {
  fill: #e50914
}

.lnk--primary-icon:focus,
.lnk--primary-icon:hover,
.lnk--primary-icon:active {
  fill: #e50914
}

.lnk__icon {
  -webkit-transition: fill .2s ease-out;
  transition: fill .2s ease-out;
  vertical-align: middle;
  width: 16px;
  height: 14px;
  flex-shrink: 0
}

.lnk:focus,
.lnk:hover,
.lnk:active {
  background: none;
  color: #e50914;
  fill: #e50914
}

.lnk__label--right,
.lnk__label--left {
  vertical-align: middle
}

.lnk__label--right {
  margin-left: 8px
}

.lnk__label--left {
  margin-right: .25em
}

.lnk--truncated {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%
}

.lnk--truncated .lnk__label {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis
}

.lnk--centre-vertically {
  display: inline-flex;
  align-items: center
}

.lnk--block {
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-align: left
}

.lnk--block:before,
.lnk--block:after {
  content: ' ';
  display: table
}

.lnk--block:after {
  clear: both
}

.lnk--no-theme {
  color: #fff
}

.lnk--no-theme:focus,
.lnk--no-theme:hover,
.lnk--no-theme:active {
  color: #e50914
}

.lnk--no-theme:focus .lnk__icon,
.lnk--no-theme:hover .lnk__icon,
.lnk--no-theme:active .lnk__icon {
  fill: #e50914
}

.lnk--expanded-hit-area {
  padding: 10px 12px;
  margin: -10px -12px;
  min-height: 40px;
  box-sizing: border-box;
  line-height: normal
}

.lnk--light:focus,
.lnk--light:hover,
.lnk--light:active {
  color: #1e1e1e
}

.lnk--dark {
  color: #000
}

.lnk--dark:focus,
.lnk--dark:hover,
.lnk--dark:active {
  color: #e50914
}

.lnk--theme-light:focus,
.lnk--theme-light:hover,
.lnk--theme-light:active {
  color: #fff
}

.lnk--theme-light:focus .lnk__label,
.lnk--theme-light:hover .lnk__label,
.lnk--theme-light:active .lnk__label {
  text-decoration: underline
}

.lnk--theme-light:focus .lnk__icon,
.lnk--theme-light:hover .lnk__icon,
.lnk--theme-light:active .lnk__icon {
  fill: #fff
}

.lnk--theme-dark {
  color: #000;
  fill: #000
}

.lnk--theme-dark:focus,
.lnk--theme-dark:hover,
.lnk--theme-dark:active {
  color: #000
}

.lnk--theme-dark:focus .lnk__label,
.lnk--theme-dark:hover .lnk__label,
.lnk--theme-dark:active .lnk__label {
  text-decoration: underline
}

.lnk--theme-dark:focus .lnk__icon,
.lnk--theme-dark:hover .lnk__icon,
.lnk--theme-dark:active .lnk__icon {
  fill: #000
}

.lnk--light-underline:focus,
.lnk--light-underline:hover,
.lnk--light-underline:active {
  color: #fff
}

.lnk--light-underline:focus .lnk__text,
.lnk--light-underline:hover .lnk__text,
.lnk--light-underline:active .lnk__text {
  text-decoration: underline
}

.lnk--disabled {
  color: #b2b7c4;
  fill: #b2b7c4;
  cursor: unset
}

.lnk--disabled:focus,
.lnk--disabled:hover,
.lnk--disabled:active {
  color: #b2b7c4;
  fill: #b2b7c4
}

.modal-dialog {
  position: relative;
  background-color: #0c101c;
  color: #b2b7c4;
  width: calc(100vw - 32px);
  max-width: 288px;
  margin: 0 auto
}

@media (min-width: 25em) {
  .modal-dialog {
    max-width: 488px
  }
}

.modal-dialog__content-links {
  padding-top: 8px
}

.modal-dialog__title {
  color: #e50914;
  margin-bottom: 16px
}

.modal-dialog__text {
  margin-bottom: 8px
}

.modal-dialog__content {
  text-align: center;
  padding: 40px 16px 32px
}

@media (min-width: 25em) and (max-width: 37.49em) {
  .modal-dialog__content {
    padding: 40px 32px 32px
  }
}

@media (min-width: 37.5em) {
  .modal-dialog__content {
    padding: 56px 32px 32px
  }
}

.modal-dialog__close {
  position: absolute;
  top: 0;
  right: 0
}

.modal-dialog--msi {
  background-image: url("https://iplayer-web.files.bbci.co.uk/iplayer-web-components/95.0.0/images/modal/msi-background.png");
  background-repeat: no-repeat;
  background-position: bottom right
}

.modal-dialog--msi .modal-dialog__title {
  color: #eee
}

.modal-dialog--msi .modal-dialog__content {
  text-align: left
}

.progress {
  height: 6px;
  background-color: rgba(255, 255, 255, 0.5)
}

.progress__position {
  height: 100%;
  background-color: #e50914;
  max-width: 100%
}

.rs-image {
  position: relative;
  width: 100%;
  height: 100%
}

.rs-image--fill-height .rs-image__img {
  width: auto;
  height: 100%
}

.tvip-js .rs-image--not-loaded .rs-image__img {
  opacity: 0
}

.rs-image__img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
  -webkit-transition: opacity .4s ease;
  transition: opacity .4s ease
}

@media (prefers-reduced-motion: reduce) {
  .rs-image__img {
    -webkit-transition: none;
    transition: none
  }
}

.inline-list__item {
  margin-right: 10px;
  padding-right: 10px;
  margin-bottom: 10px;
  display: inline-block
}

@media (min-width: 37.5em) {
  .inline-list__item {
    margin-right: 12px;
    padding-right: 12px
  }
}

.inline-list__item:last-child {
  padding-right: 0;
  margin-right: 0
}

.inline-list--separated .inline-list__item {
  border-right: 1px solid #3d4049
}

.inline-list--separated .inline-list__item:last-child {
  border-right: 0
}

.list-content-item {
  display: flex;
  flex-flow: row;
  color: #b2b7c4
}

.list-content-item:focus .list-content-item__play-button,
.list-content-item:hover .list-content-item__play-button,
.list-content-item:active .list-content-item__play-button {
  opacity: 1;
  background: #e50914
}

.list-content-item:focus .list-content-item__title,
.list-content-item:hover .list-content-item__title,
.list-content-item:active .list-content-item__title {
  color: #e50914
}

.list-content-item:focus .list-content-item__cta,
.list-content-item:hover .list-content-item__cta,
.list-content-item:active .list-content-item__cta {
  color: #e50914;
  fill: #e50914
}

.list-content-item--always-icon .list-content-item__play-button {
  opacity: 1;
  background: rgba(0, 0, 0, 0.75)
}

.list-content-item--with-progress .list-content-item__play-button {
  bottom: 6px
}

.list-content-item--has-sublabel .list-content-item__cta {
  display: inline-flex
}

@media (min-width: 37.5em) {
  .list-content-item--has-sublabel .list-content-item__cta {
    display: none
  }
}

.list-content-item--dimmed .list-content-item__title,
.list-content-item--dimmed .list-content-item__synopsis {
  color: #b2b7c4
}

.list-content-item--dimmed .list-content-item__image::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 16px;
  opacity: .8;
  background-color: rgba(0, 0, 0, 0.75);
  transition: opacity .3s
}

.list-content-item--dimmed:focus .list-content-item__title,
.list-content-item--dimmed:hover .list-content-item__title,
.list-content-item--dimmed:active .list-content-item__title {
  color: #b2b7c4
}

.list-content-item--dimmed:focus .list-content-item__image::after,
.list-content-item--dimmed:hover .list-content-item__image::after,
.list-content-item--dimmed:active .list-content-item__image::after {
  opacity: .7
}

.list-content-item--no-hover:focus .list-content-item__title,
.list-content-item--no-hover:hover .list-content-item__title,
.list-content-item--no-hover:active .list-content-item__title {
  color: #fff
}

.list-content-item__cta {
  color: #fff;
  fill: #e50914
}

.list-content-item__image {
  position: relative;
  overflow: hidden
}

.list-content-item__metadata {
  display: flex
}

.list-content-item__metadata__inner {
  display: inline-flex;
  flex: 1;
  flex-flow: column;
  justify-content: space-between
}

.list-content-item__metadata__inner__info {
  margin-bottom: 24px
}

.list-content-item__play-button {
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 0;
  background: #e50914;
  fill: #fff;
  opacity: 0;
  transition: opacity .3s, background-color .3s
}

.list-content-item__play-icon {
  width: 24px;
  height: 24px;
  padding: 12px
}

.list-content-item__progress {
  position: absolute;
  width: 100%;
  bottom: 0
}

.list-content-item__labels {
  margin-bottom: 4px
}

.list-content-item__title {
  -webkit-transition: color .2s ease-out;
  transition: color .2s ease-out;
  position: relative;
  color: #fff;
  margin-bottom: 4px
}

@media (min-width: 37.5em) {
  .list-content-item__title {
    margin-bottom: 12px;
    padding-bottom: 12px
  }

  .list-content-item__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: #e50914;
    height: 1px;
    width: 16px
  }
}

.list-content-item__subtitle {
  color: #fff;
  margin-bottom: 4px
}

.list-content-item__sublabel {
  border-right: 1px solid #b2b7c4;
  padding-right: 8px;
  margin-right: 8px
}

.list-content-item__sublabel:last-child {
  border-right: 0;
  padding-right: 0;
  margin-right: 0
}

.list-content-item__sublabels {
  display: none
}

@media (min-width: 37.5em) {
  .list-content-item__sublabels {
    display: inline-flex;
    color: #b2b7c4
  }
}

.placeholder {
  position: relative;
  padding-bottom: 56.25%;
  background-color: rgba(255, 255, 255, 0.1)
}

.placeholder__content {
  position: absolute;
  width: 100%;
  height: 100%
}

.section {
  border-top: 1px solid #242833;
  transition: height .5s ease 0s, padding .5s ease 0s
}

.section--with-background {
  position: relative
}

.section--with-background .section__content {
  position: relative
}

.section--spacing-reduced .section__content {
  padding: 16px 0
}

.section--spacing-none .section__content {
  padding: 0
}

.section--without-border {
  border-top: 0
}

.section__header {
  display: -webkit-flex;
  display: flex;
  position: relative;
  margin-bottom: 16px
}

.section__header__title {
  width: 100%;
  -webkit-align-self: center;
  align-self: center;
  color: #fff
}

.section__header__title__link {
  color: #fff;
  cursor: pointer;
  -webkit-transition: color .2s ease-out;
  transition: color .2s ease-out
}

.section__header__title__link:focus,
.section__header__title__link:hover,
.section__header__title__link:active {
  color: #e50914
}

.section__header__cta {
  margin-left: auto;
  -webkit-align-self: center;
  align-self: center;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  white-space: nowrap
}

.section__content {
  z-index: 1;
  padding: 24px 0 16px
}

.section__background {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  user-select: none;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to left, transparent 0%, #000 20%, #000 80%, transparent 100%);
  mask-image: linear-gradient(to left, transparent 0%, #000 20%, #000 80%, transparent 100%)
}

.section__background:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #0c101c;
  background: linear-gradient(to right, #0c101c 10%, rgba(12, 16, 28, 0.9) 40%, rgba(12, 16, 28, 0.9) 70%, #0c101c 100%)
}

.channels-nav__item {
  display: block;
  position: relative;
  margin: 16px 6px;
  overflow: hidden;
  height: 32px
}

.channels-nav__item--small {
  margin: 0 22px
}

.channels-nav__item__logo {
  width: 76px;
  height: 32px
}

.channels-nav__item__logo--active {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0
}

.channels-nav__item:focus .channels-nav__item__logo--active,
.channels-nav__item:hover .channels-nav__item__logo--active,
.channels-nav__item:active .channels-nav__item__logo--active {
  opacity: 1
}

.channels-nav__item--active .channels-nav__item__logo--active {
  opacity: 1
}

.channels-nav li:first-of-type .channels-nav__item {
  margin-left: 0
}

.channels-nav li:last-of-type .channels-nav__item {
  margin-right: 0
}

.footr {
  position: relative;
  background: #0c101c
}

@media (min-width: 56.25em) {
  .footr {
    border-top: solid 1px #242833
  }
}

.footr__container {
  display: -webkit-flex;
  display: flex;
  display: -ms-flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column
}

@media (min-width: 56.25em) {
  .footr__container {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1008px;
    min-height: 96px
  }
}

@media (min-width: 80em) {
  .footr__container {
    max-width: 1280px
  }
}

.footr__section {
  box-sizing: border-box;
  padding: 0 8px;
  width: 100%;
  border-top: solid 1px #242833
}

@media (min-width: 25em) {
  .footr__section {
    padding: 0 16px
  }
}

@media (min-width: 56.25em) {
  .footr__section {
    width: auto;
    border-width: 0
  }
}

.footr__section--settings {
  visibility: hidden
}

.tvip-js .footr__section--settings {
  visibility: visible
}

.footr__section--links {
  min-height: 96px
}

@media (min-width: 56.25em) {
  .footr__section--links {
    min-height: auto
  }
}

.footr__dropdown {
  margin: 4px 12px 4px 0
}

@media (min-width: 37.5em) {
  .footr__dropdown {
    margin-right: 28px
  }
}

@media (min-width: 56.25em) {
  .footr__dropdown {
    margin-right: 52px
  }
}

.footr__links {
  margin: 16px 0
}

.hero-header {
  position: relative;
  color: #fff;
  overflow: hidden
}

.hero-header--with-black-fade {
  background: #000
}

.hero-header--with-black-fade .hero-header__background::after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000)
}

.hero-header--with-black-fade .hero-header__content-gradient {
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, #000 100px, #000 60%, rgba(0, 0, 0, 0) 100%)
}

.hero-header--with-black-fade .hero-header__background-gradient::before {
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, #000 50%, rgba(0, 0, 0, 0) 100%)
}

.hero-header--show-divider .hero-header__title {
  padding-bottom: 16px
}

.hero-header--show-divider .hero-header__title::after {
  content: '';
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 16px;
  height: 1px;
  background-color: #e50914
}

.hero-header--show-bottom-border .hero-header__inner::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: .5px solid rgba(255, 255, 255, .1)
}

.hero-header--with-background .hero-header__label {
  margin-bottom: 4px
}

.hero-header--with-background .hero-header__title {
  padding-bottom: 8px
}

@media (min-width: 56.25em) {
  .hero-header--with-background .hero-header__title {
    padding-bottom: 12px
  }
}

.hero-header--with-background .hero-header__subtitle {
  margin-top: 8px
}

@media (min-width: 56.25em) {
  .hero-header--with-background .hero-header__subtitle {
    margin-top: 12px
  }
}

.hero-header--with-background .hero-header__children {
  margin-top: 8px
}

@media (min-width: 56.25em) {
  .hero-header--with-background .hero-header__children {
    margin-top: 12px
  }
}

.hero-header--with-background .hero-header__inner {
  position: relative;
  padding-top: 50.625vw;
  box-sizing: border-box
}

@media (min-width: 56.25em) {
  .hero-header--with-background .hero-header__inner {
    padding-top: 56px;
    padding-bottom: 40px;
    min-height: 350px
  }
}

@media (min-width: 63em) {
  .hero-header--with-background .hero-header__inner {
    min-height: 370px
  }
}

.hero-header--with-background .hero-header__inner::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 1px solid #242833
}

.hero-header--with-background .hero-header__content {
  z-index: 2
}

.hero-header--align-horizontally .hero-header__content {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: baseline;
  align-items: baseline
}

.hero-header--align-horizontally .hero-header__children {
  margin-top: 0
}

.hero-header__inner {
  position: relative;
  padding: 24px 0;
  box-sizing: border-box
}

@media (min-width: 37.5em) {
  .hero-header__inner {
    padding-top: 32px;
    padding-bottom: 24px
  }
}

.hero-header__background {
  display: block;
  position: absolute;
  top: 0;
  left: -16px;
  right: -16px;
  bottom: auto;
  pointer-events: none;
  z-index: 0;
  min-height: 56.25vw
}

@media (min-width: 56.25em) {
  .hero-header__background {
    bottom: 0;
    right: 0;
    left: auto;
    width: 1116px;
    min-height: auto
  }
}

@media (min-width: 56.25em) and (max-width: 62.99em) {
  .hero-header__background {
    margin-right: -16px
  }
}

@media (min-width: 63em) {
  .hero-header__background {
    right: 0;
    width: auto;
    left: 0
  }
}

.hero-header__background::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 45vw;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(12, 16, 28, 0) 0%, #0c101c)
}

@media (min-width: 56.25em) {
  .hero-header__background::after {
    content: none
  }
}

.hero-header__background .rs-image {
  position: static
}

.hero-header__background .rs-image__img {
  height: auto
}

@media (min-width: 56.25em) {
  .hero-header__background .rs-image__img {
    width: auto;
    height: 100%;
    max-height: 540px;
    float: right
  }
}

@media (min-width: 63em) {
  .hero-header__background .rs-image__img {
    max-height: 510px
  }
}

.hero-header__background-gradient {
  width: 0;
  height: 100%;
  float: right
}

.hero-header__background-gradient::before {
  content: none;
  height: 100%;
  position: absolute;
  background: linear-gradient(to right, rgba(12, 16, 28, 0) 0%, #0c101c 50%, rgba(12, 16, 28, 0) 100%);
  transform: translateX(-50%)
}

@media (min-width: 56.25em) {
  .hero-header__background-gradient::before {
    content: '';
    width: 312px
  }
}

.hero-header__content-gradient {
  display: none
}

@media (min-width: 56.25em) {
  .hero-header__content-gradient {
    display: block;
    left: -16px;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40%;
    background: linear-gradient(to left, rgba(12, 16, 28, 0) 0%, #0c101c 50%)
  }
}

@media (min-width: 63em) {
  .hero-header__content-gradient {
    background: linear-gradient(to right, rgba(12, 16, 28, 0) 0%, #0c101c 100px, #0c101c 60%, rgba(12, 16, 28, 0) 100%)
  }
}

@media (min-width: 80em) {
  .hero-header__content-gradient {
    display: none
  }
}

.hero-header__label {
  position: relative;
  margin-bottom: 8px;
  color: #b2b7c4
}

.hero-header__sublabel {
  position: relative;
  margin-top: 16px;
  color: #b2b7c4
}

.hero-header__title {
  position: relative
}

.hero-header__subtitle {
  position: relative;
  margin-top: 16px;
  color: #b2b7c4
}

.hero-header__children {
  position: relative;
  margin-top: 16px
}

@supports (mask-image: linear-gradient(to right, #000, #000)) or (-webkit-mask-image: linear-gradient(to right, #000, #000)) {
  .hero-header__background {
    -webkit-mask-image: linear-gradient(to top, transparent 0%, #000 45vw);
    mask-image: linear-gradient(to top, transparent 0%, #000 45vw)
  }

  @media (min-width: 56.25em) {
    .hero-header__background {
      width: 100%;
      -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent calc(20% - 2 * 16px), #000 calc(40% - 2 * 16px));
      mask-image: linear-gradient(to right, transparent 0%, transparent calc(20% - 2 * 16px), #000 calc(40% - 2 * 16px))
    }
  }

  @media (min-width: 63em) {
    .hero-header__background {
      -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 16%, #000 40%);
      mask-image: linear-gradient(to right, transparent 0%, transparent 16%, #000 40%)
    }
  }

  @media (min-width: 80em) {
    .hero-header__background {
      -webkit-mask-image: none;
      mask-image: none
    }
  }

  .hero-header__background::after {
    display: none
  }

  .hero-header__content-gradient {
    display: none
  }

  .hero-header__background-gradient::before {
    display: none
  }

  @media (min-width: 56.25em) {
    .hero-header__background__image .rs-image__img {
      -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 156px, #000 calc(100% - 156px), transparent 100%);
      mask-image: linear-gradient(to right, transparent 0%, #000 156px, #000 calc(100% - 156px), transparent 100%)
    }
  }
}

.column-section {
  width: 100%;
  display: -webkit-flex;
  display: flex
}

.column-section__outer {
  display: inline-block;
  border-right: 1px solid #242833
}

.column-section__outer--last {
  border-right: 0
}

@media (min-width: 63em) {
  .column-section__outer {
    display: -webkit-flex;
    display: flex;
    border-right: 0
  }
}

.column-section__inner {
  display: inline-block;
  vertical-align: top
}

.column-section__inner.column-section__inner--last {
  border-right: 0
}

@media (min-width: 63em) {
  .column-section__inner {
    border-right: 1px solid #242833
  }
}

.column-section__item {
  display: block;
  padding-left: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  color: #fff;
  line-height: 1.2
}

.column-section__item--active {
  background-color: #cf3e80
}

.column-section__item:focus,
.column-section__item:hover,
.column-section__item:active {
  background: #fff;
  color: #000
}

.categories-sub-nav {
  padding: 23px 0
}

@media (min-width: 63em) {
  .categories-sub-nav {
    max-width: 976px;
    margin: auto
  }
}

@media (min-width: 80em) {
  .categories-sub-nav {
    max-width: 1248px;
    margin: auto
  }
}

@media (min-width: 37.5em) {
  .categories-sub-nav {
    padding: 8px 0
  }
}

.categories-sub-nav__item {
  padding: 0 16px
}

.categories-sub-nav__item--active {
  color: #e50914
}

@media (min-width: 63em) {
  .channels-sub-nav {
    max-width: 976px;
    margin: auto
  }
}

@media (min-width: 80em) {
  .channels-sub-nav {
    max-width: 1248px;
    margin: auto
  }
}

@media (min-width: 37.5em) {
  .channels-sub-nav {
    padding: 0 16px
  }
}

.column-section {
  width: 100%;
  display: -webkit-flex;
  display: flex
}

.column-section__outer {
  display: inline-block;
  border-right: 1px solid #242833
}

.column-section__outer--last {
  border-right: 0
}

@media (min-width: 63em) {
  .column-section__outer {
    display: -webkit-flex;
    display: flex;
    border-right: 0
  }
}

.column-section__inner {
  display: inline-block;
  vertical-align: top
}

.column-section__inner.column-section__inner--last {
  border-right: 0
}

@media (min-width: 63em) {
  .column-section__inner {
    border-right: 1px solid #242833
  }
}

.column-section__item {
  display: block;
  padding-left: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  color: #fff;
  line-height: 1.2
}

.column-section__item--active {
  background-color: #cf3e80
}

.column-section__item:focus,
.column-section__item:hover,
.column-section__item:active {
  background: #fff;
  color: #000
}

.navigation {
  display: -webkit-flex;
  display: flex;
  display: -ms-flex;
  flex-flow: column;
  -webkit-flex-flow: column;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  will-change: height;
  color: #fff;
  background-color: #020011;
  border-bottom: 1px solid #242833;
  overflow: hidden;
  position: relative;
  z-index: 352
}

.tvip-js .navigation {
  height: 64px
}

@media (min-width: 37.5em) {
  .tvip-js .navigation.navigation--render-open {
    height: 128px
  }
}

.navigation--animated {
  transition-property: height;
  -webkit-transition-property: height;
  transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
  transition-duration: .5s;
  -webkit-transition-duration: .5s
}

@media (prefers-reduced-motion: reduce) {
  .navigation--animated {
    transition: none;
    -webkit-transition: none
  }
}

.ipw-low-support .navigation--animated {
  transition: none;
  -webkit-transition: none
}

.navigation--animated .navigation__subnav--transition-open {
  transition-delay: .2s;
  transition-property: opacity;
  -webkit-transition-property: opacity;
  transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
  transition-duration: .5s;
  -webkit-transition-duration: .5s
}

@media (prefers-reduced-motion: reduce) {
  .navigation--animated .navigation__subnav--transition-open {
    transition: none;
    -webkit-transition: none
  }
}

.ipw-low-support .navigation--animated .navigation__subnav--transition-open {
  transition: none;
  -webkit-transition: none
}

.navigation--animated .navigation__subnav--transition-close {
  transition-delay: .5s;
  transition-property: opacity;
  -webkit-transition-property: opacity;
  transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
  transition-duration: 0;
  -webkit-transition-duration: 0
}

@media (prefers-reduced-motion: reduce) {
  .navigation--animated .navigation__subnav--transition-close {
    transition: none;
    -webkit-transition: none
  }
}

.ipw-low-support .navigation--animated .navigation__subnav--transition-close {
  transition: none;
  -webkit-transition: none
}

.navigation--animated .navigation__subnav--transition-from {
  transition-property: opacity;
  -webkit-transition-property: opacity;
  transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
  transition-duration: .2s;
  -webkit-transition-duration: .2s
}

@media (prefers-reduced-motion: reduce) {
  .navigation--animated .navigation__subnav--transition-from {
    transition: none;
    -webkit-transition: none
  }
}

.ipw-low-support .navigation--animated .navigation__subnav--transition-from {
  transition: none;
  -webkit-transition: none
}

.navigation--animated .navigation__subnav--transition-to {
  transition-delay: .2s;
  transition-property: opacity;
  -webkit-transition-property: opacity;
  transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
  transition-duration: .3s;
  -webkit-transition-duration: .3s
}

@media (prefers-reduced-motion: reduce) {
  .navigation--animated .navigation__subnav--transition-to {
    transition: none;
    -webkit-transition: none
  }
}

.ipw-low-support .navigation--animated .navigation__subnav--transition-to {
  transition: none;
  -webkit-transition: none
}

.navigation--animated .navigation__subnav--hidden.navigation__subnav--transition-open {
  transition-delay: .2s;
  transition-property: visibility, opacity;
  -webkit-transition-property: visibility, opacity;
  transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
  transition-duration: .5s;
  -webkit-transition-duration: .5s
}

@media (prefers-reduced-motion: reduce) {
  .navigation--animated .navigation__subnav--hidden.navigation__subnav--transition-open {
    transition: none;
    -webkit-transition: none
  }
}

.ipw-low-support .navigation--animated .navigation__subnav--hidden.navigation__subnav--transition-open {
  transition: none;
  -webkit-transition: none
}

.navigation--animated .navigation__subnav--hidden.navigation__subnav--transition-close {
  transition-delay: .5s;
  transition-property: visibility, opacity;
  -webkit-transition-property: visibility, opacity;
  transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
  transition-duration: 0;
  -webkit-transition-duration: 0
}

@media (prefers-reduced-motion: reduce) {
  .navigation--animated .navigation__subnav--hidden.navigation__subnav--transition-close {
    transition: none;
    -webkit-transition: none
  }
}

.ipw-low-support .navigation--animated .navigation__subnav--hidden.navigation__subnav--transition-close {
  transition: none;
  -webkit-transition: none
}

.navigation--animated .navigation__subnav--hidden.navigation__subnav--transition-from {
  transition-property: visibility, opacity;
  -webkit-transition-property: visibility, opacity;
  transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
  transition-duration: .2s;
  -webkit-transition-duration: .2s
}

@media (prefers-reduced-motion: reduce) {
  .navigation--animated .navigation__subnav--hidden.navigation__subnav--transition-from {
    transition: none;
    -webkit-transition: none
  }
}

.ipw-low-support .navigation--animated .navigation__subnav--hidden.navigation__subnav--transition-from {
  transition: none;
  -webkit-transition: none
}

.navigation--animated .navigation__subnav--hidden.navigation__subnav--transition-to {
  transition-delay: .2s;
  transition-property: visibility, opacity;
  -webkit-transition-property: visibility, opacity;
  transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
  transition-duration: .3s;
  -webkit-transition-duration: .3s
}

@media (prefers-reduced-motion: reduce) {
  .navigation--animated .navigation__subnav--hidden.navigation__subnav--transition-to {
    transition: none;
    -webkit-transition: none
  }
}

.ipw-low-support .navigation--animated .navigation__subnav--hidden.navigation__subnav--transition-to {
  transition: none;
  -webkit-transition: none
}

.navigation--animated .navigation__item-container--hidden {
  transition-property: visibility;
  -webkit-transition-property: visibility;
  transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
  transition-duration: .5s;
  -webkit-transition-duration: .5s
}

@media (prefers-reduced-motion: reduce) {
  .navigation--animated .navigation__item-container--hidden {
    transition: none;
    -webkit-transition: none
  }
}

.ipw-low-support .navigation--animated .navigation__item-container--hidden {
  transition: none;
  -webkit-transition: none
}

.navigation__item-container {
  border-top: 1px solid #242833;
  background: #020011;
  display: block;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: -2
}

@media (min-width: 37.5em) {
  .navigation__item-container {
    display: -webkit-flex;
    display: flex;
    display: -ms-flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    border-top-width: 0;
    background: transparent;
    z-index: auto
  }
}

.tvip-js .navigation__item-container {
  position: absolute
}

@media (max-width: 37.49em) {
  .tvip-js .navigation__item-container--hidden {
    position: absolute;
    visibility: hidden;
    width: 99.999%
  }
}

@media (min-width: 37.5em) {
  .tvip-js .navigation__item-container {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    position: static;
    height: 64px;
    width: auto
  }

  .tvip-js .navigation__item-container--hidden {
    display: -webkit-flex;
    display: flex;
    display: -ms-flex
  }
}

.navigation__item {
  border-bottom: 1px solid #242833
}

@media (min-width: 37.5em) {
  .navigation__item {
    display: -webkit-flex;
    display: flex;
    display: -ms-flex;
    -webkit-align-items: center;
    align-items: center;
    border-bottom: 0
  }
}

.navigation__item:last-child {
  border-bottom: 0
}

.navigation__header {
  display: -webkit-flex;
  display: flex;
  display: -ms-flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 64px;
  padding: 0 8px
}

@media (min-width: 25em) {
  .navigation__header {
    padding: 0 16px
  }
}

@media (min-width: 37.5em) {
  .navigation__header {
    padding: 0
  }
}

@media (min-width: 63em) {
  .navigation__header {
    padding: 0
  }
}

.navigation__header-background {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  width: 100vw;
  height: 64px;
  left: 0;
  top: 0;
  background-color: #0c101c;
  position: absolute;
  z-index: -1
}

.navigation__container {
  display: -webkit-flex;
  display: flex;
  display: -ms-flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  box-sizing: border-box;
  width: 100%;
  z-index: 352
}

@media (min-width: 37.5em) {
  .navigation__container {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 0 16px;
    margin: 0 auto;
    top: 0
  }
}

@media (min-width: 63em) {
  .navigation__container {
    max-width: 1008px
  }
}

@media (min-width: 80em) {
  .navigation__container {
    max-width: 1280px
  }
}

.tvip-js .navigation__container {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap
}

.navigation__menu-btn {
  cursor: pointer
}

@media (min-width: 37.5em) {
  .navigation__menu-btn {
    margin-right: -4px
  }
}

@media (min-width: 37.5em) {
  .navigation__logo {
    padding-left: 0
  }
}

.navigation__logo__svg {
  display: block;
  width: 111px;
  height: 36px;
  margin-bottom: -6px;
  -webkit-transition: fill .2s ease-out;
  transition: fill .2s ease-out
}

.navigation__logo__link {
  fill: #e50914
}

.navigation__logo__link:focus,
.navigation__logo__link:hover,
.navigation__logo__link:active {
  fill: #fff
}

.navigation__link {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  width: 100%;
  padding: 19px 12px
}

.navigation__link .lnk__label {
  display: flex;
  align-items: center;
  position: relative
}

@media (min-width: 37.5em) {
  .navigation__link {
    display: -webkit-flex;
    display: flex;
    display: -ms-flex;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    -webkit-align-items: center;
    align-items: center;
    border: 0;
    width: auto;
    height: 100%;
    padding: 0 10px
  }

  .navigation__link--last {
    padding-right: 0px
  }

  .navigation__link__icon {
    width: 73px;
    height: 50px
  }

  .navigation__link__icon:hover {
    color: initial
  }

  .navigation__link__icon--active {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity ease-in-out .4s
  }

  .navigation__link__down-icon {
    width: 6px;
    margin-bottom: -2px;
    margin-left: 2px
  }
}

@media (min-width: 56.25em) {
  .navigation__link {
    padding: 0 24px
  }

  .navigation__link--last {
    padding-right: 0px
  }
}

.navigation__link:focus .navigation__link__icon--active,
.navigation__link:hover .navigation__link__icon--active,
.navigation__link:active .navigation__link__icon--active {
  opacity: 1
}

.navigation__link--selected {
  background-color: #020011
}

.navigation__link--selected:focus,
.navigation__link--selected:hover,
.navigation__link--selected:active {
  background-color: #020011
}

.navigation__link--active,
.navigation__link--selected {
  color: #e50914
}

.navigation__link--active .navigation__link__down-icon,
.navigation__link--selected .navigation__link__down-icon {
  fill: #e50914
}

.navigation__link--active .navigation__link__icon--active,
.navigation__link--selected .navigation__link__icon--active {
  opacity: 1
}

.navigation__subnav {
  background-color: #020011;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 352
}

@media (min-width: 37.5em) {
  .tvip-js .navigation__subnav {
    bottom: 0;
    width: 100%;
    left: 0;
    position: absolute;
    z-index: -2;
    visibility: visible
  }

  .tvip-js .navigation__subnav--hidden {
    opacity: 0;
    visibility: hidden;
    width: 99.999%
  }
}

.navigation__a11y-link {
  position: absolute;
  overflow: hidden;
  background: #fff;
  border: 1px solid #b2b7c4;
  color: #000;
  padding: 8px;
  clip: rect(0, 0, 0, 0);
  width: 0;
  height: 0;
  top: 16px;
  left: 0px
}

.navigation__a11y-link:focus,
.navigation__a11y-link:hover,
.navigation__a11y-link:active {
  width: auto;
  height: auto;
  clip: auto
}

.navigation--u13 {
  color: #242833;
  background-color: #fff;
  border-color: #e7e8e9
}

.tvip-js .navigation--u13 {
  height: 64px
}

@media (min-width: 63em) {
  .tvip-js .navigation--u13 {
    height: 96px
  }
}

.navigation--u13 .navigation__item-container {
  border-color: #e7e8e9;
  background: #fff
}

@media (min-width: 37.5em) {
  .navigation--u13 .navigation__item-container {
    display: block;
    border-top-width: 1px;
    z-index: -2
  }
}

@media (min-width: 63em) {
  .navigation--u13 .navigation__item-container {
    display: -webkit-flex;
    display: flex;
    display: -ms-flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    border-top-width: 0;
    background: transparent;
    z-index: auto
  }
}

@media (min-width: 37.5em) {
  .tvip-js .navigation--u13 .navigation__item-container {
    display: block;
    position: absolute;
    height: auto;
    width: 100%
  }
}

@media (min-width: 63em) {
  .tvip-js .navigation--u13 .navigation__item-container {
    display: -webkit-flex;
    display: flex;
    display: -ms-flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 96px;
    width: auto;
    position: static
  }
}

.tvip-js .navigation--u13 .navigation__item-container--hidden {
  position: absolute;
  visibility: hidden;
  height: auto
}

@media (min-width: 63em) {
  .tvip-js .navigation--u13 .navigation__item-container--hidden {
    display: -webkit-flex;
    display: flex;
    display: -ms-flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    position: static;
    visibility: visible;
    width: auto;
    height: 96px
  }
}

.navigation--u13 .navigation__logo__link {
  fill: #e50914
}

.navigation--u13 .navigation__logo__link:focus,
.navigation--u13 .navigation__logo__link:hover,
.navigation--u13 .navigation__logo__link:active {
  fill: #cf3e80
}

@media (min-width: 63em) {
  .navigation--u13 .navigation__logo__svg {
    width: 148px;
    height: 48px
  }
}

.navigation--u13 .navigation__item {
  border-color: #e7e8e9
}

@media (min-width: 37.5em) {
  .navigation--u13 .navigation__item {
    border-bottom: 1px solid #e7e8e9
  }
}

@media (min-width: 63em) {
  .navigation--u13 .navigation__item {
    border-bottom: 0
  }
}

@media (min-width: 63em) {
  .navigation--u13 .navigation__header {
    height: 96px
  }
}

.navigation--u13 .navigation__header-background {
  background-color: #fff
}

@media (min-width: 63em) {
  .navigation--u13 .navigation__header-background {
    height: 96px
  }
}

.navigation--u13 .navigation__link {
  position: relative;
  overflow-y: hidden;
  padding: 12px
}

@media (min-width: 37.5em) {
  .navigation--u13 .navigation__link {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    display: block;
    width: 100%;
    padding: 12px
  }
}

@media (min-width: 63em) {
  .navigation--u13 .navigation__link {
    display: -webkit-flex;
    display: flex;
    display: -ms-flex;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    border: 0;
    width: auto;
    height: 100%;
    padding: 12px 0
  }

  .navigation--u13 .navigation__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    width: 70%;
    height: 2px;
    background-color: #e50914;
    transform: translateY(100%);
    transition: transform .4s ease 0s
  }
}

.navigation--u13 .navigation__link:focus::after,
.navigation--u13 .navigation__link:hover::after,
.navigation--u13 .navigation__link:active::after {
  transform: translateY(0)
}

.navigation--u13 .navigation__link:focus .navigation__link__icon--active,
.navigation--u13 .navigation__link:hover .navigation__link__icon--active,
.navigation--u13 .navigation__link:active .navigation__link__icon--active {
  opacity: 1
}

.navigation--u13 .navigation__link--active::after {
  transform: translateY(0)
}

.navigation--u13 .navigation__link--selected {
  background-color: #e7e8e9
}

.navigation--u13 .navigation__link--selected:focus,
.navigation--u13 .navigation__link--selected:hover,
.navigation--u13 .navigation__link--selected:active {
  background-color: #e7e8e9
}

.navigation--u13 .navigation__link--active,
.navigation--u13 .navigation__link--selected {
  color: #cf3e80
}

.navigation--u13 .navigation__link--active .navigation__link__down-icon,
.navigation--u13 .navigation__link--selected .navigation__link__down-icon {
  fill: #cf3e80
}

.navigation--u13 .navigation__link--active .navigation__link__icon--active,
.navigation--u13 .navigation__link--selected .navigation__link__icon--active {
  opacity: 1
}

.navigation--u13 .navigation__link__icon {
  width: 22px;
  height: 20px;
  padding: 0 12px 0 0
}

@media (min-width: 63em) {
  .navigation--u13 .navigation__link__icon {
    width: 73px;
    height: 50px
  }

  .navigation--u13 .navigation__link__icon:hover {
    color: initial
  }

  .navigation--u13 .navigation__link__icon--active {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity ease .4s
  }
}

@media (min-width: 63em) {
  .navigation--u13 .navigation__link__icon {
    width: 100px;
    height: 48px;
    padding: 12px 0
  }
}

.scrollable-nav {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%
}

.scrollable-nav--scrollable .scrollable-nav__track {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 24px, #000 calc(100% - 24px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 24px, #000 calc(100% - 24px), transparent 100%)
}

.scrollable-nav--scrollable .scrollable-nav__item:first-of-type {
  padding-left: 24px
}

.scrollable-nav--scrollable .scrollable-nav__item:last-of-type {
  padding-right: 24px
}

.scrollable-nav__track {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  align-items: stretch;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  -webkit-justify-content: space-between;
  justify-content: space-between
}

.scrollable-nav__track::-webkit-scrollbar {
  display: none
}

.scrollable-nav__track--align-left {
  -webkit-justify-content: flex-start;
  justify-content: flex-start
}

.scrollable-nav__track--align-center {
  -webkit-justify-content: center;
  justify-content: center
}

.scrollable-nav__item {
  -webkit-flex-shrink: 0;
  flex-shrink: 0
}

.scrollable-nav__arrow {
  width: 48px;
  height: auto;
  -webkit-flex-shrink: 0;
  flex-shrink: 0
}

.scrollable-nav__arrow--left {
  margin-left: -8px
}

@media (min-width: 37.5em) {
  .scrollable-nav__arrow--left {
    margin-left: -16px
  }
}

.scrollable-nav__arrow--right {
  margin-right: -8px
}

@media (min-width: 37.5em) {
  .scrollable-nav__arrow--right {
    margin-right: -16px
  }
}

.facets {
  background: url("../img/facets/xs-s.jpg") no-repeat center top
}

@media (min-width: 37.5em) {
  .facets {
    background: url("../img/facets/m-xl.jpg") no-repeat center top;
    background-size: contain
  }
}

@media (min-width: 80em) {
  .facets {
    background: url("../img/facets/xxl.jpg") no-repeat center top
  }
}

.guide-nav {
  position: -webkit-sticky;
  position: sticky;
  top: -1px;
  width: 100%;
  z-index: 700
}

.location-switcher {
  position: relative;
  visibility: hidden
}

@media (min-width: 56.25em) {
  .location-switcher {
    visibility: visible
  }
}

.location-switcher__dropdown {
  position: absolute;
  right: 0;
  bottom: calc(100% + 24px)
}

.day-switcher {
  background-color: #020011;
  padding: 8px 0
}

.day-switcher__item {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: column;
  flex-flow: column;
  text-align: center;
  padding: 0 22px
}

.day-switcher__item--active {
  color: #e50914
}

.day-switcher__item__day {
  text-transform: uppercase
}

.day-switcher li:first-of-type .day-switcher__item {
  padding-left: 0
}

.day-switcher li:last-of-type .day-switcher__item {
  padding-right: 0
}

.channel-switcher {
  background-color: #0c101c;
  border-bottom: 1px solid #242833;
  padding: 8px 0
}

.schedule-container {
  border-top: 0px
}

.schedule-container .section__content {
  padding: 0px
}

.schedule-container .section__header {
  margin-bottom: 0px
}

.schedule-item {
  padding-top: 24px;
  padding-bottom: 24px
}

.schedule-item--live {
  border-top: .5px solid #e50914;
  background-color: rgba(40, 40, 40, .9)
}

.schedule-item:not(:last-child) {
  border-bottom: .5px solid rgba(255, 255, 255, .1)
}

.schedule-item__start-time {
  text-align: right;
  color: #b2b7c4
}

.schedule-item__secondary-cta {
  margin-top: 8px
}

.safeguarding-modal .modal-dialog__text {
  margin-bottom: 32px
}

.safeguarding-modal .modal-dialog__text:last-of-type {
  margin-bottom: 0
}

.safeguarding-modal__icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle
}

#tviplayer {
  overflow: visible
}
