.spa-contact-buttons { position: fixed; right: 12px; bottom: 12px; display: flex; flex-direction: column; gap: 10px; z-index: 9999; }

.spa-contact-btn { position: relative; display: inline-flex; align-items: center; height: 45px; width: 45px; background: #00549A; color: #fff; text-decoration: none; border-radius: 50%; overflow: hidden; transition: width .25s ease, border-radius .25s ease, background .25s ease; box-shadow: 0 6px 16px rgba(245, 245, 245, 0.2); }
.spa-contact-btn:hover { width: 134px; border-radius: 100px 10px 10px 100px; }

.spa-contact-btn__icon { position: absolute; right: 0; left: auto; top: 0; display: flex; align-items: center; justify-content: center; width: 45px; height: 45px; }
.spa-contact-btn__icon i { font-size: 18px; line-height: 1; }
.spa-contact-btn__icon img { width: 22px; height: 22px; object-fit: contain; display: block; }

.spa-contact-btn__label { padding: 0 51px 0 12px; white-space: nowrap; opacity: 0; transform: translateX(6px); transition: opacity .25s ease, transform .25s ease; pointer-events: none; color: #fff; text-align: right; }
.spa-contact-btn:hover .spa-contact-btn__label { opacity: 1; transform: translateX(0); }

@media (max-width: 640px) {
	.spa-contact-buttons { right: 10px; bottom: 10px; gap: 8px; }
}


