#livechat-button{

position:fixed;

right:70px;

bottom:50px;

background:#ff6a00;

color:#fff;

padding:8px 18px;

border-radius:30px;

cursor:pointer;

font-weight:bold;

z-index:1039;

}


#livechat-window{

display:none;

position:fixed;

right:70px;

bottom:60px;

width:360px;

height:520px;

background:#fff;

border-radius:12px;

box-shadow:0 10px 30px rgba(0,0,0,.2);

overflow:hidden;

z-index:1040;

}

.chat-header{

background:#ff6a00;

color:#fff;

padding:5px;

font-size:15px;

font-weight:bold;

display:flex;

justify-content:space-between;

align-items:center;

}

#chat-close{

cursor:pointer;

font-size:22px;

}

.chat-body{

height:390px;

overflow:auto;

padding:15px;

background:#fafafa;

}

.chat-footer{

display:flex;

padding:10px;

border-top:1px solid #eee;

}

#chat-input{

flex:1;

height:42px;

border:1px solid #ddd;

border-radius:20px;

padding:0 15px;

outline:none;

}

#chat-send{

margin-left:10px;

padding:0 20px;

border:none;

border-radius:20px;

background:#ff6a00;

color:#fff;

cursor:pointer;

}