.account-toasts, .toast-container {
    flex-direction: column;
    gap: .75rem;
    pointer-events: none;
    z-index: 9999
}

.account-toasts, .toast, .toast-container {
    bottom: 2rem;
    display: flex;
    left: 2rem;
    position: fixed
}

.toast {
    align-items: flex-start;
    border-radius: 16px;
    background: linear-gradient(180deg, #0D1832 0%, #0A1227 100%);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
    color: var(--esim-text);
    gap: .75rem;
    justify-content: space-between;
    min-width: 260px;
    opacity: 0;
    padding: 14px 42px 14px 14px;
    pointer-events: auto;
    transform: translateY(20px);
    transition: opacity .2s ease, transform .2s ease;
    width: min(100%, 360px);
    z-index: 999999;
}
.woocommerce-notices-wrapper {
    opacity: 0;
}
.toast .woocommerce-notices-wrapper {
    opacity: 1
}

.toast.is-visible {
    opacity: 1;
    transform: translateY(0)
}

.toast--success {
    border-left: 3px solid #22c55e;
}

.toast--error {
    border-left: 3px solid #ef4444;
}

.toast--info {
    border-left: 3px solid #3b82f6;
}

.toast__content {
    flex: 1 1 auto;
    font-size: 14px;
    line-height: 1.45;
    min-width: 0;
    font-weight: 500;
}

.toast__content,
.toast__content li,
.toast__content ol,
.toast__content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.toast__content p {
    margin: 0
}

.toast__content a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: .15em
}

.toast__close {
    align-items: center;
    background: rgba(255, 255, 255, .08);
    border: 0;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 16px;
    height: 28px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    position: absolute;
    right: 8px;
    top: 8px;
    transition: .2s ease;
    width: 28px;
}

.toast__close:hover {
    background: rgba(255, 255, 255, .16);
}

@media (max-width: 767px) {
    .account-toasts, .toast, .toast-container {
        bottom: 1rem;
        left: 1rem;
        right: 1rem
    }

    .toast {
        min-width: 0;
        width: auto
    }
}
.toast
.woocommerce-error::before,.toast .woocommerce-info::before,.toast .woocommerce-message::before{
    display: none!important;
}
.toast
.woocommerce-error, .toast .woocommerce-info, .toast .woocommerce-message {
    background: transparent !important;
    border: none!important;
    color: white;
    margin: 0!important;
    padding: 0 30px 0  0!important;
}