/* Hide the browser's default checkbox */
.container input[type='radio'] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom radio button */
.radiomark {
display: inline-block;
  position: absolute;
  top: 5px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--ce-bg-3);
  border: 1px solid var(--ce-border);

  border-radius: 50%;
}

.radiomark.radioSmall {
  height: 10px;
  width: 10px;
}


/* On mouse-over, add a grey background color */
.container:hover input ~ .radiomark {
  background-color:  var(--ce-hover-2);
}


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

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

/* Style the indicator (dot/circle) */
.container .radiomark:after {
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--ce-active-1);
}

.container .radiomark.radioSmall:after {
  top: 1px;
  left: 1px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ce-active-1);
}