/** SIDEBAR **/
.sidebar{
    position: fixed;
    top:0;
    left:0;
    background: #101c1d;
    width:260px;
    height:100%;
    z-index:100;
    transition: all 0.1s ease;
}

.sidebar.close{
    width:58px;
}

.sidebar .logo-details{
    height:60px;
    width:100%;
    display: flex;
    align-items: center;
}

.sidebar .logo-details i{
    font-size:30px;
    color:#FFF;
    height:50px;
    min-width:58px;
    text-align: center;
    line-height:50px;

}

.sidebar .logo-details img{
    color:#FFF;
    height:30px;
    object-fit: cover;
    text-align: center;
    line-height:50px;
    padding:0 14px;
    display:block;
    border-radius:50%;
}

.sidebar .logo-details .logo_name{
    font-size:22px;
    color:#FFF;
    transition: 0.3s ease;
    transition-delay:0.1s;
    white-space: nowrap;
}

.sidebar.close .logo-details .logo_name{
    opacity: 0;
    pointer-events: none;
    transition-delay:0s;
}

.sidebar .nav-links{
    padding:0px;
    margin:0px;
    height:100%;
    padding:30px 0 150px 0;
    overflow: auto;
}

.sidebar .nav-links{
    overflow: visible;
}

.sidebar .nav-links::-webkit-scrollbar{
    display:none;
}

.sidebar .nav-links li{
    position: relative;
    list-style: none;
    transition: all 0.4s ease;
}

.sidebar .nav-links li:hover{
    background: #1e3638;
}

.sidebar .nav-links li .iocn-link{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar.close .nav-links li .iocn-link{
    display:block;
}

.sidebar .nav-links li a{
    text-decoration: none;
    display:flex;
    align-items: center;
}

.sidebar .nav-links li i{
    font-size:20px;
    height:50px;
    min-width:58px;
    text-align: center;
    line-height:50px;
    color:#FFF;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sidebar .nav-links li.showMenu i.mn-arrow{
    transform: rotate(180deg);
}

.sidebar.close .nav-links i.mn-arrow{
    display: none;
}

.sidebar .nav-links li a .link_name{
    font-size:18px;
    font-weight:400;
    color:#FFF;
    transition: all 0.4s ease;
}

.sidebar.close .nav-links li a .link_name{
    opacity: 0;
    pointer-events: none;

}

.sidebar .nav-links li .sub-menu{
    padding:6px 6px 14px 80px;
    margin-top:-10px;
    background:#1e3638;
    display: none;
}

.sidebar .nav-links li.showMenu .sub-menu{
    display:block;
}

.sidebar .nav-links li .sub-menu li{

}

.sidebar .nav-links li .sub-menu a{
    color:#FFF;
    padding:5px;
    font-size:15px;
    white-space: nowrap;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.sidebar .nav-links li .sub-menu a:hover{
    opacity: 1;
}

.sidebar.close .nav-links li .sub-menu{
    position: absolute;
    left:100%;
    top:-10px;
    margin-top:0;
    padding:10px 20px;
    border-radius: 0 6px 6px 0;
    transition: 0s;
    opacity:0;
    pointer-events: none;
    display:block;
}

.sidebar.close .nav-links li:hover .sub-menu{
    top:0;
    opacity:1;
    pointer-events: auto;
    transition: all 0.4s ease;
}

.sidebar .nav-links li .sub-menu .link_name{
    display:none;
}

.sidebar.close .nav-links li .sub-menu .link_name{
    font-size:18px;
    opacity:1;
    display:block;
}


.sidebar .nav-links li .sub-menu.blank{
    opacity:1;
    pointer-events: auto;
    padding:3px 20px 6px 16px;
    opacity: 0;
    pointer-events: none;

}

.sidebar .nav-links li:hover .sub-menu.blank{
    top:50%;
    transform: translateY(-50%);
}

.sidebar .profile-details{
    position: fixed;
    bottom:0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1e3638;
    padding:6px 0;
    width:260px;
    transition: all 0.1s ease;
}

.sidebar.close .profile-details{
    background: none;
    width:58px;
}

.sidebar .profile-details .profile-content{
    display: flex;
    align-items: center;
}

.sidebar .profile-details img{
    width:32px;
    height:32px;
    object-fit: cover;
    border-radius: 16px;
    margin:0 14px 0 12px;
    background: #1e3638;
    transition: all 0.5s ease;
}

.sidebar.close .profile-details img{
    padding: 10px;
}


.sidebar .profile-details .profil_name,
.sidebar .profile-details .job{
    color:#FFF;
    font-size:14px;
    font-weight:500;
    white-space: nowrap;
}
.sidebar.close .profile-details i,
.sidebar.close .profile-details .profil_name,
.sidebar.close .profile-details .job{
    display:none;
}

.sidebar .profile-details .job{
    font-size:10px;
}

.home-section{
    position: relative;
    left:260px;
    width: calc(100% - 260px);
    height:100vh;
    background-color:#E4E9F7;
    transition: all 0.1s ease;
}

.sidebar.close ~ .home-section{
    left:58px;
    width: calc(100% - 58px);
}

.home-section .home-content{
    height:60px;
    display: flex;
    align-items: center;
}

.home-section .home-content .barmenu,
.home-section .home-content .text{
    color:#101c1d;
    font-size:35px;
}

.home-section .home-content .barmenu{
    margin: 0 15px;
    cursor:pointer;
}

.home-section .home-content .text{
    font-size:26px;
    font-weight:600;
}



/* ========================================================================7*/

.home-section nav{
    display: flex;
    justify-content: space-between;
    height: 80px;
    background: #fff;
    display: flex;
    align-items: center;
    position: fixed;
    width: calc(100% - 240px);
    left: 260px;
    z-index: 100;
    padding: 0 20px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    transition: all 0.1s ease;
}
.sidebar.close ~ .home-section nav{
    left: 58px;
    width: calc(100% - 58px);
}
.home-section nav .sidebar-button{
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 500;
}
nav .sidebar-button i{
    font-size: 35px;
    margin-right: 10px;
}

.home-section nav .button-box{
    position: relative;
    height: 50px;
    max-width: 350px;
    width: 100%;
    margin: 0 20px;
}

.home-section nav .button-box button{
    width:50px;
    height:50px;
    margin-right:10px;
}

.home-section nav .button-box button:last-of-type{
    margin-right:0px;
}


.home-section nav .search-box{
    position: relative;
    height: 50px;
    max-width: 350px;
    width: 100%;
    margin: 0 20px;
}
nav .search-box input{
    height: 100%;
    width: 100%;
    outline: none;
    background: #F5F6FA;
    border: 2px solid #EFEEF1;
    border-radius: 6px;
    font-size: 18px;
    padding: 0 15px;
}
nav .search-box .fa-search{
    position: absolute;
    height: 40px;
    width: 40px;
    background: #0a9ebb;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 4px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 22px;
    transition: all 0.1s ease;
}

nav .profile-details img{
    height: 40px;
    width: 40px;
    border-radius: 6px;
    object-fit: cover;
}

.signout_button_in_header{
    text-align: center;
    padding:15px;
    box-shadow: 0px 0px 4px rgba(51, 51, 51, 0.31);
    border-radius:10px;
    color:#CC0000;
}

.signout_button_in_header:hover{
    background-color:#CC0000;
    color:#FFF;
}


