/*
When group form fields in the Admin class using fields or fieldset,
the html add a .form-multiline class to element. Change from flex row 
to flex column to show the label over the value.
*/
.module.aligned .form-multiline .fieldBox:not(.checkbox-row) {
    flex-direction: column !important;
    margin-right: 3rem !important;
    gap: 10px;
}