@import url("https://fonts.googleapis.com/css?family=Roboto");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");

/* Era @import "../breadcrumbs.css": extensao .css vira import literal no Sass. */
.breadcrumbs {
  display: flex;
  align-items: center;
  color: white;
  margin-bottom: 1.6rem;
  margin-top: 1.6rem;
  font-size: 1.6rem;
}

.breadcrumbs .breadcrumb-separator {
  color: black;
  padding-right: 1rem;
  padding-left: 1rem;
}

.breadcrumbs .breadcrumb-page, .breadcrumbs .breadcrumb-separator {
  color: black;
}

#mobile-header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: space-between;
  flex: 1 0 0;
  background: var(--station-color);
  height: 64px;
  overflow: visible;
}

#mobile-header::before, #mobile-header::after {
  content: "";
  position: absolute;
  bottom: -29px;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid var(--station-color);
}

#mobile-header::before {
  left: -30px;
  z-index: -1;
}

#mobile-header::after {
  right: 0;
  border-right: 0;
  z-index: -1;
}

#mobile-header .title {
  justify-content: center;
  color: white;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
}

#mobile-header .left {
  padding-left: 16px;
  padding-right: 16px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
}

#mobile-header .left a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

#mobile-header .right-space {
  width: 48px;
  height: 48px;
}

#desktop-navbar {
  width: 100%;
  height: 66px;
  padding-top: 12px;
  background: linear-gradient(180deg, var(--station-color) 0%, rgba(41, 91, 255, 0.1) 100%);
  backdrop-filter: blur(4px);
  position: fixed;
  top: 0;
  z-index: 10 !important;
  margin-bottom: 50px;
}

#desktop-navbar #nav-container {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 40px;
}

#desktop-navbar #nav-container .links {
  display: flex;
  padding: 8px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

#desktop-navbar #nav-container .nav-link {
  position: relative;
  border-radius: 100px;
  border: 2px solid rgba(255, 255, 255, 0);
  color: black;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  display: flex;
  padding: 8px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: linear-gradient(101deg, #FFF 0%, rgba(255, 255, 255, 0.9) 58.36%);
  box-shadow: 0px 4px 16px 0px rgba(0, 12, 58, 0.1);
  backdrop-filter: blur(2px);
}

#desktop-navbar #nav-container .nav-link:hover {
  background: var(--station-secondary-color);
  animation: hoverBg 0.3s ease-in-out forwards;
}

@keyframes hoverBg {
  0% {
    opacity: 0.85;
  }
  100% {
    opacity: 1;
  }
}

#desktop-navbar #nav-container .dropdown-items {
  position: relative;
  height: 40px;
}

#desktop-navbar #nav-container .dropdown-items .content {
  border-radius: 21px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  margin-top: -41px;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: white;
  padding-right: 5px;
  padding-left: 5px;
  border: 1px solid var(--station-secondary-color);
  animation: fadeIn 0.3s ease-in-out;
  z-index: 1;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#desktop-navbar #nav-container .dropdown-items .content a {
  padding: 0.7rem;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  display: flex;
  white-space: nowrap;
  color: var(--station-secondary-color);
  filter: brightness(88%);
}

#desktop-navbar #nav-container .dropdown-items .content a:hover {
  color: var(--station-secondary-color);
  transition: 0.2s;
  filter: brightness(100%);
}

#desktop-navbar #nav-container .dropdown-items .content .main-link a {
  padding-top: 0;
  color: black;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

#desktop-navbar #nav-container .station-selection .logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}

#desktop-navbar #nav-container .station-selection .logo .station-img {
  width: 88px;
  height: 88px;
  border-radius: 200px;
  background-color: white;
  background-blend-mode: overlay, normal, normal;
  border: 2px solid var(--station-color);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: inset 0 0 0 0.5px var(--station-color);
  position: relative;
  z-index: 1;
}

#desktop-navbar #nav-container .station-selection .logo .stations-list-button {
  border-radius: 100px;
  background: var(--station-color);
  display: flex;
  padding: 8px 12px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin-left: -10px;
  position: relative;
  z-index: 2;
}

#desktop-navbar #nav-container .station-selection .logo .stations-list-button .current-station-name {
  color: white;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  white-space: nowrap;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

#desktop-navbar #nav-container .station-selection .logo .stations-list-button .icons {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#desktop-navbar #nav-container .station-selection .logo .stations-list-button .icons svg.animate-in {
  animation: rotate 0.2s linear;
}

@keyframes rotate {
  from {
    transform: rotate(320deg);
  }
  to {
    transform: rotate(360deg);
  }
}

#desktop-navbar #nav-container .station-selection .logo .stations-list-button .close-icon {
  fill: white;
  font-size: 12px;
  width: 17px;
  height: 17px;
}

#desktop-navbar #nav-container .station-selection .selector {
  width: auto;
  margin-top: 390px;
  position: absolute;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 80px;
  animation: fadeIn 0.3s ease-in-out;
}

#desktop-navbar #nav-container .station-selection .selector.animate-out {
  animation: fadeOut 0.3s ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

#desktop-navbar #nav-container .station-selection .selector swiper-container {
  height: 25rem;
}

#desktop-navbar #nav-container .station-selection .selector swiper-container swiper-slide {
  height: auto;
}

#desktop-navbar #nav-container .station-selection .selector .station-selector-clone {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  position: relative;
}

#desktop-navbar #nav-container .station-selection .selector .station-selector-clone .station-img-clone {
  width: 88px;
  height: 88px;
  border-radius: 200px;
  background-color: white;
  background-blend-mode: overlay, normal, normal;
  border: 2px solid var(--station-color);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: inset 0 0 0 0.5px var(--station-color);
  position: relative;
  z-index: 1;
}

#desktop-navbar #nav-container .station-selection .selector .station-selector-clone .stations-list-button-clone {
  border-radius: 100px;
  background: var(--station-color);
  display: flex;
  padding: 8px 12px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin-left: -10px;
  position: relative;
  z-index: 2;
}

#desktop-navbar #nav-container .station-selection .selector .station-selector-clone .stations-list-button-clone .current-station-name {
  color: white;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  white-space: nowrap;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

#desktop-navbar #nav-container .station-selection .selector .station-selector-clone .stations-list-button-clone .icons {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#desktop-navbar #nav-container .station-selection .selector .station-selector-clone .stations-list-button-clone .icons svg {
  width: 13px;
  height: 13px;
}

#desktop-navbar #nav-container .station-selection .selector .station-selector-clone .stations-list-button-clone .icons svg path {
  stroke: white;
}

#desktop-navbar #nav-container .time {
  display: flex;
  padding: 8px 16px 8px 12px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 100px;
  background: var(--station-color);
  color: white;
}

#desktop-navbar #nav-container .time svg {
  width: 16px;
  height: 16px;
}

#desktop-navbar #nav-container .time svg path {
  stroke: white;
}

#desktop-hero-player #hero-background {
  width: 100%;
  height: 480px;
  position: absolute;
}

#desktop-hero-player #hero-background::before {
  content: "";
  background: var(--station-logo);
  background-size: 80px 80px;
  filter: grayscale(100%);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
}

#desktop-hero-player #hero-background::after {
  content: "";
  background: var(--station-color);
  opacity: 0.87;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
}

#desktop-hero-player #hero-background.with-background::before {
  background: var(--station-background);
}

#desktop-hero-player .hero-player {
  height: 640px;
  margin-top: -127px;
  margin-bottom: 25px;
}

#desktop-hero-player .hero-player .main-content {
  background: linear-gradient(180deg, rgba(0, 12, 58, 0) 75%, rgba(0, 0, 0, 0.5) 100%), linear-gradient(180deg, rgba(0, 12, 58, 0) 75%, rgba(0, 0, 0, 0.5) 100%), transparent 50%/cover no-repeat;
  background-blend-mode: overlay, normal, normal;
  border-radius: 0px 0px 40px 40px;
}

#desktop-hero-player .hero-player .main-content img, #desktop-hero-player .hero-player .main-content video, #desktop-hero-player .hero-player .main-content #video-container, #desktop-hero-player .hero-player .main-content iframe {
  height: 640px;
  width: 100%;
  object-fit: cover;
  border-radius: 0px 0px 40px 40px;
  z-index: -1;
  position: relative;
}

#desktop-hero-player .hero-player .main-content #video-container.live {
  position: relative;
  z-index: 1;
}

#desktop-hero-player .hero-player .main-content #video-container.live .iframe-wrapper {
  position: relative;
  background-color: black;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0px 0px 40px 40px;
}

#desktop-hero-player .hero-player .main-content #video-container.live .iframe-wrapper iframe {
  width: calc(100% - 20px);
  height: calc(100% - 100px);
  margin-top: 100px;
  border: none;
  pointer-events: auto;
  z-index: 1;
}

#desktop-hero-player .hero-player .player-content {
  padding-right: 40px;
  padding-left: 40px;
  margin-top: -120px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 24px;
  align-items: center;
  z-index: 2;
  position: relative;
}

#desktop-hero-player .hero-player .player-content .controls {
  width: 21.7rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  z-index: 3;
  pointer-events: auto;
}

#desktop-hero-player .hero-player .player-content .controls .play-btn {
  width: 60px;
  margin-top: -0.8rem;
  color: var(--station-secondary-color);
  display: flex;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  z-index: 2;
}

#desktop-hero-player .hero-player .player-content .controls .play-btn .btn-background {
  background: var(--station-play-pause-button-color);
  width: 35px;
  height: 35px;
  position: absolute;
  z-index: -1;
  border-radius: 100px;
  margin-top: 1.5rem;
}

#desktop-hero-player .hero-player .player-content .controls .play-btn i {
  font-size: 5.5rem;
}

#desktop-hero-player .hero-player .player-content .controls .play-btn span {
  background-color: var(--station-color);
  padding-left: 0.7rem;
  padding-right: 0.7rem;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  border-radius: 4rem;
  margin-top: -24px;
  color: #F9F9F9;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  z-index: 2;
}

#desktop-hero-player .hero-player .player-content .controls .volume {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 10px;
}

#desktop-hero-player .hero-player .player-content .controls .volume .mute i {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--station-secondary-color);
}

#desktop-hero-player .hero-player .player-content .controls input[type="range"] {
  -webkit-appearance: none;
  margin-right: 15px;
  width: 96px;
  height: 4px;
  background: rgba(164, 164, 164, 0.251);
  border-radius: 5px;
  background-image: linear-gradient(var(--station-secondary-color), var(--station-secondary-color));
  background-size: 70% 100%;
  background-repeat: no-repeat;
  cursor: pointer;
  margin-right: -5px;
}

#desktop-hero-player .hero-player .player-content .controls input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 15px;
  width: 6px;
  border-radius: 2px;
  background: #f9f9f9;
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #555;
  transition: background .3s ease-in-out;
  cursor: pointer;
}

#desktop-hero-player .hero-player .player-content .fullscreen-btn, #desktop-hero-player .hero-player .player-content .video-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.27);
  height: 80px;
  padding-right: 20px;
  cursor: pointer;
}

#desktop-hero-player .hero-player .player-content .fullscreen-btn svg path, #desktop-hero-player .hero-player .player-content .video-btn svg path {
  stroke: var(--station-secondary-color);
}

#desktop-hero-player .hero-player .player-content .fullscreen-btn svg rect, #desktop-hero-player .hero-player .player-content .video-btn svg rect {
  stroke: var(--station-secondary-color);
}

#desktop-hero-player .hero-player .player-content .program {
  color: #F9F9F9;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 16px;
}

#desktop-hero-player .hero-player .player-content .program .program-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#desktop-hero-player .hero-player .player-content .program .program-info span {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}

#desktop-hero-player .hero-player .player-content .program .program-name {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}

#desktop-hero-player .hero-player .player-content .program .program-name span {
  color: var(--station-secondary-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
}

#desktop-hero-player .hero-player .player-content .program .program-name svg path {
  stroke: var(--station-secondary-color);
}

#desktop-hero-player .hero-player .player-content .program .program-image img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  border: 2px solid rgba(0, 0, 0, 0.5);
  background: linear-gradient(153deg, rgba(255, 255, 255, 0) 29.95%, rgba(255, 255, 255, 0.5) 47.76%, rgba(255, 255, 255, 0) 48.18%), lightgray 50%/cover no-repeat;
  background-blend-mode: overlay, normal;
  object-fit: cover;
}

#desktop-hero-player .switch-container {
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
  margin-left: auto;
}

#desktop-hero-player .switch-container.live-switch {
  position: absolute;
  top: 22px;
  right: 40px;
  align-items: flex-end;
}

#desktop-hero-player .switch-container .switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 95px;
  height: 35px;
  background-color: #f0f0f0;
  border-radius: 20px;
  padding: 5px;
  position: relative;
  box-shadow: 0px 2px 2px 0px rgba(0, 12, 58, 0.1), 0px 8px 18px 0px rgba(0, 0, 0, 0.2);
}

#desktop-hero-player .switch-container .switch .switch-option {
  flex: 1;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #666;
  text-decoration: none;
  padding-top: 6px;
  padding-bottom: 6px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 20px;
}

#desktop-hero-player .switch-container .switch .switch-option.active {
  background-color: var(--station-color);
  color: white;
}

footer {
  background-color: var(--station-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  height: 50rem;
  padding-bottom: 130px;
}

footer .itens-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

footer .itens-container .station-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 1.7rem;
}

footer .itens-container .station-logo img {
  width: 104px;
  height: 104px;
  border-radius: 200px;
  border: 4px solid rgba(0, 0, 0, 0.5);
}

footer .itens-container .station-logo .station-rights {
  display: flex;
  flex-direction: column;
  color: white;
}

footer .itens-container .social-networks {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 20px;
}

footer .itens-container .social-networks svg {
  width: 50px;
  height: 50px;
}

footer .itens-container .social-networks .svg-container {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
}

footer .itens-container .social-networks .svg-container svg {
  position: absolute;
}

footer .itens-container .social-networks .svg-container .twitter-svg, footer .itens-container .social-networks .svg-container .tiktok-svg {
  z-index: 1;
  width: 21px;
  height: 21px;
}

