/*for normal icon*/
div#chatwhatsapp a{
    right:5px; 
    bottom:121px; 
    /*background-color:#32a336;*/
}

div#chatwhatsapp .whatsapp_a{
    border: medium none;
    border-radius: 50%;
    box-shadow: none;
    height: 60px;
    line-height: normal;
    margin: 0;
    opacity: 0.9;
    outline: medium none;
    padding: 0;
    position: fixed;
    text-align: center;
    text-decoration: none;
    width: 60px;
}

div#chatwhatsapp {
    z-index: 9;
}

div#chatwhatsapp i.fa.fa-whatsapp{
    font-size: 40px;
    margin-top: 10px;
   /* color: white;*/
}


/*for rotate icon*/
div#chatwhatsapp a.whatsapp_a.rotate i.fa.fa-whatsapp{
    /*-webkit-transition: all 0.5s;*/
    transition: all ease-in 1s;
}

div#chatwhatsapp a.whatsapp_a.rotate i.fa.fa-whatsapp:hover{
    font-size: 40px;
    transform: rotate(360deg);
}

/*for bounce for bottom icon*/
#chatwhatsapp a.whatsapp_a.bounce{
    -webkit-animation:bounce 1s infinite;
}

@-webkit-keyframes bounce{
      0%       { bottom:5px; }
      25%, 75% { bottom:15px; }
      50%      { bottom:20px; }
      100%     {bottom:0;}
    }


/*for pulse icon*/
div#chatwhatsapp a.whatsapp_a.pulse{
    animation: shadow-pulse 1s infinite;
}
@keyframes shadow-pulse
{
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0);
  }
}

/*for wiggle icon*/
div#chatwhatsapp a.whatsapp_a.wiggle{
    animation: wiggle 75ms infinite;
  animation-timing-function: linear;   
}

@keyframes wiggle{
  0% { transform: translate(2px, 0); }
  50% { transform: translate(-2px, 0); }
  100% { transform: translate(2px, 0); }
}

/*for zoom icon*/
div#chatwhatsapp a.whatsapp_a.zoom:hover {
    transform: scale(1.1);
    transition: all ease 500ms;
}

/*for wiggle icon on hover*/
div#chatwhatsapp .wiggle_on_hover:hover{ 
  animation: wiggle 75ms infinite;
  animation-timing-function: linear;   
}

@keyframes wiggle {
  0% { transform: translate(2px, 0); }
  50% { transform: translate(-2px, 0); }
  100% { transform: translate(2px, 0); }
}

/*for pulse icon on hover*/
div#chatwhatsapp .pulse_on_hover:hover{
    animation: shadow-pulse-hover 1s infinite;
}
@keyframes shadow-pulse-hover
{
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0);
  }
}

/*for set position for bottom*/
div#chatwhatsapp.bottom-left a.whatsapp_a {
    left: 10px;
    bottom: 10px;
}

div#chatwhatsapp.bottom-right a.whatsapp_a {
    right: 10px;
    bottom: 10px;
}

div#chatwhatsapp.bottom-middle a.whatsapp_a {
    left: 50% ;
    bottom: 10px;
}


/*for set position for top*/
div#chatwhatsapp.top-left a.whatsapp_a {
    top: 10px;
    left: 10px;
}

div#chatwhatsapp.top-right a.whatsapp_a {
    top: 30px;
    right: 10px;
}

div#chatwhatsapp.top-middle a.whatsapp_a {
    top: 10px;
    left: 50%;
}

/*for set position for left middle and right middle*/
div#chatwhatsapp.left-middle a.whatsapp_a {
    top: 50%;
    left: 10px;
}

div#chatwhatsapp.right-middle a.whatsapp_a {
    right: 10px;
    top: 50%;
}

/*left middle*/
#chatwhatsapp.left-middle .whatsapp_text_bubble {
    min-width: 100px;
    height: 40px;
    padding: 0px;
    margin-left: 69px;
    margin-top: -40px;
    position: relative;
    border-radius: .4em;
    font-weight: 600;
}

