.whatsappButton {
  height: 60px;
  left: auto;
  position: fixed;
  top: auto;
  width: 60px;
  right: 20px;
  bottom: 20px;
  border-radius: 50%;
  z-index: 10;
  opacity: 1;
  pointer-events: all;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.whatsappButton.hide {
  bottom: 10px;
  opacity: 0;
  pointer-events: none;
}
.whatsappButton:hover:before {
  background: #1b952d;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.whatsappButton:before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background: #2db742;
  border-radius: 50%;
  box-shadow: 0 6px 8px 2px rgba(0, 0, 0, 0.14);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.whatsappButton a {
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.whatsappButton a .icon {
  height: auto;
  left: 50%;
  position: absolute;
  top: 50%;
  width: auto;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  font-size: 36px;
  color: #f5f7f2;
  margin-top: 2px;
}
@media all and (max-width: 1240px) {
  .whatsappButton {
    right: calc(50% - 590px);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media all and (max-width: 1200px) {
  .whatsappButton {
    right: 20px;
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
@media all and (max-width: 767px) {
  .whatsappButton {
    right: 10px;
    bottom: 10px;
  }
}
/*# sourceMappingURL=whatsapp_button.css.map */