.container-wa .floating-button {
    position: fixed;
    bottom: 2%;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #fd5f00;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    cursor: pointer;
    z-index:999;
    /* box-shadow: 0px 2px 5px #666; */
  }
  .container-wa .floating-button:hover {
    background-color: #fd5f00;
  }
  .container-wa .floating-button .icon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    line-height: 60px;
    text-align: center;
    transition: all 0.3s;
  }
  .container-wa .floating-button .icon.wa {
    animation: wa-out 0.3s;
  }
  .container-wa .floating-button .icon.close {
    opacity: 0;
    margin: auto;
    transform: rotateZ(-70deg);
    animation: close-out 0.3s;
    color: white;
  }
  .container-wa .card {
    position: fixed;
    width: 350px;
    height: 400px;
    background-color: transparent;
    border-radius: 5px;
    right: 90px;
    bottom: 120px;
    display: none;
    z-index:999;
  }
  .container-wa .card .banner-header {
    background-color:#fd5f00;
    color: white;
    padding: 20px;
    padding-bottom: 20px;
    background-color: #fd5f00;
  }
  .container-wa .card .banner-body {
    flex-grow: 1;
    background-color: #eaeaea;
    padding: 10px;
    height: 100%;
    overflow-y: scroll;
  }
  .container-wa .card .banner-body .card-atendente {
    /* margin-top: -50px; */
    background-color: white;
    padding: 10px;
    display: flex;
    flex-direction: column;
    border-radius: 15px;
  }
  .container-wa .card .banner-body .card-atendente .dados-atendente {
    display: flex;
  }
  .container-wa .card .banner-body .card-atendente .dados-atendente .avatar {
    padding: 15px;
  }
  .container-wa .card .banner-body .card-atendente .dados-atendente .avatar img {
    border-radius: 50%;
  }
  .container-wa .card .banner-body .card-atendente .dados-atendente .informacoes {
    padding: 15px;
    font-size: 13px;
  }
  .container-wa .card .banner-body .card-atendente .botao-atendente {
    display: flex;
  }
  .container-wa .card .banner-body .card-atendente .botao-atendente .btn {
    color: white;
    background-color: #dfdfdf;
    color:black;
    border-radius: 15px;
    width: 100%;
    padding: 10px;
    text-align: left;
    text-decoration: none;
    font-size:12px;
    font-weight:500;
  }
  .container-wa.is-opened .icon.wa {
    animation: wa-in 0.15s linear;
    animation-fill-mode: forwards;
  }
  .container-wa.is-opened .icon.close {
    animation: close-in 0.2s;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;
  }
  .container-wa.is-opened .card {
    display: flex;
    flex-direction: column;
  }
  
  .container-wa.is-opened .icon.wa {
    animation: wa-in 0.15s linear;
    animation-fill-mode: forwards;
  }
  
  .container-wa.is-opened .icon.close {
    animation: close-in 0.2s;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;
  }
  
  @keyframes close-in {
    from {
      opacity: 0;
      transform: rotateZ(-70deg);
    }
    to {
      opacity: 1;
      transform: rotateZ(0deg);
    }
  }
  @keyframes close-out {
    from {
      opacity: 1;
      transform: rotateZ(0deg);
    }
    to {
      opacity: 0;
      transform: rotateZ(-70deg);
    }
  }
  @keyframes wa-in {
    from {
      opacity: 1;
      transform: rotateZ(0deg);
    }
    to {
      opacity: 0;
      transform: rotateZ(180deg);
    }
  }
  @keyframes wa-out {
    from {
      opacity: 0;
      transform: rotateZ(180deg);
    }
    to {
      opacity: 1;
      transform: rotateZ(0deg);
    }
  }

  @media only screen and (max-width: 600px) {
    .container-wa .floating-button {
      position: fixed;
      bottom: 20px;
      right: 10px;
      width: 60px;
      height: 60px;
      background-color: #fd5f00;
      color: white;
      border-radius: 50px;
      text-align: center;
      font-size: 35px;
      cursor: pointer;
      z-index:999;
      /* box-shadow: 0px 2px 5px #666; */
    }

    .container-wa .card {
      position: fixed;
      width: 350px;
      height: 400px;
      background-color: transparent;
      border-radius: 5px;
      right: 10px;
      bottom: 120px;
      display: none;
      z-index:999;
    }
  }

  @media only screen and (max-width: 320px) {
    .container-wa .floating-button {
      position: fixed;
      bottom: 20px;
      right: 10px;
      width: 60px;
      height: 60px;
      background-color: #fd5f00;
      color: white;
      border-radius: 50px;
      text-align: center;
      font-size: 35px;
      cursor: pointer;
      z-index:999;
      /* box-shadow: 0px 2px 5px #666; */
    }

    .container-wa .card {
      position: fixed;
      width: 300px;
      height: 350px;
      background-color: transparent;
      border-radius: 5px;
      right: 10px;
      bottom: 120px;
      display: none;
      z-index:999;
    }
  }