/* Hide elements on small screens */
@media (max-width: 767px) {
    .fi-fo-wizard-header {
        display: none !important;
    }

    .hide-on-mobile {
        display: none;
    }

    /* Make scrollable table keeping first column fixed - NOT PROPERLY WORKING */
    .horizontal-scroll-except-first-column {
        width: 100%;
        overflow: auto;
    }

    .horizontal-scroll-except-first-column > table {
        margin-left: 8em;
    }

    .horizontal-scroll-except-first-column > table > * > tr > th:first-child,
    .horizontal-scroll-except-first-column > table > * > tr > td:first-child {
        position: absolute;
        width: 8em;
        margin-left: -8em;
        background-color: rgb(39 39 42);
    }

    .horizontal-scroll-except-first-column > table > * > tr > th,
    .horizontal-scroll-except-first-column > table > * > tr > td {
        /* Without this, if a cell wraps onto two lines, the first column
         * will look bad, and may need padding. */
        white-space: nowrap;
    }
}
