.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;
    }
}

.border-error {
    border-color: red !important;
}
.border-error-select {
    border: 1px solid red !important;
}
.swal2-container {
    z-index: 2000;
}
/* .toast-show p {
    text-align: left !important;
} */

@media only screen and (max-width: 46.1875em) {
    .account-history__search.special .account-history__calender {
        width: 100%;
        justify-content: left;
    }

    .footer-nav {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px 20px;
    }
    .footer-nav__item {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

p,
span {
    word-break: keep-all !important;
}

.account-avatar__img img,
.header-account__avatar img {
    object-fit: cover;
}

/* #toasts {
    right: 0%;
    transform: translateX(-40%);
} */

.store-qr__code img {
    border-radius: 8px;
}
