@media only screen and (max-width: 480px) {
  .AC_wpp_plugin{ 
    display: none !important; 
  } 
}
.AC_wpp_plugin {
	  background-position: center;
	  background-repeat: no-repeat;
	  background-image: url("wpp.svg");
	  background-size: 50% auto;
	  background-color: #0cbc55; /* Cor do fundo */
	  position: fixed;
	  z-index: 1000;
	  bottom: 40px;
	  left: 40px;
	  width: 60px;
	  height: 60px;
	  -webkit-border-radius: 50%;
	  cursor: pointer;
	  transition: .3s;
	}
	.AC_wpp_plugin:hover {background-color: #0cbc55; /* Cor do fundo ao passar o mouse */}
	.AC_wpp_plugin:after,
	.AC_wpp_plugin:before {
	  content: '';
	  position: absolute;
	  opacity: 0;
	  border: 4px solid #31de79;
	  left: -10px;
	  top: -10px;
	  right: -10px;
	  bottom: -10px;
	  -webkit-border-radius: 50%;
	  animation: AC_WhatsApp_Animation 1.5s ease infinite
	}
	.AC_wpp_plugin:after {animation-delay: .5s}
	.AC_wpp_plugin:hover:after {border: 4px solid #0cbc55 /* Cor do fundo ao passar o mouse */}
	.AC_wpp_plugin:hover:before {border: 4px solid #0cbc55 /* Cor do fundo ao passar o mouse */}

	@keyframes AC_WhatsApp_Animation {
	  0% {transform: scale(.5)}
	  50% {opacity: 1}
	  100% {transform: scale(1.2);opacity: 0}
	}