.navbar {
  width: 100vw;
  height: 70px;
  position: fixed;
  z-index: 100;
  top: 0px;
  transition: 0.3s;
  animation: fadedown 1s ease-in-out;
}
a {
  color: inherit;
  text-decoration: none;
}
.whitenav {
  background-color: white;
  box-shadow: rgba(107, 107, 107, 0.226) 0px 5px 20px;
}
.navbar .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logoContainner {
  flex: 1;
  max-width: 200px;
}
.logo {
  height: 50px;
  width: auto;
}
.navs {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  height: 100%;
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  transition: 0.2s;
  cursor: pointer;
}

.login {
  display: flex;
  gap: 10px;
  border: solid 2px;
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 30px;
  align-items: center;
  transition: 0.5s;
  cursor: pointer;
}

.login img {
  height: 30px;
  width: 30px;
  transition: 0.2s;
}
.login:hover {
  background: rgb(0, 136, 124);
  background: linear-gradient(
    86deg,
    rgba(0, 136, 124, 1) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  box-shadow: rgb(161, 161, 161) 10px 10px 20px;
  border-color: var(--green);
  color: white;
}
.login:hover img {
  filter: brightness(2);
}

.navSelected {
  color: var(--green);
  border-bottom: solid 2px var(--green);
  padding-left: 10px;
  padding-right: 10px;
}
.nav:hover {
  color: var(--green);
  padding-top: 10px;
}
.userContainner {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}
.navProfilePic {
  height: 35px;
  width: 35px;
  border-radius: 50%;
  border-color: var(--green);
  border: solid 2px;
  cursor: pointer;
  transition: 0.2s;
}
.navProfilePic:hover {
  scale: 1.09;
  box-shadow: rgba(0, 0, 0, 0.335) 0px 0px 20px;
}
.profileMenu {
  position: absolute;
  width: 200px;
  border-radius: 10px;
  border: solid rgb(222, 222, 222) 2px;
  display: flex;
  flex-direction: column;
  top: 170%;
  background-color: rgba(255, 255, 255, 0.608);
  backdrop-filter: blur(10px);
  right: 0px;
  opacity: 1;
  box-shadow: rgba(0, 0, 0, 0.276) 0px 0px 20px;
}
.profileTag {
  padding: 10px;
  color: var(--green);
}
.pmenu {
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  border-radius: 10px;
  transition: 0.2s;
  gap: 10px;
}
.pmenu:hover {
  background-color: rgb(0, 0, 0);
  color: white;
}
hr {
  width: 100%;
}
.logout {
  color: crimson;
  font-weight: bold;
  transition: 0.2s;
}
.logout:hover {
  background-color: crimson;
  color: white;
}
.hideProfileMenu {
  height: 0px;
  max-height: 0px;
  overflow: hidden;
  opacity: 0;
}
.profileMenu::before {
  content: "";
  position: absolute;
  top: -19px;
  right: 20px;
  margin-left: -5px;
  border-width: 10px;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
  transform: rotate(180deg);
}
.notification {
  cursor: pointer;
}

/* /////////////////////////////// notification ./////////////////////////////////  */
.notificationContainner {
  padding: 20px;
}
.notificationPopup {
  position: absolute;
  width: 500px;
  height: 80vh;
  max-height: 80vh;
  border-radius: 10px;
  border: solid rgb(222, 222, 222) 2px;
  display: flex;
  flex-direction: column;
  top: 170%;
  background-color: rgba(255, 255, 255, 0.284);
  backdrop-filter: blur(40px);
  right: 0px;
  opacity: 1;
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.276) 0px 0px 20px;
  overflow-y: auto;
}
.notificationPopup::before {
  content: "";
  position: absolute;
  top: -19px;
  right: 60px;
  margin-left: -5px;
  border-width: 10px;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
  transform: rotate(180deg);
}

.notificationPopup .n-title {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  color: var(--black);
}
.notifications {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.notificationbox {
  height: auto;
  min-height: 70px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  gap: 10px;
  transition: 0.2s;
}
.notificationbox:hover {
  background-color: rgb(247, 247, 247);
  box-shadow: rgb(215, 215, 215) 0px 0px 10px;
}
.notificationbox .n-heading {
  display: flex;
  justify-content: space-between;
}
.notificationbox .n-title {
  font-size: 16px;
}
.notificationbox .n-time {
  font-size: 13px;
  color: var(--black);
}
.notificationbox .n-subject {
  font-size: 15px;
  color: var(--black);
}
.hideNotificationMenu {
  display: none;
}

.notify {
  position: relative;
}

.new {
  background-color: rgb(232, 232, 232);
}
.unread {
  position: absolute;
  top: -10px;
  right: -10px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  background-color: red;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 12px;
}
.n-hide {
  display: none;
}
/* ///////////////////////////////// mobile /////////////////////////////////  */
.hamburger {
  display: none;
  height: 50px;
  width: 50px;
  transform: 0.2s;
  cursor: pointer;
  position: relative;
}
.hamburger .checkbox {
  display: block;
  position: absolute;
  opacity: 0;
  height: 100%;
  width: 100%;
}
.line {
  transition: 0.5s;
  stroke-width: 6px;
}
.lineTop {
  stroke-dasharray: 40 40;
  stroke-dashoffset: 25;
}
.lineBottom {
  stroke-dasharray: 40 40;
  stroke-dashoffset: 60;
}
.lineMid {
  stroke-dasharray: 40 40;
}

.hamburger .checkbox:checked + svg .lineTop {
  stroke-dashoffset: 0;
  transform-origin: left;
  transform: rotateZ(45deg) translate(-7px, -5px);
}
.hamburger .checkbox:checked + svg .lineMid {
  stroke-dashoffset: 40;
}
.hamburger .checkbox:checked + svg .lineBottom {
  stroke-dashoffset: 0;
  transform-origin: left;
  transform: rotateZ(-45deg) translate(-5px, 5px);
}

.mobileNavbar {
  transition: 0.5s;
  position: fixed;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  top: 100px;
  right: 0px;
  left: 0px;
  overflow-y: hidden;
  bottom: 0px;
  max-width: 100vw;
  background-color: rgb(255, 255, 255);
  z-index: 101;
  box-shadow: rgb(192, 192, 192) 0px 0px 20px;
}
.mobileNavbar .mobile-navs {
  padding: 20px;
  display: flex;
  flex-direction: column;
  width: auto;
  gap: 20px;
}
.mobile-nav {
  display: flex;
  align-items: center;
  height: 50px;
  border-bottom: solid black 1px;
}
.hideNavBar {
  top: 100%;
}

@media only screen and (max-width: 800px) {
  .hamburger {
    display: block;
  }
  .navs {
    display: none;
  }
}
