/* whatsapp-button */

#whatsapp-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	position: fixed;
	bottom: 28px;
	right: 28px;
	z-index: 6;
	cursor: pointer;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	background: #25D366;
}
@media (max-width:580px) {
	#whatsapp-button {
		bottom: 14px;
		right: 14px;
	}
}
#whatsapp-button svg {
	width: 30px;
	fill: #ffffff;
}

/* whatsapp-form */

#whatsapp-form {
	padding: 20px;
	position: fixed;
	bottom: 100px;
	right: 28px;
	z-index: 6;
	border-radius: 10px;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
	background: #fff;
}
@media (max-width:580px) {
	#whatsapp-form {
		width: calc(100% - 40px);
		bottom: 90px;
		right: 20px;
	}
}
#whatsapp-form.hidden {
	display: none;
}
#whatsapp-form label {
	font-size: 15px;
	font-family: 'Arial';
	line-height: 1.2;
	display: block;
	margin: 15px 0 0;
}
#whatsapp-form label:first-child {
	margin: 0;
}
#whatsapp-form input {
	color: #888;
	font-size: 15px;
	font-family: 'Arial';
	width: 100%;
	margin: 5px 0 0;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 5px;
}
#whatsapp-form button {
	color: #fff;
	font-size: 15px;
	font-family: 'Arial';
	width: 100%;
	height: initial;
	margin: 15px 0 0;
	padding: 10px;
	cursor: pointer;
	border: none;
	border-radius: 5px;
	background: #25d366;
}