/* Put any custom CSS rules here */
/* Target the specific span by matching part of the text */
span[_ngcontent-mld-c53] {
  /* Hide original text */
  color: transparent;
  position: relative;
}

/* Add new text visually */
span[_ngcontent-mld-c53]::after {
  content: "Add 4 or more of any ticket to get $3 off EACH TICKET";
  color: #000; /* Text color */
  font-weight: bold; /* Optional styling */
  position: absolute;
  left: 0;
  top: 0;
}


