.modal_support .modal-header{
    background: #355689;
    padding: 10px;
    margin: 0
}
.modal_support .modal-header h2{
    color: #fff;
    margin: 0;
}
.chat-container-wrapper{
    max-height: 400px;
    overflow-y: auto;
}
.chat-container-wrapper::-webkit-scrollbar {
    width: 5px;
}
.chat-container-wrapper::-webkit-scrollbar-thumb {
    background: transparent; 
    border-radius: 5px;
}
.chat-container-wrapper .chat-bubble {
    margin-top: 10px;
}
.chat-container-wrapper .chat-bubble .chat-message {
    border-radius: 4px;
    padding: 13px;
    font-size: 13px;
}
.chat-container-wrapper .chat-bubble.incoming-chat .chat-message {
    background: #007eec;
    margin-left: 25%;
    border-radius: 20px 0px 20px 20px
}
.chat-container-wrapper .chat-bubble.outgoing-chat .chat-message {
    background: #F3F3F3;
    margin-left: auto;
    max-width: 590px;
    margin-right:  25%;
   border-radius: 0 20px 20px 20px;
}
.chat-message p{
    font-size: 13px;
}
.chat-bubble.incoming-chat .chat-message, .chat-bubble.incoming-chat .chat-message p{
    color: #fff !important;
    font-size: 13px;
}
.msg_com{
    font-size: 13px;
    margin-top: 10px;
}
.no_comment{
    font-size: 12px;
    margin: 18px;
    text-align: center;
}
.incoming-chat .date_com{
    text-align: right;
}
.outgoing-chat .date_com{
    text-align: left;
}
.date_com{
    margin-bottom: -15px;
    color :#c2c2c2; 
    font-size: 12px;
}
.comment_form{
    margin-top: 20px;
}
.comment_form div{
    display: flex;
    align-items: center;
}
.comment_form textarea{
    margin-right: 15px;
    min-height: 89px;
}
.border-error{
    border-color: red;
}
#valid_comm_libre{
    background: #2ed573;
    border-color: #2ed573;
    width: 40px;
    height: 40px;
    color: #fff;
}
.comment_form textarea:focus{
    outline: none !important;
}
.error_block{
    display: none;
}
.error_block p{
    color: red;
    font-size: 13px;
    margin-top: 7px;
}