 
.radio-container {
  box-sizing: border-box;
  background: #ffffff;
  color: #222;
  height: 34px;
  display: flex;
  justify-content: center; 
  align-items: center;
  flex-flow: row wrap;
}

.radio-container * {
  box-sizing: border-box;
}

.radio-input {
  appearance: none;
  background-color: #ffffff;
  width: 36px;
  height: 36px;
  border: 2px solid #000000;
  margin: 0;
  border-radius: 50%;
  display: grid;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.radio-input:checked {
  background: #A333C8;
  border-color: #A333C8;
}

.radio-input:hover {
  background: #A333C8;
  border-color: #A333C8;
}

.radio-input:checked::before {
  transform: scale(1);
}

.radio {
  cursor: pointer;
  padding: 6px 8px;
}

.radio:not(:last-child) {
  margin-right: 6px;
}