.fondo-negro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Fondo negro semitransparente */
  z-index: 998; /* Z-index menor que el del popup para que esté detrás */
}

.popup {
  display: none;
  position: fixed;
  top: 50%; /* Centra verticalmente */
  left: 50%; /* Centra horizontalmente */
  transform: translate(-50%, -50%); /* Centra completamente */
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, 0.9); /* Fondo semitransparente */
  color: #fff;
  border-radius: 5px;
  z-index: 999;
  width:98vw;
  max-width: 500px;
}

.popup-content {
  max-height: 80vh; /* Altura máxima del 80% del alto de la ventana */
  overflow-y: auto; /* Añade scroll vertical si es necesario */
}

.total-productos,
.total-monto {
font-size: 19px;
  display: inline-block;
  margin: 0 10px;
  color: #FFFFFF;
}


.sticky-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.popup2 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}