.notifications.systemNotifications {
    position: fixed;
    bottom: 10px;
    inset-inline-end: 300px;
    z-index: 9999999999999;
    width: 340px
}

.notification {
    background-color: #211B37;
    border: 3px solid #0B235A;
    box-shadow: 0px 3px 15px #030A25BA;
    margin: 0px 12px 6px;
    border-radius: 11px;
    padding: 5px;
    display: flex;
    align-items: center;
}

    .notification img.notificationIcon {
        width: 30px;
        height: 30px;
        margin-inline-end: 16px;
    }

    .notification .notificationContent {
        margin-inline-end: 16px;
    }

.notification .notificationContent h3 {
    color: rgba(254, 254, 254, 0.85);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
}

.notification .notificationContent p {
    color: rgba(254, 254, 254, 0.60);
    font-size: 10px;
    margin: 0px;
}

    .notification button.closeIcon {
        background: transparent;
        padding: 0px;
        border: none;
        align-self: flex-start;
    }

.notification button.closeIcon img {
    background: transparent;
    padding: 0px;
    border: none;
}