Notifications {
    position: absolute;
    top: 50px;
    right: 50px;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    
    z-index: 500;
    
    .notification {
        padding: 10px;
        background-color: rgba(0, 0, 0, 0.8);
        border-radius: 5px;
        color: white;
        font-size: 30px;
        font-family: Roboto;
        display: flex;
        align-items: center;
        gap: 10px;
        flex-direction: row-reverse;
        
        .icon {
            font-size: 30px;
        }
        
        &:intro {
            animation: slideIn 0.5s;
        }
        
        &:outro {
            animation: slideOut 0.5s;
        }
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(100%);
    }
}