/* CSS Multiple Whatsapp Chat */
#whatsapp-chat {
	cursor: default !important;
	box-sizing: border-box !important;
	outline: none !important;
	position: fixed;
	width: 350px;
	border-radius: 10px;
	box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
	bottom: 100px;
	right: 30px;
	overflow: hidden;
	z-index: 99;
	animation-name: showchat;
	animation-duration: 1s;
	transform: scale(1);
	-webkit-user-select: none; /* Safari */
	-ms-user-select: none; /* IE 10 and IE 11 */
	user-select: none; /* Standard syntax */
}
a.whatsapp-button {
	position: fixed;
	display: flex;
	z-index: 98;
	bottom: 30px;
	right: 31px;
	font-size: 15px;
	background: #25d366;
	border-radius: 50%;
	padding: 16px;
	box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
}
a.whatsapp-button svg {
	transform: scale(1.4);
}

a.whatsapp-button.with-text {
	color: #404040;
	font-weight: 400;
	background: #fff !important;
	justify-content: space-between;
	padding: 10px 20px;
	border-radius: 20px !important;
	right: 30px !important;
	text-decoration: none !important;
}

a.whatsapp-button.with-text svg {
	transform: scale(1.2) !important;
	margin: 0 10px 0 0;
}

.whatsapp-chat-header {
	background: #095e54;
	color: #fff;
	padding: 10px 20px 20px 20px;
}
.whatsapp-chat-header h3 {
	margin: 0 0 10px;
}
.whatsapp-chat-header p {
	font-size: 14px;
	line-height: 1.7;
	margin: -10px;
}
.whatsapp-chat-header .whatsapp-chat-name {
	font-size: 16px;
	font-weight: 600;
	padding-bottom: 0;
	margin-bottom: 0;
	line-height: 0.5;
}
.whatsapp-chat-avatar {
	position: relative;
}
.whatsapp-chat-avatar::after {
	content: '';
	bottom: 0px;
	right: 0px;
	width: 14px;
	height: 14px;
	box-sizing: border-box;
	display: block;
	position: relative;
	z-index: 1;
	border-radius: 50%;
	border: 2px solid #095e54;
	left: 39px;
	top: 37px;
}

.whatsapp-chat-avatar.status-online::after {
	background-color: #4ad504;
}

.whatsapp-chat-avatar.status-offline::after {
	background-color: #f1f1f1;
}

.whatsapp-chat-avatar img {
	border-radius: 100%;
	width: 50px;
	min-width: 50px;
	height: 50px;
	min-height: 50px;
	float: left;
	margin: 0 10px 0 0;
}
.info-chat span {
	display: block;
}
span.my-number {
	display: none;
}
.blanter-msg {
	color: #444;
	padding: 2px;
	font-size: 12.5px;
	text-align: center;
	border-top: 1px solid #ddd;
	background-color: #ffffff;
}