footer .itens-container .social-networks .svg-container .twitter-svg path, footer .itens-container .social-networks .svg-container .tiktok-svg path {
  fill: white;
}

footer .station-info {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.8rem;
  color: white;
}

footer .station-info a {
  color: white;
  text-decoration: none;
}

footer .station-info .station-contacts {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

footer hr {
  margin-top: 25px;
}

footer .developed-by {
  margin-bottom: -50px;
  text-align: center;
  text-shadow: 0px 4px 16px rgba(0, 0, 0, 0.25);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 14px;
  filter: brightness(0) invert(1);
  color: white;
}

footer .developed-by .cadena-logo {
  width: 156px;
  height: 36px;
}

.trix-content .attachment-gallery > action-text-attachment,
.trix-content .attachment-gallery > .attachment {
  flex: 1 0 33%;
  padding: 0 0.5em;
  max-width: 33%;
}

.trix-content .attachment-gallery.attachment-gallery--2 > action-text-attachment,
.trix-content .attachment-gallery.attachment-gallery--2 > .attachment, .trix-content .attachment-gallery.attachment-gallery--4 > action-text-attachment,
.trix-content .attachment-gallery.attachment-gallery--4 > .attachment {
  flex-basis: 50%;
  max-width: 50%;
}

.trix-content action-text-attachment .attachment {
  padding: 0 !important;
  max-width: 100% !important;
}

.trix-content a {
  word-break: break-all;
}

.trix-content img {
  max-width: 100%;
  height: auto;
}

.trix-content video {
  max-width: 100%;
  height: auto;
  /* Ensure all video controls are visible in Action Text */
  /* Force show specific controls */
}

.trix-content video[controls] {
  -webkit-appearance: auto !important;
  -moz-appearance: auto !important;
  appearance: auto !important;
}

.trix-content video::-webkit-media-controls-panel {
  display: flex !important;
}

.trix-content video::-webkit-media-controls-timeline {
  display: block !important;
}

.trix-content video::-webkit-media-controls-volume-slider {
  display: block !important;
}

.trix-content video::-webkit-media-controls-volume-slider-container {
  display: block !important;
}

.trix-content video::-webkit-media-controls-mute-button {
  display: block !important;
}

.trix-content video::-moz-media-controls {
  display: block !important;
}

.trix-content iframe {
  width: 100%;
  height: 480px;
}

@media (max-width: 768px) {
  .trix-content iframe {
    height: 240px;
  }
}

#bottom-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  flex-direction: column;
  position: fixed;
  bottom: 0;
  width: 100%;
}

#bottom-bar #bar-items {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7.3rem;
  width: 100%;
  height: 7rem;
}

#bottom-bar #bar-items .left, #bottom-bar #bar-items .right {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

#bottom-bar #bar-items .right {
  justify-content: flex-end;
}

#bottom-bar #bar-items .whatsapp-link, #bottom-bar #bar-items .instagram-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

#bottom-bar #bar-items .whatsapp-link i, #bottom-bar #bar-items .instagram-link i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.2rem;
  margin-bottom: 0.1rem;
}

#bottom-bar #bar-items .whatsapp-link {
  justify-content: flex-start;
  background-color: #25D366;
  border-top-left-radius: 2.5rem;
  border-bottom-left-radius: 2.5rem;
  padding-left: 0.85rem;
}

#bottom-bar #bar-items .instagram-link {
  justify-content: flex-end;
  background-color: #D82D7E;
  border-top-right-radius: 2.5rem;
  border-bottom-right-radius: 2.5rem;
  padding-right: 0.85rem;
}

#bottom-bar #bar-items .mobile-play-btn {
  margin-top: 1.3rem;
  z-index: 3;
  height: 5.5rem;
}

#bottom-bar #bar-items .mobile-play-btn i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--station-secondary-color);
  background: var(--station-play-pause-button-color);
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  font-size: 6.3rem;
}

#bottom-bar .slide-up {
  animation: slide-up 0.5s ease-in-out forwards;
}

@keyframes slide-up {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}

#mobile-navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  flex-direction: column;
  position: fixed;
  bottom: 0;
  width: 100%;
}

#mobile-navbar a {
  color: var(--station-secondary-color);
  text-decoration: none;
}

#mobile-navbar .nav-items-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  width: 100%;
  height: 9rem;
}

#mobile-navbar .nav-items-container .left {
  margin-top: 1.2rem;
  width: 15%;
}

#mobile-navbar .nav-items-container .left .program-img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid rgba(0, 0, 0, 0.5);
  background: linear-gradient(153deg, rgba(255, 255, 255, 0) 29.95%, rgba(255, 255, 255, 0.5) 47.76%, rgba(255, 255, 255, 0) 48.18%), lightgray 50%/cover no-repeat;
  background-blend-mode: overlay, normal;
}

#mobile-navbar .nav-items-container .right {
  margin-top: 1.5rem;
  width: 85%;
}

#mobile-navbar .nav-items-container .right .nav-items {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

#mobile-navbar .nav-items-container .right .nav-items .nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

#mobile-navbar .nav-items-container .right .nav-items .nav-item i {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

#mobile-navbar .nav-items-container .right .nav-items .nav-item span {
  display: none;
}

#mobile-navbar .nav-items-container .right .nav-items .nav-item.active {
  white-space: nowrap;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  padding: 8px 16px;
  gap: 8px;
  border-radius: 100px;
  background: white;
  box-shadow: 0px 4px 16px 0px rgba(0, 12, 58, 0.1);
  backdrop-filter: blur(2px);
}

#mobile-navbar .nav-items-container .right .nav-items .nav-item.active i {
  color: black;
  font-size: 1.5rem;
}

#mobile-navbar .nav-items-container .right .nav-items .nav-item.active span {
  color: black;
  display: block;
}

#mobile-navbar .nav-items-container .right .nav-items .nav-item.active.switch-from-right {
  animation: switch-from-right 0.4s ease-in-out forwards;
}

@keyframes switch-from-right {
  0% {
    transform: translateX(2.6rem);
  }
  100% {
    transform: translateX(0);
  }
}

#mobile-navbar .nav-items-container .right .nav-items .nav-item.active.switch-from-left {
  animation: switch-from-left 0.5s ease-in-out forwards;
}

@keyframes switch-from-left {
  0% {
    transform: translateX(-2.6rem);
  }
  100% {
    transform: translateX(0);
  }
}

#mobile-navbar .nav-items-container .right .nav-items .nav-item.fade-out {
  animation: fade-out 0.5s forwards;
}

@keyframes fade-out {
  0% {
    white-space: nowrap;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    padding: 8px 16px;
    gap: 8px;
    border-radius: 100px;
    background: white;
    box-shadow: 0px 4px 16px 0px rgba(0, 12, 58, 0.1);
    backdrop-filter: blur(2px);
    i {
      color: black;
      font-size: 1.5rem;
    }
    span {
      color: black;
      display: block;
    }
  }
  100% {
    white-space: normal;
    font-size: initial;
    font-style: initial;
    font-weight: initial;
    line-height: initial;
    padding: initial;
    gap: initial;
    border-radius: initial;
    background: transparent;
    box-shadow: initial;
    backdrop-filter: initial;
    i {
      color: white;
      font-size: 2rem;
    }
    span {
      color: initial;
      display: none;
    }
  }
}

#desktop-player {
  display: flex;
  z-index: 10;
  width: 100%;
  height: 99px;
  padding: 16px 40px;
  align-items: center;
  position: fixed;
  bottom: 0;
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.5) 100%);
  backdrop-filter: blur(4px);
}

#desktop-player.embedded {
  background: black;
}

#desktop-player svg path {
  stroke: var(--station-secondary-color);
}

#desktop-player svg rect {
  stroke: var(--station-secondary-color);
}

#desktop-player .content {
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#desktop-player .content .left {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 32px;
}

#desktop-player .content .left .play-btn {
  width: 60px;
  margin-top: -0.5rem;
  color: var(--station-secondary-color);
  display: flex;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}

#desktop-player .content .left .play-btn .btn-background {
  background: var(--station-play-pause-button-color);
  width: 35px;
  height: 35px;
  position: absolute;
  z-index: -1;
  border-radius: 100px;
  margin-top: 1.5rem;
}

#desktop-player .content .left .play-btn i {
  font-size: 5.5rem;
}

#desktop-player .content .left .play-btn span {
  background-color: var(--station-color);
  padding-left: 0.7rem;
  padding-right: 0.7rem;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  border-radius: 4rem;
  margin-top: -24px;
  color: #F9F9F9;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  z-index: 10;
}

#desktop-player .content .left .play-btn span.embedded {
  margin-top: -12px;
}

#desktop-player .content .left .noar .program-content {
  color: #F9F9F9;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 16px;
}

#desktop-player .content .left .noar .program-content .program-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#desktop-player .content .left .noar .program-content .program-info span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

#desktop-player .content .left .noar .program-content .program {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}

#desktop-player .content .left .noar .program-content .program span {
  color: var(--station-secondary-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
}

#desktop-player .content .left .noar .program-content .program svg path {
  stroke: var(--station-secondary-color);
}

#desktop-player .content .left .noar .program-content .program-image img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  background: linear-gradient(153deg, rgba(255, 255, 255, 0) 29.95%, rgba(255, 255, 255, 0.5) 47.76%, rgba(255, 255, 255, 0) 48.18%), lightgray 50%/cover no-repeat;
  background-blend-mode: overlay, normal;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px 4px 80px 0px rgba(255, 255, 255, 0.65);
  object-fit: cover;
}

#desktop-player .content .right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  flex-direction: row;
}

#desktop-player .content .right .volume {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 16px;
}

#desktop-player .content .right .volume .mute i {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--station-secondary-color);
}

#desktop-player .content .right .video-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#desktop-player .content .right input[type="range"] {
  -webkit-appearance: none;
  margin-right: 15px;
  width: 96px;
  height: 4px;
  background: rgba(164, 164, 164, 0.251);
  border-radius: 5px;
  background-image: linear-gradient(var(--station-secondary-color), var(--station-secondary-color));
  background-size: 70% 100%;
  background-repeat: no-repeat;
  cursor: pointer;
}

#desktop-player .content .right input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 15px;
  width: 6px;
  border-radius: 2px;
  background: #f9f9f9;
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #555;
  transition: background .3s ease-in-out;
  cursor: pointer;
}

#mobile-player {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  flex-direction: column;
  position: fixed;
  bottom: 0;
  width: 100%;
}

#mobile-player svg {
  display: flex;
  align-items: center;
  justify-content: center;
}

#mobile-player .play-btn {
  margin-bottom: -4%;
  z-index: 3;
  height: 5.5rem;
}

#mobile-player .play-btn i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--station-secondary-color);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0px 4px 80px rgba(255, 255, 255, 0.65));
  background: black;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  font-size: 6.3rem;
}

#mobile-player .player-items {
  position: relative;
  padding-right: 1.1rem;
  padding-left: 0.3rem;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 9rem;
  align-items: center;
  gap: 1rem;
}

#mobile-player .player-items .left {
  width: 90%;
  margin-top: 1.6rem;
  overflow: hidden;
}

#mobile-player .player-items .left .noar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

#mobile-player .player-items .left .noar .live-content {
  color: #F9F9F9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 16px;
  font-style: normal;
  font-size: 13px;
  line-height: 22px;
}

#mobile-player .player-items .left .noar .live-content .program-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#mobile-player .player-items .left .noar .live-content .program-info .live-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

#mobile-player .player-items .left .noar .live-content .program-info .live-container .live {
  white-space: nowrap;
}

#mobile-player .player-items .left .noar .live-content .program-info .live-container .live .live-song {
  display: flex;
}

#mobile-player .player-items .left .noar .live-content .program-info .live-container .live-text {
  color: #F9F9F9;
  background-color: var(--station-color);
  font-weight: 600;
  font-size: 11px;
  border-radius: 6px;
  padding-right: 4px;
  padding-left: 4px;
  white-space: nowrap;
}

#mobile-player .player-items .left .noar .live-content .program-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

#mobile-player .player-items .left .noar .live-content .program-container svg path {
  stroke: var(--station-secondary-color);
}

#mobile-player .player-items .left .noar .live-content .program-container span {
  white-space: nowrap;
  font-size: 11px;
  color: var(--station-secondary-color);
  font-weight: 600;
}

#mobile-player .player-items .left .noar .live-content .close-player {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 4px;
}

#mobile-player .player-items .left .noar .live-content .close-player i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--station-secondary-color);
}

#mobile-player .player-items .left .noar .live-content .close-player .program-image img {
  width: 45px;
  height: 45px;
  border-radius: 4px;
  border: 2px solid rgba(0, 0, 0, 0.5);
  background: linear-gradient(153deg, rgba(255, 255, 255, 0) 29.95%, rgba(255, 255, 255, 0.5) 47.76%, rgba(255, 255, 255, 0) 48.18%), lightgray 50%/cover no-repeat;
  background-blend-mode: overlay, normal;
  object-fit: cover;
}

#mobile-player .player-items .right {
  width: 10%;
  justify-content: flex-end;
  margin-top: 1.4rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
}

#mobile-player .player-items .right i {
  display: flex;
  align-items: center;
  color: var(--station-secondary-color);
  font-size: 3rem;
}

#mobile-player .player-items .right svg path {
  stroke: var(--station-secondary-color);
}

#mobile-player .player-items .right svg rect {
  stroke: var(--station-secondary-color);
}

#mobile-player .player-items .right svg {
  width: 3.5rem;
  height: 3.5rem;
}

#preroll {
  z-index: 15;
  width: 100%;
  height: 100%;
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.884);
}

#preroll .preroll-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  max-height: 95%;
  animation: fadein 0.7s;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#preroll .preroll-container #preroll-link, #preroll .preroll-container img {
  width: 100%;
  height: 100%;
}

#preroll .preroll-container .close-section {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

#preroll .preroll-container .close-section .close-time {
  font-size: 1.4rem;
  color: #fff;
}

#preroll .preroll-container .close-section .close-button {
  font-size: 3.2rem;
  color: #fff;
  cursor: pointer;
}

