/* The video styling */

#videopaytable {
	width: 100vw;
	height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
}


#videolanding {
    width: calc(100vw - 20px);
    height: calc(100vh - 20px);
    position: relative;
    padding: 10px;
    background-size: cover !important;
    border-radius: 12px;
}


#videolanding > div {
    position: absolute;
}

#videolanding .top-row {
	top: 10px;
	width: calc(100% - 30px);
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    padding: 5px;
}

#playareatrigger {
	height: 60vh;
	width: 90vw;
    top: 20vh;
    left: 5vw;
    cursor: pointer;
}

#videolanding .play-icon {
    width: 70px;
    height: 70px;
    display: inline-block;
    cursor: pointer;
    background: url(../images/play_icon_white.png) no-repeat center center;
    background-size: 40px;
    border: 5px solid #FFF;
    border-radius: 40px;
    opacity: 0.4;
    position: absolute;
    top: calc(30vh - 35px);
    left: calc(50% - 35px);
}

#videolanding .bottom-row {
    bottom: 10px;
    width: calc(100% - 30px);
    background-color: rgba(0, 0, 0, 0.7);
    padding: 0px 5px;
    border-radius: 8px;
}

.video-title {
    font-family: 'Roboto-Medium', Arial, sans-serif !important;
    font-size: 15px;
    color: #FFF !important;
    display: block;
}

.video-title-black {
    font-family: 'Roboto-Medium', Arial, sans-serif !important;
    font-size: 110%;
    color: #000 !important;
    display: block;
}

.video-series {
	margin-top:4px;
    font-family: 'Roboto-Medium', Arial, sans-serif !important;
    font-size: 80%;
    color: #FFF;
    background-color: rgba(255, 255, 255, 0.2);
    display: inline-block;
    border-radius: 5px;
    padding: 2px 5px;
}

.live-indicator {
    display: inline-block;
    font-family: 'Roboto-Black', Arial, sans-serif !important;
    color: #FFF !important;
    padding: 2px 4px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    font-size: 70%;
    background-color: rgba(255, 0, 0, 1);
    margin-right: 6px;
    vertical-align: top;
}

.viewer-rating {
    font-family: 'Roboto-Black', Arial, sans-serif !important;
    color: #FFF !important;
    padding: 2px 4px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    font-size: 70%;
}
.viewer-rating.red {
    background-color: rgba(255, 0, 0, 0.8);
}


.pricing {
    display: inline-block;
    padding: 7px 30px 7px 18px;
    font-family: 'Roboto-Black', Arial, sans-serif !important;
    white-space: nowrap;
    border-radius: 30px;
    -moz-border-radius: 30px;
    cursor: pointer;
    text-align: right;
    margin: 5px 15px 5px 0px;
}

.pricing > span {
    display: inline-block;
}
.pricing > span:last-child {
    font-family: 'Roboto-Medium', Arial, sans-serif !important;
    display: block !important;
    font-size: 80%;
    text-align: right;
}
.pricing.once,
.pricing.view {
    background: url(../images/drop_right_icon.png) #F9CD04 no-repeat calc(100% - 7px) center;
    background-size: 15px;
}
.pricing.subscribe {
    background: url(../images/drop_right_icon_white.png) #000 no-repeat calc(100% - 7px) center;
    background-size: 15px;
}
.pricing.once > span:first-child,
.pricing.view > span:first-child {
    color: #000;
}
.pricing.once > span:last-child,
.pricing.view > span:last-child {
    color: rgba(0, 0, 0, 0.7);
}
.pricing.subscribe > span:first-child {
    color: #FFF;
}
.pricing.subscribe > span:last-child {
    color: #CCC;
}


#videopreview {
    border-radius: 15px;
}



.social-closer {
    display: inline-block;
    border-radius: 30px;
    -moz-border-radius: 30px;
    width: 33px;
    height: 33px;
    background: url(../images/delete_row_icon.gif) #CCC no-repeat center center;
    background-size: 30px;
    cursor: pointer;
}


button.black.watch-video {
    padding-left: 40px;
    background: url(../images/channel_video_icon.png) #000 no-repeat 10px 5px;
    background-size: 35px;
}




/* -------------------------------------------------------------------------- */
/* CSS for small screens */
/* -------------------------------------------------------------------------- */
@media only screen and (max-width:500px){

.video-series {
    font-size: 11px;
}

.live-indicator {
    font-size: 10px;
}

.viewer-rating {
    font-size: 10px;
}



}








