#alerts-container {
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

.custom-alert {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px !important;
  width: 300px;
}

.custom-alert button {
  position: relative;
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  padding: 10px;
  cursor: pointer;
}

.custom-alert button>i{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: inherit;
  font: inherit;
}

.custom-alert.fade-out {
  opacity: 0;
  transition: opacity 1.5s ease;
}
