.rnFormGroup:not(.rncheckboxField) {
    display: flex;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.rnFormGroup:not(.rncheckboxField) .rnLabel {
    width: 100%;
    flex-shrink: 0;
}

.rnFormGroup:not(.rncheckboxField) .rnFieldWrap {
    width: 100%;
}

.rnFormGroup .rnErrors {
    color: red;
    flex-shrink: 0;
    width: 100%;
}

.rnFormGroup:not(.rncheckboxField) .rnFieldWrap input,
.rnFormGroup:not(.rncheckboxField) .rnFieldWrap textarea {
    width: 100%;
    border: 1px solid rgb(118, 118, 118);
    border-radius: 2px;
}

.rnFormGroup:not(.rncheckboxField) .rnFieldWrap input:focus,
.rnFormGroup:not(.rncheckboxField) .rnFieldWrap input:focus-visible,
.rnFormGroup:not(.rncheckboxField) .rnFieldWrap input:active {
    border-width: 1px;
}

.rnFormGroup:not(.rncheckboxField) select {
    width: 100%;
    padding-block: 1px;
    padding-inline: 2px;
    height: 33px;
}

.rnFormGroup.rninternationalphoneField .rnSelectValue {
    display: none;
}

.rnFormGroup.rninternationalphoneField .rnPhoneCountry {
    width: 100%;
    margin-bottom: 5px;
}

.rnFormGroup.rninternationalphoneField .rnPhone {
    display: flex;
}

.rnFormGroup.rninternationalphoneField .rnPhone .rnPhonePrefix {
    flex-shrink: 0;
    line-height: 29px;
    border: 1px solid rgb(118, 118, 118);
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.rnFormGroup.rninternationalphoneField .rnPhone .rnPhoneNumberInput {
    width: 100%;
}

.rnFormGroup.rninternationalphoneField .rnPhone .rnPhoneNumberInput input {
    border-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.rnFormGroup.rnmail-and-whatsapp-consent {
    position: relative;
    padding-left: 40px;
    margin-bottom: 1rem;
}

.rnFormGroup.rnmail-and-whatsapp-consent .rnFieldWrap {
    position: absolute;
    left: 0;
    top: 2px;
    margin-bottom: 1rem;
}

.rnFormGroup.rnmail-and-whatsapp-consent .rnErrors {
    padding-left: 0;
}

.rnButtons {
    margin-bottom: 1rem;
}

.rnButtons button {
    background-color: var(--color-primair);
    color: var(--color-wit);
    font-family: proxima-nova, sans-serif;
    font-weight: 700;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 5px;
    display: inline-block;
    line-height: 1;
    transition: all .2s;
    outline: none;
    border: none;
}

@media (min-width: 768px) {
    .rnFormGroup:not(.rncheckboxField) .rnLabel {
        width: 25%;
    }

    .rnFormGroup .rnErrors {
        padding-left: 25%;
    }

    .rnFormGroup:not(.rncheckboxField) .rnFieldWrap {
        width: 75%;
    }
}