.wa {
	position: fixed;
	width: 60px;
	height: 60px;
	/*bottom: 40px;
	right: 40px;*/
	bottom: 10vh !important;
	right: 2vh !important;
	background-color: #25d366;
	color: #FFF;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 3px #999;
	z-index: 100;
}

.wa-float {
	margin-top: 16px;
}

.wa-text {
	margin-right: 70px;
	position: fixed;
	width: 170px;
	height: 30px;
	/*bottom: 50px;
	right: 40px;*/
	bottom: 12vh !important;
	right: 2vh !important;
	background-color: #FFF;
	color: #25d366;
	border-radius: 50px;
	text-align: center;
	font-size: 20px;
	box-shadow: 2px 2px 3px #999;
	z-index: 100;
	-webkit-animation: fadeinout 4s linear forwards;
	animation: fadeinout 4s linear forwards infinite;
	opacity: 0;
}

.chat {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 18vh !important;
	right: 2vh !important;
	background-color: #25d366;
	color: #FFF;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 3px #999;
	z-index: 200;
	opacity: 1;
	margin-bottom: 15px;
}

.chat-float {
	margin-top: 16px;
}

.chat-text {
	margin-right: 70px;
	position: fixed;
	width: 110px;
	height: 30px;
	bottom: 19vh !important;
	right: 2vh !important;
	background-color: #FFF;
	color: #25d366;
	border-radius: 50px;
	text-align: center;
	font-size: 20px;
	box-shadow: 2px 2px 3px #999;
	z-index: 200;
	-webkit-animation: fadeinout 4s linear forwards;
	animation: fadeinout 4s linear forwards infinite;
	opacity: 0;
	margin-bottom: 20px;
}

.text-to-blink {
	display: inline-block;
	-webkit-animation: fadeinout 4s linear forwards;
	animation: fadeinout 4s linear forwards infinite;
	opacity: 0;
}

@-webkit-keyframes fadeinout {
	50% {
		opacity: 1;
	}
}

@keyframes fadeinout {
	50% {
		opacity: 1;
	}
}

@media only screen and (max-width: 360px) {
	.wa-text, .wa {
		right: 11vh !important;
	}

	.chat-text, .chat {
		right: 11vh !important;
	}

	.chat {
		bottom: 25 vh !important;
	}

	.chat-text {
		bottom: 22 vh !important;
	}
}