/* admin menu */
.admin-active {
    background-color: #cdcdcd !important;
}
/* end admin menu */
.menu {
    position:fixed;
    top: 0;
    width: 100%;
    background-color: #333;
    box-shadow: 0px 2px 5px 2px #000;
    z-index:9999;
}
.admin-menu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 2px 5px 2px #000;
    z-index: 9998
}
.menuFix {
  width: 100%;
  margin:auto;
  padding:25px 22px;
  font-size: 100%;
  box-sizing: border-box;
  overflow:hidden;

}
.admin-padding {
    padding: 15px;
    padding-left: 30px;
}
/* Remove margins and padding from the list, and add a black background color */
ul.topnav {
    list-style-type: none;
    margin: auto;
    padding: 0;
    overflow: hidden;
    text-align: center;
    width:99%;
    font-size:0;
}
ul.topnavAdmin {
    list-style-type: none;
    margin: auto;
    width: 200px;
    background-color: #fff;
    color: #333;
    overflow: hidden;
}

/* Float the list items side by side */
ul.topnav li {display: inline-block; overflow: hidden;}
ul.topnavAdmin li {
    display: block;
    overflow: hidden;
}

.light-menu ul.topnav li a {
    background-color: #fff;
    color: #333;
}
.dark-menu ul.topnav li a {
    background-color: #333;
    color: #fff;
}
/* Style the links inside the list items */
ul.topnav li a {
    display: inline-block;
    color: #f2f2f2;
    text-align: center;
    padding: 20px 22px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 12pt;
    width: 100%;
    box-sizing:border-box;
    cursor: pointer;
}
.active {background-color: #666 !important;}
/* Change background color of links on hover */
div.dark-menu ul.topnav li a:hover {background-color: #777; color: #fff;}
div.light-menu ul.topnav li a:hover {background-color: #efefef; color: #333}
/* Hide the list item that contains the link that should open and close the topnav on small screens */
ul.topnav li.icon {display: none;}
/* When the screen is less than 680 pixels wide, hide all list items, except for the first one ("Home"). Show the list item that contains the link to open and close the topnav (li.icon) */
@media screen and (max-width:855px) {
  ul.topnav li {display: none;}
  ul.topnav li.icon {
    display: inline;
    text-align:center;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens */
@media screen and (max-width:855px) {
  ul.topnav.responsive {position: relative;}
  ul.topnav.responsive li.icon {
   
  }
  ul.topnav.responsive li {
    display: inline;
  }
  ul.topnavAdmin.responsive li {
      display: inline;
  }
  ul.topnav.responsive li a {
    display: block;
    text-align: center;
  }
  ul.topnavAdmin.responsive li a {
      display: block;
      text-align: center;
  }
}