


.phone-call {
    width: 50px;
    height: 90px;
    left: 250px;
    bottom: 20px;
    
    position: fixed;
    text-align: center;
 
    cursor: pointer;
    border-radius: 50%;
    z-index: 99;
  display: inline-block;
  line-height: 65px;
}

.phone-call:before {
    position: absolute;
    content: " ";
    z-index: -10;
    top: -18px;
    left: -19px;
    right: -18px;
    background-color: #0d5710;
    width: 110px;
    height: 110px;
    border-radius: 200%;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    opacity: 0.6;
    -webkit-animation: pulse 1s ease-out;
    animation: pulse 1.8s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0);
        opacity: 0;
    }
    25% {
        -webkit-transform: scale(0.3);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(0.6);
        opacity: .6;
    }
    75% {
        -webkit-transform: scale(0.9);
        opacity: .3;
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    25% {
        transform: scale(0.3);
        opacity: 1;
    }
    50% {
        transform: scale(0.6);
        opacity: .6;
    }
    75% {
        transform: scale(0.9);
        opacity: .3;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}


/* Base */
.btn-floating:hover img {
    margin-bottom: -3px
  }
  
  .btn-floating {
      position: fixed;
      right: 25px;
      overflow: hidden;
      width: 50px;
      height: 50px;
      border-radius: 100px;
      border: 0;
      z-index: 9999;
      color: white;
      transition: .2s;
  }
  
  .btn-floating:hover {
      width: auto;
      padding: 0 20px;
      cursor: pointer;
  }
  
  .btn-floating span {
      font-size: 16px;
      margin-left: 5px;
      transition: .2s;
      line-height: 0px;
      display: none;
  }
  
  .btn-floating:hover span {
      display: inline-block;
  }
  
  /* Phone */
  .btn-floating.phone {
      bottom: 85px;
      background-color: #9b1414;
  }
  
  .btn-floating.phone:hover {
      background-color: #c43131;
  }
  
  /* WhatsApp */
  .btn-floating.whatsapp {
      background-color: #34af23;
      bottom: 25px;
  }
  
  .btn-floating.whatsapp:hover {
      background-color: #1f7a12
  }

@-webkit-keyframes pulse {
0% {
-webkit-transform: scale(0);
opacity: 0;
}
25% {
-webkit-transform: scale(0.3);
opacity: 1;
}
50% {
-webkit-transform: scale(0.6);
opacity: .6;
}
75% {
-webkit-transform: scale(0.9);
opacity: .3;
}
100% {
-webkit-transform: scale(1);
opacity: 0;
}
}

@keyframes pulse {
0% {
transform: scale(0);
opacity: 0;
}
25% {
transform: scale(0.3);
opacity: 1;
}
50% {
transform: scale(0.6);
opacity: .6;
}
75% {
transform: scale(0.9);
opacity: .3;
}
100% {
transform: scale(1);
opacity: 0;
}
}
