body{
    height :100vh;
    overflow: hidden;
}

.sidebar .text{
    font-size: 16px;
    font-weight: 500;
    color:var(--websitedimgrey);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.sidebar .image{
    min-width: 43px;
    display: flex;
    align-items: center;
}

.sidebar{
    position: fixed;
    top:0;
    left:0;
    height: 100%;
    width: 250px;
    padding:10px 14px;
    background: var(--websitewhite);
    z-index: 100;
    transition: all 0.5s ease;
}

.sidebar.close_sidebar{
    width: 70px;
}

.sidebar.close_sidebar .menu{
    overflow-y: hidden;
}

.sidebar.close_sidebar .text{
    opacity: 0;
    overflow: hidden;
}

.sidebar .image-text .image div{
    width: 30px;
    background-color: var(--websiteblue);
    border-radius: 6px;
    font-weight: 600;
    font-size: 23px;
    text-align: center;
    vertical-align: middle;
    display: table-cell;
    color: white;
    font-family: 'Poppins';
}

.sidebar header .image-text{
    display: flex;
    align-items: center;
    padding-top: 10px;
    padding-left: 5px;
}

header .image-text .header-text{
    display: flex;
    flex-direction: column;
}

.header-text .name{
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 6px;
}

.sidebar header .toggle{
    position: absolute;
    top:50%;
    right: -16px;
    transform:  translateY(-50%);
    height: 55px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: var(--websitewhite);
    background: var(--websiteblue);
    font-size: 23px;
    opacity: 1;

}

.sidebar li{
    height: 40px;
    margin-top: 10px;
    list-style: none;
    display: flex;
    align-items: center;
    padding: 0px;
}

.sidebar li .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    font-size: 20px;
}
.sidebar li .icon,
.sidebar li .text{
    color: var(--websiteblue);
    transition: all 0.3 ease;
}

.sidebar li a{
    text-decoration: none;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 6px;
    transition: all 0.4s ease;
}

.sidebar.close_sidebar li a{
    width: 40px;
}

.sidebar li a:hover{
    background: var(--websiteblue)
}

.sidebar li a:hover .icon,
.sidebar li a:hover .text{
    color: var(--websitewhite)
}

.menu{
    padding-top: 15px;
    overflow-y: auto;
    overflow-x: hidden;
}

.menu-links{
    padding: 0px;
}

.body-content{
    position: relative;
    height: 100vh;
    left:280px;
    width: calc(100% - 300px);
    transition: all 0.5s ease;
}

.body-content.maxsize{
    left:100px;
    width: calc(100% - 120px);
}

.sidebar .menu-bar{
    height: calc(100% - 50px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#MobileDeviceBTN{
    display: none;
    float:left;
    font-size: 28px;
    color:var(--websiteblue);
}

.MobileDevMenuOpen{
    display: block;

}

.sidebar_interior_slide_ul
{
    overflow: hidden;
    max-height: 0px;
    transition: 300ms ease-in-out;
}

.sidebar_interior_slide_ul.show{
    max-height: 15em;
}

.drop_i_btn{
    justify-content: right !important;
}

.sidebar.close_sidebar .drop_i_btn{
    visibility: hidden;
}

/* .sidebar:hover{
    width: 250px;
}   

.sidebar:hover .text
{
    opacity: 1;
    overflow: unset;
} */