/* ----- Chatbot css ----- */
#chatbot {
    height: 530px;
    width: 370px;
    max-width: 95%;
    max-height: 95%;
    position: fixed;
    z-index: 10001;
    bottom: 12px;
    right: 12px;
    display: none;
}

#close-chatbot {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    background: #ffffff;
    text-align: center;
    line-height: 16px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 100%;
    border: thin solid #c55e5e;
    color: #c55e5e;
    cursor: pointer;
    z-index: 1;
}

#chatbot iframe {
    height: 100%;
    width: 100%;
    border: solid;
    border-width: thin;
    float: left;
    position: relative;
}

#chatbot-button {
    position: fixed;
    bottom: 12px;
    right: 12px;
    z-index: 10000;
    cursor: pointer;
}

#chatbot-button img {
    width: 55px;
    height: 55px;
}

@media (max-width: 767px) {
    #chatbot {
        bottom: 2.5%;
        right: 2.5%;
    }
}