.toasts {
    position: fixed;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    z-index: 9999;
    pointer-events: none;
}

.toast {
    position: relative;
    width: min(360px, 92vw);
    background: var(--box-color);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 16px 48px 16px 56px;
    box-shadow: 0 10px 30px #1a1f4040;
    overflow: hidden;
    opacity: 0;
    transform: translateY(8px) scale(.98);
    max-height: 0;
    transition: max-height .32s ease, opacity .32s ease, transform .32s ease, filter .32s ease;
    pointer-events: auto;

    &::before {
        content: "";
        position: absolute;
        left: 10px;
        top: 10px;
        bottom: 10px;
        width: 10px;
        border-radius: 8px;
        background: var(--accent-1);
    }

    h3 {
        margin: 0;
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    p {
        margin: .35rem 0 0;
        color: var(--text-color);
        line-height: 1.35;
        white-space: pre-line;
        font-size: 14px;
    }

    &.show {
        opacity: 1;
        transform: none;
        max-height: 300px;
    }

    &.hide {
        opacity: 0;
        transform: translateY(8px) scale(.98);
        filter: blur(.25px);
    }

    .close {
        position: absolute;
        right: 12px;
        top: 10px;
        width: 24px;
        height: 24px;
        border: none;
        background: transparent url(/assets/img/icon/icon_close_modal.png) center/contain no-repeat;
        cursor: pointer;
        z-index: 10;

        &:hover {
            transform: scale(0.9);
        }
    }

    &.help {
        --accent-1: #0a4c8a;
        --accent-2: #0f7de6;
    }

    &.succ {
        --accent-1: #00d084;
        --accent-2: #00ff88;
    }

    &.warn {
        --accent-1: #ff8c00;
        --accent-2: #ffa500;
    }

    &.err {
        --accent-1: #ff1744;
        --accent-2: #ff4569;
    }

    &.msg {
        --accent-1: #ffc90e;
        --accent-2: #ffe44d;
    }

    &.recomp {
        --accent-1: #00d084;
        --accent-2: #00ff88;
    }

    &.confirm {
        --accent-1: #ff8c00;
        --accent-2: #ffa500;
    }

    &.citypassprog {
        --accent-1: #ffd54f;
        --accent-2: #ffb300;

        h3 {
            text-align: center;
        }

        p.status {
            margin: .5rem 0 0;
            text-align: center;
            font-weight: 600;
        }

        .reward-content {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 12px;
            align-items: center;
        }

        .reward-image-container {
            width: 48px;
            height: 48px;
            display: grid;
            place-items: center;
            background: #fff3cd;
            border: 1px solid #ffe082;
            border-radius: 10px;
            overflow: hidden;
        }

        .reward-image {
            width: 36px;
            height: 36px;
            object-fit: contain;
            display: block;
        }

        .progress {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 4px;
            background: #00000012;
            overflow: hidden;
        }

        .progress__bar {
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
            transition: width .25s ease;
        }
    }

    &.confirm {
        padding: 16px 48px 16px 16px;
        min-height: 140px;
        width: min(400px, 92vw);

        &.show {
            max-height: 250px;
        }

        .confirm-content {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-left: 20px;
        }

        .confirm-icon {
            flex-shrink: 0;
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--box-color-double, #202635);
            border: 2px solid var(--accent-1);
            border-radius: 12px;
            padding: 8px;
            box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
        }

        .confirm-image {
            width: 52px;
            border-radius: 10px;
        }

        .confirm-text {
            flex: 1;
            min-width: 0;

            h3 {
                color: var(--accent-1);
                font-size: 16px;
                margin: 0 0 8px 0;
                font-weight: 700;
                text-shadow: 0 0 8px rgba(255, 193, 7, 0.4);
            }
        }

        .confirm-description {
            margin: 0 0 12px 0;
            font-size: 14px;
            color: var(--text-color);
            line-height: 1.4;
        }

        .confirm-price {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;
            padding: 8px 12px;
            background: var(--box-color-double, #202635);
            border-radius: 8px;
            border: 1px solid var(--border-color);

            .price-label {
                font-size: 13px;
                font-weight: 600;
                color: var(--text-color);
                text-transform: uppercase;
                letter-spacing: .5px;
            }

            .price-value {
                display: flex;
                align-items: center;
                gap: 6px;
                margin-left: auto;

                .price-amount {
                    font-size: 16px;
                    font-weight: 700;
                    color: var(--accent-1);
                    text-shadow: 0 0 6px rgba(255, 193, 7, .4);
                }

                .price-icon {
                    width: 20px;
                    height: 20px;
                    object-fit: contain;
                }
            }
        }

        .confirm-actions {
            display: flex;
            gap: 10px;
            align-items: center;

            .confirm-buy-btn, .confirm-cancel-btn {
                border: 0;
                cursor: pointer;
                font-weight: 700;
                border-radius: 10px;
                padding: 10px 16px;
                font-size: 14px;
                transition: all .2s ease;
                text-transform: uppercase;
                letter-spacing: .5px;
                min-width: 80px;
            }

            .confirm-buy-btn {
                background: linear-gradient(135deg, #28a745, #20c997);
                color: #fff;
                box-shadow: 0 4px 12px rgba(40, 167, 69, .3);
                flex: 1;

                &:hover:not(:disabled) {
                    background: linear-gradient(135deg, #218838, #1ea085);
                    box-shadow: 0 6px 16px rgba(40, 167, 69, .4);
                    transform: translateY(-1px);
                }

                &:active:not(:disabled) {
                    transform: translateY(0);
                }

                &:disabled {
                    background: linear-gradient(135deg, #6c757d, #5a6268);
                    cursor: not-allowed;
                    opacity: .7;
                }
            }

            .confirm-cancel-btn {
                background: linear-gradient(135deg, #6c757d, #5a6268);
                color: #fff;
                box-shadow: 0 4px 12px rgba(108, 117, 125, .3);
                flex: .8;

                &:hover:not(:disabled) {
                    background: linear-gradient(135deg, #5a6268, #495057);
                    box-shadow: 0 6px 16px rgba(108, 117, 125, .4);
                    transform: translateY(-1px);
                }

                &:active:not(:disabled) {
                    transform: translateY(0);
                }
            }
        }
    }

    &.recomp {
        padding: 16px 48px 16px 16px;
        min-height: 80px;

        &.show {
            max-height: 200px;
        }

        .reward-content {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-left: 20px;
        }

        .reward-image-container {
            flex-shrink: 0;
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--box-color-double, #202635);
            border: 2px solid var(--accent-1);
            border-radius: 12px;
            padding: 8px;
            box-shadow: 0 0 15px rgba(0, 211, 100, .3);

            .reward-image {
                width: 100%;
                height: 100%;
                object-fit: contain;
                border-radius: 6px;
            }
        }

        .reward-text {
            flex: 1;
            min-width: 0;

            h3 {
                color: var(--accent-1);
                font-size: 16px;
                margin: 0 0 6px 0;
                font-weight: 700;
                text-shadow: 0 0 8px rgba(0, 211, 100, .4);
            }

            p {
                margin: 0;
                font-size: 14px;
                color: var(--text-color);
                line-height: 1.4;
            }
        }
    }

    &.succprog {
        --accent-1: #00d084;
        --accent-2: #00ff88;

        h3 {
            text-align: center;
        }

        p.status {
            margin: .5rem 0 0;
            text-align: center;
            font-weight: 600;
        }

        .progress {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 4px;
            background: #00000012;
            overflow: hidden;
        }

        .progress__bar {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
            transition: width .25s ease;
        }
    }

    .progress {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 4px;
        background: #00000012;
        overflow: hidden;
    }

    .progress__bar {
        height: 100%;
        width: 10%;
        background: linear-gradient(90deg, #00d084, #00ff88);
        transition: width .25s ease;
    }

    &.msg {
        padding-right: 56px;

        &.show {
            max-height: 520px;
        }

        .row {
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

        .col {
            flex: 1;
            min-width: 0;
        }

        .actions {
            display: flex;
            gap: 8px;
            align-items: center;
            margin-top: 10px;
            flex-wrap: wrap;

            .reply {
                flex: 1 1 160px;
                min-width: 0;
                border: 1px solid #d7d7d7;
                border-radius: 12px;
                padding: 8px 10px;
                font-size: 14px;
                outline: none;
                display: block;
                width: 100%;
                resize: none;
                overflow: hidden;
                line-height: 1.35;
                min-height: 38px;
                max-height: 140px;

                &:focus {
                    border-color: #b59a0e;
                    box-shadow: 0 0 0 3px #ffc90e33;
                }
            }

            .btn-ghost, .btn-primary {
                border: 0;
                cursor: pointer;
                font-weight: 700;
                border-radius: 12px;
                padding: 9px 12px;
                transition: transform .06s ease, filter .2s ease;

                &:active {
                    transform: translateY(1px);
                }
            }

            .btn-ghost {
                background: #00000008;
            }

            .btn-primary {
                background: linear-gradient(90deg, #ffc90e, #ffe44d);
                color: #3a2e00;
                box-shadow: 0 6px 14px #ffc90e33;
                text-decoration: none;
                display: inline-flex;
                align-items: center;
                gap: 6px;
            }
        }
    }

    @media (max-width: 480px) {
        width: calc(100vw - 24px);
        left: 12px;
        right: 12px;

        &.recomp .reward-content {
            gap: 12px;
        }

        &.recomp .reward-image-container {
            width: 48px;
            height: 48px;
        }

        &.confirm {
            width: calc(100vw - 24px);

            .confirm-content {
                gap: 12px;
            }

            .confirm-icon {
                width: 48px;
                height: 48px;
            }

            .confirm-actions {
                flex-direction: column;
                gap: 8px;

                .confirm-buy-btn, .confirm-cancel-btn {
                    width: 100%;
                    flex: none;
                }
            }
        }
    }
}

@keyframes confirmPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
    }
}

.toast.citypassprog h3 {
    text-align: center;
}

.toast.citypassprog p.status {
    margin: .5rem 0 0;
    text-align: center;
    font-weight: 600;
}

.toast.citypassprog .reward-content {
    display: grid;
    grid-template-columns:auto 1fr;
    gap: 12px;
    align-items: center;
}

.toast.citypassprog .reward-image-container {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    overflow: hidden;
    animation: none !important;
    transform: none !important;
}

.toast.citypassprog .reward-image-pass {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}

.toast.citypassprog .progress {
    position: relative;
    height: 4px;
    background: #00000012;
    overflow: hidden;
    margin-top: 8px;
}

.toast.citypassprog .progress__bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #ffd54f, #ffb300);
    transition: width .25s ease;
}

.CompNotification {
    position: fixed;
    width: 350px;
    top: 90px;
    max-height: calc(100% - 20px);
    left: 0;
    z-index: 9999999999;
}

.CompNotification .closeAll {
    display: none;
    cursor: pointer;
    border-radius: 10px;
    position: absolute;
    background: #ffc90e;
    justify-content: center;
    color: white;
    height: 40px;
    align-items: center;
    width: 220px;
    left: 20px;
    box-shadow: 0 0 0 2px #0000001f, 0 0 20px #0003;
    font-size: 120%;
}

.CompNotification .closeAll:hover {
    background: #ffe44d;
}

.CompNotification .notification {
    top: 55px;
    position: absolute;
    border-radius: 10px;
    width: 220px;
    left: -500px;
    padding-bottom: 10px;
    background: #1F2333;
    box-shadow: 0 0 0 2px #0000001f, 0 0 20px #0003;
    z-index: 999;
}

.CompNotification .notification .cancel {
    display: none;
}

.CompNotification .notification .CompButtonsFloater {
    box-shadow: unset;
}

.CompNotification .ntf1 {
    position: relative;
    left: 10px;
    border-bottom: 2px solid #ffc90e;
    width: calc(100% - 30px);
    height: 46px;
}

.CompNotification .ntf2 {
    position: absolute;
    width: 20px;
    top: 16px;
    display: flex;
    height: 20px;
    background: url(/assets/img/notifications/32_warn.png);
    background-size: auto;
    background-size: contain;
}

.CompNotification .ntf3 {
    position: absolute;
    font-size: 120%;
    left: 10px;
    top: 14px;
    color: white;
}

.CompNotification .ntf3Close {
    position: absolute;
    right: 0;
    height: 18px;
    width: 18px;
    top: 16px;
    background: url(/assets/img/notifications/close_24.png);
    background-size: contain;
    cursor: pointer;
}

.CompNotification .ntf3Close:hover {
    opacity: 0.8;
}

.CompNotification .ntf3OpenProfile:hover {
    cursor: pointer;
}

.CompNotification .ntf4 {
    position: relative;
    word-wrap: break-word;
    font-size: 100%;
    color: white;
    width: calc(100% - 30px);
    left: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.CompNotification .ntf4Buttons {
    position: relative;
    display: flex;
    margin-left: 12px;
    margin-top: 5px;
}

.CompNotification .ntf5 {
    position: relative;
    cursor: pointer;
    padding: 6px 15px;
    font-size: 100%;
    color: #1F2333;
    background: #5ea6ee;
    margin-right: 8px;
    border-radius: 12px;
}

.CompNotification .ntf5:hover {
    opacity: 0.7;
}

.CompNotification .ntf6 {
    left: 20px;
    cursor: pointer;
    border-radius: 10px;
    position: absolute;
    top: -50px;
    background: rgb(255, 146, 72);
    display: flex;
    justify-content: center;
    color: #1F2333;
    height: 40px;
    align-items: center;
    width: 220px;

    &:hover {
        background: rgb(230, 91, 0)
    }
}

.CompNotification .ntf8 {
    position: absolute;
    height: 17px;
    top: 7px;
    left: 8px;
    width: 19px;
    background: url(/assets/img/notifications/icon_notification.png) -1px -1px;
}

.CompNotification .ntf9 {
    position: relative;
    cursor: pointer;
    padding: 13px 15px;
    border: 2px solid rgb(235, 235, 235);
    font-size: 100%;
    color: #1F2333;
    background: #3B435C;
    border-radius: 12px;
    height: 14px;
    width: 100px;
}

.CompNotification .ntf10 {
    position: absolute;
    height: 16px;
    top: 5px;
    left: 9px;
    width: 14px;
    background: url(/assets/img/notifications/icon_notification.png) -34px -1px;
}

.CompNotification .ntf11 {
    position: absolute;
    color: #d0d0d0;
    font-size: 14px;
    left: 30px;
    top: 6px;
}

.CompNotification .ntf12 {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 12px;
    width: 100%;
    background: #1F2333;
}

.CompNotification .ntf13 {
    color: #d4d4d4;
    width: calc(100% - 20px);
    font-size: 100%;
    overflow: hidden;
    padding: 10px;
    resize: none;
    border: none;
    background: transparent;
    height: 55px;
    font-family: 'Ubuntu X', 'habbofont', sans-serif !important;
}

.CompNotification .ntf13:focus {
    outline: none;
}

.CompNotification .animation {
    min-height: 330px;
    width: 580px !important;
}

.CompNotification .animation .notificationContainer {
    display: flex;
}

.compNotificationContainer {
    display: flex;
}

.CompNotification .animation .image {
    height: auto;
    flex: 0 0 215px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.CompNotification .animation .ntf-content {
    padding: 15px;
    color: white;
}

.CompNotification .animation .author {
    display: flex;
    background: #eeeeee;
    height: 30px;
    border-radius: 8px;
    margin-top: 20px;
}

.CompNotification .animation .authorFigure {
    height: 110px;
    width: 64px;
    margin-top: -26px;
}

.CompNotification .animation .authorUsername {
    margin-top: 5px;
    color: black;
}

.CompNotification .animation .buttons {
    padding-right: 15px;
    height: 70px;
}

.mobile .CompNotification .animation {
    display: none !important;
}


.CompNotification .notificationn {
    z-index: 999;
    position: absolute;
    width: 295px;
    background: rgba(18, 18, 22, .50);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .06);
    isolation: isolate;
    border-radius: 16px;
    padding: 0 10px 10px 30px;
    overflow: hidden;
    top: 50px;

    &:before {
        content: "";
        position: absolute;
        left: 10px;
        top: 10px;
        bottom: 10px;
        width: 6px;
        border-radius: 8px;
        background: #ffc90e;
    }
}

.send {
    background: #ffc90e;
}

.notificationn .authorFigure {
    position: relative;
    top: -24px;
    left: -24px;
    height: 110px;
    width: 64px;
}

.CompNotification .notification {
    top: 55px;
    position: absolute;
    border-radius: 10px;
    width: 220px;
    left: -500px;
    padding-bottom: 10px;
    background: #1F2333;
    box-shadow: 0 0 0 2px #0000001f, 0 0 20px #0003;
    z-index: 999;
}

.CompNotification .nth2-notification.nth2-animation {
    position: absolute;
    background: rgba(18, 18, 22, .50);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 16px;
    box-shadow: 0 14px 44px rgba(0, 0, 0, .48), inset 0 1px 0 rgba(255, 255, 255, .04);
    overflow: hidden;
    transition: box-shadow .18s ease, transform .18s ease;
}

.CompNotification .nth2-notification.nth2-animation:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .6), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.nth2-CompNotification .nth2-notification.nth2-animation::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    bottom: 10px;
    width: 6px;
    border-radius: 8px;
    z-index: 0;
    background: currentColor;
    opacity: .95;
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 12%, #000 88%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0, #000 12%, #000 88%, transparent 100%);
}

@supports (background: linear-gradient(90deg, color-mix(in srgb, red 50%, transparent), transparent)) {
    .nth2-CompNotification .nth2-notification.nth2-animation::before {
        opacity: 1;
        background: linear-gradient(
                180deg,
                color-mix(in srgb, currentColor 85%, transparent) 0%,
                color-mix(in srgb, currentColor 55%, transparent) 100%
        );
    }
}

.CompNotification .nth2-notification.nth2-animation::after {
    content: "";
    position: absolute;
    inset: -34%;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, .65) 50%, rgba(255, 255, 255, 0) 80%);
    transform: translateX(-140%) rotate(0.001deg);
    pointer-events: none;
    mix-blend-mode: screen;
    z-index: 1;
    opacity: 0;
}

.CompNotification .nth2-notification.nth2-animation:hover::after {
    animation: nth2-shine .8s ease forwards;
}

@keyframes nth2-shine {
    0% {
        transform: translateX(-140%) rotate(0.001deg);
        opacity: 0;
    }
    10% {
        opacity: .28;
    }
    50% {
        opacity: .55;
    }
    90% {
        opacity: .28;
    }
    100% {
        transform: translateX(140%) rotate(0.001deg);
        opacity: 0;
    }
}

.nth2-notification.nth2-animation .nth2-ntf1 {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-bottom: 1px dashed rgba(255, 255, 255, .10);
    background: transparent;
    position: relative;
    left: 10px;
}

.nth2-notification.nth2-animation .nth2-ntf1 .nth2-ntf3 {
    color: #e9ecf5;
    font-weight: 700;
    font-size: 13px;
    flex: 1;
    letter-spacing: .2px;
}

.nth2-notification.nth2-animation .nth2-ntf1 .nth2-badge {
    margin-left: 8px;
    padding: 2px 6px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .25px;
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45);
    background: linear-gradient(80deg, #AC58FA, #81BEF7 80%);
}

.nth2-notification.nth2-animation .nth2-ntf1 .nth2-ntf3Close {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    transition: .12s ease;
}

.nth2-notification.nth2-animation .nth2-ntf1 .nth2-ntf3Close:hover {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .15);
    transform: translateY(-1px);
}

.nth2-notification.nth2-animation .nth2-ntf1 .nth2-ntf3Close::before,
.nth2-notification.nth2-animation .nth2-ntf1 .nth2-ntf3Close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background: #fff;
    opacity: .85;
    border-radius: 2px;
    transform-origin: center;
}

.nth2-notification.nth2-animation .nth2-ntf1 .nth2-ntf3Close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.nth2-notification.nth2-animation .nth2-ntf1 .nth2-ntf3Close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.nth2-notification.nth2-animation .nth2-compNotificationContainer {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 16px;
    padding: 16px;
    align-items: center;
}

.nth2-notification.nth2-animation .nth2-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nth2-notification.nth2-animation .nth2-image img {
    width: 150px;
    height: 150px;
    padding: 10px;
    transition: box-shadow .18s ease, transform .18s ease;
}

.nth2-notification.nth2-animation:hover .nth2-image img {
    transform: translateY(-1px);
}

.nth2-notification.nth2-animation .nth2-content {
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
}

.nth2-notification.nth2-animation .nth2-content p {
    margin: 0 0 8px 0;
}

.nth2-notification.nth2-animation .nth2-content a {
    color: #00b3ff;
    text-decoration: none;
    font-weight: 600;
}

.nth2-notification.nth2-animation .nth2-content a:hover {
    text-decoration: underline;
}

.nth2-notification.nth2-animation .nth2-content strong {
    color: #fff;
    font-weight: 800;
    position: relative;
}

.nth2-notification.nth2-animation .nth2-content strong::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: .6em;
    border-radius: 4px;
    z-index: -1;
    background: linear-gradient(80deg, #AC58FA, #81BEF7 80%);
}

.nth2-notification.nth2-animation .nth2-content strong {
    color: #fff;
    font-weight: 800;
    position: relative;
}

.nth2-notification.nth2-animation .nth2-content strong::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: .6em;
    border-radius: 4px;
    z-index: -1;
    background: linear-gradient(80deg, #AC58FA, #81BEF7 80%);
}

.nth2-notification.nth2-animation .nth2-byline-mini {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #fff;
    height: 60px;
    overflow: hidden;
}

.nth2-notification.nth2-animation .nth2-byline-mini .nth2-byline-mini-avatar {
    width: auto;
    height: auto;
    position: relative;
    top: 14px;
}

.nth2-notification.nth2-animation .nth2-buttons {
    position: absolute;
    right: 16px;
    bottom: 16px;
    display: flex;
    gap: 10px;
    padding: 0;
    flex-wrap: wrap;
}

.nth2-notification.nth2-animation .nth2-buttons > * {
    appearance: none;
    border: 0;
    background: transparent;
    color: #e9f7ff;
    border-radius: 8px;
    padding: 9px 12px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .1px;
    cursor: pointer;
    transition: background .14s ease, transform .08s ease, color .14s ease;
}

.nth2-notification.nth2-animation .nth2-buttons > *:hover {
    transform: translateY(-1px);
    background: linear-gradient(180deg, rgba(0, 179, 255, .16), rgba(0, 179, 255, .10));
}

.nth2-notification.nth2-animation .nth2-content strong {
    color: #fff;
    font-weight: 800;
    position: relative;
}

.nth2-notification.nth2-animation .nth2-content strong::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: .6em;
    border-radius: 4px;
    z-index: -1;
    background: linear-gradient(80deg, #AC58FA, #81BEF7 80%);
}

.nth2-notification.nth2-animation .nth2-content b[style*="color" i],
.nth2-notification.nth2-animation .nth2-content b[color] {
    font-weight: 800;
    position: relative;
}

.nth2-notification.nth2-animation .nth2-content b[style*="color" i]::after,
.nth2-notification.nth2-animation .nth2-content b[color]::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: .6em;
    border-radius: 4px;
    z-index: -1;
    background: currentColor;
    opacity: .32;
}

.nth2-notification.nth2-animation .nth2-content b[style*="color" i]::after,
.nth2-notification.nth2-animation .nth2-content b[color]::after {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 82%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 82%, transparent 100%);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}