.fixed-chat-icon {
    position: fixed;
    right: 28px;
    bottom: 30px;
    z-index: 70;
    width: 50px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 16px;
    background: #08bfa2;
    box-shadow: 0 10px 22px rgba(8, 191, 162, .26);
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.fixed-chat-icon:hover {
    background: #07aa91;
    box-shadow: 0 10px 22px rgba(8, 191, 162, .34);
    transform: translateY(-2px);
}

.fixed-chat-icon:focus-visible {
    outline: 3px solid rgba(206, 255, 125, .9);
    outline-offset: 3px;
}

.fixed-chat-icon svg {
    width: 31px;
    height: 27px;
    display: block;
}

.fixed-chat-icon-fill {
    fill: #fff;
}

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
    place-items: center;
    padding: 22px;
}

.contact-modal.is-open {
    display: grid;
}

.contact-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .48);
}

.contact-modal-content {
    position: relative;
    width: min(360px, 92vw);
    min-height: 320px;
    display: grid;
    place-items: center;
    padding: 30px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 28px 78px rgba(15, 23, 42, .28);
}

.contact-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: #f1f5f9;
    color: #334155;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.contact-modal-close:hover {
    background: #e2e8f0;
}

#contactModalImage {
    width: min(260px, 72vw);
    height: auto;
    display: block;
    border-radius: 10px;
}

@media (max-width: 640px) {
    .fixed-chat-icon {
        right: 18px;
        bottom: 18px;
        width: 46px;
        height: 42px;
        border-radius: 15px;
    }

    .fixed-chat-icon svg {
        width: 29px;
        height: 25px;
    }
}
