.container2 {
  display: block;
  position: relative;
  padding-left: 50px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-bottom: 20px;
}


/* Hide the browser's default radio button */

.container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}


/* Create a custom radio button */

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 34px;
  width: 34px;
  background-color: white;
  border: 1px solid #353535;
  border-radius: 50%;
  box-shadow: 0px 4px 4px 0px #00000066;
}


/* On mouse-over, add a grey background color */

.container2:hover input~.checkmark {
  background-color: #ccc;
}


/* When the radio button is checked, add a blue background */

.container2 input:checked~.checkmark {
  background-color: white;
  border: 1px solid #353535;
}


/* Create the indicator (the dot/circle - hidden when not checked) */

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}


/* Show the indicator (dot/circle) when checked */

.container2 input:checked~.checkmark:after {
  display: block;
}


/* Style the indicator (dot/circle) */

.container2 .checkmark:after {
  top: 6px;
  left: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #2196F3;
}