/* reset css */
#mobilemenubutton{
    display:none;
}
.navmenu {
    background-color: #dfdfdf;
    padding: 0px 0px 2px 0px;
    border-collapse: collapse;
    text-align: left;
    vertical-align: middle;
    width: 150px;
    height:83vh;
    position:relative;
    float:left;
}
nav ul {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline
}
nav ol, nav ul { list-style: none }
#nav li a { text-decoration: none; }

/**
 * Styling navigation
 */

header {
    margin-right: auto;
    margin-left: auto;
    max-width: 22.5rem;
    margin-top:150px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

/**
 * Styling top level items
 */

.nav a, .nav label {
    display: block;
    padding: .85rem;
    color: #fff;
    background-color: #4A4B4D;
    box-shadow: inset 0 -1px #1d1d1d;
    -webkit-transition: all .25s ease-in;
    transition: all .25s ease-in;
}

.nav a:focus, .nav a:hover, .nav label:focus, .nav label:hover {
    color: rgba(255, 255, 255, 0.5);
    background: #030303;
}

.nav label { cursor: pointer; }

/**
 * Styling first level lists items
 */

.group-list a, .group-list label {
    padding-left: 2rem;
    background: #404241;
    box-shadow: inset 0 -1px #5f5e5e;
}

.group-list a:focus, .group-list a:hover, .group-list label:focus, .group-list label:hover { background: #131313; }

/**
 * Styling second level list items
 */

.sub-group-list a, .sub-group-list label {
    padding-left: 4rem;
    background: #353535;
    box-shadow: inset 0 -1px #474747;
}

.sub-group-list a:focus, .sub-group-list a:hover, .sub-group-list label:focus, .sub-group-list label:hover { background: #232323; }

/**
 * Styling third level list items
 */

.sub-sub-group-list a, .sub-sub-group-list label {
    padding-left: 6rem;
    background: #454545;
    box-shadow: inset 0 -1px #575757;
}

.sub-sub-group-list a:focus, .sub-sub-group-list a:hover, .sub-sub-group-list label:focus, .sub-sub-group-list label:hover { background: #333333; }

/**
 * Hide nested lists
 */

.group-list, .sub-group-list, .sub-sub-group-list {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height .5s ease-in-out;
    transition: max-height .5s ease-in-out;
}

.nav__list input[type=checkbox]:checked + label + ul { /* reset the height when checkbox is checked */
    max-height: 1000px; }
input[id^=nav]{
    display:none;
}
/* Rotating chevron icon */
span.right-gt::before{
  display: inline-block;
  content: "\003E";
}
span.down-gt::before{
  display: inline-block;
  content: "\003E";
}
label > span {
    float: right;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
}
.nav__list input[type=checkbox]:checked + label > span {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

/* Custom Awfus coloration */

#menuCRM {
    background-color:#8AA199;
}
#menuCRMList>li a:not(#currentpagemarker){
    background-color:#819280;
    text-decoration:none;
    font-weight:600;
}
#menuPM {
    background-color:#422424;
}
#menuPMList>li a:not(#currentpagemarker){
    background-color:#4c3939;
    text-decoration:none;
    font-weight:600;
}
#menuSupervisor{
    background-color:#365c84;
}
#menuSupervisorList>li a:not(#currentpagemarker), #menuSupervisorList>li>label{
    background-color:#547394;
    text-decoration:none;
    font-weight:600;
}
#menuAdmin{
    background-color:#b7a885;
}
#menuAdminList>li> a:not(#currentpagemarker){
    background-color:#988f79;
    text-decoration:none;
    font-weight:600;
}
#menuOwner{
    background-color:#331033;
}
#menuOwnerList>li> a:not(#currentpagemarker){
    background-color:#401e40;
    text-decoration:none;
    font-weight:600;
}
#currentpagemarker{ /* should be last in css menu list for precedence*/
    position:relative;
    background-color:#465561;
    border-left: solid 3px red;
    left:3px;
    pointer-events:none;
    cursor:default;
    border-radius:5px;
}
.inactivemenu{
    pointer-events:unset;
    cursor:none;
    cursor:not-allowed;
    opacity:0.2;
}