.line-price {
    transition: color 0.1s ease;
    text-align: right;
    background: none;
}

.line-price.loading {
    display: inline-block; /* Ensures the span takes up space */
    width: 60px; /* Adjust width as needed */
    height: 20px; /* Adjust height as needed */
    background: linear-gradient(90deg, #e6ecf0 0%, #cfd9de 50%, #e6ecf0 100%);
    background-size: 200% 100%;
    animation: loadingAnimation 2s infinite;
    color: transparent;
    .before-discount {
        display: none;
    }
  }

  .offer-message-wrapper span {
    font-size: 0.7em;
    background: #ddf2f3;
    color: #013249;
    border-radius: 5px;
    font-weight: 400;
  }

  .offer-message-wrapper.show {
    margin-top: 0.5em;
  }

  .offer-message-wrapper.show span {
    padding: 0.2em 0.5em;
  }
  
  /* Keyframes for the gradient animation */
  @keyframes loadingAnimation {
    0% {
      background-position: 100% 0;
    }
    100% {
      background-position: -100% 0;
    }
  }
  
  .gform_next_button.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
  }
  