.container-fill{
    background-color: rgba(0, 0, 0, 0.5);

}

.dashMetric{
    width: 100%;
    margin: 20px;
    margin-left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    border-radius: 10px;
    cursor: pointer;
}

.dashMetric.red{
    background-color: rgba(255, 0, 0, 0.5);
}

.dashMetric.green{
    background-color: rgba(0,255, 0, 0.5);
}

.dashMetric.blue{
    background-color: rgba(0,0, 255, 0.5);
}

.dashMetric.yellow{
    background-color:rgba(230, 238, 0, 0.5);
}

.dashMetric .value{
    display: block;
    width: 50%;
    padding-left: 10px;
    padding-top: 5px;
    text-align: left;
    padding: 20px;
    font-size: 50px;

}

.dashMetric .text{
    display: block;
    width: 50%;
    padding-right: 10px;
    padding-top: 5px;
    text-align: right;
    font-size: 150%;
}

.dashMetric .icon {
    position: absolute;
    right: 5px;
    bottom: 5px;
    overflow: hidden;
    opacity: 0.5;
    font-size: 500%;
    transform: translateY(50%);
};


