:root {
  --primary-font: "Montserrat", sans-serif;
  --secondary-font: "Onest", sans-serif;
  --player-primary: #4b22f5;
  --swiper-navigation-size: 14px;
  --stations-cols-min: 12rem;
  --container-width: 1320px;
  --container-padding: 1rem;
  --player-duration: 0.3s;
  --player-long-duration: 1s;
  --player-volume-width: 100px;
  --box-shadow-low: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px 0px rgba(0, 0, 0, 0.06);
  --box-shadow-medium: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -1px rgba(0, 0, 0, 0.06);
  --box-shadow-high: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -2px rgba(0, 0, 0, 0.05);
  --drop-shadow-low: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.05));
  --drop-shadow-medium: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.1));
  --drop-shadow-high: drop-shadow(0px 8px 12px rgba(0, 0, 0, 0.1));
}

.nexo-reset {
  font-family: var(--primary-font);
  overflow-x: hidden;
  line-height: 1.5;
  color: var(--color-text);
}

@media (min-width: 992px) {
  :root {
    --container-padding: 1.5rem;
  }
}

:root {
  --body-bg: var(--player-primary);
  --main-body-bg: rgb(255 255 255 / 75%);
  --color-title: #0f172a;
  --color-text: #334155;
  --player-border: #cbd5e1;
  --player-channel-bg: #f1f5f9;
  --player-channel-bg-hover: #ffffff;
  --player-headings-bg: #0f172a;
  --player-footer-bg: #0f172a;
  --player-footer-color: #f8fafc;
  --player-channel-bg: #fff;
  --player-range-wrapper-bg: rgb(0 0 0 / 25%);
  --player-header-bg: var(--main-body-bg);
  --player-header-fixed-bg: rgb(255 255 255 / 75%);
  --history-bg-item: #f1f5f9;
  --btn-bg: oklch(96.8% 0.007 247.896);
  --btn-bg-hover: oklch(94.3% 0.029 294.588);
  --btn-color: oklch(37.2% 0.044 257.287);
  --btn-color-hover: var(--player-primary);
  --ytlist-bg-video: #fff;
  --ytlist-bg-item: #f1f5f9;
  --ytlist-bg-item-active: #fff;
  --ytlist-bg-iframe: #f1f5f9;
  --ytlist-bg-number: #0f172a;
  --program-header-bg: #fff;
  --promo-bg: rgb(255 255 255 / 20%);
  --slider-button-bg: #fff;
  --slider-button-color: #000;
  --modal-article-bg: #fff;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-news-item-slider: rgb(255 255 255 / 80%);
}

.nexo-reset .btn {
  background-color: var(--btn-bg);
  color: var(--btn-color);
  padding: var(--btn-padding, 0.5rem);
  font-size: var(--btn-fs, 0.875rem);
  transition-property: background-color, color;
  transition-duration: var(--player-duration);
  display: inline-flex;
  align-items: center;
  font-family: Montserrat, sans-serif;
  column-gap: var(--icon-gap, 0.5rem);
  line-height: 1.5;
  border-radius: 999px;
  white-space: nowrap;
}

.nexo-reset .btn-full {
  width: 100%;
  justify-content: center;
}

.nexo-reset .btn-primary {
  background-color: var(--player-primary);
  color: #fff;
}

.nexo-reset .btn-contrast {
  --btn-bg: rgb(255 255 255 / 10%);
  --btn-bg-hover: rgb(255 255 255 / 20%);
  --btn-color: #fff;
  --btn-color-hover: #fff;
}

.nexo-reset .btn-outline {
  background-color: transparent;
  color: var(--btn-color);
  border: 2px solid var(--btn-color);
}

.nexo-reset .btn-outline:hover {
  background-color: transparent;
  color: var(--player-primary);
}

.nexo-reset .icon {
  width: 24px;
  height: 24px;
}

.nexo-reset .image {
  flex: none;
  max-width: var(--image-size, 10rem);
  aspect-ratio: 1;
  position: relative;
  width: 100%;
}

.image-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
}

