div.option-btn-wrapper{
    display: block;
    width: 100%;
    line-height: 28px;
    padding-left: 39px;
    position: relative;
    margin-bottom: 15px;
    cursor: pointer;
}

div.option-btn-wrapper:hover .label{
    color:#2e2e4e;
}

div.option-btn-wrapper  span.option-icon{
    display: block;
    position: absolute;
    border-radius: 50%;
    border: 1px solid #7373b5;
    left: 2px;
    top: 2px;
    height: 24px;
    width: 24px;
}

div.option-btn-wrapper .label{
    color: #71cde0;
    text-decoration: none;
    background-color: transparent;
}

div.option-btn-wrapper.active  span.option-icon::after{
    content: '';
    display: block;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background-color: #7373b5;
    z-index: 1;
    left: 4px;
    top: 4px;
    position: absolute;
}

.container .row{
    margin-right:0;
    margin-left:0;
}

.container .step-form  .check-box-wrapper{
    display:inline-block;
    width: 100%;
    vertical-align:middle;
    padding: 5px 0px;
}

#gradeSubjectContainer .grade-subject-container  .check-box-wrapper{
    width: 49%;
}

.grade-subject-inner-container{
    padding: 25px 5px;
}

.container .step-form  .check-box-wrapper.add-more-checkbox{
    margin-bottom:35px;
}

.container .step-form  .check-box-wrapper.add-more-checkbox:hover a{
    font-weight:bold;
}

.container .step-form  .check-box-wrapper label{
    font-size: 12px;
    cursor:pointer;
    padding:5px 5px;
}

.container .step-form  .custom-control.custom-checkbox{
    margin-bottom: 35px;
    padding-left: 10px;
}

.step-form.card{
    background-color: #fff;
}

.container .step-form .code-contianer{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 80px;
    width: 100%;
    margin-bottom:35px;
}

.container .step-form  .char-input{
    display:flex;
    height:65px;
    align-items: center;
    justify-content: center;
    margin:5px;
}

.container .step-form  .char-input .verify-code-input{
    font-size: 41px;
    color: #6eacd0;
    font-weight:bold;
    padding: 0px;
    margin: 0;
    display: block;
    text-align: center;
}

.char-input input.verify-code-input:focus-visible{
    outline: #6eacd0 auto 1px;
}

.row.two-btn-row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.btn-flex{
    display: flex;
    flex:1;
    justify-content: center;
}

.row.two-btn-row .btn-flex:first-child {
    margin-right: 10px;
}

.btn-secondary.disabled, .btn-secondary:disabled,
.btn-primary.disabled, .btn-primary:disabled {
    opacity: 0.6;
    cursor: default;
}

.error-msg {
    padding: 10px 0;
    color: #b94e4e;
}

.form-control.has-error{
    border: 2px solid #b94e4e;
}

.form-checkbox-wrapper{
    width: 24px;
    height: 24px; 
}

.form-checkbox-wrapper checkbox {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.checkbox__svg {
    width: 100%;
    height: 100%;
}

.checkbox.-changeBg .checkbox__border {
    stroke: var(#71CDE0);
}

.checkbox.-changeBg .checkbox__border {
    stroke: var(#71CDE0);
}

.checkbox__check {
    --checkbox-border-width: var(--checkbox-border-width-active);
    stroke: var(#71CDE0);
}

.form-control-checkbox {
    font-size: 14px;
    font-weight: normal;
    line-height: 160%;
    display: grid;
    grid-template-columns: 1em auto;
    gap: 20px;
    cursor: pointer;
  }
  
  .form-control-checkbox--disabled {
    color: #ccc;
    cursor: not-allowed;
  }
  
  input[type="checkbox"].custom-checkbox {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    font: inherit;
    color: #71CDE0;
    width: 25px;
    height: 25px;
    border: 1px solid #71CDE0;
    border-radius: 0.15em;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
  }
  
  input[type="checkbox"].custom-checkbox::before {
    content: "";
    width: 12px;
    height: 12px;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
    box-shadow: inset 15px 15px #7373b5;
    background-color: CanvasText;
  }
  
  input[type="checkbox"].custom-checkbox:checked::before {
    transform: scale(1);
  }
  
  input[type="checkbox"].custom-checkbox:focus {
    outline: max(2px, 0.15em) solid currentColor;
    outline-offset: max(2px, 0.15em);
  }

  .light-blue-bold{
    color: #6eacd0;
    font-weight: bold;
  }

  .form-group label{
    text-decoration: none;
    background-color: transparent;
    padding-left: 5px;
    color:#71cde0; 
  }

  .form-group label.show{
    color: #71cde0;
  }

  .form-group label{
    text-decoration: none;
    background-color: transparent;
    padding-left: 5px;
    color:#71cde0;
    margin-bottom: 2px;
  }

  .form-group label.show{
    color: #71cde0;
  }

  .form-group{
    position: relative;
  }