/* Top navigation with hamburger menu, often for mobile devices */



/* Navigation menu toggle */
#topNavMobile .hamburgerMenuIcon {
    height: 50px;
    width: 50px;
    position: fixed;
    top: 1.6rem;
    right: 1.2rem;
    cursor: pointer;
    border-radius: 1rem;
    background-color: rgba(20, 30, 50, 0.5);
    z-index: 101;
    transition: all 0.2s;
    text-align: center;
    line-height: 50px;
    color: white;
}


#topNavMobile .hamburgerMenuIcon:hover {
    transform: scale(1.1);
}


/* Navigation list */
#topNavMobile > ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    scrollbar-width: none;
    height: 100vh;
    width: 250px;
    position: fixed;
    top: 0%;
    right: calc(250px * -1);
    background-color: rgba(10, 20, 30, 0.5);
    z-index: 100;
    transition: all 0.5s;
}


#topNavMobile > ul.open {
    right: 0;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
}


#topNavMobile > ul > div {
    height: 100px;
}


#topNavMobile > ul > li {
}


.toppestLiNeedsMarginToTop {
    margin-top: 100px;
}


/* Navigation list items */
#topNavMobile > ul > li > a {
    background-color: rgba(20, 30, 50, 0.5);
    display: block;
    text-decoration: none;
    width: 100%;
    height: 50px;
    margin-left: 2rem;
    margin-bottom: 1rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    align-items: center;
    color: rgb(234, 6, 200);
}


#topNavMobile > ul > li > a:hover, .topNavMobile > ul > a.isActive {
    background-color: var(--nav-hover);
    padding-left: 1rem;
}


#topNavMobile > ul > li > a > span {
    height: 100%;
    width: 100%;
    /*color: white;*/
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    line-height: 3rem;
}



/*-------------------------------------------------------------------------------------------------*/
/* Media screens */
/*-------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    #topNavMobile .hamburgerMenu {
        right: 0.2rem;
        top: 1.5rem;
    }

    #logoTop img {
        visibility: visible;
    }
    
}



@media screen and (min-width: 768px) {
    #topNavMobile {
        /*visibility: hidden;*/
    }
}




