
/* -------------- SIDEBAR -------------- */
/* main{

    right: 0px;
    width: 80%;

} */

.navbarDesktop, .sidebar, #navbarDesktop {
    position: fixed;
    left: 0px;
    width: 22%;
    max-width:260px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* border-right: 1px solid var(--borderColor); */
    /* background-color: var(--background); */

    background-color: var(--ChampEcriture);

    padding: 0 16px;
    overflow: auto;
    font-weight: 400;
}

.sidebar__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px ;
}

#logoSideBar{

    max-height: 80px;
}

.sidebar__logo-header {
    margin-left: 14px;
}

.side-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0px;
    gap: 8px;
}

.side-nav__header {
    font-size: 14px;
    line-height: 21px;
    color: #90A3BF;
    padding-bottom: 10px;
    padding-top: 10px;
    display: inline-block;
    
}

.side-nav__header, .side-nav__item > span {
    letter-spacing: -2%;
    font-weight: 300;
    /* font-family: 'Roboto', sans-serif; */
}

.side-nav__item {
    list-style: none;
    color: var(--ecriture);
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 0 13px 15px;    
    border-radius: 2em;
    transition: all .4s;
    cursor: pointer;
    white-space: nowrap;
    height:48px ;
}

.side-nav__item > svg {
  flex-shrink: 0;
}

.side-nav__item.last-item {
    margin-bottom: 32px;
}

.side-nav__item:not(:last-child) {
    margin-bottom: 4px;
}

.side-nav__item:hover,  .side-nav__item-active {
    background-color: var(--logo);
    color: white;
    color: var(--ecritureOnLogoColor);
}

.textNavBarDesktop{

    position: relative;
}


.numberOfNotificationNavBarDesktop{
    position: absolute;
    top: 2px;
    right: -38px;
    width: 18px;
    height: 18px;
    /* padding: 20px; */
    border-radius: 50%;
    display: flex
  ;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    background-color: rgb(255, 75, 75);
    /* margin: 8px; */
    color: rgb(255, 255, 255);
    z-index: 1;
    font-size: 10px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  
      /* font-weight: bolder; */
  
      
  }

@media(max-width:900px) {
    #sidebar, .sidebar {
         
        display: none;

    }

    .navbarDesktop{
        display: none;
      }
}