.k-form.flex-container {
    display: flex !important;
    height: 100%;
    width: 100%;
    flex-direction: column;
    flex-wrap: wrap;
    overflow: auto;
    align-content: start;
    justify-content: normal;
    align-items: stretch;
}

.k-form.flex-container > fieldset {
    width: 25rem;
    margin-right: 5rem;
    margin-top: 0;
    padding-bottom: 2rem;
}

.k-form-fieldset {
    color: #447b4f;
    font-style: normal;
    font-weight: normal;
    font-size: medium;
}

.k-form-fieldset legend {
    color: #c32508;
    background-color: antiquewhite;
    font-style: italic;
    font-weight: bold;
    font-size: larger;
}

@media (max-width: 800px) {
    .k-form.flex-container {
        flex-wrap: nowrap;
    }

    .k-form.flex-container > fieldset {
        width: auto;
        margin-right: 0;
        margin-top: 0;
        padding-bottom: 2rem;
    }
}
