html{
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body{
	font-family: 'Ubuntu', sans-serif;  
    line-height: 20px;
}
#videoplayer{

}
#videoplayer-wrapper { width: 100%; height: 100%; }
#videoplayer {

}
#videoplayer #videoplayer-container {
    position:absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
}



.waiting-stream::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background-color: #1c1c1c;
	width: 100%;
	height: 100%;
	z-index: 2;
	background-size: 100% 100%;
	background-position: center;
}

.waiting-stream::after {
	content: "Waiting for LiveStream...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 3;
    color: #f3f3f3;
    font-size: 16px;
    padding: 1.5rem 2rem;
    border-radius: 4px;
    width: 90%;
    text-align: center;
    max-width: 320px;
    background-color: #333;
    -webkit-box-shadow: 0 8px 6px -6px black;
    -moz-box-shadow: 0 8px 6px -6px black;
    box-shadow: 0 8px 6px -6px black;
    text-shadow: 1px 1px 3px #000;
    outline: rgba(255, 255, 255, 0.4) solid 10px;
    font-family: 'poppins',sans-sarif;
}

@media only screen and (max-width: 768px) {
	.waiting-stream::after {
		font-size: 16px;
		max-width: 310px;
	}
} 
