/* Selects the UL element inside your custom container class */
#allrecords .uc-wt-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-wt-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-wt-container ul li::before {
  /* The Unicode Checkmark */
  content: "✔";
  
  /* **Your Specific Hex Color** */
  color: #ffffff;
  
  /* 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;
}

/* Set height of slider so there's no page movement */
.t738__slds-wrapper {
    height: 250px;
    @media only screen and (max-width: 959px) {
    height: 500px;
    }
}

/* Set height of kogan logo - fixes cover in mobile */
.uc-kogan .t851__bg {
    background-size: contain;
}