.result {
    margin: 0 1rem;
}

.chart {
    margin-bottom: 2rem;
    height: 40vh;
}

.fName {
    white-space: nowrap;
}
.fUnit {
    font-size: 90%;
    display: block;
    margin-top: 0.1rem;
    opacity: 0.6;
}
.valueWrap {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}
.chg {
    font-size: 90%;
    text-align: right;
    flex-grow: 1;
    padding-right: 1rem;
}
.chg:empty {
    display: none;
}

.stTable {
    --border: 1px solid #ddd;
    border: var(--border);
    /*width: 100%;*/
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: justify;
    font-size: 90%;
    margin: 0;
}
.stTable .l {
    text-align: left;
}
.stTable .r {
    text-align: right;
}
.stTable th,
.stTable td {
    border: var(--border);
    /*border-left: none;
    border-right: none;*/
    padding: 0.7rem 0.4rem;
    vertical-align: top;
}
.stTable thead th,
.stTable tfoot th {
    background-color: #eee;
    position: -webkit-sticky;
    position: sticky;
    top: -1px;
    z-index: 2;
}
.stTable th {
    font-weight: var(--bolder);
}
/* .stTable tr > *:nth-of-type(1) {
    white-space: nowrap;
} */


@media (min-width: 400px) {

.stTable {
    font-size: 95%;
}

}

@media (min-width: 1024px) {

.result {
    margin: 0;
}

}