
.video-player {
    background-color: black;
    font-family: Calibri, sans;
}

.video-player:-webkit-full-screen {
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
}

.video-player video {
    width: 100%;
    height: 100%;
}

.video-controls {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 48px;
    display: flex;
    background-color: #000000AA;
}

.video-controls * {
    height: 100%;
}

.video-controls button {
    border: none;
    background-color: transparent;
}

.video-controls button:hover img {
    filter: sepia(20%) saturate(1667%) hue-rotate(31deg) brightness(107%) contrast(90%);
}

.video-controls button {
    border: none;
    background-color: transparent;
}

.video-seek-bar-wrap {
    flex: 1 1 90%;
    position: relative;
}

.video-volume {
    flex: 1 1 10%;
}

.video-source-select {
    display: flex;
    flex-direction: column;
    background-color: #000000AA;
    color: white;
    position: absolute;
    right: 45px;
    bottom: 48px;
    font-size: 40px;
    text-align: center;
    padding: 5px 10px;
}

.video-source-select div:hover {
    color: #ebf2da;
}




/* Slider */
.video-player input[type=range] {
    -webkit-appearance: none; /* Hides the slider so that custom slider can be made */
    width: 100%; /* Specific width is required for Firefox. */
    background: transparent; /* Otherwise white in Chrome */
}

.video-player input[type=range]:focus {
    outline: none; /* Removes the blue border.*/
}

/* Musi byt zvlast, kdyz se oddeli carkou tak to prohlizec zahodi */
/* Special styling for WebKit/Blink */
.video-player input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: 0;
    height: 24px;
    width: 12px;
    border-radius: 0;
    background: #95c11e;
    cursor: pointer;
    margin-top: -10px;
}

/* All the same stuff for Firefox */
.video-player input[type=range]::-moz-range-thumb {
    border: 0;
    height: 24px;
    width: 12px;
    border-radius: 0;
    background: #95c11e;
    cursor: pointer;
}

/* All the same stuff for IE */
.video-player input[type=range]::-ms-thumb {
    border: 0;
    height: 24px;
    width: 12px;
    border-radius: 0;
    background: #95c11e;
    cursor: pointer;
}


/* Slider posuvnik */
/* Special styling for WebKit/Blink */
.video-player input[type=range]:disabled::-webkit-slider-thumb {
    background: #DDD;
}

/* All the same stuff for Firefox */
.video-player input[type=range]:disabled::-moz-range-thumb {
    background: #DDD;
}

/* All the same stuff for IE */
.video-player input[type=range]:disabled::-ms-thumb {
    background: #DDD;
}


/* Slider draha */
.video-player input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: #DDDDDD;
    border: 0;
}

.video-player input[type=range]:focus::-webkit-slider-runnable-track {
    background: #DDDDDD;
}

.video-player input[type=range]::-moz-range-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: #DDDDDD;
    border: 0;
}

.video-player input[type=range]::-ms-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    border-width: 16px 0;
    color: transparent;
}

.video-player input[type=range]::-ms-fill-lower {
    background: #DDDDDD;
    border: 0;
}

.video-player input[type=range]:focus::-ms-fill-lower {
    background: #DDDDDD;
}

.video-player input[type=range]::-ms-fill-upper {
    background: #DDDDDD;
    border: 0;
}

.video-player input[type=range]:focus::-ms-fill-upper {
    background: #DDDDDD;
}

.video-timestamp {
    width: 34px;
    height: 34px;
    top: 10%;
    position: absolute;
    background-color: #95c11e;
    border-radius: 50%;
    cursor: pointer;
}

.video-timestamp:hover {
    transform-origin: center;
    transform: scale(1.2);
}

.video-time {
    font-size: 32px;
    padding: 4px;
    color: white;
    white-space: nowrap;
}
