/* Customize the label (the radiost) */
.radiost {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  /*font-size: 22px;*/
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

/* Create a custom radio button */
.radiomark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #fff;
  border-radius: 50%;
  border-color: #566573;
  border-style: solid;
  border-width: 1px;
}

/* On mouse-over, add a grey background color */
.radiost:hover input ~ .radiomark {
  background-color: #EBDEF0;
  cursor: pointer;
}

/* When the radio button is checked, add a blue background */
.radiost input:checked ~ .radiomark {
  background-color: white;
  border-color: #4F2A83;
  border-style: solid;
  border-width: 1px;
}

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

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

/* Style the indicator (dot/circle) */
.radiost .radiomark:after {
  top: 3px;
  left: 3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4F2A83;
}