*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    width:100%;
    height:100%;
    overflow:hidden;
    font-family:Segoe UI,Arial,sans-serif;
    background:#ececec;
}

.page{

    width:100%;
    height:100vh;

    display:flex;
    flex-direction:column;
    align-items:center;

}

/*==========================
    TOP BAR
===========================*/

.topbar{

    width:100%;
    max-width:1024px;
    height:60px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 10px;

    background:white;

    border-bottom:1px solid #bbb;

}

.logoArea{

    display:flex;
    align-items:center;
    gap:10px;
    

}

.logo{

    width:50px;
    height:50px;

    background:#4d7cff;
    border-radius:4px;

    display:flex;
    flex-direction:column;

    align-items:center;
    justify-content:center;

    text-align:center;

    font-size:12px;
    line-height:14px;

    color:#fff;

}

.title{

    font-size:28px;
    font-weight:600;

}

/*==========================
    MENU
===========================*/

.menu{

    display:flex;
    gap:10px;

}

.menu button{

    width:120px;
    height:42px;

    border-radius:4px;

    border:1px solid #888;

    background:white;

    cursor:pointer;

    transition:.25s;

    box-shadow:
    0 3px 0 rgba(0,0,0,.25);

}

.menu button:hover{

    transform:translateY(-4px);

    box-shadow:
    0 7px 10px rgba(0,0,0,.20);

}

.hamburger{

    display:none;

    font-size:30px;

    cursor:pointer;

}

/*==========================
    CONTENT
===========================*/

.content{

    width:100%;
    max-width:1024px;

    height:calc(100vh - 80px);

    overflow-y:auto;

    background:white;

}

.contentInner{

    min-height:100%;

    padding:20px;
    padding-bottom:20px;

}

/*==========================
    BOTTOM BAR
===========================*/

.marqueeBar{

    width:100%;
    max-width:1024px;

    height:20px;

    border-top:1px solid #bbb;

    background:#f3f3f3;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:12px;
    position:fixed;
    bottom:0px;
    z-index:999;


}

/*==========================
    MOBILE
===========================*/

@media(max-width:800px){

    .title{

        font-size:22px;

    }

    .menu{

        display:none;

    }

.hamburger{
    padding:20px 4px;
    border-radius:5px;
    border:2px solid black;background:#f0f0f5;
    display:flex;
    align-items:center;
    justify-content:center;

}

}

/*==========================
    MOBILE MENU
===========================*/

.mobileMenu{

    display:none;

    position:absolute;

    top:60px;
    right:10px;

    width:220px;

    background:#ffffff;

    border:1px solid #bbb;

    border-radius:6px;

    overflow:hidden;

    box-shadow:0 8px 18px rgba(0,0,0,.25);

    z-index:999;

}

.mobileMenu button{

    width:100%;
    height:48px;

    border:none;
    border-bottom:1px solid #ddd;

    background:white;

    cursor:pointer;

    font-size:15px;

    transition:.2s;

}

.mobileMenu button:last-child{

    border-bottom:none;

}

.mobileMenu button:hover{

    background:#f5f5f5;

}

.mobileMenu.show{

    display:block;

}


/*==========================
    BOTTOM MOBILE TABS
===========================*/

.bottomTabs{

    display:none;
    position:fixed;
    bottom:20px;
    width:100%;
    max-width:1024px;
    height:60px;

    background:#fff;
    z-index:999;
    border-top:1px solid #eee;

}

.bottomTabs button{

    flex:1;

    height:60px;
 
    border:none;
    border-right:1px solid #eee;

    background:#fff;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    padding:0;

}

.bottomTabs button:last-child{

    border-right:none;

}

.bottomTabs .icon{

    font-size:18px;
    line-height:18px;

}

.bottomTabs .label{

    margin-top:2px;

    font-size:11px;

}

.bottomTabs button:active{

    background:#f4f4f4;

}

/* Mobile Only */

@media(max-width:800px){

    .bottomTabs{

        display:flex;

    }

}