.Dashboard{
    	display:grid;
        grid-template-columns:repeat(3,1fr);
        grid-gap:10px;
        width:calc(100% - 20px);
        padding:5px;
    }
    .Dashboard > div{
    	background:white;
        border:none;
        border-left:solid 5px;
        width:100%;
        height:100px;
        border-radius:10px;
        box-shadow:0 0 5px grey;
    }
    .Dashboard td span:nth-child(1){
    	font-weight:bold;
    }
    .Dashboard table{
    	width:100%;
        height:100%;
    }
    .Dashboard table tr td:nth-child(1){
    	vertical-align:middle;
    }
    .Dashboard img{
    	float:right;
        margin-right:10px;
    }
    h3{
    	font-family:sans-serif;
        color:rgb(50,50,50)
    }
    canvas{
    	background:white;
        box-shadow:0 0 5px grey;
        height:250px;
    }
    .progress{
        width:100%;
        height:7px;
        border-radius:5px;
        box-shadow:0 0 5px grey;
    }
    .progress div{
    	background:linear-gradient(to right,#024242,cyan);
        border-radius:5px 0 0 5px;
        height:100%;
        margin-left:-1px;
    }
