.amfc-floating-contact {
    --amfc-bg: #b58c80;
    --amfc-fg: #ffffff;
    --amfc-divider: rgba(255, 255, 255, 0.78);

    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 99999;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: var(--amfc-bg);
    border-radius: 34px 6px 34px 6px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.10);
    font-family: inherit;
    -webkit-font-smoothing: antialiased;
}

.amfc-contact-item {
    width: 58px;
    height: 54px;
    min-width: 58px;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--amfc-fg) !important;
    background: transparent;
    text-decoration: none !important;
    line-height: 1;
    transition: background-color 160ms ease;
}

.amfc-contact-item + .amfc-contact-item {
    border-left: 1px solid var(--amfc-divider);
}

.amfc-contact-item:hover,
.amfc-contact-item:focus-visible {
    color: var(--amfc-fg) !important;
    background: rgba(255, 255, 255, 0.10);
    text-decoration: none !important;
}

.amfc-contact-item:focus-visible {
    outline: 2px solid #fff;
    outline-offset: -4px;
}

.amfc-icon {
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    display: grid;
    place-items: center;
}

.amfc-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 782px) {
    .amfc-floating-contact {
        right: 12px;
        bottom: 12px;
        border-radius: 31px 5px 31px 5px;
    }

    .amfc-contact-item {
        width: 52px;
        height: 49px;
        min-width: 52px;
        min-height: 49px;
    }

    .amfc-icon {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .amfc-contact-item {
        transition: none;
    }
}