#banner {
  background-color: transparent;
}

@media (max-width: 767px) {
  #banner {
    padding-bottom: 40px;
  }
}

#banner img {
  width: 100%;
  height: 230px;
  object-fit: fill;
}

@media (min-width: 360px) and (max-width: 539px) {
  #banner img {
    height: 75px;
  }
}

@media (min-width: 540px) and (max-width: 767px) {
  #banner img {
    height: 100px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  #banner img {
    height: 150px;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  #banner img {
    height: 200px;
  }
}

.with-bottom-space {
  margin-bottom: -11rem;
}

.with-menu-bar-space {
  margin-top: -15rem;
  padding-bottom: 190px !important;
}

#mobile-hero-player {
  background-color: #fbf5f4;
  width: 100%;
  padding-bottom: 40px;
}

#mobile-hero-player.space-from-stations-changer {
  margin-top: 64px;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

#mobile-hero-player.space-from-stations-changer .activate-sound {
  top: 7.5rem;
}

#mobile-hero-player.space-from-stations-changer .main-content video, #mobile-hero-player.space-from-stations-changer .main-content img, #mobile-hero-player.space-from-stations-changer .main-content iframe {
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

#mobile-hero-player .activate-sound {
  background-color: white;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-radius: 20rem;
  gap: 0.5rem;
  position: absolute;
  top: 1.5rem;
  left: 1.3rem;
  font-weight: 600;
  box-shadow: 0px 2px 2px 0px rgba(0, 12, 58, 0.1), 0px 8px 18px 0px rgba(0, 0, 0, 0.2);
  z-index: 12 !important;
}

#mobile-hero-player .activate-sound i {
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

#mobile-hero-player .main-content img, #mobile-hero-player .main-content video, #mobile-hero-player .main-content iframe, #mobile-hero-player .main-content #video-container {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

#mobile-hero-player .main-content video:fullscreen, #mobile-hero-player .main-content iframe:fullscreen, #mobile-hero-player .main-content #video-container:fullscreen {
  object-fit: contain;
}

#mobile-hero-player .program-image img {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  border: 2px solid rgba(0, 0, 0, 0.5);
  background: linear-gradient(153deg, rgba(255, 255, 255, 0) 29.95%, rgba(255, 255, 255, 0.5) 47.76%, rgba(255, 255, 255, 0) 48.18%), lightgray 50%/cover no-repeat;
  background-blend-mode: overlay, normal;
  object-fit: cover;
}

#mobile-hero-player .content-container {
  background: var(--station-color);
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 12px;
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  margin-top: -10px;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 2px 2px 0px rgba(0, 12, 58, 0.1), 0px 8px 18px 0px rgba(0, 0, 0, 0.2);
}

#mobile-hero-player .content-container svg {
  display: flex;
  align-items: center;
  justify-content: center;
}

#mobile-hero-player .content-container svg path {
  stroke: white;
}

#mobile-hero-player .content-container svg rect {
  stroke: white;
}

#mobile-hero-player .content-container .content {
  display: flex;
  flex-direction: row;
}

#mobile-hero-player .content-container .content .left {
  width: 90%;
  overflow: hidden;
}

#mobile-hero-player .content-container .content .left .live-content {
  color: #F9F9F9;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 16px;
  font-style: normal;
  font-size: 13px;
  line-height: 22px;
}

#mobile-hero-player .content-container .content .left .live-content .program-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#mobile-hero-player .content-container .content .left .live-content .program-info .live-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

#mobile-hero-player .content-container .content .left .live-content .program-info .live-container .live {
  white-space: nowrap;
}

#mobile-hero-player .content-container .content .left .live-content .program-info .live-container .live .live-song {
  display: flex;
}

#mobile-hero-player .content-container .content .left .live-content .program-info .live-container .live-text {
  color: #F9F9F9;
  background-color: var(--station-color);
  font-weight: 600;
  font-size: 11px;
  border-radius: 6px;
  padding-right: 4px;
  padding-left: 4px;
  white-space: nowrap;
}

#mobile-hero-player .content-container .content .left .live-content .program-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

#mobile-hero-player .content-container .content .left .live-content .program-container svg path {
  stroke: white;
}

#mobile-hero-player .content-container .content .left .live-content .program-container span {
  white-space: nowrap;
  font-size: 11px;
  color: white;
  font-weight: 600;
}

#mobile-hero-player .content-container .content .right {
  width: 10%;
  justify-content: flex-end;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

#mobile-hero-player .content-container .content .right i {
  display: flex;
  align-items: center;
  color: white;
  font-size: 3rem;
}

#mobile-hero-player .content-container .content .right svg {
  width: 3.5rem;
  height: 3.5rem;
}

#mobile-hero-player .content-container .content .right .fullscreen-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 17px;
  width: 22px;
  cursor: pointer;
}

#mobile-hero-player .content-container .content .right .fullscreen-btn svg path {
  stroke: white;
}

#mobile-hero-player .content-container .content .right .video-btn svg path {
  stroke: white;
}

#mobile-hero-player .content-container .content .right .video-btn svg rect {
  stroke: white;
}

#mobile-hero-player .switch-container {
  position: absolute;
  top: 75px;
  left: 15px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

#mobile-hero-player .switch-container .switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 95px;
  height: 35px;
  background-color: #f0f0f0;
  border-radius: 20px;
  padding: 5px;
  position: relative;
  box-shadow: 0px 2px 2px 0px rgba(0, 12, 58, 0.1), 0px 8px 18px 0px rgba(0, 0, 0, 0.2);
}

#mobile-hero-player .switch-container .switch .switch-option {
  flex: 1;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #666;
  text-decoration: none;
  padding-top: 6px;
  padding-bottom: 6px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 20px;
}

#mobile-hero-player .switch-container .switch .switch-option.active {
  background-color: var(--station-color);
  color: white;
}

#posts {
  background-color: #f7f7f7;
  padding-bottom: 3rem;
  min-height: 50vh;
}

@media (max-width: 767px) {
  #posts {
    min-height: 100vh;
  }
}

#posts .main-post {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  column-gap: 2rem;
  margin-bottom: 2rem;
}

#posts .main-post .post-img {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#posts .main-post .post-content {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

#posts .main-post .post-content .category {
  font-size: 1.8rem;
  color: var(--station-color);
}

#posts .main-post .post-content .author {
  font-size: 1.5rem;
  color: gray;
}

#posts .main-post .post-content .title {
  font-size: 2.5rem;
  font-weight: 1000;
}

#posts .main-post .post-content .title a {
  color: black !important;
}

#posts .main-post .post-content .subtitle {
  font-size: 1.8rem;
  color: gray;
}

#posts .main-post .post-content .date {
  font-size: 1.5rem;
  color: var(--station-color);
}

#posts #posts-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 1200px) {
  #posts #posts-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 992px) {
  #posts #posts-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  #posts #posts-list {
    grid-template-columns: 1fr;
  }
}

#posts #posts-list .post a {
  display: flex;
  flex-direction: column;
  width: 100%;
}

#posts #posts-list .post span {
  color: black;
  font-weight: 1000;
}

#posts #posts-list .post-img {
  width: 100%;
  height: 170px;
  background-size: cover;
  background-position: center;
  margin-bottom: 15px;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#posts .rss-category {
  margin-bottom: 3rem;
}

#posts .rss-category .category-title {
  font-size: 2.2rem;
  font-weight: 1000;
  color: black;
  margin-bottom: 1.5rem;
}

#posts .rss-category .rss-empty {
  font-size: 1.5rem;
  color: gray;
}

#posts .rss-category .rss-posts-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 1200px) {
  #posts .rss-category .rss-posts-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 992px) {
  #posts .rss-category .rss-posts-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  #posts .rss-category .rss-posts-list {
    grid-template-columns: 1fr;
  }
}

#posts .rss-category .rss-posts-list .post a {
  display: flex;
  flex-direction: column;
  width: 100%;
}

#posts .rss-category .rss-posts-list .post span {
  color: black;
  font-weight: 1000;
}

#posts .rss-category .rss-posts-list .post-img {
  width: 100%;
  height: 170px;
  background-size: cover;
  background-position: center;
  margin-bottom: 15px;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#posts #next-page {
  text-align: center;
}

#posts #next-page input[type="submit"] {
  margin-top: 3rem;
  outline: none;
  width: 11rem;
  height: 4.2rem;
  font-size: 1.6rem;
  background-color: white !important;
  border: 1px solid var(--station-color) !important;
  border-radius: 0 !important;
  color: var(--station-color) !important;
}

#posts #next-page input[type="submit"]:hover {
  background-color: var(--station-color) !important;
  color: white !important;
  transition: background-color 0.5s ease;
}

#mobile-posts {
  background-color: #fbf5f4;
  padding-left: 16px;
}

#mobile-posts.with-min-height {
  min-height: 90vh;
}

#mobile-posts .title {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 8px;
}

#mobile-posts .categories {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  gap: 19px;
}

#mobile-posts .category-name {
  color: black;
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
  margin-bottom: 8px;
}

#mobile-posts swiper-container {
  height: 100%;
}

#mobile-posts swiper-slide {
  width: 85%;
  padding-bottom: 7px;
  padding-right: 7px;
}

#mobile-posts swiper-slide .post-date {
  display: flex;
  padding: 4px 8px;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  border-radius: 0px 100px 100px 0px;
  background: var(--station-color);
  border: none;
  border-left: 4px solid rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 85px;
  left: 0;
}

#mobile-posts swiper-slide .post-date .date {
  color: white;
  text-align: center;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
}

#mobile-posts swiper-slide .post {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  background-color: white;
  border-radius: 8px;
  height: 190px;
}

#mobile-posts swiper-slide .post .image-container {
  width: 100%;
  height: 120px;
  overflow: hidden;
}

#mobile-posts swiper-slide .post .image-container .image-border {
  position: absolute;
  width: 98.1%;
  height: 120px;
  border: 4px solid rgba(0, 0, 0, 0.2);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

#mobile-posts swiper-slide .post .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

#mobile-posts swiper-slide .post .content {
  display: flex;
  padding: 16px;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
}

#mobile-posts swiper-slide .post .content .title {
  height: 40px;
  max-height: 60px;
  align-self: stretch;
  color: black;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#mobile-rss-posts {
  background-color: #fbf5f4;
}

#mobile-rss-posts .posts {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.7rem;
}

#mobile-rss-posts .posts .post {
  display: flex;
  flex-direction: column;
  width: 100%;
}

#mobile-rss-posts .posts .post .post-image {
  border-radius: 40px;
  width: 100%;
  height: 250px;
  object-fit: cover;
  box-shadow: 0 5px 10px -2px rgba(47, 47, 47, 0.237);
}

#mobile-rss-posts .posts .post .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 1.8rem;
  padding-left: 2.3rem;
  padding-right: 2.3rem;
  gap: 5px;
}

#mobile-rss-posts .posts .post .info .post-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: black;
}

#mobile-rss-posts .posts .post .info .posted-at {
  font-size: 1.4rem;
  color: black;
}

#mobile-post {
  background-color: #fbf5f4;
}

#mobile-post .featured-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 16px;
  box-shadow: 0px 4px 16px 0px rgba(199, 69, 0, 0.25);
}

#mobile-post .image-credit {
  text-align: center;
  margin-top: -12px;
  margin-bottom: 16px;
  padding: 0 16px;
}

#mobile-post .image-credit small {
  color: #909097;
  font-style: italic;
  font-size: 12px;
}

#mobile-post .post-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 8px;
}

#mobile-post .author {
  display: flex;
  flex-direction: row;
  gap: 4px;
  color: #909097;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 8px;
}

#mobile-post .author .name {
  font-weight: 600;
}

#mobile-post .separator {
  width: 100%;
  margin-top: 7px;
  margin-bottom: 7px;
  height: 1px;
  background-color: var(--station-color);
  color: var(--station-color);
}

#mobile-post .time {
  font-size: 13px;
  color: var(--station-color);
  text-shadow: 0px 4px 16px rgba(0, 0, 0, 0.25);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 8px;
}

#mobile-post .subtitle {
  margin-bottom: 16px;
  text-shadow: 0px 4px 16px rgba(0, 0, 0, 0.25);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

#mobile-post .share-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

#mobile-post .share-buttons a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#mobile-post .whatsapp-share {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  padding: 10px;
  border-radius: 8px;
  background: rgba(166, 166, 166, 0.1);
  transition: all 0.2s ease-in-out;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.084);
}

#mobile-post .whatsapp-share:hover {
  background: #0dca54;
}

#mobile-post .whatsapp-share:hover i {
  color: white;
}

#mobile-post .whatsapp-share i {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 27px;
  color: #0dca54;
}

#mobile-post .facebook-share {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  padding: 10px;
  border-radius: 8px;
  background: rgba(166, 166, 166, 0.1);
  transition: all 0.2s ease-in-out;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.084);
}

#mobile-post .facebook-share:hover {
  background: #0866ff;
}

#mobile-post .facebook-share:hover i {
  color: white;
}

#mobile-post .facebook-share i {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 27px;
  color: #0866ff;
}

#mobile-post .share {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  padding: 10px;
  border-radius: 8px;
  background: rgba(166, 166, 166, 0.1);
  transition: all 0.2s ease-in-out;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.084);
}

#mobile-post .share:hover {
  background: #4f5257;
}

#mobile-post .share:hover i {
  color: white;
}

#mobile-post .share i {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: #4f5257;
}

#mobile-post .content {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 16px;
}

#post-container {
  background-color: #fbf5f4 !important;
}

#post-container hr {
  width: 100%;
  clear: both;
}

#post-container #post {
  display: flex;
  flex-direction: row;
  gap: 3rem;
}

@media (max-width: 768px) {
  #post-container #post {
    flex-direction: column;
    gap: 0;
  }
}

#post-container #post .post-info {
  display: flex;
  flex-direction: column;
  width: 75%;
  gap: 0.7rem;
}

@media (max-width: 768px) {
  #post-container #post .post-info {
    width: 100%;
  }
}

#post-container #post .post-info .featured-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 40px;
}

#post-container #post .post-info .image-credit {
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

