.site{
    background: #ffffff;
    display: flex;
}
.sidebar{
    width: 290px;
    background: #FCED9E;
    height: 100vh;
    border-radius: 0 25px 25px 0;
    overflow: auto;
    position: relative;
    z-index: 9;
}

.sidebar-top{
    display: flex;
    align-items: center;
    padding: 10px 30px;
    gap: 20px;
    height: 60px;
}
.site-right{
    width: calc(100vw - 290px);
   /* padding-left: 270px;*/
}

.menu{
    width: 22px;
    height:22px;
    object-fit: contain;
    cursor: pointer;

}
.logo{
    width: 90px;
}

.header-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 15px;
}


.nav-section{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.sidebar-nav{
    padding: 0px 20px 0 30px;
    height: calc(100vh - 70px);
    overflow: auto;
}
.sidebar-nav::-webkit-scrollbar {
  width: 5px;
}
.nav-section h6{
    color: #2b373d;
}
.nav-section .nav-item-sidebar.active h6{
    color: #C3282E;
}
.section-title{
    margin-bottom: 5px;
     color: #2D2D2D!important;
}
.nav-section .nav-item-sidebar.active{
    position: relative;
}
.nav-section .nav-item-sidebar.active:before{
    content: "";
    position: absolute;
    left: -30px;
    top: 0;
    width: 6px;
    height: 100%;
    border-radius: 0px 20px 20px 0px;
    background:  #C3282E;
}
.nav-section .nav-item-sidebar.nav-collapse.active:before{
    display: none;
}
.nav-item-sidebar.nav-collapse.active:hover {
    background: initial;
}
.nav-item-sidebar{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
}
.nav-item-sidebar:hover{
   background: #ede09d;
}
.nav-item-sidebar img{
    width: 16px;
    object-fit: contain;
    filter: invert(.9);
}
.nav-item-sidebar img.nav-item-sidebar-img{
    filter: invert(0);
}

.collapsed .arrow-bottom{
    width: 10px!important;
    transform: rotate(0deg);


}
.arrow-bottom{
    width: 10px!important;
    transform: rotate(180deg);
    transition: .3s;
}
.nav-collapse{
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /*gap: 10px;*/
    padding-left: 40px;
    padding-top: 15px;
}
.nav-collapse h6{
    color: #2D2D2DBF;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    padding-bottom: 0px;
    position: relative;
    font-size: 14px;

}
.nav-collapse h6:before{
    content: "";
    position: absolute;
    left: -15px;
    top: 5px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #2b373d;
}
.nav-item-sidebar.active  h6:before{
    background:#C3282E;
}
.nav-collapse.nav-item-sidebar.active  h6:before{
    background:#C3282E;
}
.nav-collapse.nav-item-sidebar.active  h6{
    color:#C3282E;
}
.nav-collapse.nav-item-sidebar:hover{
   background: initial;
}
.nav-collapse h6:hover{
   transform: scale(1.02);
}
.nav-section{
   padding-bottom: 15px;
   padding-top: 15px;

}
.nav-section:not(:last-child){
    border-bottom: 1px solid #2b373d;
}
.sidebar-bottom{
    position: relative;

    /*position: absolute;
    left: 50%;
   
    bottom: 0;*/
    text-align: center;
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    height: 70px;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 10px;
    padding-top: 15px;

}
.sidebar-bottom img{
    width: 20px;
    object-fit: contain;
}
.sidebar-bottom h6{
    font-size: 10px;
    color:#2D2D2D;
}
.header-title{
    font-weight: 600;
    color: #2D2D2D;
    font-size: 16px;
}
.header-right{
    display: flex;
    align-items: center;
   gap: 15px;
}
.header-right img{
    width: 20px;
    object-fit: contain;
}
.header-right .notification{
  
     border-right: 1px solid #D9D8D8;
     padding-right: 15px;

}
.notification{
    position: relative;
}
.notification span{
    background: #C3282E;
    min-width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 50%;
    font-size: 7px;
    position: absolute;
    right: 16px;
    border: 1px solid white;
    top: 4px;
}
.header-profile{
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: right;
   

}
.header-profile h6{
    font-size: 12px;
    font-weight: 600;
}
.header-profile span{
    font-size: 11px;
}
.header-profile img{
    width: 35px;
    object-fit: contain;
    border-radius: 50%;
}
  .header-profile-name{
    display: flex;
    flex-direction: column;
}
/*sidebar-shown*/
.site.shown .site-right{
    width: calc(100vw - 0px);
}
@keyframes sidebar {
  0%   {width: 270px;}
 
  100% {width: 0px;}
}


.site.shown .sidebar-top {
    padding: 0px;
    height: auto;
    position: fixed;
    left: 20px;
    display: flex;
    gap: 5px;
    top: 0;
    height: 60px;
}
.site.shown .sidebar{
    width: 0px;
    animation: sidebar .2s ease;


}

.site.shown .header-top{
    padding-left: 230px;
}
.site .sidebar-top .menu {
    filter: invert(80%);
}
.site.shown .header-title{
    border-left: 1px solid gray;
    padding-left: 15px;
}

/*.site.shown .logo{
    display: none;
}
.site.shown .nav-section .nav-item-sidebar h6 {
    display: none;
}

.site.shown .sidebar-bottom{
    display: none;
}
.site.shown .arrow-bottom{
    display: none;
}
.site.shown .section-title{
    display: none;
}
.site.shown .sidebar-nav{
    height:auto;
    padding: 0px;
}
.site.shown .nav-item-sidebar{
    width: 50px;
    margin: 0 5px;
}*/

@media only screen and (max-width: 990px) {
  .sidebar {
    width: 0;
    
}
.site .sidebar-top {
    padding: 0px;
    height: auto;
    position: fixed;
    left: 20px;
    display: flex;
    gap: 5px;
    top: 0;
    height: 60px;
}
.site.shown .sidebar-top {
   
    position: relative;
   
}
.site .sidebar-top .menu {
    filter: invert(80%);
}
.site .sidebar-top h6{
    display: none;
}
.site .sidebar-top img:nth-child(3) {
    display: none;
}
.site.shown .header-top {
    padding-left: 130px;
}

.site.shown .sidebar-top .menu {
    filter: invert(80%);
}
.site.shown .sidebar-top .logo {
    filter: invert(0%);
}
.site .header-top {
    padding-left: 130px;
}
.site .site-right {
    width:100vw;
}
.site.shown .sidebar{
    position: fixed;
    left: 0;
    width: 300px;
    top: 0;
    overflow: hidden;
}
@keyframes sidebar {
  0%   {width: 0px;}
 
  100% {width: 300px;}
}
}

@media only screen and (max-width: 768px) {
  .header-profile-name{
    display: none;
}
    
}
/*site 2 start*/

.site.site2 .sidebar{
    background: #FCED9E;
    
}


.site .nav-item-sidebar.active img {
   
    filter: invert(.9) brightness(50%) sepia(100%) saturate(10000%);
}
.site .nav-item-sidebar.active img.nav-item-sidebar-img{
            filter: invert(.6) brightness(10%) sepia(100%) saturate(10000%);


}

.site .sidebar-bottom img {
    filter: invert(.8);

}


.site .select{
    background-color: initial;
}