.finance-legend.finance-legend-aligned .finance-legend-row {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(145px, 1fr) max-content 48px;
  grid-template-areas:
    "manifest value percent"
    "manifest detail detail";
  align-items: center;
  column-gap: 10px;
  row-gap: 2px;
  width: 100%;
  min-height: 54px;
  padding: 8px 4px;
  text-align: initial;
}

.finance-legend.finance-legend-aligned .finance-manifest {
  grid-area: manifest;
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.finance-legend.finance-legend-aligned .finance-manifest > i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.finance-legend.finance-legend-aligned .finance-manifest > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.finance-legend.finance-legend-aligned .finance-manifest b {
  max-width: 100%;
  overflow: hidden;
  color: #081f3f;
  font-size: 13px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.finance-legend.finance-legend-aligned .finance-manifest small {
  margin-top: 3px;
  color: #52677e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .02em;
}

.finance-legend.finance-legend-aligned .finance-main-value {
  grid-area: value;
  justify-self: end;
  color: #061a34;
  font-size: 13px;
  font-weight: 850;
  text-align: right;
  white-space: nowrap;
}

.finance-legend.finance-legend-aligned .finance-percent {
  grid-area: percent;
  justify-self: end;
  min-width: 48px;
  color: #0867d8;
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
  text-align: right;
  white-space: nowrap;
}

.finance-legend.finance-legend-aligned .finance-detail {
  grid-area: detail;
  justify-self: end;
  margin: 0;
  color: #62758b;
  font-size: 10px;
  line-height: 1.2;
  text-align: right;
}

@media (max-width: 520px) {
  .finance-legend.finance-legend-aligned .finance-legend-row {
    grid-template-columns: minmax(120px, 1fr) max-content 44px;
    column-gap: 7px;
  }

  .finance-legend.finance-legend-aligned .finance-main-value,
  .finance-legend.finance-legend-aligned .finance-percent {
    font-size: 12px;
  }
}
