body {
  position: relative;
}
.alert {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 999999;
}
.alert__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  max-width: 350px;
  padding: 5px 10px;
  top: 50px;
  right: 20px;
  z-index: 10;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  position: fixed;
  /* background-color: #ffffff; */
  color: #ffffff;
  border: 2px solid transparent;
  font-family: eb;
  font-size: 12px;
  min-height: 50px;
}
.alert__container.done {
  /* border: 2px solid #0DC143; */
  background-color: var(--primary-color);
}
.alert__container.error {
  /* border: 2px solid #E33E31; */
  background-color: #e33e31;
}

#alert {
  display: none;
  animation: showAlert 3s;
}

#alert.confirm {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: none;
  position: relative;
}
#alert.confirm .alert__container {
  background-color: #ffffff;
  position: relative;
  top: 0;
  color: #000000;
}
.alert__footer {
  display: flex;
  gap: 10px;
}
.alert__footer button {
  outline: none;
  border: none;
  border-radius: 5px;
  font-family: b;
  padding: 5px 10px;
  color: #ffffff;
  cursor: pointer;
}
.confirm-button {
  background-color: var(--primary-color);
}
.cancel-button {
  background-color: #cccccc;
}

@keyframes showAlert {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
