.fdt {
    margin: 40px auto;
    padding: 0 40px;
}
.fdt .button {
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    background-color: #2271b1;
    color: #fff;
    text-align: center;
    text-decoration: none;
    line-height: 1.2em;
    font-weight: 400;
    transition: background-color .2s;
    box-shadow: 0px 2px 0px #1a5686;
}
.fdt .button:hover {
    background-color: #267fc6;
}
.fdt select {
    appearance: none;
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    line-height: 23px;
    background-color: rgba(0,0,0,0.1);
    margin-bottom: 0;
}
.fdt .search {
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    line-height: 23px;
    margin-bottom: 0;
    background-color: #ecf4fc;
}
.fdt .menu1 > *,
.fdt .menu2 > * {
    flex-grow: 1;
}
.fdt .menu1,
.fdt .menu2 {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
    white-space: nowrap;
}
.fdt #fund-list {
    width: 100%
}
.fdt thead span {
    color: rgba(0,0,0,0.2);
    cursor: pointer;
    user-select: none;
    font-size: 0.8em;
}
.fdt thead span:not(.highlight):hover {
    color: rgba(0,0,0,0.4);
}
.fdt thead span.highlight {
    color: #ff5400;
}
.fdt #fund-list th {
    text-align: left;
    white-space: nowrap;
    font-weight: 400;
}
.fdt #fund-list .button {
    float: right;
}
.fdt #fund-list .rate,
.fdt #fund-list .ytd-return,
.fdt #fund-list .risk,
.fdt #fund-list .morningstar {
    text-align: right;
    white-space: nowrap;
    padding: 0 10px;
}
.fdt #fund-list .name {
    font-weight: 500;
}
.fdt #fund-list .risk span {
    display: inline-block;
    width: 5px;
    color: #ccc;
}
.fdt #fund-list .risk span.highlight {
    color: #0099cc;
}
.fdt #fund-list .morningstar span {
    color: #ccc;
    display: inline-block;
}
.fdt #fund-list .morningstar span.highlight {
    color: #ff5400;
}