.nexo-reset .image img {
  width: 100%;
  height: auto;
  position: absolute;
  aspect-ratio: 1;
  inset: 0;
  object-fit: cover;
  background-color: black;
  transition: top 1s ease-in-out;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.loading-icon {
  animation: spin 1s linear infinite;
}

.nexo-reset .container {
  width: 100%;
  margin: auto;
  max-width: 1000px;
}

.player {
  min-height: auto;
  background-color: var(--player-primary);
  position: fixed;
  inset: auto 0 0 0;
  padding: .75rem;
  z-index: 10;
  --image-size: 60px;
}

.player-station-name {
  font-size: 1.5rem;
  font-weight: 800;
}

.player:not(.is-playing) {
  --player-equalizer-opacity: 0;
}

.player-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.player-equalizer {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-color: var(--player-primary);
  opacity: 0.75;
  display: flex;
  gap: 1px;
  align-items: flex-end;
}

.player-station {
  color: white;
}

.player-cover {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  z-index: -1;
  filter: blur(1rem);
}

.player-cover img {
  max-width: initial;
  transition: top 1s ease-in-out;
  width: 100%;
  height: 100%;
  inset: 0;
  position: absolute;
  object-fit: cover;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: .75rem;
}

@keyframes equalizer1 {

  0%,
  100% {
    height: 0;
  }

  50% {
    height: 4rem;
  }
}

@keyframes equalizer2 {

  0%,
  100% {
    height: 0.5rem;
  }

  50% {
    height: 5rem;
  }
}

@keyframes equalizer3 {

  0%,
  100% {
    height: 1rem;
  }

  50% {
    height: 3rem;
  }
}

.equalizer-bar {
  background: #fff;
  width: 100%;
  opacity: var(--player-equalizer-opacity, 0.15);
  transition: opacity var(--player-duration);
  height: 0;
  animation-iteration-count: infinite;
}

.equalizer-bar:nth-child(1) {
  animation-name: equalizer1;
  animation-duration: 1.4s;
  animation-delay: 0.3s;
}

.equalizer-bar:nth-child(2) {
  animation-name: equalizer2;
  animation-duration: 1.7s;
  animation-delay: 0.5s;
}

.equalizer-bar:nth-child(3) {
  animation-name: equalizer3;
  animation-duration: 2s;
  animation-delay: 1s;
}

.equalizer-bar:nth-child(4) {
  animation-name: equalizer1;
  animation-duration: 1.5s;
  animation-delay: 0.3s;
}

.equalizer-bar:nth-child(5) {
  animation-name: equalizer2;
  animation-duration: 1s;
  animation-delay: 0.6s;
}

.equalizer-bar:nth-child(6) {
  animation-name: equalizer1;
  animation-duration: 1.7s;
  animation-delay: 0.8s;
}

.equalizer-bar:nth-child(7) {
  animation-name: equalizer3;
  animation-duration: 1.2s;
  animation-delay: 0.3s;
}

.equalizer-bar:nth-child(8) {
  animation-name: equalizer3;
  animation-duration: 0.9s;
  animation-delay: 0.3s;
}

.equalizer-bar:nth-child(9) {
  animation-name: equalizer2;
  animation-duration: 1.1s;
  animation-delay: 0.8s;
}

.equalizer-bar:nth-child(10) {
  animation-name: equalizer1;
  animation-duration: 2s;
  animation-delay: 0.2s;
}

.equalizer-bar:nth-child(11) {
  animation-name: equalizer2;
  animation-duration: 1.1s;
  animation-delay: 0.1s;
}

.equalizer-bar:nth-child(12) {
  animation-name: equalizer3;
  animation-duration: 1.7s;
  animation-delay: 0.3s;
}

.equalizer-bar:nth-child(13) {
  animation-name: equalizer3;
  animation-duration: 1.3s;
  animation-delay: 0.3s;
}

.equalizer-bar:nth-child(14) {
  animation-name: equalizer3;
  animation-duration: 1.6s;
  animation-delay: 0.2s;
}

.equalizer-bar:nth-child(15) {
  animation-name: equalizer1;
  animation-duration: 1.7s;
  animation-delay: 0.7s;
}

.equalizer-bar:nth-child(16) {
  animation-name: equalizer1;
  animation-duration: 1s;
  animation-delay: 0.1s;
}

.equalizer-bar:nth-child(17) {
  animation-name: equalizer3;
  animation-duration: 1.6s;
  animation-delay: 0.6s;
}

.equalizer-bar:nth-child(18) {
  animation-name: equalizer1;
  animation-duration: 0.9s;
  animation-delay: 0.6s;
}

.equalizer-bar:nth-child(19) {
  animation-name: equalizer1;
  animation-duration: 1.1s;
  animation-delay: 0.5s;
}

.equalizer-bar:nth-child(20) {
  animation-name: equalizer2;
  animation-duration: 1s;
  animation-delay: 0.2s;
}

.equalizer-bar:nth-child(21) {
  animation-name: equalizer1;
  animation-duration: 0.6s;
  animation-delay: 0.8s;
}

.equalizer-bar:nth-child(22) {
  animation-name: equalizer1;
  animation-duration: 1.2s;
  animation-delay: 0.8s;
}

.equalizer-bar:nth-child(23) {
  animation-name: equalizer1;
  animation-duration: 1.4s;
  animation-delay: 0.9s;
}

.equalizer-bar:nth-child(24) {
  animation-name: equalizer2;
  animation-duration: 0.8s;
  animation-delay: 0.5s;
}

.equalizer-bar:nth-child(25) {
  animation-name: equalizer3;
  animation-duration: 1.9s;
  animation-delay: 0.6s;
}

.equalizer-bar:nth-child(26) {
  animation-name: equalizer2;
  animation-duration: 1.4s;
  animation-delay: 0.3s;
}

.equalizer-bar:nth-child(27) {
  animation-name: equalizer1;
  animation-duration: 0.7s;
  animation-delay: 0.8s;
}

.equalizer-bar:nth-child(28) {
  animation-name: equalizer1;
  animation-duration: 1.9s;
  animation-delay: 0.2s;
}

.equalizer-bar:nth-child(29) {
  animation-name: equalizer2;
  animation-duration: 1.4s;
  animation-delay: 1s;
}

.equalizer-bar:nth-child(30) {
  animation-name: equalizer1;
  animation-duration: 2s;
  animation-delay: 0.3s;
}

.equalizer-bar:nth-child(31) {
  animation-name: equalizer1;
  animation-duration: 1.9s;
  animation-delay: 0.3s;
}

.equalizer-bar:nth-child(32) {
  animation-name: equalizer1;
  animation-duration: 0.7s;
  animation-delay: 0.6s;
}

.equalizer-bar:nth-child(33) {
  animation-name: equalizer1;
  animation-duration: 1.8s;
  animation-delay: 0.5s;
}

.equalizer-bar:nth-child(34) {
  animation-name: equalizer3;
  animation-duration: 1.8s;
  animation-delay: 0.6s;
}

.equalizer-bar:nth-child(35) {
  animation-name: equalizer1;
  animation-duration: 1.7s;
  animation-delay: 0.2s;
}

.equalizer-bar:nth-child(36) {
  animation-name: equalizer2;
  animation-duration: 1.1s;
  animation-delay: 0.2s;
}

.equalizer-bar:nth-child(37) {
  animation-name: equalizer3;
  animation-duration: 1.1s;
  animation-delay: 0.2s;
}

.equalizer-bar:nth-child(38) {
  animation-name: equalizer2;
  animation-duration: 1.4s;
  animation-delay: 0.5s;
}

.equalizer-bar:nth-child(39) {
  animation-name: equalizer2;
  animation-duration: 2s;
  animation-delay: 0.2s;
}

.equalizer-bar:nth-child(40) {
  animation-name: equalizer1;
  animation-duration: 0.7s;
  animation-delay: 0.6s;
}

.equalizer-bar:nth-child(41) {
  animation-name: equalizer1;
  animation-duration: 1.6s;
  animation-delay: 0.9s;
}

.equalizer-bar:nth-child(42) {
  animation-name: equalizer1;
  animation-duration: 1.5s;
  animation-delay: 0.7s;
}

.equalizer-bar:nth-child(43) {
  animation-name: equalizer3;
  animation-duration: 0.7s;
  animation-delay: 0.7s;
}

.equalizer-bar:nth-child(44) {
  animation-name: equalizer3;
  animation-duration: 1.5s;
  animation-delay: 0.5s;
}

.equalizer-bar:nth-child(45) {
  animation-name: equalizer3;
  animation-duration: 1.2s;
  animation-delay: 0.1s;
}

.equalizer-bar:nth-child(46) {
  animation-name: equalizer3;
  animation-duration: 0.9s;
  animation-delay: 0.3s;
}

.equalizer-bar:nth-child(47) {
  animation-name: equalizer1;
  animation-duration: 1.9s;
  animation-delay: 0.9s;
}

.equalizer-bar:nth-child(48) {
  animation-name: equalizer3;
  animation-duration: 1.8s;
  animation-delay: 0.1s;
}

.equalizer-bar:nth-child(49) {
  animation-name: equalizer2;
  animation-duration: 1.8s;
  animation-delay: 0.9s;
}

.equalizer-bar:nth-child(50) {
  animation-name: equalizer2;
  animation-duration: 0.9s;
  animation-delay: 0.4s;
}

.volume-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 1rem;
  position: relative;
  z-index: 20;
  --player-btn-hover: transparent;
}

