@media only screen and (min-width:770px) {
    /* .router-viewbox {
        position: relative !important;
    } */

    #desktop-view {
        display: block;
    }

    #mobile-view {
        display: none;
    }
}

/* Tablets devices (tablets, 768px and down) */
@media only screen and (max-width:769px) {
    /* .router-viewbox {
        position: static !important;
    } */

    #desktop-view {
        display: none;
    }

    #mobile-view {
        display: block;
    }

}