/*****************************/
/*********** COUNTER *********/
/*****************************/
.flash-warning-container {
  border-radius: 8px;
  padding: 15px 25px;
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.flash-warning-container .message-flash-warning {
  display: flex;
  align-items: center;
  gap: 10px;
}

.flash-warning-container .message-flash-warning>span {
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: -1px;
  font-family: 'Open Sans';
}

.flash-warning-container .message-flash-warning>img {
  width: 300px;
  height: 180px;
  object-fit: 16/9;
}

.flash-warning-container #flash-countdown {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: #5ac15d;
  padding: 2px 15px;
  border-radius: 50px;
  box-shadow: 0 0 7px -3px rgba(0, 0, 0, 1);
}

@media(max-width: 768px) {
  .flash-warning-container {
    flex-direction: column;

  }
}

/*******************************/
/* Estilo del badge Flash Sale */
/*******************************/
.flash-sale-badge {
  background-color: #4CAF50 !important;
  /* Verde */
  color: #fff !important;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  display: inline-block;

  font-size: 20px;
  padding: 0px 16px !important;
  border-radius: 36px !important;
  animation: beat .9s ease infinite;
}

.flash-sale-badge:hover {
  transform: scale(1.03) translateY(-10px);
}

/********************************************************/
/* Estilo del badge Flash Sale para el editor de bloques*/
/********************************************************/

.wc-block-components-product-sale-badge {

  background-color: #4CAF50 !important;
  /* Verde */
  color: #fff !important;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  display: inline-block;

  border-radius: 36px !important;
  animation: beat .9s ease infinite;

  right: -10px !important;
  top: -10px !important;
}

.wc-block-components-product-sale-badge__text {

  font-size: 18px;
  font-weight: bold;
  padding: 4px 12px !important;
}

.wc-block-components-product-sale-badge:hover {
  transform: scale(1.03) translateY(-10px);
}

@keyframes beat {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }

  100% {
    transform: scale(1);
  }
}



/* Si quieres que ocupe el mismo lugar que el badge original, asegura el display */
.woocommerce .flash-sale-badge {
  /* Ajusta según tu tema */
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
}

.wlwl_lucky_wheel_content {
  transition: all .4s ease !important;
}