.eb_widget_box {
    width: 300px;
    position: fixed;
    z-index: 1;
    bottom: 20px;
    right: 40px;
    border-radius: 10px;
}

.eb_widget_header {
    width: 100%;
    height: 85px;
    background: #FFFFFF;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}

.eb_widget_bot_header {
    width: 60px;
    object-fit: contain;
    margin-left: 120px;
    margin-bottom: -20px;
}

.eb_widget_header_close {
    font-size: 14px;
    float: right;
    margin-top: 10px;
    margin-right: 10px;
    cursor: pointer;
}

.eb_widget_welcome_text {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    padding: 25px;
}

.eb_widget_icon {
    float: right;
    width: 80px;
    object-fit: contain;
    cursor: pointer;
}

.eb_widget_chat_box {
    display: none;
    width: 100%;

}

.eb_widget_chat_box_header {
    display: flex;
    align-items: center;
    width: 360px;
    height: 53px;
    margin-left: -60px;
    background: #7467F0;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px 10px 0px 0px;
}

.eb_widget_chat_box_header_logo {
    width: 40px;
    object-fit: cover;
    margin-left: 20px;
}

.widget_chat_box_header_text {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
    color: #FFFFFF;
    margin-left: 20px;
}

.eb_widget_chat_window {
    width: 360px;
    height: 300px;
    margin-left: -60px;
    background: #FFFFFF;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    border-radius: 0 0 10px 10px;
}

.eb_widget_display_chat_messages {
    height: 250px;
    width: 100%;
    overflow: auto;
    overscroll-behavior: contain;
    word-wrap: break-word;
}

.eb_widget_input_chat_message {
    width: 100%;
    height: 50px;
    border: 1px solid #EAF0F6;
    display: flex;
    align-items: center;
    flex-direction: row;
}
.eb_widget_display_chat_messages::-webkit-scrollbar {
  width: 6px;
}
.eb_widget_display_chat_messages::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.eb_widget_display_chat_messages::-webkit-scrollbar-thumb {
  background: #888;
}

.eb_widget_input_chat_message_input {
    width: 90%;
    padding: 10px;
    height: 100%;
    border: 0px;
    resize: none;
      font-family: 'Open Sans'  !important;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.eb_widget_send_input_message {
    width: 10%;
    margin-left: 5px;
    object-fit: contain;
    cursor: pointer;
}

.eb-message-user-icon {
    width: 40px;
    object-fit: contain;
}

.eb-message-box {
    display: flex;
    padding: 2px 10px;
    flex-direction: row;
	    margin-top: 6px;
}

.eb-bubble {
    font-size: 13px;
    position: relative;
    display: inline-block;
    clear: both;
    font-family:  'Open Sans'  !important;
    max-width: 83%;
    padding: 10px 10px;
    vertical-align: top;
    border-radius: 8px 8px 8px 8px;
}

.eb-you {
    color: var(--black);
    background-color: #EFEFEF;
    align-self: flex-start;
    -webkit-animation-name: slideFromLeft;
    animation-name: slideFromLeft;  font-family: 'Open Sans'  !important;
}

.eb-me {
    color: #fff;
    background-color: #7467F0;
    align-self: flex-end;
    -webkit-animation-name: slideFromRight;
    animation-name: slideFromRight;  font-family: 'Open Sans'  !important;
}

.eb-left {
    justify-content: flex-start;
}

.eb-right {
    justify-content: flex-end;
}
.eb_top_box_header_close {
    /* margin: 0 0px 0px 240px; */
    font-size: 27px;
    float: right;
    cursor: pointer;
	color:#fff
}
.eb_top_box_header_minimize {
        margin: -10px 26px 0px 205px;
    font-size: 45px;
    float: right;
    cursor: pointer;
    color: #fff;
    font-weight: 500;
}
@media only screen and (max-width: 499px) {
    .eb_widget_box {
        width: 85%;
        bottom: 20px;
        right: 20px;
    }
    .eb_widget_chat_box {
        width: 100%;
    }
    .eb_widget_chat_box_header {
        width: 100%;
        margin-left: unset;
    }
    .eb_widget_chat_window {
        width: 100%;
        height: 450px;
        margin-left: unset;
    }
    .eb_widget_display_chat_messages {
        height: 380px;
    }
    .eb_widget_input_chat_message {
        height: 70px;
    }
    .eb_widget_input_chat_message_input {
        margin-left: 2%;
    }
}