.required{
    color: rgb(255, 69, 69); 
}
.form-sub-heading{
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 5px;
    padding-bottom: 10px;
}

.form-group .field-inner label{
    line-height: 1;
}

.custom-checkbox {
    width: 20px !important;
    height: 20px !important;
    padding: 0;
    border-radius: 50% !important;
    border: 2px solid var(--primary-color) !important;
    cursor: pointer;
}

.custom-checkbox:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.custom-checkbox:focus {
    box-shadow: 0 0 0 .2rem rgba(255,122,0,.25);
}


.custom-checkbox-2 {
    appearance: none;
    -webkit-appearance: none;
    width: 20px !important;
    height: 20px !important;
    margin-right: 8px;
    vertical-align: middle;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all .2s ease;
    padding: 0; 
}

.custom-checkbox-2:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.custom-checkbox-2:checked::after {
    content: "\2713";
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.custom-checkbox-2:focus {
    outline: none;
    box-shadow: 0 0 0 .2rem var(--primary-color);
}


/* Validator */
.is-invalid{
    border-color:#dc3545 !important;
}

.is-valid{
    border-color:#198754 !important;
}

.invalid-feedback{
    display:block;
    color:#dc3545;
    font-size:13px;
    margin-top:4px;
}

#submitBtn:disabled{
    opacity:.6;
    cursor:not-allowed;
}
/* Validator */