/* ==========================================
   navbar.css
========================================== */

/* -------------------------
   Navbar
------------------------- */

.navbar{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:60px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 20px;

    background:#5cae56;

    color:#ffffff;

    border-bottom:1px solid #dddddd;

    z-index:1000;
}

.navbar div:last-child{

    white-space:nowrap;
}

/* -------------------------
   Logo
------------------------- */

.navbar-logo{

    display:flex;

    align-items:center;
}

.navbar-logo img{

    height:42px;

    width:auto;
}

/* -------------------------
   Navigation Button
------------------------- */

.nav-btn{

    display:inline-block;

    margin-left:10px;

    padding:6px 14px;

    border:1.5px solid #ffffff;

    border-radius:20px;

    color:#ffffff;

    font-size:14px;

    transition:.2s;
}

.nav-btn:hover{

    background:rgba(255,255,255,.15);
}

/* -------------------------
   User
------------------------- */

.user-email{

    text-align:right;

    white-space:nowrap;

    margin-right:0px;

}

/* -------------------------
   Hamburger
------------------------- */

.hamburger-area{

    position:relative;
}

.hamburger-btn{

    background:none;

    border:none;

    color:#ffffff;

    font-size:24px;

    padding:0 10px;

    cursor:pointer;

    box-shadow:none;
}

.hamburger-btn:hover{

    background:none;
}

.hamburger-menu{

    display:none;

    position:absolute;

    top:50px;
    right:0;

    min-width:220px;

    background:#ffffff;

    border-radius:10px;

    overflow:hidden;

    box-shadow:0 4px 15px rgba(0,0,0,.2);

    z-index:2000;
}

.hamburger-menu.show{

    display:block;
}

.hamburger-menu a{

    display:block;

    padding:12px 16px;

    color:#333333;

    border-bottom:1px solid #eeeeee;
}

.hamburger-menu a:hover{

    background:#f5f5f5;
}

/* -------------------------
   Footer
------------------------- */

.footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:30px;

    padding:12px 20px;

    background:#5cae56;

    color:#ffffff;
}

.footer a{

    color:#ffffff;
}

.footer a:hover{

    text-decoration:underline;
}

