/* Shamelessly taken from here:
 * https://bbbootstrap.com/snippets/multi-step-form-wizard-30467045
 *
 * Cargo cult programming, let's go!!
 */

/*form styles*/
#msform {
    position: relative;
    margin-top: 20px;
}

#msform fieldset {
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;

    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
    display: none;
}
