@font-face {
    font-family: Noto Color Emoji Fallback;
    font-style: normal;
    font-weight: 400;
    src: url(fonts/NotoColorEmoji-flagsonly.woff2)format("woff2"), url(/assets/fonts/NotoColorEmoji-flagsonly.woff)format("woff"), url(/assets/fonts/NotoColorEmoji-flagsonly.ttf)format("truetype");
    unicode-range: U+1F1E6-1F1FF;
    font-display: swap
}

@font-face {
    font-family: Roboto;
    src: url(fonts/Roboto-Regular.woff2)format("woff2"), url(/assets/fonts/Roboto-Regular.woff)format("woff"), url(/assets/fonts/Roboto-Regular.ttf)format("truetype");
    font-weight: 400;
    font-display: swap
}

@font-face {
    font-family: Roboto;
    src: url(fonts/Roboto-Medium.woff2)format("woff2"), url(/assets/fonts/Roboto-Medium.woff)format("woff"), url(/assets/fonts/Roboto-Medium.ttf)format("truetype");
    font-weight: 500;
    font-display: swap
}

@font-face {
    font-family: Roboto;
    src: url(fonts/Roboto-Bold.woff2)format("woff2"), url(fonts/Roboto-Bold.woff)format("woff"), url(fonts/Roboto-Bold.ttf)format("truetype");
    font-weight: 700;
    font-display: swap
}

@font-face {
    font-family: Famelack Country Flags;
    src: url(fonts/TwemojiCountryFlags.woff2)format("woff2"), url(/assets/fonts/FamelackCountryFlags.woff)format("woff"), url(/assets/fonts/FamelackCountryFlags.ttf)format("truetype");
    font-display: swap
}

:root {
    --bottom-height: 65px;
    --global-header-height: 3.5rem;
    --navigation-drawer-width: 16rem;
    --sidebar-width: 21rem;
    --sidebar-entry-height-mobile: 3.5rem;
    --sidebar-entry-height-desktop: 4rem;
    --sidebar-header-height-mobile: 6rem;
    --sidebar-header-height-desktop: 5rem;
    --sidebar-header-border-radius: 20px;
    --primary-bg-color: #202124;
    --content-section-bg-color: #06080c;
    --nav-drawer-bg-color: #303134;
    --nav-drawer-item-hover-bg-color: #3c4043;
    --primary-border-color: #5f6368;
    --hover-highlight-bg-color: #36373a;
    --selected-item-bg-color: #64d2ff;
    --selected-item-text-color: #24242b;
    --selected-item-text-color-secondary: #2a586b;
    --highlight-text-color: var(--selected-item-bg-color);
    --secondary-text-color: #86888a;
    --hover-secondary-text-color: #b4b8c1;
    --highlight-red: red;
    --brand-accent-color: #79c447;
    --brand-accent-hover-color: #d2ebc1;
    --scrollbar-thumb-color: #fff3;
    --search-bar-bg: var(--hover-highlight-bg-color);
    --overlay-background: #000;
    --modal-content-color: #fff;
    --destructive-button-color: #d32f2f;
    --destructive-button-hover-color: #e53935;
    --media-dock-h: 72px;
    --media-btn: 48px;
    --media-btn-radius: 14px;
    --media-stop-w: 64px;
    --media-tray-gap: 10px;
    --media-stop-peek: 16px;
    --media-stop-tap-slop: 18px;
    --eq-gap: 3px;
    --eq-bar-w: 3px;
    --eq-bar-width: 2px;
    --eq-bar-radius: 2px;
    --eq-height: 12px;
    --eq-min: .35;
    --eq-color-playing: var(--selected-item-bg-color);
    --eq-color-stopped: #78c8ffd9;
    --eq-opacity-playing: .95;
    --media-dock-bg: #18191c;
    --media-dock-bg-desktop: #0f0f0f94;
    --mode-menu-bg: var(--media-dock-bg);
    --media-control-bg: #ffffff29;
    --media-control-bg-hover: #ffffff38;
    --media-control-bg-active: #ffffff47
}

html:not(.app-ready) .navigation-drawer,
html:not(.app-ready) .sidebar-content {
    transition: none !important
}

html:not(.app-ready) .close-video,
html:not(.app-ready) .favorite-toggle--video,
html:not(.app-ready) .play-button-overlay {
    display: none !important
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body,
html {
    height: 100%;
    overflow: hidden
}

body {
    background-color: var(--primary-bg-color);
    font-family: Roboto, Helvetica Neue, Arial Nova, Nimbus Sans, Arial, sans-serif
}

button {
    all: unset;
    text-align: center;
    box-sizing: border-box;
    cursor: pointer;
    line-height: 1
}

@supports ((-moz-appearance:none)) {
    .custom-scroll {
        scrollbar-width: thin;
        scrollbar-color: var(--scrollbar-thumb-color) transparent
    }
}

.custom-scroll::-webkit-scrollbar {
    width: .5rem;
    height: 1rem
}

.custom-scroll::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-thumb-color);
    border-radius: 9999px
}

.custom-scroll::-webkit-scrollbar-track {
    background: 0 0
}

.section-content {
    top: var(--global-header-height);
    width: 100%;
    height: calc(100% - var(--global-header-height));
    background-color: var(--content-section-bg-color);
    z-index: 2000;
    padding: 1rem;
    display: none;
    position: absolute;
    overflow-y: auto
}

.section-content.is-active {
    justify-content: center;
    display: flex
}

.global-header,
.sidebar-header,
.sidebar-items,
.sidebar-search-container {
    background-color: var(--primary-bg-color)
}

.global-header {
    z-index: 500;
    height: var(--global-header-height);
    border-bottom: 1px solid var(--primary-border-color);
    flex-shrink: 0;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    display: flex;
    position: relative
}

.navigation-drawer ul {
    list-style: none
}

.navigation-drawer li {
    list-style: none;
    display: block
}

.navigation-drawer {
    width: var(--navigation-drawer-width);
    height: calc(100% - var(--global-header-height) + 1px);
    background-color: var(--nav-drawer-bg-color);
    z-index: 3010;
    color: #fff;
    margin-top: calc(var(--global-header-height) - 1px);
    padding: 0 .75rem 0 0;
    transition: transform .3s ease-in-out;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    overflow: auto;
    transform: translate(-100%)
}

