/* Camel notation is used for class and ID attributes */

.videoPlayerContainer *,.videoPlayerContainer *::after,.videoPlayerContainer *::before {
    box-sizing: inherit;
}

.hidden {
    display: none;
}

.videoTimeCodeClass {
    margin: 6px;
    border-radius: 1px;
    width: 128px;
}

.videoPlayerContainer {
	background-color: black;
    /* position: relative; */
    display: block;
	flex-direction: row;
    /* will make sure height is not more than necessary */
    max-width: 100%;
    #width: 1920px;
    /* You should remove this probably when integrating into a real website */
    border-width: 6px;
}

.videoPlayerContainer video {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    object-fit: fill;
}

.videoControls {
    /*position: absolute;
    bottom: 0;
    left: 0;
    right: 0; just commented them to make controls below video*/  
    /* I use both left and right to make it full width... */
    padding: 10px;
    box-sizing: border-box;
    transition: all 1s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    /*background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));*/
	background-color: black;
}

.VPlayerProgress progress {
    width: 100%;
    position: absolute;
    top: 0;
	height: 4px;
}

.VPlayerProgress .VPlayerSeek {
    position: absolute;
    top: 0;
    width: 100%;
    margin: 0;
    cursor: pointer;
	height: 4px;
}

.videoControls .VPlayerProgress {
    position: relative;
    height: 9px;
    margin-bottom: 10px;
}

.VPlayerControls {
    display: flex;
    justify-content: space-between;
}

.VPlayerControls button {
    cursor: pointer;
    appearance: none;
    outline: none;
    border: none;
    margin: 1px;
    width: 24px;
    height: 24px;
    background-color: rgb(255, 255, 255);
    background-size: contain;
}

.roundBtn{
	border-radius: 3px;
	padding: 3px;
    margin: 4px;
}

.VPlayerControls button::before {
    content: attr(data-hint);
    position: absolute;
    display: none;
    top: -25px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-weight: bold;
    padding: 4px 6px;
    word-break: keep-all;
    white-space: pre;
    margin: 0;
}

.VPlayerControls .VPlayerControlsRight button::before {
    content: attr(data-hint);
    position: absolute;
    display: none;
    right: 10px;
    top: -25px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-weight: bold;
    padding: 4px 6px;
    word-break: keep-all;
    white-space: pre;
    margin: 0;
}

.VPlayerControls button:hover::before {
    display: inline-block;
}

.VPlayerControls .frameBackwardClass {
    background: transparent  url('../png/frame-backward.png');
}

.VPlayerControls .backFiveSecsClass {
    background: transparent url('../png/go-back-five-secs.png');
}

.VPlayerControls .playBtnClass {
    background: transparent url('../png/play.png');
}

.VPlayerControls .frameForwardClass {
    background: transparent url('../png/frame-forward.png');
	transparent : true;
}

.VPlayerControls .muteBtnClass {
    background: transparent url('../png/volumeOn.png');
}

.VPlayerControls .pipBtnClass {
    background: transparent url('../png/pip-mode.png')
}

.VPlayerControls .fullscreenBtnClass {
    background:  transparent url('../png/fullscreen.png');
}

.VPlayerControls .VPlayerControlsLeft, .VPlayerControls .VPlayerControlsRight {
    display: flex;
    align-items: center;
    color: white;
}

.VPlayerControls .VPlayerControlsVolume {
    display: flex;
    align-items: center;
    margin-left: 10px;
	margin-right: 10px;
}

.VPlayerControls .VPlayerControlsLeft {
    flex-wrap: wrap;
}

.videoSeekTooltipClass {
    display: none;
    position: absolute;
    top: -30px;
    margin-left: -20px;
    font-size: 12px;
    padding: 3px;
    content: attr(data-hint);
    font-weight: bold;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
}

.VPlayerSeek:hover + .videoSeekTooltipClass {
    display: block;
}