
.info-container {
    background:#ffffff;
    border-radius: 10px;
    margin-bottom:20px;
    padding-bottom:20px;
}

.info-title {
    padding-left:10px;
}

.info-content {
    display:flex;
    flex-direction:row;
    justify-content:flex-start;
    flex-wrap: wrap;

}

.info-content .info-item {
    background:#efefef;
    width:200px;
    height:70px;
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    margin:10px;
    border-radius: 10px;
}

.info-content .info-item:hover {
    background:#dfdfdf;
}

.info-content .item-content {
    display:flex;
    flex-direction:column;
    justify-content:space-around;
    width:130px;
    height:100%;
}

.info-content .info-item .item-icon {
    height:100%;
    width:70px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    item-align:center;
}

.info-content .info-item .item-icon img {
    width:48px;
    height:48px;
    margin:auto auto;
}

.item-title {
    width:100%;
    font-size:14px;
    text-align:left;
    font-weight:800;
}

.item-result {
    width:100%;
    font-size:12px;
    text-align:left;
    font-weight:800;
}

.item-result.good {
    color:#00B60B;
}

.item-result.bad {
    color:#E99D42;
}