.sidebar-details {
  width: 128px;
  height: 90dvh;
  display: flex;
  flex-direction: column;
  height: calc(100dvh - 16px);
}
.sidebar-details .logo {
  padding: 32px 0;
  margin: 0 auto;
}
.sidebar-details .logo .navbar-brand {
  margin-right: 0;
}
.sidebar-menu {
  overflow-y: auto;
  flex: 1;
  height: 100%;
  display: flex;
}
.sidebar-details .sidebar-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 20px;
}
.sidebar-details .sidebar-nav li a {
  padding: 12px 12px;
  display: flex;
  background-color: transparent;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  text-align: center;
  text-align: center;
  color: #e6e9ec;
  text-decoration: none;
  text-align: center;
  transition: 0.5s ease-in-out;
}
.sidebar-details .sidebar-nav li.active a .inactive-icon {
  display: none;
}
.sidebar-details .sidebar-nav li a .inactive-icon {
  display: block;
}
.sidebar-details .sidebar-nav li a .active-icon {
  display: none;
}
.sidebar-details .sidebar-nav li.active a .active-icon {
  display: block;
}
.sidebar-details .sidebar-nav li.active a {
  background: linear-gradient(99.56deg, #0d92f4 0%, #0a74c2 100%);
}
.sidebar-details .sidebar-nav li a:hover {
  background: linear-gradient(99.56deg, #0d92f4 0%, #0a74c2 100%);
}
.sidebar-details .sidebar-nav li a img {
  margin: 0 auto 6px;
  flex-direction: 0;
  height: 24px;
  width: 24px;
}
.sidebar-details .sidebar-btm .notication {
  margin-bottom: 12px;
}
.sidebar-details .sidebar-btm .notication li a {
  padding: 12px 12px;
  display: flex;
  background-color: transparent;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  text-align: center;
  text-align: center;
  color: #e6e9ec;
  text-decoration: none;
  text-align: center;
  transition: 0.5s ease-in-out;
}
.sidebar-details .sidebar-btm .notication li a img {
  margin: 0 auto 6px;
  flex-direction: 0;
  height: 24px;
  width: 24px;
}

.sidebar-details .sidebar-btm .profile-img {
  height: 64px;
  width: 84px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff1a;
  margin: 0 auto 16px;
}
.sidebar-btm .dropdown .dropdown-toggle:focus{
  box-shadow: none;
}
.sidebar-details .sidebar-btm .profile-img img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}

.menu-icon {
  display: none;
}
.bg-backdrop {
  display: none;
}
.menu-close {
  display: none;
}
.dropdown-toggle::after {
  content: unset;
}

.sidebar-btm .dropdown-item:hover {
  background-color: #09366f;
  color: #fff;
}
.sidebar-btm .dropdown-menu{
  padding: 0;
  border-radius: 10px;
}
.sidebar-btm .dropdown-item {
  font-size: 14px;
  padding: 10px 10px;
}
@media screen and (min-width: 1921px) {
  .sidebar-details .sidebar-nav li a {
    font-size: 16px;
  }
  .sidebar-details .sidebar-nav li a img {
    height: 25px;
    width: 25px;
  }
  .sidebar-details .sidebar-btm .profile-img img {
    height: 42px;
    width: 42px;
  }
  .sidebar-details .sidebar-nav li a img {
    margin: 0 auto 8px;
  }
}
@media screen and (max-width: 991px) {
  .sidebar-details {
    width: 100%;
    height: auto;
    flex-direction: row;
    justify-content: space-between;
    padding: 15px;
  }
  .sidebar-menu {
    position: fixed;
    background: #09366f;
    z-index: 99999;
    left: -100%;
    bottom: 0;
    top: 0;
    transition: 0.5s ease-in-out;
  }
  .sidebar-btm {
    display: flex;
    align-items: center;
  }
  .sidebar-details .logo {
    padding: 0;
    margin: unset;
  }
  .sidebar-details .logo img {
    height: 45px;
  }
  .sidebar-details .sidebar-btm .notication {
    margin-bottom: 0;
    margin: 0;
  }
  .sidebar-details .sidebar-btm .notication li a {
    padding: 0;
    font-size: 0;
  }
  .sidebar-details .sidebar-btm .profile-img {
    margin: 0 10px;
    height: unset;
    width: unset;
    background-color: unset;
  }
  .sidebar-details .sidebar-btm .profile-img img {
    height: 30px;
    width: 30px;
  }
  .sidebar-details .sidebar-btm .notication li a img {
    height: 30px;
    width: 30px;
    margin: 0;
  }
  .menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 7px;
    border: none;
    padding: 0.25rem;
    font-size: 0;
  }
  .menu-icon img {
    filter: brightness(0) invert(0);
  }
  .sidebar-details .sidebar-menu.active {
    left: 0;
    width: 50%;
    transition: 0.5s ease-in-out;
    height: 100%;
  }
  .sidebar-details .sidebar-nav li:first {
    /* margin-top: 30px; */
  }
  .sidebar-details .sidebar-nav li a {
    flex-direction: row;
    justify-content: start;
    align-items: center;
    padding: 15px;
  }
  .sidebar-details .sidebar-nav li {
    width: 100%;
  }
  .sidebar-details .sidebar-nav li a img {
    margin: 0;
    margin-right: 10px;
  }
  .sidebar-details .sidebar-nav {
    padding-bottom: 0;
    padding-top: 50px;
    width: 100%;
  }
  .bg-backdrop {
    position: fixed;
    display: block;
    top: 0;
    bottom: 0;
    left: -100%;

    transition: 0.3s ease-in-out;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .bg-backdrop.active {
    left: 0;
    transition: unset;
    z-index: 9;
  }
  .menu-close {
    display: block;
    top: 8px;
    right: 17px;
    height: 16px;
    width: 16px;
    position: absolute;
  }
  .menu-close img {
    filter: brightness(0) invert(1);
  }
  .sidebar-details {
    position: sticky;
    top: 0;
    background-color: #09366f;
    z-index: 999;
  }
}

@media screen and (max-width: 480px) {
  .sidebar-details .sidebar-menu.active {
    width: 80%;
  }
}
