/* Estilos para el banner */
#custombanner {
  background-color: #313131;
  color: #fff;
  overflow: hidden;
}

.custombanner-text {
  text-align: center;
  padding: 10px 0 5px 0;
}

.custombanner-text2 p {
  animation: animText 1.5s 3;
}

#custombanner p {
  margin-bottom: 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

span#amount_final {
  font-weight: bold;
  animation: amountAnim 2.5s ease infinite;
  transform-origin: center;
  display: inline-block;
  color: #ffc107;
}

@keyframes amountAnim {
  30% { transform: scale(1.1); }
  40%, 60% { transform: rotate(-20deg) scale(1.1); }
  50% { transform: rotate(20deg) scale(1.1); }
  70% { transform: rotate(0deg) scale(1.1); }
  100% { transform: scale(1); }
}

.progress {
  margin-bottom: 0 !important;
  padding: 0 !important;
  width: 100%;
  height: 5px;
  display: block;
  display: flex;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-align: center;
  background-color: #f50;
  transition: width 1s ease-in-out;
}

.custombanner-hidden {
  display: none;
}

.custombanner-fs {
  background: #f50;
  animation: changeBG 1.5s 3;
}

@keyframes changeBG {
  0% {
    background-color: #313131;
  }
  50% {
    background-color: #f50;
  }
  100% {
    background-color: #313131;
  }
}

@keyframes animText {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
