.v2-notification-stack {
    position: fixed;
    top: 6.25rem;
    left: 50%;
    z-index: 1200;
    display: grid;
    gap: .65rem;
    width: min(calc(100vw - 2rem), 30rem);
    pointer-events: none;
    transform: translateX(-50%);
}

.v2-notification {
    display: grid;
    grid-template-columns: 2.75rem minmax(0, 1fr) auto;
    gap: .65rem;
    align-items: start;
    padding: .9rem;
    border: 1px solid #e2eaf4;
    border-radius: .9rem;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 1rem 2.4rem rgba(29, 56, 96, .16);
    opacity: 0;
    pointer-events: auto;
    transform: translateY(-.65rem);
    transition: opacity .22s ease, transform .22s ease;
}

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

.v2-notification__icon {
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: .7rem;
    background: #edf4ff;
    color: #2f68d4;
    font-size: 1.1rem;
}

.v2-notification__content { min-width: 0; padding-top: .12rem; }
.v2-notification__title { display: block; color: #1d365f; font-size: .92rem; font-weight: 800; }
.v2-notification__message { display: block; margin-top: .18rem; color: #61738d; font-size: .82rem; line-height: 1.45; }

.v2-notification__close {
    display: grid;
    place-items: center;
    width: 1.8rem;
    height: 1.8rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #8090a6;
    font-size: .85rem;
}

.v2-notification__close:hover { background: #f2f6fb; color: #284d80; }
.v2-notification--success .v2-notification__icon { background: #eaf8f0; color: #25845b; }
.v2-notification--warning .v2-notification__icon { background: #fff6df; color: #b5790d; }
.v2-notification--error .v2-notification__icon { background: #fff0ef; color: #c44d48; }

@media (max-width: 680px) {
    .v2-notification-stack { top: 4.75rem; left: .6rem; width: calc(100vw - 1.2rem); transform: none; }
}
