* { 
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}
html, body {
    width: 100%;
    height: 100%;
}
body {
    background-color: #000000;
}
a {
    text-decoration: none;
    color: #FFFFFF;
}
a:focus,
button:focus {
    outline: none;
}

/* Nav */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 2;
}
#nav ul {
    width: 100%;
    display: flex;
    flex-direction: row;
}
#nav ul li {
    text-align: center;
}
#nav ul li a,
#nav ul li button {
    display: block;
    font-family: 'Circular Pro', Helvetica, sans-serif;
    font-size: 35px;
    font-weight: 300;
    color: #FFFFFF;
}
#nav ul li a span,
#nav ul li button span {
    position: relative;
}
#nav ul li a span:after,
#nav ul li button span:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    opacity: 0;
    background-color: #FFFFFF;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    transition: opacity .5s cubic-bezier(.24,.015,.145,.93),
        transform .65s cubic-bezier(.41,.07,.155,.86);
}
#nav ul li a:hover span:after,
#nav ul li button:hover span:after {
    opacity: 1;
    transform: none;
}
#nav ul li button {
    padding: 0;
    margin: auto;
    border: none;
    outline: none;
    background-color: transparent;
    cursor: pointer;
}
#nav ul li a.logo span:after {
    display: none;
}
#nav a.logo {
    display: block;
    width: 58px;
    height: 100%;
    line-height: 80px;
    margin: 0 auto;
}
#nav .logo img {
    max-width: 100%;
    vertical-align: middle;
}
#nav .hamburger {
    position: fixed;
    top: 20px;
    right: 32px;
    width: 40px;
    height: 40px;
    padding: 14px 7.5px;
    cursor: pointer;
}
#nav .hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #FFFFFF;
    transition: transform .5s cubic-bezier(.24, .015, .145, .93);
}
#nav .hamburger span:nth-child(2) {
    margin: 3px 0;
}
#nav ul.overlay-active + .hamburger span:first-child {
    transform: translateY(5px);
}
#nav ul.overlay-active + .hamburger span:last-child {
    transform: translateY(-5px);
}
 
@media all and (min-width: 1024px) {
    #nav {
        height: 138px;
    }
    #nav.nav__opaque {
        background-color: hsla(0, 0%, 0%, .9);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
    #nav ul li { 
        flex: 1;
    }
    #nav ul li a,
    #nav ul li button {
        font-size: 21px;
        line-height: 138px;
        letter-spacing: -0.4px;
    }
    #nav a.logo {
        width: 89px;
        line-height: 138px;
    }
    #nav .hamburger,
    #nav a.logo-mobile {
        display: none;
    }
}
@media all and (max-width: 1023px) {
    #nav ul {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        flex-direction: column;
        justify-content: center;
        background-color: #000000;
        visibility: hidden;
        opacity: 0;
        transition: opacity .5s cubic-bezier(.24,.015,.145,.93),
            visibility 0s linear .5s;
    }
    #nav ul.overlay-active {
        visibility: visible;
        opacity: 1;
        transition: opacity .5s cubic-bezier(.24,.015,.145,.93),
            visibility 0s linear;
    }
    #nav ul li {
        opacity: 0;
        transform: translateY(10px);
        transition: transform .4s cubic-bezier(.41,.07,.155,.86),
            opacity .5s cubic-bezier(.24,.015,.145,.93);
        margin-bottom: 30px;
    }
    #nav ul.overlay-active li {
        opacity: 1;
        transform: none;
        transition-delay: 0.3s; 
    }
    #nav ul li.hidden-mobile,
    #nav a.logo-desktop {
        display: none;
    }
    #nav .hamburger {
        display: block;
    }
}

/* Mini nav (shows page) */
#nav.nav__compact {
    display: flex;
    align-items: center;
    padding: 0 6.25%;
}
#nav.nav__compact .back {
    padding: 0; 
    margin: 0;
    border: 0;
    outline: none;
    cursor: pointer;
    background-color: transparent;
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
#nav.nav__compact .back .back-icon {
    width: 32px;
    height: 32px;
    margin-right: 16px;
    background-image: url('../images/icons/arrow-back.png');
    background-repeat: no-repeat;
    background-size: 11px 19px;
    background-position: center;
}
#nav.nav__compact .back .back-label {
    font-family: 'Circular Pro', Helvetica, sans-serif;
    font-size: 21px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: -0.4px;
    color: #FFFFFF;
}

