body {
    margin:0;
    font-family:Arial;
    background:#0a0a0a28;
    color:#fff;
}

/* BOX */
.box {
    width:180px;
    padding:10px;
    box-sizing:border-box;
}

/* TITLE */
.title {
    text-align:center;
    font-size:12px;
    margin-bottom:8px;
    color:#aaa;
}

/* ROW */
.row {
    margin-bottom:6px;
}

/* FADE IN */
.fade-in {
    animation:fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {opacity:0; transform:translateY(5px);}
    to {opacity:1; transform:translateY(0);}
}

/* TEXT */
.top {
    display:flex;
    justify-content:space-between;
    font-size:11px;
}

/* TREND */
.trend {
    font-size:10px;
    margin-left:4px;
}

/* BAR */
.bar {
    width:100%;
    height:6px;
    background:#22222265;
    border-radius:4px;
    overflow:hidden;
    margin-top:2px;
}

/* FILL */
.fill {
    height:100%;
    border-radius:4px;
    transition:0.8s ease;
}

/* HOVER */
.row:hover {
    transform:scale(1.03);
}

/* FOOTER */
.footer {
    text-align:center;
    font-size:8px;
    color:#03746e;
    margin-top:6px;
}