.contact-buttons {
	position: fixed;
	bottom: 100px;
	right: 20px;
	z-index: 1799;
}
.buttons-container {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 14px;
}
.contact-btn {
	display: flex;
	align-items: center;
	text-decoration: none;
	position: relative;
	border: none;
	background: transparent;
	cursor: pointer;
	padding: 0;
	outline: none;
}
.contact-btn.hidden {
	opacity: 0;
	transform: translateY(15px);
	pointer-events: none;
	transition: all 0.3s ease;
}
.contact-btn.show {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
.btn-circle {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
}
.contact-btn:hover .btn-circle {
	transform: scale(1.1);
}
.phone-bg {
	background-color: #34B7F1;
}
.telegram-bg {
	background-color: #0088cc;
}
.viber-bg {
	background-color: #7360f2;
}
.whatsapp-bg {
	background-color: #25D366;
}
.chat-bg {
	background: black;
}
.btn-circle svg {
	width: 28px;
	height: 28px;
}
.toggle-inner {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.4s ease;
}
.icon-close {
	position: absolute;
	opacity: 0;
	transform: rotate(-90deg);
	transition: all 0.4s ease;
}
.icon-chat {
	position: absolute;
	opacity: 1;
	transform: rotate(0deg);
	transition: all 0.4s ease;
}
.main-toggle-btn-contact.active .icon-close {
	opacity: 1;
	transform: rotate(0deg);
}
.main-toggle-btn-contact.active .icon-chat {
	opacity: 0;
	transform: rotate(90deg);
}