div[id^="wait_comp_"] {
   display: none !important;
}

.form-field {
    position: relative;
}

.field-error {
    display: none;
    color: #ff6b6b;
    font-size: 13px;
    margin-top: 0px;
    padding-left: 2px;
}

.field-error.show {
    display: block;
}

.form-control.has-error {
    border-color: #ff6b6b;
}

.custom-checkbox {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    cursor: pointer;
    position: relative;
    padding-left: 32px;
    padding-bottom: 15px;
    min-height: 24px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #000;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.custom-checkbox:hover .checkmark {
    border-color: #000;
}

.custom-checkbox input:checked ~ .checkmark {
    background: #f3932c;
    border-color: #f3932c;
}

.custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkbox .checkbox-text {
    color: #000;
    font-size: 14px;
    line-height: 1.5;
}

.custom-checkbox .checkbox-text a {
    color: #000;
    text-decoration: underline;
}

.custom-checkbox .field-error {
    width: 100%;
    padding-left: 0;
    margin-top: 8px;
}

.custom-checkbox.has-error .checkmark {
    border-color: #ff6b6b;
}