/*
|--------------------------------------------------------------------------
| MOBILE
|--------------------------------------------------------------------------
*/

@media(max-width:900px){

    .mobile-menu-btn{

        display:flex;

        align-items:center;

        justify-content:center;

    }

    .topbar-links{

        display:none;

    }

    .topbar-title{

        display:none;

    }

    .sidebar{

        position:fixed;

        top:0;

        left:-300px;

        width:280px;

        height:100vh;

        z-index:9999;

        transition:left 0.3s ease;

    }

    .sidebar.open{

        left:0;

    }

}