html {
    height: 100%;
}
body
{
    font-family: arial, verdana, sans-serif;
    margin:0px;
    padding:0px;
    background-color: black;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

/*******************************
Application Loading State
*******************************/

#app-loading-container
{
    position: absolute;
    top:0px;
    left:0px;
    width:100vw;
    height:100%;
    z-index:9999999;

    padding:20px;
}

#app-loading-container .header
{
    font-size:60px;
    color: rgba(255,255,255,.77);
}

#app-loading-container .message
{
    color: rgba(255,255,255,.77);
}

/*******************************
Application Fatal Error State
*******************************/

#app-fatal-error-container
{
    position: absolute;
    top:0px;
    left:0px;
    width:100vw;
    height:100%;
    z-index:9999999;

    padding:20px;
}

#app-fatal-error-container .header
{
    font-size:60px;
    color: rgba(255,255,255,.77);
}

#app-fatal-error-container .message
{
    color: rgba(255,255,255,.77);
}

/*******************************
Application Body
*******************************/

#app-body-container
{  background-color: #000;

    position: absolute;
    width:100vw;
    height:100%;
    top: 0;
    left: 0;
    overflow: hidden;
}


/*******************************
Holds Video Player
*******************************/

#videoelement-container
{
    background-color: #000;

    position: absolute;
    width:100vw;
    height:100%;
    top:0;
    left:0;
    overflow:hidden;

    z-index:0;
}

/*HTML5 Video Element*/
#content_video
{
    width:100vw;
    height:100%;
    overflow: hidden;
}

.main-ad-container {
    position: relative;
}

#ad-container, #ad-slot video {
    position: static;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-js .vjs-time-control {
    min-width: 0;
    padding-left:0;
    padding-right:0;
}
/*******************************
Playlist
*******************************/
@font-face{font-family:'bpop';src:url("assets/bpop.eot");src:url("assets/bpop.eot?#iefix") format("embedded-opentype"),url("assets/bpop.woff") format("woff"),url("assets/bpop.ttf") format("truetype")}

#playlist-container
{
    position:absolute;
    z-index:999999999999;
}

#playlist-container.open
{
    right:0px;
    top:0px;
    height: 100vh;
    width: 300px;
    background-color: rgba(0,0,0,.8);

    -webkit-box-shadow: -7px 0px 33px -6px rgba(0,0,0,0.75);
    -moz-box-shadow: -7px 0px 33px -6px rgba(0,0,0,0.75);
    box-shadow: -7px 0px 33px -6px rgba(0,0,0,0.75);

    border-left: 3px solid rgba(255,255,255,.9);
}

@media (max-width: 400px) {
    #playlist-container.open {
        width: 40%;
    }
}

#playlist-container.close
{
display: none;
}

#playlist-container .arrow-container {
     width: 100%;
     height: 30px;
     font-family: "bpop", sans-serif;
     text-align: center;
     font-size: 30px;
     color: white;
}

#playlist-container.close .arrow-container {
    display: none;
}

#playlist-container .scroll-up, #playlist-container .scroll-down {
    color: rgba(255,255,255,0.3);
}

#playlist-container .scroll-up:before {
    content: "\e600";
}

#playlist-container .scroll-down:before {
    content: "\e601";
}

#playlist-toggle-button
{
    cursor: pointer;
    border: 0;
    padding: 0;
    margin: 0;
    border-radius: 46px;
    background-color: transparent;
    width: 60px;
    height: 60px;

    -webkit-box-shadow: 0px 0px 33px 0px rgba(0,0,0,0.95);
    -moz-box-shadow: 0px 0px 33px 0px rgba(0,0,0,0.95);
    box-shadow: 0px 0px 33px 0px rgba(0,0,0,0.95);
}

#playlist-toggle-button img {
    width: 60px;
    height: 60px;
}

#playlist-toggle-container
{
    position: absolute;
    top:10px;
    z-index:999999999999;
}

#playlist-toggle-container.open
{
    right:310px;
}

#playlist-toggle-container.close
{
    right:10px;
}

#playlist-container #playlist-body
{
    width:100%;
    height: calc(100% - 60px);
    overflow:auto;
}

.playlistImg
{
    width:100%;
    height:auto;
}

.playlistItem
{
    width:auto;
    background-size: cover;
    cursor: pointer;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 */
    position: relative;
}
.playlistItem img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.playlistItem:hover
{
    text-shadow: 0 0 1em #000;
}

.playlistItem-name
{
    color:white;
    padding:10px;
    background-color: rgba(0,0,0,.25);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 2;
    height:100%;
}
