.PlayerControls_Bottom {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    padding: 12px;
    z-index: 2;
}

.PlayerControls_Bottom-left {
    display: flex;
    gap: 8px;
    left: 1.6%;
}

.PlayerControls_Bottom-right {
    display: flex;
    gap: 8px;
    right: 1.6%;
}
.PlayerControls_Bottom-background {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 50%;
}
.PlayerControls_Button {
    --size: 32px;
    width: var(--size);
    height: var(--size);
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
    opacity: 0.6;
}
.PlayerControls_Button.hidden {
    display: none;
}
.PlayerControls_Button.focused {
    opacity: 1;
}
.PlayerControls_Button:hover {
    opacity: 1;
}
.PlayerControls_Button-text {
    position: absolute;
    right: 36px;
    color: #FFF;
}
@media (max-width: 355px) {
    .PlayerControls_Button-text {
        display: none;
    }
}
.PlayerControls_Center {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.PlayerControls_Center-actions {
    display: flex;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.PlayerControls_CenterItem {
    --edge: 10%;
    position: absolute;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    --iconSize: 75px;
    width: var(--iconSize);
    height: var(--iconSize);
    background-size: contain;
    transition-timing-function: linear;
    transition-duration: 0.2s;
    transition-property: opacity, transform;
    transform: scale(1.5, 1.5);
    opacity: 1;
}
.PlayerControls_CenterItem.left {
    left: var(--edge);
}
.PlayerControls_CenterItem.center {
    right: 0;
    left: 0;
    margin-right: auto;
    margin-left: auto;
}
.PlayerControls_CenterItem.right {
    right: var(--edge);
}
.PlayerControls_CenterItem.stretched {
    transform: scale(1.1, 1.1);
}
.PlayerControls_CenterItem.hidden {
    transform: scale(1.8, 1.8);
    opacity: 0;
}
@media (max-width: 1000px) {
    .PlayerControls_CenterItem {
        width: 40px;
        height: 40px;
    }
}
.PlayerControls_Bottom_Live.timeshift {
    width: 80px;
    height: 32px;
    text-align: center;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 20px;
    opacity: 0.6;
}
.PlayerControls_Bottom_Live.timeshift:hover {
    opacity: 1;
}

.PlayerControls_Bottom_Live.live {
    width: 80px;
    height: 32px;
    text-align: center;
    cursor: default;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 20px;
    opacity: 0.6;
}
.PlayerControls_Main {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #0B0B0B;
    background: linear-gradient(180deg,rgba(11, 11, 11, 0.5) 0%, rgba(11, 11, 11, 0) 15%, rgba(11, 11, 11, 0) 85%, rgba(11, 11, 11, 0.5) 100%);
    display: none;
}
.PlayerControls_Main.toolbox {
    top: 50%;
    height: 50%;
}
.PlayerControls_Main_bar {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
@media (max-width: 1000px) {
    .PlayerControls_Main {
        background: linear-gradient(180deg,rgba(11, 11, 11, 0.5) 0%, rgba(11, 11, 11, 0) 45%, rgba(11, 11, 11, 0) 65%, rgba(11, 11, 11, 0.5) 100%);
    }
}
.PlayerControls_Time {
    line-height: 32px;
    cursor: pointer;
    text-align: center;
    color: white;
    opacity: 0.6;
}
.PlayerControls_Time.focused {
    opacity: 1;
}
.PlayerControls_Time:hover {
    opacity: 1;
}
.PlayerControls_Time.disableHover:hover {
    opacity: 0.6 !important;
}
@media (max-width: 1000px) {
    .PlayerControls_Bottom-right > .time {
        display: none;
    }
    .PlayerControls_Bottom-left > .time {
        display: none;
    }
}


.PlayerControls_Top {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    color: white;
    padding: 16px 16px 0px 16px;
    height: 50px;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 2;
}
.PlayerControls_Top > .Time {
    opacity: 1;
    height: 40px;
}
.PlayerControls_Top > .PlayerControls_Button {
    width: 40px;
    height: 40px;
    background-size: 24px;
    background-color: rgb(44 46 47 / 40%);
    border-radius: 4px;
    position: absolute;
    right: 15px;
    top: 55px;
}
.PlayerControls_Top_EPG {
    font-family: "Silk-R";
    font-size: 18px;
    width: 75%;
    top: 18px;
    left: 1.6%;
    color: rgba(255, 255, 255, 0.6);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    line-height: 22px;
}
.PlayerControls_Top_channel {
    font-family: "Silk-R";
    font-size: 16px;
    width: 75%;
    top: 22px;
    left: 1.6%;
    color: rgba(255, 255, 255, 0.6);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    line-height: 22px;
}
.PlayerControls_Top_text.hidden {
    display: none;
}
@media (max-width: 1000px) {
    .PlayerControls_Top {
        display: flex;
    }
    .PlayerControls_Top_EPG {
        size: 16px;
    }
    .PlayerControls_Top_channel{
        size: 14px;
    }

}

.PlayerControls_Left_Volume {
    display: flex;
    cursor: pointer;
}
.PlayerControls_Left_Volume:hover .PlayerControls_Left_Volume-slider {
    display: block;
}
.PlayerControls_Left_Volume:hover .PlayerControls_Button  {
    opacity: 1;
}

.PlayerControls_Left_Volume-slider {
    display: none;
    width: 130px;
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
    top: 0;
    padding: 14.5px 25px 14.5px 5px;
    margin: 0;
}
.PlayerControls_Left_Volume-slider:hover .PlayerControls_Left_Volume-sliderDot2 {
    display: block;
}

.PlayerControls_Left_Volume-sliderLine {
    height: 3px;
    background-color: #929292;
    margin-left: 4px;
}

.PlayerControls_Left_Volume-sliderFill {
    display: block;
    max-width: 100%;
    background-color: rgb(227 227 227);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    border-radius: 5px;
}

.PlayerControls_Left_Volume-sliderDot {
    position: absolute;
    top: 50%;
    right: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgb(227 227 227);
    cursor: pointer;
    transform: translate(50%, -50%);
}

.PlayerControls_Left_Volume-sliderDot2 {
    display: none;
    position: absolute;
    top: 50%;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #929292;
    cursor: pointer;
    transform: translate(-50%, -50%);
}

@media (max-width: 1000px) {
    .PlayerControls_Left_Volume {
        display: none;
    }
    .PlayerControls_Left_Volume-slider {
        display: none;
    }
}
.PlayerControls_Calendar_Day {
    display: flex;
}

.PlayerControls_Calendar_Day-weekday {
    margin-right: 8px;
}

.PlayerControls_Calendar_Day-month {
    margin-left: 8px;
}

@media (max-width: 350px) {
    .PlayerControls_Calendar_Day-weekday {
        display: none;
    }
    .PlayerControls_Calendar_Day-month {
        display: none;
    }
}
@media (not (max-width: 350px)) and (max-width: 500px) {
    .PlayerControls_Calendar_Day-weekday.large {
        display: none;
    }
    .PlayerControls_Calendar_Day-month.large {
        display: none;
    }
}
@media (not (max-width: 500px)) {
    .PlayerControls_Calendar_Day-weekday.small {
        display: none;
    }
    .PlayerControls_Calendar_Day-month.small {
        display: none;
    }
}

.PlayerControls_Calendar_Main {
    position: absolute;
    right: 20px;
    bottom: 130px;
    display: flex;
    gap: 8px;
    line-height: 28px;
    z-index: 2;
}
.PlayerControls_Calendar_Main.hidden {
    display: none;
}

.PlayerControls_Calendar_Main-fields {
    display: flex;
    gap: 16px;
    background-color: #2c2e2f;
    border-radius: 8px;
    color: white;
    padding: 8px 20px;
    border: 2px solid #0087CD;
}

.PlayerControls_Calendar_Main-fields-time {
    display: flex;
    gap: 4px;
}

.PlayerControls_Calendar_Main-button {
    color: white;
    background-color: #0087cd;
    width: 48px;
    height: 44px;
    margin: 2px 0px;
    border-radius: 8px;
    background-position: center center;
    background-repeat: no-repeat;
}
.PlayerControls_Calendar_Main-button:hover {
    background-color: #0078B9;
}

.PlayerControls_Calendar_Select {
    width: 32px;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    background-color: #202324;
    position: relative;
}
.PlayerControls_Calendar_Select:has(.focused) {
    background-color: #161717;
}

.PlayerControls_Calendar_Select-overlay {
    position: absolute;
    width: 60px;
    height: 170px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0;
}
.PlayerControls_Calendar_Select-overlay.focused {
    opacity: 1;
}

.PlayerControls_Calendar_Select-button {
    color: white;
}
.PlayerControls_Calendar_Select-button.animatedUp {
    transform: translateY(-20px);
    transition-timing-function: linear;
    transition-duration: 0.05s;
    transition-property: transform;
}
.PlayerControls_Calendar_Select-button.animatedDown {
    transform: translateY(20px);
    transition-timing-function: linear;
    transition-duration: 0.05s;
    transition-property: transform;
}
.PlayerControls_Calendar_Select-arrow_numbers {
    pointer-events: none;
    position: absolute;
    width: 60px;
    height: 170px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0;
}
.PlayerControls_Calendar_Select-arrow_numbers.focused {
    opacity: 1;
}
.PlayerControls_Calendar_Select-numberUp {
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translate(-50%);
}
.PlayerControls_Calendar_Select-numberUp.animatedUp {
    transform: translate(-50%, -20px);
    transition-timing-function: linear;
    transition-duration: 0.05s;
    transition-property: transform;
}
.PlayerControls_Calendar_Select-numberUp.animatedDown {
    transform: translate(-50%, 20px);
    transition-timing-function: linear;
    transition-duration: 0.05s;
    transition-property: transform;
}
.PlayerControls_Calendar_Select-numberDown {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translate(-50%);
}
.PlayerControls_Calendar_Select-numberDown.animatedUp {
    transform: translate(-50%, -20px);
    transition-timing-function: linear;
    transition-duration: 0.05s;
    transition-property: transform;
}
.PlayerControls_Calendar_Select-numberDown.animatedDown {
    transform: translate(-50%, 20px);
    transition-timing-function: linear;
    transition-duration: 0.05s;
    transition-property: transform;
}
.PlayerControls_Calendar_SelectArrow {
    position: absolute;
    width: 42px;
    height: 50px;
    line-height: 50px;
    background-size: cover;
    left: 50%;
    transform: translate(-50%, 0);
    opacity: 0.8;
    color: #fff !important;
}
.PlayerControls_Calendar_SelectArrow:hover {
    opacity: 1;
}
.PlayerControls_Calendar_SelectArrow.top {
    top: 15px;
}
.PlayerControls_Calendar_SelectArrow.bottom {
    bottom: 15px;
}

.PlayerControls_Episodes_Content {
    width: 100%;
    height: calc(480px - 60px);
    display: flex;
    overflow-y: scroll;
    flex-direction: column;
    scrollbar-color: #202020 #282829;
    scrollbar-width: none;
}
.video-container:fullscreen .PlayerControls_Episodes_Content {
    height: calc(80vh - 60px)
}
.PlayerControls_Episodes_Content-list {
    position: unset;
}
.PlayerControls_Episodes_Content-header {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    padding: 12px 20px 8px 20px;
    gap: 10px;
    position: sticky;
    top: 0;
    z-index: 2;
}
.PlayerControls_Episodes_Content-header-item {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    flex-shrink: 0;
}
.PlayerControls_Episodes_Content-header-item:hover {
    background-color: rgb(32 33 34 / 90%);
}
.PlayerControls_Episodes_Content-header-item.current {
    background-color: #3379C6;
    cursor: default;
}
.PlayerControls_Episodes_Content-header-list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1px;
    scrollbar-width: none;
    width: 100%;
}
.PlayerControls_Episodes_Content-list-header {
    height: 18px;
    line-height: 18px;
    margin-top: 8px;
    margin-left: 20px;
    display: flex;
    color: #ADABAE;
    font-size: 14px;
}
.PlayerControls_Episodes_Content-header-arrowLeft {
  visibility: hidden;
  position: absolute;
  background-image: url("../../../img/epgScrollLeft.svg");
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 20px;
  left: 75px;
  opacity: 0.8;
  width: 36px;
  height: 36px;
  z-index: 999;
  cursor: pointer;
}
.PlayerControls_Episodes_Content-header-arrowLeft:hover {
  opacity: 1;
}
.PlayerControls_Episodes_Content-header-arrowLeft.show {
  visibility: visible;
}
.PlayerControls_Episodes_Content-header-arrowRight {
  visibility: hidden;
  position: absolute;
  background-image: url("../../../img/epgScrollRight.svg");
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 20px;
  right: 10px;
  opacity: 0.8;
  width: 36px;
  height: 36px;
  z-index: 999;
  cursor: pointer;
}
.PlayerControls_Episodes_Content-header-arrowRight:hover {
  opacity: 1;
}
.PlayerControls_Episodes_Content-header-arrowRight.show {
  visibility: visible;
}
.PlayerControls_Episodes_Content-list-item {
    display: flex;
    cursor: pointer;
    height: 110px;
}
.PlayerControls_Episodes_Content-list-item:hover {
    background-color: rgb(29 29 29 / 90%);
}
.PlayerControls_Episodes_Content-list-item.current {
    background-color: rgb(29 29 29 / 90%);
    cursor: default;
}
.PlayerControls_Episodes_Content-list-item-image-container {
    position: relative;
    width: 160px;
    min-width: 160px;
    height: 90px;
    border-radius: 4px;
    overflow: hidden;
    margin: 10px 0px 10px 20px;
}
.PlayerControls_Episodes_Content-list-item-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.PlayerControls_Episodes_Content-list-item-text-container {
    display: flex;
    flex-direction: column;
    margin: 10px 20px 10px 16px;
}
.PlayerControls_Episodes_Content-list-item-text {
    line-height: 18px;
    max-height: 36px;
    font-size: 16px;
    color: #FFF;
    overflow: hidden;
}
.PlayerControls_Episodes_Content-list-item-short {
    line-height: 16px;
    max-height: 32px;
    font-size: 14px;
    margin-top: 5px;
    color: #ADABAE;
    overflow: hidden;
}
.PlayerControls_Episodes_Content-list-panel {
    margin-right: 0;
    margin-bottom: 20px;
    position: unset;
}
.PlayerControls_Episodes_Content-list-item-progress {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 5px;
}
.PlayerControls_Episodes_Content-list-item-progress-bar {
    background-color: #0087CD;
    z-index: 10;
    height: 5px;
    position: absolute;
    bottom: 0;
}
.PlayerControls_Episodes_Content-list-item-progress-bar-full {
    width: 100%;
    background-color: #444;
    height: 5px;
}
@media (max-width: 1000px) {
    .PlayerControls_Episodes_Content {
        height: calc(79vh - 60px);
    }
}
@media (max-width: 400px) {
    .PlayerControls_Episodes_Content-list-item-image-container {
        width: 140px;
        min-width: 140px;
    }
}

.PlayerControls_Episodes_Main {
    position: absolute;
    bottom: 80px;
    right: 20px;
    max-width: 400px;
    min-width: 320px;
    height: 480px;
    border-radius: 12px;
    background-color: rgb(43 43 43 / 90%);
    z-index: 99999;
    overflow: hidden;
}
.video-container:fullscreen .PlayerControls_Episodes_Main {
    height: 80vh;
}
@media (max-width: 1000px) {
    .PlayerControls_Episodes_Main {
        top: calc(20vh - 75px);
        height: 80vh;
        bottom: unset;
        right: 0;
    }
}

.PlayerControls_Setting_Audio {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.PlayerControls_Setting_Audio-item {
    padding: 8px 52px;
    width: 100%;
    display: flex;
    cursor: pointer;
    line-height: 24px;
    justify-content: center;
    white-space: nowrap;
    margin: 1px 0 1px 0;
}
.PlayerControls_Setting_Audio-itemCheck {
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 12px;
}
.PlayerControls_Setting_Audio-item.disabled {
    color: #929292;
    cursor: default;
    pointer-events: none;
}
.PlayerControls_Setting_Audio-item:hover {
    background-color: #1D1D1D;
}
.PlayerControls_Setting_Audio-icon {
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
}
.PlayerControls_Setting_Audio-back {
    display: flex;
    width: 100%;
    margin-bottom: 4px;
    gap: 16px;
    justify-content: left;
    line-height: 24px;
    padding: 8px 20px 8px 15px;
    cursor: pointer;
}
.PlayerControls_Setting_Audio-back:hover {
    background-color: #1D1D1D;
}
.PlayerControls_Setting_Audio-line {
    background-color: hsl(0deg 0% 100% / 60%);
    height: 2px;
    width: 80%;
}
@media (max-width: 1000px) {
    .PlayerControls_Setting_Audio-item {
        padding: 5px 20px;
        line-height: 18px;
        font-size: 13px;
    }
    .PlayerControls_Setting_Audio-back {
        padding: 5px 20px;
        font-size: 14px;
        line-height: 20px;
    }
    .PlayerControls_Setting_Audio-icon {
        width: 18px;
        height: 18px;
    }
    .PlayerControls_Setting_Audio-itemCheck {
        height: 20px;
        width: 20px;
    }
}
.PlayerControls_Setting_Bitrate {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.PlayerControls_Setting_Bitrate-item {
    padding: 8px 52px;
    width: 100%;
    display: flex;
    cursor: pointer;
    line-height: 24px;
    justify-content: center;
    margin: 1px 0 1px 0;
}
.PlayerControls_Setting_Bitrate-itemCheck {
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 12px;
}
.PlayerControls_Setting_Bitrate-item:hover {
    background-color: #1D1D1D;
}
.PlayerControls_Setting_Bitrate-icon {
    background-size: contain;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
}
.PlayerControls_Setting_Bitrate-back {
    width: 100%;
    margin-bottom: 4px;
    gap: 16px;
    justify-content: left;
    display: flex;
    line-height: 24px;
    padding: 8px 20px 8px 15px;
    cursor: pointer;
}
.PlayerControls_Setting_Bitrate-back:hover {
    background-color: #1D1D1D;
}
.PlayerControls_Setting_Bitrate-line {
    background-color: hsl(0deg 0% 100% / 60%);
    height: 2px;
    width: 80%;
}

@media (max-width: 1000px) {
    .PlayerControls_Setting_Bitrate-item {
        padding: 7px 20px;
        line-height: 18px;
        font-size: 13px;
        margin: 0px 20px;
    }
    .PlayerControls_Setting_Bitrate-back {
        padding: 5px 20px;
        font-size: 14px;
        line-height: 20px;
    }
    .PlayerControls_Setting_Bitrate-icon {
        width: 18px;
        height: 18px;
    }
    .PlayerControls_Setting_Bitrate-itemCheck {
        height: 20px;
        width: 20px;
    }
}
.PlayerControls_Setting_Main {
    background-color: rgba(43, 43, 43, 0.9);
    position: absolute;
    right: 20px;
    bottom: 85px;
    display: flex;
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    margin: 0;
    padding: 12px 0;
}
.PlayerControls_Setting_Main.hidden {
    display: none;
}
.PlayerControls_Setting_Main-option {
    width: 340px;
    height: 40px;
    padding: 8px 20px;
    color: #ffffff;
    text-align: left;
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    flex-direction: row;
    align-items: center;
    position: relative;
}
.PlayerControls_Setting_Main-option:hover {
    background-color: #1D1D1D;
}
.PlayerControls_Setting_Main-text {
    
}
.PlayerControls_Setting_Main-result {
    margin-left: auto;
    color: #929292;
    white-space: nowrap;
}
.PlayerControls_Setting_Main-icon {
    background-size: contain;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
}
.PlayerControls_Setting_Main-switch {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 24px;
    margin-left: auto;
    margin-bottom: 0;
}
.PlayerControls_Setting_Main-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #929292;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}
.PlayerControls_Setting_Main-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}
.PlayerControls_Setting_Main-slider.checked {
    background-color: #0087CD;
}
.PlayerControls_Setting_Main-slider.checked:before {
    -webkit-transform: translateX(17px);
    -ms-transform: translateX(17px);
    transform: translateX(17px);
}

.PlayerControls_Setting_Playback {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.PlayerControls_Setting_Playback-item {
    padding: 8px 52px;
    width: 100%;
    display: flex;
    cursor: pointer;
    line-height: 24px;
    justify-content: center;
    white-space: nowrap;
    margin: 1px 0 1px 0;
}
.PlayerControls_Setting_Playback-itemCheck {
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 12px;
}
.PlayerControls_Setting_Playback-item.disabled {
    color: #929292;
    cursor: default;
    pointer-events: none;
}
.PlayerControls_Setting_Playback-item:hover {
    background-color: #1D1D1D;
}
.PlayerControls_Setting_Playback-icon {
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
}
.PlayerControls_Setting_Playback-back {
    display: flex;
    width: 100%;
    margin-bottom: 4px;
    gap: 16px;
    justify-content: left;
    line-height: 24px;
    padding: 8px 20px 8px 15px;
    cursor: pointer;
}
.PlayerControls_Setting_Playback-back:hover {
    background-color: #1D1D1D;
}
.PlayerControls_Setting_Playback-line {
    background-color: hsl(0deg 0% 100% / 60%);
    height: 2px;
    width: 80%;
}
@media (max-width: 1000px) {
    .PlayerControls_Setting_Playback-item {
        padding: 5px 20px;
        line-height: 18px;
        font-size: 13px;
    }
    .PlayerControls_Setting_Playback-back {
        padding: 5px 20px;
        font-size: 14px;
        line-height: 20px;
    }
    .PlayerControls_Setting_Playback-icon {
        width: 18px;
        height: 18px;
    }
    .PlayerControls_Setting_Playback-itemCheck {
        height: 20px;
        width: 20px;
    }
}

.PlayerControls_Setting_SkipTime {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.PlayerControls_Setting_SkipTime-item {
    padding: 8px;
    width: 100%;
    display: flex;
    cursor: pointer;
    line-height: 24px;
    justify-content: center;
    margin: 1px 0 1px 0;
}
.PlayerControls_Setting_SkipTime-itemCheck {
    background-repeat: no-repeat;
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 12px;
}
.PlayerControls_Setting_SkipTime-item:hover {
    background-color: #1D1D1D;
}
.PlayerControls_Setting_SkipTime-icon {
    background-size: contain;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
}
.PlayerControls_Setting_SkipTime-back {
    display: flex;
    width: 100%;
    margin-bottom: 4px;
    gap: 16px;
    justify-content: left;
    line-height: 24px;
    padding: 8px 20px 8px 15px;
    cursor: pointer;
}
.PlayerControls_Setting_SkipTime-back:hover {
    background-color: #1D1D1D;
}
.PlayerControls_Setting_SkipTime-line {
    background-color: hsl(0deg 0% 100% / 60%);
    height: 2px;
    width: 80%;
}