/**
 * WeMake: плавающая кнопка WhatsApp (как на fasadpanel.kz)
 */
.wemake-whatsup {
	position: fixed;
	left: 100px;
	bottom: 50px;
	display: grid;
	align-items: center;
	justify-content: center;
	width: 55px;
	height: 55px;
	border-radius: 123px;
	background-color: #62bd19;
	animation: wemake-pulse-animation 2s infinite;
	z-index: 100;
	text-decoration: none;
	line-height: 0;
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
}

.wemake-whatsup:hover,
.wemake-whatsup:focus {
	background-color: #57a816;
	text-decoration: none;
}

.wemake-whatsup:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

.wemake-whatsup svg {
	display: block;
	width: 33px;
	height: 33px;
}

@keyframes wemake-pulse-animation {
	0% {
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
	}
	100% {
		box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
	}
}

@media (max-width: 600px) {
	.wemake-whatsup {
		bottom: 15px;
		left: 15px;
	}
}

/* Не пересекаться с кнопкой «Вверх» справа */
@media (max-width: 600px) {
	.top-button {
		right: 16px;
		bottom: 20px;
	}
}
