/*---------------------------
  Blue Button
---------------------------*/
a.fb-message-blue {
  font-size: 20px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(rgb(169, 248, 105), rgb(116, 184, 60));
  width: 75px;
  height: 75px;
  line-height: 25px;
  position: fixed;
  border-radius: 50%;
  outline: none;
  transition: all ease 0.15s;
}

a.fb-message-blue:hover {
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.9);
  /* transform: scale(1.15); */ /* uncomment to add zoom effect */
}

a.fb-message-blue:focus {
  background-color: #0084ff;
  box-shadow: inset 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
}

.fb-message-blue i {
  background-image: url("https://i.imgur.com/hjwozo7.png");
  background-repeat: no-repeat;
  background-size: 45px;
  background-position: center;
  top: -1px;
  height: 75px;
  width: 75px;
  padding: 25px 15px;
  float: left;
}

/* Floating Messenger */
.floating {
  animation-name: floating;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  margin-left: 30px;
  margin-top: 5px;
}

@keyframes floating {
  from {
    transform: translate(0, 0px);
  }
  65% {
    transform: translate(0, 35px);
  }
  to {
    transform: translate(0, 0px);
  }
}/*# sourceMappingURL=messenger.css.map */