.pxl-buy-now {
  display: inline-flex;
  align-items: center;
  position: fixed;
  bottom: 40px;
  left: 40px;
  z-index: 1001;
  color: #fff;
  background: #222;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 15px;
  text-align: center;
  line-height: 1em;
  text-decoration: none;
  animation: shadow-pulse 1s infinite;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
}
.pxl-buy-now:hover,
.pxl-buy-now:focus {
  color: #fff !important;
}
.pxl-buy-now img {
  max-width: 65px !important;
  margin: 0 0 0 6px !important;
}
.hidden-buy-now .pxl-buy-now {
  display: none !important;
}
@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 rgba(120, 169, 56, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(120, 169, 56, 0);
  }
}
@media screen and (max-width: 767px) {
  .pxl-buy-now {
    display: none;
  }
}