#post-container #post .post-info .image-credit small {
  color: gray;
  font-style: italic;
  font-size: 1.3rem;
}

#post-container #post .post-info .title {
  font-weight: 1000;
}

#post-container #post .post-info .subtitle {
  margin-top: 0;
  color: gray;
}

#post-container #post .post-info .content {
  font-size: 1.6rem;
  margin-bottom: 3rem;
}

#post-container #post .suggested-posts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 25%;
}

@media (max-width: 768px) {
  #post-container #post .suggested-posts {
    width: 100%;
    margin-bottom: 3rem;
  }
}

#post-container #post .suggested-posts h3 {
  font-weight: 1000;
  margin-top: 0;
}

#post-container #post .suggested-posts .suggested-posts-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

#post-container #post .suggested-posts .suggested-post {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#post-container #post .suggested-posts .suggested-post .category {
  color: var(--station-color);
  font-weight: 1000;
  font-size: 1.5rem;
}

#post-container #post .suggested-posts .suggested-post .content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1.3rem;
}

#post-container #post .suggested-posts .suggested-post .content a {
  color: black;
}

#post-container #post .suggested-posts .suggested-post .content img {
  width: 78px;
  height: 55px;
  object-fit: cover;
  border-radius: 10px;
}

#post-container #post .suggested-posts .suggested-post .content .index {
  color: gray;
  font-size: 2rem;
  font-weight: 1000;
}

#promotions {
  background-color: #f7f7f7;
  padding-bottom: 3rem;
}

#promotions .no-promos {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: gray;
  white-space: nowrap;
}

#promotions.min-height {
  min-height: 68vh;
}

#promotions .title-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

#promotions .title-items a {
  text-decoration: none;
}

#promotions .title-items .winners-label {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--station-color);
  margin-top: 0.8rem;
}

@media (max-width: 767px) {
  #promotions .title-items .winners-label {
    font-size: 18px;
  }
}

#promotions .title-items .winners-label i {
  margin-top: 0.4rem;
  margin-left: -0.4rem;
  font-size: 33px;
}

#promotions .promotion-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(295px, 1fr));
  column-gap: 3rem;
  row-gap: 3rem;
}

#promotions .card h4 {
  font-size: 20px;
  margin-top: 2rem;
  font-weight: 600;
  color: #4d4d4d !important;
}

#promotions .card .btn {
  border-radius: 30px;
  font-size: 1.5rem;
  padding: 1.4rem 2.3rem;
}

#promotions .card .card-body {
  padding: 1rem 3rem;
  display: flex;
  flex-direction: column;
}

#promotions .card .card-body .title {
  height: 13rem;
}

#promotions .card .card-body .card-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#promotions .card .card-body .end-date {
  width: 9rem;
  font-size: 1.3rem;
  color: #808080 !important;
}

#mobile-promotions-container {
  min-height: 100vh;
  background-color: #fbf5f4;
}

#mobile-promotions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.7rem;
}

#mobile-promotions .no-promos {
  margin-top: 2rem;
  color: gray;
}

#mobile-promotions .promotion {
  display: flex;
  flex-direction: column;
  width: 100%;
}

#mobile-promotions .promotion .promotion-image {
  border-radius: 40px;
  width: 100%;
  height: 250px;
  object-fit: cover;
  box-shadow: 0 5px 10px -2px rgba(47, 47, 47, 0.237);
}

#mobile-promotions .promotion .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 1.8rem;
  padding-left: 2.3rem;
  padding-right: 2.3rem;
  gap: 5px;
}

#mobile-promotions .promotion .info .promotion-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: black;
}

#mobile-promotions .promotion .info .valid-until {
  font-size: 1.4rem;
  color: black;
}

#mobile-promotions .last-winners-button {
  border: solid 1.5px var(--station-color);
  padding: 0.9rem 3rem;
  font-size: 1.7rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  border-radius: 3rem;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
  transition: all 0.2s ease-in-out;
}

#mobile-promotions .last-winners-button span {
  color: black;
}

#mobile-promotions .last-winners-button:hover {
  background-color: var(--station-color);
  color: white;
}

#mobile-promotions .last-winners-button:hover i {
  color: white;
}

#mobile-promotions .last-winners-button:hover span {
  color: white;
}

#mobile-promotions .last-winners-button i {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  color: var(--station-color);
}

#mobile-promotions #promotion .promotion-image {
  height: 300px;
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 5px 10px -2px rgba(47, 47, 47, 0.237);
}

#mobile-promotions #promotion .promotion-name {
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  margin-top: 32px;
}

#mobile-promotions #promotion .valid-until {
  font-size: 14px;
  color: var(--station-color);
  margin-top: 15px;
}

#mobile-promotions #promotion .promotion-description {
  font-size: 14px;
  line-height: 20px;
  color: black;
  margin-top: 15px;
}

#mobile-promotions #promotion .participate-button {
  border: solid 2px var(--station-color);
  background-color: none;
  padding: 0.9rem 3rem;
  font-size: 1.7rem;
  font-weight: 600;
  margin-top: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  border-radius: 3rem;
  transition: all 0.2s ease-in-out;
  background-color: transparent !important;
}

#mobile-promotions #promotion .participate-button:hover {
  background-color: var(--station-color) !important;
  color: white;
}

#mobile-promotions #promotion .participate-button a {
  color: black;
  text-decoration: none;
  text-align: center;
  width: 100%;
}

#mobile-promotions #promotion .participate-button a:hover {
  color: white;
}

#mobile-promotions #promotion .fill-the-fields {
  font-size: 20px;
  line-height: 28px;
  color: black;
  font-weight: 600;
  text-align: center;
  margin-top: 32px;
  margin-bottom: 20px;
}

#mobile-promotions #promotion .form-inputs input, #mobile-promotions #promotion .form-inputs select {
  padding: 4px 2px 4px 16px;
  align-items: center;
  border-radius: 100px;
  border: 1px solid var(--station-color);
  background: white;
  border-radius: 100px;
  height: 44px;
}

#mobile-promotions #promotion .form-inputs input[readonly] {
  background-color: #f5f5f5;
}

#mobile-promotions #promotion .form-inputs select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--station-color) 50%), linear-gradient(135deg, var(--station-color) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% - 2px), calc(100% - 15px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

#mobile-promotions #promotion .form-inputs label {
  color: black;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  border-radius: 15px;
  padding: 2px 6px;
  left: 17px;
  top: 12px;
  background: white;
}

#mobile-promotions #promotion .inscription-button {
  border: none !important;
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
  line-height: 20px;
  align-items: center;
  border-radius: 100px;
  border: 1px solid var(--station-color);
  background: var(--station-color);
  height: 44px;
  width: 100%;
  color: white;
}

#mobile-promotions #promotion .inscription-button:hover {
  background: linear-gradient(107deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 61.94%), var(--station-color);
}

span.has-error {
  padding-left: 18px;
  color: red !important;
}

input[aria-invalid="true"] {
  border-color: red !important;
}

#entry-messages .background {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000 !important;
}

#entry-messages .message-container {
  background-color: white;
  border-radius: 35px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding: 3rem;
  width: 90%;
  min-height: 28rem;
  margin-top: -3rem;
}

#entry-messages .message-container svg {
  width: 62px;
  height: 62px;
  fill: var(--station-color);
}

#entry-messages .message-container svg.success {
  fill: green;
}

#entry-messages .message-container svg.failure {
  fill: red;
}

#entry-messages .message-container .message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

#entry-messages .message-container .message .title {
  font-size: 2rem;
  font-weight: 600;
  color: black;
}

#entry-messages .message-container .message .description {
  font-size: 1.4rem;
  color: black;
  text-align: center;
}

#entry-messages .message-container .share-with-your-friends {
  font-size: 1.6rem;
  text-transform: uppercase !important;
  text-align: center;
}

#entry-messages .message-container .chances {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: black;
}

#entry-messages .message-container .chances .count {
  margin-top: -1.5rem;
  font-weight: 600;
  font-size: 7rem;
}

#entry-messages .message-container .chances .title {
  font-size: 1.6rem;
  text-transform: uppercase !important;
}

#entry-messages .message-container .invites-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem;
  flex-direction: column;
}

#entry-messages .message-container .invites-container .invites {
  display: flex;
  justify-content: center;
}

#entry-messages .message-container .invites-container .invites a, #entry-messages .message-container .invites-container .invites span {
  padding: 0.3rem;
  width: 55px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

#entry-messages .message-container .invites-container .invites a svg, #entry-messages .message-container .invites-container .invites span svg {
  fill: black !important;
  width: 26px;
  height: 26px;
}

#entry-messages .message-container .copied-message-container {
  display: flex;
  justify-content: center;
  align-items: center;
  color: green;
  margin-top: 1rem;
}

#entry-messages .message-container a {
  text-decoration: none;
  text-align: center;
  background-color: var(--station-color);
  border: none;
  border-radius: 30px;
  padding: 1rem 2rem;
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
}

#home-promotions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--station-color);
  height: 80rem;
  max-width: 100%;
  padding-right: 50rem;
  padding-left: 50rem;
}

#home-promotions.with-bottom-space {
  height: 90rem;
  padding-bottom: 10rem;
}

#home-promotions .title {
  color: white;
  font-size: 3rem;
  font-weight: 600;
  width: 80rem;
  text-align: center;
  margin-bottom: 5rem;
}

#home-promotions .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

#home-promotions .carousel {
  width: 120rem;
}

#home-promotions .prev-button, #home-promotions .next-button {
  z-index: 1000;
  background-color: var(--station-secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.6rem;
  border-radius: 100%;
  margin-top: -15.7rem;
  cursor: pointer;
  border: 2px solid white;
}

#home-promotions .prev-button svg, #home-promotions .next-button svg {
  width: 2rem;
  height: 2rem;
}

#home-promotions .prev-button svg path, #home-promotions .next-button svg path {
  fill: white;
}

#home-promotions .prev-button:hover, #home-promotions .next-button:hover {
  background-color: white;
  border: 2px solid var(--station-secondary-color);
  transition: background 0.5s, color 0.5s;
}

#home-promotions .prev-button:hover svg path, #home-promotions .next-button:hover svg path {
  fill: var(--station-secondary-color);
}

#home-promotions .prev-button {
  margin-right: -2.7rem;
}

#home-promotions .prev-button svg {
  margin-left: -0.2rem;
}

#home-promotions .next-button {
  margin-left: -2.7rem;
}

#home-promotions .next-button svg {
  margin-right: -0.2rem;
}

#home-promotions swiper-container::part(bullet-active) {
  background-color: var(--station-secondary-color);
}

#home-promotions swiper-slide {
  height: 41rem;
}

#home-promotions swiper-slide.centered-carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#home-promotions swiper-slide.centered-carousel.left-slide {
  margin-left: 5rem;
}

#home-promotions swiper-slide.centered-carousel.right-slide {
  margin-left: -10rem;
}

#home-promotions swiper-slide.centered-carousel.centered-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 0rem;
}

#home-promotions swiper-slide.centered-carousel.centered-slide .promo {
  width: 35%;
}

#home-promotions swiper-slide.centered-carousel .promo {
  width: 70%;
}

#home-promotions swiper-slide .promo {
  width: 100%;
}

#home-promotions swiper-slide img {
  width: 100%;
  height: 25rem;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 5px 10px -2px rgba(47, 47, 47, 0.237);
}

#home-promotions swiper-slide .content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  padding-right: 2.7rem;
  padding-left: 2.7rem;
  margin-top: 2rem;
  height: 8rem;
}

#home-promotions swiper-slide .content .name-and-date {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

#home-promotions swiper-slide .content .name-and-date .name {
  font-size: 1.75rem;
  color: white;
  font-weight: 600;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#home-promotions swiper-slide .content .name-and-date .valid-until {
  font-size: 1.4rem;
  color: white;
}

#home-promotions swiper-slide .content .participate-button {
  border: none;
  background-color: var(--station-secondary-color);
  color: white;
  padding: 1rem 3rem;
  font-size: 1.4rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
}

#home-promotions swiper-slide .content .participate-button:hover {
  background-color: white;
  color: black;
  transition: background 0.5s, color 0.5s;
}

#home-promotions .winners-button {
  margin-top: 2rem;
}

#home-promotions .winners-button a {
  display: flex;
  padding: 19px 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 100px;
  background: linear-gradient(107deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 61.94%), white;
  background-blend-mode: overlay, normal;
  color: black;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
}

#home-promotions .winners-button a:hover {
  color: white;
  background: var(--station-secondary-color);
  background-blend-mode: overlay, normal;
  transition: background 0.5s, color 0.5s;
}

#trending-songs {
  background-color: #fbf5f4;
  padding-top: 3rem;
  padding-bottom: 10rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 5rem;
}

#trending-songs .title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  color: black;
  margin-bottom: 2rem;
}

#trending-songs .left {
  width: 74.3rem;
}

#trending-songs .left .carousel-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

#trending-songs .left .carousel-container .carousel-wrapper {
  max-width: 68rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

#trending-songs .left .carousel-container .carousel {
  width: 65rem;
}

#trending-songs .left .carousel-container .prev-button, #trending-songs .left .carousel-container .next-button {
  background-color: var(--station-color);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  border-radius: 100%;
  margin-top: -15.7rem;
  cursor: pointer;
  border: 2px solid white;
}

#trending-songs .left .carousel-container .prev-button svg, #trending-songs .left .carousel-container .next-button svg {
  width: 2rem;
  height: 2rem;
}

#trending-songs .left .carousel-container .prev-button svg path, #trending-songs .left .carousel-container .next-button svg path {
  fill: white;
}

#trending-songs .left .carousel-container .prev-button:hover, #trending-songs .left .carousel-container .next-button:hover {
  background-color: white;
  border: 2px solid var(--station-color);
  transition: background 0.5s, color 0.5s;
}

#trending-songs .left .carousel-container .prev-button:hover svg path, #trending-songs .left .carousel-container .next-button:hover svg path {
  fill: var(--station-color);
}

#trending-songs .left .carousel-container .prev-button svg {
  margin-left: -0.2rem;
}