.volume-container-toggle {
  display: flex;
  z-index: 1;
}

.volume-container.is-vertical {
  --player-range-height: 115px;
  --player-range-width: 6px;
  --player-fill-width: 100%;
  --player-fill-height: auto;
  --player-fill-top: auto;
  --player-fill-bottom: 0;
  --player-thumb-left: 50%;
  --player-thumb-top: auto;
  --player-thumb-ty: translateX(-50%);
  --player-input-width: var(--player-range-height);
}

.volume-range-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: var(--player-input-width, 100%);
}

.volume-range-fill {
  position: absolute;
  top: var(--player-fill-top, 0);
  left: var(--player-fill-left, 0);
  bottom: var(--player-fill-bottom, auto);
  width: var(--player-fill-width, auto);
  height: var(--player-fill-height, 100%);
  transition: background-color var(--player-duration);
  background-color: var(--player-primary);
  transition: background-color var(--player-duration-long);
  border-radius: 1rem;
}

.volume-range-wrapper {
  position: relative;
  height: var(--player-range-height, 4px);
  width: var(--player-range-width, 100%);
  background-color: var(--player-range-wrapper-bg);
  border-radius: 1rem;
  cursor: pointer;
}

.volume-range-thumb {
  width: var(--player-thumb-width, 12px);
  height: var(--player-thumb-width, 12px);
  transition: background-color var(--player-duration);
  background-color: var(--player-primary);
  border-radius: 5rem;
  left: var(--player-thumb-left, auto);
  top: var(--player-thumb-top, 50%);
  position: absolute;
  transform: var(--player-thumb-ty, translateY(-50%));
  cursor: pointer;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25);
}

