.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;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 200px rgba(184,211,35,0.15);
}
.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);
    padding: 0px 20px;
    position: relative;
}
.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;
    padding-left: 10px;
}
.player_button {
    width: 30px;
    height: 30px;
    margin: 5px;
    cursor: pointer;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}
.player_button:hover {
    transform: scale(110%);
    transition: 0.2s ease;
}
.player_button_image > svg {
    max-width: 100%;
    max-height: 100%;
}
.player_button:hover svg {
    filter: drop-shadow(0px 0px 5px rgba(184,211,35,0.5));
}
.video_base {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,1), rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 75%);
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    transform: translateY(0px);
    transition: 0.5s ease-out;
    opacity: 1;
}
.video_base[disabled] {
    transform: translateY(1000px);
    transition: 0.5s ease-in;
    opacity: 0;
}
.videoplay_base_rect {
    width: 200px;
    height: 200px;
    background-color: var(--green);
    transform: rotate(-10deg);
    border-radius: 40px;
    cursor: pointer;
    box-shadow: 0px 0px 50px rgba(184,211,35,0.2);
}
.videoplay_base {
    width: 200px;
    height: 200px;
    background-color: var(--black);
    transform: rotate(10deg);
    border-radius: 40px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}
.videoplay_base_img {
    flex: 1;
    flex-grow: 1;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}
.videoplay_base_img svg {
    margin: 50px;
    max-height: 50%;
    min-height: 50%;
    transition: 0.3s ease;
}
.videoplay_base_rect:hover .videoplay_base_img svg  {
    margin: 47px;
    transition: 0.3s ease;
}
.videoplay_base_img svg path {
    fill: #ffffff;
}
.videoplay_base_img svg {
    filter: drop-shadow(0px 0px 20px rgba(184,211,35,0.5));
}
.player_button_image {}
.player_button_play {
    justify-content: end;
    margin-left: 9px;
}
.player_button_image {
    width: 100%;
    height: 100%;
}
.player_manager {
    position: absolute;
    width: 100%;
    height: 70px;
    transform: translateY(0px);
    transition: 0.5s ease-in-out;
    opacity: 1;
}
@keyframes manager_hide {
    from {
        transform: translateY(0px);
    } to {
        transform: translateY(70px);
    }
}
.player_manager_disable {
    transition: 0.5s ease-in-out;
    opacity: 0;
    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;
}
.settings_base {
    border-radius: 20px;
    background-color: var(--green);
    transform: rotate(-5deg);
    position: absolute;
    bottom: 80px;
    right: 30px;
    box-shadow: 0px 0px 50px rgba(184, 211, 35, 0.2);
}
.settings {
    width: 300px;
    height: auto;
    transform: rotate(5deg);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: start;
    align-items: start;
    background-color: var(--black);
}
.voice_list {
    overflow-y: auto;
}
.voice_list[disabled] {
    display: none;
}
.settings_base[disabled] {
    display: none;
}
.voice_item, .qlt_button {
    text-align: left;
    width: 100%;
    background: none;
    border: none;
    padding: 12px 12px;
    border-radius: 4px;
    cursor: pointer;
}
.voice_item[selected], .qlt_button[selected] {
    color: var(--green);
    font-weight: 600;
    text-shadow: 0px 0px 6px rgba(184,211,35,0.3);
}
.voice_item:hover, .qlt_button:hover {
    text-shadow: 0px 0px 10px rgba(184,211,35,0.9);
}
.voice_img, .fullscreen_img, .mute_img {
    width: 30px;
    height: 30px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}
.voice_img svg, .fullscreen_img svg, .mute_img svg {
    max-width: 30px;
    max-height: 30px;
}
.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;
    padding: 0px 5px;
}
.mute_range_input {
    width: 100%;
    height: 6px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.2s ease;
}
.mute_range:hover .mute_range_input {
    height: 10px;
    transition: 0.2s ease;
} 
.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;
    }
}