#trending-songs .left .carousel-container .next-button svg {
  margin-right: -0.2rem;
}

#trending-songs .left .carousel-container swiper-slide {
  height: 32rem;
}

#trending-songs .left .carousel-container .song {
  display: flex;
  flex-direction: column;
}

#trending-songs .left .carousel-container .song .song-index {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  right: 0;
  bottom: 50%;
  z-index: 1;
  width: 100%;
}

#trending-songs .left .carousel-container .song .song-index .index {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--station-color);
  border-top-left-radius: 1.8rem;
  border-bottom-right-radius: 1.8rem;
  color: white;
  font-size: 2rem;
  font-weight: 600;
  width: 3.5rem;
  height: 3.5rem;
}

#trending-songs .left .carousel-container .song .song-info {
  padding-left: 1rem;
  padding-right: 1rem;
}

#trending-songs .left .carousel-container .song .song-img {
  object-fit: cover;
  width: 100%;
  height: 160px;
  border-radius: 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: -1 !important;
}

#trending-songs .left .carousel-container .song .artist-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--station-color);
  margin-bottom: 0.5rem;
}

#trending-songs .left .carousel-container .song .song-name a {
  color: black;
}

#trending-songs .left .carousel-container .song .song-btn {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}

#trending-songs .left .carousel-container .song .song-btn button {
  border: solid 1.5px var(--station-color);
  padding: 0.5rem 1.5rem;
  width: 16rem;
  border-radius: 2rem;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
  transition: all 0.2s ease-in-out;
}

#trending-songs .left .carousel-container .song .song-btn button:hover {
  background-color: var(--station-color);
  color: white;
}

#trending-songs .left .carousel-container .song .song-btn button:hover i {
  color: white;
}

#trending-songs .left .carousel-container .song .song-btn button .btn-text {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  align-items: center;
}

#trending-songs .left .carousel-container .song .song-btn button i {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: black;
}

#trending-songs .left .carousel-container swiper-container::part(bullet-active) {
  background-color: var(--station-color);
}

#trending-songs .right {
  width: 33rem;
}

.played-songs-container .played-songs {
  display: flex;
  gap: 1.2rem;
  flex-direction: column;
}

.played-songs-container .played-song {
  display: flex;
  flex-direction: row;
  width: 315px;
}

.played-songs-container .played-song .song-img img {
  object-fit: cover;
  width: 55px;
  height: 55px;
  border-radius: 100%;
  margin-right: 1rem;
}

.played-songs-container .played-song .song-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.played-songs-container .played-song .song-info .artist-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--station-color);
  margin-bottom: 0.5rem;
}

.played-songs-container .played-song .song-info .song-name {
  font-size: 1.3rem;
  color: black;
  font-weight: 600;
}

.played-songs-container .played-song .played-at {
  display: flex;
  margin-left: auto;
  align-items: center;
  color: grey;
  font-size: 1.2rem;
  gap: 0.3rem;
}

.played-songs-container .played-song .played-at svg {
  margin-top: -0.1rem;
  stroke: grey;
}

#desktop-played-songs {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 10rem;
}

#desktop-played-songs .title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  color: black;
  margin-bottom: 2rem;
}

#desktop-played-songs .played-songs {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

#mobile-trending-songs {
  background-color: #fbf5f4;
  padding-bottom: 40px;
  padding-left: 16px;
}

#mobile-trending-songs .title {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 8px;
}

#mobile-trending-songs swiper-container {
  z-index: 0;
}

#mobile-trending-songs swiper-slide {
  width: 26rem !important;
  padding-right: 7px;
}

#mobile-trending-songs swiper-slide .song {
  width: 100%;
}

#mobile-trending-songs swiper-slide .song .song-index {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  right: 7px;
  bottom: 39.55%;
  z-index: 1;
  width: 100%;
}

#mobile-trending-songs swiper-slide .song .song-index .index {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--station-color);
  border-top-left-radius: 1rem;
  border-bottom-right-radius: 24px;
  color: white;
  font-size: 2rem;
  font-weight: 600;
  width: 3.5rem;
  height: 3.5rem;
}

#mobile-trending-songs swiper-slide .song .song-img {
  border-radius: 24px;
  box-shadow: 0px 4px 16px 0px rgba(0, 12, 58, 0.1);
  height: 160px;
  width: 100%;
  object-fit: cover;
  z-index: -1 !important;
}

#mobile-trending-songs swiper-slide .song .song-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#mobile-trending-songs swiper-slide .song .song-info .artist-name {
  color: var(--station-color);
  margin-top: 12px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

#mobile-trending-songs swiper-slide .song .song-info .song-name {
  margin-top: 4px;
  margin-bottom: 16px;
}

#mobile-trending-songs swiper-slide .song .song-info .song-name a {
  color: #101113;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}

#mobile-trending-songs swiper-slide .song .song-info .song-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

#mobile-trending-songs swiper-slide .song .song-info .song-btn button {
  border: solid 1.5px var(--station-color);
  padding: 0.5rem 1.5rem;
  width: 16rem;
  border-radius: 2rem;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
  transition: all 0.2s ease-in-out;
}

#mobile-trending-songs swiper-slide .song .song-info .song-btn button:hover {
  background-color: var(--station-color);
  color: white;
}

#mobile-trending-songs swiper-slide .song .song-info .song-btn button:hover i {
  color: white;
}

#mobile-trending-songs swiper-slide .song .song-info .song-btn button .btn-text {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  align-items: center;
}

#mobile-trending-songs swiper-slide .song .song-info .song-btn button i {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: var(--station-color);
}

#podcasts {
  padding-top: 12.3rem;
  padding-bottom: 17rem;
}

#podcasts h2 {
  color: var(--station-color);
}

.podcast-card {
  margin-top: 2rem;
}

.podcast-card img {
  width: 100%;
  height: 227px;
  object-fit: cover;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.14);
}

@media (min-width: 992px) and (max-width: 1199px) {
  .podcast-card img {
    height: 280px;
  }
}

.podcast-card h4 {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 2rem;
}

#more-content {
  min-height: 100vh;
  background-color: #fbf5f4;
}

#more-content .title {
  color: var(--station-color);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  padding-top: 28px;
  padding-bottom: 28px;
  padding-left: 24px;
  padding-right: 24px;
}

#more-content .social-networks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-bottom: 1px solid #D1D1D1;
  padding-bottom: 20px;
}

#more-content .social-networks a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: black;
}

#more-content .contact-item-container {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #D1D1D1;
  padding-left: 24px;
  padding-right: 24px;
}

#more-content .contact-item-container .item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-gap: 9px;
  padding: 4px 12px 4px 8px;
  align-items: center;
  border-radius: 100px;
  background: white;
  line-height: 15px;
}

#more-content .contact-item-container .item .icon {
  grid-column: 1;
  display: flex;
  width: 24px;
  height: 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
}

#more-content .contact-item-container .item .icon svg.filled path {
  fill: var(--station-color);
}

#more-content .contact-item-container .item .info {
  grid-column: 2;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  font-style: normal;
}

#more-content .contact-item-container .item .info.large {
  font-size: 16px;
}

#more-content .contact-item-container .item .info a {
  color: black;
  text-decoration: none;
}

#more-content .map {
  width: 100%;
  height: 200px;
  border: 0;
}

#more-content .developed-by {
  text-align: center;
  text-shadow: 0px 4px 16px rgba(0, 0, 0, 0.25);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 24px;
  filter: grayscale(100%);
}

#more-content .developed-by .cadena-logo {
  width: 156px;
  height: 36px;
}

#programming {
  min-height: 68vh;
  padding-bottom: 3rem;
}

#programming .week_days {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
}

@media (max-width: 1199px) {
  #programming .week_days {
    gap: 1rem;
    justify-content: center;
  }
}

#programming .week_days .day-btn {
  background-color: transparent;
  font-size: 1.8rem;
  border: solid 1px var(--station-color);
  padding: 0.5rem 3.5rem;
  border-radius: 50px;
  text-transform: uppercase;
  text-decoration: none;
}

@media (max-width: 1199px) {
  #programming .week_days .day-btn {
    padding: 0.5rem 2rem;
  }
}

#programming .week_days .day-btn:hover {
  background-color: var(--station-color);
  color: white;
  transition: 0.3s;
}

#programming .week_days .selected {
  background-color: var(--station-color);
  color: white;
}

#programming .carousel-wrapper {
  max-width: 97%;
  margin: 0 auto;
}

@media (max-width: 610px) {
  #programming .carousel-wrapper {
    max-width: 100%;
  }
}

#programming .programming-container {
  animation: fade 0.8s ease-in-out;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#programming .programming-container swiper-container {
  height: 50.8rem;
}

@media (max-width: 749px) {
  #programming .programming-container swiper-container {
    height: 52rem;
  }
}

#programming .programming-container swiper-container::part(bullet-active) {
  background-color: var(--station-color);
}

#programming .programming-container swiper-slide {
  width: 32.6%;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (max-width: 610px) {
  #programming .programming-container swiper-slide {
    width: 100%;
  }
}

@media (min-width: 610px) and (max-width: 1200px) {
  #programming .programming-container swiper-slide {
    width: 49.5%;
  }
}

#programming .programming-container swiper-slide .noar {
  color: var(--station-color) !important;
}

#programming .programming-container swiper-slide .noar, #programming .programming-container swiper-slide .time {
  text-align: center;
}

#programming .programming-container swiper-slide .noar h3, #programming .programming-container swiper-slide .time h3 {
  font-weight: 600;
  margin-top: 0.7rem;
}

#programming .programming-container swiper-slide .card h4, #programming .programming-container swiper-slide .card p {
  color: #4d4d4d;
  padding-left: 3rem;
  padding-right: 3rem;
  margin: 0;
}

#programming .programming-container swiper-slide .card h4 {
  margin-bottom: 1.5rem;
  margin-top: 2.8rem;
  font-size: 20px;
  font-weight: 600;
}

@media (max-width: 749px) {
  #programming .programming-container swiper-slide .card {
    height: 43.5rem;
  }
}

#programming .programming-container swiper-slide.current .card {
  border: solid 2px var(--station-color) !important;
}

#programming .programming-container .alert {
  text-align: center;
  width: 35rem;
  font-size: 1.6rem;
  margin-top: 3rem;
  margin: 0 auto;
  margin-bottom: 2.5rem;
}

#mobile-schedule {
  min-height: 100vh;
  background-color: #fbf5f4;
}

#mobile-schedule .schedule-title {
  margin-bottom: 2rem;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

#mobile-schedule .live-schedule {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  gap: 12px;
  border-radius: 12px;
  background: var(--station-color);
  height: 180px;
  margin-bottom: 2rem;
  stroke: white;
}

#mobile-schedule .live-schedule .top svg {
  margin-top: -3px;
}

#mobile-schedule .live-schedule .program {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
}

#mobile-schedule .live-schedule .program span {
  font-size: 16px;
  color: white;
  font-weight: 600;
}

#mobile-schedule .live-schedule .middle {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

#mobile-schedule .live-schedule .middle .program-image {
  display: flex;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 12px;
  background: black;
  width: 97px;
  height: 97px;
}

#mobile-schedule .live-schedule .middle .program-image img {
  width: 85px;
  height: 85px;
  border-radius: 4px;
  object-fit: cover;
  border: 2px solid rgba(0, 0, 0, 0.5);
  background: linear-gradient(153deg, rgba(255, 255, 255, 0) 29.95%, rgba(255, 255, 255, 0.5) 47.76%, rgba(255, 255, 255, 0) 48.18%), lightgray 50%/cover no-repeat;
  background-blend-mode: overlay, normal;
  box-shadow: 0px 4px 80px 0px rgba(255, 255, 255, 0.65), 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

#mobile-schedule .live-schedule .middle .program-info {
  color: white;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#mobile-schedule .live-schedule .middle .program-info .song {
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
}

#mobile-schedule .live-schedule .middle .program-info .time {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

#mobile-schedule swiper-slide {
  width: 70px !important;
}

#mobile-schedule .week-days {
  padding-left: 15px;
  margin-bottom: 2rem;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
}

#mobile-schedule .week-days .day-btn {
  border: 1px solid var(--station-color);
  display: flex;
  padding-top: 8px;
  padding-bottom: 8px;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  margin-right: 3px;
}

#mobile-schedule .week-days .day-btn.selected {
  background: var(--station-color);
  color: white;
}

#mobile-schedule .schedule {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

#mobile-schedule .schedule .schedule-card {
  display: flex;
  width: 100%;
  height: 128px;
  box-shadow: 0px 4px 20px 0px rgba(234, 120, 59, 0.2);
  border-radius: 8px;
}

#mobile-schedule .schedule .schedule-card.current {
  outline: 4px solid var(--station-secondary-color);
}

#mobile-schedule .schedule .schedule-card .left {
  width: 50%;
  position: relative;
  height: 128px;
  overflow: hidden;
}

#mobile-schedule .schedule .schedule-card .left img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

#mobile-schedule .schedule .schedule-card .left .time {
  display: flex;
  padding: 4px 6px;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: var(--station-secondary-color);
  box-shadow: 0px 0px 16px 0px rgba(234, 120, 59, 0.6);
  text-align: center;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  color: var(--station-secondary-text-color);
  width: auto;
  min-width: 52px;
  position: absolute;
  top: 10px;
  left: 10px;
  transform: none;
}

#mobile-schedule .schedule .schedule-card .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 16px;
  width: 50%;
  position: relative;
}

#mobile-schedule .schedule .schedule-card .right .presented-by {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  align-self: stretch;
  overflow: hidden;
  color: rgba(2, 2, 2, 0.5);
  text-overflow: ellipsis;
  font-family: Roboto;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

#mobile-schedule .schedule .schedule-card .right .program-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  flex: 1 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 0.6rem;
}

#mobile-schedule .schedule .schedule-card .right .speaker-name {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

#mobile-schedule .schedule .schedule-card .right .live-text {
  display: flex;
  height: 16px;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  gap: 4px;
  width: 70px;
  padding: 9px 4px 9px 8px;
  border-radius: 1000px;
  background: var(--station-secondary-color);
  color: var(--station-secondary-text-color);
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.24px;
  position: absolute;
  top: 5px;
  right: 4px;
}

