.overlay_irt {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 99999999;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.lds-dual-ring.load {
    display: none;
}

.spinner {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    animation: spin 1.4s linear infinite;
}

.spinner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(338deg, rgb(35, 112, 202) 0%, rgb(68, 0, 155) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    box-shadow: 0 0 20px rgba(68, 0, 155, 0.6);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    margin-top: 20px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadeText 1.5s ease-in-out infinite;
}

@keyframes fadeText {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

div:where(.swal2-icon).swal2-warning{
    margin: 0 auto;
}
