//
// Bootstrap columns with flex layout
//

html.flexbox, html.flexboxtweener { // Modernizr class
    .container.container-flex {
        > .row {
            display: flex;
            flex-wrap: wrap;
            align-items: stretch;

            &:before,
            &:after {
                content: none;
            }

            > [class*="col-"] {
                flex: none;
            }
        }
    }
}
