/* start fixed icon */
.float2 {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 170px;
  right: 10px;
  background-color: red;
  color: #FFF;
  border-radius: 10px;
  text-align: center;
  font-size: 30px;
  z-index: 9999;
}

.float1 {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 50px;
  right: 10px;
  background-color: blue;
  color: #FFF;
  border-radius: 10px;
  text-align: center;
  font-size: 30px;
  z-index: 9999;
}
.float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 110px;
  right: 10px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 10px;
  text-align: center;
  font-size: 30px;
  z-index: 9999;
}
.blinking {
  animation: blinkingText 1.2s infinite;
}

@keyframes blinkingText{
0%{opacity: 0;color:#F8BF47;}
50%{opacity: .5;color:#fff;}
100%{opacity: 1;color:#fff;}
}
/* end fixed icon */
/*Input Your Custom CSS Here*/