.dropdown-toggle::after {
  display: none !important;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show, .nav-link:focus, .nav-link:hover {
  color: var(--color-p1) !important;
}

.dropdown-menu[data-bs-popper]{
  left: -76px !important;
  width: max-content;
  padding: 0;
}

.dropdown-menu li:nth-last-child() {
  border-radius:0px 0px 4px 4px;
  border: 0px;
}

.dropdown-menu h6:first-child {
  border-radius:4px 4px 0px 0px;
  border-color:transparent ;
}

.dropdown-menu li a {
  border-bottom: 1px solid var(--color-3);
  display: flex !important;
  gap: 10px !important;
  align-items: center !important;
  font-family: 'Poppins';
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-10);

}

.dropdown-menu li a:hover{
  background: var(--color-3);
  color: var(--color-12);
}


.notify li a {
  border-bottom:1px solid var(--color-6);


}

.notify li a.actives {
  border-bottom:1px solid var(--color-p1);
  color: var(--color-p1);

}


.notify li a::before {
  content: '';
  width: 10px ;
  height: 10px;
  border-radius: 50%;
  background: var(--color-6);
}
.notify li a.actives::before {
  content: '';
  width: 10px ;
  height: 10px;
  border-radius: 50%;
  background: var(--color-p1);
}
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}


@media(max-width:767px) {
  .navbar-nav {
    justify-content: stretch !important;
  }
  .navbar-nav li a {
    max-width: 100%;
    text-align: center;
  }
  .nav-item a  {
    justify-content: center;
  }
  .dropdown-menu {
    width: 100% !important;
  }
  .dropdown-menu li a {
    justify-content: start !important;
  }
}