.whatico{
    width: 50px;
    height: 50px;
    border-radius: 35px;
    background: #3AC371;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.whatsapp-button{
    position: fixed;
    bottom: 0px;
    right: 0px;
    z-index: 1000;
    transition: 0.5s;
    margin-right: 30px;
    margin-left: 0px;
    margin-top: 0px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgb(0 0 0 / 9%), 0 4px 40px rgb(0 0 0 / 24%) !important;
    display: flex;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: transparent !important;
}
.white-whatsapp{
    width: 60px;
    height: 60px;
    border-radius: 40px;
    background-color: #fff;
    text-align: center;
    border-radius: 50%;
    z-index: 1;
}
.white-whatsapp::before{
    content: "";
    top: 42px;
    left: -17px;
    border-width: 22px;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
    position: absolute;
    transform: rotate(-50deg) rotateX(-55deg);
}
.white-whatsapp::after{
    content: "";
    top: 46px;
    left: -2px;
    border-width: 12px;
    border-style: solid;
    border-color: transparent #3AC371 transparent transparent;
    position: absolute;
    transform: rotate(-51deg) rotateX(-50deg);
}
.whatico i{
    left: 12px;
    top: 14px;
    position: absolute;
    font-size: 23px;
    color: #fff;
    transform: rotate(90deg);
}
.whatico i:hover{
     animation: oscillate-rotation 1s ease-in-out;
}
.fa-phone:before{
        content: "\f095";
}
@keyframes oscillate-rotation {
  0% {
    transform: rotate(90deg) scale(1) skew(0deg);
  }
  10% {
    transform: rotate(65deg) scale(1) skew(0deg);
  }
  20% {
    transform: rotate(115deg) scale(1) skew(0deg);
  }
  30% {
    transform: rotate(65deg) scale(1) skew(0deg);
  }
  40% {
    transform: rotate(115deg) scale(1) skew(0deg);
  }
  50% {
    transform: rotate(90deg) scale(1) skew(0deg);
  }
  100% {
    transform: rotate(90deg) scale(1) skew(0deg);
  }
}
@keyframes circlepulse {
  0% {
    transform: scale(1, 1);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

.circle-anime {
    display: flex;
    position: absolute;
    justify-content: center;
    align-content: center;
    width: 60px;
    height: 60px;
    top: 0;
    right: 0;
    border-radius: 50%;
    transition: 0.3s;
    background-color: #3ac371;
    animation: circlepulse 1.2s 1s ease 4;
    animation-iteration-count: infinite;
    z-index: -1;
}
@media (max-width: 992px){
    #whatsappbtn {
        transform: scale(0.8);
    }
}