[v-cloak] {
  display: none;
}

[hidden] {
  display: none !important;
}

:root {
  --color-accent-blue: #147DC1;
  --color-grey-darker: #242424;
}

.u-fg-accent-blue {
  color: var(--color-accent-blue);
}

.u-fg-white {
  color: #fff;
}

.u-text-upper {
  text-transform: uppercase;
}

.u-img-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.u-text-bold {
  font-weight: bold;
}

.page-header {
  background-color: #292929;
  color: #fff;
  height: auto;
  padding-top: 100px;
  padding-bottom: 30px;
  display: grid;
  grid-gap: 48px;
  grid-template-rows: 1fr min-content;
}
@media (min-width: 480px) {
  .page-header {
    padding-top: 200px;
    grid-template-columns: 1fr min-content;
  }
}

.page-header__heading-block {
  grid-column: 1;
  grid-row: 1;
  max-width: 100%;
}

.page-header__video-filters {
  grid-column: 1;
  grid-row: 2;
}

.page-header__promo {
  align-self: end;
}
@media (min-width: 700px) {
  .page-header__promo {
    grid-row: 1/span 2;
    grid-column: 2;
    width: 380px;
  }
}

.page-header__promo-link {
  display: block;
}

.page-header__promo-image {
  display: block;
}

.page-header__back-button {
  align-items: center;
  align-items: center;
  border: 2px solid #fff;
  color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: bold;
  grid-column: 2;
  margin: auto 0;
  min-height: 40px;
  padding: 8px 20px;
  text-align: center;
  white-space: nowrap;
}

@media (min-width: 1101px) {
  .content-container {
    padding-left: 8%;
    padding-right: 8%;
  }
}

.c-video-page-app {
  background-color: #292929;
  color: rgba(255, 255, 255, 0.5);
}

.o-video-card {
  display: flex;
}
.o-video-card--vertical {
  gap: 30px;
  flex-direction: column;
}

.o-video-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.c-main-row {
  display: flex;
  gap: 48px;
  flex-direction: column;
  padding-bottom: 20px;
}
@media (max-width: 1000px) {
  .c-main-row {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 1101px) {
  .c-main-row {
    flex-direction: row;
  }
}

.c-main-stage {
  flex: 1;
}

.c-main-sidebar {
  gap: 54px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1101px) {
  .c-main-sidebar {
    max-width: 380px;
  }
}

.c-now-playing__video {
  width: 140px;
  height: 95px;
}

.c-now-playing__video-wrapper {
  gap: 15px;
  box-shadow: 0 0 0 15px var(--color-grey-darker);
  background-color: var(--color-grey-darker);
}

.c-stage-player__status {
  font-size: 14px;
  line-height: 18px;
  position: absolute;
  left: 16px;
  bottom: 15px;
  padding: 5px 7px;
  background-color: var(--color-accent-blue);
  cursor: pointer;
  user-select: none;
}

.c-stage-player__status__remaining {
  min-width: 6ch;
  display: inline-block;
  text-align: right;
}

.c-stage-player__heading {
  font-size: 24px;
  line-height: 30px;
  padding-bottom: 10px;
}

.c-stage-player__date {
  font-size: 12px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.5);
  padding-bottom: 22px;
}

.c-stage-player__share {
  list-style: none;
  display: flex;
  gap: 15px;
  padding-left: 0;
  margin: 0;
}

.c-stage-player__share-item {
  height: 16px;
  width: 16px;
}
.c-stage-player__share-item .fa {
  color: #fff;
}

.c-now-playing__module-heading {
  font-size: 12px;
  line-height: 20px;
  padding-bottom: 32px;
}

.c-now-playing__heading {
  padding-bottom: 5px;
}

.c-now-playing__length {
  padding-bottom: 5px;
  font-size: 14px;
  line-height: 18px;
}

.c-now-playing__date {
  font-size: 10px;
  line-height: 20px;
}

.c-explore-channels__module-heading {
  font-size: 18px;
  line-height: 22px;
  padding-bottom: 22px;
}

.c-channel-videos {
  display: flex;
  gap: 20px;
  position: relative;
  overflow-x: auto;
  padding-bottom: 30px;
}
@media (min-width: 700px) {
  .c-channel-videos {
    overflow: hidden;
  }
}

.c-channel-video-item {
  opacity: 1;
  transition: opacity 0.3s;
  min-width: 325px;
  flex: 1 1 0;
}

.c-channel-video-item--faded {
  opacity: 0.5;
  pointer-events: none;
}

.c-channel-video-item__video {
  aspect-ratio: 32/17;
  cursor: pointer;
}
@media (min-width: 1370px) {
  .c-channel-video-item__video {
    min-width: 320px;
  }
}

.c-channel-video-item__heading {
  font-size: 18px;
  line-height: 22px;
  padding-bottom: 5px;
}

.c-channel-video-item__subheading {
  font-size: 16px;
  line-height: 20px;
  padding-bottom: 5px;
}

.c-channel-video-item__date {
  font-size: 12px;
  line-height: 20px;
}

.c-explore-channel-item__video {
  width: 140px;
  height: 95px;
}

.c-explore-channel-item {
  gap: 15px;
}

.c-explore-channels__list-wrapper {
  position: relative;
}

.c-explore-channels__list {
  display: flex;
  gap: 26px;
  flex-direction: column;
  overflow-y: auto;
  max-height: 410px;
  scrollbar-width: none;
}
.c-explore-channels__list::-webkit-scrollbar {
  display: none;
}

.c-explore-channels__list-shade {
  content: "";
  display: block;
  width: 100%;
  height: 130px;
  position: absolute;
  bottom: 0;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #292929);
  pointer-events: none;
}

