/* Selects the UL element inside your custom container class */
#allrecords .uc-rt-container ul {
  /* Hides the default bullet points */
  list-style: none; 
  /* Creates space on the left for the custom tick */
  padding-left: 1.5em; 
}

/* Selects all LI elements inside the UL */
#allrecords .uc-rt-container ul li {
  /* Establishes a reference point for the tick's position */
  position: relative;
  /* Optional: Adds vertical space between list items */
  margin-bottom: 0.5em; 
}

/* Inserts the tick and applies the custom style */
#allrecords .uc-rt-container ul li::before {
  /* The Unicode Checkmark */
  content: "✔";
  
  /* **Your Specific Hex Color** */
  color: #ed1c24;
  
  /* Absolutely positions the tick within the LI */
  position: absolute;
  /* Moves the tick to the left into the padding area */
  margin-left: -1.5em;
  
  /* Makes the checkmark stand out */
  font-weight: bold;
}

/* Control height of supplier logos to make even */
.t738__img {
    max-height: 90px;
}