.wps-btn__loader {
    position: relative;
  }
  
  .wps-btn__loader:before {
    animation: loading 1s infinite linear;
    content: "\f113";
    font-size: 20px;
    position: absolute;
    top: 50%;
    right: -30px;
    transform-origin: center;
    color: #0073aa;
    font-family: dashicons;
  }

  @keyframes loading {
    from {
      transform: translateY(-50%) rotate(360deg);
    }
    to {
      transform: translateY(-50%) rotate(0deg);
    }
  }

  .download_invoice_message {
    display: none;
    color: chartreuse;
  }