/**
* ----------------------------------------
* animation heartbeat
* ----------------------------------------
*/
@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

/**
* ----------------------------------------
* animation shadow-pulse
* ----------------------------------------
*/
@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px #4d4cfc26;
    border-radius: 5%;
  }
  100% {
    box-shadow: 0 0 0 10px #4d4cfc26;
  }
}

/**
* ----------------------------------------
* animation Wave animation for content transition
* ----------------------------------------
*/
@keyframes sdb05 {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}

/**
* ----------------------------------------
* animation shadow-pulse fo responsive intercom button
* ----------------------------------------
*/
@keyframes intercom-button-shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px #3047ec1c;
  }
  100% {
    box-shadow: 0 0 0 35px #3047ec1c;
  }
}

/**
* ----------------------------------------
* animation Animations for floating chat button
* ----------------------------------------
*/
@keyframes float-action-active {
  from {
    opacity: 0; 
    transform: rotateZ(-70deg);
  }
  to {
    opacity: 1; 
    transform: rotateZ(0deg);
  }
}

@keyframes float-action-disable {
  from {
    opacity: 1; 
    transform: rotateZ(0deg);
  }
  to {
    opacity: 0; 
    transform: rotateZ(-70deg);
  }
}

@keyframes float-action-button-in {
  from {
    opacity: 1; 
    transform: rotateZ(0deg);
  }
  to {
    opacity: 0; 
    transform: rotateZ(180deg);
  }
}

@keyframes float-action-button-out {
  from {
    opacity: 0; 
    transform: rotateZ(180deg);
  }
  to {
    opacity: 1; 
    transform: rotateZ(0deg);
  }
}

@keyframes float-button-in {
  from {opacity: 0;}
  to {
    opacity: 1; 
    transform: scale(1);
  }
}

@keyframes float-button-out {
  from {
    opacity: 1; 
    transform: scale(1);
  }
  to {
    opacity: 0; 
    transform: scale(0);
  }
}