#mobile-schedule .schedule .schedule-card .right .live-text svg {
  width: 14px;
  height: 14px;
}

#mobile-schedule .schedule .schedule-card .right .live-text svg path {
  stroke: var(--station-secondary-text-color);
}

#fan-club-link {
  background-color: #fbf5f4;
  padding-bottom: 40px;
}

#fan-club-link a {
  border: solid 1.5px var(--station-color);
  padding: 0.9rem 3rem;
  font-size: 1.7rem;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  border-radius: 3rem;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
  transition: all 0.2s ease-in-out;
  width: 100%;
}

#fan-club-link a span {
  color: black;
}

#fan-club-link a:hover {
  background-color: var(--station-color);
  color: white;
}

#fan-club-link a:hover i {
  color: white;
}

#fan-club-link a:hover span {
  color: white;
}

#fan-club-link a i {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.1rem;
  color: var(--station-color);
}

#played-songs {
  background-color: #fbf5f4;
  padding-bottom: 40px;
  padding-left: 16px;
  padding-right: 16px;
}

#played-songs .title {
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 8px;
}

#played-songs .song-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#played-songs .song-list .song {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 12px;
  height: 110px;
}

#played-songs .song-list .song .left {
  width: 35%;
}

#played-songs .song-list .song .left img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
}

#played-songs .song-list .song .right {
  width: 65%;
  display: flex;
  align-items: center;
}

#played-songs .song-list .song .right .song-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#played-songs .song-list .song .right .song-info .artist-name {
  color: var(--station-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  -webkit-line-clamp: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

#played-songs .song-list .song .right .song-info .song-name {
  overflow: hidden;
  text-overflow: ellipsis;
  color: black;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
}

#played-songs .song-list .song .right .song-info .played-at {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #02020280;
}

#played-songs .song-list .song .right .song-info .played-at svg {
  margin-top: -1px;
}

#played-songs .song-list .song .right .song-info .played-at svg path {
  stroke: #02020280;
}

#stations-changer {
  background-color: var(--station-color);
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9;
}

#stations-changer.fixed {
  position: fixed;
}

#stations-changer .station-name {
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

#stations-changer .station-name svg {
  width: 13px;
  height: 13px;
}

#stations-changer .station-name svg path {
  stroke: white;
}

#stations-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 5;
  background-color: #fbf5f4;
  border-top: 1px solid lightgray;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  height: calc(100% - 64px);
  overflow-y: auto;
}

#stations-list a {
  width: 100%;
}

#stations-list.slide-up {
  animation: slide-up 0.6s ease-in-out;
}

@keyframes slide-up {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

#stations-list.slide-down {
  animation: slide-down 0.6s ease-in-out forwards;
}

@keyframes slide-down {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(100%);
    display: none;
  }
}

#stations-list .station {
  height: 7rem;
  width: 100%;
  border-bottom: 1px solid lightgray;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 12px;
  padding-right: 24px;
}

#stations-list .station .logo-and-name {
  display: flex;
  align-items: center;
  gap: 8px;
}

#stations-list .station .logo-and-name .station-name {
  color: black;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}

#stations-list .station .logo-and-name .station-logo {
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  margin: 8px;
  border: 3px solid var(--station-secondary-color);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
}

#statistics {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: var(--station-secondary-color);
  padding: 100px 0;
}

#statistics.with-top-space {
  padding-top: 150px;
  margin-top: -28rem;
}

#statistics .title {
  margin-top: -2px;
  color: white;
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 44px;
}

#statistics .info {
  display: flex;
  flex-direction: row;
  gap: 128px;
}

#statistics .info .stat-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#statistics .info .stat-item .image {
  width: 260px;
  height: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px;
  border-radius: 1000px;
  border: 4px solid white;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0px 2px 40px 0px rgba(255, 255, 255, 0.15), 0px 2px 8px 0px rgba(141, 46, 0, 0.25);
}

#statistics .info .stat-item .image .gender {
  margin-left: -8px !important;
}

#statistics .info .stat-item .data {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

#statistics .info .stat-item .data .number {
  color: white;
  text-align: center;
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: 60px;
}

#statistics .info .stat-item .data .text {
  color: white;
  text-align: center;
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

#statistics .links {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

#statistics .links .get-in-contact button {
  display: flex;
  padding: 19px 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 100px;
  background: linear-gradient(107deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 61.94%), white;
  background-blend-mode: overlay, normal;
  color: black;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
}

#statistics .links .get-in-contact button:hover {
  background: var(--station-color);
  background-blend-mode: overlay, normal;
  color: white;
  transition: background 0.5s, color 0.5s;
}

#statistics .links .download-link a {
  display: flex;
  padding: 8px 8px 8px 32px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 100px;
  border: 2px solid white;
  color: white;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
}

#statistics .links .download-link a:hover {
  background: var(--station-color);
  transition: background 0.5s, color 0.5s;
}

#background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

#background-overlay.appear {
  animation: appear 0.5s ease forwards;
}

@keyframes appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#background-overlay.disappear {
  animation: disappear 0.5s ease forwards;
}

@keyframes disappear {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    display: none;
  }
}

#contact-form {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 2;
}

#contact-form.animate-from-top {
  animation: animate-from-top 0.5s ease forwards;
}

@keyframes animate-from-top {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#contact-form.animate-to-top {
  animation: animate-to-top 0.5s ease forwards;
}

@keyframes animate-to-top {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100%);
  }
}

#contact-form .form-container {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 145px;
  padding-bottom: 35px;
  width: 100%;
  background-color: #fbf5f4;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

#contact-form .form-container .success-message {
  color: limegreen;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 48px;
}

#contact-form .form-container .flex-container {
  display: flex;
  gap: 1rem;
}

#contact-form .form-container .flex-container .flex-item {
  flex: 1;
  position: relative;
}

#contact-form .form-container input, #contact-form .form-container textarea {
  padding: 4px 2px 4px 16px;
  align-items: center;
  border-radius: 100px;
  border: 1px solid var(--station-color);
  background: white;
}

#contact-form .form-container input {
  border-radius: 100px;
  height: 44px;
}

#contact-form .form-container textarea {
  resize: none;
  border-radius: 20px;
  padding: 16px;
}

#contact-form .form-container label {
  color: black;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: absolute;
  top: -7px;
  left: 17px;
  background: #fbf5f4;
  padding: 0 5px;
}

#contact-form .form-container .error {
  margin-left: 16px;
}

#contact-form .form-container .error.message-error {
  margin-top: 13px;
}

#contact-form .form-container .error span {
  color: red;
  margin-bottom: 10px;
  margin-top: -10px;
}

#contact-form .form-container .buttons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 50px;
  justify-content: center;
  align-items: center;
}

#contact-form .form-container .buttons .submit-button {
  display: flex;
  justify-content: center;
  align-items: center;
}

#contact-form .form-container .buttons .submit-button input[type="submit"] {
  padding: 12px 24px;
  gap: 8px;
  border-radius: 100px;
  background: linear-gradient(107deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 61.94%), var(--station-color);
  background-blend-mode: overlay, normal;
  color: white;
  border: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  width: 15rem;
  transition: background 0.3s ease;
}

#contact-form .form-container .buttons .submit-button input[type="submit"]:hover {
  background: linear-gradient(107deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 61.94%), var(--station-color);
}

#contact-form .form-container .buttons .close-button {
  gap: 8px;
  color: var(--station-color);
  border: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  cursor: pointer;
}

#desktop-posts {
  width: 100%;
  padding-top: 120px;
  padding-bottom: 120px;
  background: linear-gradient(180deg, var(--station-secondary-color-rgba) 0%, white 20%, white 40%, white 60%, white 80%, white 100%), white;
}

#desktop-posts.with-bottom-space {
  padding-bottom: 200px;
}

#desktop-posts .main-title {
  color: black;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 44px;
  padding-left: 24px;
  margin-bottom: 20px;
}

#desktop-posts .posts-list {
  display: flex;
  flex-direction: row;
  gap: 32px;
  justify-content: center;
  align-items: center;
}

#desktop-posts .posts-list .main-post {
  width: 65%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}

#desktop-posts .posts-list .main-post .left {
  width: 50%;
  height: 40rem;
}

#desktop-posts .posts-list .main-post .left .img {
  border-radius: 32px;
  box-shadow: 0px 4px 16px 0px rgba(0, 12, 58, 0.1);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#desktop-posts .posts-list .main-post .right {
  width: 50%;
}

#desktop-posts .posts-list .main-post .right a {
  color: black;
  text-decoration: none;
}

#desktop-posts .posts-list .main-post .right .info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  padding-top: 24px;
}

#desktop-posts .posts-list .main-post .right .info .published-at {
  color: #909097;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  font-style: normal;
}

#desktop-posts .posts-list .main-post .right .info .title, #desktop-posts .posts-list .main-post .right .info .subtitle, #desktop-posts .posts-list .main-post .right .info .description {
  color: #101113;
  font-style: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

#desktop-posts .posts-list .main-post .right .info .title {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  -webkit-line-clamp: 3;
}

#desktop-posts .posts-list .main-post .right .info .subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  -webkit-line-clamp: 3;
}

#desktop-posts .posts-list .main-post .right .info .description {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  -webkit-line-clamp: 5;
}

#desktop-posts .posts-list .main-post .right .links {
  margin-top: 32px;
  margin-left: -12px;
  padding-bottom: 24px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
}

#desktop-posts .posts-list .main-post .right .links .read-news-btn {
  padding: 10px 24px;
  border-radius: 100px;
  background: linear-gradient(107deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 61.94%), var(--station-color);
  color: white;
  background-blend-mode: overlay, normal;
  border: 2px solid var(--station-color);
}

#desktop-posts .posts-list .main-post .right .links .all-news-btn {
  padding: 10px 24px;
  border-radius: 100px;
  border: 2px solid var(--station-color);
}

#desktop-posts .posts-list .secondary-posts {
  width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}

#desktop-posts .posts-list .secondary-posts a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  color: black;
  text-decoration: none;
}

#desktop-posts .posts-list .secondary-posts .secondary-post {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

#desktop-posts .posts-list .secondary-posts .secondary-post .img {
  border-radius: 24px;
  box-shadow: 0px 4px 16px 0px rgba(0, 12, 58, 0.1);
  width: 160px;
  height: 160px;
  object-fit: cover;
}

#desktop-posts .posts-list .secondary-posts .secondary-post .info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  overflow: hidden;
}

#desktop-posts .posts-list .secondary-posts .secondary-post .info .published-at-and-title .published-at {
  color: #909097;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  font-style: normal;
}

#desktop-posts .posts-list .secondary-posts .secondary-post .info .published-at-and-title .title {
  color: #101113;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

#desktop-posts .posts-list .secondary-posts .secondary-post .info .subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

#desktop-posts .posts-list .secondary-posts .secondary-post .info .links {
  margin-top: 4px;
}

#desktop-posts .posts-list .secondary-posts .secondary-post .info .read-news-btn {
  color: var(--station-color);
  background-blend-mode: overlay, normal;
}

#desktop-posts #desktop-posts-by-category {
  display: flex;
  flex-direction: column;
  width: 100%;
}

#desktop-posts #desktop-posts-by-category .categories {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 70px;
  margin-bottom: 30px;
}

#desktop-posts #desktop-posts-by-category .categories .category-link {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--station-color);
  color: var(--station-color);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  font-style: normal;
  text-decoration: none;
  transition: all 0.3s;
}

#desktop-posts #desktop-posts-by-category .categories .category-link.active {
  background-color: var(--station-color);
  color: white;
}

#desktop-posts #desktop-posts-by-category .categories .category-link:hover {
  background-color: var(--station-color);
  color: white;
}

#desktop-posts #desktop-posts-by-category .posts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

#desktop-posts #desktop-posts-by-category .posts .post {
  width: 100%;
  height: 25rem;
  animation: fadeIn 0.5s;
}

#desktop-posts #desktop-posts-by-category .posts .post .img {
  width: 100%;
  object-fit: cover;
  height: 160px;
  border-radius: 24px;
  box-shadow: 0px 4px 16px 0px rgba(0, 12, 58, 0.1);
}

#desktop-posts #desktop-posts-by-category .posts .post .published-at {
  color: gray;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  margin-top: 24px;
}

#desktop-posts #desktop-posts-by-category .posts .post .title {
  color: #020202;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

#song-likes {
  padding-bottom: 4rem;
}

#song-likes .title {
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 1.5rem;
}

#song-likes .buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

#song-likes .like-btn, #song-likes .dislike-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

#song-likes .like-btn button, #song-likes .dislike-btn button {
  padding: 0.5rem 1.5rem;
  width: 100%;
  height: 40px;
  border-radius: 2rem;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
  transition: all 0.2s ease-in-out;
}

#song-likes .like-btn button.like, #song-likes .dislike-btn button.like {
  border: solid 1.5px green;
}

#song-likes .like-btn button.like i, #song-likes .dislike-btn button.like i {
  color: green;
}

#song-likes .like-btn button.dislike, #song-likes .dislike-btn button.dislike {
  border: solid 1.5px #d60000;
}

#song-likes .like-btn button.dislike i, #song-likes .dislike-btn button.dislike i {
  color: #d60000;
}

#song-likes .like-btn button.active, #song-likes .dislike-btn button.active {
  color: white;
}

#song-likes .like-btn button.active i, #song-likes .dislike-btn button.active i {
  color: white;
}

#song-likes .like-btn button.active.like, #song-likes .dislike-btn button.active.like {
  background-color: green;
}

#song-likes .like-btn button.active.dislike, #song-likes .dislike-btn button.active.dislike {
  background-color: #d60000;
}

#song-likes .like-btn button .btn-text, #song-likes .dislike-btn button .btn-text {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  align-items: center;
}

#song-likes .like-btn button i, #song-likes .dislike-btn button i {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
}

#terms-and-conditions, #privacy-policy {
  background-color: white;
  padding-bottom: 5rem;
  min-height: 100vh;
}

