 /* Customize the label (the container) */
 .radio-container {
    display: block;
    cursor: pointer;
    position: relative;
    left: 47.5%;
    bottom: 5px;
  }
  
  /* Hide the browser's default radio button */
  .radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom radio button */
  .radio-controller {
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 1px solid #707070;
    border-radius: 50%;
  }
  
  /* On mouse-over, add a grey background color */
  .radio-container:hover input ~ .radio-controller {
    background-color: #ddd;
  }
  
  /* Create the indicator (the dot/circle - hidden when not checked) */
  .radio-controller:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the indicator (dot/circle) when checked */
  .radio-container input:checked ~ .radio-controller:after {
    display: block;
  }
  
  /* Style the indicator (dot/circle) */
  .radio-container .radio-controller:after {
    top: 2px;
    left: 2px;
    width: 6px;
    height: 6px;
    background: #707070;
    border: 1px solid #707070;   
    border-radius: 50%; 
  } 