.whatsapp-bt {
	position: absolute;
	z-index: 99;
	top: 52px;
}

.whatsapp-bt:hover a i {
	color: #fff;
}

.call-btn {
	position: fixed;
	top: 50%;
	left: 0;
	z-index: 99;
}

.meeting-btn {
	position: absolute;
	top: -132px;
	left: -79px;
	z-index: 99;
	transform: rotate(-90deg) translateX(0%);
}

.call-icon {
	background: #0c009d;
	border-radius: 5px;
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	font-size: 18px;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.meeting-icon {
	background: #1d9c19;
	border-radius: 0px 0px 5px 5px;
	width: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 0 12px;
	font-size: 19px;
	line-height: 20px;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	color: #fff;
}

.call-icon i {
	color: #fff;
	animation: phoneani 1s ease infinite;
	font-size: 16px;
	margin: 0;
}

.meeting-icon i {
	color: #fff;
	animation: phoneani 1s ease infinite;
	font-size: 16px;
	margin: 0;
}

@keyframes phoneani {
	0% {
		transform: translateX(0%);
	}

	15% {
		transform: translateX(-12%) rotate(-5deg);
	}

	30% {
		transform: translateX(10%) rotate(3deg);
	}

	45% {
		transform: translateX(-8%) rotate(-3deg);
	}

	60% {
		transform: translateX(6%) rotate(2deg);
	}

	75% {
		transform: translateX(-3%) rotate(-1deg);
	}

	100% {
		transform: translateX(0%);
	}
}

.whatsapp_click {
	height: 42px;
	width: 42px;
	z-index: 11;
	opacity: 1;
	overflow: hidden;
	pointer-events: all;
	cursor: pointer;
	box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .06), 0 2px 32px 0 rgba(0, 0, 0, .16);
	background: #27b336;
	border-radius: 8px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	color: #27b336;
}

.whatsapp_click i {
	color: #fff;
	font-size: 22px;
	animation: phoneani 1s ease infinite;
}