.nexoradio-app-1a6a982f {
  --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;
  
  background-color: var(--bg-app);
  position: relative;
  overflow: hidden;
  height: 100vh;
  width: 100%;
  font-family: Montserrat, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

@keyframes disc-spin-1a6a982f {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

.nexoradio-app-1a6a982f * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.nexoradio-app-1a6a982f a {
  color: inherit;
  text-decoration: none;
  color: var(--primary);
  transition: color var(--duration);
}

.nexoradio-app-1a6a982f i.i-compact-disc,
.nexoradio-app-1a6a982f .disc-spin {
  animation: 5s linear infinite disc-spin-1a6a982f;
  transform-origin: center;
}

.nexoradio-app-1a6a982f button,
.nexoradio-app-1a6a982f input,
.nexoradio-app-1a6a982f select,
.nexoradio-app-1a6a982f textarea {
  font-family: inherit;
  line-height: inherit;
  color: inherit;
  background: none;
  border: none;
}

.nexoradio-app-1a6a982f button:not(:disabled) {
  cursor: pointer;
}

.nexoradio-app-1a6a982f b,
.nexoradio-app-1a6a982f strong {
  font-weight: 700;
  color: var(--color-title);
}

.nexoradio-app-1a6a982f .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: var(--btn-gap, .5rem);
  background-color: var(--btn-bg, var(--bg-transparent));
  padding: var(--btn-padding, .75rem);
  color: var(--btn-color, var(--color-title));
  font-size: var(--btn-fs, .875rem);
  font-weight: 700;
  border-radius: 999px;
  line-height: 1.5;
  transition: box-shadow var(--duration), background-color var(--duration), color var(--duration);
  text-transform: uppercase;
}

.nexoradio-app-1a6a982f .btn:hover {
  color: var(--btn-color-hover, var(--color-title));
  background-color: rgb(255 255 255 / 20%);
}

.nexoradio-app-1a6a982f .btn-full {
  width: 100%;
  justify-content: center;
}

.nexoradio-app-1a6a982f .truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nexoradio-app-1a6a982f .truncate-line {
  display: -webkit-box;
  -webkit-line-clamp: var(--line-clamp, 2);
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nexoradio-app-1a6a982f .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);
}

.nexoradio-app-1a6a982f .header {
  position: absolute;
  width: 100%;
  z-index: 50;
}

.nexoradio-app-1a6a982f .header-wrapper {
  padding: var(--main-padding);
}

.nexoradio-app-1a6a982f .header-logo-img {
  height: 40px;
}

.nexoradio-app-1a6a982f .toggle-options {
  gap: .5rem;
}

@media (min-width: 992px) {
  .nexoradio-app-1a6a982f {
    --main-padding: 3vw;
  }
  .nexoradio-app-1a6a982f .btn {
    --btn-fs: 0.875vw;
    --btn-padding: 0.75vw;
    --i-size: 1.25vw;
    --btn-gap: 0.5vw;
  }
  .nexoradio-app-1a6a982f .header-logo-img {
    max-width: 10vw;
    height: auto;
  }
  .nexoradio-app-1a6a982f .toggle-options {
    gap: .5vw;
  }
}

@media (max-width: 991px) {
  .nexoradio-app-1a6a982f .header {
    background: var(--accent, var(--bg-gradient));
    box-shadow: var(--shadow-l);
  }
  .nexoradio-app-1a6a982f .toggle-options {
    --btn-fs: 0;
    --btn-gap: 0;
    --i-size: 16px;
  }
}

.nexoradio-app-1a6a982f .scrollbar {
  overflow: auto;
  scrollbar-color: var(--scrollbar-color) transparent;
  scrollbar-width: thin;
}

.nexoradio-app-1a6a982f .scrollbar::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: transparent;
}

.nexoradio-app-1a6a982f .scrollbar::-webkit-scrollbar-track {
  background-color: transparent;
}

.nexoradio-app-1a6a982f .scrollbar::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-color);
  border-radius: 10px;
}

.nexoradio-app-1a6a982f .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% + .5rem);
  transition: opacity var(--duration), transform var(--duration);
}

.nexoradio-app-1a6a982f .dropdown:not(.is-active) {
  pointer-events: none;
  opacity: 0;
  transform: translateX(-50%) translateY(-1rem);
}

@media (min-width: 992px) {
  .nexoradio-app-1a6a982f .footer {
    position: absolute;
    padding: var(--main-padding);
    bottom: 0;
    left: 0;
    display: inline-flex;
    z-index: 10;
  }
  .nexoradio-app-1a6a982f .footer-wrapper {
    gap: 1.25vw;
  }
}

