@import url(https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300|Open+Sans);

body {
    background-color: #191919;
    overflow:hidden;
}

img.channel_logo {
  background: url('../assets/logo.png') no-repeat;
}

.screen_billboard {                      /*billboards*/
    z-index: 0;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;

}

.screen_home {                             /*home screen*/
    z-index: 1;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-color: #191919;
    font-family: 'Open Sans',sans-serif;
    font-weight: 100;
    font-size: 100%;
}



.screen_details {                         /*video details screen*/
    z-index: 2;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width: 100%;
    height: 100%;
    visibility: hidden;
}

.screen_player{                           /*playback screen*/
    z-index: 3;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    visibility: hidden;
}


.screen_messaging {
    font-family: 'Open Sans',sans-serif;
    font-weight: 300;/*home screen*/
    z-index: 4;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    visibility: hidden;
}


.fullscreen {
    display: block;
    /*position: fixed;*/
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.center_vertical{
    top: 50%;
    transform: translateY(-50%);
    position: relative;
    color: white;
    
}

.center_horizontal{
    top: 10%;
    transform: translateX(-50%);
    position: relative;
    color: white;
}

.top_text  {
    font-style: oblique;
    font-size: 350%;
    padding:5%;
    margin: 0;
    position: absolute;
    top: 5%;
    color:white;
    margin-right: -10%;
}

.centered_text  {
    font-style: oblique;
    font-size: 180%;
    padding:5%;
    margin: 0;
    position: absolute;
    top: 50%;
    color:white;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    text-align: center; 
}


.transparent_info_img  {
    opacity: 0.6;
    position: absolute;
    top: 80%;
    color:white;
    left: 20%;
    width: 225px;
    height: 100px;
    margin-left: 50%;
}


.bottom_half {
   opacity: 0.8;
   position:fixed;
   width:100%; 
   height:70%; 
   background-color:black; 
   padding:5px; 
   bottom:0px;
}

.details_channel {
    left:5%;
    top:25%;
    position: absolute;
    width:100px;
    height: 100px;
}


#banner_area img {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
}

#banner_area img:first-child {
    display: block;
}

.billboard {
    position : relative;
}
.billboard .wrapper {
    opacity: 0.6;
    position: absolute;
    color:white;
}

.billboard_overlay {
    background: rgba(25,25,25,0.3);
    width: 100%;
    height: 100%;
}


.logo_item {
    /* To correctly align image, regardless of content height: */
    vertical-align: top;
    display: inline-block;
    /* To horizontally center images and caption */
    text-align: center;
    /* The width of the container also implies margin around the images. */
}
.logo_caption {
    /* Make the caption a block so it occupies its own line. */
    display: block;
    font-size: 65%;
}

.center_cropped img {
    min-height: 100%;
    min-width: 100%;
}