/*
Video controls
*/


.playerContainer {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

#duration {
    position: absolute;
    top: 5px;
    right: 5px;
    color: beige;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 0.7em;
    text-align: center;
}

.player {
    position: absolute;
    top: 0;
    padding-top: 56.25%;
    width: 100%;
}

.control {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 30px;
    visibility: hidden;
}

.sound {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30px;
    height: 30px;
    visibility: hidden;
}

video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}