#terms-and-conditions .station-logo, #privacy-policy .station-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

#terms-and-conditions .station-logo img, #privacy-policy .station-logo img {
  width: 200px;
  height: 200px;
  margin-top: 5rem;
  margin-bottom: 5rem;
}

#song-requests {
  position: relative;
  padding-bottom: 5px;
}

#song-requests .title {
  font-size: 2.5rem;
  font-weight: 600;
  color: black;
  margin-bottom: 5rem;
}

#song-requests.desktop {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 40px;
  padding-top: 40px;
  gap: 1rem;
}

#song-requests.desktop form {
  display: flex;
  align-items: center;
  width: 70rem;
  position: relative;
}

#song-requests.desktop form .submit-button {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

#song-requests .song-input {
  width: 100%;
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-radius: 30px;
  border: none;
  background-color: white;
  z-index: 3 !important;
  position: relative;
}

#song-requests .song-input.desktop {
  border-radius: 200px;
  flex: 1;
}

#song-requests .song-input:focus {
  outline: none;
}

#song-requests .song-input-border {
  position: absolute;
  width: calc(100% + 5rem);
  height: 100%;
  border-radius: 200px;
  border: 50px solid var(--station-color);
  z-index: 2;
  left: -2.5rem;
}

#song-requests .submit-button {
  background-color: var(--station-color);
  border: solid 3px white;
  box-shadow: 0px 1px 1px 0px rgba(0, 12, 58, 0.05), 0px 4px 9px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  right: 0.5rem;
  padding: 1rem;
  margin-top: 2px;
  border-radius: 30px;
  z-index: 2;
}

#song-requests .submit-button svg {
  fill: white;
}

#song-requests .submit-button.desktop {
  margin-top: 0;
  right: 0;
  height: 43px;
  margin-left: 1rem;
  flex-shrink: 0;
}

#song-results {
  position: absolute;
  width: 100%;
  background-color: white;
  padding: 1rem;
  border-radius: 10px 10px 30px 30px;
  box-shadow: 0px 1px 1px 0px rgba(0, 12, 58, 0.05), 0px 4px 9px 0px rgba(0, 0, 0, 0.1);
  margin-top: -3.5rem;
  z-index: 2;
}

#song-results.desktop {
  width: 70rem;
  position: absolute;
  top: 18.5rem;
}

#song-results .song {
  padding: 1rem;
  display: flex;
  align-items: center;
  color: black;
}

#song-results .song:first-child {
  padding-top: 3.5rem;
}

#song-results .song .track-name {
  margin-top: -0.3rem;
  font-size: 1.4rem;
  font-weight: 600;
}

#song-results .song .pipe {
  margin-left: 1rem;
  margin-right: 1rem;
  margin-top: -0.3rem;
  font-weight: 600;
  color: lightgray;
  font-size: 1.4rem;
}

#song-results .song .artist-name {
  font-size: 1.2rem;
  color: var(--station-color);
}

#song-results .search-full-list {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

#song-results .search-full-list a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  border-radius: 30px;
  border: 2px solid var(--station-color);
  background-color: transparent;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: black;
}

#song-results .no-musics-found {
  text-align: center;
  font-size: 1.4rem;
  color: black;
  padding-top: 5rem;
}

#black-background {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

#black-background.appear {
  animation: appear 0.5s ease forwards;
}

#black-background.disappear {
  animation: disappear 0.5s ease forwards;
}

#itunes-song-requests {
  background-color: #fbf5f4 !important;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.3rem;
  position: relative;
}

#itunes-song-requests.desktop {
  min-height: auto;
  background-color: white !important;
  width: 100%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  left: 50%;
  height: 50rem;
  box-shadow: 0px 1px 1px 0px rgba(0, 12, 58, 0.05), 0px 4px 9px 0px rgba(0, 0, 0, 0.1);
  z-index: 4;
}

#itunes-song-requests.desktop.go-down-animation {
  animation: go-down-animation 0.5s ease forwards;
}

#itunes-song-requests.desktop.go-up-animation {
  animation: go-up-animation 0.5s ease forwards;
}

@keyframes go-down-animation {
  0% {
    transform: translateY(-100%) translateX(-50%);
    opacity: 0;
  }
  100% {
    transform: translateY(0) translateX(-50%);
    opacity: 1;
  }
}

@keyframes go-up-animation {
  0% {
    transform: translateY(0) translateX(-50%);
    opacity: 1;
  }
  100% {
    transform: translateY(-100%) translateX(-50%);
    opacity: 0;
  }
}

#itunes-song-requests.desktop-list {
  min-height: auto;
  background-color: white !important;
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 85rem;
  box-shadow: 0px 1px 1px 0px rgba(0, 12, 58, 0.05), 0px 4px 9px 0px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  z-index: 4;
}

#itunes-song-requests.desktop-list.go-down-animation {
  animation: go-down-animation 0.5s ease forwards;
}

#itunes-song-requests.desktop-list.go-up-animation {
  animation: go-up-animation 0.5s ease forwards;
}

#itunes-song-requests .song-input-container {
  position: relative;
  width: 100%;
  margin-bottom: 4rem;
}

#itunes-song-requests .song-input-container.desktop {
  padding-top: 12rem;
  width: 90rem;
  margin: 0 auto;
}

#itunes-song-requests .song-input-container .song-input {
  width: 100%;
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
  padding-left: 1.5rem;
  padding-right: 4rem;
  border-radius: 30px;
  border: var(--station-color) solid 1px;
  background-color: white;
}

#itunes-song-requests .song-input-container .song-input:focus {
  outline: none;
}

#itunes-song-requests .song-input-container .submit-button {
  background-color: var(--station-color);
  border: solid 3px white;
  box-shadow: 0px 1px 1px 0px rgba(0, 12, 58, 0.05), 0px 4px 9px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  right: 0.5rem;
  top: 50%;
  margin-top: -1px;
  transform: translateY(-50%);
  padding: 1rem;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#itunes-song-requests .song-input-container .submit-button.desktop {
  top: 86%;
}

#itunes-song-requests .song-input-container .submit-button svg {
  color: white;
}

#itunes-song-requests .songs {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

#itunes-song-requests .songs.desktop {
  width: 90rem;
  margin: 0 auto;
}

#itunes-song-requests .songs .song {
  padding: 0.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid lightgray;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

#itunes-song-requests .songs .song .track-name {
  margin-top: -0.3rem;
  font-size: 1.4rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: black;
}

#itunes-song-requests .songs .song .pipe {
  margin-left: 1rem;
  margin-right: 1rem;
  margin-top: -0.3rem;
  font-weight: 600;
  color: lightgray;
  font-size: 1.4rem;
}

#itunes-song-requests .songs .song .artist-name {
  font-size: 1.4rem;
  color: var(--station-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#itunes-song-requests .no-musics-found {
  text-align: center;
  font-size: 1.4rem;
  color: black;
  padding: 1rem;
}

#itunes-song-requests #itunes-song {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#itunes-song-requests #itunes-song.desktop {
  width: 70rem;
  gap: 2rem;
  padding-top: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  flex-direction: row;
}

#itunes-song-requests #itunes-song.desktop .image-container {
  width: 40%;
}

#itunes-song-requests #itunes-song .image-container {
  width: 100%;
  position: relative;
}

#itunes-song-requests #itunes-song .image-container img {
  width: 100%;
  height: 220px;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0px 1px 1px 0px rgba(0, 12, 58, 0.05), 0px 3px 6px 0px rgba(0, 0, 0, 0.1);
}

#itunes-song-requests #itunes-song .image-container .song-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#itunes-song-requests #itunes-song .image-container .song-btn button {
  border: solid 1.5px var(--station-color);
  padding: 0.5rem 2rem;
  border-radius: 2rem;
  background-color: var(--station-color);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
}

#itunes-song-requests #itunes-song .image-container .song-btn button .btn-content {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  align-items: center;
}

#itunes-song-requests #itunes-song .image-container .song-btn button i {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  color: white;
}

#itunes-song-requests #itunes-song .song-info {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

#itunes-song-requests #itunes-song .song-info.desktop {
  width: auto;
  padding: 0;
  justify-content: flex-start;
  align-items: flex-start;
}

#itunes-song-requests #itunes-song .artist-name {
  font-size: 1.7rem;
  color: var(--station-color);
  margin-top: 1.2rem;
}

#itunes-song-requests #itunes-song .track-name {
  font-size: 2.4rem;
  font-weight: 600;
  margin-top: 1.3rem;
}

#itunes-song-requests .song-request-form {
  display: flex;
  justify-content: center;
  align-items: center;
}

#itunes-song-requests .song-request-form.desktop {
  justify-content: flex-start;
}

#itunes-song-requests .song-request-form .submit-button {
  background-color: white;
  border: solid 1px var(--station-color);
  box-shadow: 0px 1px 1px 0px rgba(0, 12, 58, 0.05), 0px 4px 9px 0px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding-left: 1.5rem;
  padding-right: 0.4rem;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  align-items: center;
  font-size: 1.5rem;
}

#itunes-song-requests .song-request-form .submit-button.desktop {
  margin-top: 1.5rem;
}

#itunes-song-requests .song-request-form .submit-button .send-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--station-color);
  padding: 0.8rem;
  font-size: 1.5rem;
  border: 2px solid white;
  box-shadow: 0px 1px 1px 0px rgba(0, 12, 58, 0.05), 0px 4px 9px 0px rgba(0, 0, 0, 0.1);
}

#itunes-song-requests .song-request-form .submit-button .send-icon svg {
  width: 18px;
  height: 18px;
  color: white;
}

#messages .background {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000 !important;
}

#messages .message-container {
  background-color: white;
  border-radius: 35px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 3rem;
  width: 90%;
  height: 32rem;
  margin-top: -3rem;
}

#messages .message-container.desktop {
  max-width: 40rem;
}

#messages .message-container svg {
  width: 62px;
  height: 62px;
  fill: var(--station-color);
}

#messages .message-container svg.success {
  fill: green;
}

#messages .message-container svg.failure {
  fill: red;
}

#messages .message-container .message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

#messages .message-container .message .title {
  font-size: 2rem;
  font-weight: 600;
  color: black;
}

#messages .message-container .message .description {
  font-size: 1.4rem;
  color: black;
  text-align: center;
}

#messages .message-container a {
  text-decoration: none;
  text-align: center;
  background-color: var(--station-color);
  border: none;
  border-radius: 30px;
  padding: 1rem 2rem;
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
}

#modal-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

#modal-background.animate-fade-in {
  animation: fadeIn 0.5s forwards;
}

#modal-background.animate-fade-out {
  animation: fadeOut 0.5s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

#login-modal, #continue-as-modal {
  width: 100%;
  min-height: auto;
  background: white;
  position: fixed;
  bottom: 0;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  z-index: 3;
  padding: 1rem;
  overflow-y: auto;
  padding-bottom: 4rem;
}

#login-modal.animate-from-bottom, #continue-as-modal.animate-from-bottom {
  animation: animate-from-bottom 0.5s forwards;
}

#login-modal.animate-to-bottom, #continue-as-modal.animate-to-bottom {
  animation: animate-to-bottom 0.5s forwards;
}

@keyframes animate-from-bottom {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes animate-to-bottom {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(100%);
  }
}

#login-modal .close-modal-container, #continue-as-modal .close-modal-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

#login-modal .close-modal, #continue-as-modal .close-modal {
  width: 56px;
  height: 4px;
  border-radius: 30px;
  margin-top: 25px;
  background-color: #D9D9D9;
}

#login-modal .insert-title, #continue-as-modal .insert-title {
  font-size: 20px;
  line-height: 28px;
  color: black;
  font-weight: 600;
  text-align: center;
}

#login-modal #send-code-form, #login-modal #validate-code-form, #continue-as-modal #send-code-form, #continue-as-modal #validate-code-form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  justify-content: center;
}

#login-modal #send-code-form .email-field, #login-modal #send-code-form .code-field, #login-modal #validate-code-form .email-field, #login-modal #validate-code-form .code-field, #continue-as-modal #send-code-form .email-field, #continue-as-modal #send-code-form .code-field, #continue-as-modal #validate-code-form .email-field, #continue-as-modal #validate-code-form .code-field {
  margin-top: 10px;
}

#login-modal #send-code-form .email-field, #login-modal #send-code-form .send-code-button, #login-modal #send-code-form .code-field, #login-modal #validate-code-form .email-field, #login-modal #validate-code-form .send-code-button, #login-modal #validate-code-form .code-field, #continue-as-modal #send-code-form .email-field, #continue-as-modal #send-code-form .send-code-button, #continue-as-modal #send-code-form .code-field, #continue-as-modal #validate-code-form .email-field, #continue-as-modal #validate-code-form .send-code-button, #continue-as-modal #validate-code-form .code-field {
  padding: 4px 2px 4px 16px;
  align-items: center;
  border-radius: 100px;
  border: 1px solid var(--station-color);
  background: white;
  height: 44px;
  width: 90%;
}

#login-modal #send-code-form .send-code-button, #login-modal #validate-code-form .send-code-button, #continue-as-modal #send-code-form .send-code-button, #continue-as-modal #validate-code-form .send-code-button {
  background-color: var(--station-color);
  border: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: white;
}

#login-modal #send-code-form .send-code-button:hover, #login-modal #validate-code-form .send-code-button:hover, #continue-as-modal #send-code-form .send-code-button:hover, #continue-as-modal #validate-code-form .send-code-button:hover {
  background: linear-gradient(107deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 61.94%), var(--station-color);
}

#login-modal #send-code-form .email-input-container, #login-modal #validate-code-form .email-input-container, #continue-as-modal #send-code-form .email-input-container, #continue-as-modal #validate-code-form .email-input-container {
  position: relative;
  width: 98%;
  display: flex;
  justify-content: center;
}

#login-modal #send-code-form .envelope-icon, #login-modal #validate-code-form .envelope-icon, #continue-as-modal #send-code-form .envelope-icon, #continue-as-modal #validate-code-form .envelope-icon {
  position: absolute;
  left: 35px;
  top: 60%;
  transform: translateY(-50%);
  fill: var(--station-color);
  width: 24px;
  height: 24px;
}

