.sgs-chatbot {
    position: fixed;
    right: 37px;
    bottom: 100px;
    z-index: 9999;
    width: min(353px, calc(100vw - 32px));
    font-family: Arial, Helvetica, sans-serif;
    color: #172033;
}
.sgs-chatbot__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    color: #fff;
    background: linear-gradient(100deg, #28154f 0%, #5c2f91 58%, #9577c7 100%);
}
.sgs-chatbot__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    width: 56px;
    height: 56px;
    border: 0;
    border-radius: 50%;
    /* background: #005ea8; */
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
    background: linear-gradient(140deg, #e85a2a 0%, #f47a22 58%, #ff9a4a 100%);
}

.sgs-chatbot__send {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 6px;
    /* background: #1f7a4d; */
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    background: linear-gradient(135deg, #21103f 0%, #51247f 58%, #8562b8 100%);
}
.sgs-chatbot__message--bot {
    background: #fff1e5;
    border: 1px solid #f8d8bf;
}


.sgs-chatbot__toggle {
    width: 50px;
    height: 40px;
    border: none;
    border-radius: 20px;
    background: linear-gradient(
        140deg,
        #e85a2a 0%,
        #f47a22 58%,
        #ff9a4a 100%
    );
    position: relative;
    font-size: 0;
    cursor: pointer;
}

.sgs-chatbot__toggle::before {
    content: "";
    position: absolute;
    top: 17px;
    left: 14px;
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    box-shadow:
        8px 0 0 #fff,
        16px 0 0 #fff;
}

.sgs-chatbot__toggle::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 12px;
    width: 12px;
    height: 12px;
    background: #f47a22;
    transform: rotate(45deg);
}