.whatsapp-button {
	position: fixed;
	right: 13px;
	bottom: 90px;
	transform: translate(-50%, -50%);
	background: #25D366; /*цвет кнопки*/
	border-radius: 50%;
	width: 55px; /*ширина кнопки*/
	height: 55px; /*высота кнопки*/
	color: #fff;
	text-align: center;
	line-height: 53px; /*центровка иконки в кнопке*/
	font-size: 35px; /*размер иконки*/
	z-index: 9999;
}
.whatsapp-button a {
	color: #fff;
}
.whatsapp-button:before,
.whatsapp-button:after {
	content: " ";
	display: block;
	position: absolute;
	border: 50%;
	border: 1px solid #25D366; /*цвет анимированных волн от кнопки*/
	left: -20px;
	right: -20px;
	top: -20px;
	bottom: -20px;
	border-radius: 50%;
	animation: animate 1.5s linear infinite;
	opacity: 0;
	backface-visibility: hidden; 
}

.whatsapp-button:after{
	animation-delay: .5s;
}

@keyframes animate
{
	0%
	{
        transform: scale(0.5);
        opacity: 0;
	}
	50%
	{
        opacity: 1;
	}
	100%
	{
        transform: scale(1.2);
        opacity: 0;
	}
}
@media (max-width : 800px) {  
	.whatsapp-button {   
		bottom: 5px; /*отступ кнопки снизу от экрана*/
	}
	
}

@import url('https://fonts.googleapis.com/css?family=Roboto');

.nav-bottom {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-content: flex-end;
	width: auto;
	height: auto;
	position: fixed;
	z-index: 999999999999999;
	bottom: 80px;
	right: 20px;
	padding: 5px;
	margin: 0px;
}

.whatsapp-button {
	z-index: 999999999;
	outline: none;
	cursor: pointer;
}

.popup-whatsapp {
	display: none;
	position: absolute;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	min-width: 300px;
	width: auto;
	height: auto;
	padding: 16px;
	bottom: 100px;
	right: 10px;
	transition: .5s;
	border-radius: 10px;
	background-color: rgb(255, 255, 255);
	animation: slideInRight .6s 0.0s both;
	box-shadow: 0 16px 34px -10px rgba(0, 0, 0, 0.46);
}

.content-whatsapp {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.content-whatsapp p {
	color: rgb(88, 88, 88);
	font-family: 'Roboto';
	font-weight: 400;
	font-size: 1.0em;
}

.closePopup {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 28px;
	height: 28px;
	margin: 0px 0px 15px 0px;
	border-radius: 50%;
	border: none;
	outline: none;
	cursor: pointer;
	background-color: rgb(247, 96, 96);
}

.is-active-whatsapp-popup {
	display: flex;
	animation: slideInRight .6s 0.0s both;
}

input#whats-in {
	background-color: #f3f3f3;
	outline: none;
	border: none;
	border-radius: 6px;
	overflow: auto;
	margin: 0px;
	width: auto;
	resize: none;
	padding: 11px;
}

.icon-whatsapp-small {
	width: 24px;
	height: 24px;
}

.icon-whatsapp {
	width: 45px;
	height: 45px;
}

.icon-font-color {
	color: #ffffff
}

.icon-font-color--black {
	color: #333333
}

i.material-icons.icon-font-color--black {
	color: #2cb742 !important;
	font-style: normal;
	font-size: 24px;
	margin-left: 5px;
}

button#send-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	background-color: #f3f3f3;
	margin: 11px 0px 0px 5px;
	border: none;
	outline: none;
	cursor: pointer;
	border-radius: 50px;
	color: white !important;
}

@media screen and (max-width: 768px) {
	.popup-whatsapp {
		min-width: auto !important;
		width: auto !important;
		height: auto !important;
	}
	
	.nav-bottom {
		width: auto !important;
		height: auto !important;
		bottom: 0px !important;
		right: 10px !important;
	}
}

.popup-whatsapp:before {
	content: '';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	right: 26px;
	z-index: 0;
	border: 10px solid rgba(255, 255, 255, 0);
	border-top: 10px solid #feffff;
	bottom: -20px;
}