.ab-ship-chat {
    position: fixed;
    right: 18px;
    bottom: 28px;
    z-index: 2147483000;
    font-family: inherit;
}

.ab-ship-chat__toggle {
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .25);
    cursor: pointer;
    font-size: 26px;
}

.ab-ship-chat__panel {
    position: absolute;
    right: 0;
    bottom: 72px;
    width: min(360px, calc(100vw - 32px));
    background: #fff;
    border: 1px solid #dedede;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
    display: none;
}

.ab-ship-chat.is-open .ab-ship-chat__panel {
    display: block;
}

.ab-ship-chat__header {
    height: 50px;
    padding: 0 14px;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ab-ship-chat__header strong {
    font-size: 15px;
    line-height: 1;
}

.ab-ship-chat__header button,
.ab-ship-chat__form button {
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.ab-ship-chat__messages {
    height: 230px;
    padding: 14px;
    overflow: auto;
    background: #f6f6f6;
}

.ab-ship-chat__bubble {
    max-width: 88%;
    padding: 10px 12px;
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.45;
    color: #222;
    background: #fff;
    border: 1px solid #e4e4e4;
    white-space: pre-line;
}

.ab-ship-chat__bubble--user {
    margin-left: auto;
    color: #fff;
    background: #2f2f2f;
    border-color: #2f2f2f;
}

.ab-ship-chat__bubble--error {
    border-color: #f0c8c8;
    background: #fff2f2;
}

.ab-ship-chat__products {
    display: grid;
    gap: 6px;
    margin: -2px 0 10px;
}

.ab-ship-chat__product {
    display: block;
    padding: 8px 10px;
    color: #222;
    background: #fff;
    border: 1px solid #ddd;
    font-size: 13px;
    line-height: 1.3;
    text-decoration: none;
}

.ab-ship-chat__product:hover {
    color: #ff7f00;
    border-color: #ff7f00;
}

.ab-ship-chat__form {
    display: grid;
    grid-template-columns: 1fr 46px;
    border-top: 1px solid #dedede;
    background: #fff;
}

.ab-ship-chat__form input[name="message"] {
    height: 48px;
    border: 0;
    padding: 0 12px;
    font-size: 13px;
    outline: none;
}

.ab-ship-chat__form button {
    color: #111;
    font-size: 22px;
}

.ab-ship-chat__form button:disabled {
    opacity: .45;
    cursor: wait;
}

.ab-ship-chat__company {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

@media (max-width: 575px) {
    .ab-ship-chat {
        right: 12px;
        bottom: 18px;
    }

    .ab-ship-chat__panel {
        bottom: 68px;
    }
}
