﻿/* Customize the label (the radiobutton-container) */
.radiobutton-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
  
/* Hide the browser's default radio button */
.radiobutton-container input {
    position: absolute;
    opacity: 0;
}
  
/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: solid 1px #2d2f30;
}
  
/* On mouse-over, add a grey background color */
.radiobutton-container:hover input ~ .checkmark {
    background-color: #ccc;
}
  
/* When the radio button is checked, add a background */
.radiobutton-container input:checked ~ .checkmark {
    border: none;
    background-color: #96be0f;
}

.checkmarkInsideCircle {
    position: absolute;
    left: 5px;
    top: 5px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #fff;
}

.radiobutton-container:hover input ~ .checkmarkInsideCircle {
    background-color: #ccc;
}

.radiobutton-container input:checked ~ .checkmarkInsideCircle {
    background: #fff;
}
  
/* Create the indicator (the dot/circle - hidden when not checked) */
/* .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  } */
  
/* Show the indicator (dot/circle) when checked */
.radiobutton-container input:checked ~ .checkmark:after {
    display: block;
}
  
/* Style the indicator (dot/circle) */
.radiobutton-container .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}