textarea#chat-input {
	border: none;
	font-family: 'Arial', sans-serif;
	width: 100%;
	height: 40px;
	outline: none;
	resize: none;
	padding: 10px;
	font-size: 14px;
}
a#send-it {
	width: 40px;
	font-weight: 700;
	padding: 10px 10px 0;
	/* background: #eee; */
	border-radius: 10px;
}
a#send-it svg {
	fill: #a6a6a6;
	height: 24px;
	width: 24px;
}
.first-msg {
	background: transparent;
	padding: 30px;
	text-align: center;
}
.first-msg span {
	background: #e2e2e2;
	color: #333;
	font-size: 14.2px;
	line-height: 1.7;
	border-radius: 10px;
	padding: 15px 20px;
	display: inline-block;
}
.start-chat .blanter-msg {
	display: flex;
}
#get-number {
	display: none;
}
a.close-chat {
	position: absolute;
	top: 10px;
	right: 15px;
	color: #fff;
	font-size: 30px;
}
@keyframes ZpjSY {
	0% {
		background-color: #b6b5ba;
	}
	15% {
		background-color: #111;
	}
	25% {
		background-color: #b6b5ba;
	}
}
@keyframes hPhMsj {
	15% {
		background-color: #b6b5ba;
	}
	25% {
		background-color: #111;
	}
	35% {
		background-color: #b6b5ba;
	}
}
@keyframes iUMejp {
	25% {
		background-color: #b6b5ba;
	}
	35% {
		background-color: #111;
	}
	45% {
		background-color: #b6b5ba;
	}
}
@keyframes showhide {
	from {
		transform: scale(0.5);
		opacity: 0;
	}
}
@keyframes showchat {
	from {
		transform: scale(0);
		opacity: 0;
	}
}
@media screen and (max-width: 480px) {
	#whatsapp-chat {
		width: auto;
		left: 5%;
		right: 5%;
		font-size: 80%;
	}
}
.hide {
	display: none;
	animation-name: showhide;
	animation-duration: 0.5s;
	transform: scale(1);
	opacity: 1;
}
.show {
	display: block;
	animation-name: showhide;
	animation-duration: 0.5s;
	transform: scale(1);
	opacity: 1;
}
.whatsapp-message-container {
	display: flex;
	z-index: 1;
}
.whatsapp-message {
	padding: 7px 14px 6px;
	background-color: #fff;
	border-radius: 0px 8px 8px;
	position: relative;
	transition: all 0.3s ease 0s;
	opacity: 0;
	transform-origin: center top 0px;
	z-index: 2;
	box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
	margin-top: 4px;
	margin-left: -54px;
	max-width: calc(100% - 66px);
}
.whatsapp-chat-body {
	padding: 20px 20px 20px 10px;
	background-color: #e6ddd4;
	position: relative;
}
.whatsapp-chat-body::before {
	display: block;
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	height: 100%;
	width: 100%;
	z-index: 0;
	opacity: 0.08;
}

.dAbFpq {
	display: flex;
	z-index: 1;
}
.eJJEeC {
	background-color: #fff;
	width: 52.5px;
	height: 32px;
	border-radius: 16px;
	display: flex;
	-moz-box-pack: center;
	justify-content: center;
	-moz-box-align: center;
	align-items: center;
	margin-left: 10px;
	opacity: 0;
	transition: all 0.1s ease 0s;
	z-index: 1;
	box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
}
.hFENyl {
	position: relative;
	display: flex;
}
.ixsrax {
	height: 5px;
	width: 5px;
	margin: 0px 2px;
	border-radius: 50%;
	display: inline-block;
	position: relative;
	animation-duration: 1.2s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	top: 0px;
	background-color: #9e9da2;
	animation-name: ZpjSY;
}
.dRvxoz {
	height: 5px;
	width: 5px;
	margin: 0px 2px;
	background-color: #b6b5ba;
	border-radius: 50%;
	display: inline-block;
	position: relative;
	animation-duration: 1.2s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	top: 0px;
	animation-name: hPhMsj;
}
.kAZgZq {
	padding: 7px 14px 6px;
	background-color: #fff;
	border-radius: 0px 8px 8px;
	position: relative;
	transition: all 0.3s ease 0s;
	opacity: 0;
	transform-origin: center top 0px;
	z-index: 2;
	box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
	margin-top: 4px;
	margin-left: -54px;
	max-width: calc(100% - 66px);
}
.kAZgZq::before {
	position: absolute;
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAmCAMAAADp2asXAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAACQUExURUxpccPDw9ra2m9vbwAAAAAAADExMf///wAAABoaGk9PT7q6uqurqwsLCycnJz4+PtDQ0JycnIyMjPf3915eXvz8/E9PT/39/RMTE4CAgAAAAJqamv////////r6+u/v7yUlJeXl5f///5ycnOXl5XNzc/Hx8f///xUVFf///+zs7P///+bm5gAAAM7Ozv///2fVensAAAAvdFJOUwCow1cBCCnqAhNAnY0WIDW2f2/hSeo99g1lBYT87vDXG8/6d8oL4sgM5szrkgl660OiZwAAAHRJREFUKM/ty7cSggAABNFVUQFzwizmjPz/39k4YuFWtm55bw7eHR6ny63+alnswT3/rIDzUSC7CrAziPYCJCsB+gbVkgDtVIDh+DsE9OTBpCtAbSBAZSEQNgWIygJ0RgJMDWYNAdYbAeKtAHODlkHIv997AkLqIVOXVU84AAAAAElFTkSuQmCC');
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: contain;
	content: '';
	top: 0px;
	left: -12px;
	width: 12px;
	height: 19px;
}

