/* Custom css  */

.admission_form .form-check-label{
  min-width: 80px;
width: auto;
}

.admission_form .common-radio .form-check-input:checked::after{
  top: 8px;
  left: 8px;
  transform: translate(0,0);
}

/* Custom Check box css  */
.customCheckbox .checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 16px;
  position: relative;
}

/* Hide default checkbox */
.customCheckbox .checkbox input {
  display: none;
}

/* Custom box */
.customCheckbox .checkbox span{
  position: relative;
  display: inline-block;
  padding-left: 30px;
  line-height: 20px;
}

.customCheckbox .checkbox span::before {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 18px;
  border: 2px solid #071431;
  border-radius: 4px;
  display: inline-block;
  transition: all 0.2s ease;
}

/* Checkmark */
.customCheckbox .checkbox span::after {
  content: "✔";
  position: absolute;
  left: 3px;
  top: 0px;
  font-size: 14px;
  color: white;
  opacity: 0;
  transition: 0.2s ease;
}

/* Checked state */
.customCheckbox .checkbox input:checked + span::before {
  background-color: #058c31;
  border-color: #058c31;
}

.customCheckbox .checkbox input:checked + span::after {
  opacity: 1;
}

/* Hover effect */
.customCheckbox .checkbox:hover span::before {
  border-color: #6366f1;
}