:root {
    --green: #b8d323
}
.videoplayer_wrapper {
    width: 100%;
    max-width: 1000px;
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
    aspect-ratio: 1.77778;
}
.videoplayer_wrapper_no_cursor {
    cursor: none;
}
.videoplayer {
    max-width: 100%;
    max-height: 100%;
    flex: 1;
    flex-grow: 1;
}
.player_base {
    position: absolute;
    height: calc(100% - 50px);
    width: 100%;
    opacity: 0.4;
    left: 0;
    top: 0;
    z-index: 1;
}
.player_mng {
    width: 100%;
    height: 50px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: start;
    align-items: center;
    background-color: rgba(20,20,20,0.7);
}
.player_mng_r {
    flex: 1;
    flex-grow: 1;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}
.player_mng_l {
    flex: 1;
    flex-grow: 0;
    padding: 0px 10px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: center;
}
.player_mute {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: stretch;
}
.player_button {
    width: 30px;
    height: 30px;
    margin: 5px;
    background-color: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.1);
    cursor: pointer;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    padding: 7px;
    padding-top: 6px;
    border-radius: 50%;
}
.player_button:hover {
    background-color: rgba(255,255,255,0.3);
    border: 2px solid rgba(255,255,255,0.5);
    transform: scale(110%);
    transition: 0.2s ease;
}
.player_button_image > svg {
    max-width: 100%;
    max-height: 100%;
}
.player_button_play {
    padding-left: 9px;
}
.player_button_image {
    width: 100%;
    height: 100%;
}
.player_button_image * {
    fill: #ffffff !important;
}
.player_manager {
    position: absolute;
    width: 100%;
    height: 70px;
    transform: translateY(0px);
    transition: 0.5s ease-in-out;
    opacity: 1;
    /* animation: manager_hide 0.3s ease reverse; */
}
@keyframes manager_hide {
    from {
        transform: translateY(0px);
    } to {
        transform: translateY(70px);
    }
}
.player_manager_disable {
    /* display: none; */
    transition: 0.5s ease-in-out;
    opacity: 0;
    /* animation: manager_hide 0.3s ease; */
    transform: translateY(70px);
}
.track_wrapper {
    width: 100%;
    min-height: 20px;
    height: 20px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: start;
    align-items: flex-end;
}
.track {
    height: 2px;
    width: 100%;
    background-color: #ffffff;
    display: flex;
    flex-flow: row nowrap;
    justify-content: start;
    align-items: center;
    transition: 0.3s ease;
}
.track_active {
    height: 5px;
    transition: 0.3s ease;
}
.track_current {
    width: 0%;
    background-color: var(--green);
    height: 100%;
}
.track_current_button {
    background-color: var(--green);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-left: -4px;
    transition: 0.2s ease;
}
.track_current_button_active {
    width: 12px;
    height: 12px;
    transition: 0.2s ease;
}
.voice_list, .q_list {
    position: absolute;
    bottom: 50px;
    right: 20px;
    background-color: green;
    border-radius: 4px;
    padding: 10px 10px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: start;
    align-items: start;
    border: 1px solid green;
    background-color: rgba(20,20,20,1);
}
.q_list[hidden] {
    display: none;
}
.voice_list_disable {
   display: none; 
}
.voice_item, .qlt_button {
    text-align: left;
    width: 100%;
    background-color: rgba(20,20,20,1);
    border: none;
    padding: 8px 8px;
    border-radius: 4px;
    cursor: pointer;
}
.voice_item:hover, .qlt_button:hover {
    background-color: rgba(30,30,30,1);
}
.voice_img, .fullscreen_img, .mute_img {
    width: 20px;
    height: 20px;
    max-height: 20px;
    max-width: 20px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}
.voice_img svg, .fullscreen_img svg, .mute_img svg {
    max-width: 20px;
    max-height: 20px;
}
.video_cover {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}
.video_cover_src {
    width: 100%;
}
.cover_disable {
    display: none;
}
.mute_range {
    width: 70px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: start;
    align-items: center;
    /* height: 100%; */
    padding: 0px 5px;
}
.mute_range_input {
    width: 100%;
    height: 6px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}
.mute_range_base {
    background-color: var(--green);
    height: 100%;
    width: 0%;
    transition: 0.1s ease;
}
.player_time {
    user-select: none;
}

@media (min-width: 0px) and (max-width: 450px) {
    .time_current, .time_separator, .time_duration {
        font-size: 12px;
    }
    .player_time {
        padding: 0px 5px;
    }
}