

#ib-chat-widget {

    position:fixed;
    right:20px;
    bottom:50px;
    z-index:100;
    width: 60px;
  
  }
  
  .chat-widget-menu {
    text-align: center;
    display: none;
  }
  .chat-widget-item  {
    display: inline-block; 
    margin-bottom:10px;
  
  }
  
  .chat-widget-item a {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background-color: #0047c9;
    color: #FFF;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
    padding: 15px 0px;
    box-shadow: 0px 0px 5px #003ce5ad;
    text-decoration: none;
    transition: 0.5s;
  }
  .chat-widget-item a.chat-btn-line {
    background-color: #1fcb00 ;
    box-shadow: 0px 0px 5px #1fcb00 ;
  }
  .chat-widget-item a.chat-btn-facebook {
    background-color: #0072ff;
    box-shadow: 0px 0px 5px #0072ff;
  }
  .chat-widget-item a.chat-btn-phone {
    background-color: #ffc600;
    box-shadow: 0px 0px 5px #ffb10061;
  }
  .chat-widget-item a:hover{
    opacity: 0.8;
    transform: scale(1.1);
  } 
  
  .chat-widget-toggle-menu {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background-color: #0047c9;
    color: #FFF;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
    padding: 15px 0px;
    box-shadow: 0px 0px 5px #003ce5ad;
  
   
    cursor: pointer;
  }
  .chat-widget-toggle-menu i {
    transform: rotate(90deg);
    transform: scaleX(-1);
  }