func hide(animated: Bool = true, duration: TimeInterval = 0.5) {
        if animated {
            UIView.animate(withDuration: duration) {
                self.forEach({ $0.alpha = 0 })
            }