<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"> /* Customize the label (the crblue) */
.crblue {
/*  display: block;  */
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.crblue input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom radio button */
.radiomark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #B9C1CA;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.crblue:hover input ~ .radiomark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.crblue input:checked ~ .radiomark {
  background-color: #2775b7;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radiomark:after {
  content: "";
  position: absolute;
/*  display: none; */
}

/* Show the indicator (dot/circle) when checked */
.crblue input:checked ~ .radiomark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.crblue .radiomark:after {
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
} 
</pre></body></html>