*{
    margin: 0;
    padding: 0;
    
    
}
body{
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
}
header{
    z-index: 1;
    position: fixed;
    background: #22242A;
    padding: 20px;
    width: calc(100% - 0%);
    top: 0;
    height: 30px;
}
.left_area h3{
 color: #fff;
 margin: 1px;
 text-transform: uppercase;
 font-size: 22px;
 font-weight: 900;

}
.left_area span{
    color: #1DC4E7;
       
   }
   .logout_btn{
       padding: 5px;
       background: #19B3D3;
       text-decoration: none;
       float: left;
       margin-top: -30px;
       margin-left: 40px;
       border-radius: 2px;
       font-size: 15px;
       font-weight: 600;
       color:#fff;
       transition: 0.5s;
       transition-property: background;
       }
       .logout_btn:hover{
           background: #0D9DBB;
       }
       .side-bar{
           z-index: 1;
           top: 0;
           background: #2F323A;
           backdrop-filter: blur(15px);
           width: 270px;
           height: calc(100% - 9%);
           position: fixed;
           margin-top: 70px;
           padding-top: 30px;
           right: 0;
           transition: 0.5s;
           transition-property: right;
           overflow-y: auto;
       }
        .profile_info{
           display: flex;
           flex-direction: column;
           justify-content: center;
           align-items: center;
       }
       .side-bar .profile_info .profile_image{
           width: 100px;
           height: 100px;
           border-radius: 100px;
           margin-bottom: 5px;
       }
       .side-bar .profile_info h4{
           color: #ccc;
           margin-top: 0;
           margin-bottom: 5px;
       }
       .side-bar a{
           color: #fff;
           display: block;
           width:100%;
           line-height:60px;
           text-decoration: none;
           padding-right: 40px;
           box-sizing: border-box;
           transition: 0.5s;
           transition-property: background;
       }
       .side-bar .menu .item a:hover{
           background: #19B3D3;
           transition:  0.3s ease;
       }
       .side-bar i{
           padding-left: 20px;
       }
       label #sidebar_btn{
           z-index: 1;
           color: #fff;
           position:fixed ;
           cursor: pointer;
           right: 300px;
           font-size: 20px;
           margin: 5px 0;
           transition:0.5s;
           transition-property: color;

       }
       label #sidebar_btn:hover{
           color: #19b3d3;


       }
       #check:checked ~ .side-bar{
           right: -185px;
          
       } 
       #check:checked ~ .side-bar a span{
           display: none;
       } 
       #check:checked ~ .side-bar a{
        font-size: 20px;
        margin-right: 165px;
        width: 100%;
    } 
    .content{
        width: (100% - 250%);
        margin-top: 60px;
        padding: 60px;
        margin-right: 250px;
        background: url(backimage.jpeg) no-repeat;
        background-position: center;
        background-size: cover;
        height: 100vh;
        transition:0.5s;
    }
#check:checked ~ .content{
    margin-right: 60px;
}
#check:checked ~ .side-bar .profile_info{
    display: none;
}
#check{
    display: none;
}
.side-bar .menu .item{
    position: relative;
    cursor: pointer;
}
.side-bar .menu .item a{
color: #fff;
font-size: 16px;
text-decoration: none;
display: block;
padding: 5px 30px;
line-height: 50px;

}
.side-bar .menu .item a .dropdown{
position: absolute;
left: 0;
margin: 10px;
transition: 0.3s ease;

}
.side-bar .menu .item  .sub-menu{
    background: rgba(255, 255, 255, 0.1);
    display: none;
}
.side-bar .menu .item  .sub-menu a{
padding-right: 80px;
}
.rotate{
    transform: rotate(-90deg);
}

.mobile_nav{
    display: none;
}

/*responsive css*/
@media screen and (max-width: 780px){
    .side-bar{
        display: none;
    }
    #sidebar_btn{
        display: none;
    }
    .content{
        margin-right: 0;
        margin-top: 0;
        padding: 10px 20px;
        transition: 0s;
    }
    #check:checked ~ .content{
        margin-right: 0;
    }
    .mobile_nav{
        display: block;
        width: calc(100% - 0%);

    }
    .nav_bar{
        background: #222;
        width: (100% - 0px);
        margin-top:  70px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
    }
    .nav_bar .mobile_profile_image{
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }
    .nav_bar .nav_btn{
        color: #fff;
        font-size: 22px;
        cursor: pointer;
        transition: 0.5s;
        transition-property: color;
    }
    .nav_bar .nav_btn:hover{
        color: #19B3D3;
    }
    .mobile_nav_items{
        background: #2F323A;
        display: none;
    }
    .mobile_nav_items a{
        color: #fff;
        display: block;
        text-align: center;
        letter-spacing: 1px;
        line-height: 60px;
        text-decoration: none;
        box-sizing: border-box;
        transition: 0.5s;
        transition-property: background;
    }
    .mobile_nav_items a:hover{
        background: #19B3D3;

    }
    
    .mobile_nav_items i{
       padding-left: 10px;

    }
    .active{
        display: block;
    }
    .Nactive{
        display: none;
    }
}
 