/**********************
BOTAO WHATSAPP
*/
._whats {
    position:fixed;
    width:60px;
    height:60px;
    bottom:18px;
    right:18px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    z-index:999999 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 3px rgb(126, 126, 126);
  }
  ._whats:hover{
    color: #ffffff;
  }
  ._whats__icon {
    margin-top:13px;
  }
  ._whats img{
    max-height: 86%;
  }
  ._whats--pulse {
      background: #25d366;
      color: white;
      position: fixed;
      bottom: 18px;
      right: 18px;
      font-size: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 0;
      height: 0;
    z-index: 900 !important;
      padding: 35px;
      text-decoration: none;
      border-radius: 50%;
      animation-name: pulse;
      animation-duration: 1.5s;
      animation-timing-function: ease-out;
      animation-iteration-count: infinite;
  }
  ._whats--pulse:hover{
    color: #ffffff;
  }
  @keyframes pulse {
      0% {
          box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
      }
      80% {
          box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
      }
  }
  ._whats--pulse span{
    font-size: 2.8rem;
  }
  ._whats--pulse-border {
      bottom: 18px;
      right: 18px;
      animation-play-state: paused;
    z-index: 999999 !important;
  }
  ._whats--pulse-border::before {
      content: "";
      position: absolute;
      border-radius: 50%;
      padding: 25px;
      border: 5px solid #25d366;
      opacity: 0.75;
      animation-name: pulse-border;
    z-index: 999999 !important;
      animation-duration: 1.5s;
      animation-timing-function: ease-out;
      animation-iteration-count: infinite;
  }
  @keyframes pulse-border {
      0% {
          padding: 25px;
          opacity: 0.75;
      }
      75% {
          padding: 50px;
          opacity: 0;
      }
      100% {
          opacity: 0;
      }
  }
  ._whats--right-center{top:50%;transform: translateY(-50%);}
  ._whats--right-top{top:18px;}
  ._whats--left-top{top:18px;left: 18px;}
  ._whats--left-center{top:50%;transform: translateY(-50%);left: 18px;}
  ._whats--left-bottom{left: 18px;bottom: 18px;}
  ._whats--center-center{left: 50%;top:50%;transform: translate(-50%,-50%);}
  ._whats--center-bottom{left: 50%;transform: translateX(-50%);bottom: 18px;}
  /* 
  BOTAO WHATSAPP
  ***********************/