 
/* =================================
            WHATSAPP CHAT 
===================================*/


  /* h1 {
      font-size: 20px;
      text-align: center;
      display: block;
      background: linear-gradient(to right top, #6f96f3, #164ed2);
      padding: 20px;
      color: #fff;
      border-radius: 50px;
  }
  
   */
  /* CSS Whatsapp Chat */
  #whatsapp-chat {
    position: fixed;
    background: #fff;
    width: 330px;
    border-radius: 15px;
    box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
    bottom: 90px;
    right: 107px;
    overflow: hidden;
    z-index: 99;
    animation-name: showchat;
    animation-duration: 0.3s;
  }
  
  .blantershow-chat {
    background: rgb(27, 215, 65, .8);
    color: #ffffff;
    position: fixed;
    width: 70px;
    height: 70px;
    font-weight: 600;
    justify-content: space-between;
    z-index: 98;
    bottom: 160px;
    right: 21px;
    font-size: 15px;
    padding: 0px;
    border-radius: 50%;
    border: none;
    box-shadow: 0 1px 15px rgb(32 33 36 / 28%);
    animation: wspanimate 1.5s infinite;
  }
  .img-user {
    width: 50px;
    height: 50px;
  }

  
  @keyframes wspanimate {
    0% {
      box-shadow: 0 0 0 0 rgb(27, 215, 65, .8);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(1, 155, 242, 0);
      box-shadow: 0 0 0 10px rgba(1, 155, 242, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(1, 155, 242, 0);
      box-shadow: 0 0 0 0 rgba(1, 155, 242, 0);
  }
  }


  .blantershow-chat svg {
    transform: scale(1.2);
  }
  
  .header-chat {
    background: rgb(27, 215, 65, .8);
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

 
  .start-chat {
    background: #efeae2;
    background-image: url(bg-whatsapp.webp);
    opacity: 1;
    background-repeat: repeat;
    background-size: cover;
    position: relative;
}

  #get-label,
  span.chat-label {
    font-size: 12px;
    color: #888;
  }
  #get-nama{
    margin-left: 20px;
    font-size: 13px;
    font-weight: 400;
    color: #d5fff6 !important;
    font-family:  'Poppins';
    width: 100%;
    margin-right: 30px;
  }
  #get-label,

  span.my-number {
    display: none;
  }
  .blanter-msg {
    color: #444;
    padding: 10px;
    font-size: 12.5px;
    text-align: center;
    border-top: 1px solid #ddd;
  }

  .back-opacity{
    opacity: 1;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    background: #dadadcc4;
  }
  textarea#chat-input {
    border: 1px solid #fff;
    padding: 9px 12px 11px;
    font-family: "Poppins";
    width: 100%;
    height: 40px;
    line-height: 22px;
    font-size: 15px;
    overflow:hidden;
    outline: none;
    resize: none;
    border-radius: 30px;
    margin-right: 45px;
    position: relative;

  }

  #send-it {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 0;
    background: rgb(27, 215, 65, .8);
    border-radius: 50%;
    margin-right: 7px;
    color: #fff;
    border: none;
    font-size: 20px;
  }
  #send-it:hover{
    background: #fff;
    color: rgb(27, 215, 65, .8);
    transform: scale(1.1);
  }
  .first-msg {
 
    height: 160px;

  }
  .first-msg span {
    background: #ffffff;
    color: #48505f;
    font-size: 14.2px;
    line-height: 1.7;
    border-radius: 0 10px 10px 10px;
    padding: 10px 5px;
    font-family: 'Poppins';
    box-shadow: 0px 0px 10px 0px #979292;
    position: absolute;
    top: 20px;
    left: 25px;
    z-index: 2;
}

  .start-chat .blanter-msg {
    display: flex;
  }
  #get-number {
    display: none;
  }
  .close-chat {
    position: absolute;
    top: 5px;
    right: 15px;
    color: #fff;
    background-color: transparent;
    font-size: 30px;
    border: none;
  }
  @keyframes showhide {
    from {
        transform: scale(0.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%;
    }
  }
  .hide {
    display: none;
    animation-name: showhide;
    animation-duration: 1.5s;
    transform: scale(1);
    opacity: 1;
  }
  .showWhatsapp {
    display: block;
    animation-name: showhide;
    animation-duration: 1.1s;
    transform: scale(1);
    opacity: 1;
  }
  .blantershow-chat:hover{
    transform: scale(1.03);
    transition: all 0.2s ease-in-out;
  }



  /* =================================
             FIN WHATSAPP CHAT 
  ===================================*/

