/**
 *
 *  CSS
 *
**/


/**
 *
 *  Typeface Setup
 *
**/

@import url("//hello.myfonts.net/count/38c14b");

@font-face {
  font-family: 'Camber Regular';
  src: url('../fonts/camber/38C14B_0_0.eot');
  src: url('../fonts/camber/38C14B_0_0.eot?#iefix') format('embedded-opentype'),
       url('../fonts/camber/38C14B_0_0.woff2') format('woff2'),
       url('../fonts/camber/38C14B_0_0.woff') format('woff'),
       url('../fonts/camber/38C14B_0_0.ttf') format('truetype');
}

@font-face {
  font-family: 'Fjalla One';
  src: url('../fonts/FjallaOne-Regular.woff') format('woff');
}

@font-face {
  font-family: 'United Italic Condensed Black';
  src: url('../fonts/UnitedItalicCond-Black.woff') format('woff');
}


/**
 *
 *  Basics
 *
**/

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  background-color: rgb(0, 0, 0);
}

body {
  margin: 0;
  color: rgb(256, 256, 256);
  font-family: 'Camber Regular', sans-serif;
  background-image: url('../images/bg.jpg');
  background-position: top center;
  overflow-x: hidden;
}

figure {
  margin: 0;
  padding: 0;
}

figure img {
  display: block;
  max-width: 100%;
}

main,
header.site,
section.slides {
  position: relative;
}

.wrapper {
  position: relative;
  margin: 0 auto;
  max-width: 1366px;
}

.flex {
  display: flex;
}

header.site {
  position: relative; z-index: 64;
  margin: 0 auto;
  width: 100%;
  max-width: 2560px;
  height: 132px;

}

header.site::before {
  content: '';
  position: absolute; top: -64px; right: -1%; left: -1%; z-index: 88;
  height: 160px;

  background-color: rgb(0, 0, 0);
  background-image: url('../images/bg.jpg');
  background-position: top center;

  transform: rotate(-3deg);
  transform-origin: bottom center;

  transition: transform 0.8s, top 0.8s;
}

header.site::after {
  content: '';
  position: absolute; right: -1%; left: -1%; bottom: 32px; /* z-index: 96; */
  height: 6px;
  background-image: url("../images/line_orange_header.png");
  background-position: bottom center;
  background-repeat: repeat-x;

  transform: rotate(-3deg);
  transform-origin: bottom center;

  transition: transform 0.8s, top 0.8s;
}

header.site .logo {
  position: absolute; top: 12px; left: 72px; z-index: 96;
  width: 120px;
  border: 0;
}

header.site nav .categories {
  display: none;
  position: absolute; z-index: 120;
  margin: -4px 0 0 0;
  padding: 8px;
  font-size: 20px;
  background-color: rgb(0, 0, 0);
  border: 2px solid rgba(248, 170, 24, 0.64);
}

header.site nav .categories::before {
  content: '';
  position: absolute; top: 32px; right: 16px; left: 16px;
  height: 12px;
  background-image: url('/images/line_orange_shows.png');
  background-position: top center;
  background-repeat:repeat-x;
}