/* Content */
body.scroll-lock {
    overflow: hidden;
}
#content-wrapper {
    position: relative;
    height: 100%;
    padding-top: 80px;
}
.content-centered {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 8.25%;
}
@media all and (min-width: 1024px) {
    #content-wrapper {
        padding-top: 138px;
    }
    .content-centered { 
        padding: 0 7.25%;
    }
}
.main {
    position: relative;
    width: 100%;
    height: 100%;
}
.main.animate {
    opacity: 0;
}
#content {
    height: 100%;
    transition: filter .5s cubic-bezier(.24,.015,.145,.93),
        transform .5s cubic-bezier(.41,.07,.155,.86),
        -webkit-filter .5s cubic-bezier(.24,.015,.145,.93);
}
#content.blurred {
    -webkit-filter: blur(20px);
    filter: blur(20px);
    transform: scale(1.05);
    opacity: .75;
}
::-webkit-scrollbar {
    display: none;
}

/* Home */
#featured-shows {
    margin-bottom: 0;
}
.featured-shows__show {
    position: relative;
    width: 100%;
    height: 100vh;
}
.featured-shows__show a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.featured-shows__show a .show-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}
.featured-shows__show img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.featured-shows__show .show-text {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}
.featured-shows__show .show-text p {
    font-family: 'Circular Pro', Helvetica, sans-serif;
    font-size: 38px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: -0.4px;
    text-align: center;
    color: #FFFFFF;
}
.featured-shows__show .show-text p.network-name { 
    opacity: 0.75;
}
/* Slider Pagination */
#featured-shows button.slick-arrow.slick-prev,
#featured-shows button.slick-arrow.slick-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 56px;
    height: 56px;
    border-radius: 28px;
    padding: 0;
    cursor: pointer;
    border: none;
    outline: none;
    color: transparent;
    background-color: #000000;
}
#featured-shows button.slick-arrow.slick-prev {
    left: 30px;
    z-index: 1;
}
#featured-shows button.slick-arrow.slick-next {
    right: 30px;
}
#featured-shows button.slick-arrow.slick-prev:before,
#featured-shows button.slick-arrow.slick-next:before {
    display: inline-block;
    content: '';
    width: 56px; 
    height: 56px;
    background-image: url('../images/icons/arrow-white.png');
    background-size: 32px;
    background-position: center;
    background-repeat: no-repeat;
}
#featured-shows button.slick-arrow.slick-prev:before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
ul.slick-dots {
    display: block;
    position: absolute;
    bottom: 39px;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    display: block;
    font-size: 0;
    line-height: 0;
    padding: 0 5px;
    border: 0;
    outline: none;
    cursor: pointer;
    color: transparent;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}
.slick-dots li button:before {
    display: block;
    content: '•';
    width: 10px;
    height: 10px;
    border-radius: 5px;
    margin: auto;
    line-height: 40px;
    background-color: #FFFFFF;
    opacity: 0.6;
}
ul.slick-dots li,
ul.slick-dots li button {
    width: 40px;
    height: 40px;
}
.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #FFFFFF;
}
@media all and (min-width: 1024px) {
    ul.slick-dots {
        bottom: 48px;
    }
    .featured-shows__show .show-text p {
        font-size: 80px;
        line-height: 80px;
        letter-spacing: -4px;
    }
}

