/*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
html,body{
    display: grid;
    height: 100%;
    place-items: center;
}
*/
::selection{
    color: #fff;
    background: #fbb600;
}

::-webkit-scrollbar{
    width: 3px;
    border-radius: 0px;
}
::-webkit-scrollbar-track{
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb{
    background: #ddd;
}
::-webkit-scrollbar-thumb:hover{
    background: #ccc;
}

.chat_wrapper{
    width: 370px;
    background: rgb(230, 230, 230);
    border-radius: 5px;
    /*border: 1px solid lightgrey;
    border-top: 0px;
    border-radius: 25px;*/
}
.chat_wrapper .chat_title{
    background: #000;
    color: #fbb600;
    font-size: 20px;
    font-weight: 500;
    /*line-height: 60px;*/
    text-align: left;
    padding-left: 20px;
    /*border-bottom: 1px solid #006fe6;
    border-radius: 25px 25px 0 0;*/
}
.chat_wrapper .chat_close{
    background: #000;
    color: #fbb600;
    font-size: 20px;
    font-weight: 500;
    line-height: 60px;
    text-align: center;
    /*border-bottom: 1px solid #006fe6;
    border-radius: 0 0 25px 25px;*/
}
.chat_wrapper .chat_form{
    padding: 20px 15px;
    min-height: 400px;
    max-height: 400px;
    overflow-y: auto;
}
.chat_wrapper .chat_form .chat_inbox{
    width: 100%;
    display: flex;
    align-items: baseline;
}
.chat_wrapper .chat_form .chat_user-inbox{
    justify-content: flex-end;
    margin: 13px 0;
}
.chat_wrapper .chat_form .chat_inbox .chat_icon{
    height: 40px;
    width: 40px;
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    font-size: 18px;
    background: #fbb600;
}
.chat_wrapper .chat_form .chat_inbox .chat_msg-header{
    max-width: 53%;
    margin-left: 10px;
}
.chat_form .chat_inbox .chat_msg-header p{
    color: #fff;
    background: #fbb600;
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 14px;
    /*word-break: break-all;*/
    text-align: justify;
}
.chat_form .chat_user-inbox .chat_msg-header p{
    color: #333;
    background: #fff;
}
.chat_wrapper .chat_typing-field{
    display: flex;
    height: 60px;
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
    background: #efefef;
    border-top: 1px solid #d9d9d9;
    border-radius: 0 0 5px 5px;
}
.chat_wrapper .chat_typing-field .chat_input-data{
    height: 40px;
    width: 335px;
    position: relative;
}
.chat_wrapper .chat_typing-field .chat_input-data input{
    height: 100%;
    width: 100%;
    outline: none;
    border: 1px solid transparent;
    padding: 0 80px 0 15px;
    border-radius: 3px;
    font-size: 15px;
    background: #fff;
    transition: all 0.3s ease;
}
.chat_typing-field .chat_input-data input:focus{
    border-color: #fbb600;
}
.chat_input-data input::placeholder{
    color: #999999;
    transition: all 0.3s ease;
}
.chat_input-data input:focus::placeholder{
    color: #bfbfbf;
}
.chat_wrapper .chat_typing-field .chat_input-data button{
    position: absolute;
    right: 5px;
    top: 50%;
    height: 30px;
    width: 65px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    outline: none;
    opacity: 0;
    pointer-events: none;
    border-radius: 3px;
    /*background: #fbb600;
    border: 1px solid #fbb600;*/
    transform: translateY(-50%);
    transition: all 0.3s ease;
}
.chat_wrapper .chat_typing-field .chat_input-data input:valid ~ button{
    opacity: 1;
    pointer-events: auto;
}
.chat_typing-field .chat_input-data button:hover{
    background: #fbb600;
}