

.mdl-navigation {
  float: right;
}
.mdl-navigation a,
.mdl-navigation a:visited,
.mdl-navigation a:focus {color: #fff; font-size: 14px; font-weight: 400; text-decoration: none; padding: 0 24px; display: inline-block;}
.mdl-navigation a:hover {opacity: 0.5;}

#sidedrawer a {
    font-weight: 600;
    font-size: 15px;
    padding: 6px 30px;
    display: block;
    margin: 0;
    color: #687073;
    text-decoration: none;
    outline: 0;
    line-height: 30px;
    letter-spacing: 0.02em;
}

a.logo-home,
a.logo-home:visited,
a.logo-home:focus {color: #fff;}

a.logo-home:hover {opacity: 0.5;}

#sidedrawer a:hover {
background: #e9e9e9;
}
.mui-container-fluid {
  padding-left: 25px;
  padding-right: 25px;
}
img.logo-menu {
    width: 300px;
    display: block;
    padding: 0;
}
.mdl-layout-title {
    padding: 21px 30px 16px 30px;
    line-height: 30px;
    color: #1a1e21;
    /* opacity: 0.82; */
    font-size: 24px;
    font-weight: 400;
    text-transform: none;
    display: block;
}

.mui--text-title, h3 {
  display: inline-block !important;
  font-weight: 600;
  text-transform: uppercase;
  float: left;
  padding-top: 18px;
}

.mui-divider {
margin-bottom: 14px;
}

  .mui-appbar {
    background-color: #1a1e21;
    color: #FFF;
    /*box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2); */
    border-bottom: 1px solid #262b2f;
}


/**
 * Layout CSS
 */

#header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  transition: left 0.2s;
}

#sidedrawer {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 300px;
    left: -300px;
    overflow: auto;
    z-index: 2;
    background-color: #f6f8f7;
    transition: transform 0.2s;
   /* box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);  */
    z-index: 100;
    box-shadow: inset 0px 0px 0px 1px #dce4e6;
}

#content-wrapper {
  min-height: 100%;
  overflow-x: hidden;
  margin-left: 0px;
  transition: margin-left 0.2s;
  
  /* sticky bottom */
  margin-bottom: -160px;
  padding-bottom: 160px;
}



@media (min-width: 1460px) {
  #header {
    left: 300px;
  }
  
  #sidedrawer {
    transform: translate(300px);
  }
  
  #content-wrapper {
    margin-left: 300px;
  }
  
  #footer {
    margin-left: 300px;
  }
  
  body.hide-sidedrawer #header {
    left: 0;
  }
  
  body.hide-sidedrawer #sidedrawer {
    transform: translate(0px);
  }
  
  body.hide-sidedrawer #content-wrapper {
    margin-left: 0;
  }
  
  body.hide-sidedrawer #footer {
    margin-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 1459px) {
  #header {
    left: 300px;
  }
  
  #sidedrawer {
    transform: translate(300px);
    left: -300px;
    position: absolute;
  }
  
  #content-wrapper {
    margin-left: 0;
  }
  
  #footer {
    margin-left: 300px;
  }
  
  body.hide-sidedrawer #header {
    left: 0;
  }
  
  body.hide-sidedrawer #sidedrawer {
    transform: translate(0px);
  }
  
  body.hide-sidedrawer #content-wrapper {
    margin-left: 0;
  }
  
  body.hide-sidedrawer #footer {
    margin-left: 0;
  }
}




/**
 * Toggle Sidedrawer
 */
#sidedrawer.active {
  transform: translate(300px);
}


/**
 * Header CSS
 */

.sidedrawer-toggle {
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 20px;
  margin-right: 17px;
  float: left;
  padding-top: 20px;
}

.sidedrawer-toggle:hover {
  color: #fff;
  text-decoration: none;
}


/**
 * Sidedrawer CSS
 */

#sidedrawer-brand {
  padding-left: 0px;
}

#sidedrawer ul {
  list-style: none;
}

#sidedrawer > ul {
  padding-left: 0px;
}

#sidedrawer > ul > li:first-child {
  padding-top: 15px;
}

#sidedrawer strong {
  display: block;
  padding: 15px 22px;
  cursor: pointer;
}

#sidedrawer strong:hover {
  background-color: #E0E0E0;
}

#sidedrawer strong + ul > li {
  padding: 6px 0px;
}


