.fixed-contact-tooltip:before {
	content: '';
	position: absolute;
	bottom: -6px;
	right: 21px;
	width: 12px;
	height: 12px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	border-radius: 0 0 4px 0;
	background-color: inherit;
}

.fixed-contact-tooltip{position: absolute; right: 80px; bottom: 0%; margin-bottom: 15px; z-index: 1; background-color: #fff; border-radius: 4px; box-shadow: 0 3px 20px rgba(25, 63, 125, 0.15); pointer-events: none; color: #989cad; padding: 10px 15px; font-size: 14px; font-weight: 500; line-height: 1.6; white-space: nowrap;}

.cta-phone {
	font-size: 20px;
	color: #ffffff;
	background: dodgerblue;
	box-shadow: 0 2px 5px rgba(255, 255, 255, 0.25), 0 5px 15px rgba(255, 185, 49, 0.35);
	height: 54px;
	width: 54px;
	display: block;
	border-radius: 100%;
	line-height: 54px !important;
	position: relative;
	z-index: 2;
	text-align: center;
	transition: background 0.2s ease-in-out, box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
	transform: scale(1);
}
.cta-phone:hover {
	font-size: 22px;
	color: #ffffff !important;
}
@keyframes pulse {
	0% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(30, 144, 255, 0.7);
	}
	70% {
		transform: scale(1.1);
		box-shadow: 0 0 0 10px rgba(30, 144, 255, 0);
	}
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(30, 144, 255, 0);
	}
}

.pulse {
	animation: pulse 2s infinite;
}