.nexoradio-app-1a6a982f .footer small {
  font-size: 1rem;
}

@media (max-width: 991px) {
  .nexoradio-app-1a6a982f .footer-app {
    padding: var(--main-padding);
    border-top: 1px solid rgb(255 255 255 / 10%);
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    justify-content: center;
  }
  .nexoradio-app-1a6a982f .footer-copyright {
    padding: var(--main-padding);
    text-align: center;
  }
  .nexoradio-app-1a6a982f .footer-tv {
    padding-bottom: 1rem;
    text-align: center;
  }
  .nexoradio-app-1a6a982f .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;
    top: 0;
    left: 0;
  }
  .nexoradio-app-1a6a982f .mobile-menu:not(.is-active) {
    pointer-events: none;
    transform: translateX(-100%);
  }
  .nexoradio-app-1a6a982f .player-social {
    justify-content: center;
    padding: var(--main-padding);
  }
}

.nexoradio-app-1a6a982f .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-1a6a982f {
  from { opacity: 0; }
  50% { opacity: .2; }
  to { transform: scale(1.5); opacity: 0; }
}

.nexoradio-app-1a6a982f .player {
  padding: 2rem;
  position: absolute;
  inset: 0;
  z-index: 10;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.nexoradio-app-1a6a982f .player-cover {
  max-width: var(--player-max-width, 320px);
  margin: auto;
  width: 100%;
}

.nexoradio-app-1a6a982f .player-wrapper {
  margin-top: auto;
  margin-bottom: auto;
  position: relative;
  z-index: 10;
  width: 100%;
}

.nexoradio-app-1a6a982f .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;
}

.nexoradio-app-1a6a982f .player-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: margin calc(var(--duration) * 3);
}

.nexoradio-app-1a6a982f .player-controller {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: center;
}

@media (min-width: 992px) {
  .nexoradio-app-1a6a982f .footer small {
    font-size: .8vw;
  }
  .nexoradio-app-1a6a982f .player-controller {
    gap: 2rem;
    width: 100%;
    justify-content: space-between;
  }
}

.nexoradio-app-1a6a982f .player-volume {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 90px!important;
}

.nexoradio-app-1a6a982f .player-range-fill {
  position: absolute;
  width: 100%;
  top: auto;
  bottom: 0;
  transition: background-color var(--duration);
  background-color: var(--accent, var(--primary));
}

.nexoradio-app-1a6a982f .player-range-wrapper {
  position: relative;
  height: 100px;
  width: 4px;
  background-color: rgb(255 255 255 / 20%);
  margin: 0 auto;
}

.nexoradio-app-1a6a982f .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;
}

.nexoradio-app-1a6a982f .player-button {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--duration), background-color var(--duration);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nexoradio-app-1a6a982f .player-button svg {
  width: 24px;
  height: 24px;
}

.nexoradio-app-1a6a982f .player-button-volume {
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .nexoradio-app-1a6a982f .player {
    padding-top: calc(2rem + 72px);
  }
  .nexoradio-app-1a6a982f .player-button-volume {
    opacity: .5;
  }
}

.nexoradio-app-1a6a982f .player-button.is-active,
.nexoradio-app-1a6a982f .player-button:hover {
  color: #fff;
}

.nexoradio-app-1a6a982f .player-button-play {
  padding: 1rem;
  border-radius: 999px;
  transition: background-color var(--duration);
  background-color: var(--accent, var(--bg-transparent));
}

.nexoradio-app-1a6a982f .player-button-play::after,
.nexoradio-app-1a6a982f .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: 2s ease-out infinite pulse-1a6a982f;
  display: var(--pulse-state, none);
}

.nexoradio-app-1a6a982f .player-button-play:after {
  animation-delay: 1s;
}

.nexoradio-app-1a6a982f .player-button-play.is-active {
  --pulse-state: block;
}

.nexoradio-app-1a6a982f .player-social {
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.1));
  gap: .5rem;
}

@media (min-width: 992px) {
  .nexoradio-app-1a6a982f .player-button {
    --i-size: 1.5vw;
  }
  .nexoradio-app-1a6a982f .player-button svg {
    width: 1.5vw;
    height: 1.5vw;
  }
  .nexoradio-app-1a6a982f .player-social {
    position: absolute;
    padding: var(--main-padding);
    z-index: 50;
    max-width: 40vw;
    bottom: 1vw;
    right: 0;
    gap: 1.125vw;
  }
}

