  /* --------------------------------------------
radio button widget */


/* Customize the label (the container) */
.radiobutton-widget {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default radio button */
  .radiobutton-widget input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom radio button */
  .radiobutton-icon {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
  }
  
  /* On mouse-over, add a grey background color */
  .radiobutton-widget:hover input ~ .radiobutton-icon {
    background-color: #ABC1E0;
  }
  
  /* When the radio button is checked, add a blue background */
  .radiobutton-widget input:checked ~ .radiobutton-icon {
    background-color: #5984C1;
  }
  
  /* Create the indicator (the dot/circle - hidden when not checked) */
  .radiobutton-icon:after {
    content: "";
    position: absolute;
    display: block;
  }
  
  /* Show the indicator (dot/circle) when checked */
  .radiobutton-widget input:checked ~ .radiobutton-icon:after {
    display: block;
  }
  
  /* Style the indicator (dot/circle) */
  .radiobutton-widget .radiobutton-icon:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
  }