@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: #007bff;
}

::-webkit-scrollbar{
    width: 3px;
    border-radius: 25px;
}
::-webkit-scrollbar-track{
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb{
    background: #ddd;
}
::-webkit-scrollbar-thumb:hover{
    background: #ccc;
}

.wrapper{
    width: 370px;
    /*background: #fff;
    background-image: url(bg.jpg);*/
    border-radius: 5px;
    border: 1px solid lightgrey;
    border-top: 0px;
}
.wrapper .title{
    background: #128C7E;
    background-image: linear-gradient(to right, #d03843, #e66c23);
   /*background:red;*/
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    border-bottom: 1px solid red;
    border-radius: 5px 5px 0 0;
}

.wrapper .form{
    padding: 15px 9px;
    min-height: 400px;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
}
.wrapper .form .inbox{
    width: 100%;
    /*display: flex;*/
    align-items: baseline;
}
.wrapper .form .user-inbox{
    justify-content: flex-end;
    margin: 13px 0;
}
.wrapper .form .inbox .icon{
    height: 30px;
    width: 30px;
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    font-size: 18px;
    background: #d03843;
    margin-right: 10px !important;
}
.wrapper .form .inbox .msg-header{
    max-width: 93%;
    margin-left: 10px;
}
.form .inbox .msg-header p{
    color: #fff;
    background: #d03843;
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 14px;
    /*word-break: break-all;*/
}
.form .user-inbox .msg-header p{
    color: #333;
    background: #efefef;
}
.wrapper .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;
}
.wrapper .typing-field .input-data{
    height: 40px;
    width: 335px;
    position: relative;
}
.wrapper .typing-field .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;
}
.typing-field .input-data input:focus{
    border-color: #d03843;
}
.input-data input::placeholder{
    color: #999999;
    transition: all 0.3s ease;
}
.input-data input:focus::placeholder{
    color: #bfbfbf;
}
.wrapper .typing-field .input-data button{
    position: absolute;
    right: 5px;
    top: 50%;
    height: 30px;
    width: 65px;
    color: #fff;
    font-size: 16px;
    outline: none;
    border-radius: 3px;
    background: #d03843;
    border: 1px solid #d03843;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}
.typing-field .input-data button:hover{
    background: #e66c23;
}

.botQuestions li {
    list-style-type: none;
    color: #d03843;
    height: auto;
    margin-bottom: 5px;
    font-size: 13px !important;
    padding: 4px !important;
    cursor: pointer;
    position: relative;
}

/*.botAnswer {
    border-radius: 8px;
    border: 1px solid grey;
    font-size: 13px;
    margin-top: 8px;
    padding: 8px;
    display: none;
}*/

#botIcon {
    position: fixed;
    right: 20px;
    bottom: 10px;
    width: 90px;
    cursor: pointer;
    z-index: 9;
}

.wrapper {
    position: fixed;
    right: 10px;
    bottom: 10px;
    display: none;
}
.botShow
{
    border-radius: 50%;
}
.botShow:hover {
    transform: scale(1.1);
    box-shadow: 0px 0px 2px grey;
    transition: all 1s;
}

.queryListing {
    border: 1px solid darkred;
    border-radius: 5px;
    font-size: 13px;
    padding: 4px;
}