.navigation-drawer.is-active {
    transform: translate(0)
}

.navigation-drawer-overlay {
    z-index: 3000;
    width: 100%;
    height: 100%;
    display: none;
    position: fixed
}

.drawer-content {
    flex-direction: column;
    flex-grow: 1;
    display: flex
}

.drawer-divider {
    border: none;
    border-bottom: 1px solid var(--primary-border-color);
    margin-right: -.75rem
}

.navigation-drawer li.drawer-section-title {
    color: #fff;
    cursor: default;
    align-items: center;
    height: 3.5rem;
    padding: 0 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    display: flex
}

.navigation-drawer .icon {
    justify-content: center;
    align-items: center;
    margin-right: 1.5rem;
    display: flex
}

.logo {
    z-index: 500
}

.logo svg {
    width: auto;
    height: 2rem
}

.burger-menu {
    cursor: pointer;
    z-index: 500;
    flex-direction: column;
    gap: 5px;
    margin-right: 0;
    display: flex
}

.burger-bar {
    background-color: #fff;
    width: 25px;
    height: 3px;
    display: block
}

.burger-menu svg,
.drawer-back-button,
.header-button svg,
.search-back-button svg,
.clear-button svg {
    fill: #fff
}

.burger-menu svg {
    pointer-events: none;
    display: inherit;
    width: 100%;
    height: 100%
}

.sidebar-content {
    z-index: 20;
    width: 100svw;
    height: 100svh;
    max-height: 100%;
    transform: translateY(calc(100svh - (var(--sidebar-header-height-mobile) + var(--global-header-height))));
    flex-direction: column;
    transition: transform .3s ease-in-out;
    display: flex;
    position: absolute;
    top: 0;
    left: 0
}

.sidebar-content.expanded,
html.has-content-url .sidebar-content {
    transform: translateY(0)
}

.sidebar-content.expanded .sidebar-header,
html.has-content-url .sidebar-content .sidebar-header {
    border-radius: 0
}

.sidebar-header {
    --sidebar-header-content-height: 56px;
    height: var(--sidebar-header-height-mobile);
    border-bottom: 1px solid var(--primary-border-color);
    border-radius: var(--sidebar-header-border-radius) var(--sidebar-header-border-radius) 0 0;
    cursor: pointer;
    pointer-events: auto;
    z-index: 100;
    flex-shrink: 0;
    grid-template-rows: auto 1fr auto;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 10px 0;
    display: grid;
    position: relative;
    transform: translateZ(0)
}

.header-actions {
    align-items: center;
    gap: .25rem;
    margin-left: auto;
    padding-right: .5rem;
    display: flex;
    position: relative
}

.header-button {
    cursor: pointer;
    color: #fff;
    background: 0 0;
    border: none;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 6px;
    display: inline-flex
}

.random-button-header {
    z-index: 400
}

.search-button {
    z-index: 700;
    position: relative
}

.search-wrapper {
    align-items: center;
    display: flex;
    position: absolute;
    inset: 0
}

.app-container {
    flex-direction: column;
    height: 100svh;
    display: flex
}

.search-button.active:after {
    content: "";
    background-color: var(--highlight-red);
    pointer-events: none;
    border-radius: 50%;
    width: 6px;
    height: 6px;
    position: absolute;
    top: 0;
    right: 6px
}

.search-input {
    color: #fff;
    background: 0 0;
    border: none;
    border-radius: 2rem;
    outline: none;
    flex-grow: 1;
    padding: .5rem 1rem;
    font-family: inherit;
    font-size: 1rem
}

.search-input:not(:placeholder-shown)~.clear-button {
    display: block
}

.search-input::placeholder {
    color: #fff9;
    opacity: 1
}

.search-form {
    background-color: var(--search-bar-bg);
    border: 1px solid #ffffff4d;
    border-radius: 2rem;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 2.5rem;
    max-height: 2.5rem;
    margin-right: .75rem;
    padding: .5rem;
    display: flex;
    position: relative
}

.search-toggle-content {
    background-color: var(--primary-bg-color);
    z-index: 600;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    right: 0
}

.search-back-button {
    width: 1.5rem;
    min-width: 1.5rem;
    height: 1.5rem;
    min-height: 1.5rem;
    margin: 0 .75rem;
    padding: 0;
    display: flex
}

.video-container {
    background-color: var(--primary-bg-color);
    border-radius: 0;
    width: 100%;
    min-height: 56.25svw;
    display: none;
    position: static;
    transform: none
}

html.has-video-deeplink .video-container,
.sidebar-video {
    display: block
}

.video-player-wrapper {
    aspect-ratio: 16/9;
    background-color: #000;
    width: 100%;
    position: relative;
    overflow: hidden
}

#video-player,
#youtube-player {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background-color: #000;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

#video-player.active,
#youtube-player.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto
}

.video-js {
    aspect-ratio: 16/9;
    width: 100%;
    height: auto
}

.close-video {
    z-index: 1050;
    background-color: var(--highlight-red);
    color: #fff;
    cursor: pointer;
    border: none;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 1.625rem;
    height: 1.625rem;
    display: flex;
    position: absolute;
    top: 6.5rem;
    right: .5rem
}

.modal-button.destructive {
    background-color: var(--destructive-button-color);
    color: #fff
}

.modal-button.destructive:hover {
    background-color: var(--destructive-button-hover-color)
}

.sidebar-entry.unavailable {
    opacity: .5;
    cursor: pointer
}

.sidebar-entry.unavailable:hover {
    opacity: .65
}

.favorite-toggle {
    cursor: pointer;
    background-color: var(--media-control-bg);
    color: #fff;
    border: none;
    border-radius: 50%;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 1.75rem;
    height: 1.75rem;
    padding: 0;
    transition: background-color .15s, transform .12s;
    display: inline-flex
}

.favorite-toggle>span {
    justify-content: center;
    align-items: center;
    display: inline-flex
}

.favorite-toggle svg {
    fill: currentColor;
    width: 20px;
    height: 20px
}

.favorite-toggle:active {
    transform: scale(.92)
}

