
.workPanel{ /*Contenedor*/
  overflow: hidden;
  position: absolute;  
  top:5px;
  left:230px;
  padding: 20px;
  width: calc(100% - 230px);
  height: calc(100% - 5px);
  padding: 20px;
}

.workPanelHeader{   /*contenedor el navbar + título*/
    display: inline-block;       
    width: 100%;    
}

.workPanelBody{   /* Contenido*/
    height: calc(100% - 70px);
    width: 100%;
    padding-top: 10px;
    overflow-y: auto;
    display: flex;
    flex-direction: row;
    justify-content:center;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .workPanel{ /*Contenedor*/
        overflow: hidden;
        position: absolute;  
        top:5px;
        left:0px;
        padding: 10px;
        width: 100%;
        height: 100%;
        padding: 20px;
      }
}

.workPanelLogin{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
