/* ------------- */
/* RADIO BUTTON */
/* ------------- */
/* The container_radio */
.container_radio {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding-top: 13px;
    font-size: 14px;
  }
  
  /* Hide the browser's default radio button */
  .container_radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  
  /* Create a custom radio button */
  .checkmark {
    position: absolute;
    top: 10px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: white;
    border-radius: 50%;
    border: solid 1px #c8c8c8;
  }
  
  /* On mouse-over, add a grey background color */
  .container_radio:hover input ~ .checkmark {
    background-color: white;
  }
  
  /* When the radio button is checked, add a blue background */
  .container_radio input:checked ~ .checkmark {
    background-color: #a5ce2d;
  }
  
  /* Create the indicator (the dot/circle - hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the indicator (dot/circle) when checked */
  .container_radio input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the indicator (dot/circle) */
  .container_radio .checkmark:after {
       top: 7px;
      left: 7px;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: white;
  }
  
  
  
  
  
  /* -------- */
  /* CHECKBOX */
  /* -------- */
  /* The container_checkbox */
  .container_checkbox {
      display: block;
      position: relative;
      padding-left: 35px;
      margin-bottom: 12px;
      cursor: pointer;
      font-size: 22px;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      padding-top: 12px;
      font-size: 14px;	
    }
    
    /* Hide the browser's default checkbox */
    .container_checkbox input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0;
    }
    
    /* Create a custom checkbox */
    .checkmark_checkbox {
      position: absolute;
      top: 10px;
      left: 0;
      height: 25px;
      width: 25px;
    background-color: white;
    border: solid 1px #c8c8c8;
    }
    
    /* On mouse-over, add a grey background color */
    .container_checkbox:hover input ~ .checkmark_checkbox {
      background-color: white;
    }
    
    /* When the checkbox is checked, add a blue background */
    .container_checkbox input:checked ~ .checkmark_checkbox {
      background-color: #a5ce2d;
    }
    
    /* Create the checkmark_checkbox/indicator (hidden when not checked) */
    .checkmark_checkbox:after {
      content: "";
      position: absolute;
      display: none;
    }
    
    /* Show the checkmark_checkbox when checked */
    .container_checkbox input:checked ~ .checkmark_checkbox:after {
      display: block;
    }
    
    /* Style the checkmark_checkbox/indicator */
    .container_checkbox .checkmark_checkbox:after {
      left: 8px;
      top: 3px;
      width: 7px;
      height: 15px;
      border: solid white;
      border-width: 0 3px 3px 0;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
    }