body,html{
        font-family: "Roboto" !important;
        margin: 0;
        height: 150%;
    }
    
    ::-webkit-scrollbar {
    width: 4px;
    height: 15px;
}

::-webkit-scrollbar-track-piece  {
    background-color:#bdc3c7;
}

::-webkit-scrollbar-thumb:vertical {
    height: 30px;
    background-color: #e74c3c;
}
    
    
    
   
    
    .container{
        display: flex;
    }
    
    
    .left-menu{
        
        display: block;
        width: 300px;
        background: #34495e;
        margin: 0px;
        padding-top: 0px;
        position: fixed;
        height: 100%;
        overflow-y: auto;
    }
    
    .list{
        color: #fff;
        list-style-type: none;
        padding-top: 0px;
        padding-left: 0px;
        margin-top: 0px;
        margin-bottom: 0px;
        border-bottom:solid 3.5px #2c3e50;
    }
    
    li{
        display: flex;
        align-content: center;
        justify-content: flex-start;
        padding-left: 30px;
        cursor: pointer;
        margin-top: 0px;
    }
    
    li i{
        margin-left: auto;
        margin-right: 30px;
        margin-top: 20px;
    }
    
    .sub h3{
        font-weight: 300;
    }
    
    .sub{
        display: none;
        background: #2c3e50;
        transition: background 0.3s ease;
    }
    
    .sub:hover{
        background: #212F3D;
    }
    
    .main{
        width: 100%;
        margin-left: 300px;
        text-align: center;
    }
    
    .top{
        transition: all 0.3s ease;
        text-transform: uppercase;
        
    }
    
    .top h3{
        font-weight: 500;
      font-size:17px;
    }
    
    .top:hover{
        background:#e74c3c; 
        
    }
    
    .rotatedown{
        
        margin-top: 0px;
        margin-right: 50px;
        transform: rotate(90deg);
    }