.dash-video-player {
    background: #000000;
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

.dash-video-player video {
    width: 100%;
    height: 100%;
}

/** SPINNER **/

.loading_spinner {
    height:60px;
    width:60px;
    position:absolute;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
    -webkit-animation: rotation .6s infinite linear;
    -moz-animation: rotation .6s infinite linear;
    -o-animation: rotation .6s infinite linear;
    animation: rotation .6s infinite linear;
    border-left:6px solid rgba(0,174,239,.15);
    border-right:6px solid rgba(0,174,239,.15);
    border-bottom:6px solid rgba(0,174,239,.15);
    border-top:6px solid rgba(0,174,239,.8);
    border-radius:100%;
}

@-webkit-keyframes rotation {
    from {-webkit-transform: rotate(0deg);}
    to {-webkit-transform: rotate(359deg);}
}
@-moz-keyframes rotation {
    from {-moz-transform: rotate(0deg);}
    to {-moz-transform: rotate(359deg);}
}
@-o-keyframes rotation {
    from {-o-transform: rotate(0deg);}
    to {-o-transform: rotate(359deg);}
}
@keyframes rotation {
    from {transform: rotate(0deg);}
    to {transform: rotate(359deg);}
}

.stats-holder {
    width: 220px;
    position: absolute;
    top: 20px;
    bottom: 20px;
    right: 20px;
}

.panel-stats {
    width: 200px;
    height: 150px;
}

.panel-stats span {
    display: block;
}

.scrubber {
    background-color: rgba(0, 0, 0, 0);
    width: 100%;
    height: 10px;
    position: absolute;
    bottom: 0px;
    left: 0px;
}
