html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    min-height: 400px;
    font-family: "Roboto Condensed", "Helvetica", "Arial", sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-x: hidden;
    background-color: #000;
}

/* Other elements */

#preloader {
    width: 100%;
    height: 100%;
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 999;
}

strong {
    font-weight: 400;
}

span.divider {
    color: #456168;
    margin: 0 5px;
    font-size: 19px;
}

/* Show Selector */

#show-block {
    position: fixed;
    width: 100%;
    overflow-y: hidden;
    height: 34px;
    bottom: 0;
    transition: height .4s cubic-bezier(0.550, 0.055, 0.675, 0.190);
}

#show-block.openned {
    height: 289px;
}

#show-block #show-modal {
    width: 100%;
    height: 100%;
    position: fixed;
    bottom: -100%;
    left: 0;
    background-color: rgba(3, 41, 51, 0.82);
    z-index: 998;
    opacity: 0;
    transition: all .4s cubic-bezier(0.550, 0.055, 0.675, 0.190);
}

#show-block.openned #show-modal {
    bottom: 0;
    opacity: 1;
}

#show-archive {
    position: relative;
    width: 100%;
    bottom: 0;
    z-index: 999;
}

#show-archive #show-handle {
    width: 24px;
    height: 24px;
    position: relative;
    text-align: center;
    display: block;
    margin: 0 auto;
    cursor: pointer;
    padding: 5px 15px;
    left: 0;
    right: 0;
    background-color: #000;
    border-radius: 5px 5px 0 0;
    z-index: 999;
}

#show-block.openned #show-archive #show-handle svg {
    transform: rotate(180deg);
}

#show-archive #show-handle svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    transition: transform .2s cubic-bezier(0.550, 0.055, 0.675, 0.190);
}

#show-archive #show-container {
    background-color: #000;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

#show-archive #show-container .show {
    width: 375px;
    height: 215px;
    background-size: cover;
    background-position: center center;
    margin: 0 5px;
    cursor: pointer;
    position: relative;
}

#show-archive #show-container .show .show-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#b3000000', GradientType=0);
    /* IE6-9 */
    opacity: 0;
    transition: opacity .3s;
}

#show-archive #show-container .show:hover .show-overlay {
    opacity: 1;
}

#show-archive #show-container .show .show-overlay .show-title {
    position: absolute;
    bottom: 0;
    font-size: 21px;
    color: #fff;
    padding: 10px 15px;
    font-family: "Helvetica", "Arial", sans-serif;
}

main#theatre {
    width: 100%;
    height: 100%;
    display: flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

main#theatre #video-player {
    overflow: hidden;
    position: relative;
    background-image: url(../img/loading.gif);
    background-position: center center;
    background-repeat: no-repeat;
}

main#theatre iframe, main#theatre object {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

main#theatre #content {
    width: 100%;
    height: 100%;
    display: none;
    margin: auto;
    overflow: auto;
}

body.videoOff #video-player, body.videoOff iframe, body.videoOff object {
    display: none;
}

body.videoOff main#theatre #content {
    display: block;
}

main#theatre #content h1 {
    color: #fff;
    text-align: center;
    font-size: 42px;
}

main#theatre #content p {
    font-size: 18px;
    color: #fff;
    margin: 15px auto;
    padding: 0 20px;
    box-sizing: border-box;
    font-weight: 300;
    max-width: 850px;
    line-height: 1.5;
}

/* Schedule */

.schedule-item {
    width: 100%;
    max-width: 850px;
    margin: 25px auto;
    padding: 20px 0;
    border-bottom: #1B4A6B dotted 1px;
    box-sizing: border-box;
}

.schedule-item::after {
    content: "";
    display: block;
    clear: both;
}

.schedule-item .schedule-item-thumb {
    width: 20%;
    float: left;
    text-align: center;
    color: #fff;
}

.schedule-item .schedule-item-content {
    float: left;
    width: 75%;
    margin-left: 5%;
}

.schedule-item .schedule-item-content h3 {
    font-size: 21px;
    color: #ff0055;
    margin: 0;
    padding: 0;
    font-weight: 400;
}

.schedule-item .schedule-item-content p {
    font-size: 16px;
    color: #fff;
    margin: 0;
    padding: 0 !important;
    font-weight: 300;
}

.weekdate {
    text-transform: uppercase;
    color: #ff0055;
    font-weight: 400;
}

.hoursminutes {
    text-transform: uppercase;
    color: #fff;
    font-size: 24px;
    font-size: 300;
}

.datemonth {
    text-transform: uppercase;
    color: #fff;
    font-size: 17px;
}

@media(max-width: 730px) {
    .schedule-item .schedule-item-content, .schedule-item .schedule-item-thumb {
        text-align: left;
        float: none;
        box-sizing: border-box;
        width: 100%;
        margin: 0;
    }
    .weekdate, .hoursminutes, .datemonth {
        width: auto;
        display: inline;
        font-size: 17px;
        margin-right: 5px;
    }
}

/* Slick */

.slick-prev, .slick-next {
    height: 255px;
    width: 75px;
    position: absolute;
    background: none;
    border: none;
    color: #fff;
    top: 0;
    z-index: 999;
    cursor: pointer;
    outline: none;
}

.slick-prev {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&1+0,0+100 */
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000', GradientType=1);
    /* IE6-9 */
    left: 0;
}

.slick-next {
    right: 0;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,1+100 */
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000', GradientType=1);
    /* IE6-9 */
}

p.disclaimer {
    background-color: #C41E3D;
    color: #fff;
    border-radius: 4px;
    line-height: 1.5;
    padding: 10px !important;
    box-sizing: border-box;
    max-width: 810px !important;
    -webkit-box-shadow: 0px 0px 0px 1px rgba(196, 30, 61, 1);
    -moz-box-shadow: 0px 0px 0px 1px rgba(196, 30, 61, 1);
    box-shadow: 0px 0px 0px 1px rgba(196, 30, 61, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-weight: bold;
}
