/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/


.play-video i {
	position: absolute;
	padding-left: 5px;
	top: 50%;
	left: 50%;
	width: 80px;
	height: 80px;

	line-height: 81px;
	border-radius: 50%;
	z-index: 1;
	background-color: var(--cnvs-themecolor, #267DF4);
	text-align: center;
	font-size: 24px;
	color: #FFF;
	margin-top: -40px;
	margin-left: -40px;
	transition: transform .3s ease-out;
	-webkit-backface-visibility: hidden;
}

.play-video:hover i {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

.floating_whatsapp {
	position: fixed;
	bottom: 15px;
	right: 15px;
	width: 100px;
	height: 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 1000;
}

@keyframes pulsing {
	to {
		box-shadow: 0 0 0 15px rgba(68, 11, 162, 0);
	}
}

.wa-float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 40px;
	right: 40px;
	background-color: #1bd741;
	color: #fff;
	border-radius: 50px;
	text-align: center;
	padding-top: 5px;
	font-size: 35px;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.33);
	z-index: 100;
}

.contact_icon {
	background-color: #27cb06;
	color: #fff;
	width: 80px;
	height: 80px;
	font-size: 40px;
	border-radius: 60px;
	text-align: center;
	box-shadow: 2px 2px 3px #999;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translatey(0px);
	animation: pulse 2.5s infinite;
	box-shadow: 0 0 0 0 #27cb06;
	-webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
	-moz-animation: pulsing 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
	-ms-animation: pulsing 2s infinite cubic-bezier(0.66, 0, 0, 1);
	animation: pulsing 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
	text-decoration: none !important;
	transition: all 300ms ease-in-out;
}