.favorite-toggle[data-favorited=true] .star-outline,
.favorite-toggle[data-favorited=false] .star-filled {
    display: none
}

.favorite-toggle[data-favorited=true] .star-filled,
.favorite-toggle[data-favorited=false] .star-outline {
    display: inline-block
}

.favorite-toggle--video {
    z-index: 1045;
    background-color: var(--primary-bg-color);
    position: absolute;
    top: 6.5rem;
    left: .5rem
}

.favorite-toggle--video[data-favorited=true],
.favorite-toggle--media[data-favorited=true] {
    background-color: var(--brand-accent-color)
}

.mobile-handle {
    z-index: 2000;
    background-color: #ffffff80;
    border-radius: 99px;
    place-self: end center;
    width: 1.5rem;
    height: 4px;
    display: block
}

.sidebar {
    color: #f1f1f1;
    flex-direction: column;
    width: 100svw;
    max-width: 100%;
    height: 100svh;
    max-height: 100%;
    display: flex
}

.emoji-flag {
    color: #000;
    width: 1rem;
    font-family: Apple Color Emoji, Noto Color Emoji, Famelack Country Flags, Noto Color Emoji Fallback, sans-serif
}

.scrub-wrap {
    flex-direction: column;
    flex: 1 1 0;
    min-height: 0;
    display: flex;
    position: relative
}

.scrub-wrap>.custom-scroll {
    scrollbar-width: none
}

.scrub-wrap>.custom-scroll::-webkit-scrollbar {
    display: none
}

.sidebar-items {
    contain: layout style;
    flex: 1 1 0;
    min-height: 0;
    padding: 0 12px;
    position: relative;
    overflow: auto
}

.sidebar-skeleton {
    z-index: 1;
    background-color: var(--primary-bg-color);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    padding: 0 .5rem;
    position: absolute;
    inset: 0;
    overflow: hidden
}

.sidebar-skeleton.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto
}

.skeleton-row {
    height: var(--sidebar-entry-height-mobile);
    align-items: center;
    gap: .5rem;
    padding: 0 .75rem;
    display: flex
}

.skeleton-flag {
    background-color: #2a2a2e;
    border-radius: 50%;
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem
}

.skeleton-text {
    background-color: #2a2a2e;
    border-radius: 6px;
    height: .875rem
}

.skeleton-row:nth-child(odd) .skeleton-text {
    width: 55%
}

.skeleton-row:nth-child(2n) .skeleton-text {
    width: 40%
}

.skeleton-row:nth-child(3n) .skeleton-text {
    width: 65%
}

.sidebar-items li {
    height: var(--sidebar-entry-height-mobile);
    border-radius: 10px;
    flex-shrink: 0;
    width: 100%;
    min-width: 40px;
    display: block;
    position: absolute
}

.sidebar-items div a {
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 12px;
    display: flex
}

.hidden {
    clip-path: inset(50%);
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    position: absolute;
    overflow: hidden
}

.sidebar-header-container {
    width: 100%;
    height: var(--sidebar-header-content-height);
    min-height: var(--sidebar-header-content-height);
    align-items: center;
    display: flex;
    position: relative
}

.back-to-country-list-button {
    z-index: 1000;
    background: var(--brand-accent-color);
    cursor: pointer;
    visibility: hidden;
    pointer-events: none;
    border: none;
    border-radius: 0 100% 100% 0;
    justify-content: flex-start;
    align-items: center;
    width: 2.5rem;
    height: 3rem;
    padding: 0;
    display: flex
}

.back-to-country-list-button svg {
    width: 2rem;
    height: 2rem;
    fill: var(--primary-bg-color)
}

html.boot-show-back-button .back-to-country-list-button {
    visibility: visible
}

.back-to-country-list-button.active {
    visibility: visible;
    pointer-events: auto
}

.header-content {
    grid-template-columns: 1fr auto;
    width: 100%;
    height: 100%;
    padding: 0 1.5rem 0 1rem;
    line-height: 1.5rem;
    display: grid;
    position: relative
}

.header-title {
    min-height: 2rem;
    color: var(--highlight-text-color);
    visibility: hidden;
    grid-column: 1/-1;
    align-self: flex-end;
    font-size: 1.5rem;
    line-height: 2rem
}

.header-subtitle,
.local-time {
    visibility: hidden;
    min-height: 1.5rem;
    line-height: 1.5rem
}

.local-time {
    text-align: right;
    min-width: 8ch
}

.header-content-skeleton {
    --pill-radius: 6px;
    --pill-optical-offset: 4px;
    inset: 0 calc(1.5rem - var(--pill-optical-offset)) 0 calc(1rem - var(--pill-optical-offset));
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    grid-template-rows: 2fr 1fr;
    grid-template-columns: 1fr auto;
    align-content: center;
    padding: 6px 0 5px;
    display: grid;
    position: absolute;
    overflow: hidden
}

.header-skeleton-title,
.header-skeleton-subtitle,
.header-skeleton-time {
    border-radius: var(--pill-radius);
    background-color: #2a2a2e
}

.header-skeleton-title {
    grid-area: 1/1;
    align-self: start;
    width: 7.5rem;
    height: 1.25rem
}

.header-skeleton-subtitle {
    grid-area: 2/1;
    align-self: end;
    width: 4.75rem;
    height: .875rem
}

.header-skeleton-time {
    grid-area: 2/2/span 2;
    align-self: end;
    width: 4.25rem;
    height: .875rem
}

html.boot-deeplink-loading .header-content-skeleton {
    opacity: 1;
    visibility: visible
}

html.boot-deeplink-loading :is(.header-title, .header-subtitle, .local-time) span {
    visibility: hidden
}

.header-prompt {
    pointer-events: none;
    visibility: hidden;
    grid-template-columns: 1fr auto;
    align-items: center;
    width: 100%;
    padding: 0 1.5rem;
    line-height: 1.5rem;
    display: grid;
    position: absolute;
    inset: 0
}

.header-prompt-label {
    min-width: 0;
    transform: translateY(-1px)
}

.header-prompt-time {
    text-align: right;
    min-width: 8ch;
    transform: translateY(-1px)
}

