#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 50px;
    background-color: #333;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 1000;
    cursor: pointer;
}

#logo {
    font-weight: bold;
    text-decoration: none;
    color: #fff;
}
#logo:hover {
    text-decoration: none;
    color: #fff;
}

#navbar-center {
    /*display: table;*/
    flex-grow: 1;
    text-align: center;
}

#menu {
    cursor: pointer;
    font-size: 22px;
}

#navbar-wallet {
                display: table;
                /*background: #2be47c;*/
                background: #1c5;
                color: #034e1b;
                padding: 6px 12px;
                border-radius: 20px;
                font-weight: bold;
                font-size: 16px;
                float: right;
                margin-right: 15px;
                color: #fff;
            }







/* MENU LATERAL */
#side-menu {
    position: fixed;
    right: -250px;
    top: 0;
    width: 250px;
    height: 100%;
    background-color: #222;
    color: white;
    /*padding: 20px;*/
    transition: right 0.3s ease;
    z-index: 1100;
}

#side-menu.open {
    right: 0;
}

#side-menu h3 {
    margin: 0;
    padding: 20px
}

#side-menu a {
    display: block;
    color: white;
    /*padding: 10px 0;*/
    padding: 10px 20px;
    text-decoration: none;
}

#side-menu a:hover {
    background-color: #333;
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1050;
}

#overlay.show {
    display: block;
}
