.hcp-floating-support {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--hcp-fs-gap, 13px);
    z-index: var(--hcp-fs-z, 99990);
    pointer-events: none;
    direction: rtl;
}
.hcp-floating-support--top { flex-direction: column; }
.hcp-floating-support--bottom { flex-direction: column-reverse; }
.hcp-floating-support__item {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--hcp-fs-size, 58px);
    height: var(--hcp-fs-size, 58px);
    min-width: var(--hcp-fs-size, 58px);
    color: #fff;
    background: var(--hcp-fs-color, #229ed9);
    border-radius: var(--hcp-fs-radius, 50%);
    box-shadow: 0 9px 26px rgba(0, 0, 0, .22);
    text-decoration: none !important;
    pointer-events: auto;
    transform: translateZ(0);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.hcp-floating-support__item:hover,
.hcp-floating-support__item:focus-visible {
    color: #fff;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 13px 32px rgba(0, 0, 0, .28);
    filter: saturate(1.08);
    outline: none;
}
.hcp-floating-support__item:focus-visible { box-shadow: 0 0 0 4px rgba(255,255,255,.95), 0 0 0 7px var(--hcp-fs-color), 0 13px 32px rgba(0,0,0,.28); }
.hcp-floating-support__item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: var(--hcp-fs-color, #229ed9);
    opacity: .52;
    pointer-events: none;
}
.hcp-floating-support--pulse .hcp-floating-support__item::before { animation: hcp-support-pulse var(--hcp-fs-pulse, 1.8s) ease-out infinite; }
.hcp-floating-support--pulse .hcp-floating-support__item:nth-child(2)::before { animation-delay: calc(var(--hcp-fs-pulse, 1.8s) / -2); }
.hcp-floating-support__icon,
.hcp-floating-support__icon svg,
.hcp-floating-support__icon img {
    display: block;
    width: var(--hcp-fs-icon, 29px);
    height: var(--hcp-fs-icon, 29px);
}
.hcp-floating-support__icon img { object-fit: contain; }
.hcp-floating-support__tooltip {
    position: absolute;
    top: 50%;
    right: calc(100% + 12px);
    width: max-content;
    max-width: min(260px, 70vw);
    padding: 7px 11px;
    color: #fff;
    background: rgba(19, 25, 35, .94);
    border-radius: 8px;
    box-shadow: 0 5px 18px rgba(0,0,0,.2);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    opacity: 0;
    visibility: hidden;
    transform: translate(5px, -50%);
    transition: opacity .17s ease, transform .17s ease, visibility .17s ease;
    pointer-events: none;
    white-space: nowrap;
}
.hcp-floating-support--left .hcp-floating-support__tooltip { right: auto; left: calc(100% + 12px); transform: translate(-5px, -50%); }
.hcp-floating-support__item:hover .hcp-floating-support__tooltip,
.hcp-floating-support__item:focus-visible .hcp-floating-support__tooltip { opacity: 1; visibility: visible; transform: translate(0, -50%); }
@keyframes hcp-support-pulse {
    0% { transform: scale(1); opacity: .55; }
    70%, 100% { transform: scale(1.5); opacity: 0; }
}
@media (max-width: 782px) {
    .hcp-floating-support--hide-mobile { display: none !important; }
    .hcp-floating-support__tooltip { display: none; }
}
@media (min-width: 783px) {
    .hcp-floating-support--hide-desktop { display: none !important; }
}
@media (prefers-reduced-motion: reduce) {
    .hcp-floating-support__item,
    .hcp-floating-support__tooltip { transition: none; }
    .hcp-floating-support__item::before { animation: none !important; }
}
.hcp-floating-support__item .hcp-contact-icon,
.hcp-floating-support__item .hcp-contact-icon svg,
.hcp-floating-support__item .hcp-contact-icon img {
    display:block;
    width:var(--hcp-fs-icon,29px);
    height:var(--hcp-fs-icon,29px);
}
.hcp-floating-support__item .hcp-contact-icon img{object-fit:contain}