html.boot-header-prompt .header-prompt,
.sidebar-header-container.is-prompt .header-prompt,
html.boot-header-content :is(.header-title, .header-subtitle, .local-time),
.sidebar-header-container.is-content :is(.header-title, .header-subtitle, .local-time) {
    visibility: visible
}

.clear-button {
    cursor: pointer;
    color: #fff;
    background: 0 0;
    border: none;
    grid-column: 1;
    width: 1.5rem;
    height: 1.5rem;
    padding: 0;
    display: none;
    position: absolute;
    top: 25%;
    left: 0;
    transform: translateY(0)
}

.globe-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden
}

.globe-viz {
    z-index: 10;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.globe-interaction-blocker {
    z-index: 15;
    background: 0 0;
    width: 100%;
    height: 100%;
    display: none;
    position: absolute;
    top: 0;
    left: 0
}

.loader-wrapper {
    width: 100%;
    height: calc(100% - var(--sidebar-header-height-desktop) + var(--sidebar-header-border-radius));
    z-index: 15;
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    top: 0;
    left: 0
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.loader-icon {
    border: 4px solid #ffffff4d;
    border-top-color: var(--highlight-text-color);
    will-change: transform;
    border-radius: 50%;
    width: 40px;
    height: 40px
}

.loader-wrapper .loader-icon,
.video-loading-overlay.active .loader-icon {
    animation: .8s linear infinite spin
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.video-loading-overlay {
    aspect-ratio: 16/9;
    z-index: 1010;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    width: 100%;
    position: absolute
}

.video-loading-overlay.is-initial {
    background: var(--overlay-background);
    -webkit-backdrop-filter: none;
    backdrop-filter: none
}

.video-loading-overlay.is-rebuffer {
    -webkit-backdrop-filter: blur(5px)saturate(110%);
    backdrop-filter: blur(5px)saturate(110%);
    background: #00000040
}

.video-loading-overlay.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible
}

.play-button-overlay {
    display: none
}

.play-button-overlay.active {
    background-color: var(--overlay-background);
    z-index: 1010;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute
}

.play-icon-wrapper {
    background: var(--brand-accent-color);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    display: flex
}

.play-icon-wrapper:hover {
    background: var(--brand-accent-hover-color);
    transform: scale(1.04)
}

.icon-wrapper {
    width: 1.5rem;
    height: 1.5rem
}

.play-icon {
    fill: var(--overlay-background);
    -webkit-user-select: none;
    user-select: none;
    transform: scale(1.5)
}

.content-container {
    grid-template-rows: auto 1fr;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    text-align: center;
}

.text-content a {
    color: var(--modal-content-color);
    text-decoration: none;
}

.text-content ol,
.text-content ul {
    margin: 1rem 0;
    padding-left: 1rem
}

.text-content ol {
    list-style-type: none
}

.text-content ul {
    list-style-type: none;
    text-decoration: none;
}

.text-content h1,
.text-content h2,
.text-content h3 {
    letter-spacing: .015625rem;
    margin: 3rem 0 .75rem;
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.4
}

.text-content h4 {
    letter-spacing: .01rem;
    margin: 1.75rem 0 .35rem;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.45
}

.text-content p+h3 {
    margin-top: 1.5rem
}

.text-content p+h4 {
    margin-top: 1.25rem
}

.text-content h1,
.text-content h2 {
    margin-top: 0
}

.text-content {
    letter-spacing: .0125rem;
    color: #fff;
    width: 100%;
    max-width: 73ch;
    padding: 0 0 3rem;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.8
}

.text-content p {
    margin: 0 0 1.25rem;
    line-height: 1.7
}

.loading-indicator {
    background-color: var(--brand-accent-color);
    transform-origin: 0;
    z-index: 1000;
    width: 100%;
    height: 2px;
    transition: transform .5s ease-out;
    position: fixed;
    top: 0;
    left: 0;
    transform: scaleX(0)
}

.globe-country-label {
    color: #333;
    text-align: center;
    background-color: #ffffffb3;
    border-radius: 3px;
    padding: 2px 5px
}

.sidebar-items li.sidebar-entry.playing .indicator {
    color: var(--selected-item-text-color-secondary)
}

.drawer-menu-button {
    text-align: left;
    cursor: pointer;
    background-color: #0000;
    border: none;
    align-items: center;
    width: 100%;
    height: 3.5rem;
    padding: 0 1rem;
    display: flex
}

.menu-logo-container {
    align-items: center;
    display: flex
}

.menu-logo-container p{
    position: relative;
    left:5px;
    color:#fff;
    font-size:1.3rem;
    font-weight:500
}

@media only screen and (max-width: 500px) {
    .menu-logo-container p{
        font-size:0.8rem;
    }
    #wtv {
        width: 100%;
    }
}

.overlay {
    z-index: 10;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0
}

.media-container {
    background-color: var(--content-section-bg-color);
    width: 100%;
    height: 100%;
    max-height: 100%;
    display: flex;
    position: relative;
    overflow: hidden
}

.section-close {
    color: #fff;
    cursor: pointer;
    justify-self: end;
    font-size: 2.5rem;
    line-height: 1.5
}

.sidebar-search-container {
    display: none
}

.search-actions {
    align-items: center;
    display: flex
}

.overlay,
.nav-toggle,
.sidebar-items div.filtered-out {
    display: none
}

.main {
    flex-grow: 1;
    display: flex;
    position: relative;
    overflow: hidden
}

.main-content {
    flex-grow: 1;
    display: flex;
    overflow: auto
}

.video-link {
    text-align: left;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 .75rem;
    display: flex
}

.sidebar-items .no-channels-message {
    height: var(--sidebar-entry-height-mobile);
    align-items: center;
    width: 100%;
    min-width: 40px;
    padding-left: .75rem;
    display: flex
}

.channel-name-container {
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-box-orient: vertical;
    max-height: 3rem;
    padding: 0 .75rem;
    line-height: 1.5rem;
    display: -webkit-box;
    overflow: hidden
}

.indicator-container .language-code {
    white-space: nowrap;
    width: 3ch;
    font-size: .75rem
}

.indicator-container {
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    margin-left: auto;
    display: flex
}

.sidebar-entry {
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden
}

.sidebar-entry a:focus {
    outline: none
}

.sidebar-entry.hover-active {
    background-color: #ebebeb
}

.sidebar-items li.sidebar-entry.playing {
    color: var(--selected-item-text-color);
    background-color: var(--selected-item-bg-color);
    letter-spacing: -.0109rem;
    font-weight: 700
}

.search-button.disabled {
    opacity: .1;
    cursor: not-allowed;
    pointer-events: none
}

.drawer-header {
    height: var(--global-header-height);
    align-items: center;
    display: flex
}


.sidebar-items li.active {
    background-color: var(--hover-highlight-bg-color)
}

.sidebar-items li.active .indicator {
    color: var(--hover-secondary-text-color)
}

.indicator {
    color: var(--secondary-text-color);
    justify-content: center;
    align-items: center;
    width: auto;
    height: 1rem;
    font-size: .75rem;
    display: flex
}

.modal,
.backdrop {
    display: none
}

.backdrop.active {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 500;
    background-color: #00000080;
    width: 100svw;
    height: 100svh;
    display: block;
    position: fixed;
    top: 0;
    left: 0
}

.modal.active {
    z-index: 510;
    background-color: var(--primary-bg-color);
    border-radius: 25px;
    grid-template-rows: 3fr 1fr;
    width: 80svw;
    min-width: 300px;
    max-width: 500px;
    height: auto;
    max-height: 450px;
    line-height: 1.5;
    display: grid;
    position: fixed;
    top: 50%;
    left: 50%;
    overflow: hidden;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 12px #00000040
}

.modal-header {
    background-color: var(--primary-bg-color);
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    grid-template-rows: auto auto auto;
    place-items: center;
    padding: 20px;
    display: grid
}

.modal-icon-wrapper {
    justify-content: center;
    display: flex
}

.modal-icon {
    width: 4rem;
    height: 4rem;
    color: var(--modal-content-color)
}

.modal-icon svg {
    width: 100%;
    height: 100%
}

.modal-title {
    color: var(--modal-content-color);
    margin-top: .5rem;
    font-size: 1.625rem;
    font-weight: 500
}

.modal-message {
    color: var(--modal-content-color);
    max-width: 85%;
    margin: .5rem auto;
    font-size: 1rem;
    line-height: 1.45
}

.modal-footer {
    background-color: var(--hover-highlight-bg-color);
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 25px;
    justify-content: center;
    align-items: center;
    display: flex
}

.modal-button {
    color: var(--modal-content-color);
    cursor: pointer;
    width: 100%;
    height: 100%;
    font-size: 1.5rem
}

.modal-button:focus {
    outline: none
}

.media-dock {
    flex: 0 0 var(--media-dock-h);
    z-index: 100;
    background-color: var(--media-dock-bg);
    border-top: 1px solid var(--primary-border-color);
    align-items: center;
    width: 100%;
    display: flex;
    position: relative;
    overflow: visible
}

.media-dock-content {
    align-items: stretch;
    gap: 1rem;
    width: 100%;
    padding-inline: 1rem;
    display: flex
}

.media-center {
    flex: auto;
    align-items: center;
    min-width: 0;
    display: flex
}

.media-info {
    flex-direction: column;
    flex: 1;
    justify-content: center;
    gap: 2px;
    min-width: 0;
    display: flex
}

.visualizer-container {
    transform: translateY(-2px)
}

#media-display-name {
    grid-row: 1
}