header.site nav .categories > li {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

header.site nav .categories > li > ol {
  margin: 0 0 0 24px;
  padding: 0;
}

header.site nav .categories > li > ol > li {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

header.site nav .categories > li > ol li:first-child {
  margin-bottom: 16px;
}

header.site nav .categories > li > ol:last-child {
  margin-right: 24px;
}

header.site nav .categories > li > ol li:not(:first-child) a {
  color: rgb(120, 120, 120);
  font-size: 18px;
}

header.site nav .categories > li > ol li:not(:first-child) a:hover {
  color: rgb(248, 170, 24);
}


footer.site {
  position: relative;
  padding: 24px 16px;
  min-height: 256px;
  background-color: rgb(0, 0, 0);
}

footer.site::before {
  content: '';
  position: absolute; top: -6px; left: 0;
  width: 100%;
  height: 8px;
  background-image: url("../images/slides_line_bottom.png");
  background-repeat: repeat-x;
}

footer.site .flex {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1024px;
}

footer.site .logo {
  width: 120px;
}

footer.site section {
  flex: 1 1 auto;
  text-align: center;
}

footer.site nav {
  position: static;
}

footer.site nav .categories {
  display: none;
}

footer.site .information ul {
  margin: 0;
  padding: 8px;
  list-style: none;
}

footer.site .information ul li {
  display: inline-block;
  padding: 0 12px;
  font-size: 13px;
}

footer.site .information a {
  color: inherit;
  text-decoration: none;
}

footer.site .information a:hover {
  color: rgb(248, 170, 24);
}

footer.site .copyright {
  padding: 16px;
  color: rgb(146, 146, 146);
  font-size: 12px;
  text-transform: uppercase;
}




/**
 *
 *  Basics (Form)
 *
**/

form {
  margin: 0;
  padding: 0;
}

input {
  padding: 2px;
  font-family: 'Fjalla One';
  font-size: 14px;
  font-weight: normal;
}

input[type="submit"],
input[type="button"],
a.button {
  display: block;
  margin: 0 auto;
  padding: 0 8px;
  width: 130px;
  height: 48px;
  color: rgb(256, 256, 256);
  font-family: 'Camber Regular';
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: normal;
  background: none;
  background-image: url("../images/bg_button.png");
  background-repeat: no-repeat;
  border: 0;
  cursor: pointer;
  overflow: hidden;
}

a.button {
  position: relative;
  text-indent: 200%;
  white-space: nowrap;
}

a.button:after {
  content: attr(data-label);
  position: absolute; top: 50%; left: 0;
  width: 100%;
  text-indent: 0;
  white-space: normal;
  transform: translateY(-50%);
}

form.watch input[type="text"] {
  width: auto;
  color: rgb(256, 256, 256);
  text-align: center;
  background-color: rgb(0, 0, 0);
  border: 1px solid rgb(248, 170, 24);
}

form.watch input[type="text"]::placeholder {
  color: rgb(256, 256, 256);
  opacity: 1.0;
}

form.watch input[type="text"]:focus::placeholder {
  opacity: 0.32;
}

form.watch input[type="image"] {
  vertical-align: middle;
  width: 24px;
  height: 24px;
}




/**
 *
 *  Navigation
 *  Header & Footer
 *
**/

.site nav {
  position: absolute; top: 0; right: 112px; z-index: 96;
  padding: 8px;
  height: 48px;
  font-family: 'Fjalla One';
  text-transform: uppercase;
}

.site nav img {
  display: block;
}

.site nav ul {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgb(256, 256, 256);
}

.site nav ul li {
  display: inline-block;
  vertical-align: middle;
  padding: 0 8px;
}

.site nav ul li a {
  color: inherit;
  text-decoration: none;
}

.site nav ul li a:hover,
.site nav ul li a.active {
  color: rgb(248, 170, 24);
}

.site nav .social {
  display: inline-block;
}

.site nav .social:before {
  content: 'Follow Us';
  vertical-align: middle;
  margin-left: 16px;
  color: rgb(146, 146, 146);
}

.site nav .social li {
  padding: 0;
}


header.site nav [data-uri="/shows"]:hover ~ .categories,
header.site nav .categories:hover {
  display: block;
}


/**
 *
 *  Basics (Main)
 *
**/

main {
  padding: 0 16px;
  padding-top: 24px;
  margin: 0 auto;
  max-width: 1366px;
  overflow: hidden;
}

main header {
  margin: 0 auto;
  max-width: 1080px;
}

main header.ornate {
  padding-bottom: 8px;
  background-image: url('../images/line_grunge_gray.png');
  background-position: bottom center;
  background-repeat: no-repeat;
}

main header h1 {
  display: inline-block;
  margin: 0;
  padding: 0;
  color: rgb(256, 256, 256);
  font-family: 'United Italic Condensed Black';
  font-size: 70px;
  font-weight: normal;
  text-transform: uppercase;
}

main header h2,
main header h3 {
  display: inline-block;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  color: rgb(248, 170, 24);
  font-family: 'United Italic Condensed Black';
  font-size: 50px;
  font-weight: normal;
  text-transform: uppercase;
}

main header h3 {
  font-size: 24px;
}

main header h3 .highlight {
  color: rgb(256, 256, 256);
}



/**
 *
 *  Basics (Section)
 *
**/

section {
  margin-bottom: 16px;
  padding: 0 16px;
  padding-bottom: 16px;
}

section.content {
    margin: 0 auto 40px auto;
    padding: 0;
    max-width: 1080px;
  }

section.content header:not(.ornate) {
  padding: 0;
  background: none;
}

section.content.show h3,
section.content.cast h3,
section.content.episodes h3 {
  margin: 0 0 24px 0;
  padding: 0 0 8px 0;
  font-family: 'United Italic Condensed Black';
  font-size: 50px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
  background-image: url('/images/line_grunge_gray.png');
  background-position: bottom left;
  background-repeat: no-repeat;
}

section.content h3[data-timecode]::before {
  content: attr(data-timecode);
  display: block;
  padding: 0 0 40px 0;
  color: rgb(248, 170, 24);
  font-family: 'Fjalla One';
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0;
}

section.content h4 {
  margin: 0;
  padding: 32px 0;
  font-family: 'Fjalla One';
  font-size: 24px;
  font-weight: normal;
  text-transform: uppercase;
}

section.content p {
  margin: 0;
  color: rgb(160, 160, 160);
}

section.content .items {
  margin: 0;
  padding: 0;
  list-style: none;
}

section.content .items .extraneous {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  height: 0;
}

section.content aside.message {
  padding: 24px;
  text-align: center;
}

section.content aside.message p {
  font-size: 24px;
}

section.content aside.message p .highlight {
  color: rgb(248, 170, 24);
}



/**
 *
 *  Slides
 *
**/

section.slides {
  z-index: 16;
  margin-top: -132px;
  margin-bottom: 0;
  padding: 0;
  width: 100%;
  height: 300px;
  min-height: 200px;
  /*max-height: 600px;*/

  transition: height 0.4s;
}

section.slides ol {
  position: absolute; top: 0; bottom: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 200px;
  list-style: none;

  overflow: hidden;
}

section.slides ol:after {
  content: '';
  position: absolute; bottom: 0; z-index: 96;
  width: 100%;
  height: 6px;
  background-image: url('../images/slides_line_bottom.png');
  background-position: bottom center;
  background-repeat: repeat-x;
}

section.slides ol li {
  position: absolute; top: 0; bottom: 0;
  width: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  opacity: 0.0;
  filter: blur(12px);
  transition: opacity 1.0s, filter 0.8s;
}

section.slides ol li aside {
  position: relative; bottom: 64px;
}

section.slides ol[data-slideshow-auto="true"] li aside {
  left: -100%;
  transition: left 0.8s;
}

section.slides ol li:first-child:not(.transition),
section.slides ol li.transition + li {
  z-index: 96;
  opacity: 1.0;
  filter: blur(0px);
}

section.slides ol li:first-child aside,
section.slides ol li.transition + li aside  {
  position: absolute; left: 96px; right: 96px;
  text-transform: uppercase;
  cursor: default;
}

section.slides ol li h1 {
  margin: 0;
  padding: 0;
  color: rgb(256, 256, 256);
  font-family: 'United Italic Condensed Black';
  font-weight: normal;
  -webkit-text-stroke: 2px white;
  -webkit-text-fill-color: transparent;
  font-size: 116px;
}

section.slides ol li h1 a {
  color: inherit;
  text-decoration: none;
}

section.slides ol li p {
  margin: -12px 0 0 0;
  padding: 0;
  font-size: 15px;
}

section.slides ol li time {
  position: absolute; bottom: 100%;
  color: rgb(248, 170, 24);
  font-family: 'Fjalla One';
  font-size: 25px;
}

section.slides .next,
section.slides .back {
  position: absolute; top: 56%; right: 16px; z-index: 96;
  width: 64px;
  height: 64px;
  background-image: url('/images/arrow_slides.png');
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
}

section.slides .back {
  right: auto; left: 16px;
  transform: scaleX(-1);
}

section.slides .next:hover,
section.slides .back:hover {
  background-color: rgba(0, 0, 0, 0.48);
  border-radius: 16px;
}

section.slides .bars {
  display: flex;
  position: absolute; bottom: 40px; left: 96px; z-index: 96;
  margin: 0;
  padding: 0;
  list-style: none;
}

section.slides .bars li {
  flex: 0 0 64px;
  position: relative;
  margin: 0;
  padding: 0;
  margin-right: 8px;
  height: 16px;
  background-image: linear-gradient(to right, rgb(256, 256, 256), rgb(256, 256, 256));
  background-repeat: no-repeat;
  background-size: 100% 2px;
  cursor: pointer;
}

section.slides .bars li .fill {
  display: block;
  position: absolute; top: 0; left: 0; right: 100%;
  height: 2px;
  background-color: rgb(248, 170, 24);
  cursor: default;
}

section.slides .bars li .fill::after {
  content: '';
  display: block;
  position: absolute; top: calc(100% + 8px); left: 0;
  width: 100%;
  height: 2px;
  background-color: rgb(248, 170, 24);
}

section.slides ol[data-slideshow-auto="false"] ~ .bars li .fill {
  right: 0;
}


/**
 *
 *  Modules
 *
**/

section.modules {
  padding: 0 16px 32px 16px;
}

section.modules .toggle-button {
  float: right;
}

section.modules .row {
  position: relative;
  margin: 0 auto;
  padding: 24px 0;
  max-width: 1080px;
}

section.modules .row > ul {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
}

section.modules .row.centered > ul {
  justify-content: space-around;
}

section.modules .row > ul > li {
  flex: 0 1 auto;
  min-width: 300px;
}

section.modules .row.column-2 > ul > li.double {
  flex: 0 0 50%;
  padding-right: 2px;
  max-width: 530px;
  min-width: 0;
  background: none;
}

section.modules .row.column-2 > ul > li.double:last-child {
  padding-right: 0;
  padding-left: 2px;
}

section.modules .row.column-2 > ul > li.double img {
  max-width: 100%;
}


section.modules .module {
  position: relative;
  background-image: url("../images/bg_module.png");
  background-repeat: no-repeat;
  background-position: top center;
}

section.modules .module.style-2 {
  background-image: url("../images/bg_module_2.png");
}

section.modules .module img {
  display: block;
}

section.modules .module img.test {
  width: 100%;
}

section.modules .module.small,
section.modules .module.medium {
  min-height: 338px;
}

section.modules .module.small:not(:last-child) {
  margin-right: 8px;
}

section.modules .module.small .content {
  position: relative; z-index: 8;
  max-width: 300px;
}

section.modules .module .content h1 {
  position: relative; z-index: 8;
  margin: 0;
  padding: 0;
  font-family: 'United Italic Condensed Black';
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 1px;

}

section.modules .module.small .content h1 {
  height: 56px;
  font-size: 50px;
  text-align: center;
  background-image: url("../images/line_module_orange.png");
  background-repeat: no-repeat;
  background-position: bottom center;
}

section.modules .module.small .content > img {
  display: block;
  position: relative; z-index: 0;
  margin-top: -8px;
  max-width: 100%;
}

section.modules .module .content p {
  margin: 0;
  padding: 16px;
  font-size: 14px; /* Main Font */
  letter-spacing: 1px;
}


section.modules .module.ad-300 {
  padding-top: 48px;
}

section.modules .module.ad-300 .content {
  width: 304px;
  height: 254px;
  background-color: rgb(0, 0, 0);
  border: 2px solid rgb(88, 88, 88);
}


section.modules .module.medium {
  width: 33%;
  max-width: 350px;
  min-width: 192px;
  background-image: url("../images/bg_module_medium.jpg");
}

section.modules .module.medium:not(:last-child) {
  margin-right: 8px;
}

section.modules .module.medium:after {
  content: '';
  position: absolute; top: 350px; left: 0; z-index: 0;
  width: 100%;
  height: 24px;
  background-image: url("../images/bg_module_medium_grunge.png");
  background-repeat: no-repeat;
  background-position: top center;
}

section.modules .module.medium .content {
  width: 100%;
}

section.modules .module.medium .content > img {
  max-width: 100%;
}

section.modules .module.medium .content h1 {
  margin-top: -24px;
  height: auto;
  font-size: 40px;
  text-align: center;
  line-height: 100%;
  background: none;
}

section.modules .module.medium .content p {
  padding: 8px 16px;
}


section.modules .row > ul > li.module.fullsize {
  min-width: 280px;
}

section.modules .module.fullsize img {
  max-width: 100%;
}


section.modules .module.large {
  position: relative;
  flex: 1 1 100%;
  max-width: 720px;
  min-height: 400px;
  background: none;
}

section.modules .module.large:first-child {
  margin-right: 8px;
}

section.modules .module.large .content {
  min-height: 400px;
  background-position: top right;
  background-repeat: no-repeat;
}

section.modules .module.large h1 {
  padding: 32px 0 0 72px;
  color: rgb(248, 170, 24);
  font-size: 52px;
}

section.modules .module.large h2 {
  margin: 0;
  padding: 0 0 0 96px;
  font-family: 'United Italic Condensed Black';
  font-size: 28px;
  font-weight: normal;
  text-transform: uppercase;
}

section.modules .module.large article {
  display: flex;
  position: absolute; right: 12px; bottom: 8px; left: 12px;
  padding: 12px;
  max-width: 700px;
  min-height: 274px;
  background-image: url("../images/bg_module_large_grunge.png");
  background-repeat: no-repeat;
}

section.modules .module.large h1:empty:after,
section.modules .module.large h2:empty:after {
  content: '\0000a0';
  display: block;
}

section.modules .module.large article .media {
  position: relative;
  flex: 1 1 auto;
  align-self: center;
  max-width: 444px;
}

section.modules .module.large article .caption {
  flex: 0 1 auto;
  max-width: 220px;
}

section.modules .module form.watch {
  margin: 0 auto;
  padding: 16px 0;
  text-align: center;
}

section.modules .module form.watch input[type="text"] {
  display: block;
  margin: 0 auto 16px auto;
  padding: 8px 24px;
  font-size: 12px;
  text-transform: uppercase;
}

section.modules .module.system {
  min-width: 328px;
  background: none;
}

.module .social-media {
  padding: 0 14px;
  width: 328px;

  background-image: url('/images/bg_social_ornate_left.png'), url('/images/bg_social_ornate_right.png');
  background-position: top left, top right;
  background-repeat: no-repeat;
}

.module .social-media ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.module .social-media .social-embeds {
  margin: 0 auto;
  margin-bottom: 2px;
  width: 300px;
  border: 1px solid rgb(128, 128, 128);
}

.module .social-media .social-embeds li {
  height: 350px;
  background-color: rgb(256, 256, 256);
}

.module .social-media .buttons {
  display: flex;
  justify-content: space-between;
  height: 46px;
}

.module .social-media .buttons li {
  flex: 1 1 calc(50% - 1px);
  position: relative;
  height: 46px;
  text-align: center;
  cursor: pointer;

  background-color: rgb(56, 56, 56);
  background-image: url('/images/bg_social_tab_button.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.module .social-media .buttons li:first-child {
  background-image: url('/images/bg_social_tab_button_first.png');
  background-position: left center;
}

.module .social-media .buttons li:last-child {
  background-image: url('/images/bg_social_tab_button_final.png');
  background-position: right center;
}

.module .social-media .buttons li:last-child {
  margin-right: 0;
}

.module .social-media .buttons span {
  display: block;
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
}


[data-tabs-active="1"] [data-tabs-local="1"] span,
[data-tabs-active="2"] [data-tabs-local="2"] span,
.module .social-media .buttons span:hover {
  background-color: rgb(248, 170, 24);
}

.module .social-media .buttons span img {
  display: block;
  position: absolute; top: 50%; left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 32px;
  height: 32px;
}





/**
 *
 *  Page: Shows
 *
 *
**/

section.shows {
  background-image: url('../images/line_grunge_gray.png');
  background-position: bottom center;
  background-repeat: no-repeat;
}

section.shows header h1:after {
  content: ' / ';
  position: relative; top: -4px;
  margin: 0 8px;
  font-size: 50px;
}

section.shows ol.items {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 40px;
  margin: 0 auto;
  padding: 16px 0;
  list-style: none;
  /*
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  padding: 16px 0;
  list-style: none;
  */
}

section.shows ol.items:not(:last-of-type) {
  margin-bottom: 24px;
}

section.shows ol.items li {
  /*flex: 0 1 auto;*/
  /*margin: 16px 8px;*/
  max-width: 228px;
  border: 4px solid rgb(248, 170, 24);
}

section.shows ol.items li img {
  display: block;
  width: 100%;
}


/**
 *
 *  Page: Shows (Show)
 *
**/

header.show h1 {
  display: block;
  padding-bottom: 8px;
  background-image: url('/images/line_grunge_gray.png');
  background-position: bottom center;
  background-repeat: no-repeat;
}

header.show nav {
  position: relative; z-index: 56;
  margin: 0 auto 56px auto;
  padding: 4px 0;
  max-width: 1080px;
  font-family: 'Fjalla One';
  font-size: 24px;
  text-transform: uppercase;
}

header.show nav li:not(.remainder) a {
  padding: 0 20px;
  color: inherit;
  text-decoration: none;
}

header.show nav ul > li:not(.remainder) > a {
  background-image: url('/images/bg_href.png'), url('/images/bg_href_active.png');
  background-position: top left, 0 -34px;
  background-repeat: no-repeat;
}

header.show nav ul > li:not(.remainder):hover > a,
header.show nav ul > li.active > a {
  background-position: 0 -34px, top left;
}

header.show nav a:hover,
header.show nav li:hover:not(.remainder) > a,
header.show nav li.active > a {
  color: rgb(248, 170, 24);
}

header.show nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

header.show nav ul li {
  position: relative;
  flex: 0 1 auto;
  margin-right: 4px;
}

header.show nav ul > li {
  padding-bottom: 10px;
  background-image: url('/images/line_grunge_gray_skinny.png'), url('/images/line_grunge_orange_skinny.png');
  background-position: bottom left, 0 -6px;
  background-repeat: no-repeat;
}

header.show nav ul > li:not(:last-child):hover {
  background-position: 0 -6px, bottom left;
}

header.show nav ul > li:last-child {
  background-position: bottom right, 0 -6px;
}

header.show nav ul > li:not(:first-child):not(:last-child) > a {
  padding-right: 8px;
}

header.show nav ul li.select > a::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  position: relative; top: -2px;
  margin: 0 0 0 8px;
  width: 24px;
  height: 24px;
  background-image: url('/images/arrow_schedule.png');
  background-repeat: no-repeat;
  background-size: 100%;
  transform: rotate(90deg);
}

header.show nav ul > li:last-child {
  flex: 1 0 auto;
  margin-right: 0;
  text-align: right;
}

header.show nav ol {
  display: none;
  position: absolute; top: calc(100% - 2px); right: 0; left: 0;
  margin: 0;
  padding: 8px;
  font-size: 20px;
  text-align: right;
  background-color: rgb(0, 0, 0);
  border: 3px solid rgb(248, 170, 24);
  list-style: none;
}

header.show nav li:hover ol {
  display: block;
}

header.show nav ol li a:not(.arrow) {
  display: block;
  padding: 0 16px;
  padding-right: 0;
  line-height: 32px;
}

section.show .flex {
  justify-content: space-between;
}

section.show .textual {
  flex: 0 1 auto;
  margin-right: 24px;
  /*max-width: 480px;*/
}

section.show .textual p {
  font-size: 16px; /* Main Font */
}

section.show .media {
  flex: 0 1 auto;
  /*width: 100%;*/
  min-width: 50%;
  max-width: 536px;
}

section.cast ol.items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -8px;
}

section.cast ol.items li {
  flex: 1 1 auto;
  margin: 0 0 24px 0;
  padding: 8px;
  width: 25%;
  max-width: 250px;
}

section.cast ol.items li img {
  display: block;
  margin-bottom: 16px;
  max-width: 100%;
}

section.cast ol.items li h4 {
  margin: 0 0 16px 0;
  padding: 0 0 8px 0;
  background-image: url("/images/line_grunge_orange.png");
  background-position: bottom center;
  background-repeat: no-repeat;
}

section.cast ol.items li h4[data-subtitle]:not([data-subtitle=""])::after {
  content: attr(data-subtitle);
  display: block;
  margin-bottom: 4px;
  color: rgb(200, 200, 200);
  font-size: 16px;
}

section.cast ol.items li .toggle-button {
  float: right;
}

/*
section.cast ol.items li [data-toggle-affect] {
  height: 100px;
  overflow: hidden;
}
*/

section.episodes ol.items li {
  display: flex;
  position: relative;
  margin-bottom: 48px;
  padding-bottom: 48px;
}

section.episodes ol.items li figure {
  margin-right: 32px;
  flex: 0 1 auto;
  min-width: 280px;
}

section.episodes ol.items li article {
  flex: 0 1 auto;
  max-width: 500px;
}

section.episodes ol.items li h4 {
  color: rgb(248, 170, 24);
  font-size: 30px;
}

section.episodes ol.items li h4:first-child {
  padding-top: 0;
}

section.episodes ol.items li .number {
  display: block;
  font-size: 16px; /* Main Font */
  text-transform: uppercase;
}

section.episodes ol.items li time {
  display: block;
  color: rgb(160, 160, 160);
  font-size: 12px; /* Main Font */
}

section.episodes ol.items li p {
  font-size: 16px; /* Main Font */
}



/**
 *
 *  Page: Schedule
 *
**/

section.schedule header h3 {
  margin-left: 16px;
  font-family: 'Fjalla One';
  font-weight: normal;
}

section.schedule.schedule .items li {
  display: flex;
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 32px;
}

section.schedule.schedule .items li > .flex:first-child {
  flex: 1 1 100%;
  order: 2;
}

section.schedule.schedule .items li > .flex:last-child {
  flex: 0 1 auto;
  order: 1;
  margin-right: 16px;
}

section.schedule.schedule .items li figure {
  order: 2;
  padding: 0 16px;
  min-width: 200px;
  max-width: 220px;
}

section.schedule.schedule .items li time {
  order: 1;
  flex: 0 0 96px;
  display: block;
  color: rgb(136, 136, 136);
  font-family: 'Fjalla One';
  font-size: 21px;
  text-transform: uppercase;
  white-space: nowrap;
}

section.schedule.schedule .items li time[data-now="1"] {
  color: rgb(248, 170, 24);
}

section.schedule.schedule .items li time[data-now="1"]::before {
  content: 'On Now';
  display: block;
  color: rgb(248, 170, 24);
  font-size: 30px;
}

section.schedule.schedule .items li header {
  flex: 1 0 296px;
  order: 3;
  padding: 0;
}

section.schedule.schedule .items li header h2,
section.schedule.schedule .items li header h3 {
  display: block;
  margin: 0;
  color: rgb(256, 256, 256);
  font-family: 'Fjalla One';
  font-size: 24px;
  white-space: nowrap;
}

section.schedule.schedule .items li header h3 {
  color: rgb(248, 170, 24);
  font-size: 22px;
  white-space: normal;
}

section.schedule.schedule .items li article {
  flex: 1 1 100%;
  order: 4;
}

section.schedule.large header {
  position: relative;
  margin-bottom: 8px;
  padding-bottom: 12px;
  font-family: 'Fjalla One';
  background-image: url("../images/line_grunge_gray.png");
  background-position: bottom center;
  background-repeat: no-repeat;
}

section.schedule.large header h1 {
  margin-right: 16px;
  font-size: 46px;
}

section.schedule.large header time {
  color: rgb(248, 170, 24);
  font-size: 22px;
  text-transform: uppercase;
}

section.schedule.large header a {
  position: absolute; right: 0; bottom: 18px;
  padding-right: 32px;
  color: inherit;
  font-size: 20px;
  text-decoration: none;
  text-transform: uppercase;
  background-image: url("../images/arrow_schedule.png");
  background-repeat: no-repeat;
  background-position: right center;
}

section.schedule.large header a:hover {
  color: rgb(248, 170, 24);
}

nav.schedule {
  display: flex;
  margin-bottom: 32px;
  padding: 4px 0;
  padding-bottom: 16px;

  background-image: url('../images/line_grunge_gray.png');
  background-position: bottom center;
  background-repeat: no-repeat;
}

nav.schedule a {
  color: inherit;
  text-decoration: none;
}

nav.schedule span.browse {
  position: relative;
  width: 40px;
  outline: rgba(150, 150, 0, 0.48);
  background-image: url('/images/arrow_schedule_slots.png');
  background-position: top left;
  background-repeat: no-repeat;
  cursor: pointer;
}

nav.schedule span.browse::after {
  content: '';
  position: absolute; top: 50%; left: 4px;
  width: 32px;
  height: 32px;
  background-image: url('/images/arrow_schedule.png');
  background-repeat: no-repeat;
  transform: translateY(-50%) scaleX(-1);
}

nav.schedule span.browse.next {
  transform: scaleX(-1);
}

nav.schedule ol {
  display: flex;
  flex: 1 1 100%;
  margin: 0 2px;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

nav.schedule ol li {
  flex: 0 0 14.28%;
  padding: 0 2px;
  color: rgb(160, 160, 160);
  font-family: 'Fjalla One';
  font-size: 21px;
  text-align: center;
  text-transform: uppercase;
  border-left: 1px solid rgb(248, 170, 24);
}

nav.schedule ol li:first-child {
  border: 0;
}

nav.schedule ol li.active time,
nav.schedule ol li.active time span,
nav.schedule ol li:hover a time {
  color: rgb(256, 256, 256);
}

nav.schedule ol li time,
.large nav.schedule ol li a {
  display: block;
  margin: 0 2px;
  padding: 4px 6px;
  max-width: 158px;
  max-height: 68px;
  background-image: url("/images/bg_schedule_slot.png"), url('/images/bg_schedule_slot_active.png');
  background-position: top left, 0 68px;
  background-repeat: no-repeat;
  cursor: pointer;
}

nav.schedule ol li time {
  margin: 0 auto;
}

nav.schedule ol[data-browse-wrap="false"] li[data-browse-final] ~ li {
  display: none;
}

.large.schedule {
  margin-bottom: 16px;
}

.large nav.schedule {
  margin-bottom: 0;
}

.large nav.schedule ol li a {
  margin: 0 auto;
  max-width: 158px;
  min-height: 104px;
  max-height: none;
  background: none;
}

.large nav.schedule ol li a:hover,
.large nav.schedule ol li.active a {
  background-image: url('/images/bg_schedule_slot_active.png');
  background-position: 0 0;
  background-repeat: no-repeat;
}

nav.schedule ol li:hover time,
nav.schedule ol li.active time {
  background-position: 0 68px, top left;
}

nav.schedule ol li span.weekday {
  display: block;
  color: rgb(256, 256, 256);
  font-size: 25px;
}

.large nav.schedule {
  position: relative;
  background-image: url("/images/line_grunge_gray_short.png"), url('../images/line_grunge_gray.png');
  background-repeat: no-repeat;
  background-position: center 36px, bottom center;
}

.large nav.schedule span.browse {
  margin-top: 40px;
}

.large nav.schedule li {
  flex: 0 0 100%;
  padding: 0 2px;
  max-width: 16.67%;
  min-height: 120px;
}

.large nav.schedule time {
  display: block;
  margin: 0 auto;
  padding: 0;
  max-width: 158px;
  height: 40px;
  font-family: 'Fjalla One';
  font-size: 15px;
  text-transform: uppercase;
  line-height: 32px;
  background: none;
  cursor: default;
}

.large nav.schedule .active time {
  font-size: 24px;
  border: 4px solid rgb(248, 170, 24);
}

.large nav.schedule h2 {
  margin: 0 0 4px 0;
  padding: 0;
  color: rgb(256, 256, 256);
  font-family: 'Fjalla One';
  font-size: 20px;
  font-weight: normal;
  text-transform: uppercase;
}

.large nav.schedule p {
  margin: 0;
  padding: 0;
  font-family: 'Camber Regular';
  font-size: 13px;
  text-transform: none;
}

.large nav.schedule li a:hover p,
.large nav.schedule li.active a p {
  color: rgb(0, 0, 0);
}



/**
 *
 *  Page: Where to Watch
 *
**/

section.channels form.watch {
  margin: 0 0 8px 0;
  padding: 8px;
}

section.channels form.watch fieldset {
  display: inline-block;
}

section.channels form.watch fieldset::before {
  content: 'Zip Code';
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  font-family: 'Fjalla One';
  font-size: 24px;
  text-transform: uppercase;
}

section.channels form.watch input[type="text"] {
  vertical-align: middle;
  width: auto;
  font-family: 'Fjalla One';
  font-size: 24px;
  text-align: right;
}

section.channels form.watch input[type="image"] {
  vertical-align: middle;
  width: 32px;
  height: 32px;
}

section.channels .items {
  display: flex;
  flex-wrap: wrap;
  padding: 16px 0 0 0;
}

section.channels .items li {
  flex: 0 1 20%;
  padding: 8px;
  font-family: 'Fjalla One';
  text-align: center;
  text-transform: uppercase;
  border: 1px solid rgb(248, 170, 24);
  border-width: 0 1px 1px 0;
}

section.channels .items li:nth-child(5n):nth-last-child(-n + 6):not(:last-child) ~ li {
  border-bottom: 0;
}

section.channels .items li:nth-child(5n) {
  border-right: 0;
}

section.channels .items li:last-child:not(:nth-child(5n)) {
  border-right-width: 1px;
}

section.channels .items h4 {
  margin: 0;
  padding: 0;
  color: rgb(248, 170, 24);
  font-weight: normal;
}

section.channels .items span {
  display: block;
  font-size: 30px;
}

section.providers {
  padding-bottom: 64px;

  background-image: url("../images/line_grunge_orange.png");
  background-position: bottom center;
  background-repeat: no-repeat;
}

section.content.providers header {
  display: flex;

  margin: 0 auto 32px auto;
  padding-top: 8px;
  max-width: 1076px;
  height: 200px;

  background-image: url('/images/bg_grunge_major.jpg'), url('/images/bg_grunge_major_top.png'), url('/images/bg_grunge_major_bottom.png');
  background-position: center 12px, top center, bottom center;
  background-repeat: no-repeat;
}

section.providers header figure {
  flex: 0 0 348px;
}

section.providers header .textual {
  padding-top: 32px;
  width: 100%;
  text-align: center;
}

section.providers header .textual h1 {
  display: block;
  font-size: 60px;
}

section.providers header .textual h2 {
  font-family: 'Fjalla One';
  font-size: 34px;
}

section.providers .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

section.providers .items li {
  flex: 0 1 48%;
  align-self: flex-start;
  position: relative;
  padding: 24px 0;
  padding-left: 64px;

  background-image: url('/images/line_grunge_gray_skinny.png');
  background-repeat: no-repeat;
}

section.providers .items li:nth-last-child(-n + 2) {
  background-image: url('/images/line_grunge_gray_skinny.png'), url('/images/line_grunge_gray_skinny.png');
  background-position: top left, bottom left;
}

section.providers .items li aside {
  height: 0;
  overflow: hidden;
  transition: height 0.4s;
}

section.providers .items li.toggled aside {
  height: auto;
}

section.providers .items li .phone {
  display: block;
  padding: 4px 0;
  font-family: 'Fjalla One';
  font-size: 24px;
}

section.providers .items li a {
  display: block;
  padding: 2px 0;
  color: rgb(248, 170, 24);
  text-decoration: none;
  letter-spacing: 1px;
}

section.providers .items li a:hover {
  color: rgb(256, 256, 256);
}

section.providers .toggle-button {
  position: absolute; top: 40px; left: 0;
}

section.providers .toggle-button:only-child {
  display: none;
}

section.on-demand {
  padding-bottom: 56px;

  background-image: url("../images/line_grunge_orange.png");
  background-position: bottom center;
  background-repeat: no-repeat;
}

section.on-demand header {
  margin-bottom: 32px;
  padding-bottom: 16px;
}

section.on-demand header h1 {
  margin-right: 16px;
  line-height: 64px;
}

section.on-demand header h1,
section.on-demand header h3 {
  display: inline;
  letter-spacing: 1px;
}

section.on-demand .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

section.on-demand .items > li {
  flex: 0 1 100%;
  margin-bottom: 32px;
  max-width: 480px;
}

section.on-demand .items > li h2 {
  margin: 0;
  padding: 0;
  font-family: 'Fjalla One';
  font-size: 36px;
  font-weight: normal;
  text-transform: uppercase;
}

section.on-demand .items > li figure {
  margin-bottom: 16px;
}

section.on-demand .items > li figure::before,
section.on-demand .items > li figure::after {
  content: '';
  display: block;
  width: 100%;
  height: 16px;
  background-image: url('/images/line_demand_orange.png');
  background-repeat: no-repeat;
}

section.on-demand .items > li figure::after {
  transform: rotate(180deg);
}

section.on-demand .items > li > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
}

section.on-demand .items > li > ul li {
  flex: 0 1 33%;
  margin-bottom: 2px;
  background-color: rgb(48, 48, 48);
}

section.on-demand .items > li > ul li img {
  display: block;
  max-width: 100%;
}

section.on-demand .items > li > ul li:hover {
  background-color: rgb(248, 170, 24);
}



/**
 *
 *  Page: People's Network (Submissions)
 *
**/

section.network {
  margin-top: -24px;
  margin-bottom: 0;
  padding: 60px;
  color: rgb(0, 0, 0);
  background-color: rgb(256, 256, 256);
  background-image: url('/images/network_grunge_top.png'), url('/images/network_grunge_divider.png'), url('/images/bg_network_form.jpg');
  background-position: top center, bottom -40px center, top center;
  background-repeat: no-repeat, no-repeat, repeat-y;
}

section.network header h1 {
  display: block;
  margin-bottom: 16px;
  color: rgb(0, 0, 0);
  text-align: center;
  letter-spacing: 2px;

  background-image: url('/images/line_grunge_orange_skinny.png');
  background-position: bottom center;
  background-repeat: no-repeat;
}

section.network p {
  margin-bottom: 12px;
  color: rgb(0, 0, 0);
  font-size: 20px; /* Main Font */
  letter-spacing: 1px;
}

section.network .flex {
  justify-content: space-between;
  padding: 24px 0;
}

section.network .flex > div {
  flex: 0 1 450px;
  padding-top: 4px;
  max-width: 450px;
  background-image: url('/images/line_grunge_orange_skinny.png');
  background-position: top center;
  background-repeat: no-repeat;
}

section.network .flex > div img {
  margin-bottom: 16px;
}

section.network .flex > div h2 {
  margin: 0 0 8px 0;
  padding: 0;
  font-family: 'United Italic Condensed Black';
  font-size: 55px;
  font-weight: normal;
  text-align: center;
  text-transform: uppercase;

  background-image: url('/images/line_grunge_orange_skinny.png');
  background-position: bottom center;
  background-repeat: no-repeat;
}

section.network .flex > div p {
  font-size: 18px; /* Main Font */
}

form.network {
  margin: 0 auto;
  padding-bottom: 40px;
  max-width: 1080px;
  color: rgb(0, 0, 0);
  background-color: rgb(256, 256, 256);
  background-image: url('/images/network_grunge_divider.png'), url('/images/network_grunge_divider.png'), url('/images/bg_network_form.jpg');
  background-position: top -40px center, bottom -40px center, top center;
  background-repeat: no-repeat, no-repeat, repeat-y;
}

form.network .flex.choices {
  flex-wrap: wrap;
}

form.network .flex.choices .choice {
  padding-right: 8px;
  width: 200px;
}

form.network .form-fields-top label {
  flex: 1 0 248px;
  align-self: center;
}

form.network .form-fields-bottom label {
  flex: 1 0 180px;
  align-self: center;
}

form.network .form-fields-top fieldset label,
form.network .form-fields-bottom fieldset label {
  margin-right: 8px;
  text-align: right;
  white-space: nowrap;
}

form.network .flex .email {
  flex: 1 1 70%;
  max-width: 70%;
}

form.network .flex .zipcode {
  flex: 1 1 30%;
  max-width: 30%;
  min-width: 200px;
}

form.network .flex .zipcode label {
  flex: 0 0 120px;
}

form.network .flex .zipcode .flex > div {
  flex: 1 1 auto;
}



/**
 *
 *  Pages: Legal and Errors
 *
**/

section.legal article,
section.error article {
  padding: 24px 8px;
}

section.legal h2,
section.error h2 {
  margin-top: 16px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  font-family: 'United Italic Condensed Black';
  font-size: 48px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-image: url("../images/line_grunge_orange.png");
  background-position: bottom center;
  background-repeat: no-repeat;
}

section.legal h3,
section.error h3 {
  margin-bottom: 8px;
  color: rgb(248, 170, 24);
  font-family: 'Fjalla One';
  font-weight: normal;
  text-transform: uppercase;
}

section.legal p,
section.error p {
  margin: 8px 0;
  color: rgb(256, 256, 256);
}

section.legal p span.highlight {
  color: rgb(248, 170, 24);
  font-weight: bold;
}

section.legal a,
section.error a {
  color: rgb(248, 170, 24);
  text-decoration: none;
}

section.legal a:hover,
section.error a:hover {
  text-decoration: underline;
}

section.legal ul {
  margin: 8px 0;
}

section.legal ul li {
  margin-bottom: 8px;
}



/**
 *
 *  Form (Standard)
 *
**/

main form {
  padding: 40px 64px;
}

main form header {
  margin-bottom: 16px;
}

main form header img {
  margin-left: 72px;
}

main form header h1 {
  vertical-align: bottom;
  margin-left: 16px;
  color: rgb(0, 0, 0);
  font-size: 60px;
  letter-spacing: 2px;
}

main form fieldset {
  margin: 0 0 16px 0;
  padding: 0;
  border: 0;
}

main form label {
  font-size: 20px; /* Main Font */
}

main form fieldset label.optional::after {
  content: '(optional)';
  display: block;
  padding-right: 4px;
  color: rgb(148, 148, 148);
  font-size: 10px; /* Main Font */
  text-transform: uppercase;
}

main form input[type="text"],
main form select,
main form textarea {
  padding: 4px 8px;
  width: 100%;
  height: 40px;
  font-family: 'Camber Regular';
  font-size: 18px;
  background-color: rgb(248, 170, 24);
  border: 0;
}

main form select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;

  background-image: url('/images/icon_arrow_select.png');
  background-position: right center;
  background-repeat: no-repeat;
}

