.color-bg, .color-background{
  background: linear-gradient(135deg, #EC4899, #F99C74);
}
.color-bg-revert, .color-background-revert{
  background: linear-gradient(135deg, #F99C74, #EC4899 );
}

.pointer {
  cursor: pointer;
}

.fw-bold {
  font-weight: 500;
}

.faa-album {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  color: white;
  background: no-repeat center/contain;
  vertical-align: middle;
  background-image: url("../images/album-white.svg");
}


#playlist li {
  cursor: pointer;
}

#playlist li.active {
  background-color: #e4f1f3;
  color: black;
}

.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}

.marquee > span {
  display: inline-block;
}

.marquee.animate > span {
  padding-left: 100%;
  animation: marquee 15s linear infinite;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}


.equalizer {
    display: inline-flex;
    align-items: flex-end;
    gap: 2px;
    margin-left: 4px;
}
.equalizer.active span {
    display: block;
    width: 3px;
    background: linear-gradient(135deg, #EC4899, #F99C74);
    animation: bounce 1s infinite ease-in-out;
}
.equalizer span:nth-child(1) { animation-delay: 0s; }
.equalizer span:nth-child(2) { animation-delay: 0.2s; }
.equalizer span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
    0%, 100% { height: 4px; }
    50% { height: 12px; }
}

.equalizer-home {
    display: inline-flex;
    align-items: flex-end;
    gap: 4px;
    margin-left: 4px;
}
.equalizer-home span {
    display: block;
    width: 12px;
    background: linear-gradient(135deg, #EC4899, #F99C74);
    animation: bounce-home 1s infinite ease-in-out;
}
.equalizer-home span:nth-child(1) { animation-delay: 0s; }
.equalizer-home span:nth-child(2) { animation-delay: 0.2s; }
.equalizer-home span:nth-child(3) { animation-delay: 0.4s; }
.equalizer-home span:nth-child(4) { animation-delay: 0.2s; }
.equalizer-home span:nth-child(5) { animation-delay: 0.3s; }


@keyframes bounce-home {
    0%, 100% { height: 4px; }
    50% { height: 3rem; }
}