#media-display-location {
    grid-row: 2
}

.media-title {
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0;
    font-size: 1rem;
    line-height: 1.125rem;
    overflow: hidden
}

.media-subtitle {
    white-space: nowrap;
    text-overflow: ellipsis;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: .9rem;
    line-height: 1.125rem;
    display: flex;
    overflow: hidden
}

.media-location-text {
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #ffffff80;
    min-width: 0;
    font-size: .82rem;
    overflow: hidden
}

.media-flag {
    opacity: .85;
    flex: none
}

.media-right {
    align-items: stretch;
    gap: .75rem;
    margin-left: auto;
    display: flex
}

.media-right-stack {
    grid-template-rows: 1fr 1fr;
    place-items: center end;
    min-width: 32px;
    display: grid
}

.media-left-stack {
    align-items: center;
    display: flex
}

.media-volume-btn {
    cursor: pointer;
    color: #fff;
    background: 0 0;
    border: none;
    padding: 0;
    display: none
}

.media-audio-cluster,
.audio-visualizer {
    align-items: flex-end;
    display: inline-flex
}

.audio-visualizer {
    gap: var(--eq-gap);
    height: var(--eq-height);
    pointer-events: none;
    opacity: 0;
    grid-row: 2;
    margin-bottom: 2px;
    transition: opacity .18s
}

.audio-visualizer .eq-bar {
    width: var(--eq-bar-width);
    border-radius: var(--eq-bar-radius);
    transform-origin: bottom;
    will-change: transform;
    opacity: .9;
    height: 100%;
    animation: famelack-eq-meter var(--eq-d, .8s) linear infinite both;
    background: currentColor
}

.audio-control-btn {
    align-self: center
}

#media-dock .eq-bar:first-child {
    --eq-d: .66s;
    animation-delay: -.11s
}

#media-dock .eq-bar:nth-child(2) {
    --eq-d: .82s;
    animation-delay: -.37s
}

#media-dock .eq-bar:nth-child(3) {
    --eq-d: .72s;
    animation-delay: -.23s
}

#media-dock .eq-bar:nth-child(4) {
    --eq-d: .94s;
    animation-delay: -.55s
}

#media-dock.is-stopped .audio-visualizer {
    opacity: .45;
    color: var(--eq-color-stopped)
}

#media-dock.is-playing .audio-visualizer {
    opacity: var(--eq-opacity-playing);
    color: var(--eq-color-playing)
}

#media-dock.is-playing {
    --eq-min: .2;
    --eq-a: .95;
    --eq-b: .55;
    --eq-c: .85;
    --eq-damp: 1
}

#media-dock.is-stopped .eq-bar {
    animation: none;
    transform: scaleY(.25)
}

#media-dock.is-playing .eq-bar {
    animation-play-state: running
}

