.live-now-player {
  border-radius: 8px;
    font-family: sans-serif;
    color:var(--spark-grey);
    max-width: 900px;
    display: flex;
    align-items: center;
    position: fixed;
    margin-top: 1rem;
  }

  .live-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 13vh;
  }

  .live-tag {
    border: 1px solid #e53935;
    color: #f8f9fa;
    padding: 10px;
    border-radius: 20px;
    font-size: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    align-content: center;
    justify-content: center;
    gap: 12px;
  }
  .live-tag::before {
    content: '';
    position: relative;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    margin-top: 6px;
    background: red;
    border-radius: 50%;
    /* animation: pulse 1.2s infinite ease-in-out; */
}
.plyr__sr-only {
  display: none;
}
.plyr__control svg {
  width: 20px;
  height: 20px;
  filter: invert(1);
}
button.plyr__control.plyr__control--overlaid {
  border: unset;
}
@keyframes pulse {
    0% {
      transform: translateY(-50%) scale(1);
      opacity: 1;
    }
    50% {
      transform: translateY(-50%) scale(1.6);
      opacity: 0.5;
    }
    100% {
      transform: translateY(-50%) scale(1);
      opacity: 1;
    }
  }

  .live-dot {
    width: 8px;
    height: 8px;
    background-color: #e53935;
    border-radius: 50%;
    display: inline-block;
  }

  .live-title {
    font-size: 3vw;
    font-weight: 500;
    color: var(--spark-grey);
    margin-bottom: 0 !important;
  }
.live-player{
  margin-bottom: 0 !important;
}

  .plyr{
        min-width: 50px !important;
        text-align: center;
    }
  .plyr--audio .plyr__controls {
    background: transparent !important;
  }

  .plyr__controls .plyr__controls__item.plyr__progress__container,.plyr__controls .plyr__controls__item.plyr__time, .plyr__menu{
    display: none !important;
  }

  .plyr--audio .plyr__control:hover, .plyr--audio .plyr__control[aria-expanded=true] {
    background: #6c757d69 !important;
  }

/* Ipad */
@media (min-width: 768px) and (max-width: 1023px) {
  .live-title {
    font-size: 2vw !important;
  }
  .live-now-player {
    width: 60%;
  }
  .live-header {
    width: 14vw;
  }
}
/* NestHub */
@media (min-width: 1024px) and (max-width: 1399px) {
  .live-header {
    width: 18vh;
  }
  div#block-etikett-site-branding img {
    width: 10vw;
  }
}
/* Desktop (1400px+) */
@media (min-width: 1400px) {
  .live-title {
    font-size: 1vw !important;
  }
}