.chat-option {
    position: fixed;
    bottom: 30px;
    left: 30px;
    height: 50px;
    width: 50px;
    background-color: #1e635a;
    border-radius: 50%;
    z-index: 1096;
  }
  
  .chat-option .icons {
    overflow: hidden;
    cursor: pointer;
  }
  
  .chat-option .icons ul {
    white-space: nowrap;
    -webkit-animation: chat-option 10s ease-in infinite;
            animation: chat-option 10s ease-in infinite;
    width: 100%;
  }
  
  .chat-option .icons ul li {
    display: inline-block !important;
    margin: 13px;
  }
  
  .chat-option .icons ul li i {
    font-size: 24px;
    color: #fff;
  }
  
  .chat-option .popup {
    position: absolute;
    width: 300px;
    height: auto;
    padding: 20px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 24px rgba(0, 0, 0, 0.08);
            box-shadow: 0 0 24px rgba(0, 0, 0, 0.08);
    bottom: 40px;
    border-radius: 8px;
  }
  
  .chat-option .popup h4 {
    text-transform: capitalize;
    font-size: 18px;
  }
  
  .chat-option .popup .help li {
    border-bottom: 1px solid #F3F3F3;
    position: relative;
  }
  
  .chat-option .popup .help li .link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  
  .chat-option .popup .help li span {
    display: block;
    width: 100%;
    max-width: 100%;
  }
  
  .chat-option .popup .help li .small {
    margin-top: -10px;
  }
  .chat-option .popup .help li td{
      font-size: 15px;
      font-weight: 400;
      color: #000;
  }
  .chat-option .popup .help li i {
    width: 30px;
    height: 30px;
    display: -ms-grid;
    display: grid;
    place-content: center;
    background-color: #1e635a;
    border-radius: 50%;
    color: #fff;
  }
  .close {
      float: right;
      font-size: 3rem;
      font-weight: 700;
      line-height: 1;
      color: #000;
      text-shadow: 0 1px 0 #fff;
      opacity: .5;
  }
  .close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover {
      opacity: .75;
  }
  .close:hover {
      color: #000;
      text-decoration: none;
  }
  .chat-option .popup .help li td {
    padding: 10px;
  }
  
  .chat-option .popup .help li:last-child {
    border: none !important;
  }
  
  @-webkit-keyframes chat-option {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    20% {
      -webkit-transform: translateX(-50px);
              transform: translateX(-50px);
    }
    40% {
      -webkit-transform: translateX(-100px);
              transform: translateX(-100px);
    }
    60% {
      -webkit-transform: translateX(-160px);
              transform: translateX(-160px);
    }
  }
  
  @keyframes chat-option {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    20% {
      -webkit-transform: translateX(-50px);
              transform: translateX(-50px);
    }
    40% {
      -webkit-transform: translateX(-100px);
              transform: translateX(-100px);
    }
    60% {
      -webkit-transform: translateX(-160px);
              transform: translateX(-160px);
    }
  }