.blink {
    animation: blink-animation 1s steps(2, start) infinite;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

.lote-map{
    margin-top: 1rem;
    width: 100%;
    height: 200px;
    border-radius: 8px;
}



.quantity__display {
    display: flex;
    align-items: center; /* Alinea la unidad con la línea base del número */
    gap: 12px; /* Mayor espaciado entre el precio y el texto adicional */
}

.price {
    font-size: 2em; /* Tamaño más grande para el número */
    font-weight: bold;
    color: #333; /* Asegura un contraste fuerte */
    line-height: 1.2; /* Espaciado vertical ajustado */
}

.unit {
    font-size: 1em; /* Mantén la unidad más discreta */
    color: #666;
    margin-left: 4px;
}

.unit.kilo {
    color: #858484; /* Color verde para "Al Kilo" */
    font-weight: 600;
}

.unit.bulto {
    color: #858484; /* Color azul para "Al Bulto" */
    font-weight: 600;
}

.iva-text {
    display: block; /* Asegura que esté en una nueva línea */
    font-size: 0.8em; /* Tamaño más pequeño */
    color: #999; /* Color tenue */
    margin-top: 2px; /* Espaciado entre el texto principal y "+IVA" */
}

.bidding-summary-wrap{
    /* padding-top: 35px; */
    h6{
      color: var(--title-color);
      font-family: var(--font-dmsans);
      font-size: 18px;
      font-weight: 600;
      line-height: 1.5;
      margin-bottom: 15px;
    }
    .bidding-summary-table{
      width: 100%;
      border-collapse: collapse;
      overflow: hidden;
      border-radius: 10px 10px 0 0;
      border-color: rgba(#111A22, 0.1);
      thead{
        background: #111A22;
        border-radius: 5px !important;
        tr{
          border-width: 1px;
          th{
            color: var(--white-color);
            font-family: var(--font-dmsans);
            font-size: 15px;
            line-height: 1.2;
            font-weight: 600;
            padding: 16px 35px;
            vertical-align: top ;
            @include xxl-device(){
              padding: 16px 20px;
            }
            @include xxl-down-device(){
              padding: 16px 20px;
            }
            @include lg-down-device{
              display: none;
            }
          }
        }
      }
      tbody{
        tr{
          border: 1px solid rgba(#111A22, 0.1);
          border-radius: 5px;
          td{
            color: var(--paragraph-color);
            font-family: var(--font-dmsans);
            font-weight: 600;
            font-size: 13px;
            line-height: 16px;
            vertical-align: middle;
            padding: 16px 35px;

            @media (max-width: 767px) {
             
              padding: 16px 15px;
           
              /* padding-left: 50%; */
          
            }
       
            span{
              color: var(--primary-color);
              font-size: 12px;
              line-height: 1;
              padding: 7px 24px;
              background-color: rgba( var(--primary-color-opc), 0.15);
              border-radius: 5px;
              min-width: 95px;
              display: inline-flex;
              justify-content: center;
              &.cancel{
                color: #DD344A;
                background-color: rgba(#DD344A, 0.15);
              }
              &.confirm{
                color: #6783df;
                background-color: rgba(#6783df, 0.15);
              }
            }
          }
          @include lg-down-device{
            display: block;
            width: 100%;
            margin-bottom: 20px;
          }
        }
        @include lg-down-device{
          display: block;
          width: 100%;
        }
      }
      @include lg-down-device{
        display: block;
        width: 100%;
      }
      td{
        @include lg-down-device{
          &:before{
            content: attr(data-label);
            position: absolute;
            left: 0;
            width: 50%;
            text-align: left;
            padding-left: 15px;
            font-weight: 600;
            color: var(--title-color);
            @include sm-down-device(){
              padding-left: 10px;
            }
          }
        }
      }
    }
  }

  .headerLoteCierreInmediato{
  padding: 0 50px;
  }

  @media (max-width: 767px) {
    .headerLoteCierreInmediato{
      padding: 0 10px;
      }
  }

/* Fondo del toast */
#custom-toast {
  background-color: #f8f9fa !important; /* Gris claro */
  border: 1px solid #fff;
}

/* Estilo del encabezado */
#custom-toast .toast-header {
  background-color: transparent;
  border-bottom: none;
}

/* Íconos */
#custom-toast .bi {
  font-size: 1.25rem; /* Tamaño del ícono */
  margin-right: 8px;
}

/* Título en negrita */
#toast-title {
  font-weight: bold;
}

/* Mensaje en estilo normal */
#toast-message {
  font-weight: normal;
}

.loteSiguiente {
  display: inline-flex;
  align-items: center;
  justify-content: start;
  gap: 6px;
  line-height: 1;
  padding: 9px 12px;
  background-color: var(--white-color);
  border: 1px solid rgba(var(--primary-color2-opc), 0.1);
  border-radius: 100px;
  position: relative;
  margin-bottom: 10px;
  margin-top: 2rem;
  cursor: pointer;
}

.custom-alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Fondo negro translúcido */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1050; /* Asegúrate de que esté sobre otros elementos */
}

.custom-alert-box {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.custom-alert-box i {
  font-size: 40px;
  margin-bottom: 15px;
}

.custom-alert-box h4 {
  font-weight: bold;
  margin-bottom: 10px;
}

.custom-alert-box p {
  margin-bottom: 20px;
}

.custom-alert-box button {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
}

/* Define la animación para la vibración */
@keyframes vibrate {
  0% {
    transform: translateX(0);
    color: red; /* Empieza en rojo */
  }
  25% {
    transform: translateX(-3px);
  }
  50% {
    transform: translateX(3px);
  }
  75% {
    transform: translateX(-3px);
  }
  100% {
    transform: translateX(0);
    color: inherit; /* Vuelve al color original */
  }
}

.price-changed {
  /* animation: vibrate 0.3s ease-in-out;  */
  color: red; /* Color rojo durante la animación */
}

.opciones {
  display: flex;
  gap: 10px;
}

.opciones {
  display: flex;
  gap: 5px;
  padding-bottom: 1rem;
}

.opcion {
  width: 100%;
  max-width: 100vw; /* Evita desbordamiento horizontal */
  border: 2px solid #ccc;
  /* padding: 10px; */
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-align: center;
  font-size: 18px;
  background-color: #fff;
  box-sizing: border-box; /* Asegura que padding no aumente el tamaño */
}

.opcion:hover {
  transform: scale(1.05);
}

.opcion.seleccionado {
  border-color: var(--primary-color3);
  background-color: #e0f0ff;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(89, 158, 112, 0.5);
}

.opcion .precio{
font-weight: 700 !important;
font-size: 20px !important;
margin-bottom: 2px !important;
}

.opcion .plazo{
  font-weight: 400 !important;
  margin-bottom: 2px !important;
  }
