
/* CSS for the button */
.chatbutton {
    position: fixed;
    bottom: 0px;
    right: 20px;
    width: 300px;
    height: 40px;
    background-color: #358ad9;
    color: white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-size: 20px;           
    /* box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);*/
    cursor: pointer;
}

/* CSS for the popup */
.chatpopup {
    position: fixed;
    bottom: 50px;
    right: 20px;
    width: 300px;            
    background-color: #fff;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
    display: none;
    border-radius: 10px;            
}

ul li.chatbtnli {
  list-style: none;
  margin: 0 25px;
}

ul li.chatbtnli a.chatbtna {
  position: relative; 
  display: block;
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 63px;
  /*background: #358ad9;*/
  border-radius: 50%;
  font-size: 30px;
  color: #666;
  transition: .5s;
}

ul li.chatbtnli a.chatbtna::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  /*background: #ffee10;*/
  transition: .5s;
  transform: scale(.9);
  z-index: -1;
}

ul li.chatbtnli a.chatbtna:hover::before {
  transform: scale(1.1);
  box-shadow: 0 0 15px #358ad9;
}

ul li.chatbtnli a.chatbtna:hover {
  color: #358ad9;
  box-shadow: 0 0 5px #358ad9;
  text-shadow: 0 0 5px #358ad9;
}

