#chat-icon-container {
    position: fixed;
    bottom: 0px;
    right: 0px;
    z-index: 1002;
    cursor: pointer;
    padding: 11px 29px;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
    box-sizing: border-box;
    width: 500px;
    height: 92px;
    font-family: "Roboto", sans-serif;
    /* background-image: linear-gradient(to right, #006acb, #054987); */
    background: #0074C7;
    text-align: center;

}

#chat-icon-container img {
    width: 16px;
}



#chat-icon-container .input {
    border: 0px;
    font-size: 12px;
    padding: 0px 11px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    width: 90%;
    height: 38px;
    background: #fff;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}


#chat-icon-container button {
    background: #003C66;
    border: 0px;
    height: 38px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    padding: 0px 13px;
}

div#chat-container {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: center;
}

#chat-icon-container span {
    font-size: 10px;
    color: #fff;
}


#chat-box {
    position: fixed;
    bottom: 0px;
    right: 0px;
    width: 500px;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    height: calc(100vh - 99.2px);

}

.chat-box-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    height: 56px;
    padding: 10px 31px;
    box-sizing: border-box;
}

.chat-box-header button {
    float: right;
    background: #8a92a5;
    color: #fff;
    border: 0px;
    border-radius: 35px;
    cursor: pointer;
    padding: 3px 7px;
    box-sizing: border-box;
    padding-top: 1px;
    -webkit-appearance: button;
    text-transform: none;
    margin: 0;
    font-family: inherit;
    font-size: 5px;
    line-height: 25px;
}

.chat-box-header span {
    padding-top: 42px;
}

.choose-container {
    height: 140px;
    padding: 10px 31px;
    box-sizing: border-box;
    padding-top: 34px;
}

.choose-category {
    display: flex;
    justify-content: space-around;
}

.choose-category button {
    background: unset;
    border: 2px solid #0075b9;
    padding: 10px 32px;
    border-radius: 4px;
    color: #0075b9;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
}

.choose-category button.not_active {
    border: 2px solid #7C7C89;
    color: #7C7C89;
}

.smart-wiki-iframe iframe {
    width: 100%;
    height: calc(100vh - 296.2px);
    border: 0px;
}

.chat-box-header h3 {
    font-size: 19px;
    font-weight: 700 !important;
    margin: 0px;
    color: #1D1917;
    margin-top: 4px !important;
}



.chat-text {
    background: #E7F2F9;
    font-size: 16px;
    padding: 12px;
    border-radius: 5px;
    font-family: "Roboto", sans-serif;
}

span.chat-heading {
    font-size: 16px;
}

.full-height-frame .smart-wiki-iframe iframe {
    height: calc(100vh - 156.2px);
}

.chat-box-header h3 span {
    font-size: 18px;
    font-weight: 400;
}

.chat-box-header button img {
    vertical-align: middle;
    box-sizing: border-box;
}

@media screen and (max-width: 480px) {

    #chat-icon-container {
        width: 100%;
    }

    #chat-box {
        width: 100%;
    }

    #chat-icon-container .input {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 200px;
        display: inline-block;
        height: 36px;
        line-height: 33px;
    }

    .choose-category {

        justify-content: space-between;

        gap: 36px;
    }

    .choose-category button {
        padding: 7px 13px;
        width: 44%;
    }

}

#minimize-widget {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    background: #054a8a;
    width: 4%;
    align-items: center;
    display: flex;
    align-content: center;
    justify-content: center;
    border-top-left-radius: 6px;
}

#chat-icon-container #minimize-widget img {
    width: 10px;
}

div#chat-icon-container-small {
    background: #0074C7;
    position: fixed;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    padding: 10px;
    font-size: 13px;
    border-radius: 6px;
    bottom: 22px;
    right: 5px;
    color: #fff;
    z-index: 1111111111111;
    cursor: pointer;
    font-family: "Roboto", sans-serif;
}

div#chat-icon-container-small img {
    margin-right: 6px;
    width: 32px;
}