#media-dock.is-loading .audio-visualizer {
    opacity: .45;
    color: var(--eq-color-stopped)
}

#media-dock.is-loading {
    --eq-min: .12;
    --eq-a: .28;
    --eq-b: .18;
    --eq-c: .24
}

#media-dock.is-loading .eq-bar {
    opacity: .65;
    animation-duration: 1.25s;
    animation-timing-function: ease-in-out;
    animation-play-state: running
}

@keyframes famelack-eq-meter {
    0% {
        transform: scaleY(var(--eq-min, .2))
    }

    10% {
        transform: scaleY(var(--eq-a, .9))
    }

    28% {
        transform: scaleY(var(--eq-b, .5))
    }

    46% {
        transform: scaleY(1)
    }

    64% {
        transform: scaleY(var(--eq-c, .7))
    }

    to {
        transform: scaleY(var(--eq-min, .2))
    }
}

#media-dock.is-loading .eq-bar:first-child {
    animation-delay: 0s
}

#media-dock.is-loading .eq-bar:nth-child(2) {
    animation-delay: .1s
}

#media-dock.is-loading .eq-bar:nth-child(3) {
    animation-delay: .2s
}

#media-dock.is-loading .eq-bar:nth-child(4) {
    animation-delay: .3s
}

.media-volume-slider-wrap {
    opacity: 0;
    pointer-events: none;
    width: 0;
    transition: width .16s, opacity .16s;
    display: none;
    overflow: hidden
}

.audio-control-btn {
    width: var(--media-btn);
    height: var(--media-btn);
    background: var(--media-control-bg);
    cursor: pointer;
    border-radius: 50%;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    transition: transform .12s, background .12s;
    display: flex;
    position: relative
}

.audio-control-btn:before {
    content: "";
    pointer-events: none;
    border-radius: 50%;
    position: absolute;
    inset: -10px
}

.audio-control-btn:hover {
    background: #ffffff12
}

.audio-control-btn:active {
    transform: scale(.94)
}

.audio-control-btn svg {
    fill: #ffffffeb;
    width: 26px;
    height: 26px;
    display: block
}

.audio-control-btn .icon {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    contain: paint;
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    inset: 0
}

.audio-control-btn[data-state=stopped] .icon-play,
.audio-control-btn[data-state=playing] .icon-stop,
.audio-control-btn[data-state=loading] .icon-loading {
    opacity: 1;
    visibility: visible
}

.audio-control-btn[data-state=loading] .icon-loading {
    transform-origin: 50%;
    will-change: transform;
    animation: 1s linear infinite mediaSpinner
}

@keyframes mediaSpinner {
    to {
        transform: rotate(360deg)
    }
}

@media (prefers-reduced-motion:reduce) {
    .audio-control-btn[data-state=loading] .icon-loading {
        animation: none
    }
}

.media-dock-right-tray {
    align-items: center;
    display: flex
}

.media-dock-right-tray #media-play-stop {
    margin-right: var(--media-tray-gap)
}

.media-dock-right-tray .stop-btn-wrapper {
    width: var(--media-stop-w);
    background: var(--destructive-button-color);
    border-left: 1px solid #ffffff1a;
    justify-content: center;
    align-items: center;
    height: 100%;
    display: flex
}

.media-dock-right-tray .stop-btn-wrapper .stop-btn {
    width: var(--media-btn);
    height: var(--media-btn);
    border-radius: var(--media-btn-radius);
    background: 0 0;
    border: none
}

@media (hover:hover) and (pointer:fine) {
    .media-dock-right-tray .stop-btn:hover {
        background: #ffffff14
    }
}

#media-dock-stop {
    position: relative
}

#media-dock-stop:before {
    content: "";
    top: 0;
    bottom: 0;
    left: calc(var(--media-stop-tap-slop) * -1);
    position: absolute;
    right: 0
}

.media-dock.hidden {
    display: none
}

html.boot-mode-tv .mode-button .icon-tv {
    display: block
}

html.boot-mode-tv .mode-button .icon-radio {
    display: none
}

html.boot-mode-radio .mode-button .icon-radio {
    display: block
}

html.boot-mode-radio .mode-button .icon-tv {
    display: none
}

html.boot-mode-tv .mode-dock-segment[data-mode=tv],
html.boot-mode-radio .mode-dock-segment[data-mode=radio],
.mode-dock-segment.is-active {
    background: var(--selected-item-bg-color);
    color: var(--selected-item-text-color)
}

html.boot-mode-tv .mode-dock-segment[data-mode=radio],
html.boot-mode-radio .mode-dock-segment[data-mode=tv] {
    color: #ffffff9e;
    background: 0 0
}

.mode-button .mode-icon svg {
    display: none
}

.mode-button.mode-tv .icon-tv,
.mode-button.mode-radio .icon-radio,
.mode-button.mode-webcam .icon-webcam {
    display: block
}

.mode-button .icon-tv {
    margin-inline-end: 6px;
    transform: translateY(1px)scale(.95)
}

.mode-button .icon-radio {
    margin-inline-end: 5px;
    transform: translateY(1px)scale(1.05)
}

.mode-button svg {
    fill: #ffffffeb;
    color: #fff;
    transition: opacity .15s, filter .15s
}

.mode-button.is-playing svg {
    fill: var(--selected-item-bg-color);
    color: var(--selected-item-bg-color)
}

.mode-button.is-stopped svg {
    fill: #ffffff8c
}

.mode-picker {
    z-index: 400;
    flex-shrink: 0;
    width: 2.5rem;
    min-width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    position: relative
}

.mode-button {
    flex-shrink: 0;
    width: 100%;
    min-width: 0;
    height: 100%
}

.mode-menu {
    background: var(--mode-menu-bg);
    z-index: 9999;
    border: 1px solid #ffffff1a;
    border-radius: 14px;
    min-width: 140px;
    padding: 4px;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    box-shadow: 0 12px 32px #00000059
}

.mode-menu.hidden {
    display: none
}

.mode-menu-item {
    color: #ffffffeb;
    cursor: pointer;
    text-align: left;
    background: 0 0;
    border: 0;
    border-radius: 10px;
    align-items: center;
    width: 100%;
    height: 3.25rem;
    padding: 0;
    font-size: 1rem;
    display: flex
}

