:root {
    --primary: #6c6fc6;
    --bg-body: #262626;
    --bg-app: #0a0a0a;
    --bg-inset: #404040;
    --bg-transparent: rgb(255 255 255 / 10%);
    --bg-modal: rgb(255 255 255 / 20%);
    --bg-dark: rgb(0 0 0 / 75%);
    --bg-gradient: linear-gradient(140deg, #6267f0, #06b5d4);
    --color-title: #ffffff;
    --color-text: rgb(255 255 255 / 50%);
    --duration: 0.3s;
    --container: 1480px;
    --spacer: 1rem;
    --shadow-l: 0px 8px 17px 2px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12), 0px 5px 5px -3px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12), 0px 8px 10px -7px rgba(0, 0, 0, 0.2);
    --scrollbar-color: rgb(255 255 255 / 50%);
    --main-padding: 1rem;
}
@keyframes disc-spin {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}
@media (min-width: 992px) {
    :root {
        --main-padding: 3vw;
    }
}
html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}
*,
::after,
::before {
    box-sizing: border-box;
}
body,
html {
    height: 100%;
}
* {
    margin: 0;
}
fieldset,
legend {
    padding: 0;
}
fieldset,
iframe {
    border-width: 0;
}
a {
    color: inherit;
    text-decoration: none;
}
i i-compact-disc {
    animation: 5s disc-spin linear infinite;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
    overflow-wrap: break-word;
}
address {
    font-style: normal;
    line-height: inherit;
}
abbr[title] {
    text-decoration: underline dotted;
}
b,
strong {
    font-weight: bolder;
}
small {
    font-size: 80%;
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.5em;
}
button,
input,
optgroup,
select,
textarea {
    padding: 0;
    border-width: 0;
    font-size: 100%;
    font-family: inherit;
    line-height: inherit;
    color: inherit;
}
input:focus,
textarea:focus {
    outline: 0;
}
textarea {
    resize: vertical;
}
button,
select {
    text-transform: none;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
    -webkit-appearance: button;
    background-color: transparent;
    display: inline-block;
    vertical-align: middle;
}
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}
progress {
    vertical-align: baseline;
}
::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}
summary {
    display: list-item;
}
[hidden] {
    display: none;
}
dd,
dl,
ol,
ul {
    list-style: none;
    padding: 0;
}
table {
    border-collapse: collapse;
    max-width: 100%;
}
tbody,
td,
th,
thead,
tr {
    border-width: 0;
    text-align: inherit;
}
tr > * {
    padding: 0.75rem;
    word-break: normal;
}
canvas,
img,
svg,
video {
    height: auto;
}
source {
    display: none;
}
canvas,
embed,
iframe,
img,
object,
svg,
video {
    display: block;
    max-width: 100%;
}
audio,
video {
    width: 100%;
}
body {
    background-size: cover;
    background-color: var(--bg-body);
    color: var(--color-text);
    font-family: Montserrat, sans-serif;
    transition: background-color var(--duration);
}
body.preload * {
    transition: none !important;
}
@media (max-width: 575px) {
    body,
    html {
        overflow: hidden;
    }
}
::-webkit-resizer {
    display: none;
}
a {
    color: var(--primary);
    transition: color var(--duration);
}
b,
strong {
    font-weight: 700;
    color: var(--color-title);
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    column-gap: var(--btn-gap, 0.5rem);
    background-color: var(--btn-bg, var(--bg-transparent));
    padding: var(--btn-padding, 0.75rem);
    color: var(--btn-color, var(--color-title));
    font-size: var(--btn-fs, 0.875rem);
    font-weight: 700;
    border-radius: 999px;
    line-height: 1.5;
    transition-property: box-shadow, background-color, color;
    transition-duration: var(--duration);
    text-transform: uppercase;
}
.btn:hover {
    color: var(--btn-color-hover, var(--color-title));
}
.btn-full {
    width: 100%;
    justify-content: center;
}
@media (min-width: 992px) {
    .btn {
        --btn-fs: 0.875vw;
        --btn-padding: 0.75vw;
        --i-size: 1.25vw;
        --btn-gap: 0.5vw;
    }
}
.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.truncate-line {
    display: -webkit-box;
    -webkit-line-clamp: var(--line-clamp, 2);
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.app {
    background-color: var(--bg-app);
    position: relative;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}
.app::after {
    content: "";
    inset: 0;
    position: absolute;
    background-color: var(--accent);
    z-index: 5;
    opacity: 0.5;
    transition: background-color var(--long-duration);
}
.header {
    position: absolute;
    width: 100%;
    z-index: 50;
}
@media (max-width: 991px) {
    .header {
        /* background: var(--accent, var(--bg-gradient)); */
        /* box-shadow: var(--shadow-l); */
    }
}
.header-wrapper {
    padding: var(--main-padding);
}
.header-logo-img {
    height: 40px;
}
@media (min-width: 992px) {
    .header-logo-img {
        max-width: 10vw;
        height: auto;
    }
}
.toggle-options {
    gap: 0.5rem;
}
@media (min-width: 992px) {
    .toggle-options {
        gap: 0.5vw;
    }
}
@media (max-width: 991px) {
    .toggle-options {
        --btn-fs: 0;
        --btn-gap: 0;
        --i-size: 16px;
    }
}
.main > * + * {
    margin-top: 3rem;
}
.scrollbar {
    overflow: auto;
    scrollbar-color: var(--scrollbar-color) transparent;
    scrollbar-width: thin;
}
.scrollbar::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: transparent;
}
.scrollbar::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 5px;
}
.scrollbar::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-color);
    border-radius: 10px;
}
.dropdown {
    position: absolute;
    width: 140px;
    background-color: var(--bg-dark);
    padding: 1.5rem;
    border-radius: 1rem;
    left: 50%;
    box-shadow: var(--shadow-l);
    transform: translateX(-50%);
    bottom: calc(100% + 0.5rem);
    transition: opacity var(--duration), transform var(--duration);
}
.dropdown:not(.is-active) {
    pointer-events: none;
    opacity: 0;
    transform: translateX(-50%) translateY(-1rem);
}
@media (min-width: 992px) {
    .footer {
        position: absolute;
        padding: var(--main-padding);
        bottom: 0;
        left: 0;
        display: inline-flex;
        z-index: 10;
    }
    .footer-wrapper {
        gap: 1.25vw;
    }
}
@media (max-width: 991px) {
    .footer-app {
        padding: var(--main-padding);
        border-top: 1px solid;
        border-bottom: 1px solid;
        justify-content: center;
    }
    .footer-copyright {
        padding: var(--main-padding);
        text-align: center;
    }
    .footer-tv {
        padding-bottom: 1rem;
        text-align: center;
    }
}
.footer small {
    font-size: 1rem;
}
@media (min-width: 992px) {
    .footer small {
        font-size: 0.8vw;
    }
}
@media (max-width: 991px) {
    .mobile-menu {
        position: fixed;
        height: 100vh;
        padding-top: calc(2rem + 72px);
        z-index: 40;
        background: var(--accent, var(--bg-gradient));
        transition: transform var(--duration);
        width: 100%;
        max-width: 280px;
    }
    .mobile-menu:not(.is-active) {
        pointer-events: none;
        transform: translateX(-100%);
    }
    .player-social {
        justify-content: center;
        padding: var(--main-padding);
    }
}
.i {
    stroke-width: var(--i-stroke, 2);
    width: var(--i-size, 24px);
    height: var(--i-size, 24px);
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}
@keyframes pulse {
    from {
        opacity: 0;
    }
    50% {
        opacity: 0.2;
    }
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}
.player {
    padding: 2rem;
    position: fixed;
    inset: 0;
    z-index: 10;
    overflow-y: auto;
}
.player-cover {
    max-width: var(--player-max-width, 320px);
    margin: auto;
}
@media (max-width: 991px) {
    .player {
        padding-top: calc(2rem + 72px);
    }
}
.player-cover-image {
    --cover-blurred: 1rem;
    position: absolute;
    z-index: 0;
    object-fit: cover;
    object-position: center;
    transition: opacity calc(var(--duration) * 3);
    filter: blur(var(--cover-blurred));
    max-width: initial;
    inset: calc(var(--cover-blurred) * -5);
    width: calc(100% + var(--cover-blurred) * 10);
    height: calc(100% + var(--cover-blurred) * 10);
}
.player-wrapper {
    margin-top: auto;
    margin-bottom: auto;
    position: relative;
    z-index: 10;
}
.player-artwork {
    background-color: var(--primary);
    border-radius: calc(1rem + 1vw);
    box-shadow: var(--shadow-l);
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
}
.player-artwork img {
    transition: margin calc(var(--duration) * 3);
}
.player-controller {
    display: flex;
    align-items: center;
    gap: 1rem;
}
@media (min-width: 992px) {
    .player-controller {
        gap: 2rem;
        width: 100%;
        justify-content: space-between;
    }
}
.player-volume {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 90px !important;
    max-width: initial !important;
}
.player-range-fill {
    position: absolute;
    width: 100%;
    top: auto;
    bottom: 0;
    transition: background-color var(--duration);
    background-color: var(--accent, var(--primary));
}
.player-range-wrapper {
    position: relative;
    height: 100%;
    width: 2px;
    background-color: rgb(36 36 36 / 40%);
}
.player-range-thumb {
    width: 15px;
    height: 15px;
    transition: background-color var(--duration);
    background-color: var(--accent, var(--primary));
    border-radius: 5rem;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    cursor: pointer;
}
.player-button {
    color: rgba(255, 255, 255, 0.75);
    transition: color var(--duration), background-color var(--duration);
    position: relative;
}
.player-button svg {
    width: 24px;
    height: 24px;
}
@media (min-width: 992px) {
    .player-button {
        --i-size: 1.5vw;
    }
    .player-button svg {
        width: 1.5vw;
        height: 1.5vw;
    }
}
.player-button-volume {
    display: flex;
    align-items: center;
}
@media (max-width: 991px) {
    .player-button-volume {
        opacity: 0.25;
        pointer-events: none;
    }
}
.player-button.is-active,
.player-button:hover {
    color: #fff;
}
.player-button-play {
    padding: 1rem;
    border-radius: 999px;
    transition: background-color var(--duration);
    background-color: var(--accent, var(--bg-transparent));
}
.player-button-play::after,
.player-button-play::before {
    pointer-events: none;
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #fff;
    border-radius: 50%;
    z-index: -1;
    inset: 0;
    opacity: 0;
    animation: pulse 2s ease-out infinite;
    display: var(--pulse-state, none);
}
.player-button-play:after {
    animation-delay: 1s;
}
.player-button-play:active,
.player-button-play:focus {
    outline: 0 none;
}
.player-button-play.is-active {
    --pulse-state: block;
}
.player-section-audio {
    flex: none;
}
@media (min-width: 992px) {
    .player-section-audio {
        max-width: 390px;
    }
}
.player-section-meta {
    width: 100%;
}
.player-social {
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 3px 1px rgba(0, 0, 0, 0.075));
    gap: 0.5rem;
}
@media (min-width: 992px) {
    .player-social {
        position: absolute;
        padding: var(--main-padding);
        z-index: 50;
        max-width: 40vw;
        bottom: 1vw;
        right: 0;
        gap: 1.125vw;
    }
}
.player-social-item {
    border-radius: 999px;
    padding: 0.75rem;
    --i-size: 20px;
    background-color: rgb(255 255 255 / 10%);
    color: #fff;
    transition: transform var(--duration), background-color var(--duration);
}
.player-social-item:hover {
    transform: scale(1.1);
}
.player-social-facebook:hover {
    background-color: #3b5998;
}
.player-social-twitter:hover {
    background-color: #1da1f2;
}
.player-social-instagram:hover {
    background-color: #c13584;
}
.player-social-youtube:hover {
    background-color: red;
}
.player-social-tiktok:hover {
    background-color: #000;
}
.player-social-whatsapp:hover {
    background-color: #25d366;
}
.player-social-telegram:hover {
    background-color: #08c;
}
@media (min-width: 992px) {
    .player-social-item {
        padding: 0.75vw;
        --i-size: 1.25vw;
    }
}
.player-apps-item {
    transition: filter var(--duration);
}
@media (min-width: 992px) {
    .player-apps-item img {
        width: auto;
        height: 3vw;
    }
}
.player-apps-item:hover {
    filter: drop-shadow(0 0px 10px white);
}
.player-program {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1rem;
    color: #fff;
    text-transform: uppercase;
    background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    z-index: 10;
    inset: auto 0 0;
}
.player-program-badge {
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
    background-color: #c62828;
    border-radius: 0.5rem;
}
.player-program-time-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.player-program-name {
    font-weight: 700;
    font-family: "Akira Expanded", sans-serif;
}
.player-program-description {
    font-size: 0.875rem;
}
.station {
    transition: opacity var(--duration);
}
.station-img {
    width: 120px;
    aspect-ratio: 1/1;
    box-shadow: var(--shadow-l);
    border-radius: 0.5rem;
}
.station:not(.is-active) {
    opacity: 0.5;
}
.station:hover {
    opacity: 1;
}
.history {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    counter-increment: history-counter;
    padding: 0.75rem;
    gap: 0.5rem;
    position: relative;
    cursor: pointer;
    max-width: 300px;
    color: #000;
    box-shadow: var(--shadow-l);
}
.history::after {
    content: "";
    inset: 0;
    position: absolute;
    z-index: -1;
    background: var(--accent);
    opacity: 0.5;
}
.history::before {
    content: counter(history-counter);
    font-size: 1.5rem;
    font-weight: 800;
    width: 1rem;
    text-align: center;
}
.history-art {
    width: 60px;
    height: 60px;
    border: 0 none;
    flex: none;
    border-radius: 0.5rem;
    color: #000;
}
.history-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    gap: 0.75rem;
    border-radius: 0.5rem;
}
.history-url {
    position: absolute;
    right: 0.75rem;
    top: 0.75rem;
    transition: color 0.3s;
    z-index: 15;
}
.history-button {
    inset: 0;
    position: absolute;
    z-index: 10;
}
.history-url[href="#not-found"] {
    opacity: 0.1;
    pointer-events: none;
}
.history-url svg {
    width: 16px;
    fill: currentColor;
}
.history-spotify {
    color: #1ed760;
}
.history-deezer {
    color: #a238ff;
}
.history-meta {
    padding-right: 1.25rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.history-title {
    display: block;
}
.visualizer {
    position: absolute;
    inset: auto -20px -20px;
    z-index: 0;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 100%;
    opacity: 0.5;
}
.visualizer-filter {
    display: none;
}
.visualizer.is-wave {
    filter: url(#gooey);
}
.modal-lyrics {
    position: fixed;
    max-width: 900px;
    margin: 0 auto;
    z-index: 120;
    inset: 1rem;
    transition: opacity var(--duration);
    display: flex;
}
.modal-lyrics:not(.is-active) {
    pointer-events: none;
    opacity: 0;
}
.modal-lyrics-content {
    max-height: 100%;
    width: 100%;
    background-color: var(--bg-dark);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    padding: var(--main-padding);
    margin: auto;
}
.modal-lyrics-title {
    margin-bottom: 1.5rem;
    line-height: 1;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.modal-lyrics-body {
    font-size: 1.125rem;
}
.modal-overlay {
    opacity: var(--modal-overlay-opacity, 0);
    z-index: 100;
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(1rem);
    transition: opacity var(--duration);
}
.modal-lyrics.is-active ~ * {
    --modal-overlay-opacity: 1;
}
.modal-video {
    inset: 50% auto auto 50%;
    position: absolute;
    margin: auto;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 880px;
    padding: 1rem;
    background-color: var(--bg-modal);
    border-radius: 0.5rem;
    z-index: 150;
    box-shadow: var(--shadow-xl);
    transition: opacity var(--duration);
}
.modal-video [data-close] {
    position: absolute;
    right: -1.25rem;
    top: -1.25rem;
}
.modal-video:not(.is-active) {
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
}
.modal-video iframe {
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
}
.modal-video.is-active ~ * {
    --modal-overlay-opacity: 1;
}
.offcanvas {
    background-color: var(--bg-modal);
    inset: 0 0 0 auto;
    position: absolute;
    padding: 1.5rem;
    z-index: 120;
    box-shadow: var(--shadow-xl);
    transition: transform var(--duration), opacity var(--duration);
    backdrop-filter: blur(1rem);
}
.offcanvas:not(.is-active) {
    transform: translateX(110%);
    pointer-events: none;
    opacity: 0;
}
.offcanvas [data-close] {
    margin-bottom: 1rem;
}
.absolute {
    position: absolute;
}
.relative {
    position: relative;
}
.fixed {
    position: fixed;
}
.sticky {
    position: sticky;
}
.z-10 {
    z-index: 10;
}
.z-20 {
    z-index: 20;
}
.z-30 {
    z-index: 30;
}
.z-40 {
    z-index: 40;
}
.z-50 {
    z-index: 50;
}
.z-60 {
    z-index: 60;
}
.z-70 {
    z-index: 70;
}
.z-80 {
    z-index: 80;
}
.z-90 {
    z-index: 90;
}
.z-100 {
    z-index: 100;
}
.g-0\.25 {
    gap: 0.25rem;
}
.g-0\.5 {
    gap: 0.5rem;
}
.g-0\.75 {
    gap: 0.75rem;
}
.g-0\.875 {
    gap: 0.875rem;
}
.g-1 {
    gap: 1rem;
}
.g-1\.25 {
    gap: 1.25rem;
}
.g-1\.5 {
    gap: 1.5rem;
}
.g-1\.75 {
    gap: 1.75rem;
}
.g-2 {
    gap: 2rem;
}
@media (min-width: 576px) {
    .s\:g-0\.25 {
        gap: 0.25rem;
    }
    .s\:g-0\.5 {
        gap: 0.5rem;
    }
    .s\:g-0\.75 {
        gap: 0.75rem;
    }
    .s\:g-0\.875 {
        gap: 0.875rem;
    }
    .s\:g-1 {
        gap: 1rem;
    }
    .s\:g-1\.25 {
        gap: 1.25rem;
    }
    .s\:g-1\.5 {
        gap: 1.5rem;
    }
    .s\:g-1\.75 {
        gap: 1.75rem;
    }
    .s\:g-2 {
        gap: 2rem;
    }
}
@media (min-width: 768px) {
    .m\:g-0\.25 {
        gap: 0.25rem;
    }
    .m\:g-0\.5 {
        gap: 0.5rem;
    }
    .m\:g-0\.75 {
        gap: 0.75rem;
    }
    .m\:g-0\.875 {
        gap: 0.875rem;
    }
    .m\:g-1 {
        gap: 1rem;
    }
    .m\:g-1\.25 {
        gap: 1.25rem;
    }
    .m\:g-1\.5 {
        gap: 1.5rem;
    }
    .m\:g-1\.75 {
        gap: 1.75rem;
    }
    .m\:g-2 {
        gap: 2rem;
    }
}
@media (min-width: 992px) {
    .l\:g-0\.25 {
        gap: 0.25rem;
    }
    .l\:g-0\.5 {
        gap: 0.5rem;
    }
    .l\:g-0\.75 {
        gap: 0.75rem;
    }
    .l\:g-0\.875 {
        gap: 0.875rem;
    }
    .l\:g-1 {
        gap: 1rem;
    }
    .l\:g-1\.25 {
        gap: 1.25rem;
    }
    .l\:g-1\.5 {
        gap: 1.5rem;
    }
    .l\:g-1\.75 {
        gap: 1.75rem;
    }
    .l\:g-2 {
        gap: 2rem;
    }
}
@media (min-width: 1200px) {
    .xl\:g-0\.25 {
        gap: 0.25rem;
    }
    .xl\:g-0\.5 {
        gap: 0.5rem;
    }
    .xl\:g-0\.75 {
        gap: 0.75rem;
    }
    .xl\:g-0\.875 {
        gap: 0.875rem;
    }
    .xl\:g-1 {
        gap: 1rem;
    }
    .xl\:g-1\.25 {
        gap: 1.25rem;
    }
    .xl\:g-1\.5 {
        gap: 1.5rem;
    }
    .xl\:g-1\.75 {
        gap: 1.75rem;
    }
    .xl\:g-2 {
        gap: 2rem;
    }
}
.block {
    display: block;
}
.inline-block {
    display: inline-block;
}
.inline {
    display: inline;
}
.flex {
    display: flex;
}
.inline-flex {
    display: inline-flex;
}
.grid {
    display: grid;
}
.inline-grid {
    display: inline-grid;
}
.none {
    display: none;
}
@media (min-width: 576px) {
    .s\:block {
        display: block;
    }
    .s\:inline-block {
        display: inline-block;
    }
    .s\:inline {
        display: inline;
    }
    .s\:flex {
        display: flex;
    }
    .s\:inline-flex {
        display: inline-flex;
    }
    .s\:grid {
        display: grid;
    }
    .s\:inline-grid {
        display: inline-grid;
    }
    .s\:none {
        display: none;
    }
}
@media (min-width: 768px) {
    .m\:block {
        display: block;
    }
    .m\:inline-block {
        display: inline-block;
    }
    .m\:inline {
        display: inline;
    }
    .m\:flex {
        display: flex;
    }
    .m\:inline-flex {
        display: inline-flex;
    }
    .m\:grid {
        display: grid;
    }
    .m\:inline-grid {
        display: inline-grid;
    }
    .m\:none {
        display: none;
    }
}
@media (min-width: 992px) {
    .l\:block {
        display: block;
    }
    .l\:inline-block {
        display: inline-block;
    }
    .l\:inline {
        display: inline;
    }
    .l\:flex {
        display: flex;
    }
    .l\:inline-flex {
        display: inline-flex;
    }
    .l\:grid {
        display: grid;
    }
    .l\:inline-grid {
        display: inline-grid;
    }
    .l\:none {
        display: none;
    }
}
@media (min-width: 1200px) {
    .xl\:block {
        display: block;
    }
    .xl\:inline-block {
        display: inline-block;
    }
    .xl\:inline {
        display: inline;
    }
    .xl\:flex {
        display: flex;
    }
    .xl\:inline-flex {
        display: inline-flex;
    }
    .xl\:grid {
        display: grid;
    }
    .xl\:inline-grid {
        display: inline-grid;
    }
    .xl\:none {
        display: none;
    }
}
.items-start {
    align-items: flex-start;
}
.items-end {
    align-items: flex-end;
}
.items-center {
    align-items: center;
}
.justify-start {
    justify-content: flex-start;
}
.justify-end {
    justify-content: flex-end;
}
.justify-center {
    justify-content: center;
}
.justify-between {
    justify-content: space-between;
}
.justify-around {
    justify-content: space-around;
}
.justify-evenly {
    justify-content: space-evenly;
}
.row {
    flex-direction: row;
}
.column {
    flex-direction: column;
}
@media (min-width: 576px) {
    .s\:row {
        flex-direction: row;
    }
    .s\:column {
        flex-direction: column;
    }
}
@media (min-width: 768px) {
    .m\:row {
        flex-direction: row;
    }
    .m\:column {
        flex-direction: column;
    }
}
@media (min-width: 992px) {
    .l\:row {
        flex-direction: row;
    }
    .l\:column {
        flex-direction: column;
    }
}
@media (min-width: 1200px) {
    .xl\:row {
        flex-direction: row;
    }
    .xl\:column {
        flex-direction: column;
    }
}
.wrap {
    flex-wrap: wrap;
}
.wrap-reverse {
    flex-wrap: wrap-reverse;
}
.nowrap {
    flex-wrap: nowrap;
}
.flex-1 {
    flex: 1 1 0;
}
.flex-auto {
    flex: auto;
}
.flex-initial {
    flex: initial;
}
.flex-none {
    flex: none;
}
.content-start {
    align-content: flex-start;
}
.content-end {
    align-content: flex-end;
}
.content-center {
    align-content: center;
}
.content-between {
    align-content: space-between;
}
.content-around {
    align-content: space-around;
}
.content-evenly {
    align-content: space-evenly;
}
.auto-fill {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, var(--cols-min, 16rem)), 1fr));
}
.auto-fit {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--cols-min, 16rem)), 1fr));
}
.o-auto {
    overflow: auto;
}
.o-hidden {
    overflow: hidden;
}
.ox-auto {
    overflow-x: auto;
}
.ox-hidden {
    overflow-x: hidden;
}
.oy-auto {
    overflow-y: auto;
}
.oy-hidden {
    overflow-y: hidden;
}
.events-none {
    pointer-events: none;
}
.events-auto {
    pointer-events: auto;
}
.color-primary {
    color: var(--primary);
}
.color-text {
    color: var(--color-text);
}
.color-title {
    color: var(--color-title);
}
.fs-1 {
    font-size: 2.5rem;
}
.fs-2 {
    font-size: 1.75rem;
}
.fs-3 {
    font-size: 1.5rem;
}
.fs-4 {
    font-size: 1.25rem;
}
.fs-5 {
    font-size: 1.125rem;
}
.fs-6 {
    font-size: 1rem;
}
.fs-7 {
    font-size: 0.875rem;
}
.fs-8 {
    font-size: 0.75rem;
}
@media (min-width: 576px) {
    .s\:fs-1 {
        font-size: 2.5rem;
    }
    .s\:fs-2 {
        font-size: 1.75rem;
    }
    .s\:fs-3 {
        font-size: 1.5rem;
    }
    .s\:fs-4 {
        font-size: 1.25rem;
    }
    .s\:fs-5 {
        font-size: 1.125rem;
    }
    .s\:fs-6 {
        font-size: 1rem;
    }
    .s\:fs-7 {
        font-size: 0.875rem;
    }
    .s\:fs-8 {
        font-size: 0.75rem;
    }
}
@media (min-width: 768px) {
    .m\:fs-1 {
        font-size: 2.5rem;
    }
    .m\:fs-2 {
        font-size: 1.75rem;
    }
    .m\:fs-3 {
        font-size: 1.5rem;
    }
    .m\:fs-4 {
        font-size: 1.25rem;
    }
    .m\:fs-5 {
        font-size: 1.125rem;
    }
    .m\:fs-6 {
        font-size: 1rem;
    }
    .m\:fs-7 {
        font-size: 0.875rem;
    }
    .m\:fs-8 {
        font-size: 0.75rem;
    }
}
@media (min-width: 992px) {
    .l\:fs-1 {
        font-size: 2.5rem;
    }
    .l\:fs-2 {
        font-size: 1.75rem;
    }
    .l\:fs-3 {
        font-size: 1.5rem;
    }
    .l\:fs-4 {
        font-size: 1.25rem;
    }
    .l\:fs-5 {
        font-size: 1.125rem;
    }
    .l\:fs-6 {
        font-size: 1rem;
    }
    .l\:fs-7 {
        font-size: 0.875rem;
    }
    .l\:fs-8 {
        font-size: 0.75rem;
    }
}
@media (min-width: 1200px) {
    .xl\:fs-1 {
        font-size: 2.5rem;
    }
    .xl\:fs-2 {
        font-size: 1.75rem;
    }
    .xl\:fs-3 {
        font-size: 1.5rem;
    }
    .xl\:fs-4 {
        font-size: 1.25rem;
    }
    .xl\:fs-5 {
        font-size: 1.125rem;
    }
    .xl\:fs-6 {
        font-size: 1rem;
    }
    .xl\:fs-7 {
        font-size: 0.875rem;
    }
    .xl\:fs-8 {
        font-size: 0.75rem;
    }
}
.fw-100 {
    font-weight: 100;
}
.fw-200 {
    font-weight: 200;
}
.fw-300 {
    font-weight: 300;
}
.fw-400 {
    font-weight: 400;
}
.fw-500 {
    font-weight: 500;
}
.fw-600 {
    font-weight: 600;
}
.fw-700 {
    font-weight: 700;
}
.fw-800 {
    font-weight: 800;
}
.fw-900 {
    font-weight: 900;
}
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.text-justify {
    text-align: justify;
}
.capitalize {
    text-transform: capitalize;
}
.uppercase {
    text-transform: uppercase;
}
.lowercase {
    text-transform: lowercase;
}
.underline {
    text-decoration: underline;
}
.line-through {
    text-decoration: line-through;
}
.player-full-progress {
    display: flex;
    justify-content: space-between;
    width: 100%;
    color: #fff;
    position: relative;
    padding-top: 1rem;
}
.player-full-progress::after,
.player-full-progress::before {
    content: "";
    width: 100%;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2);
    height: 4px;
    inset: 0 0 auto;
}
.player-full-progress::after {
    background-image: linear-gradient(45deg, var(--progress-primary, #3d54ee), var(--progress-secondary, #0c1d8d));
    right: auto;
    width: var(--song-progress, 0%);
    display: block;
    position: absolute;
    transition: width var(--long-duration);
}
@keyframes textIndent {
    10%,
    from {
        left: 0;
    }
    90%,
    to {
        left: var(--text-scroll);
    }
}
.song-name.is-scrolling {
    animation: textIndent var(--text-scroll-duration, 5s) linear infinite alternate;
}
.song-name {
    white-space: nowrap;
    position: relative;
}
.player-cover-title {
    max-width: 100%;
    overflow: hidden;
    width: 100%;
}
.player-button.player-button-play {
    padding: 0;
    background-color: transparent;
    transition: color 0.3s;
}
.player-button.player-button-play svg {
    width: 46px;
    height: 46px;
}
@media (min-width: 992px) {
    .player-button.player-button-play svg {
        width: 3.5vw;
        height: 3.5vw;
    }
}
.disc-spin {
    animation: 5s disc-spin linear infinite;
    transform-origin: center;
}
.app-overlay {
    inset: 0;
    position: absolute;
    background-image: linear-gradient(transparent 70%, #000);
    z-index: 6;
    pointer-events: none;
}
@keyframes zoomInBounce {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
.video-js.video-js-stream {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    --video-font-size: 16px;
}
.vjs-control {
    width: 3em;
}
.vjs-menu-button-inline:before {
    width: 1.5em;
}
.vjs-menu-button-inline .vjs-menu {
    left: 3em;
}
.video-js.vjs-paused .vjs-big-play-button,
.vjs-paused.vjs-has-started.vjs-big-play-button {
    display: block;
}
.vjs-load-progress div,
.vjs-seeking .vjs-big-play-button,
.vjs-waiting .vjs-big-play-button {
    display: none !important;
}
.vjs-mouse-display:after,
.vjs-play-progress:after {
    padding: 0 0.4em 0.3em;
}
.video-js.vjs-ended .vjs-loading-spinner {
    display: none;
}
.video-js.vjs-ended .vjs-big-play-button {
    display: block !important;
}
.video-js *,
.video-js:after,
.video-js:before {
    box-sizing: inherit;
    font-size: inherit;
    color: inherit;
    line-height: inherit;
}
.video-js.vjs-fullscreen,
.video-js.vjs-fullscreen .vjs-tech {
    width: 100% !important;
    height: 100% !important;
}
.video-js {
    font-size: 14px;
    overflow: hidden;
}
.vjs-control {
    color: inherit;
}
.video-js.vjs-no-flex .vjs-menu-button-inline,
.vjs-menu-button-inline:hover {
    width: 8.35em;
}
.vjs-volume-menu-button.vjs-volume-menu-button-horizontal:hover .vjs-menu .vjs-menu-content {
    height: 3em;
    width: 6.35em;
}
.vjs-control:focus:before,
.vjs-control:hover:before {
    text-shadow: 0 0 1em #fff, 0 0 1em #fff, 0 0 1em #fff;
}
.vjs-spacer,
.vjs-time-control {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex: 1 1 auto;
    -moz-box-flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
.vjs-time-control {
    -webkit-box-flex: 0 1 auto;
    -moz-box-flex: 0 1 auto;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: auto;
}
.vjs-time-control.vjs-time-divider {
    width: 14px;
}
.vjs-time-control.vjs-time-divider div {
    width: 100%;
    text-align: center;
}
.vjs-time-control.vjs-current-time {
    margin-left: 1em;
}
.vjs-time-control .vjs-current-time-display,
.vjs-time-control .vjs-duration-display {
    width: 100%;
}
.vjs-time-control .vjs-current-time-display {
    text-align: right;
}
.vjs-time-control .vjs-duration-display {
    text-align: left;
}
.video-js.vjs-live .vjs-time-control.vjs-current-time,
.video-js.vjs-live .vjs-time-control.vjs-duration,
.video-js.vjs-live .vjs-time-control.vjs-time-divider,
.video-js.vjs-no-flex .vjs-time-control.vjs-remaining-time,
.vjs-play-progress:before,
.vjs-progress-control .vjs-play-progress:before,
.vjs-remaining-time,
.vjs-volume-level:after,
.vjs-volume-level:before {
    display: none;
}
.video-js.vjs-no-flex .vjs-time-control {
    display: table-cell;
    width: 4em;
}
.vjs-progress-control {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 0.5em;
    top: -0.5em;
}
.vjs-progress-control .vjs-load-progress,
.vjs-progress-control .vjs-play-progress,
.vjs-progress-control .vjs-progress-holder {
    height: 100%;
}
.vjs-progress-control .vjs-progress-holder {
    margin: 0;
}
.vjs-progress-control:hover {
    height: 1.5em;
    top: -1.5em;
}
.vjs-control-bar {
    -webkit-transition: -webkit-transform 0.1s ease 0s;
    -moz-transition: -moz-transform 0.1s ease 0s;
    -ms-transition: -ms-transform 0.1s ease 0s;
    -o-transition: -o-transform 0.1s ease 0s;
    transition: transform 0.1s ease 0s;
}
.video-js.not-hover.vjs-has-started.vjs-paused.vjs-user-active .vjs-control-bar,
.video-js.not-hover.vjs-has-started.vjs-paused.vjs-user-inactive .vjs-control-bar,
.video-js.not-hover.vjs-has-started.vjs-playing.vjs-user-active .vjs-control-bar,
.video-js.not-hover.vjs-has-started.vjs-playing.vjs-user-inactive .vjs-control-bar,
.video-js.vjs-has-started.vjs-playing.vjs-user-inactive .vjs-control-bar {
    visibility: visible;
    opacity: 1;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateY(3em);
    -moz-transform: translateY(3em);
    -ms-transform: translateY(3em);
    -o-transform: translateY(3em);
    transform: translateY(3em);
    -webkit-transition: -webkit-transform 1s ease 0s;
    -moz-transition: -moz-transform 1s ease 0s;
    -ms-transition: -ms-transform 1s ease 0s;
    -o-transition: -o-transform 1s ease 0s;
    transition: transform 1s ease 0s;
}
.video-js.not-hover.vjs-has-started.vjs-paused.vjs-user-active .vjs-progress-control,
.video-js.not-hover.vjs-has-started.vjs-paused.vjs-user-inactive .vjs-progress-control,
.video-js.not-hover.vjs-has-started.vjs-playing.vjs-user-active .vjs-progress-control,
.video-js.not-hover.vjs-has-started.vjs-playing.vjs-user-inactive .vjs-progress-control,
.video-js.vjs-has-started.vjs-playing.vjs-user-inactive .vjs-progress-control {
    height: 0.25em;
    top: -0.25em;
    pointer-events: none;
    -webkit-transition: height 1s, top 1s;
    -moz-transition: height 1s, top 1s;
    -ms-transition: height 1s, top 1s;
    -o-transition: height 1s, top 1s;
    transition: height 1s, top 1s;
}
.video-js.not-hover.vjs-has-started.vjs-paused.vjs-user-active.vjs-fullscreen .vjs-progress-control,
.video-js.not-hover.vjs-has-started.vjs-paused.vjs-user-inactive.vjs-fullscreen .vjs-progress-control,
.video-js.not-hover.vjs-has-started.vjs-playing.vjs-user-active.vjs-fullscreen .vjs-progress-control,
.video-js.not-hover.vjs-has-started.vjs-playing.vjs-user-inactive.vjs-fullscreen .vjs-progress-control,
.video-js.vjs-has-started.vjs-playing.vjs-user-inactive.vjs-fullscreen .vjs-progress-control {
    opacity: 0;
    -webkit-transition: opacity 1s ease 1s;
    -moz-transition: opacity 1s ease 1s;
    -ms-transition: opacity 1s ease 1s;
    -o-transition: opacity 1s ease 1s;
    transition: opacity 1s ease 1s;
}
.video-js.vjs-live .vjs-live-control {
    margin-left: 1em;
}
.vjs-big-play-button {
    top: 50%;
    left: 50%;
    margin-left: -1em;
    width: 2em;
    border: none;
    background-color: #fff;
    color: #262626;
    transition: border-color 0.4s, outline 0.4s, background-color 0.4s;
    font-size: 3.5em;
    border-radius: 50%;
    height: 2em !important;
    line-height: 2em !important;
    margin-top: -1em !important;
}
.vjs-menu-button-popup .vjs-menu {
    left: -3em;
}
.vjs-menu-button-popup .vjs-menu .vjs-menu-content {
    background-color: transparent;
    width: 12em;
    left: -1.5em;
    padding-bottom: 0.5em;
}
.vjs-menu-button-popup .vjs-menu .vjs-menu-item,
.vjs-menu-button-popup .vjs-menu .vjs-menu-title {
    background-color: #151b17;
    margin: 0.3em 0;
    padding: 0.5em;
    border-radius: 0.3em;
}
.vjs-menu-button-popup .vjs-menu .vjs-menu-item.vjs-selected {
    background-color: var(--primary);
}
.video-js:hover .vjs-big-play-button,
.vjs-big-play-button:active,
.vjs-big-play-button:focus {
    background-color: var(--primary);
}
.vjs-loading-spinner {
    border-color: var(--primary);
}
.vjs-control-bar2 {
    background-color: #000;
}
.vjs-control-bar {
    background-color: rgba(0, 0, 0, 0.3) !important;
    color: #fff;
    font-size: var(--video-font-size, 14px);
}
.vjs-play-progress,
.vjs-volume-level {
    background-color: var(--primary);
}
.video-js-stream {
    opacity: 1;
    pointer-events: all;
}
.install-buttons:not(.is-active) {
    display: none;
}
.install-buttons-wrapper {
    animation: 0.5s zoomInBounce;
    position: relative;
    border-radius: 1rem;
    max-width: 600px;
    text-align: center;
    padding: 2rem;
    color: #fff;
    background-color: #313131;
    box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
}
.install-buttons-wrapper h4 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.install-buttons-wrapper p {
    margin-bottom: 1rem;
}
.close-install {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    padding: 0.5rem;
}
.install-button {
    white-space: nowrap;
}
.install-button svg {
    width: 24px;
    height: 24px;
}

.program-header {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    margin-bottom: 1rem;
    display: flex;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.4); 
    justify-content: space-evenly;
    border-radius: 5px;
    width: 300px;
}
.program-button {
    padding: 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #212121;
    flex: 1 0 auto;
}
.program-button.is-active {
    background-color: var(--player-accent, #000);
    color: var(--program-active-color, #fff);
}
.program-button:not(.is-active) {
    font-size: 0;
    padding: 1rem 0.75rem;
}
.program-button:first-letter {
    font-size: 0.75rem;
}
.nexo-schedule-list {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, var(--program-cols-min, 16rem)), 1fr));
    display: grid;
    gap: 0.6rem;
}
.nexo-schedule-list:not(.is-active) {
    display: none;
}
.nexo-schedule-item {
    aspect-ratio: 16/9;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border-radius: 4px;
    border-bottom: 6px solid var(--program-accent, #000);
    background-color: #000;
}
.nexo-schedule-item:hover {
    --program-mask-hover: 0.5;
    --title-program-bar-width: 100%;
}
.nexo-schedule-item::after,
.nexo-schedule-item::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
    pointer-events: none;
}
.nexo-schedule-item::after {
    background-color: var(--filter-one, #6b06cf);
    mix-blend-mode: screen;
}
.nexo-schedule-item::before {
    background-color: var(--filter-two, #47f9d5);
    mix-blend-mode: multiply;
}
.nexo-schedule-item:hover::after {
    opacity: 0.5;
}
.nexo-schedule-item:hover::before {
    opacity: 1;
}
.nexo-schedule-item.is-current .nexo-schedule-item-content::before {
    content: "Al aire";
    background-color: var(--program-accent);
    font-size: 10px;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    border-radius: 25rem;
    margin-bottom: 0.5rem;
    display: inline-flex;
    font-weight: 500;
    font-family: Montserrat, sans-serif;
    line-height: 1.5;
}
.nexo-schedule-item-picture {
    position: absolute;
    inset: 0;
}
.nexo-schedule-item-picture img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}
.nexo-schedule-item-content {
    position: absolute;
    inset: auto 0 0;
    padding: 2rem 1rem 1rem;
    color: #fff;
    background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.75));
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.nexo-schedule-item-description {
    font-size: 13px;
    margin: 0;
    margin-top: 0.25rem;
    font-family: Montserrat, sans-serif;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    line-height: 1.5;
    font-weight: 500;
}
.nexo-schedule-item-title {
    font-weight: 800;
    font-size: 1.125rem;
    margin: 0;
    line-height: 0.7;
    font-family: Montserrat, sans-serif;
    letter-spacing: normal;
}
.nexo-schedule-item-title::after {
    height: 5px;
    width: var(--title-program-bar-width, 0%);
    content: "";
    display: block;
    background-image: linear-gradient(to right, #ff0f59 50%, #7f07e8 100%, #fff 100%);
    transition: width 0.5s;
}
.nexo-schedule-item.is-current {
    --program-accent: var(--program-accent-active, #fff);
}
.nexo-schedule-item.is-current .nexo-schedule-item-content {
    background-image: linear-gradient(180deg, transparent, var(--program-accent-active));
}
@keyframes modalopen {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
    backdrop-filter: blur(1rem);
}
.modal:not(.is-open) {
    display: none;
}
.modal-content {
    background-color: rgba(255, 255, 255, 0.25);
    width: 100%;
    max-width: 900px;
    border-radius: 0.5rem;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    position: relative;
    animation: modalopen var(--duration) ease;
}
.modal-header {
    padding: 1rem;
    display: flex;
    border-bottom: 1px solid var(--color-border);
}
.modal-close {
    margin-left: auto;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.25);
    right: -0.75rem;
    top: -0.75rem;
    border-radius: 50rem;
    display: flex;
    padding: 0.25rem;
    color: #fff;
    z-index: 1;
}
.modal-body {
    padding: 0.75rem;
}
.modal-form :where(input, textarea) {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 1rem;
    border-radius: 0.5rem;
    field-sizing: content;
    max-height: 8rem;
}
.modal-message::after {
    content: var(--modal-message, "Sin mensaje");
    position: fixed;
    display: block;
    right: 1rem;
    bottom: 1rem;
    z-index: 99999;
    background-color: var(--modal-message-bg, #000);
    color: var(--modal-message-color, #fff);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}
.modal-success {
    --modal-message: "Enviado correctamente";
    --modal-message-bg: #14b8a6;
}
.modal-error {
    --modal-message: "Error al enviar";
    --modal-message-bg: #ef4444;
}
.modal-form .modal-content {
    background-color: #fff;
    max-width: 600px;
}
.modal-form .modal-close {
    background-color: rgba(0, 0, 0, 0.75);
}
.modal-share .modal-content {
    background-color: #1c1c1c;
    text-align: center;
    padding: 1rem;
    color: #fff;
    max-width: 520px;
    box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
}
.modal-social.player-socials {
    margin-top: 1rem;
    --btn-padding: 0.75rem;
    --icon-size: 18px;
}
.player-modal-image {
    margin: auto;
    margin-bottom: 1rem;
}
.modal-lyrics .modal-content {
    background: #000;
    color: #fff;
    font-size: 1.125rem;
    padding: 2.5rem;
}
.modal-lyrics .modal-content pre {
    white-space: pre-wrap;
}
.modal-lyrics-title {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.player-button-wave.is-wave svg:first-child,
.player-button-wave:not(.is-wave) svg:last-child {
    display: none;
}
