@charset "utf-8";
/* CSS Document */

/* Topnav */

.topnav {
  overflow: hidden;
  background-color: #fff;
  color: #393739;
}

.topnav a {
  float: left;
  display: block;
  color: #393739;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:link, a:visited {
	text-decoration: none;
	color: #393739;
}

.topnav a:active {
	text-decoration: none;
	color: #393739;
}

.topnav a:hover  {
  color: #fff;
  background-color: #191d5c;
}

/* Mob Menu */

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#sidebarcover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
    position: fixed;
  z-index: 5;
  	color: #fff;
    pointer-events:none;
}

#sidebar {
  padding: 20px 0;
  background-color: #424244;
  width: 220px;
  visibility: visible;
  opacity: 1;
  pointer-events: none;pointer-events:auto;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: 250ms ease-in;
  transition: 250ms ease-in;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    pointer-events:auto;        	  
}

#sidebar::-webkit-scrollbar {
    width: 0px;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}

#sidebar .navbar-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 20px;
}

#sidebar .navbar-header .brand-logo {
  font-size: 1.5em;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: 250ms ease-in;
  transition: 250ms ease-in;
  visibility: visible;
}

.nav-link {
	color: #fff;
	text-align:left;
	float:left;
	text-decoration: none;
}

#sidebarcover a, a:link, a:visited {
	color: #fff;
	text-decoration: none;
}

#sidebarcover a:active {
	color: #fff;
	text-decoration: none;
}

.navbar-body .nav-item {
  padding: 10px 20px;
  cursor: pointer;
  -webkit-transition: 400ms all ease-in-out;
  transition: 400ms all ease-in-out;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

#main-content {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  padding: 15px 15px;
}

#main-content .check-box {
  cursor: pointer;
  display: inline-block;
  pointer-events: auto; 
}

#main-content .check-box .line {
  width: 20px;
  height: 2px;
  background-color: #212121;
  margin: 4px 0;
  display: block;
  pointer-events: auto; 
}

#checkbox {
  display: none;
  pointer-events: auto; 
}

#checkbox:checked ~ #sidebar {
  width: 0;
  -webkit-animation: sidebarAnim 500ms;
          animation: sidebarAnim 500ms;
}

#checkbox:checked ~ #sidebar .nav-item {
  -webkit-transform: translateX(-200px);
          transform: translateX(-200px);
}

#checkbox:checked ~ #sidebar .brand-logo {
  -webkit-transform: translateX(-200px);
          transform: translateX(-200px);
  visibility: hidden;
}

#checkbox:checked ~ #sidebar .navbar-header {
  visibility: hidden;
}

.navbar-body .nav-item:hover {
  background-color: #842250;
  color: #424244;
}

@-webkit-keyframes sidebarAnim {
  0% {
    width: 220px;
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    visibility: visible;
  }
  50% {
    width: 220px;
  }
  100% {
    width: 0;
    opacity: 0;
    -webkit-transform: translateX(-220px);
            transform: translateX(-220px);
    visibility: hidden;
  }
}

@keyframes sidebarAnim {
  0% {
    width: 220px;
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    visibility: visible;
	
  }
  50% {
    width: 220px;
  }
  100% {
    width: 0;
    opacity: 0;
    -webkit-transform: translateX(-220px);
            transform: translateX(-220px);
    visibility: hidden;
  }
}
/*# sourceMappingURL=style.css.map */
