
.show-banner {
  max-width: 800px; /* Limitar el ancho del banner */
  display: flex;
  align-items: center;
  background-color: none;
  color: #fff;
  padding: 9px;
  line-height: 1.15;
}
.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 0.8px;
  font-style: normal;
}
.montserrat-700 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.montserrat-600 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.montserrat-500 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.montserrat-400 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@keyframes ondas {
  0% {
    box-shadow: 0 0 #fff3,0 0 0 .625rem #fff3
  }

  to {
    box-shadow: 0 0 0 .625rem #fff3,0 0 0 1rem #fff0
  }
}
.profile-pic {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1.5rem;
  flex-shrink: 0;
  background-color: rgb(255 255 255 / 25%);
  animation: ondas 1.4s linear infinite;
}
.profile-pic img {
    width: 100%;
     height: 100% !important;
    object-fit: cover;
}
.live-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #f70d28;
    border-radius: 50%;
    margin-right: 5px;
    animation: parpadeo 5s linear infinite;
}
@keyframes parpadeo {
    0%,10%,20%, 100% {
        opacity: 1;
    }
    5%,15% {
        opacity: 0;
    }
}

.show-description {
  font-size: 14px;
  font-weight: 800;
  color: white;
 
}

.show-title {
  font-size: 28px;
  color: white;
  font-weight: bold;
  margin: .25rem 0;
  line-height: 1;
}
.show-direct {
  font-size: .72rem;
  font-weight: 500;
}

/* Efecto hover */
.show-play-button:hover {
color: black;
background-color: white;
transform: scale(1.05);
}

.show-play-button {
  background-color: #5E00AB;
  color: #fefefe;
  font-size: 13px;
  transition: background-color 0.3s, transform 0.3s;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 3rem;
  font-weight: 700;
}
.show-time {
  font-size: .875rem;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .show-banner {
      flex-direction: column;
      text-align: center;
  }
  .profile-pic {
      margin-right: 0;
      margin-bottom: 10px;
  }
  .divider {
      display: none;
  }
  .show-time {
      margin-top: 10px;
  }
  .show-title {
    font-size: 1.5rem;
  }
  .show-right {
    margin-top: 1rem;
  }
}
.divider {
  width: 1px;
  background-color: #fff;
  height: 40px;
  margin: 0 20px;
}