#chatwhatsapp.left-middle .whatsapp_text_bubble:after {
    content: '';
    position: absolute;
    left: 0;
    border: 10px solid transparent;
    border-right-color: var(--tooltip-text-bubble-bgcolor);
    border-left: 0;
    margin-top: -10px;
    margin-left: -10px;
}

/*right middle*/
#chatwhatsapp.right-middle .whatsapp_text_bubble {
    min-width: 100px;
    height: 40px;
    margin-left: -108px;
    margin-top: -38px;
    position: relative;
    border-radius: .4em;
    font-weight: 600;
}

#chatwhatsapp.right-middle .whatsapp_text_bubble:after {
    content: '';
    position: absolute;
    right: 0;
    border: 10px solid transparent;
    border-left-color: var(--tooltip-text-bubble-bgcolor);
    border-right: 0;
    margin-top: -10px;
    margin-right: -9px;
}

/*top middle*/
#chatwhatsapp.top-middle .whatsapp_text_bubble {
    min-width: 100px;
    height: 40px;
    margin-left: -13px;
    margin-top: 20px;
    position: relative;
    border-radius: .4em;
    font-weight: 600;
}

#chatwhatsapp.top-middle .whatsapp_text_bubble:after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    border: 10px solid transparent;
    border-bottom-color: var(--tooltip-text-bubble-bgcolor);
    border-top: 0;
    margin-left: -9px;
    margin-top: -10px;
}

/*top left*/
#chatwhatsapp.top-left .whatsapp_text_bubble {
    min-width: 100px;
    height: 40px;
    margin-left: 25px;
    margin-top: 20px;
    position: relative;
    border-radius: .4em;
    font-weight: 600;
}

#chatwhatsapp.top-left .whatsapp_text_bubble:after {
    content: '';
    position: absolute;
    top: 0;
    left: 38%;
    border: 10px solid transparent;
    border-bottom-color: var(--tooltip-text-bubble-bgcolor);
    border-top: 0;
    border-left: 0;
    margin-left: -19px;
    margin-top: -10px;
}

/*top right */
#chatwhatsapp.top-right .whatsapp_text_bubble {
    min-width: 100px;
    height: 40px;
    margin-left: -55px;
    margin-top: 20px;
    position: relative;
    border-radius: .4em;
    font-weight: 600;
}

#chatwhatsapp.top-right .whatsapp_text_bubble:after {
    content: '';
    position: absolute;
    top: 0;
    left: 91%;
    margin-left: -10px;
    margin-top: -20px;
    border: 10px solid transparent;
    border-bottom-color: var(--tooltip-text-bubble-bgcolor);
    border-right: 0;
}

/*bottom middle*/
#chatwhatsapp.bottom-middle .whatsapp_text_bubble {
    min-width: 100px;
    height: 40px;
    margin-left: -14px;
    margin-top: -100px;
    position: relative;
    border-radius: .4em;
    font-weight: 600;
}

#chatwhatsapp.bottom-middle .whatsapp_text_bubble:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    border: 10px solid transparent;
    border-top-color: var(--tooltip-text-bubble-bgcolor);
    border-bottom: 0;
    margin-left: -8px;
    margin-bottom: -10px;
}

/*bottom left*/
#chatwhatsapp.bottom-left .whatsapp_text_bubble {
    min-width: 100px;
    height: 40px;
    margin-left: 30px;
    margin-top: -99px;
    position: relative;
    border-radius: .4em;
    font-weight: 600;
}

#chatwhatsapp.bottom-left .whatsapp_text_bubble:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    border: 10px solid transparent;
    border-top-color: var(--tooltip-text-bubble-bgcolor);
    border-bottom: 0;
    border-left: 0;
    margin-left: -32px;
    margin-bottom: -10px;
}

/*bottom right*/
#chatwhatsapp.bottom-right .whatsapp_text_bubble{
    min-width: 100px;
    margin-left: -53px;
    margin-top: -99px;
    height: 40px;
    position: relative;
    border-radius: .4em;
    font-weight: 600;
}

#chatwhatsapp.bottom-right .whatsapp_text_bubble:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 64%;
    border: 10px solid transparent;
    border-top-color: var(--tooltip-text-bubble-bgcolor);
    border-right: 0;
    margin-left: 10px;
    margin-bottom: -20px;
}
