diff --git a/Pods/QAKit/QAKit/Source/Fingertips.swift b/Pods/QAKit/QAKit/Source/Fingertips.swift
index 5cd3c290859bbe06082a2bbf0ba58fd01481383c..00ed7cdb8222d2763c0157aa7fa35f4ad498e952 100644
--- a/Pods/QAKit/QAKit/Source/Fingertips.swift
+++ b/Pods/QAKit/QAKit/Source/Fingertips.swift
@@ -103,7 +103,7 @@ class FingertipsManager {
 			case .cancelled,
 				 .ended			:
 
-				UIView.animate(withDuration: 0.2, animations: { [weak self] in
+				UIView.animate(withDuration: 0.4, animations: { [weak self] in
 					self?.fingertipView(for: touch)?.alpha = 0
 				}, completion: { [weak self] (success: Bool) in
 					self?.fingertipView(for: touch)?.removeFromSuperview()
@@ -155,7 +155,7 @@ private class FingertipView												: UIView {
 		self.layer.cornerRadius = (self.frame.height / 2)
 		self.layer.masksToBounds = true
 		self.layer.borderWidth = 8
-		self.layer.borderColor = UIColor.black.withAlphaComponent(0.2).cgColor
-		self.backgroundColor = UIColor.white.withAlphaComponent(0.2)
+		self.layer.borderColor = UIColor.black.withAlphaComponent(0.7).cgColor
+		self.backgroundColor = UIColor.white.withAlphaComponent(0.7)
 	}
 }