<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.tws-menu {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.tws-menu nav {
    display: none;
}

.tws-menu nav .item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

@media all and (min-width: 768px) {

    .tws-menu-btn {
        display: none;
    }

    .tws-menu {
        display: flex;
        flex-direction: row;
    }

    .tws-menu nav {
        display: flex !important;
        width: 100%;
    }
    
    .tws-menu nav .item {
        display: flex;
        flex: 1;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        margin: 0 auto;
    }
}


/* Debug */
.tws-menu-debug { border: solid 1px red; }
.tws-menu-debug .item { border: solid 1px black; }

</pre></body></html>