/*do magic*/
.ccs-whatsapp {
	position: fixed;
	bottom: 60px;
	right: 30px;
	background-color: #25d366;
	width: 60px;
	height: 60px;
	border-radius: 100%;
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
	transition: all 0.1s ease 0s;
	transform: scale(0);
	z-index: 9;
}

.ccs-whatsapp.show {
	transform: scale(1);
}

.ccs-whatsapp:hover {
	background-color: #000000;
}

.ccs-whatsapp a {
	color: #fff !important;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	font-size: 40px;
}