/* Toast styles */
.toast-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}


.toast {
  color: red;
  background: rgb(255, 230, 230);
  border: 1px solid red;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 5px;
  text-align: center;
  animation: fadeIn 0.1s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(-100px);

  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.evlop-order-limits-cart-errors {
  margin: 0;
  padding: 0;
  list-style: none;
  background: #f2dede;
  border: 1px solid #ebccd1;
  border-radius: 8px;
  margin: 15px 0;
}

.evlop-order-limits-cart-errors li {
  color: #a94442;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.4rem;
}

.evlop-order-limits-cart-errors li:before {
  content: "⚠";
  color: #a94442;
  margin-right: 5px;
}

.evlop-order-limits-cart-item-errors ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.evlop-order-limits-cart-item-errors ul li {
  color: #a94442;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.4rem;
}

.evlop-order-limits-cart-item-errors ul li:before {
  content: "⚠";
  color: #a94442;
  margin-right: 5px;
}

.hidden {
  display: none;
}