* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}
#alert-btn {
  cursor: pointer;
}
#product-alert {
  width: 350px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  display: none;
  align-items: flex-start;
  gap: 0.5em;
  z-index: 999;
  background-color : white ;
}
.product-info {
  display: flex;
}
.product-info img {
  width: 100px;
  height: 100px;
  margin-right: 10px;
}
.message {
  font-size: 16px;
}
.time {
  font-size: 14px;
  margin-top: 16px;
  color: #a0a0a0;
}
#close-btn {
  background-color: white;
  color: red;
  border: solid  black;
  outline: none;
}
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #333333;
  transition: opacity 0.75s, visibility 0.75s;
}

.loader--hidden {
  opacity: 0;
  visibility: hidden;
}

.loader::after {
  content: "";
  width: 75px;
  height: 75px;
  border: 15px solid #dddddd;
  border-top-color: #009578;
  border-radius: 50%;
  animation: loading 0.40s ease infinite;
}

@keyframes loading {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}