main form select option {
  font-size: 18px; /* Main Font */
  background-color: rgb(248, 170, 24);
}

main form .flex.choices label {
  float: left;
  margin-right: 8px;
}

main form input[type="checkbox"] {
  appearance: none;
  visibility: hidden;
  margin: 0;
  padding: 0;
  width: 0;
  height: 0;

  -moz-appearance: none;
  -webkit-appearance: none;
}

main form .form-legal label {
  display: inline-block;
  width: 100%;
  font-size: 12px; /* Main Font */
  text-align: left;
  white-space: normal;
}

main form .form-legal label span {
  display: inline-block;
  width: calc(100% - 40px);
}

main form input[type="checkbox"] + label::before {
  content: '';
  display: inline-block;
  vertical-align: top;
  margin: 0 8px 0 0;
  padding: 0;
  width: 24px;
  height: 24px;
  background-color: rgb(248, 170, 24);
}

main form input[type="checkbox"]:checked + label::before {
  content: '';
  background-image: url('/images/icon_cross_mark.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}

main form textarea {
  height: 180px;
}

main form fieldset.submit {
  padding-top: 24px;
}

main form fieldset.submit input {
  margin: 0;
}

main form .messages {
  margin: 0 0 24px 0;
  padding: 24px;
  border: 2px solid rgb(0, 0, 0);
}

main form .messages.success {
  background-color: rgba(0, 250, 0, 0.32);
  border-color: rgba(0, 250, 0, 0.72);
}

main form .messages.errors {
  background-color: rgba(250, 0, 0, 0.32);
  border-color: rgba(250, 0, 0, 0.72);
}

main form .messages li {
  margin: 0;
  padding: 4px;
  font-size: 14px; /* Main Font */
}



/**
 *
 *  Dividers
 *
**/

section.modules .row:not(:last-child):after,
section.episodes ol.items li:not(:last-child)::after,
section.schedule ol.items li:not(:last-child)::after {
  content: '';
  display: block;
  position: absolute; top: 100%; left: 0;
  width: 100%;
  height: 8px;
  background-image: url("../images/line_grunge_orange.png");
  background-position: bottom center;
  background-repeat: no-repeat;
}


hr {
  margin: 0;
  padding: 32px 0;
  background-image: url("../images/line_grunge_gray.png");
  background-position: center center;
  background-repeat: no-repeat;
  border: 0;
}


/**
 *
 *  Anchors and Toggle
 *
**/

a.arrow {
  padding-right: 32px;
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  background-image: url("/images/arrow_schedule.png");
  background-repeat: no-repeat;
  background-position: right center;
}

a.arrow-element::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  position: relative; top: -2px;
  margin-left: 8px;
  width: 24px;
  height: 24px;
  background-image: url("/images/arrow_schedule.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}

.toggle-button {
  display: block;
  position: relative;
  width: 48px;
  height: 48px;
  background-image: url('/images/bg_button_toggle.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  cursor: pointer;
}

.toggle-button::before {
  content: '+';
  position: absolute; top: 50%;
  width: 100%;
  color: rgb(0, 0, 0);
  font-size: 40px;
  text-align: center;
  transform: translateY(-50%);
}

.toggled .toggle-button::before {
  content: '-';
}

.toggled [data-toggle-affect] {
  height: auto !important;
  overflow: visible !important;
}


/**
 *
 *  Tabs
 *
**/

[data-tabs-local-content] {
  width: 0;
  max-height: 0;
  overflow: hidden;
}

[data-tabs-local-content].active {
  width: auto;
  max-height: none;
  overflow: visible;
}


/**
 *
 *  Video
 *
**/

[data-video] {
  position: relative;
  cursor: pointer;
}

[data-video]::before {
  content: "\0025B6";
  display: block;
  position: absolute; top: 50%; left: 50%; z-index: 72;
  padding: 24px 40px;
  color: rgba(256, 256, 256, 0.8);
  font-size: 28px;
  background-color: rgba(0, 0, 0, 0.64);
  border: 2px solid rgba(256, 256, 256, 0.8);
  border-radius: 16px;
  box-shadow: 0 0 4px rgba(256, 256, 256, 0.8);
  transform: translateY(-50%) translateX(-50%);
}

[data-video]:hover::before {
  color: rgb(248, 170, 24);
  background-color: rgba(0, 0, 0, 0.80);
  border-color: rgb(256, 256, 256);
}

[data-video] iframe,
.video-embed iframe {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 80;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-embed {
  position: relative;
  margin: 8px 0;
}

.video-embed img {
  width: 100%;
}