.bMIBDo {
	font-size: 13px;
	font-weight: bold;
	line-height: 18px;
	color: rgba(0, 0, 0, 0.4);
}
.iSpIQi {
	font-size: 13px;
	line-height: 16px !important;
	margin-top: 4px;
	color: #111;
}
.cqCDVm {
	text-align: right;
	margin-top: 4px;
	font-size: 12px;
	line-height: 16px;
	color: rgba(17, 17, 17, 0.5);
	margin-right: -8px;
	margin-bottom: -4px;
}

.cbh-phone {
	display: block;
	position: fixed;
	left: -50px;
	bottom: -55px;
	visibility: hidden;
	background-color: transparent;
	width: 200px;
	height: 200px;
	cursor: pointer;
	z-index: 999;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	-webkit-transition: visibility 0.5s;
	-moz-transition: visibility 0.5s;
	-o-transition: visibility 0.5s;
	transition: visibility 0.5s;
}
.cbh-phone.cbh-show {
	visibility: visible;
}
@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		-ms-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
}
@-webkit-keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@-webkit-keyframes fadeOutRight {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}
@keyframes fadeOutRight {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		-ms-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}
.fadeOutRight {
	-webkit-animation-name: fadeOutRight;
	animation-name: fadeOutRight;
}
.cbh-phone.cbh-static1 {
	opacity: 0.6;
}
.cbh-phone.cbh-hover1 {
	opacity: 1;
}
.cbh-ph-circle {
	width: 110px;
	height: 110px;
	top: 40px;
	left: 40px;
	position: absolute;
	background-color: transparent;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	border: 2px solid rgba(30, 30, 30, 0.4);
	opacity: 0.1;
	-webkit-animation: cbh-circle-anim 1.2s infinite ease-in-out;
	-moz-animation: cbh-circle-anim 1.2s infinite ease-in-out;
	-ms-animation: cbh-circle-anim 1.2s infinite ease-in-out;
	-o-animation: cbh-circle-anim 1.2s infinite ease-in-out;
	animation: cbh-circle-anim 1.2s infinite ease-in-out;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.cbh-phone.cbh-active .cbh-ph-circle1 {
	-webkit-animation: cbh-circle-anim 1.1s infinite ease-in-out !important;
	-moz-animation: cbh-circle-anim 1.1s infinite ease-in-out !important;
	-ms-animation: cbh-circle-anim 1.1s infinite ease-in-out !important;
	-o-animation: cbh-circle-anim 1.1s infinite ease-in-out !important;
	animation: cbh-circle-anim 1.1s infinite ease-in-out !important;
}
.cbh-phone.cbh-static .cbh-ph-circle {
	-webkit-animation: cbh-circle-anim 2.2s infinite ease-in-out !important;
	-moz-animation: cbh-circle-anim 2.2s infinite ease-in-out !important;
	-ms-animation: cbh-circle-anim 2.2s infinite ease-in-out !important;
	-o-animation: cbh-circle-anim 2.2s infinite ease-in-out !important;
	animation: cbh-circle-anim 2.2s infinite ease-in-out !important;
}
.cbh-phone.cbh-hover .cbh-ph-circle {
	border-color: rgba(0, 175, 242, 1);
	opacity: 0.5;
}
.cbh-phone.cbh-green.cbh-hover .cbh-ph-circle {
	border-color: rgba(117, 235, 80, 1);
	opacity: 0.5;
}
.cbh-phone.cbh-green .cbh-ph-circle {
	border-color: rgba(0, 175, 242, 1);
	opacity: 0.5;
}
.cbh-phone.cbh-gray.cbh-hover .cbh-ph-circle {
	border-color: rgba(204, 204, 204, 1);
	opacity: 0.5;
}
.cbh-phone.cbh-gray .cbh-ph-circle {
	border-color: rgba(117, 235, 80, 1);
	opacity: 0.5;
}
.cbh-ph-circle-fill {
	width: 74px;
	height: 74px;
	top: 58px;
	left: 58px;
	position: absolute;
	background-color: #000;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	border: 2px solid transparent;
	opacity: 0.1;
	-webkit-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;
	-moz-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;
	-ms-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;
	-o-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;
	animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.cbh-phone.cbh-active .cbh-ph-circle-fill {
	-webkit-animation: cbh-circle-fill-anim 1.7s infinite ease-in-out !important;
	-moz-animation: cbh-circle-fill-anim 1.7s infinite ease-in-out !important;
	-ms-animation: cbh-circle-fill-anim 1.7s infinite ease-in-out !important;
	-o-animation: cbh-circle-fill-anim 1.7s infinite ease-in-out !important;
	animation: cbh-circle-fill-anim 1.7s infinite ease-in-out !important;
}
.cbh-phone.cbh-static .cbh-ph-circle-fill {
	-webkit-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out !important;
	-moz-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out !important;
	-ms-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out !important;
	-o-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out !important;
	animation: cbh-circle-fill-anim 2.3s infinite ease-in-out !important;
	opacity: 0 !important;
}
.cbh-phone.cbh-hover .cbh-ph-circle-fill {
	background-color: rgba(0, 175, 242, 0.5);
	opacity: 0.75 !important;
}
.cbh-phone.cbh-green.cbh-hover .cbh-ph-circle-fill {
	background-color: rgba(117, 235, 80, 0.5);
	opacity: 0.75 !important;
}
.cbh-phone.cbh-green .cbh-ph-circle-fill {
	background-color: rgba(0, 175, 242, 0.5);
	opacity: 0.75 !important;
}
.cbh-phone.cbh-gray.cbh-hover .cbh-ph-circle-fill {
	background-color: rgba(204, 204, 204, 0.5);
	opacity: 0.75 !important;
}
.cbh-phone.cbh-gray .cbh-ph-circle-fill {
	background-color: rgba(117, 235, 80, 0.5);
	opacity: 1 !important;
}
.cbh-ph-img-circle1 {
	width: 50px;
	height: 50px;
	top: 70px;
	left: 70px;
	position: absolute;
	background-image: url(/whatsapp/image/whatsapp/wpp-icon.png);
	background-size: 40px 40px;
	background-color: rgba(30, 30, 30, 0.1);
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	border: 2px solid transparent;
	opacity: 1;
	-webkit-animation: cbh-circle-img-anim 1s infinite ease-in-out;
	-moz-animation: cbh-circle-img-anim 1s infinite ease-in-out;
	-ms-animation: cbh-circle-img-anim 1s infinite ease-in-out;
	-o-animation: cbh-circle-img-anim 1s infinite ease-in-out;
	animation: cbh-circle-img-anim 1s infinite ease-in-out;
}
.cbh-phone.cbh-active .cbh-ph-img-circle1 {
	-webkit-animation: cbh-circle-img-anim 1s infinite ease-in-out !important;
	-moz-animation: cbh-circle-img-anim 1s infinite ease-in-out !important;
	-ms-animation: cbh-circle-img-anim 1s infinite ease-in-out !important;
	-o-animation: cbh-circle-img-anim 1s infinite ease-in-out !important;
	animation: cbh-circle-img-anim 1s infinite ease-in-out !important;
}
.cbh-phone.cbh-static .cbh-ph-img-circle1 {
	-webkit-animation: cbh-circle-img-anim 0s infinite ease-in-out !important;
	-moz-animation: cbh-circle-img-anim 0s infinite ease-in-out !important;
	-ms-animation: cbh-circle-img-anim 0s infinite ease-in-out !important;
	-o-animation: cbh-circle-img-anim 0s infinite ease-in-out !important;
	animation: cbh-circle-img-anim 0s infinite ease-in-out !important;
}
.cbh-phone.cbh-hover .cbh-ph-img-circle1 {
	background-color: rgba(0, 175, 242, 1);
}
.cbh-phone.cbh-green.cbh-hover .cbh-ph-img-circle1:hover {
	background-color: rgba(117, 235, 80, 1);
}
.cbh-phone.cbh-green .cbh-ph-img-circle1 {
	background-color: rgba(0, 175, 242, 1);
}
.cbh-phone.cbh-green .cbh-ph-img-circle1 {
	background-color: rgba(0, 175, 242, 1);
}
.cbh-phone.cbh-gray.cbh-hover .cbh-ph-img-circle1 {
	background-color: rgba(204, 204, 204, 1);
}
.cbh-phone.cbh-gray .cbh-ph-img-circle1 {
	background-color: rgba(117, 235, 80, 1);
}
@-moz-keyframes cbh-circle-anim {
	0% {
		-moz-transform: rotate(0deg) scale(0.5) skew(1deg);
		opacity: 0.1;
		-moz-opacity: 0.1;
		-webkit-opacity: 0.1;
		-o-opacity: 0.1;
	}
	30% {
		-moz-transform: rotate(0deg) scale(0.7) skew(1deg);
		opacity: 0.5;
		-moz-opacity: 0.5;
		-webkit-opacity: 0.5;
		-o-opacity: 0.5;
	}
	100% {
		-moz-transform: rotate(0deg) scale(1) skew(1deg);
		opacity: 0.6;
		-moz-opacity: 0.6;
		-webkit-opacity: 0.6;
		-o-opacity: 0.1;
	}
}
@-webkit-keyframes cbh-circle-anim {
	0% {
		-webkit-transform: rotate(0deg) scale(0.5) skew(1deg);
		-webkit-opacity: 0.1;
	}
	30% {
		-webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
		-webkit-opacity: 0.5;
	}
	100% {
		-webkit-transform: rotate(0deg) scale(1) skew(1deg);
		-webkit-opacity: 0.1;
	}
}
@-o-keyframes cbh-circle-anim {
	0% {
		-o-transform: rotate(0deg) kscale(0.5) skew(1deg);
		-o-opacity: 0.1;
	}
	30% {
		-o-transform: rotate(0deg) scale(0.7) skew(1deg);
		-o-opacity: 0.5;
	}
	100% {
		-o-transform: rotate(0deg) scale(1) skew(1deg);
		-o-opacity: 0.1;
	}
}
@keyframes cbh-circle-anim {
	0% {
		transform: rotate(0deg) scale(0.5) skew(1deg);
		opacity: 0.1;
	}
	30% {
		transform: rotate(0deg) scale(0.7) skew(1deg);
		opacity: 0.5;
	}
	100% {
		transform: rotate(0deg) scale(1) skew(1deg);
		opacity: 0.1;
	}
}
@-moz-keyframes cbh-circle-fill-anim {
	0% {
		-moz-transform: rotate(0deg) scale(0.7) skew(1deg);
		opacity: 0.2;
	}
	50% {
		-moz-transform: rotate(0deg) -moz-scale(1) skew(1deg);
		opacity: 0.2;
	}
	100% {
		-moz-transform: rotate(0deg) scale(0.7) skew(1deg);
		opacity: 0.2;
	}
}
@-webkit-keyframes cbh-circle-fill-anim {
	0% {
		-webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
		opacity: 0.2;
	}
	50% {
		-webkit-transform: rotate(0deg) scale(1) skew(1deg);
		opacity: 0.2;
	}
	100% {
		-webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
		opacity: 0.2;
	}
}
@-o-keyframes cbh-circle-fill-anim {
	0% {
		-o-transform: rotate(0deg) scale(0.7) skew(1deg);
		opacity: 0.2;
	}
	50% {
		-o-transform: rotate(0deg) scale(1) skew(1deg);
		opacity: 0.2;
	}
	100% {
		-o-transform: rotate(0deg) scale(0.7) skew(1deg);
		opacity: 0.2;
	}
}
@keyframes cbh-circle-fill-anim {
	0% {
		transform: rotate(0deg) scale(0.7) skew(1deg);
		opacity: 0.2;
	}
	50% {
		transform: rotate(0deg) scale(1) skew(1deg);
		opacity: 0.2;
	}
	100% {
		transform: rotate(0deg) scale(0.7) skew(1deg);
		opacity: 0.2;
	}
}
@keyframes cbh-circle-img-anim {
	0% {
		transform: rotate(0deg) scale(1) skew(1deg);
	}
	10% {
		transform: rotate(-25deg) scale(1) skew(1deg);
	}
	20% {
		transform: rotate(25deg) scale(1) skew(1deg);
	}
	30% {
		transform: rotate(-25deg) scale(1) skew(1deg);
	}
	40% {
		transform: rotate(25deg) scale(1) skew(1deg);
	}
	100%,
	50% {
		transform: rotate(0deg) scale(1) skew(1deg);
	}
}
@-moz-keyframes cbh-circle-img-anim {
	0% {
		transform: rotate(0deg) scale(1) skew(1deg);
	}
	10% {
		-moz-transform: rotate(-25deg) scale(1) skew(1deg);
	}
	20% {
		-moz-transform: rotate(25deg) scale(1) skew(1deg);
	}
	30% {
		-moz-transform: rotate(-25deg) scale(1) skew(1deg);
	}
	40% {
		-moz-transform: rotate(25deg) scale(1) skew(1deg);
	}
	100%,
	50% {
		-moz-transform: rotate(0deg) scale(1) skew(1deg);
	}
}
@-webkit-keyframes cbh-circle-img-anim {
	0% {
		-webkit-transform: rotate(0deg) scale(1) skew(1deg);
	}
	10% {
		-webkit-transform: rotate(-25deg) scale(1) skew(1deg);
	}
	20% {
		-webkit-transform: rotate(25deg) scale(1) skew(1deg);
	}
	30% {
		-webkit-transform: rotate(-25deg) scale(1) skew(1deg);
	}
	40% {
		-webkit-transform: rotate(25deg) scale(1) skew(1deg);
	}
	100%,
	50% {
		-webkit-transform: rotate(0deg) scale(1) skew(1deg);
	}
}
@-o-keyframes cbh-circle-img-anim {
	0% {
		-o-transform: rotate(0deg) scale(1) skew(1deg);
	}
	10% {
		-o-transform: rotate(-25deg) scale(1) skew(1deg);
	}
	20% {
		-o-transform: rotate(25deg) scale(1) skew(1deg);
	}
	30% {
		-o-transform: rotate(-25deg) scale(1) skew(1deg);
	}
	40% {
		-o-transform: rotate(25deg) scale(1) skew(1deg);
	}
	100%,
	50% {
		-o-transform: rotate(0deg) scale(1) skew(1deg);
	}
}
.cbh-ph-img-circle1 {
}
.cbh-phone.cbh-green .cbh-ph-circle {
	border-color: rgb(0, 242, 164);
}
.cbh-phone.cbh-green .cbh-ph-circle-fill {
	background-color: rgb(0, 242, 164);
}
.cbh-phone.cbh-green .cbh-ph-img-circle1 {
	background-color: rgb(46, 203, 113);
}

.kmacb__manager-border {
	position: absolute;
	width: 75px;
	height: 75px;
	top: 50%;
	left: 50%;
	margin-top: -39.5px;
	margin-left: -39.5px;
	border-radius: 100%;
	border: 2px solid #ffe787;
	-webkit-animation: kmacb__manager-border-anim 1.5s ease-in-out 0.5s infinite;
	-moz-animation: kmacb__manager-border-anim 1.5s ease-in-out 0.5s infinite;
	-ms-animation: kmacb__manager-border-anim 1.5s ease-in-out 0.5s infinite;
	-o-animation: kmacb__manager-border-anim 1.5s ease-in-out 0.5s infinite;
	animation: kmacb__manager-border-anim 1.5s ease-in-out 0.5s infinite;
	opacity: 0.8;
	transform-origin: center;
}
.kmacb__manager-fill {
	background: #52aff7 center bottom no-repeat;
	position: absolute;
	width: 75px;
	height: 75px;
	top: 50%;
	left: 50%;
	margin-top: -37.5px;
	margin-left: -37.5px;
	border-radius: 100%;
	opacity: 0.5;
	-webkit-animation: kmacb__manager-fill-anim 1.5s ease-in-out infinite;
	-moz-animation: kmacb__manager-fill-anim 1.5s ease-in-out infinite;
	-ms-animation: kmacb__manager-fill-anim 1.5s ease-in-out infinite;
	-o-animation: kmacb__manager-fill-anim 1.5s ease-in-out infinite;
	animation: kmacb__manager-fill-anim 1.5s ease-in-out infinite;
	transform-origin: center;
}
.kmacb__manager-circle {
	background: #52aff7;
	position: absolute;
	width: 120px;
	height: 120px;
	top: 50%;
	left: 50%;
	margin-top: -60px;
	margin-left: -60px;
	border-radius: 100%;
}
