:root {
  --whatsapp-color: #23ab23;
  --telegram-color: #2AABEE;
}


.chat-btn-opencart {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 60px;
    cursor: pointer;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    animation: breathe 2s ease-in-out infinite;
    outline: none!important;
    text-decoration: none!important;
  }

  .chat-btn-opencart i {
    color: #fff;
    font-size: 33px;
    text-decoration: none;
  }

  #product-chat-button > a{
    background-color: var(--whatsapp-color);
    display: flex;
    border-radius: 35px;
    height: 70px;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: white;
    font-weight: bold;
    margin-bottom: 10px;
  }

  #product-chat-button .fa-brands.fa-whatsapp{
   color: var(--whatsapp-color);
  }

  #product-chat-button .fa-brands.fa-telegram{
    color: var(--telegram-color);
   }

  #product-chat-button .product-chat-info{
    margin-left: 10px;
  }

  #product-chat-button > a > i{
    font-size: 40px;
    margin-right: 15px;
    margin-left: auto;
  }

  #product-chat-button > a > img{
    border-radius: 50%;
    height: 60px;
    width: 60px;
    margin-left: 10px;
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,.4);
    box-shadow: 0 0 5px rgba(0,0,0,.2);
    border: 2px solid white;
  }

  #whatsapp-chat {
    position: fixed;
    background: #fff;
    width: 350px;
    border-radius: 10px;
    box-shadow: 0 1px 15px rgba(32,33,36,0.28);
    bottom: 90px;
    right: 30px;
    overflow: hidden;
    z-index: 5000;
    animation-name: showchat;
    animation-duration: 400ms;
    transform: scale(1);
  }
  #whatsapp-chat .header-chat {
    background: linear-gradient(to right top,#6f96f3,#164ed2);
    color: #fff;
    padding: 20px;
  }
  #whatsapp-chat .header-chat h3 {
    margin: 0 0 10px;
    color: white;
  }
  #whatsapp-chat .header-chat p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
  }
  #whatsapp-chat .info-avatar {
    position: relative;
  }
  #whatsapp-chat .info-avatar img {
    border-radius: 100%;
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,.4);
    box-shadow: 0 0 3px rgba(0,0,0,.4);
    width: 50px;
    float: left;
    margin: 0 10px 0 0;
  }

  #whatsapp-chat .info-avatar i {
    z-index: 1;
    
    color: #fff;
    padding: 4px 5px;
    border-radius: 100%;
    position: absolute;
    top: 30px;
    left: 30px;
  }

  #whatsapp-chat .info-avatar i.fa-telegram{
    background: var(--telegram-color);
  }

  #whatsapp-chat .info-avatar i.fa-whatsapp{
    background: var(--whatsapp-color);
  }
  
  #whatsapp-chat a.information {
    padding: 20px;
    display: block;
    border-bottom: 1px solid #e9e9e9;
    overflow: hidden;
    animation-duration: 2.5s;
  }



  #whatsapp-chat a.information:hover {
    background: #f1f1f1;
  }
  #whatsapp-chat .info-chat span {
    display: block;
    color: grey;
  }
  #whatsapp-chat #get-label,
  #whatsapp-chat span.chat-label {
    font-size: 12px;
    font-weight: bold;
    color: #888;
  }
  #whatsapp-chat #get-name,
  #whatsapp-chat span.chat-nama {
    margin: 5px 0 0;
    font-size: 15px;
    font-weight: 700;
    color: #222;
  }
  #whatsapp-chat #get-label,
  #whatsapp-chat #get-name {
    color: #fff;
  }
  #whatsapp-chat span.my-number {
    display: none;
  }
  #whatsapp-chat .blanter-msg {
    color: #444;
    padding: 20px;
    font-size: 12.5px;
    text-align: center;
  }
  #whatsapp-chat textarea#chat-input {
    border: none;
    font-family: 'Arial', sans-serif;
    width: 100%;
    height: 20px;
    outline: none;
    resize: none;
  }
  #whatsapp-chat a#send-it {
    color: #555;
    width: 40px;
    margin: -5px 0 0 5px;
    font-weight: 700;
    padding: 8px;
    background: #eee;
    border-radius: 10px;
  }
  #whatsapp-chat .first-msg {
    background: #f5f5f5;
    padding: 30px;
    text-align: center;
  }
  #whatsapp-chat .first-msg span {
    background: #e2e2e2;
    color: #333;
    font-size: 14.2px;
    line-height: 1.7;
    border-radius: 10px;
    padding: 15px 20px;
    display: inline-block;
  }
  #whatsapp-chat .start-chat .blanter-msg {
    display: flex;
  }
  #whatsapp-chat #get-number {
    display: none;
  }
  #whatsapp-chat a.close-chat {
    position: absolute;
    top: 5px;
    text-decoration: none;
    outline: none;
    right: 5px;
    color: #fff;
    font-size: 30px;
  }

  #whatsapp-chat-overlay{
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 4999;
  }

   @keyframes showhide {
    from {
      transform: scale(.5);
      opacity: 0;
    }
  } 
  @keyframes showchat {
    from {
      transform: scale(0);
      opacity: 0;
    }
  }
  @media screen and (max-width: 480px) {
    #whatsapp-chat {
      width: auto;
      left: 5%;
      right: 5%;
      font-size: 80%;
    }
  }
  #whatsapp-chat.hide {
    display: none;
    animation-name: showhide;
    animation-duration: 1.5s;
    transform: scale(1);
    opacity: 1;
  }
  #whatsapp-chat.show {
    display: block;
    animation-name: showhide;
    animation-duration: 400ms;
    transform: scale(1);
    opacity: 1;
  }
  
  