.mode-menu-icon {
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    margin-left: .75rem;
    display: inline-flex;
    transform: translateY(-1px)
}

.mode-menu-icon svg {
    opacity: .85;
    width: 18px;
    height: 18px;
    display: block
}

.mode-menu-icon .icon-radio {
    transform: scale(1.15)
}

.mode-menu-label {
    flex: 1;
    margin-left: 10px
}

.mode-menu-item:hover {
    background: #ffffff0f
}

.mode-menu-check {
    opacity: 0;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    margin-right: .5rem;
    display: inline-flex
}

.mode-menu-check svg {
    opacity: .9;
    width: 18px;
    height: 18px;
    display: block
}

.mode-menu-item.is-active .mode-menu-check {
    opacity: .9
}

.mode-dock {
    z-index: 20;
    pointer-events: auto;
    background: #18191ceb;
    border: 1px solid #ffffff1a;
    border-radius: 999px;
    align-items: center;
    gap: 2px;
    padding: 3px;
    transition: opacity .15s, transform .15s;
    display: inline-flex;
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translate(-50%);
    box-shadow: 0 6px 20px #00000059
}

.mode-dock-segment {
    appearance: none;
    cursor: pointer;
    color: #ffffffb8;
    font: inherit;
    background: 0 0;
    border: none;
    border-radius: 999px;
    min-height: 2rem;
    padding: 7px 15px;
    font-size: .8125rem;
    font-weight: 500;
    line-height: 1;
    transition: background-color .15s, color .15s
}

@media (hover:hover) and (pointer:fine) {
    .mode-dock-segment:hover {
        color: #ffffffe0
    }
}

.mode-dock-segment:focus-visible {
    outline: 2px solid var(--selected-item-bg-color);
    outline-offset: 2px
}

.mode-dock-segment.is-active {
    background: var(--selected-item-bg-color);
    color: var(--selected-item-text-color)
}

.mode-dock-label {
    display: inline-block
}

.video-overlay-error {
    z-index: 50;
    pointer-events: none;
    background: #000;
    display: none;
    position: absolute;
    inset: 0
}

.video-overlay-error.active {
    justify-content: flex-start;
    align-items: center;
    padding: clamp(14px, 3vw, 22px);
    display: flex
}

.video-overlay-error .error-content {
    align-items: center;
    gap: 12px;
    max-width: min(560px, 92%);
    display: flex
}

.video-overlay-error .error-icon-wrapper {
    background: #ffffff1a;
    border: 1px solid #ffffff24;
    border-radius: 999px;
    flex: 0 0 40px;
    place-items: center;
    width: 40px;
    height: 40px;
    display: grid
}

.video-overlay-error .error-icon-wrapper svg {
    fill: #ffffffeb;
    width: 22px;
    height: 22px
}

.video-overlay-error p {
    color: #ffffffeb;
    letter-spacing: .2px;
    margin: 0;
    font-size: 16px;
    font-weight: 650;
    line-height: 1.2
}

.video-overlay-error span {
    color: #ffffffb3;
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.25;
    display: block
}

@media (width<=420px) {
    .video-overlay-error .error-content {
        gap: 10px
    }

    .video-overlay-error .error-icon-wrapper {
        flex-basis: 36px;
        width: 36px;
        height: 36px
    }

    .video-overlay-error p {
        font-size: 15px
    }
}

.video-js .vjs-error-display,
.video-js .vjs-modal-dialog,
.video-js .vjs-loading-spinner {
    display: none !important
}

.icon {
    justify-content: center;
    align-items: center;
    line-height: 0;
    display: flex
}

.icon svg {
    display: block
}

