/*hide Support Menu */
div[title="Support"] {
     display:none;
}

/* Hide Chat Button*/
.chatIconContainer {
display: none;
}

/* Add asterisk to mandatory field label */
.axios-mandatory-field:before {
  font-weight: bold;
  color: red;
  content: "* ";
}

/* Make mandatory field label black*/
.axios-mandatory-field {
  color: red !important;
 }

/* Hide custom fields with the word HIDE in their short code. They can still be accessed by other fields unlike hiding them in the customizer */
div[data-auto-test-id*="HIDE"] {
 display: none;
}
textarea[data-auto-test-id*="HIDE"] {
 display: none;
}

[data-auto-test-id*="HIDE"{
   display: none;
}

/*hide labels that have a white color style via the customizer (255,255,255)*/
label[style*="255, 255, 255"]{
   display: none;
}

label[style*="255, 0, 0"]{
  font-weight: bold;
  color:rgb(0, 0, 0);
}
