/****************************************************************************************/
/*   This css code is for radio button designing     - Starts here 0  to 68 line         *
/*                                                                                       *
/****************************************************************************************/
/* The cf-course-quiz-container-check */
.cf-course-quiz-container-check {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.cf-course-quiz-container-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.cf-course-quiz-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.cf-course-quiz-container-check:hover input ~ .cf-course-quiz-checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.cf-course-quiz-container-check input:checked ~ .cf-course-quiz-checkmark {
  background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.cf-course-quiz-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.cf-course-quiz-container-check input:checked ~ .cf-course-quiz-checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.cf-course-quiz-container-check .cf-course-quiz-checkmark:after {
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
}

/****************************************************************************************/
/*   This css code is for custom checkbox button designing     - Starts here 75 to 140   *
/*                                                                                       *
/****************************************************************************************/

/* The cf-course-quiz_container_chkbox */
.cf-course-quiz_container_chkbox {
  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;
}

/* Hide the browser's default checkbox */
.cf-course-quiz_container_chkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.cfcourse_quiz_checkmark_chkbox {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.cf-course-quiz_container_chkbox:hover input ~ .cfcourse_quiz_checkmark_chkbox,
.cf-course-user-check-opt:hover .cfcourse_quiz_checkmark_chkbox {
  background-color: rgb(117, 111, 111);

}
.cf-course-user-opt-label{
  cursor: pointer;
  background-origin: blue;
  font-size: 15px;
}
.cf-course-user-opt-label:hover {
  background-color:  rgb(223 222 222 / 86%)
}
/* When the checkbox is checked, add a blue background */
.cf-course-quiz_container_chkbox input:checked ~ .cfcourse_quiz_checkmark_chkbox {
  background-color: #2196F3;
}

/* Create the cfcourse_quiz_checkmark_chkbox/indicator (hidden when not checked) */
.cfcourse_quiz_checkmark_chkbox:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the cfcourse_quiz_checkmark_chkbox when checked */
.cf-course-quiz_container_chkbox input:checked ~ .cfcourse_quiz_checkmark_chkbox:after {
  display: block;
}

/* Style the cfcourse_quiz_checkmark_chkbox/indicator */
.cf-course-quiz_container_chkbox .cfcourse_quiz_checkmark_chkbox:after {
  left: 9px;
  top: 5px;
  width: 8px;
  height: 13px;
  border: solid white;
  border-width: 0 4px 4px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cf-custom-res-comment span{
  padding-bottom: 3px;
  padding-top: 2px
}
.cf-custom-res-comment span input[type='number']{
  padding: 2px;
  padding-left: 9px;
  width: 57px;
  border-radius: 3px;
  border: 1px solid #cccccc;
}


.cf-course-clear-both::after{
  clear: both;
  display: table;
  content: "";
}