:root {
  --ancBackground: #16161a;
  --ancButton: #23252b;
  --ancColor: #e7efff;
  --ancPlayc: #fff;
  --ancPlayb: #ff5a7a;
}

.anc-play-button { width: 65px; height: 65px; border-radius: 50%; background: var(--ancPlayb); display: flex; align-items: center; justify-content: center; animation: 2s infinite anc_pulse_shadow; }
.anc-play-icon { width: 0; height: 0; border-top: 15px solid #fff0; border-bottom: 15px solid #fff0; border-left: 25px solid var(--ancPlayc); margin-left: 5px; }

@keyframes anc_pulse_shadow {
  0% { box-shadow: 0 0 0 0 rgb(255 255 255 / .4); }
  70% { box-shadow: 0 0 0 20px #fff0; }
  100% { box-shadow: 0 0 0 0 #fff0; }
}

#anc_pl { aspect-ratio: 16/9; background-color: #000; width: 100%; }
#list_tap { background: var(--ancBackground); height: 100%;}
#list_tap ul::-webkit-scrollbar { width: .375rem; }
#list_tap ul::-webkit-scrollbar-thumb { background: var(--ancColor); border-radius: 10px; }
#list_tap ul::-webkit-scrollbar-track { background: var(--ancButton); }

li.ep { list-style: none; line-height: 3; margin: 0; }
#list_tap ul li.ep a.a_tap {
  display: flex; align-items: center; justify-content: center; background: var(--ancButton); color: var(--ancColor);
  cursor: pointer; box-shadow: 0 1px 3px #0000002b; border-radius: 5px; transition: all .17s ease; font-weight: 500; position: relative;
}
#list_tap ul li.ep a.a_tap:hover { color: var(--ancEpText)!important; transform: translateY(-3px); border: #ffffff08; box-shadow: 0 5px 15px rgba(0,0,0,.3); background: var(--ancEpActive)!important; }
#list_tap ul li.ep a.a_tap.tap_active, .tap_active { color: var(--ancEpText)!important; background: var(--ancEpActive)!important; border: #ffffff08; transform: translateY(0)!important; }

.subtitle-icon { position: absolute; top: 0; right: 0; width: 22px; height: 22px; fill: currentColor; }

#anc_pl_controls { display: flex; justify-content: center; align-items: center; gap: 5px; padding: 12px 15px; background: var(--ancBackground); border-top: 1px solid #ffffff0d; }
#anc_pl_controls button { background: var(--ancButton); color: var(--ancColor); border: 1px solid #ffffff0d; border-radius: 5px; cursor: pointer; font-size: 14px; font-weight: 700; padding: 8px 12px; display: flex; align-items: center; justify-content: center; transition: all .2s ease; flex-shrink: 0; }
#anc_pl_controls button:hover:not(:disabled) { background: linear-gradient(90deg,#ff5a7a,rgba(255,90,122,.5)); border: none; color: #fff; }
#anc_pl_controls button:disabled { opacity: .5; cursor: not-allowed; }
.episode-counter { background: var(--ancButton); color: var(--ancColor); border: 1px solid #ffffff0d; border-radius: 5px; font-size: 14px; font-weight: 700; padding: 8px 15px; display: flex;place-items: center;}

#player-poster { position: relative; cursor: pointer; background: #000; width: 100%; height: 100%; aspect-ratio: 16/9; overflow: hidden; }
#player-poster img { position: absolute!important; top: 0!important; left: 0!important; width: 100%!important; height: 100%!important; object-fit: cover!important; display: block!important; max-width: none!important; border: none!important; margin: 0!important; padding: 0!important; }
#player-poster .play-icon-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); transition: transform .2s ease; z-index: 10; }
#player-poster:hover .play-icon-overlay { transform: translate(-50%,-50%) scale(1.1); }

/* ==== New Layout Styles: Side-by-Side ==== */
.anc-side-layout {
  display: flex;
  flex-direction: row;
  gap: 15px;
  background: #111; 
  padding: 15px;
  border-radius: 8px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.anc-side-layout .anc-video-column {
  flex: 1 1 72%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.anc-side-layout .anc-playlist-column {
  flex: 0 0 320px;
  background: var(--ancBackground);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  opacity: 1;
}

/* Hide Playlist State */
.anc-side-layout.playlist-hidden .anc-playlist-column {
  flex: 0 0 0px;
  opacity: 0;
  padding: 0;
  border: none;
  margin: 0;
}
.anc-side-layout.playlist-hidden .anc-video-column {
  flex: 1 1 100%;
}

/* Toggle Button Style */
.anc-toggle-playlist-btn {
  background: rgba(255,255,255,0.05) !important;
  color: var(--ancColor) !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 8px 15px !important;
  font-weight: 500 !important;
}
.anc-toggle-playlist-btn:hover {
  background: rgba(255,255,255,0.15) !important;
  color: #fff !important;
}

.anc-playlist-header {
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 1px;
}
.anc-playlist-header svg { width: 18px; height: 18px; color: var(--ancPlayb); }

/* Override Playlist Grid for side layout */
.anc-side-layout #list_tap ul {
  grid-template-columns: repeat(4, 1fr);
  max-height: 480px; 
  overflow-y: auto;
  padding: 15px;
  margin: 0;
}

/* Base list layout */
#list_tap ul { overflow-y: auto; max-height: calc(23rem / 2); display: grid; grid-template-columns: repeat(6, 1fr); grid-gap: 10px; padding: 15px; margin-bottom: 15px; }

/* Responsive adjustments */
@media (max-width: 992px) {
  .anc-side-layout { flex-direction: column; }
  .anc-side-layout .anc-playlist-column { flex: auto; width: 100%; }
  .anc-side-layout #list_tap ul { grid-template-columns: repeat(6, 1fr); max-height: 300px; }
  .anc-toggle-playlist-btn { display: none !important; } /* លាក់ប៊ូតុងនេះពេលមើលលើទូរស័ព្ទព្រោះវាធ្លាក់មកក្រោមស្រាប់ */
}
@media only screen and (max-width: 680px) {
  #list_tap ul { grid-template-columns: repeat(4, 1fr); }
  .anc-side-layout #list_tap ul { grid-template-columns: repeat(4, 1fr); }
}

/* Loading & General Utils */
.anc-loader-container { background-color: #141414; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; }
.anc-spinner { width: 40px; height: 40px; border: 4px solid rgba(255,255,255,.3); border-top: 4px solid #e50914; border-radius: 50%; animation: anc_spin 1s linear infinite; }
@keyframes anc_spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.anc-error { background: #000; color: #ff4747; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; padding: 20px; text-align: center; font-family: sans-serif; }
.anc-iframe { width: 100%; height: 100%; aspect-ratio: 16/9; }

/* Pip Styles */
#anc_pl_wrapper.pip-mode::before { content: ''; display: block; padding-top: 56.25%; }
#anc_pl_wrapper.pip-mode > .anc-video-column > #anc_pl,
#anc_pl_wrapper.pip-mode > #anc_pl { position: fixed; bottom: 20px; right: 20px; width: 355px; height: auto; z-index: 999999; box-shadow: 0 5px 15px rgb(0 0 0 / .5); background: var(--ancButton); outline: 6px solid var(--ancButton); border-radius: 8px; overflow: hidden; }
#anc_pl_wrapper.pip-mode > .anc-video-column > #anc_pl_controls, 
#anc_pl_wrapper.pip-mode > #anc_pl_controls, 
#anc_pl_wrapper.pip-mode > #anc_tp { display: none; }
.pip-close-button { display: none; position: fixed; bottom: calc(20px + 200px - 15px); right: calc(20px - 15px); width: 30px; height: 30px; background: rgb(0 0 0 / .8); color: #fff; border-radius: 50%; cursor: pointer; text-align: center; line-height: 28px; font-size: 24px; font-family: sans-serif; z-index: 1000000; border: 1px solid #fff; }
#anc_pl_wrapper.pip-mode + .pip-close-button { display: block; }

/* Ads Overlay */
#anc_ad_container { position: relative; width: 100%; aspect-ratio: 16/9; background: #000; }
#anc_ad_video { width: 100%; height: 100%; display: block; }
#anc_ad_controls { position: absolute; bottom: 15px; right: 15px; z-index: 1; font-family: Arial, sans-serif; cursor: default; }
#anc_ad_countdown, #anc_ad_skip_button { background: rgb(0 0 0 / .7); color: #fff; padding: 8px 12px; border-radius: 3px; font-size: 14px; backdrop-filter: blur(5px); }
#anc_ad_skip_button { display: none; border: none; cursor: pointer; transition: background .2s ease; }
#anc_ad_skip_button:hover { background: rgb(30 30 30 / .9); }

.jw-icon-cc .jw-svg-icon-cc-off path,.jw-icon-cc .jw-svg-icon-cc-on path,.jw-icon-pip,.jw-icon-pip .jw-svg-icon-pip-off path,.jw-icon-pip .jw-svg-icon-pip-on path,.jw-icon.jw-icon-inline.jw-button-color.jw-reset.jw-icon-pip,.jw-icon.jw-icon-inline.jw-button-color.jw-reset.jw-icon-rewind,.jw-state-idle .jw-svg-icon-play path,.jw-svg-icon-buffer path,.jw-svg-icon-fullscreen-off path,.jw-svg-icon-fullscreen-on path,.jw-svg-icon-pause path,.jw-svg-icon-play path,.jw-svg-icon-replay path,.jw-svg-icon-rewind path,.jw-svg-icon-settings path,.jw-svg-icon-volume-0 path,.jw-svg-icon-volume-100 path,.jw-svg-icon-volume-50 path,.jw-svg-icon.jw-svg-icon-sharing path{display:none}
.jw-text{padding:5px 0!important}
.jw-state-idle .jw-svg-icon-play,.jw-svg-icon-buffer,.jw-svg-icon-play{background-size:contain;background-repeat:no-repeat;filter:brightness(0) invert(1)}
.jw-state-idle .jw-svg-icon-play{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2S2 6.477 2 12s4.477 10 10 10' clip-rule='evenodd' opacity='0.35'/%3E%3Cpath fill='%23fff' d='m15.414 13.059l-4.72 2.787C9.934 16.294 9 15.71 9 14.786V9.214c0-.924.934-1.507 1.694-1.059l4.72 2.787c.781.462.781 1.656 0 2.118'/%3E%3C/svg%3E")}
.jw-svg-icon-play{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M5 5.274c0-1.707 1.826-2.792 3.325-1.977l12.362 6.727c1.566.852 1.566 3.1 0 3.952L8.325 20.702C6.826 21.518 5 20.432 5 18.726z'/%3E%3C/svg%3E")}
.jw-svg-icon-buffer{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12 2A10 10 0 1 0 22 12A10 10 0 0 0 12 2Zm0 18a8 8 0 1 1 8-8A8 8 0 0 1 12 20Z' opacity='0.4'/%3E%3Cpath fill='%23fff' d='M20 12h2A10 10 0 0 0 12 2V4A8 8 0 0 1 20 12Z'%3E%3CanimateTransform attributeName='transform' dur='0.75s' from='0 12 12' repeatCount='indefinite' to='360 12 12' type='rotate'/%3E%3C/path%3E%3C/svg%3E");background-position:center}
.jw-svg-icon-replay{background:url(https://www.svgrepo.com/show/274164/refresh.svg) center/contain no-repeat;filter:brightness(0) invert(1);transform:scaleX(-1)}
.jw-icon-cc .jw-svg-icon-cc-on{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 28 28'%3E%3Cpath fill='%23fff' d='M6.25 4A4.25 4.25 0 0 0 2 8.25v11.5A4.25 4.25 0 0 0 6.25 24h15.5A4.25 4.25 0 0 0 26 19.75V8.25A4.25 4.25 0 0 0 21.75 4zm4.801 5.742c.622.093 1.226.319 1.668.672a.75.75 0 1 1-.937 1.172c-.184-.147-.517-.296-.95-.36a2.8 2.8 0 0 0-1.308.108a2.04 2.04 0 0 0-1.048.79C8.206 12.523 8 13.118 8 14s.206 1.477.476 1.876c.27.397.636.648 1.048.79c.42.143.883.17 1.308.108c.433-.065.766-.213.95-.36a.75.75 0 0 1 .937 1.172c-.442.353-1.046.58-1.668.672a4.3 4.3 0 0 1-2.013-.174a3.53 3.53 0 0 1-1.803-1.366c-.472-.695-.735-1.6-.735-2.718s.263-2.023.735-2.718a3.53 3.53 0 0 1 1.803-1.366a4.3 4.3 0 0 1 2.013-.174m10.167.672a.75.75 0 1 1-.936 1.172c-.183-.147-.517-.296-.95-.36a2.8 2.8 0 0 0-1.308.108a2.04 2.04 0 0 0-1.048.79c-.27.399-.476.994-.476 1.876s.206 1.477.476 1.876c.27.397.637.648 1.049.79c.419.143.882.17 1.306.108c.434-.065.768-.213.95-.36a.75.75 0 0 1 .938 1.172c-.443.353-1.046.58-1.668.672a4.3 4.3 0 0 1-2.013-.174a3.53 3.53 0 0 1-1.803-1.366C15.263 16.023 15 15.118 15 14s.263-2.023.735-2.718a3.53 3.53 0 0 1 1.803-1.366a4.3 4.3 0 0 1 2.013-.174c.622.093 1.226.319 1.668.672'/%3E%3C/svg%3E");background-size:contain;background-repeat:no-repeat;filter:brightness(0) invert(1)}
.jw-icon-cc .jw-svg-icon-cc-off{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 28 28'%3E%3Cpath fill='%23fff' d='M11.051 9.742c.622.093 1.226.319 1.668.672a.75.75 0 1 1-.937 1.172c-.184-.147-.517-.296-.95-.36a2.8 2.8 0 0 0-1.308.108a2.04 2.04 0 0 0-1.048.79C8.206 12.523 8 13.118 8 14s.206 1.477.476 1.876c.27.397.636.648 1.048.79c.42.143.883.17 1.308.108c.433-.065.766-.213.95-.36a.75.75 0 0 1 .937 1.172c-.442.353-1.046.58-1.668.672a4.3 4.3 0 0 1-2.013-.174a3.53 3.53 0 0 1-1.803-1.366c-.472-.695-.735-1.6-.735-2.718s.263-2.023.735-2.718a3.53 3.53 0 0 1 1.803-1.366a4.3 4.3 0 0 1 2.013-.174m10.167.672c-.442-.353-1.045-.58-1.667-.672a4.3 4.3 0 0 0-2.013.174c-.682.233-1.33.67-1.803 1.366c-.472.695-.735 1.6-.735 2.718s.263 2.023.735 2.718a3.53 3.53 0 0 0 1.803 1.366a4.3 4.3 0 0 0 2.013.174c.622-.092 1.226-.319 1.668-.672a.75.75 0 1 0-.937-1.172c-.183.147-.517.295-.95.36a2.8 2.8 0 0 1-1.308-.108a2.03 2.03 0 0 1-1.048-.79c-.27-.399-.476-.994-.476-1.876s.206-1.477.476-1.876c.27-.397.637-.648 1.049-.79c.419-.143.882-.17 1.306-.108c.434.064.768.213.95.36a.75.75 0 0 0 .938-1.172M2 8.25A4.25 4.25 0 0 1 6.25 4h15.5A4.25 4.25 0 0 1 26 8.25v11.5A4.25 4.25 0 0 1 21.75 24H6.25A4.25 4.25 0 0 1 2 19.75zM6.25 5.5A2.75 2.75 0 0 0 3.5 8.25v11.5a2.75 2.75 0 0 0 2.75 2.75h15.5a2.75 2.75 0 0 0 2.75-2.75V8.25a2.75 2.75 0 0 0-2.75-2.75z'/%3E%3C/svg%3E");background-size:contain;background-repeat:no-repeat;filter:brightness(0) invert(1)}
.jw-svg-icon.jw-svg-icon-sharing{background-image:url(https://www.svgrepo.com/show/527441/share.svg);background-size:contain;background-repeat:no-repeat;filter:brightness(0) invert(1)}
.jw-icon-pip .jw-svg-icon-pip-on{background-image:url(https://www.svgrepo.com/show/347273/picture-in-picture-2.svg);background-size:contain;background-repeat:no-repeat;filter:brightness(0) invert(1)}
.jw-icon-pip .jw-svg-icon-pip-off{background-image:url(https://www.svgrepo.com/show/347275/picture-in-picture-exit.svg);background-size:contain;background-repeat:no-repeat;filter:brightness(0) invert(1)}
.jw-svg-icon-pause{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240'%3E%3Cpath fill='%23fff' d='M169 200c-6.1 0-11-3.6-11.1-8V48c0-4.4 4.9-8 11.1-8s11.1 3.6 11.1 8v144c-.1 4.4-5 8-11.1 8zm-98 0c-6.1 0-11-3.6-11.1-8V48c0-4.4 5-8 11.1-8s11.1 3.6 11.1 8v144c0 4.4-5 8-11.1 8z' fill-rule='evenodd' clip-rule='evenodd'/%3E%3C/svg%3E");background-size:contain;background-repeat:no-repeat}
.jw-svg-icon-volume-100{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M5.06 9.94A1.5 1.5 0 0 0 4 9.5H2a.5.5 0 0 1-.5-.5V7a.5.5 0 0 1 .5-.5h2a1.5 1.5 0 0 0 1.06-.44l2.483-2.482a.268.268 0 0 1 .457.19v8.464a.268.268 0 0 1-.457.19zM2 5h2l2.482-2.482A1.768 1.768 0 0 1 9.5 3.768v8.464a1.768 1.768 0 0 1-3.018 1.25L4 11H2a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2m12.162 8.103c-.265.319-.743.316-1.036.024c-.292-.293-.288-.766-.031-1.09A6.47 6.47 0 0 0 14.5 8a6.47 6.47 0 0 0-1.405-4.037c-.257-.324-.261-.797.031-1.09c.293-.292.771-.294 1.036.024A7.97 7.97 0 0 1 16 8c0 1.94-.69 3.718-1.838 5.103m-2.138-2.135c-.246.333-.726.33-1.019.037s-.284-.764-.06-1.113A3.5 3.5 0 0 0 11.5 8c0-.697-.204-1.347-.555-1.892c-.224-.348-.233-.82.06-1.113s.773-.296 1.02.037C12.637 5.862 13 6.89 13 8a4.98 4.98 0 0 1-.976 2.968' clip-rule='evenodd'/%3E%3C/svg%3E");background-size:contain;background-repeat:no-repeat}
.jw-svg-icon-volume-50{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M5.06 9.94A1.5 1.5 0 0 0 4 9.5H2a.5.5 0 0 1-.5-.5V7a.5.5 0 0 1 .5-.5h2a1.5 1.5 0 0 0 1.06-.44l2.483-2.482a.268.268 0 0 1 .457.19v8.464a.268.268 0 0 1-.457.19zM2 5h2l2.482-2.482A1.768 1.768 0 0 1 9.5 3.768v8.464a1.768 1.768 0 0 1-3.018 1.25L4 11H2a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2m10.024 5.968c-.246.333-.726.33-1.019.037s-.284-.764-.06-1.113A3.5 3.5 0 0 0 11.5 8c0-.697-.204-1.347-.555-1.892c-.224-.348-.233-.82.06-1.113s.773-.296 1.02.037C12.637 5.862 13 6.89 13 8a4.98 4.98 0 0 1-.976 2.968' clip-rule='evenodd'/%3E%3C/svg%3E");background-size:contain;background-repeat:no-repeat}
.jw-svg-icon-volume-0{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M5.06 9.94A1.5 1.5 0 0 0 4 9.5H2a.5.5 0 0 1-.5-.5V7a.5.5 0 0 1 .5-.5h2a1.5 1.5 0 0 0 1.06-.44l2.483-2.482a.268.268 0 0 1 .457.19v8.464a.268.268 0 0 1-.457.19zM2 5h2l2.482-2.482A1.768 1.768 0 0 1 9.5 3.768v8.464a1.768 1.768 0 0 1-3.018 1.25L4 11H2a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2m10.28.72a.75.75 0 1 0-1.06 1.06L12.44 8l-1.22 1.22a.75.75 0 1 0 1.06 1.06l1.22-1.22l1.22 1.22a.75.75 0 1 0 1.06-1.06L14.56 8l1.22-1.22a.75.75 0 0 0-1.06-1.06L13.5 6.94z' clip-rule='evenodd'/%3E%3C/svg%3E");background-size:contain;background-repeat:no-repeat}
.jw-svg-icon-settings{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12 15.5A3.5 3.5 0 0 1 8.5 12A3.5 3.5 0 0 1 12 8.5a3.5 3.5 0 0 1 3.5 3.5a3.5 3.5 0 0 1-3.5 3.5m7.43-2.53c.04-.32.07-.64.07-.97s-.03-.66-.07-1l2.11-1.63c.19-.15.24-.42.12-.64l-2-3.46c-.12-.22-.39-.31-.61-.22l-2.49 1c-.52-.39-1.06-.73-1.69-.98l-.37-2.65A.506.506 0 0 0 14 2h-4c-.25 0-.46.18-.5.42l-.37 2.65c-.63.25-1.17.59-1.69.98l-2.49-1c-.22-.09-.49 0-.61.22l-2 3.46c-.13.22-.07.49.12.64L4.57 11c-.04.34-.07.67-.07 1s.03.65.07.97l-2.11 1.66c-.19.15-.25.42-.12.64l2 3.46c.12.22.39.3.61.22l2.49-1.01c.52.4 1.06.74 1.69.99l.37 2.65c.04.24.25.42.5.42h4c.25 0 .46-.18.5-.42l.37-2.65c.63-.26 1.17-.59 1.69-.99l2.49 1.01c.22.08.49 0 .61-.22l2-3.46c.12-.22.07-.49-.12-.64z'/%3E%3C/svg%3E");background-size:contain;background-repeat:no-repeat;filter:brightness(0) invert(1)}
.jw-svg-icon-fullscreen-on{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='m12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035q-.016-.005-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093q.019.005.029-.008l.004-.014l-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z'/%3E%3Cpath fill='%23fff' d='M18.5 5.5H16a1.5 1.5 0 0 1 0-3h3A2.5 2.5 0 0 1 21.5 5v3a1.5 1.5 0 0 1-3 0zM8 5.5H5.5V8a1.5 1.5 0 1 1-3 0V5A2.5 2.5 0 0 1 5 2.5h3a1.5 1.5 0 1 1 0 3m0 13H5.5V16a1.5 1.5 0 0 0-3 0v3A2.5 2.5 0 0 0 5 21.5h3a1.5 1.5 0 0 0 0-3m8 0h2.5V16a1.5 1.5 0 0 1 3 0v3a2.5 2.5 0 0 1-2.5 2.5h-3a1.5 1.5 0 0 1 0-3'/%3E%3C/g%3E%3C/svg%3E");background-size:contain;background-repeat:no-repeat;filter:brightness(0) invert(1)}
.jw-svg-icon-fullscreen-off{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='m12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035q-.016-.005-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093q.019.005.029-.008l.004-.014l-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z'/%3E%3Cpath fill='%23fff' d='M17.5 6.5H20a1.5 1.5 0 0 1 0 3h-3A2.5 2.5 0 0 1 14.5 7V4a1.5 1.5 0 0 1 3 0zM4 6.5h2.5V4a1.5 1.5 0 1 1 3 0v3A2.5 2.5 0 0 1 7 9.5H4a1.5 1.5 0 1 1 0-3m0 11h2.5V20a1.5 1.5 0 0 0 3 0v-3A2.5 2.5 0 0 0 7 14.5H4a1.5 1.5 0 0 0 0 3m16 0h-2.5V20a1.5 1.5 0 0 1-3 0v-3a2.5 2.5 0 0 1 2.5-2.5h3a1.5 1.5 0 0 1 0 3'/%3E%3C/g%3E%3C/svg%3E");background-size:contain;background-repeat:no-repeat;filter:brightness(0) invert(1)}
.jw-icon.jw-icon-inline.jw-button-color.jw-reset.jw-icon-rewind{background-size:23px;background-repeat:no-repeat;background-position:center}
.jw-breakpoint-5 .jw-display .jw-svg-icon{width:100%!important;height:65px!important;margin-left:15px!important}
.jw-controlbar .jw-button-container .jw-button-color:hover{filter:invert(0%) sepia(55%) saturate(3217%) hue-rotate(64deg) brightness(87%) contrast(103%)}
.jw-slider-horizontal.jw-chapter-slider-time .jw-slider-container .jw-timesegment-progress{background:linear-gradient(-90deg,#1fc591,#23d41e 97%)}