#player {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
}



#player .title {
    font-size: 1.3em;
    padding: .5em 0 .3em 1em;
    color: #fff;
    font-weight: 400;
    width: 100%;
    text-align: center;
    text-shadow: 1px 1px 4px rgb(0, 0, 0), 1px 1px 10px rgb(0, 0, 0), 1px 1px 8px rgb(0, 0, 0), 1px 1px 15px rgb(0, 0, 0), 1px 1px 20px rgb(0, 0, 0);
}

#player video,
#player .video_player {
    height: 100% !important;
    width: 100%;
    position: absolute;
    background-color: #000;
    z-index: -2;
}

#player .playerui {
    position: absolute;
    width: 100%;
    top: 0;
    height: 100%;
}


#player .controls {
    text-align: center;
    bottom: 0;
    position: absolute;
    width: 100%;
    padding: 1.5em 0 1em 0;
    background-color: rgba(0, 0, 0, 0.637);
    box-shadow: rgba(0, 0, 0, 0.77) 0px -20px 30px -10px, rgba(0, 0, 0, 0.24) 0px -10px 10px -10px;
}

#player .controls .buttons {
    text-align: center;
}

#player .controls .btn {
    font-size: 1.5em;
    border-radius: 50%;
    margin: 0 .5em;
    text-shadow: 2px 2px 4px #000;
    color: rgba(255, 255, 255, .5);
    display: inline-block;
    padding: .3em .5em;
    padding: .3em .4em .2em .4em;
}

#player .controls .btn.focus {
    background-color: rgb(0 78 179 / 86%);
    color: #fff;
    border: 1px solid rgba(250, 250, 250, 0.103);
}

#player .controls .right_controls {
    display: inline-block;
    position: absolute;
    right: 1em;
    text-align: right;
    bottom: 3em;
}

#player .controls .right_controls .btn {
    margin: 0;
}



#player .controls .left_time {
    position: absolute;
    left: 3em;
    bottom: 2em;
    font-size: .9em;
    font-weight: 300;
}

#player .controls .right_time {
    position: absolute;
    right: 3em;
    bottom: 2em;
    font-size: .9em;
    font-weight: 300;
}

#player .controls .seek_bar {
    background-color: rgba(255, 255, 255, .3);
    height: .2em;
    width: 90%;
    display: inline-block;
    border-radius: .2em;
    margin-top: 1em;
    position: relative;
}

#player .controls .seek_bar .current {
    height: 100%;
    background-color: rgba(0, 78, 179, 0.8);
    transition: all 0.3s ease;
}

#player .controls .seek_bar .dot {
    height: 1em;
    width: 1em;
    background-color: rgba(255, 255, 255, .7);
    position: absolute;
    border-radius: 1em;
    top: -.4em;
}

#player .sub_menu {
    background-color: rgba(0, 0, 0, .5);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: .3em;
    font-weight: 300;
    text-align: center;
    font-size: .8em;
    margin: .5em 0 2em 0;

}

#player .sub_menu .option {
    padding: .7em 1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.144);
    text-shadow: 2px 2px 3px rgba(0, 0, 0, .5);
}

#player .sub_menu .option.focus {
    background-color: rgba(0, 78, 179, 0.47);
}

#player .sub_menu .option.focus::before {
    content: '\F27B';
    font-family: bootstrap-icons !important;
    display: inline-block;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: middle;
}

#player #next {
    position: absolute;
    right: .5em;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2em;
    opacity: .5;
    text-shadow: 2px 2px 3px rgb(0, 0, 0);
}

#player #next.focus {
    opacity: .8;
    color: rgb(255, 255, 255);
    background-color: rgba(0, 68, 155, 0.77);
    text-shadow: none;
    padding: .5em;
    border-radius: .3em;
}

#player #next small {
    margin-right: .4em;
    font-size: .6em;
    vertical-align: middle;
}

#player #next i {
    vertical-align: middle;
}