.nexoradio-app-1a6a982f .player-social-item {
  border-radius: 999px;
  padding: .75rem;
  --i-size: 20px;
  background-color: rgb(255 255 255 / 10%);
  color: #fff;
  transition: transform var(--duration), background-color var(--duration);
  display: inline-flex;
}

.nexoradio-app-1a6a982f .player-social-item:hover {
  transform: scale(1.1);
}

.nexoradio-app-1a6a982f .player-social-facebook:hover { background-color: #3b5998; }
.nexoradio-app-1a6a982f .player-social-twitter:hover { background-color: #1da1f2; }
.nexoradio-app-1a6a982f .player-social-instagram:hover { background-color: #c13584; }
.nexoradio-app-1a6a982f .player-social-youtube:hover { background-color: red; }
.nexoradio-app-1a6a982f .player-social-tiktok:hover { background-color: #000; }
.nexoradio-app-1a6a982f .player-social-whatsapp:hover { background-color: #25d366; }
.nexoradio-app-1a6a982f .player-social-telegram:hover { background-color: #08c; }

.nexoradio-app-1a6a982f .player-apps-item {
  transition: filter var(--duration);
}

@media (min-width: 992px) {
  .nexoradio-app-1a6a982f .player-social-item {
    padding: .75vw;
    --i-size: 1.25vw;
  }
  .nexoradio-app-1a6a982f .player-apps-item img {
    width: auto;
    height: 3vw;
  }
}

.nexoradio-app-1a6a982f .player-apps-item:hover {
  filter: drop-shadow(0 0px 10px white);
}

.nexoradio-app-1a6a982f .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,.6));
  z-index: 10;
  inset: auto 0 0;
}

.nexoradio-app-1a6a982f .player-program-badge {
  font-size: .75rem;
  padding: .125rem .5rem;
  background-color: #c62828;
  border-radius: .5rem;
}

.nexoradio-app-1a6a982f .player-program-time-container {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.nexoradio-app-1a6a982f .player-program-name {
  font-weight: 700;
}

.nexoradio-app-1a6a982f .player-program-description {
  font-size: .875rem;
}

.nexoradio-app-1a6a982f .station {
  transition: opacity var(--duration);
  background: none;
  border: none;
}

.nexoradio-app-1a6a982f .station-img {
  width: 120px;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-l);
  border-radius: .5rem;
  object-fit: cover;
}

.nexoradio-app-1a6a982f .station:not(.is-active) {
  opacity: .5;
}

.nexoradio-app-1a6a982f .station:hover {
  opacity: 1;
}

.nexoradio-app-1a6a982f .history {
  background-color: rgba(255,255,255,.1);
  border-radius: .75rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  counter-increment: history-counter;
  padding: .75rem;
  gap: .5rem;
  position: relative;
  cursor: pointer;
  max-width: 300px;
  color: #000;
  box-shadow: var(--shadow-l);
}

.nexoradio-app-1a6a982f .history::after {
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
  background: var(--accent);
  opacity: .5;
}

.nexoradio-app-1a6a982f .history::before {
  content: counter(history-counter);
  font-size: 1.5rem;
  font-weight: 800;
  width: 1rem;
  text-align: center;
  color: #fff;
}

.nexoradio-app-1a6a982f .history-art {
  width: 60px;
  height: 60px;
  border: 0;
  flex: none;
  border-radius: .5rem;
  object-fit: cover;
}

.nexoradio-app-1a6a982f .history-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  gap: .75rem;
  border-radius: .5rem;
  color: #fff;
}

.nexoradio-app-1a6a982f .history-url {
  position: absolute;
  right: .75rem;
  top: .75rem;
  transition: color .3s;
  z-index: 15;
}

.nexoradio-app-1a6a982f .history-button {
  inset: 0;
  position: absolute;
  z-index: 10;
  background: none;
  border: none;
}

.nexoradio-app-1a6a982f .history-url[href="#not-found"] {
  opacity: .1;
  pointer-events: none;
}

.nexoradio-app-1a6a982f .history-url svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.nexoradio-app-1a6a982f .history-spotify { color: #1ed760; }
.nexoradio-app-1a6a982f .history-deezer { color: #a238ff; }

.nexoradio-app-1a6a982f .history-meta {
  padding-right: 1.25rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.nexoradio-app-1a6a982f .history-title {
  display: block;
}

.nexoradio-app-1a6a982f .visualizer-filter {
  display: none;
}

.nexoradio-app-1a6a982f .visualizer.is-wave {
  filter: url(#gooey);
}

.nexoradio-app-1a6a982f .modal-lyrics {
  position: fixed;
  max-width: 900px;
  margin: 0 auto;
  z-index: 120;
  inset: 1rem;
  transition: opacity var(--duration);
  display: flex;
}

.nexoradio-app-1a6a982f .modal-lyrics:not(.is-active) {
  pointer-events: none;
  opacity: 0;
}

.nexoradio-app-1a6a982f .modal-lyrics-content {
  max-height: 100%;
  width: 100%;
  background-color: var(--bg-dark);
  border-radius: .5rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  padding: var(--main-padding);
  margin: auto;
}

.nexoradio-app-1a6a982f .modal-lyrics-title {
  line-height: 1;
}

.nexoradio-app-1a6a982f .modal-lyrics-body {
  font-size: 1.125rem;
}

.nexoradio-app-1a6a982f .modal-overlay {
  opacity: var(--modal-overlay-opacity, 0);
  z-index: 100;
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(1rem);
  transition: opacity var(--duration);
}

.nexoradio-app-1a6a982f .modal-lyrics.is-active ~ *,
.nexoradio-app-1a6a982f .modal-video.is-active ~ * {
  --modal-overlay-opacity: 1;
}

.nexoradio-app-1a6a982f .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: .5rem;
  z-index: 150;
  box-shadow: var(--shadow-xl);
  transition: opacity var(--duration);
}

.nexoradio-app-1a6a982f .modal-video [data-close] {
  position: absolute;
  right: -1.25rem;
  top: -1.25rem;
}

.nexoradio-app-1a6a982f .modal-video:not(.is-active) {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
}

.nexoradio-app-1a6a982f .modal-video iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}

.nexoradio-app-1a6a982f .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);
  width: 100%;
  max-width: 320px;
}

.nexoradio-app-1a6a982f .offcanvas:not(.is-active) {
  transform: translateX(110%);
  pointer-events: none;
  opacity: 0;
}

.nexoradio-app-1a6a982f .offcanvas [data-close] {
  margin-bottom: 1rem;
}

.nexoradio-app-1a6a982f .absolute { position: absolute; }
.nexoradio-app-1a6a982f .relative { position: relative; }
.nexoradio-app-1a6a982f .fixed { position: fixed; }
.nexoradio-app-1a6a982f .sticky { position: sticky; }

.nexoradio-app-1a6a982f .flex { display: flex; }
.nexoradio-app-1a6a982f .column { flex-direction: column; }
.nexoradio-app-1a6a982f .row { flex-direction: row; }
.nexoradio-app-1a6a982f .wrap { flex-wrap: wrap; }
.nexoradio-app-1a6a982f .items-center { align-items: center; }
.nexoradio-app-1a6a982f .justify-between { justify-content: space-between; }
.nexoradio-app-1a6a982f .justify-center { justify-content: center; }
.nexoradio-app-1a6a982f .text-center { text-align: center; }
.nexoradio-app-1a6a982f .uppercase { text-transform: uppercase; }

.nexoradio-app-1a6a982f .g-0\.5 { gap: .5rem; }
.nexoradio-app-1a6a982f .g-1 { gap: 1rem; }

.nexoradio-app-1a6a982f .player-full-progress {
  display: flex;
  justify-content: space-between;
  width: 100%;
  color: #fff;
  position: relative;
  padding-top: 1rem;
}

.nexoradio-app-1a6a982f .player-full-progress::after,
.nexoradio-app-1a6a982f .player-full-progress::before {
  content: "";
  width: 100%;
  position: absolute;
  background-color: rgba(255,255,255,.2);
  height: 4px;
  inset: 0 0 auto;
}

.nexoradio-app-1a6a982f .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-1a6a982f {
  10%, from { left: 0; }
  90%, to { left: var(--text-scroll); }
}

.nexoradio-app-1a6a982f .song-name.is-scrolling {
  animation: textIndent-1a6a982f var(--text-scroll-duration, 5s) linear infinite alternate;
}

.nexoradio-app-1a6a982f .song-name {
  white-space: nowrap;
  position: relative;
}

.nexoradio-app-1a6a982f .player-cover-title {
  max-width: 100%;
  overflow: hidden;
  width: 100%;
}

.nexoradio-app-1a6a982f .player-button-play svg {
  width: 46px;
  height: 46px;
}

@media (min-width: 992px) {
  .nexoradio-app-1a6a982f .player-button-play svg {
    width: 3.5vw;
    height: 3.5vw;
  }
}

.nexoradio-app-1a6a982f .player-button-wave.is-wave svg:first-child,
.nexoradio-app-1a6a982f .player-button-wave:not(.is-wave) svg:last-child {
  display: none;
}