/* Contact */
.contact-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s cubic-bezier(.24,.015,.145,.93),
        visibility 0s linear .25s;
}
.contact-overlay.overlay-active {
    opacity: 1;
    visibility: visible;
    transition: opacity .75s cubic-bezier(.24,.015,.145,.93),
        visibility 0s linear;
}
.contact-label p {
    font-family: 'Circular Pro', Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    color: #FFFFFF;
    margin-bottom: 14px;
}
.contact-info__address,
.contact-info__tel { 
    font-family: 'Circular Pro', Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 28px;
    color: #FFFFFF;
    margin-bottom: 20px;
}
.contact-info__email { 
    font-family: 'Circular Pro', Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 24px;
    color: #FFFFFF;
    margin-bottom: 21px;
}
.contact-info__disclaimer { 
    font-family: 'Circular Pro', Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    color: #FFFFFF;
    opacity: 0.60;
}
@media all and (min-width: 1024px) {
    .contact-label,
    .contact-info {
        width: 50%;
        float: left;
        vertical-align: top;
    }
    .contact-label p {
        font-size: 24px;
        line-height: 31px;
        padding-left: 52.5%;
    }
    .contact-info {
        padding-left: 2.85%;
    }
    .contact-info__address {
        font-size: 40px;
        line-height: 40px;
        letter-spacing: -0.4px;
        margin-bottom: 32px;
    }
    .contact-info__tel,
    .contact-info__email {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 16px;
    }
    .contact-info__disclaimer {
        margin-top: 24px;
    }
}

/* Login */
.content__login {
    max-width: 560px;
    margin: auto;
}
.content__login > h1 {
    font-family: 'Circular Pro', Helvetica, sans-serif;
    font-size: 28px;
    font-weight: 300;
    line-height: 30px;
    color: #FFFFFF;
}
.content__login > div {
    display: flex;
    height: 64px;
    margin-top: 16px;
    margin-bottom: 12px;
}
.content__login > div > label {
    display: none;
}
.content__login > div > input[type='text'] {
    flex-grow: 1;
    border: none;
    padding: 16px 18px;
    background-color: #2D3640;
    font-family: 'Circular Pro', Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    color: #FFFFFF;
}
.content__login > div > input[type='text']::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.content__login > div > input[type='text']:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.content__login > div > input[type='text']::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.content__login > div > input[type='button'] {
    width: 64px;
    height: 64px;
    margin-left: 8px;
    border: none;
    background-image: url('../images/icons/arrow-black.png');
    background-color: #FFFFFF;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
    cursor: pointer;
}
.content__login > .field-error {
    font-family: 'Circular Pro', Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
    color: #D6052B;
    opacity: 0;
}
@media all and (min-width: 1024px) {
    .content__login > h1 {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: -0.2px;
    }
    .content__login > div {
        height: 72px;
        margin-top: 25px;
        margin-bottom: 18px;
    }
    .content__login > div > input[type='text'] {
        padding: 22px 24px;
    }
    .content__login > div > input[type='button'] {
        width: 72px;
        height: 72px;
    }
}

/* About */
.content__about {
    padding: 0 8.25%;
    margin-top: 60px;
}
.about-intro__header p,
.about-columns__header p {
    margin-bottom: 24px;
    font-family: 'Circular Pro', Helvetica, sans-serif;
    font-size: 28px;
    font-weight: 300;
    line-height: 30px;
    color: #FFFFFF;
}
.about-intro__copy p,
.about-columns__content p {
    margin-bottom: 24px;
    font-family: 'Circular Pro', Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 20px;
    color: #80808B;
}
.about-columns {
    margin: 56px 0 28px;
}
.about-columns__content img {
    max-width: 100%;
}

@media all and (min-width: 1024px) {
    .content__about {
        padding: 0 10%;
        margin-top: 80px;
    }
    .about-intro {
        padding-bottom: 64px;
        border-bottom: 1px solid rgba(151, 151, 151, 0.4);
    }
    .about-intro__header p {
        margin-bottom: 20px;
        font-size: 48px;
        line-height: 56px;
        letter-spacing: -0.8;
    }
    .about-intro__copy p {
        font-size: 16px;
        line-height: 24px;
    }
    .about-columns {
        clear: both;
        margin: 88px 0 120px;
    }
    .about-columns__header p {
        margin-bottom: 32px;
        font-family: 'Circular Pro', Helvetica, sans-serif;
        font-size: 24px;
        font-weight: 300;
        line-height: 32px;
        letter-spacing: -0.83;
        color: #FFFFFF;
    }
    .about-columns__content:after { 
        content: " "; 
        display: block;
        clear: both;
    } 
    .about-columns__content .content-column {
        float: right;
    }
    .about-columns__content .content-column__image {
        width: 48.5%;
    }
    .about-columns__content .content-column__text {
        width: 51.5%;
        padding-left: 58px;
    }
    .about-columns__content img {
        max-width: 100%;
    }
    .about-columns__content p {
        margin-bottom: 24px;
        font-family: 'Circular Pro', Helvetica, sans-serif;
        font-size: 16px;
        font-weight: 300;
        line-height: 24px;
        color: #80808B;
    }
}