@media only screen and (width>=601px) {
    .text-content {
        padding: 1rem;
        font-size: 2.5rem
    }

    .text-content h1,
    .text-content h2,
    .text-content h3 {
        margin: 4.375rem 0 1.25rem;
        font-size: 2.75rem
    }

    .text-content h1,
    .text-content h2 {
        margin-top: 0
    }

    .clear-button {
        cursor: pointer;
        color: #fff;
        background: 0 0;
        border: none;
        display: none;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%)
    }

    .back-to-country-list-button {
        top: 1.25rem;
        right: calc(var(--sidebar-width) - 1.5rem);
        border-radius: 40% 0 0 40%;
        width: auto;
        height: 2.5rem;
        padding-left: .275rem;
        position: absolute
    }

    .back-to-country-list-button:hover {
        background: var(--brand-accent-hover-color)
    }

    .header-content,
    .header-prompt {
        padding: 0
    }

    .header-content-skeleton {
        inset: 0 calc(0px - var(--pill-optical-offset));
        padding: 17px 0
    }

    .sidebar-header-container {
        align-items: normal
    }

    .loader-wrapper {
        height: 100%
    }

    .mobile-handle {
        display: none
    }

    .close-video {
        z-index: 1020;
        width: 2rem;
        height: 2rem;
        top: -1.35rem;
        right: -1rem
    }

    .favorite-toggle {
        width: 2rem;
        height: 2rem;
        top: -1.35rem;
        left: auto;
        right: 1.45rem
    }

    .video-container {
        z-index: 1010;
        width: calc(80svw - var(--sidebar-width));
        pointer-events: auto;
        top: calc(50svh - var(--global-header-height) - (80svw * 9 / 32) + (var(--sidebar-width) * 9 / 32));
        left: calc((100svw - var(--sidebar-width)) / 2 - ((80svw - var(--sidebar-width)) / 2));
        min-height: calc((80svw - var(--sidebar-width)) * 9 / 16);
        background-color: #000000b3;
        border-radius: 10px;
        justify-content: center;
        align-items: center;
        padding: 20px;
        display: none;
        position: absolute;
        box-shadow: 0 4px 6px #0000001a
    }

    .search-back-button {
        display: none
    }

    .search-toggle-content {
        width: 19rem
    }

    .search-form {
        margin-right: 0
    }

    .search-input {
        margin-right: 8px
    }

    .search-wrapper {
        position: relative
    }

    .header-actions {
        gap: .5rem
    }

    .mode-dock {
        top: 1.25rem
    }

    .mode-dock-segment {
        padding: 8px 18px
    }

    .mode-dock.is-hidden-for-video {
        opacity: 0;
        pointer-events: none;
        transform: translate(-50%)translateY(-4px)
    }

    .global-header {
        position: relative
    }

    .drawer-menu-button:hover {
        background-color: var(--nav-drawer-item-hover-bg-color);
        border-radius: 0 3.125rem 3.125rem 0
    }

    .sidebar-content {
        width: var(--sidebar-width);
        position: static;
        transform: none
    }

    .sidebar-content.expanded,
    html.has-content-url .sidebar-content {
        transform: none
    }

    .sidebar-header {
        --sidebar-header-content-height: 79px;
        height: var(--sidebar-header-height-desktop);
        cursor: default;
        pointer-events: none;
        border-radius: 0;
        grid-template-rows: none;
        align-items: stretch;
        gap: 10px;
        padding: 0 1.5rem
    }

    .sidebar-items li,
    .skeleton-row,
    .sidebar-items .no-channels-message {
        height: var(--sidebar-entry-height-desktop)
    }

    .scrub-wrap>.custom-scroll {
        scrollbar-width: thin;
        scrollbar-color: var(--scrollbar-thumb-color) transparent
    }

    .scrub-wrap>.custom-scroll::-webkit-scrollbar {
        width: .5rem;
        display: block
    }

    .modal {
        width: 40svw;
        max-width: 500px;
        height: auto;
        max-height: 80svh
    }

    .modal-title {
        text-align: center;
        font-size: 2rem;
        font-weight: 500
    }

    .modal-message {
        font-size: 1.25rem;
        line-height: 1.55
    }

    .modal-button:hover {
        background-color: var(--nav-drawer-item-hover-bg-color)
    }

    .media-dock {
        left: calc((100svw - var(--sidebar-width)) / 2);
        z-index: 1005;
        width: min(560px, calc(100svw - var(--sidebar-width) - 2rem));
        pointer-events: auto;
        background-color: initial;
        border: none;
        position: absolute;
        bottom: 48px;
        transform: translate(-50%)
    }

    .media-dock.hidden {
        display: none
    }

    .media-dock-content {
        background: var(--media-dock-bg-desktop);
        -webkit-backdrop-filter: blur(18px)saturate(160%);
        backdrop-filter: blur(18px)saturate(160%);
        border: 1px solid #ffffff24;
        border-radius: 18px;
        padding: .625rem 1.125rem
    }

    #media-display-name {
        white-space: nowrap;
        text-overflow: ellipsis;
        max-width: 100%;
        overflow: hidden
    }

    .media-text-info {
        gap: 7px;
        padding-block: 3px
    }

    .audio-visualizer {
        opacity: .8
    }

    @media (hover:hover) and (pointer:fine) {
        .media-volume {
            justify-content: center;
            align-items: center;
            height: 32px;
            margin-top: 0;
            padding-top: 0;
            display: inline-flex;
            position: relative
        }

        .media-volume-btn {
            cursor: pointer;
            opacity: .8;
            z-index: 100;
            justify-content: center;
            align-items: center;
            width: 32px;
            height: 32px;
            transition: opacity .2s;
            display: flex
        }

        .media-volume-btn:hover {
            opacity: 1
        }

        .media-volume-btn svg {
            width: 16px;
            height: 16px
        }

        .media-right-stack {
            gap: 4px;
            padding-block: 6px
        }

        .media-volume,
        .media-volume-btn,
        .visualizer-container {
            height: 1.125rem
        }

        .media-volume-slider-wrap {
            opacity: 0;
            pointer-events: none;
            z-index: 100;
            align-items: center;
            width: 0;
            margin-left: 0;
            transition: width .22s cubic-bezier(.4, 0, .2, 1), opacity .16s, margin-left .22s cubic-bezier(.4, 0, .2, 1);
            display: flex;
            overflow: hidden
        }

        .media-volume:hover .media-volume-slider-wrap,
        .media-volume:focus-within .media-volume-slider-wrap {
            opacity: 1;
            pointer-events: auto;
            width: clamp(40px, 100svw - 633px, 92px);
            margin-left: 6px
        }

        .media-volume:after {
            content: "";
            background: 0 0;
            position: absolute;
            inset: -8px
        }

        .media-volume-slider {
            appearance: none;
            cursor: pointer;
            background: 0 0;
            outline: none;
            width: 100%;
            height: 12px
        }

        .media-volume-slider::-webkit-slider-runnable-track {
            background: linear-gradient(to right, var(--selected-item-bg-color) 0%, var(--selected-item-bg-color) var(--volume-percent, 100%), #ffffff1f var(--volume-percent, 100%), #ffffff1f 100%);
            border-radius: 2px;
            width: 100%;
            height: 4px
        }

        .media-volume-slider::-webkit-slider-thumb {
            appearance: none;
            background: #fff;
            border: none;
            width: 12px;
            height: 12px;
            margin-top: -4px;
            transition: transform .1s;
            box-shadow: 0 2px 4px #0000004d;
            border-radius: 50% !important
        }

        .media-info {
            gap: 4px
        }

        .media-volume-slider::-moz-range-track {
            background: #ffffff1f;
            border-radius: 2px;
            width: 100%;
            height: 4px
        }

        .media-volume-slider::-moz-range-progress {
            background: var(--selected-item-bg-color);
            border-radius: 2px;
            height: 4px
        }

        .media-volume-slider::-moz-range-thumb {
            background: #fff;
            border: none;
            width: 12px;
            height: 12px;
            box-shadow: 0 2px 4px #0000004d;
            border-radius: 50% !important
        }
    }

    .media-volume .icon-volume-muted,
    .media-volume.is-muted .icon-volume-high {
        display: none
    }

    .media-volume.is-muted .icon-volume-muted {
        display: inline
    }

    .media-status-lower {
        align-items: center;
        display: flex;
        transform: translateY(.125rem)
    }

    .visualizer-container {
        flex-shrink: 0;
        justify-content: center;
        align-items: center;
        width: 32px;
        display: flex
    }

    .audio-visualizer {
        transform: translate(-1px, 2px)
    }

    .media-right {
        gap: .5rem
    }
}