/* ACCOUNT MENU */
#account-menu-dropdown {
    position: relative;
    display: none;
    height: 100%;
}

#account-menu-dropdown-btn {
    all: unset;
    cursor: pointer;
    color: white;
    height: 100%;
    padding: 12px 20px;
    box-sizing: border-box;
}

#account-menu-dropdown-btn:hover {
    background-color: #222222 !important;
}

#account-menu {
    display: none;
    position: absolute;
    right: 0;
    width: 150px;
    padding: 20px;
    background-color: #222222;
    z-index: 300;
    color: white;
    font-family: 'Source Sans 3', sans-serif;
}

#account-menu-username {
    font-size: 18px;
    font-weight: 600;
}

#account-menu-email {
    font-size: 12px;
}

#account-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#account-menu ul a:hover {
    text-decoration: underline;
}
/* -------------------------------------------------- */

@media only screen and (min-width: 768px) {
    #account-menu-dropdown  {
        display: inline-block;
    }
}