/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  min-height: 100%;
  background: #e3f2fd;
}
.shake-image {
  animation: shake 6s;
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-10px, -10px);
  }
  20% {
    transform: translate(10px, 10px);
  }
  30% {
    transform: translate(-10px, -10px);
	}
  40% {
    transform: translate(10px, 10px);
  }
  50% {
    transform: translate(-10px, -10px);
  }
  60% {
    transform: translate(10px, 10px);
  }
  70% {
    transform: translate(-10px, -10px);
  }
  80% {
    transform: translate(10px, 10px);
  }
  90% {
    transform: translate(-10px, -10px);
  }
  100% {
    transform: translate(0, 0);
  }
}


nav2 {
  position: fixed !important;
  top: 0;
  left: 0;
  height: 50px;
  width: 75px;
  display: flex;
  align-items: center;
      z-index: 1;
  
}
nav2 .logo {
  display: flex;
  align-items: center;
  margin: 0 24px;
}
.logo .menu-icon {
  color: #333;
  font-size: 24px;
  margin-right: 14px;
  cursor: pointer;
}
.logo .logo-name {
  color: #333;
  font-size: 22px;
  font-weight: 500;
}
nav2 .sidebar {
  position: fixed;
  top: 0;
  left: -300%;
  height: 100%;
  width: 260px;
  padding: 20px 0;
  background-color: #fff;
  box-shadow: 0 5px 1px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}
nav2.open .sidebar {
  left: 0;
}
.sidebar .sidebar-content {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 16px;
}
.sidebar-content .list {
  list-style: none;
}
.list .nav-link {
  display: flex;
  align-items: center;
  margin: 8px 0;
  padding: 14px 12px;
  border-radius: 8px;
  text-decoration: none;
}
.lists .nav-link:hover {
  background-color: #4070f4;
}
.nav-link .icon {
  margin-right: 14px;
  font-size: 20px;
  color: #707070;
}
.nav-link .link {
  font-size: 16px;
  color: #707070;
  font-weight: 400;
}
.lists .nav-link:hover .icon,
.lists .nav-link:hover .link {
  color: #fff;
}
.overlay {
position: fixed!important;
    top: -3em!important;
    height: 100%;
    width: 100%;
    pointer-events: none;
}
nav2.open ~ .overlay {
  opacity: 1;
  left: 260px;
  pointer-events: auto;
}
ul {
	padding-left: 0em!important;
}
@media screen and (max-width: 480px) {
	nav2 {
		    
		}
		nav2.open .sidebar {

}
.list .nav-link{
	margin: 0px 0;
}
.sidebar .sidebar-content {	
	height:0;
}

nav2.open ~ .overlay {
    left: 20em;
    height: 200%;
    top: -20em!important;
}
nav2 .sidebar {
	overflow-y:hidden!important;
}
}

@media screen and (max-height: 780px) {
nav2 .sidebar {
	overflow-y:auto!important;
}

}