@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.notifications {
    width: 15%;

    position: fixed;
    bottom: 0;
    right: 0;

    background-color: unset;

    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.notification {
    position: relative;

    width: calc(100% - 2rem);
    padding: 1rem;

    background-color: var(--accent-color);
    border-radius: 0.5rem;

    transition: transform 0.25s ease-in-out 0s;
    animation: 0.25s linear fadein;
}

.notification-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-title-color);
}

.notification-message {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-paragraph-color);
}

.notification:hover > .close-notification {
    opacity: 100%;
    transition: opacity 0.25s ease;
}

.close-notification {
    opacity: 0;
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;

    width: 1.5rem;
    height: 1.5rem;

    cursor: pointer;
}