/* Alert */
.alert-container {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 1050;
  max-width: 350px;
}
.alert {
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
  padding: 10px 35px;
}
.alert-success {
  color: #155724;
  border: 1px solid #c3e6cb;
}
.alert-danger {
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.alert-warning {
  color: #856404;
  border: 1px solid #ffeeba;
}
.alert-info {
  color: #0c5460;
  border: 1px solid #bee5eb;
}
.alert-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: inherit;
  opacity: 0.7;
}
.alert-close:hover {
  opacity: 1;
}