#login-modal #send-code-form .email-field, #login-modal #validate-code-form .email-field, #continue-as-modal #send-code-form .email-field, #continue-as-modal #validate-code-form .email-field {
  padding-left: 50px;
}

#login-modal #send-code-form .text-danger, #login-modal #validate-code-form .text-danger, #continue-as-modal #send-code-form .text-danger, #continue-as-modal #validate-code-form .text-danger {
  text-align: center;
}

#login-modal #send-code-form .actions, #login-modal #validate-code-form .actions, #continue-as-modal #send-code-form .actions, #continue-as-modal #validate-code-form .actions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

#login-modal #send-code-form .actions .validate-code-button, #login-modal #validate-code-form .actions .validate-code-button, #continue-as-modal #send-code-form .actions .validate-code-button, #continue-as-modal #validate-code-form .actions .validate-code-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--station-color);
  border: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  width: 10rem;
  border-radius: 100px;
  padding: 12px 24px;
  text-align: center;
  color: white;
}

#login-modal #send-code-form .actions .validate-code-button:hover, #login-modal #validate-code-form .actions .validate-code-button:hover, #continue-as-modal #send-code-form .actions .validate-code-button:hover, #continue-as-modal #validate-code-form .actions .validate-code-button:hover {
  background: linear-gradient(107deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 61.94%), var(--station-color);
}

#login-modal #send-code-form .actions .back-to-send-code-button, #login-modal #validate-code-form .actions .back-to-send-code-button, #continue-as-modal #send-code-form .actions .back-to-send-code-button, #continue-as-modal #validate-code-form .actions .back-to-send-code-button {
  background-color: transparent;
  border: none;
  color: var(--station-color);
}

#login-modal .buttons, #continue-as-modal .buttons {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}

#login-modal .buttons .continue-as-button, #continue-as-modal .buttons .continue-as-button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 100%;
  margin-top: 22px;
  align-items: center;
  border-radius: 100px;
  height: 44px;
  background-color: var(--station-color);
  border: none;
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
  line-height: 20px;
  color: white;
}

#login-modal .buttons .continue-as-button:hover, #continue-as-modal .buttons .continue-as-button:hover {
  background: linear-gradient(107deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 61.94%), var(--station-color);
}

#login-modal .buttons .login-with-other-email-button, #continue-as-modal .buttons .login-with-other-email-button {
  width: 100%;
  align-items: center;
  border-radius: 100px;
  border: 1px solid var(--station-color);
  background: white;
  height: 44px;
  background-color: white;
  border: 2px solid var(--station-color);
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
  line-height: 20px;
}

#login-modal .terms-and-conditions, #continue-as-modal .terms-and-conditions {
  font-size: 14px;
  line-height: 26px;
  color: black;
  margin-top: 20px;
  margin-left: 10px;
  width: 90%;
}

#contents-container {
  min-height: 100vh;
  background-color: #fbf5f4;
  padding-top: 20px;
}

#contents-container swiper-container {
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 20px;
}

#contents-container swiper-slide {
  display: inline-flex;
  width: auto;
}

#contents-container swiper-slide a {
  display: inline-flex;
  border: 1px solid var(--station-color);
  padding: 8px;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  margin-right: 3px;
  white-space: nowrap;
  width: auto;
}

#contents-container swiper-slide a.selected {
  background: var(--station-color);
  color: white;
}

#contents-container .content-wrapper {
  padding-right: 20px;
  padding-left: 20px;
}

#contents-container .content-wrapper #content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.7rem;
}

#contents-container .content-wrapper #content .content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

#contents-container .content-wrapper #content .content .content-image {
  border-radius: 40px;
  width: 100%;
  height: 250px;
  object-fit: cover;
  box-shadow: 0 5px 10px -2px rgba(47, 47, 47, 0.237);
}

#contents-container .content-wrapper #content .content .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 1.8rem;
  padding-left: 2.3rem;
  padding-right: 2.3rem;
  gap: 5px;
}

#contents-container .content-wrapper #content .content .info .content-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: black;
}

#youtube-video {
  background-color: #fbf5f4;
  min-height: 100vh;
}

#youtube-video .video-container {
  padding-left: 20px;
  padding-right: 20px;
}

#youtube-video .video-frame {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 16px;
  box-shadow: 0px 4px 16px 0px rgba(199, 69, 0, 0.25);
}

#youtube-video .title {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 8px;
}

#youtube-video .separator {
  width: 100%;
  margin-top: 7px;
  margin-bottom: 7px;
  height: 1px;
  background-color: var(--station-color);
  color: var(--station-color);
}

#youtube-video .time {
  font-size: 13px;
  color: var(--station-color);
  text-shadow: 0px 4px 16px rgba(0, 0, 0, 0.25);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 8px;
}

#youtube-video .share-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

#youtube-video .share-buttons a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#youtube-video .share-buttons .whatsapp-share {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  padding: 10px;
  border-radius: 8px;
  background: rgba(166, 166, 166, 0.1);
  transition: all 0.2s ease-in-out;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.084);
}

#youtube-video .share-buttons .whatsapp-share:hover {
  background: #0dca54;
}

#youtube-video .share-buttons .whatsapp-share:hover i {
  color: white;
}

#youtube-video .share-buttons .whatsapp-share i {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 27px;
  color: #0dca54;
}

#youtube-video .share-buttons .facebook-share {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  padding: 10px;
  border-radius: 8px;
  background: rgba(166, 166, 166, 0.1);
  transition: all 0.2s ease-in-out;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.084);
}

#youtube-video .share-buttons .facebook-share:hover {
  background: #0866ff;
}

#youtube-video .share-buttons .facebook-share:hover i {
  color: white;
}

#youtube-video .share-buttons .facebook-share i {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 27px;
  color: #0866ff;
}

#youtube-video .share-buttons .share {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  padding: 10px;
  border-radius: 8px;
  background: rgba(166, 166, 166, 0.1);
  transition: all 0.2s ease-in-out;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.084);
}

#youtube-video .share-buttons .share:hover {
  background: #4f5257;
}

#youtube-video .share-buttons .share:hover i {
  color: white;
}

#youtube-video .share-buttons .share i {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: #4f5257;
}

#youtube-video .description {
  margin-bottom: 16px;
  text-shadow: 0px 4px 16px rgba(0, 0, 0, 0.25);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

#videos-carousel {
  background-color: #fbf5f4;
  padding-left: 16px;
}

#videos-carousel .title {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 8px;
}

#videos-carousel swiper-container {
  height: 100%;
}

#videos-carousel swiper-slide {
  width: 85%;
  padding-bottom: 7px;
  padding-right: 7px;
}

#videos-carousel swiper-slide .publish-date {
  display: flex;
  padding: 4px 8px;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  border-radius: 0px 100px 100px 0px;
  background: var(--station-color);
  border: none;
  border-left: 4px solid rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 85px;
  left: 0;
}

#videos-carousel swiper-slide .publish-date .date {
  color: white;
  text-align: center;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
}

#videos-carousel swiper-slide .video {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  background-color: white;
  border-radius: 8px;
  height: 190px;
}

#videos-carousel swiper-slide .video .image-container {
  width: 100%;
  height: 120px;
  overflow: hidden;
}

#videos-carousel swiper-slide .video .image-container .image-border {
  position: absolute;
  width: 98.1%;
  height: 120px;
  border: 4px solid rgba(0, 0, 0, 0.2);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

#videos-carousel swiper-slide .video .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

#videos-carousel swiper-slide .video .content {
  display: flex;
  padding: 16px;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
}

#videos-carousel swiper-slide .video .content .title {
  height: 40px;
  max-height: 60px;
  align-self: stretch;
  color: black;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#instagram-posts {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 4rem;
  background: linear-gradient(white, lightgray);
  width: 100%;
  height: 80rem;
}

#instagram-posts .title {
  color: black;
  font-size: 3rem;
  font-weight: 700;
}

#instagram-posts .posts-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}

#instagram-posts .posts-container .instagram-post {
  width: 42rem;
  height: 44rem;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  position: relative;
}

#instagram-posts .posts-container .instagram-post a {
  width: 100%;
  height: 100%;
}

#instagram-posts .posts-container .instagram-post .image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

#instagram-posts .posts-container .instagram-post .post-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.08));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 2.3rem;
  padding-right: 2.3rem;
  padding-bottom: 1.3rem;
  padding-top: 1.3rem;
  color: white;
  font-size: 1.5rem;
}

#instagram-posts .posts-container .instagram-post .post-footer .station-info {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  font-weight: bold;
  justify-content: center;
  align-items: center;
}

#instagram-posts .posts-container .instagram-post .post-footer .station-info img {
  width: 4.3rem;
  height: 4.3rem;
  border-radius: 50%;
}

#instagram-posts .posts-container .instagram-post .post-footer .instagram-logo svg {
  height: 3rem;
  width: 3rem;
  fill: white;
}

#instagram-posts .posts-container .instagram-post .post-footer .instagram-logo svg path {
  fill: white !important;
}

#mobile-instagram-posts {
  background-color: #fbf5f4;
  padding-left: 16px;
}

#mobile-instagram-posts .title {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 8px;
}

#mobile-instagram-posts swiper-container {
  height: 100%;
}

#mobile-instagram-posts swiper-slide {
  width: 65%;
  padding-bottom: 7px;
  padding-right: 7px;
}

#mobile-instagram-posts swiper-slide .post {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  height: 260px;
}

#mobile-instagram-posts swiper-slide .post .image-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#mobile-instagram-posts swiper-slide .post .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

#mobile-instagram-posts swiper-slide .post-footer {
  position: absolute;
  bottom: 7px;
  left: 0;
  width: 97%;
  height: 4.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.08));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.2rem;
  color: white;
  font-size: 1.1rem;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

#mobile-instagram-posts swiper-slide .post-footer .station-info {
  display: flex;
  flex-direction: row;
  gap: 0.7rem;
  font-weight: bold;
  align-items: center;
}

#mobile-instagram-posts swiper-slide .post-footer .station-info img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
}

#mobile-instagram-posts swiper-slide .post-footer .instagram-logo svg {
  height: 1.8rem;
  width: 1.8rem;
  fill: white;
}

#mobile-instagram-posts swiper-slide .post-footer .instagram-logo svg path {
  fill: white !important;
}

.skeleton {
  background-color: rgba(15, 23, 42, 0.08);
  background-image: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.7) 45%, rgba(255, 255, 255, 0.7) 55%, transparent 70%);
  background-repeat: no-repeat;
  background-size: 200% 100%;
  border-radius: 4px;
  animation: website-skeleton-sweep 1.1s linear infinite;
}

@keyframes website-skeleton-sweep {
  from {
    background-position: 120% 0;
  }
  to {
    background-position: -20% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .skeleton {
    animation: none;
    background-image: none;
  }
}

.skeleton-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.skeleton-mobile-header {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--station-color);
  height: 64px;
  margin-bottom: 12px;
}

.skeleton-mobile-header .skeleton {
  background-color: rgba(255, 255, 255, 0.3);
  background-image: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.55) 45%, rgba(255, 255, 255, 0.55) 55%, transparent 70%);
}

.skeleton-screen {
  min-height: 50vh;
  padding-bottom: 3rem;
}

.skeleton-row {
  display: flex;
  gap: 16px;
  overflow: hidden;
  width: 100%;
}

.skeleton-row > * {
  flex: 0 0 auto;
}

.skeleton-row > .skeleton-stack {
  width: auto;
}

.skeleton-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.skeleton-item .skeleton-item-body {
  flex: 1;
  min-width: 0;
}

.skeleton-pills {
  display: flex;
  gap: 10px;
  overflow: hidden;
  margin-bottom: 24px;
}

.skeleton-pills > * {
  flex: 0 0 auto;
}

.skeleton-pills .pill {
  border-radius: 999px;
}

* {
  font-family: "Roboto", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #fbf5f4;
}

@media (max-width: 767px) {
  body {
    background-color: var(--station-color);
  }
}

a, a:hover, a:active, a:visited {
  color: var(--station-color);
  text-decoration: none;
}

video::-webkit-media-controls-timeline,
video::-webkit-media-controls-mute-button,
video::-webkit-media-controls-current-time-display,
video::-webkit-media-controls-time-remaining-display {
  display: none;
}

.btn-primary, .btn-primary:hover, .btn-primary:active, .btn-primary:visited {
  border: 1px solid var(--station-color) !important;
  background-color: var(--station-color) !important;
  color: white !important;
}

.btn-default, .btn-default:hover, .btn-default:active, .btn-default:visited {
  color: var(--station-color) !important;
}

.btn-danger, .btn-danger:hover, .btn-danger:active, .btn-danger:visited {
  color: white !important;
}

@media (max-width: 767px) {
  .hide-on-small-screens {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hide-on-large-screens {
    display: none !important;
  }
}

.small-container {
  max-width: 95%;
  margin: 0 auto;
}

.section-title {
  color: var(--station-color);
  font-size: 40px !important;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.card {
  background-color: white;
  height: 420px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.card .card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  box-shadow: 0px 10px 12px rgba(0, 0, 0, 0.15);
}

.wrapper {
  display: flex;
  flex-wrap: wrap;
}

.line-clamp, .line-clamp--3, .line-clamp--1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.line-clamp--1 {
  -webkit-line-clamp: 1;
}

.line-clamp--3 {
  -webkit-line-clamp: 3;
}

@media (max-width: 767px) {
  .space-from-menu-bar {
    padding-bottom: 18rem !important;
  }
  .rounded-top {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}

.space-from-top-bar {
  padding-top: 22px !important;
}

.top-nav-space {
  padding-top: 115px;
}

.animate-out {
  animation-name: fadeOut;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

#home {
  min-height: 50vh;
  background-color: #fbf5f4;
}

.mb-1 {
  margin-bottom: 1rem;
}

.floating-whatsapp-link {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  z-index: 100;
  transition: background-color 0.3s;
  text-decoration: none;
}

.floating-whatsapp-link i {
  color: #FFF;
}

.floating-whatsapp-link:hover {
  background-color: #128c7e;
}