.c-channel-row {
  padding-top: 38px;
  padding-bottom: 38px;
}
@media (max-width: 1100px) {
  .c-channel-row {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.c-channel-row:nth-of-type(odd) {
  background-color: var(--color-grey-darker);
}

.c-channel-name {
  font-size: 24px;
  line-height: 30px;
}

.c-channel-video-item__tag {
  font-size: 10px;
  line-height: 20px;
  text-transform: uppercase;
  color: #fff;
  background-color: var(--color-accent-blue);
  padding: 2px 12px 0;
  position: absolute;
  left: 0;
  bottom: 0;
}

.o-video-card__video {
  position: relative;
  min-height: 100px;
}

.c-video-player {
  background: rgba(0, 0, 0, 0.5);
  position: relative;
}

.c-video-player__embed {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
@media (min-width: 700px) {
  .c-video-player__embed {
    min-height: 550px;
  }
}

.c-stage-player__play-button {
  background-color: white;
  color: var(--color-accent-blue);
  font-size: 28px;
  width: 50px;
  aspect-ratio: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 40px 0 rgba(0, 0, 0, 0.2);
}
@media (min-width: 480px) {
  .c-stage-player__play-button {
    width: 80px;
  }
}
.c-stage-player__play-button .fa {
  position: relative;
  left: 3px;
}
.c-explore-channels__list .c-stage-player__play-button {
  display: none;
}

.c-channel-name-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
}

.c-channel-show-more {
  font-size: 14px;
  color: #77C6F9;
}

.c-channel-row-scroller {
  display: flex;
  gap: 20px;
}

.c-channel-row-scroller-button {
  appearance: none;
  background: none;
  border: none;
  outline: none;
  padding: 4px;
}

.c-channel-row-scroller-button__chevron {
  color: white;
  height: 12px;
  width: 12px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  border-radius: 2px;
  display: block;
}

.c-channel-row-scroller-button__chevron--next {
  transform: rotate(-135deg);
}

.c-channel-row-scroller-button__chevron--prev {
  transform: rotate(45deg);
}

.c-channel-row-controls {
  display: flex;
  gap: 10px;
}
@media (min-width: 480px) {
  .c-channel-row-controls {
    gap: 30px;
  }
}

.c-filter-item {
  border: 1px solid #444;
  flex: 1 1 0;
  min-height: 40px;
  position: relative;
  transition: 0.2s border-color;
}
.c-filter-item:hover, .c-filter-item:focus {
  border-color: #555;
}

.c-filter-item--input__input {
  appearance: none;
  width: 100%;
  height: 100%;
  background: none;
  color: #ABABAB;
  box-sizing: border-box;
  padding-left: 16px;
  font-size: 14px;
  background: #292929;
  position: relative;
  border: 0;
}

.c-filter-item--button {
  flex: 0 0 auto;
  border: 0;
  display: flex;
  align-items: center;
}

.c-filter-item--button__button {
  appearance: none;
  background: #fff;
  color: #444;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: bold;
  height: 40px;
  opacity: 0.8;
  padding: 8px 20px;
  position: relative;
  border: 0;
  transition: 0.2s;
}
.c-filter-item--button__button:hover {
  opacity: 1;
}

.c-filter-item--button__reset-button {
  appearance: none;
  background: transparent;
  color: #fff;
  box-sizing: border-box;
  font-size: 14px;
  padding: 8px;
  position: relative;
  border: 0;
}
.c-filter-item--button__reset-button:hover {
  text-decoration: underline;
}

.c-filter-item--select__select {
  appearance: none;
  width: 100%;
  height: 100%;
  background: none;
  color: #ABABAB;
  box-sizing: border-box;
  padding-left: 16px;
  font-size: 14px;
  background: #292929;
  position: relative;
  border: 0;
  cursor: pointer;
}

.c-filter-item--select::after {
  content: "";
  width: 6px;
  height: 6px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
  position: absolute;
  top: 40%;
  right: 16px;
  pointer-events: none;
}

.c-video-filters {
  gap: 10px;
  display: flex;
  flex-direction: column;
  max-width: 100%;
}
@media (max-width: 1100px) {
  .c-video-filters {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1101px) {
  .c-video-filters {
    flex-direction: row;
    max-width: 1500px;
  }
}

.c-stage-player__video {
  min-height: 250px;
  max-width: 100%;
  object-fit: cover;
}

.c-stage-player__include-logo {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
@media (max-width: 1100px) {
  .c-stage-player__include-logo {
    padding: 0 10px;
  }
}

.c-stage-player__logo {
  height: 76px;
}

.c-video-list {
  display: grid;
  grid-gap: 90px 20px;
  margin-top: 40px;
  padding-bottom: 90px;
}
@media (max-width: 1100px) {
  .c-video-list {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1101px) {
  .c-video-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1370px) {
  .c-video-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.c-video-modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 100vh;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  overflow-y: auto;
  margin-right: -20px;
}

.c-video-modal__close {
  position: fixed;
  right: 20px;
  top: 20px;
  appearance: none;
  background: none;
  height: 30px;
  width: 30px;
  filter: brightness(255);
  padding: 3px;
  border: 1px solid white;
  box-sizing: content-box;
}

.c-video-modal__stage {
  padding-left: 10%;
  padding-right: 20%;
  padding-top: 5%;
  padding-bottom: 30px;
}

/* we will explain what these classes do next! */
.video-modal-fade-enter-active,
.video-modal-fade-leave-active {
  transition: opacity 0.2s ease;
}

.video-modal-fade-enter-from,
.video-modal-fade-leave-to {
  opacity: 0;
}

/*# sourceMappingURL=video-page.css.map */
