@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;
}
/* Skip to content
Product
Solutions
Open Source
Pricing
Search
Sign in
Sign up
configuroweb
/
chatbot-sencillo
Public
Code
Issues
Pull requests
Actions
Projects
Security
Insights
chatbot-sencillo/style.css */
html,body{
    /* display: grid;
    height: 100%;
    place-items: center; */
}
/* 
::selection{
    color: #fff;
    background: #fd7d1c;
} */

::-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: auto;
    background: #fff;
    border-radius: 5px;
    
    border-top: 0px;
}
.wrapper .title{
    background: #ffffff;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 60px;
    text-align: center;
    border-bottom: 1px solid #ffffff;
    border-radius: 5px 5px 0 0;
}
.wrapper .form{
    padding: 20px 15px;
    min-height: 400px;
    max-height: 400px;
    overflow-y: auto;
}
.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: 40px;
    width: 40px;
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    font-size: 18px;
    /* background: #80b918; */
}
.wrapper .form .inbox .msg-header{
    max-width: 53%;
    margin-left: 10px;
}
.form .inbox .msg-header p{
    color: #fff;
    /*#b92750 0a3028*/
    background: #b92750;
    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: rgba(0,123,255,0.8);
}
.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: 10px;
    top: 50%;
    height: 30px;
    width: 65px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    outline: none;
    opacity: 0;
    pointer-events: none;
    border-radius: 3px;
    background: #ffffff;
    border: 1px solid #ffffff;
    
    transition: all 0.3s ease;
}
.wrapper .typing-field .input-data input:valid ~ button{
    opacity: 1;
    pointer-events: auto;
}
.typing-field .input-data button:hover{
    background: #fd7d1c;
}

#holi{
    height: 80px;
}
#holi button{
    
    opacity: 0;
    pointer-events: none;
    transform: translateY(-125%);
    transition: all 0.3s ease;
}

#holi input:valid ~ button{
    opacity: 1;
    pointer-events: auto;
}
#hola2{
    /* width:60px;
    height:60px;*/
    border-radius:100px; 
    /* background:#80b918; */
    right:0;
    bottom:0;
    position:fixed;
    margin-right:43px;
    margin-bottom:43px;
    border:none;
    outline:none;
    color:#FFF;
    font-size:36px;
    /* box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23); */
   transition:.3s;  
}
