/* Hamburger */

/* Hamburger */

.responsive-mobile-menu{
    transform: translateX(calc(-100% - 50px));
    position: fixed;
    top: 0;
    left: 0;
    min-height: 100vh;
    max-width: 290px;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: all .2s ease-in;
    
}

.responsive-mobile-menu.open{
    transform: translateX(0%) !important;
}

.responsive-mobile-menu.open::before{
    content: '';
    height: 100vh;
    width: 100vw;
    background-color: rgba(12, 12, 12, 0.36);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.responsive-mobile-menu .responsive-close{
    height: 32px;
    width: 32px;
    border-radius: 50%;
    background-color: var(--white);
    position: absolute;
    top: 1.6rem;
    left: calc(100% + 8px);
    z-index: 2000;

    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

}

.pointer{
    cursor: pointer;
} 

.responsive-mobile-menu .menu-top-info{
    background: #F5F5F5;
    padding: 2.4rem 2.4rem 1.5rem 1.6rem;
}

.responsive-mobile-menu .menu-top-info .auth-profile{
    display: grid;
    grid-template-columns: 1fr 16px;
    gap: 1rem;
    align-items: center;
}

.responsive-mobile-menu .menu-top-info .auth-profile .image{
    position: relative;
}

.responsive-mobile-menu .menu-top-info .auth-profile .image.active::before{
    content: '';
    height: 10px;
    width: 10px;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2000;
    border: 2px solid white;
    background-color: #12B76A;

}

.responsive-mobile-menu .menu-top-info .auth-profile .content .h2{
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.5px;
    color: #212121;
}

.responsive-mobile-menu .menu-top-info .auth-profile .content .p{
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #424242;
}


.responsive-mobile-menu .menu-top-info .auth-links .resp-auth-links{
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: -0.2px;
    color: #3B1B7C;
    display: block;
}


.sidebar-navigation {
    width: 100%;
    height: calc(100vh - 200px);
    overflow-y: auto;
    background-color: var(--white);
    /* padding-right: 2rem; */
    scrollbar-color: #424242 rgba(12, 12, 12, 0.36);
  }

.sidebar-navigation::-webkit-scrollbar{
    width: 0.8rem;
}

.sidebar-navigation::-webkit-scrollbar-track  {
    background: rgba(12, 12, 12, 0.36);
}

.sidebar-navigation::-webkit-scrollbar-thumb  {
    background: var(--text-black);
}



  .sidebar-navigation .title {
    display: block;
    padding: 10px 15px;
  
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    color: #757575;
  }
  .sidebar-navigation > ul > li > a {
    text-transform: uppercase;
  }
  .sidebar-navigation ul {
    margin: 0;
    padding: 0;
  }
  .sidebar-navigation ul li {
    display: block;
  }
  .sidebar-navigation ul li a,
  .sidebar-navigation ul li .sub-menu-heading {
    position: relative;
    display: block;
    /* border-bottom: 1px solid #eee; */
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;

    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #212121;

    padding: 10px 16px;
    text-transform: capitalize;
  }

  .sidebar-navigation ul li .sub-menu-heading {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }

  .sidebar-navigation ul li a em {
    font-size: 24px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    padding: 5px;
    border-radius: 50%;
  }
  .sidebar-navigation ul li:hover > a, .sidebar-navigation ul li.selected > a {
    background-color: #ecf0f1;
    color: #495d62;
    border-color: rgba(255, 255, 255, 0.1);
  }
  .sidebar-navigation ul li ul {
    display: none;
  }
  .sidebar-navigation ul li ul.open {
    display: block;
  }
  .sidebar-navigation ul li ul li a {
    color: #495d62;
    border-color: rgba(255, 255, 255, 0.1);
  }
  /* .sidebar-navigation ul li ul li a:before {
    content: "";
    width: 10px;
    height: 1px;
    margin-right: 5px;
    display: inline-block;
    vertical-align: middle;
    background-color: #495d62;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
  } */
  .sidebar-navigation ul li ul li:hover > a, .sidebar-navigation ul li ul li.selected > a {
    background-color: #e6ebed;
  }
  .sidebar-navigation ul li ul li:hover > a:before, .sidebar-navigation ul li ul li.selected > a:before {
    margin-right: 10px;
  }
  .sidebar-navigation ul li ul li.selected.selected--last > a {
    background-color: #94aab0;
    color: #fff;
  }
  .sidebar-navigation ul li ul li.selected.selected--last > a:before {
    background-color: #fff;
  }

.sidebar-navigation li.selected > .sub-menu-heading{
    background: #E0E0E0;
}
  
  .subMenuColor1 {
    background-color: #fbfcfc;
  }
  
  .subMenuColor2 {
    background-color: white;
  }

  .flip-v{
    transform: rotate(90deg);
  }
  .sidebar-navigation i.fa{
    transition: all .3s ease-in;
  }


  .sidebar-navigation ul li ul li > .sub-menu-heading{
    padding-left: 35px;
  }

  .sidebar-navigation ul li ul li ul li > .sub-menu-heading{
    padding-left: 58px;
  }

  .responsive-mobile-menu .sidebar-footer-links{
    background-color: #ffffff;
    padding-bottom: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #E0E0E0;
}

.responsive-mobile-menu .sidebar-footer-links .link{
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #212121;
    display: block;
    margin-bottom: 1.6rem;
}

.site-header .hamburger-toggle,
.site-header .toggle-responsive-search{
    display: none;
}

@media screen and (max-width:1200px) {
    .site-header .hamburger-toggle,
    .site-header .toggle-responsive-search{
        display: block;
    }
    .site-header .search-category,
    .site-header .nav-not-auth,
    .site-header .nav-items .nav-links,
    .site-header .nav-auth .avatar-profile{
        display: none !important;
    }

    .site-header .header-search-wrapper{
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        width: 100%;
        z-index: 100;
        background-color: var(--white);
        padding: 10px;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: .3s ease-in;
        box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    }
    .site-header .header-search-wrapper.open{
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }


    .site-header .header-search-wrapper .search-field{
        width: 100% !important;
        /* border: 1px solid #E0E0E0 !important; */
    }
}

@media screen and (max-width:991px) {

    .sidebar-navigation {
        height: calc(100vh - 188px);
      }

}

@media screen and (max-width:425px) {
    .admin-dashboard-header-notification .notification-container {
        width: 33rem;
    }
    .site-header .header .nav-items,
    .site-header .header .nav-items .nav-auth .icons {
        gap: 2rem;
    }
}

@media screen and (max-width:376px) {
    .responsive-mobile-menu {
        max-width: 270px;
    }
}