#sidebarMenu {
    height: 100%;
    position: fixed;
    left: 0;
    width: 260px;
    transition: transform 250ms ease-in-out,box-shadow 0.25s ease-in-out;
    background: var(--primary-background-color) ;
    top:0;
    overflow-y: auto;

}

.sidebarMenuInner{
    margin:0;
    padding:0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.sidebarMenuInner > li:not(.modalin) li {
    list-style: none;
    color: #fff;
    font-weight: bold;
    padding: 20px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    transition: padding 0.3s ease-in-out;
}

.sidebarMenuInner li a span{
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.50);
    padding-top:1rem;
}
.sidebarMenuInner li a{
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}
.sidebar input[type="checkbox"]:not(:checked) ~ #sidebarMenu {
    width:0;
}

.sidebar input[type=checkbox] {
    transition: all 0.3s;
    box-sizing: border-box;
    display: none;
}
.sidebarIconToggle {
    transition: all 0.3s;
    box-sizing: border-box;
    cursor: pointer;
    position: fixed;
    z-index: 99;
    height: 100%;
    width: 100%;
    top: 2.1rem;
    left: 15px;
    height: 22px;
    width: 20px;
}
.spinner {
    transition: all 0.3s;
    box-sizing: border-box;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: var(--primary-background-color) ;
}
.horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
}
.diagonal.part-1 {
    position: relative;
    transition: all 0.3s;
    box-sizing: border-box;
    float: left;
}
.diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
}
.sidebar input[type=checkbox]:checked ~ .sidebarIconToggle > .horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    opacity: 0;
}
.sidebar input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(135deg);
    margin-top: 8px;
    background-color: white;
}
.sidebar  input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(-135deg);
    margin-top: -9px;
    background-color: white;
}
.sidebar  input[type=checkbox]:checked ~ .sidebarIconToggle {
    position: fixed;
}

.sidebarMenuInner li:hover:not(:first-child){
    background-color:#064b62;
}
.main-content{
    transition: margin-left 0.2s ease-in-out;
}
#sidebarMenu{
    transition: width 0.2s ease-in-out;
}
