/* CUSTOM ALERT */
.custom-alert-overlay {
  box-sizing: border-box;
  background-color: rgba(220, 220, 220, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  animation: fadeIn 0.3s ease;
}
.custom-alert {
  box-sizing: border-box;
  background: var(--color-white);
  border-radius: 1rem;
  padding: 2rem;
  margin: 0;
  max-width: 40rem;
  width: 90%;
  animation: slideIn 0.3s ease;
}
.custom-alert-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0;
  margin: 0 0 2rem 0;
}
.custom-alert-header svg {
  width: 2rem;
  height: 2rem;
}
.custom-alert-header.warning svg.line {
  stroke: var(--color-orange-05);
}
.custom-alert-header.success svg.line {
  stroke: var(--color-green-05);
}
.custom-alert-header.error svg.line {
  stroke: var(--color-red-05);
}
.custom-alert-header.info svg {
  stroke: var(--color-blue-04);
}
.custom-alert-title {
  color: var(--color-grayscale-06);
  font-size: 2rem;
  font-weight: 600;
  padding: 0;
  margin: 0;
}
.custom-alert-content {
  box-sizing: border-box;
  padding: 0;
  margin: 0 0 2rem 0;
}
.custom-alert-content p {
  color: var(--color-grayscale-04);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 0;
  margin: 0;
}
.custom-alert-actions {
  display: flex;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
}
.custom-alert-button {
  box-sizing: border-box;
  background-color: var(--color-blue-03);
  font-family: var(--font-main);
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 500;
  padding: 1rem 1.5rem;
  margin: 0;
  border-radius: 5rem;
  display: flex;
  gap: 1rem;
  text-align:center;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  transition: all 0.3s ease;
}
.custom-alert-button svg.line {
  stroke: var(--color-white);
}
.custom-alert-button:hover {
  background-color: var(--color-blue-05);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