/* Shows */
#shows-grid .shows-grid__show {
    position: relative;
}
#shows-grid .shows-grid__show::before {
    content: "";
    float: left;
    padding-bottom: 56.25%;
}
#shows-grid .shows-grid__show::after {
    content: "";
    display: table;
    clear: both;
}
.shows-grid__show a,
.shows-grid__show .show-image img,
.shows-grid__show .show-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.shows-grid__show a {
    width: 100%;
    z-index: 1;
}
.shows-grid__show .show-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}
.shows-grid__show .show-image img {
    width: 100%;
    object-fit: cover;
    opacity: 0.5;
}
.shows-grid__show .show-text {
    display: flex;
    align-items: flex-end;
    padding: 12px;
}
.shows-grid__show .show-text p {
    font-family: 'Circular Pro', Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.5px;
    color: #FFFFFF;
}
.shows-grid__show .show-text p.network-name {
    opacity: 0.6;
}
@media all and (min-width: 1024px) {
    #shows-grid {
        position: relative;
    }
    #shows-grid:after {
        content: "";
        display: table;
        clear: both;
    }
    #shows-grid .shows-grid__show {
        float: left;
        width: 33.33%;
    }
    .shows-grid__show .show-image img {
        transition: opacity .5s cubic-bezier(.24, .015, .145, .93);
    }
    .shows-grid__show:hover img {
        opacity: 0.8;
    }
    .shows-grid__show .show-text {
        padding: 32px;
        opacity: 0;
        transition: opacity .5s cubic-bezier(.24, .015, .145, .93);
    }
    .shows-grid__show:hover .show-text {
        opacity: 1;
    }
    .shows-grid__show .show-text p {
        font-size: 28px;
        line-height: 32px;
        letter-spacing: -0.91px;
    }
}

/* Single show */
#show .show-player {
    position: relative;
    height: 371px;
}
#show .show-player > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 0;
}
#show .show-player .show-player__cta {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
#show .show-player .show-player__cta > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #000000;
    transition: transform .5s cubic-bezier(.41,.07,.155,.86);
}
#show .show-player .show-player__cta:hover > div {
    transform: scale(1.2);
}
#show .show-player .show-player__cta img {
    height: 17px;
    z-index: 1;
}
#show .show-description {
    width: 87%;
    margin: 24px auto;
}
#show .show-description .title {
    margin-bottom: 24px;
}
#show .show-description .title p {
    font-family: 'Circular Pro', Helvetica, sans-serif;
    font-size: 28px;
    font-weight: 300;
    line-height: 30px;
    color: #FFFFFF;
}
#show .show-description .title .network-name {
    opacity: 0.7;
}
#show .show-description > p {
    margin-bottom: 20px;
    font-family: 'Circular Pro', Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 20px;
    color: #80808B;
}
.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    transition: opacity .5s cubic-bezier(.24,.015,.145,.93),
        visibility 0s linear .5s;
    visibility: hidden;
    opacity: 0;
}
.video-overlay.overlay-active {
    visibility: visible;
    opacity: 1;
    transition: opacity .5s cubic-bezier(.24,.015,.145,.93),
        visibility 0s linear;
}
.video-overlay__container {
    position: relative;
    width: 75%;
    height: 100%;
    padding-top: 56.25%;
    margin: 0 auto;
}
.video-overlay__iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media all and (min-width: 1024px) {
    #show .show-player {
        height: 480px;
    }
    #show .show-player .show-player__cta {
        width: 148px;
        height: 148px;
    }
    #show .show-player .show-player__cta img {
        height: 26px;
    }
    #show .show-description {
        width: 57.5%;
        margin: 80px auto;
    }
    #show .show-description .title {
        margin-bottom: 48px;
    }
    #show .show-description .title p {
        font-size: 56px;
        font-weight: 500;
        line-height: 56px;
        letter-spacing: -2px;
    }
    #show .show-description > p {
        margin-bottom: 27px;
        font-size: 18px;
        line-height: 27px;
        color: #80808B;
    }
}
