How to reverse Divi column order on mobile devices

Reverse Divi column order on mobile devices using the code below:

@media screen and ( max-width: 980px ) {
    .reverse {
        display: flex;
        flex-direction: column-reverse;
    }
} 

Simply works.