.volume-dropdown {
  position: absolute;
  left: 50%;
  bottom: 100%;
  padding: 0.75rem;
  border-radius: 9999px;
  background-color: white;
  transform: translate(-50%, 0);
  box-shadow: var(--box-shadow-high);
  transition: opacity var(--player-duration), transform var(--player-duration);
}

@media (width <=600px) {
  .volume-dropdown {
    display: none;
  }
}

.player-volume:not(:hover) .volume-dropdown {
  opacity: 0;
  transform: translate(-50%, 1rem) scale(0.95);
  pointer-events: none;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - var(--marquee-gap, 1.5rem) / 2));
  }
}

.player-content {
  overflow: hidden;
  color: #fff;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

.player-button {
  display: flex;
  background-color: transparent !important;
}

.player-button svg {
  width: var(--icon-size, 24px);
  height: var(--icon-size, 24px);
  color: #fff;
}

.player-button-play {
  --icon-size: 2.5rem;
  color: #fff;
  position: relative;
}

.player-fix {
  overflow: hidden;
  display: inline-flex;
  width: 100%;
}

.player-title {
  font-family: var(--primary-font);
  white-space: nowrap;
  flex: 1 0 auto;
  font-size: 1rem;
  text-transform: uppercase;
}

.player-name.is-infinite-scrolling,
.player-title.is-infinite-scrolling {
  --marquee-gap: 1rem;
  gap: var(--marquee-gap);
  display: flex;
  animation: marquee var(--text-scroll-duration, 5s) linear infinite;
}

.player-name.is-backwards,
.player-title.is-backwards {
  animation-direction: reverse;
}

.player-desc {
  font-size: 1rem;
  display: inline-flex;
  gap: 0.5rem;
  white-space: nowrap;
  align-items: center;
  font-weight: 700;
  text-transform: uppercase;
}

@media (width <=600px) {
  .player-title,
  .player-desc {
    font-size: 0.875rem;
  }
}

@keyframes fadeInOut {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: var(--fade-opacity-end, 0.5);
  }
}

