
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  min-height: 100%;
  background: #d8feff;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 70px;
  width: 100%;
  display: flex;
  align-items: center;
  background: #006366;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
  position: absolute;
  transition: transform 0.4s, top 0.4s;
  z-index: 1;
}
nav .logo {
  display: flex;
  align-items: center;
  margin: 0 24px;
  padding-bottom: 16px;
  
}
nav .logo .log{
  display: flex;
  align-items: center;
  max-height: 40px;
  padding-bottom: 2px;
}

.logo .menu-icon {
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  margin-right: 14px;
  cursor: pointer;  
}
.logo .logo-name {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
}
nav .sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  height: 100%;
  width: 260px;
  padding: 20px 0;
  background-color: #01a3a8;
  box-shadow: 0 5px 1px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
 
}
nav.open .sidebar {
  left: 0;
}
.sidebar .sidebar-content {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 2px 16px;
  border-top: 1px solid rgba(0, 0, 0, .1);
}
.sidebar-content .list {
  list-style: none;
}
.list .nav-link {
  display: flex;
  align-items: center;
  margin: 4px 0;
  padding: 14px 12px;
  border-radius: 8px;
  text-decoration: none;
}
.lists .nav-link:hover {
  background-color: #c78100;
}
.nav-link .icon {
  margin-right: 14px;
  font-size: 20px;
  color: #fff;
}
.nav-link .link {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}
.lists .nav-link:hover .icon,
.lists .nav-link:hover .link {
  color: #fff;
}
.overlay {
  position: fixed;
  top: 0;
  left: -100%;
  height: 1000vh;
  width: 200%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  background: rgba(0, 0, 0, 0.3);
}
nav.open ~ .overlay {
  opacity: 1;
  left: 260px;
  pointer-events: auto;
}

/* Additinol CSS ----*/
.right-bar{
  margin: 0 24px;

}
.bottom-cotent{
  margin-bottom: 30px;
  border-top: 1px solid rgba(0, 0, 0, .1);
}


/* Dropdown Button */
.dropbtn {
  background: #006366;
  color: black;
  padding-top: 13px;
  padding-bottom: 30px;
  padding-right: 13px;
  padding-left: 13px;
  font-size: 16px;
  border: none;
  width: 100%;
}

/* The container <div> - needed to position the dropdown content */
.dropdown-menu {
  padding-top:0px;
  padding-bottom:0px;
  position: relative;
  display: inline-block;
  background-color: #04AA6D;
  
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  top:52px;
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown-menu:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown-menu:hover .dropbtn .a{background-color: #3e8e41;}



