.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}
.navbar .navbar-max {
  max-width: 14rem;
}
.navbar .menu-bar{
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.navbar .menu-bar span{
  height: 0.125rem;
  display: block;
  background-color: var(--primaire-700);
}
.navbar .menu-logo{width: 12rem;}
.navbar button.dropdown,.navbar button.dropdown:hover,.navbar button.dropdown:focus{
  background-color: transparent !important;
  padding: 0 !important;
}
.navbar .img-avatar{
  width: 3rem; height: 3rem; border-radius: 3rem;
  padding: .35rem;
  background: var(--primaire-200);
  display:flex; 
  align-items:center;
  justify-content:center;
}
.navbar .avatar-role{
  font-size: .85rem;
  font-family: 'AirbnbCerealLight';
  text-align: left;
}
.navbar .avatar-name {
  font-size: .75rem;
  font-family: 'AirbnbCerealBold';
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 7rem;
  display: inline-block;
}
.navbar .dropdown-menu {
  position: absolute;
  /* z-index: 10; */
  background: #fff;
  padding: 0;
  right: 0;
  left: auto;
  top: 4rem;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  box-shadow: 0 0 60px rgba(14, 42, 71, .25)!important;
  animation: popover .2s ease-in-out;
  width: 12rem;
}
.navbar .dropdown-menu:after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
}
.navbar .dropdown-menu .dropdown-item,.navbar .dropdown-menu button{
    font-size: var(--size-13);
    padding:.5rem .75rem!important;
    display: flex;
    align-items: center;
    column-gap: 1rem;
    font-family: 'AirbnbCerealMedium';
    color: var(--gray-900);
    background-color: #fff;
    width: 100%;
    justify-content: flex-start;
    border-radius: 0!important;
}
.navbar .dropdown-menu .dropdown-item.dropdown-item-height{
  padding: .9rem .75rem;
}
.navbar .dropdown-menu .dropdown-item i ,.navbar .dropdown-menu button i{
    font-size: var(--size-18);
}
.navbar .dropdown-menu .dropdown-item:hover,.navbar .dropdown-menu button:hover{
  background-color: var(--gray-200);
}
.navbar .menu-item-container {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: .5rem;
  column-gap: 1.75rem;
  z-index: 10;
  background-color: #fff;
  border-radius: 0 0 1rem 1rem;
  padding: .75rem 2rem;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../img/bg-menu.png);
  background-position: top right;
  background-size: cover;
}
.navbar .menu-item-container .menu-item {
  font-family: 'AirbnbCerealMedium';
  color: #000;
  font-size: .8rem;
  gap: .25rem;
  padding:.25rem .75rem !important;
  border-radius: 5rem !important;
  white-space: nowrap;
  background-color: transparent;
  background-color: var(--gray-200);
  background-color: #fff;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.navbar .menu-item-container button.menu-item:hover,
.navbar .menu-item-container button.menu-item:focus{
  background-color: var(--primaire-500);
  background-color: var(--primaire-900);
  color: #fff !important;
}
.navbar .menu-item-container .menu-item i{
  font-size:var(--size-18);
}
.navbar .menu-item-container .menu-item img{
  width: 1.25rem;
}
.navbar .menu-item .menu-item-container{
  display: none;
  position: absolute;
  z-index: 11;
  top: 100%;
  top: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fff!important;
  border: 0;
  border-radius: var(--size-6);
  box-shadow: 0 0 60px rgba(14, 42, 71, .25) !important;
  animation: popover .2s ease-in-out;
  /* width: 12rem; */
  z-index: 11;
}
.navbar .menu-item:hover .menu-item-container::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}
.navbar .menu-item:hover .menu-item-container{
  display: block;
}
.navbar .menu-item .menu-item-container .menu-item{
  gap: 0;
  width: 100%;
  font-family: 'AirbnbCerealBook';
  padding: .5rem .5rem !important;
  background-color: transparent;
}
.navbar .menu-item .menu-item-container .menu-item:hover{
  background-color: var(--gray-200);
}