.custom-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ccc;
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s ease;

    &::after {
        content: '';
        position: absolute;
        top: 2px;
        left: 2px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        transition: background-color 0.2s ease;
    }

    &:checked {
        border-color: red;

        &::after {
        background-color: red;
        }
    }
}

.smaller-font {
    color: #CCC;
}

.subform-row-field {
    display: flex;
    flex-wrap: wrap;
}

.subform-row-title {
    font-size: 20px;
}

.subform-row-field-item {  
    width: 50%;
    box-sizing: border-box;
    margin-top: 5px;
}

.subform-row-single {
    width: 100%;
}

.subform-form-whitespace {
    margin-top: 30px;
    margin-bottom: 30px;
}

.subform-row-double {
    /* display: flex; */
}

.subform-row-double-item {
    width: 100%;
    box-sizing: border-box; 
}

.subform-checkbox-text {
    margin-left: 10px;
}

.ph {
    display: none;
}

@media (max-width: 768px) {
    .subform-row-options {
        display: none;
        margin-top: 10px;
    }

    .subform-row-double-item {
        width: 100%;
    }

    .subform-row-field-item {
        width: 100%;
    }

    .subform-row-double {
        display: block;
        margin-bottom: 20px;
    }

    .subform-row-title {
        border-bottom: 1px solid #CCC;
        padding: 10px;
        padding-left: 0;
    }

    .ph {
        display: block;
        float: right;
    }

    .ph-caret-up {
        display: none;
    }

    .subform-checkboxes {
        display: flex;
        flex-wrap: wrap;
    }

    .subform-checkboxes .subform-checkbox-text {
        width: 85%;
    }

    .subform-form-whitespace, .smaller-font {
        display: none;
    }

    .required-field {
        display: inline;
    }
}

.page-id-10837 #content #solliciteren {
    padding-top: 20px;
}