a{
    cursor: pointer;
}
.btn-whatsapp {
    display: block;
    width: 75px;
    height: 75px;
    position: fixed;
    right: 2px;
    bottom: 2px;
    border-radius: 100px;
    text-align: center;
    z-index: 999;
    font-size: 60px;
    background-image: linear-gradient(to top, #00ba85, #00c17f, #00c778, #12cd70, #25d366);
    transition: .5s;
    border: 3px solid rgba(255, 255, 255, .5);
    -webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.btn-whatsapp i {
    color: #fff;
    transition: .5s;
    display: block;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}
.btn-whatsapp span {
    font-size: .2em;
    position: absolute;
    right: 0px;
    top: -10px;
    width: 20px;
    height: 20px;
    background-color: #de2f36;
    color: #fff;
    border-radius: 100px;
    line-height: 20px;
    -webkit-animation: .5s cubic-bezier(.25, .46, .45, .94) 2s both scale-in-center;
    animation: .5s cubic-bezier(.25, .46, .45, .94) 2s both scale-in-center;
    animation-delay: 1s;
}
@keyframes iconw {

    0%,
    100% {
        transform: scale(.8)
    }

    50% {
        transform: scale(1)
    }
}
.btn-whatsapp p {
    background: #f2f2f2;
    position: absolute;
    bottom: 0px;
    padding: 10px;
    right: 20px;
    font-size: 14px;
    border: 4px solid rgba(255, 255, 255, .5);
    border-radius: 20px 20px 0;
    box-shadow: rgba(0, 0, 0, .1) 0 10px 15px -3px, rgba(0, 0, 0, .05) 0 4px 6px -2px;
    line-height: normal;
    -webkit-animation: .5s cubic-bezier(.25, .46, .45, .94) 2s both slide-in-right;
    animation: .5s cubic-bezier(.25, .46, .45, .94) 2s both slide-in-right;
    width: 180px;
    animation-delay: 1.5s;
}

.btn-whatsapp .close {
    font-size: .25em;
    color: #95a0a8;
    border-radius: 100px;
    -webkit-animation: .5s cubic-bezier(.25, .46, .45, .94) 2s both scale-in-center;
    animation: .5s cubic-bezier(.25, .46, .45, .94) 2s both scale-in-center;
    background-color: #f2f2f2;
    bottom: 60px;
    right: 15px;
    z-index: 999;
    padding: 1px;
    width: 20px;
    height: 20px;
    position: absolute;
    text-decoration: none;
    border: 1px solid #f2f2f2;
    line-height: 1;
    animation-delay: 2s;
}
.wtext{
    transform: scale(0);
    transition: .5s ease;
}
.show {
    transform: scale(1) !important;
    transition: .5s ease;
}
@-webkit-keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(1000px);
        transform: translateX(1000px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1
    }
}
@keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(1000px);
        transform: translateX(1000px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1
    }
}
 @-webkit-keyframes slide-in-bottom {
    0% {
      -webkit-transform: translateY(1000px);
              transform: translateY(1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
    }
  }
  @keyframes slide-in-bottom {
    0% {
      -webkit-transform: translateY(1000px);
              transform: translateY(1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
    }
  }
  
@-webkit-keyframes scale-in-center {
    0% {
      -webkit-transform: scale(0);
              transform: scale(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1;
    }
  }
  @keyframes scale-in-center {
    0% {
      -webkit-transform: scale(0);
              transform: scale(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1;
    }
  }
  
  @media (min-width: 100px) and (max-width: 991px){
    .btn-whatsapp {
      display: block;
      width: 65px;
      height: 65px;
      font-size: 48px;
  }
  .btn-whatsapp span {
    right: -5px;
    top: -15px;
}
.btn-whatsapp p {
  padding: 10px;
  font-size: 12px;
  width: 150px;
}

.btn-whatsapp .close {
  bottom: 50px;
  right: 15px;
}
  }
  
  