.toastify-top-down {
    animation: slideDown 0.5s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.loading-spinner {
  display: inline-block;
  width: 26px;
  height: 32px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* SweetAlert2 Responsive Popup Customization */
.responsive-swal-popup {
  max-width: 700px;
  width: 95vw;
  padding: 0 !important;
  border-radius: 16px;
  box-sizing: border-box;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .responsive-swal-popup {
    max-width: 98vw;
    width: 98vw;
    min-width: unset;
    padding: 0 !important;
  }
  .swal2-html-container {
    padding: 0 5px !important;
  }
}
.swal2-popup {
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}