@charset "utf-8";
/* CSS Document */
#chatbox {
    overflow-x: hidden;
    overflow-y: hidden;
    position: fixed;
    z-index: 999;
    right: 10%;
    bottom: 20%;
    height: 450px;
    width: 380px;
    background: #FFF;
    box-shadow: 0 0 10px rgba(200, 200, 200, .7);
    border-radius: 10px;
}
#chatbox_head {
    width: 100%;
    padding: 0.2em;
    box-shadow: 0 10px 10px -5px rgba(220, 220, 220, .9);
    text-align: right;
}
.chat_line {
    overflow-x: hidden;
    overflow-y: scroll;
    margin-top: 4px;
    padding: 0.2em;
    height: 360px;
}
.ask_content {
    font-size: 14pt;
    color: #000;
    max-width: 83%;
    float: right;
    background-color: #FFFAD2;
    border-radius: 25px;
    margin-top: 0.2em;
    margin-bottom: 0.5em;
    padding: 0.5em;
}
.chat_subject {
    width: 15%;
    float: left;
    position: relative;
    padding: 1%;
    height: 100%;
    display: flex
}
.chat_subject img {
    cursor: pointer;
    width: 95%;
    position: absolute;
    bottom: 1%;
}
.chat_content {
    font-size: 14pt;
    color: #000;
    max-width: 83%;
    float: left;
    background-color: #E4E6EB;
    border-radius: 25px;
    margin-top: 0.2em;
    margin-bottom: 0.2em;
    padding: 0.5em;
}
.chat_content a {
    color: #077CB5;
}
.chat_input input {
    width: 310px;
    margin-left: 10px;
    padding-left: 8px;
    height: 35px;
    border-radius: 15px;
    background-color: #E4E6EB;
    font-size: 14pt;
    box-sizing: border-box;
    border: 2px solid #F7FBFE;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.chat_input input[type=text]:focus {
    border: 2px solid #FFF;
    color: #000;
    font-size: 14pt;
}