/* --------------------------------------------------------
CS Chat Stylesheet

version: 1.1
author: Richie Sun
email: rsun@ovloop.com
----------------------------------------------------------*/

/* CHANGE BACKGROUND COLOR AND TEXT COLOR OF FLOATING BUTTON HERE */
.cschat-chatpopup-button-wrapper .csChatFloatingButton {
    background-color: #000000;
    color: #ffffff;
}

/* CHANGE HOVER BUTTON COLOR HERE */
.cschat-chatpopup-button-wrapper .csChatFloatingButton:hover {
    background-color: #444444;
    cursor: pointer;
}

.cschat-chatpopup-button-wrapper .csChatFloatingButton {
    bottom: 20px;
    right: 20px;
    position: fixed;
    padding: 10px 30px;
    font-family: sans-serif;
    border-radius: 40px;
    z-index: 10000;
    font-size: 14px;
    
}



.cschat-chatpopup {
  display: none;
  position: fixed;
  width: 400px;
  height: auto;
  bottom: 30px;
  right: 30px;
  z-index: 5000;
  background-color: white;
  border: 2px solid #ccc;
  box-shadow: 0px 0px 30px #8888885e;
  padding: 10px;
  -webkit-font-smoothing: antialiased;
}
.cschat-chatpopup #closeChat {
  position: absolute;
  top: -36px;
  background: black;
  color: white;
  padding: 0 20px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  right: 0;
  height: 36px;
  border-bottom: 2px solid #ccc;
  box-sizing: border-box;
}
.cschat-chatpopup #closeChat span {
  font-size: 20px;
  vertical-align: sub;
  display: inline-block;
}
.cschat-chatpopup #closeChat a {
  line-height: 36px;
  color: white;
  font-weight: bold;
  font-size: 12px;
  text-decoration: none;
  font-family: arial, sans-serif;
}
