input[type="checkbox"].htp-checkbox {
    display: none;
}

.htp-checkbox-label input[type="checkbox"].htp-checkbox:checked+.htp-checkbox-checkmark {
    background-color: #263F8F;
    background-image: url('https://hitap.adeptiolab.com/wp-content/uploads/2025/07/icon-checkmark-white.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
    border-color: #263F8F;
}

.htp-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: #263F8F;
    z-index: 1111;
    margin-top: 4px;
}

.htp-checkbox-label .htp-checkbox-checkmark {
    max-width: 30px;
    min-width: 30px;
    width: 100%;
    height: 30px;
    margin-top: -4px;
    border-radius: 10px;
    background-color: #fff;
    border: 2px solid #263F8F;
    position: relative;
    transition: all 0.2s ease-in-out;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
}

.htp-checkbox-label .htp-checkbox-checkmark:hover {
    background-color: #E9F2FF;
}

input[type="radio"].htp-radio {
    display: none;
}

.htp-radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #263F8F;
    z-index: 1111;
}

.htp-radio-checkmark {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #263F8F;
    position: relative;
    transition: all 0.2s ease-in-out;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
}

.htp-radio-checkmark:hover {
    background-color: #E9F2FF;
}

input[type="radio"].htp-radio:checked+.htp-radio-checkmark {
    background-color: #263F8F;
    background-image: url('https://hitap.adeptiolab.com/wp-content/uploads/2025/07/icon-checkmark-white.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
    border-color: #263F8F;
}