
.upload {
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 0
} 
.video-box {
    margin-top: 3em;
    display: flex;
    align-items: center;
    justify-content: center
} 
.player {
    width: 90%;
    position: relative;
    font-size: 0;
    overflow: hidden
} 
.player_video {
    width: 100%;
    cursor: pointer
} 
.fa {
    color: #fff;
    font-size: 1rem
} 
.fa-play:hover,
.fa-pause:hover,
.fa-stop:hover,
.fa-volume-up:hover,
.fa-fast-backward:hover,
.fa-fast-forward:hover {
    color: #1e90ff;
    cursor: pointer
} 
.player_button {
    background: 0 0;
    border: 0;
    line-height: 1;
    color: #fff;
    text-align: center;
    outline: 0;
    padding: 0;
    cursor: pointer;
    max-width: 50px;
    font-size: 1rem;
    margin-right: 10px
} 
.player_button:focus,
.player_button:hover {
    border-color: #ffc600;
    border-color: blue
} 
.player_slider {
    width: .75rem;
    height: 3rem
} 
.player_controls {
    display: flex;
    position: absolute;
    bottom: 0;
    width: 100%;
    transition: all .3s;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, .1);
    padding: .5rem 1.5rem
} 
.player:hover .player_controls {
    transform: translateY(0)
} 
.player:hover .progress-range {
    height: .75rem
} 
.right-controls {
    display: flex;
    justify-content: flex-end
} 
.left-controls {
    display: flex;
    justify-content: flex-start
} 
.player_controls>* {
    flex: 1
} 
.progress-range {
    flex: 10;
    position: relative;
    display: flex;
    flex-basis: 100%;
    height: 1.5em;
    transition: height .3s;
    background: rgba(0, 0, 0, .25);
    cursor: pointer
} 
.progress-bar {
    background: #1e90ff;
    width: 50%;
    height: 100%;
    border-radius: 1.5em;
    transition: all 250ms ease
} 
.player:fullscreen {
    max-width: none;
    width: 100%
} 
.player:-webkit-full-screen {
    max-width: none;
    width: 100%
} 
.player:-moz-full-screen {
    max-width: none;
    width: 100%
} 
.time {
    text-align: right;
    position: relative;
    top: .85em;
    padding-left: .5em;
    margin-right: 1em;
    color: #fff;
    font-weight: 600;
    font-size: 1rem
} 
.time-elapsed,
.fa-fast-forward {
    padding-left: .75em
} 
input[type=range] {
    background: 0 0;
    width: 40%;
    margin: 0 20px 0 0
} 
input[type=range]:focus {
    outline: none
} 
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    box-shadow: inset 1px 1px 1px transparent, 0 0 1px transparent;
    background: rgba(255, 255, 255, .8);
    border-radius: 50px;
    border: .2px solid transparent
} 
input[type=range]::-webkit-slider-thumb {
    height: .75em;
    width: 1em;
    border-radius: .25em;
    background: #1e90ff;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -4px;
    box-shadow: 0 0 2px #0f0e50
} 
input[type=range]::-moz-range-track {
    width: 100%;
    height: 8.4px;
    cursor: pointer;
    box-shadow: 1px 1px 1px transparent, 0 0 1px transparent;
    background: #fff;
    border-radius: 1.3px;
    border: .2px solid transparent
} 
input[type=range]::-moz-range-thumb {
    box-shadow: 0 0 0 transparent, 0 0 0 transparent;
    height: 12px;
    width: 17px;
    border-radius: 50px;
    background: blue;
    cursor: pointer
} 
@media(max-width:827px) {
    .fa {
        color: #fff;
        font-size: .9rem
    } 
    button+button {
        margin-left: 0
    } 
    .time {
        padding-left: 0;
        margin-right: .5em
    } 
    .time-elapsed,
    .fa-fast-forward {
        padding-left: .75em
    } 
    .player {
        width: 80%
    }
} 
@media(max-width:600px) {
    .player {
        width: 95%
    }
}