.skeleton-text {
  --fade-opacity-end: 0.5;
  color: transparent;
  background-color: var(--skeleton-bg, rgba(255, 255, 255, 0.1));
  border-radius: 1rem;
  animation: fadeInOut 2s infinite linear;
  display: inline-flex;
  line-height: 1;
  text-shadow: 0 0 transparent;
}

.skeleton-img {
  background-color: var(--skeleton-bg, rgba(0, 0, 0, 0.1));
  animation: fadeInOut 2s infinite linear;
  border-radius: 0.5rem;
  aspect-ratio: 1/1;
}

.skeleton-img-small {
  width: 80px;
}

.skeleton-img-medium {
  width: 120px;
}

.skeleton-img-large {
  width: 100%;
}

.scrollbar {
  overflow-x: auto;
  --scrollbar-color: var(--player-primary);
}

@supports not (selector(::-webkit-scrollbar-thumb)) {
  .scrollbar {
    scrollbar-color: var(--scrollbar-color) transparent;
    scrollbar-width: thin;
  }
}

.scrollbar::-webkit-scrollbar {
  width: var(--scrollbar-color-width, 4px);
  height: var(--scrollbar-color-width, 4px);
  background-color: transparent;
}

.scrollbar::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 5px;
}

.scrollbar::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-color, black);
  border-radius: 10px;
}

.program-wrapper,
.program-super {
  height: 100%;
}

.program-modal {
  width: 100%;
  max-width: max-content;
  margin: auto;
  position: absolute;
  max-height: 424px;
  height: 100vh;
  background-color: rgb(0 0 0 / 90%);
  color: white;
  box-shadow: 0 8px 17px 2px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2);
  backdrop-filter: blur(1rem);
  transition: opacity 0.3s ease, transform 0.3s ease;
  right: 0;
  bottom: calc(100% + .75rem);
  border-radius: .75rem .75rem 0 0;
  overflow: hidden;
}

.program-modal:not(.is-active) {
  transform: translateY(1rem);
  opacity: 0;
  pointer-events: none;
}

.program-header {
  text-transform: uppercase;
  background-color: #262626;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.program-tabs {
  background-color: #404040;
  padding: 1rem;
  display: flex;
  align-items: center;
}

.program-title {
  color: white;
  font-weight: 600;
  font-size: 1rem;
}
#program-close {
  height: auto;
}
.program-close {
  flex: none;
}

.program-close svg {
  width: 24px;
  height: 24px;
}

.program-button {
  font-size: .75rem;
  font-weight: 700;
  padding: 0 .75rem;
  border-radius: 0;
  height: auto;
}

.program-button+.program-button {
  border-left: 2px solid #fff;
}

.program-button.is-active {
  background-color: black;
  color: white;
}

.programs-list {
  padding: 1rem;
}
.schedule-item-title {
  color: white;
}
@media (width <=600px) {
  .program-button:first-letter {
    font-size: .75rem;
  }

  .program-button {
    font-size: 0;
    width: 100%;
  }

  .program-modal {
    max-width: initial;
  }
}

.schedule-item-picture {
  flex: none;
  width: 60px;
  height: 60px;
}

.schedule-item-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.schedule-item {
  display: flex;
  align-items: center;
  font-size: .875rem;
  gap: 1rem;
}

.schedule-item-description {
  font-size: 10px;
}

.schedule-item-time {
  font-size: 10px;
}

.schedule-item-title {
  font-weight: 700;
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.schedule-list:not(.is-active) {
  display: none;
}

.programs-list {
  padding: 1rem;
  max-height: calc(100% - 108px);
}

.player-badge::after,
.player-badge::before {
  height: 2px;
  background-color: white;
  content: "";
  width: 100%;
}

.badge {
  color: black;
  background-color: white;
  font-weight: 700;
  text-shadow: none;
  text-transform: uppercase;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: .25rem;
  display: flex;
  align-items: center;
  gap: .25rem;
}

.badge::before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  background-color: #F44336;
  border-radius: 999px;
}

.player-right,
.player-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.player-left {
  width: 100%;
  max-width: calc(100% - 7.5rem);
}
.player-right {
  flex: none;
  margin-left: auto;
}
.player-meta {
  width: calc(100% - 1rem - var(--image-size));
}
@media (min-width: 992px) {
  .player-left {
    max-width: 40%;
  }
}

.volume-range-input {
  width: 120px !important;
  max-width: initial !important;
}
.schedule-item-title {
  color: white;
}