override func setHighlighted(_ highlighted: Bool, animated: Bool) {
super.setHighlighted(highlighted, animated: animated)
if highlighted {
self.contentView.layer.opacity = 0.8
} else {
self.contentView.layer.opacity = 1
}
}