/* -------------------------------------------------------
                    START SIDENAV MENU
------------------------------------------------------- */
.sidenav {
    font-size: 2em;
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 1; /* Stay on top */
    top: 0;
    left: 0;
    background-color: #111; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    /*font-size: 25px;*/
    color: #818181;
    display: block;
    transition: 0.3s
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover, .offcanvas a:focus{
    color: #f1f1f1;
}

#portalsHolder{
    width: 100%;
}

/* Position and style the close button (top right corner) */
.closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px !important;
    margin-left: 50px;
}
/* -------------------------------------------------------
                    END SIDENAV MENU
------------------------------------------------------- */
/* -------------------------------------------------------
                    START ASIDE NAV MENU
------------------------------------------------------- */
.sidebar{
    /*  border: 2px solid black;*/
    /*background-color: darkorange;*/
    height:100%;
    text-align: center;
}

#logo{
    padding-top: 15px;
    padding-bottom: 15px;
}
#logo{
    /*border:2px solid black;*/
    width: 40%;
}
.single-menu-element-link { 
    display: block; 
    text-decoration: none; 
    color: var(--color-text) !important;
    transition: background var(--transition-med), color var(--transition-med), padding-left var(--transition-med); 
}
/* Hover effect */ 
.single-menu-element-link:hover { 
    background: var(--color-accent-soft); 
    color: var(--color-accent) !important;
    padding-left: 20px; /* subtle slide effect */ 
    transition: var(--transition-med);
} 
/* Active/focused state */ 
.single-menu-element-link:focus, .single-menu-element-link:active { 
    background: var(--color-accent-strong); 
    color: white; 
}
.page-navigation hr {
    border: none;
    border-top: 1px solid var(--color-accent-strong);
    margin: 8px 0;
}
.page-navigation.guildof a.single-menu-element-link {
    font-size: 2rem !important;
}
/* -------------------------------------------------------
                    END ASIDE NAV MENU
------------------------------------------------------- */